From 3a96e410bd234d3342daff679964bc8823f36187 Mon Sep 17 00:00:00 2001 From: Julian Slane Date: Wed, 1 May 2024 12:53:42 -0700 Subject: [PATCH 01/10] WIP: Added contrain supply air temperature reset verification measure --- .../LICENSE.md | 0 .../README.md | 0 .../measure.py | 91 +++++++++++++++++++ .../measure.xml | 0 .../tests/__init__.py | 0 .../tests/test_measure.py | 72 +++++++++++++++ 6 files changed, 163 insertions(+) create mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/LICENSE.md create mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/README.md create mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py create mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.xml create mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/__init__.py create mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/LICENSE.md b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/LICENSE.md new file mode 100644 index 0000000..e69de29 diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/README.md b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/README.md new file mode 100644 index 0000000..e69de29 diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py new file mode 100644 index 0000000..456379c --- /dev/null +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py @@ -0,0 +1,91 @@ +import openstudio +import logging + +logger = logging.getLogger(__name__) + +class ConstrainSupplyAirTemperatureResetVerification(openstudio.measure.ModelMeasure): + def name(self): + """ + Return the human readable name. + Measure name should be the title case of the class name. + """ + return "Supply Air Temperature Reset Verification" + + def description(self): + """ + Human readable description + """ + return "Verifies supply air temperature reset for a specified AirLoopHVAC." + + def modeler_description(self): + """ + Human readable description of the modeling approach + """ + return "Verifies supply air temperature reset for a specified AirLoopHVAC." + + def arguments(self, model): + """ + Define arguments + """ + args = openstudio.measure.OSArgumentVector() + + air_loop_name = openstudio.measure.OSArgument.makeStringArgument( + "air_loop_name", True + ) + args.append(air_loop_name) + + design_zone_cooling_air_temp = openstudio.measure.OSArgument.makeDoubleArgument( + "design_zone_cooling_air_temp", True + ) + args.append(design_zone_cooling_air_temp) + # TODO: If the user doesn't provide a design_zone_cooling_air_temp, we can infer it from other modeling inputs + + return args + + def run( + self, + model: openstudio.model.Model, + runner: openstudio.measure.OSRunner, + user_arguments: openstudio.measure.OSArgumentMap, + ): + """ + Define what happens when the measure is run + """ + super().run(model, runner, user_arguments) + + if not (runner.validateUserArguments(self.arguments(model), user_arguments)): + return False + + air_loop_name = runner.getStringArgumentValue("air_loop_name", user_arguments) + design_zone_cooling_air_temp = runner.getDoubleArgumentValue("design_zone_cooling_air_temp", user_arguments) + + runner.registerInitialCondition("Init") + + air_loop = model.getAirLoopHVACByName(air_loop_name) + if not air_loop.get(): + runner.registerError(f"AirLoopHVAC '{air_loop_name}' not found in the model") + return False + + air_loop = air_loop.get() + + supply_outlet_node = air_loop.supplyOutletNode() + + output_variable = openstudio.model.OutputVariable("System Node Temperature", model) + output_variable.setName(f"{air_loop.name} Supply Outlet Temperature") + output_variable.setKeyValue(f"{supply_outlet_node.name}") + + + + output_variables = model.getOutputVariables() + + logger.error(supply_outlet_node.name) + + # raise Exception(len(output_variables)) + # model.outputVariable("System Node Temperature", supply_outlet_node.handle) + runner.registerInfo("Added OutputVariable for supply outlet node temperature") + + runner.registerFinalCondition("Done") + return True + + +ConstrainSupplyAirTemperatureResetVerification().registerWithApplication() \ No newline at end of file diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.xml b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.xml new file mode 100644 index 0000000..e69de29 diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/__init__.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py new file mode 100644 index 0000000..533890d --- /dev/null +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py @@ -0,0 +1,72 @@ +import pytest +import openstudio +import pathlib +import sys +from measure import ConstrainSupplyAirTemperatureResetVerification + + +class TestConstrainSupplyAirTemperatureResetVerification: + def test_number_of_arguments_and_argument_names(self): + """ + Test that the arguments are what we expect + """ + # create an instance of the measure + measure = ConstrainSupplyAirTemperatureResetVerification() + + # make an empty model + model = openstudio.model.Model() + + # get arguments and test that they are expecting a failure + # because the model doesn't have a chiller + arguments = measure.arguments(model) + + # Create dummy chiller object + air_loop = openstudio.model.AirLoopHVAC(model) + air_loop.setName("Test Air Loop") + + # get arguments and test that they are what we are expecting + arguments = measure.arguments(model) + assert arguments.size() == 2 + assert arguments[0].name() == "air_loop_name" + assert arguments[1].name() == "design_zone_cooling_air_temp" + + def test_good_argument_values(self): + """ + Test running the measure with appropriate arguments, and that the + measure runs fine and with expected results + """ + + measure = ConstrainSupplyAirTemperatureResetVerification() + + osw = openstudio.openstudioutilitiesfiletypes.WorkflowJSON() + runner = openstudio.measure.OSRunner(osw) + + # make an empty model + model = openstudio.model.Model() + + # Create dummy air loop object + air_loop = openstudio.model.AirLoopHVAC(model) + air_loop.setName("Test Air Loop") + + # get arguments and test that they are what we are expecting + arguments = measure.arguments(model) + argument_map = openstudio.measure.convertOSArgumentVectorToMap(arguments) + + args_dict = {} + args_dict["air_loop_name"] = "Test Air Loop" + args_dict["design_zone_cooling_air_temp"] = 40 + + for arg in arguments: + temp_arg_var = arg.clone() + if arg.name() in args_dict: + temp_arg_var.setValue(args_dict[arg.name()]) + # if arg.name() != "chiller_name": + assert temp_arg_var.setValue(args_dict[arg.name()]) + argument_map[arg.name()] = temp_arg_var + + measure.run(model, runner, argument_map) + result = runner.result() + assert result.value().valueName() == "Success" + +if __name__ == "__main__": + pytest.main() \ No newline at end of file From 96371a93a8c9dcadf019e9e574164e069ce2c75c Mon Sep 17 00:00:00 2001 From: Julian Slane Date: Wed, 8 May 2024 11:29:46 -0700 Subject: [PATCH 02/10] Added file arguments to measure --- .../measure.py | 209 +- .../tests/input/test.csv | 53574 ++++++++++++++++ .../tests/input/test.idf | 31092 +++++++++ .../tests/output/constrain_workflow.json | 144 + .../tests/output/verification_case.json | 26 + .../tests/test_measure.py | 15 +- 6 files changed, 85046 insertions(+), 14 deletions(-) create mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.csv create mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.idf create mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json create mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/verification_case.json diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py index 456379c..a922ac6 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py @@ -1,8 +1,11 @@ import openstudio import logging +import datetime +import json logger = logging.getLogger(__name__) + class ConstrainSupplyAirTemperatureResetVerification(openstudio.measure.ModelMeasure): def name(self): """ @@ -29,19 +32,184 @@ def arguments(self, model): """ args = openstudio.measure.OSArgumentVector() + idf_path = openstudio.measure.OSArgument.makeStringArgument("idf_path", True) + output_dataset_path = openstudio.measure.OSArgument.makeStringArgument( + "output_dataset_path", True + ) + output_dir = openstudio.measure.OSArgument.makeStringArgument( + "output_dir", True + ) + air_loop_name = openstudio.measure.OSArgument.makeStringArgument( "air_loop_name", True ) - args.append(air_loop_name) design_zone_cooling_air_temp = openstudio.measure.OSArgument.makeDoubleArgument( "design_zone_cooling_air_temp", True ) + + args.append(air_loop_name) args.append(design_zone_cooling_air_temp) + args.append(idf_path) + args.append(output_dataset_path) + args.append(output_dir) # TODO: If the user doesn't provide a design_zone_cooling_air_temp, we can infer it from other modeling inputs return args + def get_workflow(self, idf_file_path, output_dir): + workflow = { + "workflow_name": "Supply Air Temperature Reset Verification", + "meta": { + "author": "None", + "date": datetime.datetime.now().strftime("%m/%d/%Y"), + "version": "1.0", + "description": "Supply Air Temperature Reset Verification", + }, + "imports": ["numpy as np", "pandas as pd", "datetime", "glob"], + "states": { + "load_data": { + "Type": "MethodCall", + "MethodCall": "DataProcessing", + "Parameters": { + "data_path": idf_file_path, + "data_source": "EnergyPlus", + }, + "Payloads": {"data_processing_obj": "$"}, + "Start": "True", + "Next": "load_verification_case", + } + }, + "load_verification_case": { + "Type": "MethodCall", + "MethodCall": "VerificationCase", + "Parameters": {"json_case_path": f"{output_dir}verification_case.json"}, + "Payloads": { + "verification_case_obj": "$", + }, + "Next": "validate_case", + }, + "validate_cases": { + "Type": "Choice", + "Choices": [ + { + "Value": "Payloads['verification_case_obj'].validate()", + "Equals": "True", + "Next": "setup_verification", + } + ], + "Default": "Report Error in Workflow", + }, + "configure verification runner": { + "Type": "MethodCall", + "MethodCall": "Payloads['verification_obj'].configure", + "Parameters": { + "output_path": f"{output_dir}", + "lib_items_path": "./schema/library.json", + "plot_option": "+x None", + "fig_size": "+x (6, 5)", + "num_threads": 1, + "preprocessed_data": "Payloads['data_processing_obj']", + }, + "Payloads": {}, + "Next": "run verification", + }, + "run verification": { + "Type": "MethodCall", + "MethodCall": "Payloads['verification_obj'].run", + "Parameters": {}, + "Payloads": {"verification_return": "$"}, + "Next": "check results", + }, + "setup verification": { + "Type": "MethodCall", + "MethodCall": "Verification", + "Parameters": {"verifications": "Payloads['verification_case_obj']"}, + "Payloads": {"verification_obj": "$"}, + "Next": "configure verification runner", + }, + "check results": { + "Type": "MethodCall", + "MethodCall": "glob.glob", + "Parameters": [f"{output_dir}/*_md.json"], + "Payloads": {"length_of_mdjson": "len($)"}, + "Next": "check number of result files", + }, + "check number of result files": { + "Type": "Choice", + "Choices": [ + { + "Value": "Payloads['length_of_mdjson']", + "Equals": "1", + "Next": "reporting_object_instantiation", + } + ], + "Default": "Report Error in workflow", + }, + "reporting_object_instantiation": { + "Type": "MethodCall", + "MethodCall": "Reporting", + "Parameters": { + "verification_json": f"{output_dir}/*_md.json", + "result_md_name": "report_summary.md", + "report_format": "markdown", + }, + "Payloads": {"reporting_obj": "$"}, + "Next": "report_cases", + }, + "report_cases": { + "Type": "MethodCall", + "MethodCall": "Payloads['reporting_obj'].report_multiple_cases", + "Parameters": {}, + "Payloads": {}, + "Next": "Success", + }, + "Success": { + "Type": "MethodCall", + "MethodCall": "print", + "Parameters": [ + "Congratulations! the demo workflow is executed with expected results and no error!" + ], + "End": "True", + }, + "Report Error in workflow": { + "Type": "MethodCall", + "MethodCall": "logging.error", + "Parameters": ["Something is wrong in the workflow execution"], + "End": "True", + }, + } + + return workflow + + def get_verification_case( + self, + idf_file_path, + output_dataset_path, + supply_outlet_node, + air_loop, + design_zone_cooling_air_temp, + ): + supply_air_temperature_reset_verification_case = { + "no": 1, + "run_simulation": False, + "expected_result": "pass", + "simulation_IO": {"idf": idf_file_path, "output": output_dataset_path}, + "datapoints_source": { + "idf_output_variables": { + "T_sa_set": { + "subject": supply_outlet_node.nameString(), + "variable": f"{air_loop.nameString()} Supply Outlet Temperature", + "frequency": "detailed", + } + }, + "parameters": {"T_z_coo": design_zone_cooling_air_temp}, + }, + "verification_class": "SupplyAirTempReset", + } + + return {"cases": [supply_air_temperature_reset_verification_case]} + def run( self, model: openstudio.model.Model, @@ -57,35 +225,56 @@ def run( return False air_loop_name = runner.getStringArgumentValue("air_loop_name", user_arguments) - design_zone_cooling_air_temp = runner.getDoubleArgumentValue("design_zone_cooling_air_temp", user_arguments) + design_zone_cooling_air_temp = runner.getDoubleArgumentValue( + "design_zone_cooling_air_temp", user_arguments + ) + idf_file_path = runner.getStringArgumentValue("idf_path", user_arguments) + output_dataset_path = runner.getStringArgumentValue( + "output_dataset_path", user_arguments + ) + output_dir = runner.getStringArgumentValue("output_dir", user_arguments) runner.registerInitialCondition("Init") air_loop = model.getAirLoopHVACByName(air_loop_name) if not air_loop.get(): - runner.registerError(f"AirLoopHVAC '{air_loop_name}' not found in the model") + runner.registerError( + f"AirLoopHVAC '{air_loop_name}' not found in the model" + ) return False - + air_loop = air_loop.get() supply_outlet_node = air_loop.supplyOutletNode() - output_variable = openstudio.model.OutputVariable("System Node Temperature", model) + output_variable = openstudio.model.OutputVariable( + "System Node Temperature", model + ) output_variable.setName(f"{air_loop.name} Supply Outlet Temperature") output_variable.setKeyValue(f"{supply_outlet_node.name}") - - output_variables = model.getOutputVariables() - logger.error(supply_outlet_node.name) - # raise Exception(len(output_variables)) # model.outputVariable("System Node Temperature", supply_outlet_node.handle) runner.registerInfo("Added OutputVariable for supply outlet node temperature") + verification_cases = self.get_verification_case( + idf_file_path, + output_dataset_path, + supply_outlet_node, + air_loop, + design_zone_cooling_air_temp, + ) + with open(f"{output_dir}/verification_case.json", "w") as f: + json.dump(verification_cases, f, indent=2) + + workflow = self.get_workflow(idf_file_path, output_dir) + with open(f"{output_dir}/constrain_workflow.json", "w") as f: + json.dump(workflow, f, indent=2) + runner.registerFinalCondition("Done") return True -ConstrainSupplyAirTemperatureResetVerification().registerWithApplication() \ No newline at end of file +ConstrainSupplyAirTemperatureResetVerification().registerWithApplication() diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.csv b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.csv new file mode 100644 index 0000000..ddfee92 --- /dev/null +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.csv @@ -0,0 +1,53574 @@ +Date/Time,VAV_1 SUPPLY EQUIPMENT OUTLET NODE:System Node Setpoint Temperature [C](Each Call),VAV_2 SUPPLY EQUIPMENT OUTLET NODE:System Node Setpoint Temperature [C](Each Call),CAV_KITCHEN SUPPLY EQUIPMENT OUTLET NODE:System Node Setpoint Temperature [C](Each Call) + 01/01 00:05:00,15.6,15.6,20.089628337941187 + 01/01 00:10:00,15.6,15.6,20.0892822349299 + 01/01 00:20:00,15.6,15.6,20.09022946655804 + 01/01 00:30:00,15.6,15.6,20.090860723075655 + 01/01 00:40:00,15.6,15.6,20.09049350150352 + 01/01 00:50:00,15.372972972972973,15.372972972972973,20.089651160143963 + 01/01 01:00:00,15.045045045045045,15.045045045045045,20.088218308846977 + 01/01 01:10:00,15.01981981981982,15.01981981981982,20.087860697872899 + 01/01 01:20:00,14.994594594594594,14.994594594594594,20.086480823693316 + 01/01 01:30:00,14.96936936936937,14.96936936936937,20.085262713409074 + 01/01 01:40:00,14.944144144144144,14.944144144144144,20.08395873109799 + 01/01 01:50:00,14.91891891891892,14.91891891891892,20.08278273477164 + 01/01 02:00:00,14.893693693693694,14.893693693693694,20.081702976253746 + 01/01 02:10:00,14.91891891891892,14.91891891891892,20.081297312689637 + 01/01 02:20:00,14.944144144144144,14.944144144144144,20.08133754933836 + 01/01 02:30:00,14.96936936936937,14.96936936936937,20.08163520192287 + 01/01 02:40:00,14.994594594594595,14.994594594594595,20.08219681130843 + 01/01 02:50:00,15.01981981981982,15.01981981981982,20.082927672949915 + 01/01 03:00:00,15.045045045045045,15.045045045045045,20.083804016612626 + 01/01 03:10:00,15.066066066066066,15.066066066066066,20.084326550409487 + 01/01 03:20:00,15.087087087087087,15.087087087087087,20.085017720943517 + 01/01 03:30:00,15.108108108108109,15.108108108108109,20.085775931124066 + 01/01 03:40:00,15.12912912912913,15.12912912912913,20.08661579463252 + 01/01 03:50:00,15.15015015015015,15.15015015015015,20.087404575287939 + 01/01 04:00:00,15.17117117117117,15.17117117117117,20.08842202500037 + 01/01 04:10:00,15.17117117117117,15.17117117117117,20.09010036079279 + 01/01 04:20:00,15.17117117117117,15.17117117117117,20.091615606274734 + 01/01 04:30:00,15.17117117117117,15.17117117117117,20.093077804041074 + 01/01 04:40:00,15.17117117117117,15.17117117117117,20.094335010578378 + 01/01 04:50:00,15.17117117117117,15.17117117117117,20.095604508582139 + 01/01 05:00:00,15.17117117117117,15.17117117117117,20.096821955305115 + 01/01 05:10:00,15.196396396396397,15.196396396396397,20.09753379988947 + 01/01 05:20:00,15.22162162162162,15.22162162162162,20.09841760050221 + 01/01 05:30:00,15.246846846846847,15.246846846846847,20.099296801263689 + 01/01 05:40:00,15.272072072072073,15.272072072072073,20.10032239502346 + 01/01 05:50:00,15.297297297297297,15.297297297297297,20.101454759736357 + 01/01 06:00:00,15.322522522522523,15.322522522522523,20.10261236260021 + 01/01 06:10:00,15.322522522522523,15.322522522522523,20.104302207848034 + 01/01 06:20:00,15.322522522522523,15.322522522522523,20.105810159894664 + 01/01 06:30:00,15.322522522522523,15.322522522522523,20.10720843596844 + 01/01 06:40:00,15.322522522522523,15.322522522522523,20.108536680841234 + 01/01 06:50:00,15.322522522522523,15.322522522522523,20.109778433810246 + 01/01 07:00:00,15.322522522522523,15.322522522522523,20.110946230604374 + 01/01 07:10:00,15.322522522522523,15.322522522522523,20.134484609699919 + 01/01 07:20:00,15.322522522522523,15.322522522522523,20.135455607558183 + 01/01 07:30:00,15.322522522522523,15.322522522522523,20.13645813760391 + 01/01 07:40:00,15.322522522522523,15.322522522522523,20.137420212045865 + 01/01 07:50:00,15.322522522522523,15.322522522522523,20.138206495129088 + 01/01 08:00:00,15.322522522522523,15.322522522522523,20.138517793477495 + 01/01 08:10:00,15.297297297297297,15.297297297297297,18.741039701206888 + 01/01 08:20:00,15.272072072072073,15.272072072072073,18.576115352871317 + 01/01 08:30:00,15.246846846846847,15.246846846846847,18.511122976257295 + 01/01 08:40:00,15.22162162162162,15.22162162162162,18.459499683029337 + 01/01 08:50:00,15.196396396396397,15.196396396396397,18.41754308829195 + 01/01 09:00:00,15.17117117117117,15.17117117117117,18.3818570685142 + 01/01 09:10:00,15.15015015015015,15.15015015015015,18.35018765429401 + 01/01 09:20:00,15.12912912912913,15.12912912912913,18.31272535002298 + 01/01 09:30:00,15.108108108108109,15.108108108108109,18.28652232889209 + 01/01 09:40:00,15.087087087087087,15.087087087087087,18.26254243765389 + 01/01 09:50:00,15.066066066066066,15.066066066066066,18.24073176442808 + 01/01 10:00:00,15.045045045045045,15.045045045045045,18.221010502914134 + 01/01 10:10:00,15.01981981981982,15.01981981981982,18.203752906274749 + 01/01 10:20:00,14.994594594594594,14.994594594594594,18.17950994750746 + 01/01 10:30:00,14.96936936936937,14.96936936936937,18.16526194256451 + 01/01 10:40:00,14.944144144144144,14.944144144144144,18.151977949054499 + 01/01 10:50:00,14.91891891891892,14.91891891891892,18.138750979826754 + 01/01 11:00:00,14.893693693693694,14.893693693693694,18.125387177062014 + 01/01 11:10:00,14.847447447447447,14.847447447447447,18.111763547863299 + 01/01 11:20:00,14.8012012012012,14.8012012012012,18.098330179482365 + 01/01 11:30:00,14.754954954954954,14.754954954954954,18.08480011279354 + 01/01 11:40:00,14.70870870870871,14.70870870870871,18.071689233462938 + 01/01 11:50:00,14.662462462462463,14.662462462462463,18.059919509338866 + 01/01 12:00:00,14.616216216216217,14.616216216216217,18.049680080035374 + 01/01 12:10:00,14.616216216216217,14.616216216216217,18.040392557053609 + 01/01 12:20:00,14.616216216216217,14.616216216216217,18.032025418330954 + 01/01 12:30:00,14.616216216216217,14.616216216216217,18.024883453072485 + 01/01 12:40:00,14.616216216216217,14.616216216216217,18.018406820602818 + 01/01 12:50:00,14.616216216216217,14.616216216216217,18.012262461760096 + 01/01 13:00:00,14.616216216216217,14.616216216216217,18.00640467575171 + 01/01 13:10:00,14.662462462462463,14.662462462462463,18.001598766267695 + 01/01 13:20:00,14.70870870870871,14.70870870870871,17.996258184196664 + 01/01 13:30:00,14.754954954954954,14.754954954954954,17.991288762867609 + 01/01 13:40:00,14.8012012012012,14.8012012012012,17.98646789764578 + 01/01 13:50:00,14.847447447447447,14.847447447447447,17.981851889468218 + 01/01 14:00:00,14.893693693693694,14.893693693693694,17.977646142991003 + 01/01 14:10:00,14.893693693693694,14.893693693693694,17.97325097770462 + 01/01 14:20:00,14.893693693693694,14.893693693693694,17.969168788658835 + 01/01 14:30:00,14.893693693693694,14.893693693693694,17.96497998868275 + 01/01 14:40:00,14.893693693693694,14.893693693693694,17.961030497607319 + 01/01 14:50:00,14.893693693693694,14.893693693693694,17.955744617423865 + 01/01 15:00:00,14.893693693693694,14.893693693693694,17.951202824712593 + 01/01 15:10:00,15.057657657657657,15.057657657657657,17.95105063610785 + 01/01 15:20:00,15.22162162162162,15.22162162162162,17.949450010528694 + 01/01 15:30:00,15.385585585585585,15.385585585585585,17.949040673319403 + 01/01 15:40:00,15.54954954954955,15.54954954954955,17.94874211200056 + 01/01 15:50:00,15.6,15.6,17.94759021275636 + 01/01 16:00:00,15.6,15.6,17.949754450529988 + 01/01 16:10:00,15.6,15.6,19.370840566617994 + 01/01 16:20:00,15.6,15.6,19.521966501072826 + 01/01 16:30:00,15.6,15.6,19.587119526585089 + 01/01 16:40:00,15.6,15.6,19.63677815698654 + 01/01 16:50:00,15.6,15.6,19.676391238746388 + 01/01 17:00:00,15.6,15.6,19.7103373536096 + 01/01 17:10:00,15.6,15.6,19.739629185708428 + 01/01 17:20:00,15.6,15.6,19.773849395053426 + 01/01 17:30:00,15.6,15.6,19.796565959606189 + 01/01 17:40:00,15.6,15.6,19.817186689978457 + 01/01 17:50:00,15.6,15.6,19.83609037288634 + 01/01 18:00:00,15.6,15.6,19.851601086423508 + 01/01 18:10:00,15.6,15.6,19.866766864835378 + 01/01 18:20:00,15.6,15.6,19.898476734171945 + 01/01 18:30:00,15.6,15.6,19.91138531124753 + 01/01 18:40:00,15.6,15.6,19.923216552089106 + 01/01 18:50:00,15.6,15.6,19.93417076827545 + 01/01 19:00:00,15.6,15.6,19.944424199701083 + 01/01 19:10:00,15.6,15.6,19.953510359152675 + 01/01 19:20:00,15.6,15.6,19.962109632618174 + 01/01 19:30:00,15.6,15.6,19.970222324594514 + 01/01 19:40:00,15.6,15.6,19.977804778440814 + 01/01 19:50:00,15.6,15.6,19.985084663882856 + 01/01 20:00:00,15.6,15.6,19.991999586640003 + 01/01 20:10:00,15.6,15.6,19.999166590918148 + 01/01 20:20:00,15.6,15.6,20.00583607843487 + 01/01 20:30:00,15.6,15.6,20.01241818239523 + 01/01 20:40:00,15.6,15.6,20.018647903971084 + 01/01 20:50:00,15.6,15.6,20.024879712026445 + 01/01 21:00:00,15.6,15.6,20.030763150251887 + 01/01 21:10:00,15.6,15.6,20.01394091434439 + 01/01 21:20:00,15.6,15.6,20.01948105883052 + 01/01 21:30:00,15.6,15.6,20.024887811657427 + 01/01 21:40:00,15.6,15.6,20.030208598931087 + 01/01 21:50:00,15.6,15.6,20.035397770523735 + 01/01 22:00:00,15.6,15.6,20.040460608874424 + 01/01 22:10:00,15.6,15.6,20.044975761641454 + 01/01 22:20:00,15.6,15.6,20.04925196685982 + 01/01 22:30:00,15.6,15.6,20.053482286993906 + 01/01 22:40:00,15.6,15.6,20.057573777091919 + 01/01 22:50:00,15.6,15.6,20.061554589874807 + 01/01 23:00:00,15.6,15.6,20.0654266197071 + 01/01 23:10:00,15.6,15.6,20.069028034123183 + 01/01 23:20:00,15.6,15.6,20.07277893004794 + 01/01 23:30:00,15.6,15.6,20.076481611432148 + 01/01 23:40:00,15.6,15.6,20.080174676218549 + 01/01 23:50:00,15.6,15.6,20.08382378585936 + 01/01 24:00:00,15.6,15.6,20.087334897893017 + 01/02 00:10:00,15.6,15.6,20.090597753278158 + 01/02 00:20:00,15.6,15.6,20.093531058235678 + 01/02 00:30:00,15.6,15.6,20.09638381838136 + 01/02 00:40:00,15.6,15.6,20.099176121429495 + 01/02 00:50:00,15.6,15.6,20.101833572306125 + 01/02 01:00:00,15.6,15.6,20.10444421632921 + 01/02 01:10:00,15.6,15.6,20.109369093179489 + 01/02 01:20:00,15.6,15.6,20.114221516796314 + 01/02 01:30:00,15.6,15.6,20.118946188637034 + 01/02 01:40:00,15.6,15.6,20.123518195789058 + 01/02 01:50:00,15.6,15.6,20.12794763124094 + 01/02 02:00:00,15.6,15.6,20.132332062090485 + 01/02 02:10:00,15.6,15.6,20.134581458332354 + 01/02 02:20:00,15.6,15.6,20.136768659132949 + 01/02 02:30:00,15.6,15.6,20.138961250965499 + 01/02 02:40:00,15.6,15.6,20.141090028197696 + 01/02 02:50:00,15.6,15.6,20.143329342491155 + 01/02 03:00:00,15.6,15.6,20.145585490486924 + 01/02 03:10:00,15.6,15.6,20.147089529765613 + 01/02 03:20:00,15.6,15.6,20.148493656669474 + 01/02 03:30:00,15.6,15.6,20.14965904159903 + 01/02 03:40:00,15.6,15.6,20.150765280463469 + 01/02 03:50:00,15.6,15.6,20.15173658243597 + 01/02 04:00:00,15.6,15.6,20.152572283009535 + 01/02 04:10:00,15.6,15.6,20.155634817516608 + 01/02 04:20:00,15.6,15.6,20.158585537136728 + 01/02 04:30:00,15.6,15.6,20.161511887781143 + 01/02 04:40:00,15.6,15.6,20.164430898239706 + 01/02 04:50:00,15.6,15.6,20.16730396886744 + 01/02 05:00:00,15.6,15.6,20.170133375079339 + 01/02 05:10:00,15.6,15.6,20.170932159299246 + 01/02 05:20:00,15.6,15.6,20.171695854655746 + 01/02 05:30:00,15.6,15.6,20.172496247308055 + 01/02 05:40:00,15.6,15.6,20.17327869280136 + 01/02 05:50:00,15.6,15.6,20.17404292311377 + 01/02 06:00:00,15.6,15.6,20.17476528897784 + 01/02 06:10:00,15.6,15.6,20.176873203948245 + 01/02 06:20:00,15.6,15.6,20.17899224974974 + 01/02 06:30:00,15.6,15.6,20.181069883672856 + 01/02 06:40:00,15.6,15.6,20.183091888165018 + 01/02 06:50:00,15.6,15.6,20.185068259763637 + 01/02 07:00:00,15.6,15.6,20.186902010615307 + 01/02 07:10:00,15.6,15.6,18.182425326802947 + 01/02 07:20:00,15.6,15.6,17.94901211306134 + 01/02 07:30:00,15.6,15.6,17.86162904047176 + 01/02 07:40:00,15.6,15.6,17.793324280577079 + 01/02 07:50:00,15.6,15.6,17.73919072963907 + 01/02 08:00:00,15.6,15.6,17.69402698779275 + 01/02 08:10:00,15.6,15.6,16.209254326647377 + 01/02 08:20:00,15.6,15.6,15.990800513121398 + 01/02 08:30:00,15.6,15.6,15.887548095108539 + 01/02 08:40:00,15.6,15.6,15.802703121761829 + 01/02 08:50:00,15.6,15.6,15.731768463401102 + 01/02 09:00:00,15.6,15.6,15.670250706343263 + 01/02 09:10:00,15.6,15.6,15.589115967653849 + 01/02 09:20:00,15.6,15.6,15.53098795543242 + 01/02 09:30:00,15.6,15.6,15.484848653667614 + 01/02 09:40:00,15.6,15.6,15.442218147277118 + 01/02 09:50:00,15.6,15.6,15.402514548538158 + 01/02 10:00:00,15.6,15.6,15.365343897593736 + 01/02 10:10:00,15.6,15.6,15.333179241388275 + 01/02 10:20:00,15.6,15.6,15.292362346253637 + 01/02 10:30:00,15.6,15.6,15.263938108301302 + 01/02 10:40:00,15.6,15.6,15.237132405908227 + 01/02 10:50:00,15.6,15.6,15.211580723562296 + 01/02 11:00:00,15.6,15.6,15.187134346653405 + 01/02 11:10:00,15.6,15.6,15.159813765773896 + 01/02 11:20:00,15.6,15.6,15.129521188426493 + 01/02 11:30:00,15.6,15.6,15.105414999419628 + 01/02 11:40:00,15.6,15.6,15.078450784176552 + 01/02 11:50:00,15.6,15.6,15.052734251227859 + 01/02 12:00:00,15.6,15.6,15.024843836216109 + 01/02 12:10:00,15.6,15.6,14.999607694539053 + 01/02 12:20:00,15.6,15.6,14.981621238589233 + 01/02 12:30:00,15.6,15.6,14.954041329085508 + 01/02 12:40:00,15.6,15.6,14.928309332017538 + 01/02 12:50:00,15.6,15.6,14.90146569049104 + 01/02 13:00:00,15.6,15.6,14.879321845685157 + 01/02 13:10:00,15.6,15.6,14.857788735902658 + 01/02 13:20:00,15.6,15.6,14.828866237297549 + 01/02 13:30:00,15.6,15.6,14.813118086519966 + 01/02 13:40:00,15.6,15.6,14.797193870495601 + 01/02 13:50:00,15.6,15.6,14.786417812138139 + 01/02 14:00:00,15.6,15.6,14.775204939980153 + 01/02 14:10:00,15.6,15.6,14.76922465537382 + 01/02 14:20:00,15.6,15.6,14.764847208557282 + 01/02 14:30:00,15.6,15.6,14.761481482194084 + 01/02 14:40:00,15.6,15.6,14.756243255847306 + 01/02 14:50:00,15.6,15.6,14.753411498860267 + 01/02 15:00:00,15.6,15.6,14.74958243431496 + 01/02 15:10:00,15.6,15.6,14.747811535919292 + 01/02 15:20:00,15.6,15.6,14.75035097937254 + 01/02 15:30:00,15.6,15.6,14.748186691515615 + 01/02 15:40:00,15.6,15.6,14.748403219332529 + 01/02 15:50:00,15.6,15.6,14.745431217715156 + 01/02 16:00:00,15.6,15.6,14.743774589100453 + 01/02 16:10:00,15.6,15.6,16.899493339487856 + 01/02 16:20:00,15.6,15.6,17.14518783175592 + 01/02 16:30:00,15.6,15.6,17.24185737513682 + 01/02 16:40:00,15.6,15.6,17.315215531674029 + 01/02 16:50:00,15.6,15.6,17.370157633925424 + 01/02 17:00:00,15.6,15.6,17.41707960850995 + 01/02 17:10:00,15.6,15.6,17.48286367336524 + 01/02 17:20:00,15.6,15.6,17.535596942396788 + 01/02 17:30:00,15.6,15.6,17.5649317657446 + 01/02 17:40:00,15.6,15.6,17.591988733995938 + 01/02 17:50:00,15.6,15.6,17.616750283528753 + 01/02 18:00:00,15.6,15.6,17.63924324019595 + 01/02 18:10:00,15.6,15.6,17.67298921805162 + 01/02 18:20:00,15.6,15.6,17.697667189580128 + 01/02 18:30:00,15.6,15.6,17.71512181048031 + 01/02 18:40:00,15.6,15.6,17.731214464283779 + 01/02 18:50:00,15.6,15.6,17.746163155493706 + 01/02 19:00:00,15.6,15.6,17.7601034841689 + 01/02 19:10:00,15.6,15.6,17.774820203269173 + 01/02 19:20:00,15.6,15.6,17.788358948613824 + 01/02 19:30:00,15.6,15.6,17.800911762372097 + 01/02 19:40:00,15.6,15.6,17.812556579697885 + 01/02 19:50:00,15.6,15.6,17.823338928822915 + 01/02 20:00:00,15.6,15.6,17.833385811936354 + 01/02 20:10:00,15.6,15.6,17.85587254407159 + 01/02 20:20:00,15.6,15.6,17.865430405187558 + 01/02 20:30:00,15.6,15.6,17.8743463709241 + 01/02 20:40:00,15.6,15.6,17.8829210397161 + 01/02 20:50:00,15.6,15.6,17.89119083919035 + 01/02 21:00:00,15.6,15.6,17.89923308434647 + 01/02 21:10:00,15.6,15.6,17.882139847863728 + 01/02 21:20:00,15.6,15.6,17.891782986909904 + 01/02 21:30:00,15.6,15.6,17.896748915787496 + 01/02 21:40:00,15.6,15.6,17.90144159014894 + 01/02 21:50:00,15.6,15.6,17.90592123385871 + 01/02 22:00:00,15.6,15.6,17.91019467381793 + 01/02 22:10:00,15.6,15.6,17.916101910384023 + 01/02 22:20:00,15.6,15.6,17.922071342004594 + 01/02 22:30:00,15.6,15.6,17.927988713761889 + 01/02 22:40:00,15.6,15.6,17.93385718026557 + 01/02 22:50:00,15.6,15.6,17.939615446866019 + 01/02 23:00:00,15.6,15.6,17.94536721495261 + 01/02 23:10:00,15.6,15.6,19.319907978178749 + 01/02 23:20:00,15.6,15.6,19.461944382007095 + 01/02 23:30:00,15.6,15.6,19.524751641477953 + 01/02 23:40:00,15.6,15.6,19.574294545065219 + 01/02 23:50:00,15.6,15.6,19.614392596945117 + 01/02 24:00:00,15.6,15.6,19.64814265180911 + 01/03 00:10:00,15.6,15.6,19.67669394105086 + 01/03 00:20:00,15.6,15.6,19.701747848346238 + 01/03 00:30:00,15.6,15.6,19.724058139357945 + 01/03 00:40:00,15.6,15.6,19.744288465319437 + 01/03 00:50:00,15.6,15.6,19.762747398091137 + 01/03 01:00:00,15.6,15.6,19.77970851890673 + 01/03 01:10:00,15.6,15.6,19.79538940050558 + 01/03 01:20:00,15.6,15.6,19.80997223695079 + 01/03 01:30:00,15.6,15.6,19.823636970140329 + 01/03 01:40:00,15.6,15.6,19.836540361540409 + 01/03 01:50:00,15.6,15.6,19.848721203960844 + 01/03 02:00:00,15.6,15.6,19.860255461580328 + 01/03 02:10:00,15.6,15.6,19.871364299732166 + 01/03 02:20:00,15.6,15.6,19.88203499466288 + 01/03 02:30:00,15.6,15.6,19.89238037117704 + 01/03 02:40:00,15.6,15.6,19.902387994234468 + 01/03 02:50:00,15.6,15.6,19.912069197065344 + 01/03 03:00:00,15.6,15.6,19.921426337885678 + 01/03 03:10:00,15.6,15.6,19.931495232272906 + 01/03 03:20:00,15.6,15.6,19.941319675461405 + 01/03 03:30:00,15.6,15.6,19.950928539694318 + 01/03 03:40:00,15.6,15.6,19.960294111340205 + 01/03 03:50:00,15.6,15.6,19.969451266213985 + 01/03 04:00:00,15.6,15.6,19.978318457835788 + 01/03 04:10:00,15.6,15.6,19.985175970665787 + 01/03 04:20:00,15.6,15.6,19.991765355621714 + 01/03 04:30:00,15.6,15.6,19.998063955853064 + 01/03 04:40:00,15.6,15.6,20.00407934458804 + 01/03 04:50:00,15.6,15.6,20.009758888466409 + 01/03 05:00:00,15.6,15.6,20.015230597134953 + 01/03 05:10:00,15.6,15.6,20.021708316847819 + 01/03 05:20:00,15.6,15.6,20.028039196260165 + 01/03 05:30:00,15.6,15.6,20.034239051575758 + 01/03 05:40:00,15.6,15.6,20.040277251120928 + 01/03 05:50:00,15.6,15.6,20.046193006238057 + 01/03 06:00:00,15.6,15.6,20.052056549477237 + 01/03 06:10:00,15.6,15.6,20.05877991564508 + 01/03 06:20:00,15.6,15.6,20.065322464151124 + 01/03 06:30:00,15.6,15.6,20.071654879690017 + 01/03 06:40:00,15.6,15.6,20.077739635111248 + 01/03 06:50:00,15.6,15.6,20.083728649710755 + 01/03 07:00:00,15.6,15.6,20.08955249145837 + 01/03 07:10:00,15.6,15.6,18.083861465697294 + 01/03 07:20:00,15.6,15.6,17.852237020681924 + 01/03 07:30:00,15.6,15.6,17.76718862837177 + 01/03 07:40:00,15.6,15.6,17.70110532580238 + 01/03 07:50:00,15.6,15.6,17.649321269913054 + 01/03 08:00:00,15.6,15.6,17.606877765520076 + 01/03 08:10:00,15.6,15.6,16.125091554238467 + 01/03 08:20:00,15.6,15.6,15.91087726962045 + 01/03 08:30:00,15.6,15.6,15.812487595497308 + 01/03 08:40:00,15.6,15.6,15.732670457522334 + 01/03 08:50:00,15.6,15.6,15.667045281830888 + 01/03 09:00:00,15.6,15.6,15.611078305146393 + 01/03 09:10:00,15.6,15.6,15.537189827742154 + 01/03 09:20:00,15.6,15.6,15.486789414890437 + 01/03 09:30:00,15.6,15.6,15.448609175886697 + 01/03 09:40:00,15.6,15.6,15.414253780390885 + 01/03 09:50:00,15.6,15.6,15.38299848214913 + 01/03 10:00:00,15.6,15.6,15.3544314615776 + 01/03 10:10:00,15.6,15.6,15.322699935273399 + 01/03 10:20:00,15.6,15.6,15.282535156213094 + 01/03 10:30:00,15.6,15.6,15.25473602730339 + 01/03 10:40:00,15.6,15.6,15.228574742173406 + 01/03 10:50:00,15.6,15.6,15.2038564066782 + 01/03 11:00:00,15.6,15.6,15.18193265524077 + 01/03 11:10:00,15.6,15.6,15.15972066925907 + 01/03 11:20:00,15.6,15.6,15.135171889122513 + 01/03 11:30:00,15.6,15.6,15.114699485787721 + 01/03 11:40:00,15.6,15.6,15.09470040728439 + 01/03 11:50:00,15.6,15.6,15.075853519797559 + 01/03 12:00:00,15.6,15.6,15.057024126662024 + 01/03 12:10:00,15.6,15.6,15.043484783564934 + 01/03 12:20:00,15.6,15.6,15.039108343962372 + 01/03 12:30:00,15.6,15.6,15.02796060648676 + 01/03 12:40:00,15.6,15.6,15.014910572071596 + 01/03 12:50:00,15.6,15.6,15.004542108044859 + 01/03 13:00:00,15.6,15.6,14.995094723802659 + 01/03 13:10:00,15.6,15.6,14.98032012149015 + 01/03 13:20:00,15.6,15.6,14.9592196760893 + 01/03 13:30:00,15.6,15.6,14.945196473767444 + 01/03 13:40:00,15.6,15.6,14.934121996182885 + 01/03 13:50:00,15.6,15.6,14.921053767505237 + 01/03 14:00:00,15.6,15.6,14.910391410959179 + 01/03 14:10:00,15.6,15.6,14.899909589326369 + 01/03 14:20:00,15.6,15.6,14.89498326984292 + 01/03 14:30:00,15.6,15.6,14.88601212282594 + 01/03 14:40:00,15.6,15.6,14.877718364486328 + 01/03 14:50:00,15.6,15.6,14.870005158547235 + 01/03 15:00:00,15.6,15.6,14.861108677290803 + 01/03 15:10:00,15.6,15.6,14.852677580308074 + 01/03 15:20:00,15.6,15.6,14.844651567212383 + 01/03 15:30:00,15.6,15.6,14.836088930965444 + 01/03 15:40:00,15.6,15.6,14.825796911881288 + 01/03 15:50:00,15.6,15.6,14.817400311817636 + 01/03 16:00:00,15.6,15.6,14.810793955574365 + 01/03 16:10:00,15.6,15.6,16.959709844051657 + 01/03 16:20:00,15.6,15.6,17.205902351744287 + 01/03 16:30:00,15.6,15.6,17.302143315621504 + 01/03 16:40:00,15.6,15.6,17.37506135471963 + 01/03 16:50:00,15.6,15.6,17.433499143284949 + 01/03 17:00:00,15.6,15.6,17.48127999914627 + 01/03 17:10:00,15.6,15.6,17.548511925725025 + 01/03 17:20:00,15.6,15.6,17.60645501241016 + 01/03 17:30:00,15.6,15.6,17.640218947092565 + 01/03 17:40:00,15.6,15.6,17.670494955526566 + 01/03 17:50:00,15.6,15.6,17.698164233160438 + 01/03 18:00:00,15.6,15.6,17.72341305938869 + 01/03 18:10:00,15.6,15.6,17.755431742834806 + 01/03 18:20:00,15.6,15.6,17.778156758217759 + 01/03 18:30:00,15.6,15.6,17.793645858992364 + 01/03 18:40:00,15.6,15.6,17.80758342007711 + 01/03 18:50:00,15.6,15.6,17.820278382275043 + 01/03 19:00:00,15.6,15.6,17.831892077136368 + 01/03 19:10:00,15.6,15.6,17.84462640008077 + 01/03 19:20:00,15.6,15.6,17.856539523393363 + 01/03 19:30:00,15.6,15.6,17.867708088637906 + 01/03 19:40:00,15.6,15.6,17.87811603485687 + 01/03 19:50:00,15.6,15.6,17.887996631730638 + 01/03 20:00:00,15.6,15.6,17.897365737431949 + 01/03 20:10:00,15.6,15.6,17.918676835858073 + 01/03 20:20:00,15.6,15.6,17.92726064573871 + 01/03 20:30:00,15.6,15.6,17.93500263490283 + 01/03 20:40:00,15.6,15.6,17.942326276321688 + 01/03 20:50:00,15.6,15.6,17.949260175989286 + 01/03 21:00:00,15.6,15.6,17.95580948960405 + 01/03 21:10:00,15.6,15.6,17.93945419800675 + 01/03 21:20:00,15.6,15.6,17.949651739348388 + 01/03 21:30:00,15.6,15.6,17.955190465651719 + 01/03 21:40:00,15.6,15.6,17.96043824755037 + 01/03 21:50:00,15.6,15.6,17.96543433492187 + 01/03 22:00:00,15.6,15.6,17.97008969030719 + 01/03 22:10:00,15.6,15.6,17.9743933427641 + 01/03 22:20:00,15.6,15.6,17.97853802742908 + 01/03 22:30:00,15.6,15.6,17.982629741280158 + 01/03 22:40:00,15.6,15.6,17.986633620539949 + 01/03 22:50:00,15.6,15.6,17.99055453200382 + 01/03 23:00:00,15.6,15.6,17.994385521130196 + 01/03 23:10:00,15.6,15.6,19.36101398738107 + 01/03 23:20:00,15.6,15.6,19.49771286860792 + 01/03 23:30:00,15.6,15.6,19.555744407495163 + 01/03 23:40:00,15.6,15.6,19.600702174298463 + 01/03 23:50:00,15.6,15.6,19.63621955933996 + 01/03 24:00:00,15.6,15.6,19.66548404319981 + 01/04 00:10:00,15.6,15.6,19.69651387369924 + 01/04 00:20:00,15.6,15.6,19.724074706980038 + 01/04 00:30:00,15.6,15.6,19.748911452770359 + 01/04 00:40:00,15.6,15.6,19.7715387254803 + 01/04 00:50:00,15.6,15.6,19.79232928725476 + 01/04 01:00:00,15.6,15.6,19.811506290006869 + 01/04 01:10:00,15.6,15.6,19.829490910421439 + 01/04 01:20:00,15.6,15.6,19.84644145775796 + 01/04 01:30:00,15.6,15.6,19.862454976955797 + 01/04 01:40:00,15.6,15.6,19.87767268554271 + 01/04 01:50:00,15.6,15.6,19.892090267534468 + 01/04 02:00:00,15.6,15.6,19.905946230301646 + 01/04 02:10:00,15.6,15.6,19.916827414102334 + 01/04 02:20:00,15.6,15.6,19.92715124067294 + 01/04 02:30:00,15.6,15.6,19.937019976500637 + 01/04 02:40:00,15.6,15.6,19.94638918527388 + 01/04 02:50:00,15.6,15.6,19.955392300250396 + 01/04 03:00:00,15.6,15.6,19.96407731947199 + 01/04 03:10:00,15.6,15.6,19.97187049766038 + 01/04 03:20:00,15.6,15.6,19.97935781195607 + 01/04 03:30:00,15.6,15.6,19.98651946302316 + 01/04 03:40:00,15.6,15.6,19.99338830762069 + 01/04 03:50:00,15.6,15.6,20.00006981397082 + 01/04 04:00:00,15.6,15.6,20.00651227883806 + 01/04 04:10:00,15.6,15.6,20.01478487637498 + 01/04 04:20:00,15.6,15.6,20.02275422489315 + 01/04 04:30:00,15.6,15.6,20.03041908962291 + 01/04 04:40:00,15.6,15.6,20.037933270059864 + 01/04 04:50:00,15.6,15.6,20.045234612065398 + 01/04 05:00:00,15.6,15.6,20.052336983231269 + 01/04 05:10:00,15.6,15.6,20.057764739994896 + 01/04 05:20:00,15.6,15.6,20.062945710212366 + 01/04 05:30:00,15.6,15.6,20.068064181626668 + 01/04 05:40:00,15.6,15.6,20.073052433497755 + 01/04 05:50:00,15.6,15.6,20.077904062791857 + 01/04 06:00:00,15.6,15.6,20.08262386129246 + 01/04 06:10:00,15.6,15.6,20.08564556512763 + 01/04 06:20:00,15.6,15.6,20.088565794220999 + 01/04 06:30:00,15.6,15.6,20.091392438839518 + 01/04 06:40:00,15.6,15.6,20.094092608909997 + 01/04 06:50:00,15.6,15.6,20.09667441921529 + 01/04 07:00:00,15.6,15.6,20.099095299195925 + 01/04 07:10:00,15.6,15.6,18.094861154029574 + 01/04 07:20:00,15.6,15.6,17.86305150990676 + 01/04 07:30:00,15.6,15.6,17.777600143459265 + 01/04 07:40:00,15.6,15.6,17.711014620217957 + 01/04 07:50:00,15.6,15.6,17.658471340564604 + 01/04 08:00:00,15.6,15.6,17.61491530696698 + 01/04 08:10:00,15.6,15.6,16.131833002585095 + 01/04 08:20:00,15.6,15.6,15.9160365146612 + 01/04 08:30:00,15.6,15.6,15.816032259076302 + 01/04 08:40:00,15.6,15.6,15.734473390953302 + 01/04 08:50:00,15.6,15.6,15.66680607407717 + 01/04 09:00:00,15.6,15.6,15.608297213690744 + 01/04 09:10:00,15.6,15.6,15.5256624486448 + 01/04 09:20:00,15.6,15.6,15.465948700007712 + 01/04 09:30:00,15.6,15.6,15.417804727363653 + 01/04 09:40:00,15.6,15.6,15.372906065169728 + 01/04 09:50:00,15.6,15.6,15.330891618830999 + 01/04 10:00:00,15.6,15.6,15.291498144554636 + 01/04 10:10:00,15.6,15.6,15.257663940048996 + 01/04 10:20:00,15.6,15.6,15.214686245511642 + 01/04 10:30:00,15.6,15.6,15.183836233666267 + 01/04 10:40:00,15.6,15.6,15.154323914031626 + 01/04 10:50:00,15.6,15.6,15.126987979290489 + 01/04 11:00:00,15.6,15.6,15.101469394027369 + 01/04 11:10:00,15.6,15.6,15.07245041923611 + 01/04 11:20:00,15.6,15.6,15.044250647485655 + 01/04 11:30:00,15.6,15.6,15.017436056631313 + 01/04 11:40:00,15.6,15.6,14.994084788186778 + 01/04 11:50:00,15.6,15.6,14.96923926803337 + 01/04 12:00:00,15.6,15.6,14.947516881664204 + 01/04 12:10:00,15.6,15.6,14.925071512095118 + 01/04 12:20:00,15.6,15.6,14.915076801026946 + 01/04 12:30:00,15.6,15.6,14.896141756186675 + 01/04 12:40:00,15.6,15.6,14.877447003495606 + 01/04 12:50:00,15.6,15.6,14.862975458518737 + 01/04 13:00:00,15.6,15.6,14.848518800963762 + 01/04 13:10:00,15.6,15.6,14.835720138941828 + 01/04 13:20:00,15.6,15.6,14.814969645913433 + 01/04 13:30:00,15.6,15.6,14.803297651602369 + 01/04 13:40:00,15.6,15.6,14.794216020124188 + 01/04 13:50:00,15.6,15.6,14.782939888566422 + 01/04 14:00:00,15.6,15.6,14.77378031285457 + 01/04 14:10:00,15.6,15.6,14.762307142324778 + 01/04 14:20:00,15.6,15.6,14.757332511354893 + 01/04 14:30:00,15.6,15.6,14.745915955576987 + 01/04 14:40:00,15.6,15.6,14.738375251962156 + 01/04 14:50:00,15.6,15.6,14.729680796482537 + 01/04 15:00:00,15.6,15.6,14.724445594489115 + 01/04 15:10:00,15.6,15.6,14.720115330057599 + 01/04 15:20:00,15.6,15.6,14.720506856347218 + 01/04 15:30:00,15.6,15.6,14.719261958160232 + 01/04 15:40:00,15.6,15.6,14.716438672879486 + 01/04 15:50:00,15.6,15.6,14.7168964864285 + 01/04 16:00:00,15.6,15.6,14.715434374896664 + 01/04 16:10:00,15.6,15.6,16.877938621265998 + 01/04 16:20:00,15.6,15.6,17.12930634079855 + 01/04 16:30:00,15.6,15.6,17.227462505529354 + 01/04 16:40:00,15.6,15.6,17.305157417428103 + 01/04 16:50:00,15.6,15.6,17.366390277723185 + 01/04 17:00:00,15.6,15.6,17.414462671853444 + 01/04 17:10:00,15.6,15.6,17.48266578866643 + 01/04 17:20:00,15.6,15.6,17.5397376791404 + 01/04 17:30:00,15.6,15.6,17.572273552770775 + 01/04 17:40:00,15.6,15.6,17.60131058560159 + 01/04 17:50:00,15.6,15.6,17.62777083631842 + 01/04 18:00:00,15.6,15.6,17.651623389471128 + 01/04 18:10:00,15.6,15.6,17.686809785687538 + 01/04 18:20:00,15.6,15.6,17.71270801913736 + 01/04 18:30:00,15.6,15.6,17.731549566200657 + 01/04 18:40:00,15.6,15.6,17.749115616389383 + 01/04 18:50:00,15.6,15.6,17.76558377076308 + 01/04 19:00:00,15.6,15.6,17.781088466080136 + 01/04 19:10:00,15.6,15.6,17.79683332128453 + 01/04 19:20:00,15.6,15.6,17.81162836349953 + 01/04 19:30:00,15.6,15.6,17.825716057177105 + 01/04 19:40:00,15.6,15.6,17.83914671859697 + 01/04 19:50:00,15.6,15.6,17.852004077747787 + 01/04 20:00:00,15.6,15.6,17.864384313368367 + 01/04 20:10:00,15.6,15.6,17.88773772187923 + 01/04 20:20:00,15.6,15.6,17.897967345025096 + 01/04 20:30:00,15.6,15.6,17.90726855083576 + 01/04 20:40:00,15.6,15.6,17.915983682497154 + 01/04 20:50:00,15.6,15.6,17.924187585064847 + 01/04 21:00:00,15.6,15.6,17.93198714935193 + 01/04 21:10:00,15.6,15.6,17.916289489306359 + 01/04 21:20:00,15.6,15.6,17.927529651519828 + 01/04 21:30:00,15.6,15.6,17.934126006063033 + 01/04 21:40:00,15.6,15.6,17.940551147322134 + 01/04 21:50:00,15.6,15.6,17.946934116390027 + 01/04 22:00:00,15.6,15.6,17.95313158860121 + 01/04 22:10:00,15.6,15.6,17.959529200352475 + 01/04 22:20:00,15.6,15.6,17.96569189945749 + 01/04 22:30:00,15.6,15.6,17.971682028018713 + 01/04 22:40:00,15.6,15.6,17.977450319184937 + 01/04 22:50:00,15.6,15.6,17.982988008109577 + 01/04 23:00:00,15.6,15.6,17.98843533490003 + 01/04 23:10:00,15.6,15.6,19.365638987887509 + 01/04 23:20:00,15.6,15.6,19.508091163512334 + 01/04 23:30:00,15.6,15.6,19.57155340346832 + 01/04 23:40:00,15.6,15.6,19.621495967921719 + 01/04 23:50:00,15.6,15.6,19.661888187636995 + 01/04 24:00:00,15.6,15.6,19.695833606823066 + 01/05 00:10:00,15.6,15.6,19.72794916204182 + 01/05 00:20:00,15.6,15.6,19.756830534154394 + 01/05 00:30:00,15.6,15.6,19.782965285036043 + 01/05 00:40:00,15.6,15.6,19.807098428187716 + 01/05 00:50:00,15.6,15.6,19.82952361850476 + 01/05 01:00:00,15.6,15.6,19.85050565682886 + 01/05 01:10:00,15.6,15.6,19.868248801763927 + 01/05 01:20:00,15.6,15.6,19.884938949651536 + 01/05 01:30:00,15.6,15.6,19.90094920197887 + 01/05 01:40:00,15.6,15.6,19.916382324938945 + 01/05 01:50:00,15.6,15.6,19.931290647383077 + 01/05 02:00:00,15.6,15.6,19.94573463644919 + 01/05 02:10:00,15.6,15.6,19.957627470608857 + 01/05 02:20:00,15.6,15.6,19.969016968359118 + 01/05 02:30:00,15.6,15.6,19.979989117097199 + 01/05 02:40:00,15.6,15.6,19.9905115834025 + 01/05 02:50:00,15.6,15.6,20.000609824015 + 01/05 03:00:00,15.6,15.6,20.010308202069618 + 01/05 03:10:00,15.6,15.6,20.02019879939441 + 01/05 03:20:00,15.6,15.6,20.02984136615447 + 01/05 03:30:00,15.6,15.6,20.03917321739217 + 01/05 03:40:00,15.6,15.6,20.048211444398836 + 01/05 03:50:00,15.6,15.6,20.056977812279994 + 01/05 04:00:00,15.6,15.6,20.06540029007958 + 01/05 04:10:00,15.6,15.6,20.076690122349434 + 01/05 04:20:00,15.6,15.6,20.0876854581509 + 01/05 04:30:00,15.6,15.6,20.0983611273365 + 01/05 04:40:00,15.6,15.6,20.108730436942975 + 01/05 04:50:00,15.6,15.6,20.1187536576411 + 01/05 05:00:00,15.6,15.6,20.128550245458834 + 01/05 05:10:00,15.6,15.6,20.133526599741374 + 01/05 05:20:00,15.6,15.6,20.13835775149392 + 01/05 05:30:00,15.6,15.6,20.14301826567241 + 01/05 05:40:00,15.6,15.6,20.14752317549565 + 01/05 05:50:00,15.6,15.6,20.151888202168427 + 01/05 06:00:00,15.6,15.6,20.156194472015107 + 01/05 06:10:00,15.6,15.6,20.161866177276996 + 01/05 06:20:00,15.6,15.6,20.167411449309645 + 01/05 06:30:00,15.6,15.6,20.172828366015936 + 01/05 06:40:00,15.6,15.6,20.1780628786221 + 01/05 06:50:00,15.6,15.6,20.183275407664305 + 01/05 07:00:00,15.6,15.6,20.18837992984784 + 01/05 07:05:00,15.6,15.6,18.178439456852816 + 01/05 07:10:00,15.6,15.6,18.178668712498675 + 01/05 07:20:00,15.6,15.6,17.949115468602345 + 01/05 07:30:00,15.6,15.6,17.865796934219948 + 01/05 07:40:00,15.6,15.6,17.80136166388325 + 01/05 07:50:00,15.6,15.6,17.750909606366318 + 01/05 08:00:00,15.6,15.6,17.708965845714514 + 01/05 08:10:00,15.6,15.6,16.21899129821798 + 01/05 08:20:00,15.6,15.6,16.001794880261888 + 01/05 08:30:00,15.6,15.6,15.900033373043425 + 01/05 08:40:00,15.6,15.6,15.816456509903775 + 01/05 08:50:00,15.6,15.6,15.746600920852862 + 01/05 09:00:00,15.6,15.6,15.685789611999717 + 01/05 09:10:00,15.6,15.6,15.603407246894557 + 01/05 09:20:00,15.6,15.6,15.543373604927576 + 01/05 09:30:00,15.6,15.6,15.494869209197083 + 01/05 09:40:00,15.6,15.6,15.44938661217235 + 01/05 09:50:00,15.6,15.6,15.406482050826196 + 01/05 10:00:00,15.6,15.6,15.36578115348462 + 01/05 10:10:00,15.6,15.6,15.330535693748058 + 01/05 10:20:00,15.6,15.6,15.286165128501592 + 01/05 10:30:00,15.6,15.6,15.25376260083434 + 01/05 10:40:00,15.6,15.6,15.222850628688067 + 01/05 10:50:00,15.6,15.6,15.195144674524283 + 01/05 11:00:00,15.6,15.6,15.168264539571835 + 01/05 11:10:00,15.6,15.6,15.136129793682024 + 01/05 11:20:00,15.6,15.6,15.104031182472268 + 01/05 11:30:00,15.6,15.6,15.07388785336891 + 01/05 11:40:00,15.6,15.6,15.047740202983802 + 01/05 11:50:00,15.6,15.6,15.019685504845884 + 01/05 12:00:00,15.6,15.6,14.995840142268858 + 01/05 12:10:00,15.6,15.6,14.973951258549297 + 01/05 12:20:00,15.6,15.6,14.965855621105613 + 01/05 12:30:00,15.6,15.6,14.946999001143434 + 01/05 12:40:00,15.6,15.6,14.930368770427478 + 01/05 12:50:00,15.6,15.6,14.915607409756781 + 01/05 13:00:00,15.6,15.6,14.899080919319657 + 01/05 13:10:00,15.6,15.6,14.882250105952322 + 01/05 13:20:00,15.6,15.6,14.855135356006219 + 01/05 13:30:00,15.6,15.6,14.838713860799402 + 01/05 13:40:00,15.6,15.6,14.822978013710014 + 01/05 13:50:00,15.6,15.6,14.807967609975496 + 01/05 14:00:00,15.6,15.6,14.793969515575747 + 01/05 14:10:00,15.6,15.6,14.784016737987228 + 01/05 14:20:00,15.6,15.6,14.779272590493426 + 01/05 14:30:00,15.6,15.6,14.770841583762048 + 01/05 14:40:00,15.6,15.6,14.76552354046479 + 01/05 14:50:00,15.6,15.6,14.759307743916939 + 01/05 15:00:00,15.6,15.6,14.757893725304826 + 01/05 15:10:00,15.6,15.6,14.754229032376639 + 01/05 15:20:00,15.6,15.6,14.757588837208277 + 01/05 15:30:00,15.6,15.6,14.756794880768173 + 01/05 15:40:00,15.6,15.6,14.756506680900547 + 01/05 15:50:00,15.6,15.6,14.757534009833295 + 01/05 16:00:00,15.6,15.6,14.755970781800699 + 01/05 16:10:00,15.6,15.6,16.928467222000248 + 01/05 16:20:00,15.6,15.6,17.18027578295658 + 01/05 16:30:00,15.6,15.6,17.281873138446554 + 01/05 16:40:00,15.6,15.6,17.361918116180129 + 01/05 16:50:00,15.6,15.6,17.424930861125337 + 01/05 17:00:00,15.6,15.6,17.475984959141209 + 01/05 17:10:00,15.6,15.6,17.5445993035596 + 01/05 17:20:00,15.6,15.6,17.601361262727936 + 01/05 17:30:00,15.6,15.6,17.634008658217483 + 01/05 17:40:00,15.6,15.6,17.663409004466688 + 01/05 17:50:00,15.6,15.6,17.69042987520436 + 01/05 18:00:00,15.6,15.6,17.71492793313375 + 01/05 18:10:00,15.6,15.6,17.75109269555657 + 01/05 18:20:00,15.6,15.6,17.778401318753468 + 01/05 18:30:00,15.6,15.6,17.798330799665864 + 01/05 18:40:00,15.6,15.6,17.816286935151927 + 01/05 18:50:00,15.6,15.6,17.832595836081667 + 01/05 19:00:00,15.6,15.6,17.847441241805205 + 01/05 19:10:00,15.6,15.6,17.862795274586405 + 01/05 19:20:00,15.6,15.6,17.877208313080688 + 01/05 19:30:00,15.6,15.6,17.890914827471457 + 01/05 19:40:00,15.6,15.6,17.903978502816789 + 01/05 19:50:00,15.6,15.6,17.916542128805348 + 01/05 20:00:00,15.6,15.6,17.92863541483809 + 01/05 20:10:00,15.6,15.6,17.953509684764744 + 01/05 20:20:00,15.6,15.6,17.965293769635069 + 01/05 20:30:00,15.6,15.6,17.975971868217884 + 01/05 20:40:00,15.6,15.6,17.985952838216414 + 01/05 20:50:00,15.6,15.6,17.995310127314 + 01/05 21:00:00,15.6,15.6,18.004085248189726 + 01/05 21:10:00,15.6,15.6,17.988996183581869 + 01/05 21:20:00,15.6,15.6,18.000996491263878 + 01/05 21:30:00,15.6,15.6,18.00856572151118 + 01/05 21:40:00,15.6,15.6,18.01615600886182 + 01/05 21:50:00,15.6,15.6,18.023796287973878 + 01/05 22:00:00,15.6,15.6,18.031459076819428 + 01/05 22:10:00,15.6,15.6,18.037907561785507 + 01/05 22:20:00,15.6,15.6,18.044262546110688 + 01/05 22:30:00,15.6,15.6,18.050622920820076 + 01/05 22:40:00,15.6,15.6,18.056929485207637 + 01/05 22:50:00,15.6,15.6,18.063173985986084 + 01/05 23:00:00,15.6,15.6,18.069345136043915 + 01/05 23:10:00,15.6,15.6,19.448438593876675 + 01/05 23:20:00,15.6,15.6,19.589931447662474 + 01/05 23:30:00,15.6,15.6,19.652713995774314 + 01/05 23:40:00,15.6,15.6,19.70226245298531 + 01/05 23:50:00,15.6,15.6,19.742131352266939 + 01/05 24:00:00,15.6,15.6,19.775535303432905 + 01/06 00:10:00,15.6,15.6,19.80618176415975 + 01/06 00:20:00,15.6,15.6,19.833187803121584 + 01/06 00:30:00,15.6,15.6,19.857180559215366 + 01/06 00:40:00,15.6,15.6,19.87868717728464 + 01/06 00:50:00,15.6,15.6,19.89811448823952 + 01/06 01:00:00,15.6,15.6,19.915697554890568 + 01/06 01:10:00,15.6,15.6,19.931489300286697 + 01/06 01:20:00,15.6,15.6,19.946267114823696 + 01/06 01:30:00,15.6,15.6,19.96021984607429 + 01/06 01:40:00,15.6,15.6,19.97354480190924 + 01/06 01:50:00,15.6,15.6,19.986231910062949 + 01/06 02:00:00,15.6,15.6,19.9984850566104 + 01/06 02:10:00,15.6,15.6,20.01081956027733 + 01/06 02:20:00,15.6,15.6,20.022723349689924 + 01/06 02:30:00,15.6,15.6,20.03422728620648 + 01/06 02:40:00,15.6,15.6,20.045293051854356 + 01/06 02:50:00,15.6,15.6,20.056027327948237 + 01/06 03:00:00,15.6,15.6,20.0664751858647 + 01/06 03:10:00,15.6,15.6,20.076576836740583 + 01/06 03:20:00,15.6,15.6,20.086288858384945 + 01/06 03:30:00,15.6,15.6,20.09554390969017 + 01/06 03:40:00,15.6,15.6,20.104373099499776 + 01/06 03:50:00,15.6,15.6,20.11289287132277 + 01/06 04:00:00,15.6,15.6,20.1210635956988 + 01/06 04:10:00,15.6,15.6,20.12567260496413 + 01/06 04:20:00,15.6,15.6,20.130008851223804 + 01/06 04:30:00,15.6,15.6,20.134077340229948 + 01/06 04:40:00,15.6,15.6,20.13805088525048 + 01/06 04:50:00,15.6,15.6,20.141851021342704 + 01/06 05:00:00,15.6,15.6,20.145480069386747 + 01/06 05:10:00,15.6,15.6,20.154642661326393 + 01/06 05:20:00,15.6,15.6,20.16360284488287 + 01/06 05:30:00,15.6,15.6,20.172537599321165 + 01/06 05:40:00,15.6,15.6,20.18138175209493 + 01/06 05:50:00,15.6,15.6,20.190126889872567 + 01/06 06:00:00,15.6,15.6,20.198778046281534 + 01/06 06:10:00,15.6,15.6,20.201963456558759 + 01/06 06:20:00,15.6,15.6,20.205060464473143 + 01/06 06:30:00,15.6,15.6,20.208076514524799 + 01/06 06:40:00,15.6,15.6,20.210975266287819 + 01/06 06:50:00,15.6,15.6,20.213762148043427 + 01/06 07:00:00,15.6,15.6,20.21639450101877 + 01/06 07:05:00,15.6,15.6,18.204529572761794 + 01/06 07:10:00,15.6,15.6,18.204692391651656 + 01/06 07:20:00,15.6,15.6,17.97317401948674 + 01/06 07:30:00,15.6,15.6,17.887886044941064 + 01/06 07:40:00,15.6,15.6,17.82159575691048 + 01/06 07:50:00,15.6,15.6,17.769581357131864 + 01/06 08:00:00,15.6,15.6,17.726591239725797 + 01/06 08:10:00,15.6,15.6,16.237517367611909 + 01/06 08:20:00,15.6,15.6,16.021257498904455 + 01/06 08:30:00,15.6,15.6,15.920163761079465 + 01/06 08:40:00,15.6,15.6,15.837237369423463 + 01/06 08:50:00,15.6,15.6,15.768027070712032 + 01/06 09:00:00,15.6,15.6,15.707962965004603 + 01/06 09:10:00,15.6,15.6,15.63000358679269 + 01/06 09:20:00,15.6,15.6,15.574641966991406 + 01/06 09:30:00,15.6,15.6,15.531028835657829 + 01/06 09:40:00,15.6,15.6,15.490782220274872 + 01/06 09:50:00,15.6,15.6,15.453434740144037 + 01/06 10:00:00,15.6,15.6,15.418707743288508 + 01/06 10:10:00,15.6,15.6,15.383590884964838 + 01/06 10:20:00,15.6,15.6,15.339879838685207 + 01/06 10:30:00,15.6,15.6,15.308707723578852 + 01/06 10:40:00,15.6,15.6,15.279324143689216 + 01/06 10:50:00,15.6,15.6,15.25143186605027 + 01/06 11:00:00,15.6,15.6,15.226298355671102 + 01/06 11:10:00,15.6,15.6,15.204043179715825 + 01/06 11:20:00,15.6,15.6,15.177110896404115 + 01/06 11:30:00,15.6,15.6,15.157123441756039 + 01/06 11:40:00,15.6,15.6,15.135679686975717 + 01/06 11:50:00,15.6,15.6,15.118788760100223 + 01/06 12:00:00,15.6,15.6,15.10059941517467 + 01/06 12:10:00,15.6,15.6,15.085404756985304 + 01/06 12:20:00,15.6,15.6,15.077777122569792 + 01/06 12:30:00,15.6,15.6,15.064657659077906 + 01/06 12:40:00,15.6,15.6,15.05105660751619 + 01/06 12:50:00,15.6,15.6,15.037177822665722 + 01/06 13:00:00,15.6,15.6,15.025185347789956 + 01/06 13:10:00,15.6,15.6,15.011821179877396 + 01/06 13:20:00,15.6,15.6,14.991267404380193 + 01/06 13:30:00,15.6,15.6,14.979342780525439 + 01/06 13:40:00,15.6,15.6,14.967988589975498 + 01/06 13:50:00,15.6,15.6,14.95567312930117 + 01/06 14:00:00,15.6,15.6,14.9428233423226 + 01/06 14:10:00,15.6,15.6,14.929447357911766 + 01/06 14:20:00,15.6,15.6,14.919508293364153 + 01/06 14:30:00,15.6,15.6,14.906886888878882 + 01/06 14:40:00,15.6,15.6,14.89382171664306 + 01/06 14:50:00,15.6,15.6,14.885247237635694 + 01/06 15:00:00,15.6,15.6,14.87637288205389 + 01/06 15:10:00,15.6,15.6,14.872294764647034 + 01/06 15:20:00,15.6,15.6,14.870182905835549 + 01/06 15:30:00,15.6,15.6,14.86803399155763 + 01/06 15:40:00,15.6,15.6,14.865687910694298 + 01/06 15:50:00,15.6,15.6,14.862659557178239 + 01/06 16:00:00,15.6,15.6,14.86113847800101 + 01/06 16:10:00,15.6,15.6,17.020929828831574 + 01/06 16:20:00,15.6,15.6,17.268877691386515 + 01/06 16:30:00,15.6,15.6,17.36713042643219 + 01/06 16:40:00,15.6,15.6,17.439936283581497 + 01/06 16:50:00,15.6,15.6,17.498998467317418 + 01/06 17:00:00,15.6,15.6,17.54789205458134 + 01/06 17:10:00,15.6,15.6,17.612484117516673 + 01/06 17:20:00,15.6,15.6,17.666787364171627 + 01/06 17:30:00,15.6,15.6,17.697485144468748 + 01/06 17:40:00,15.6,15.6,17.724822266567739 + 01/06 17:50:00,15.6,15.6,17.749577914206904 + 01/06 18:00:00,15.6,15.6,17.771938408174174 + 01/06 18:10:00,15.6,15.6,17.80648534730915 + 01/06 18:20:00,15.6,15.6,17.831750202689979 + 01/06 18:30:00,15.6,15.6,17.849726706948304 + 01/06 18:40:00,15.6,15.6,17.86617213658362 + 01/06 18:50:00,15.6,15.6,17.88140218541147 + 01/06 19:00:00,15.6,15.6,17.895569756410099 + 01/06 19:10:00,15.6,15.6,17.907621262673144 + 01/06 19:20:00,15.6,15.6,17.91911694865901 + 01/06 19:30:00,15.6,15.6,17.930167927024216 + 01/06 19:40:00,15.6,15.6,17.940884856466338 + 01/06 19:50:00,15.6,15.6,17.951259409289216 + 01/06 20:00:00,15.6,15.6,17.961349417044958 + 01/06 20:10:00,15.6,15.6,17.98535598416923 + 01/06 20:20:00,15.6,15.6,17.99623348600906 + 01/06 20:30:00,15.6,15.6,18.00613832176922 + 01/06 20:40:00,15.6,15.6,18.015374006380836 + 01/06 20:50:00,15.6,15.6,18.02400535716183 + 01/06 21:00:00,15.6,15.6,18.03213934433128 + 01/06 21:10:00,15.6,15.6,18.016543033211794 + 01/06 21:20:00,15.6,15.6,18.027615975870697 + 01/06 21:30:00,15.6,15.6,18.03378824108085 + 01/06 21:40:00,15.6,15.6,18.039463091110166 + 01/06 21:50:00,15.6,15.6,18.044693448357856 + 01/06 22:00:00,15.6,15.6,18.04946755022832 + 01/06 22:10:00,15.6,15.6,18.05509309255326 + 01/06 22:20:00,15.6,15.6,18.060448337827486 + 01/06 22:30:00,15.6,15.6,18.06551250206651 + 01/06 22:40:00,15.6,15.6,18.070303609652158 + 01/06 22:50:00,15.6,15.6,18.074792768673974 + 01/06 23:00:00,15.6,15.6,18.07910307010917 + 01/06 23:10:00,15.6,15.6,19.45686623489392 + 01/06 23:20:00,15.6,15.6,19.598335781779889 + 01/06 23:30:00,15.6,15.6,19.661363634647594 + 01/06 23:40:00,15.6,15.6,19.711271411983096 + 01/06 23:50:00,15.6,15.6,19.751810629983014 + 01/06 24:00:00,15.6,15.6,19.786023806107396 + 01/07 00:10:00,15.6,15.6,19.814664717109794 + 01/07 00:20:00,15.6,15.6,19.839918818822658 + 01/07 00:30:00,15.6,15.6,19.862572494544076 + 01/07 00:40:00,15.6,15.6,19.883261151900194 + 01/07 00:50:00,15.6,15.6,19.90229560288995 + 01/07 01:00:00,15.6,15.6,19.919926266342473 + 01/07 01:10:00,15.6,15.6,19.934086719914015 + 01/07 01:20:00,15.6,15.6,19.9471427466932 + 01/07 01:30:00,15.6,15.6,19.95935242557414 + 01/07 01:40:00,15.6,15.6,19.970841806131256 + 01/07 01:50:00,15.6,15.6,19.981663028612624 + 01/07 02:00:00,15.6,15.6,19.99188661815831 + 01/07 02:10:00,15.6,15.6,20.00438999171071 + 01/07 02:20:00,15.6,15.6,20.016356487710849 + 01/07 02:30:00,15.6,15.6,20.027905156251327 + 01/07 02:40:00,15.6,15.6,20.039011393752078 + 01/07 02:50:00,15.6,15.6,20.04970450404782 + 01/07 03:00:00,15.6,15.6,20.0600069678436 + 01/07 03:10:00,15.6,15.6,20.06669101016869 + 01/07 03:20:00,15.6,15.6,20.07325380481533 + 01/07 03:30:00,15.6,15.6,20.07961251664232 + 01/07 03:40:00,15.6,15.6,20.0857980948792 + 01/07 03:50:00,15.6,15.6,20.091806173156294 + 01/07 04:00:00,15.6,15.6,20.097548028993559 + 01/07 04:10:00,15.6,15.6,20.109561882415524 + 01/07 04:20:00,15.6,15.6,20.121311484843348 + 01/07 04:30:00,15.6,15.6,20.132762487179304 + 01/07 04:40:00,15.6,15.6,20.143919400311355 + 01/07 04:50:00,15.6,15.6,20.154738900275257 + 01/07 05:00:00,15.6,15.6,20.165335893669636 + 01/07 05:10:00,15.6,15.6,20.169444990734808 + 01/07 05:20:00,15.6,15.6,20.173412268921007 + 01/07 05:30:00,15.6,15.6,20.17729527680764 + 01/07 05:40:00,15.6,15.6,20.18105448066898 + 01/07 05:50:00,15.6,15.6,20.184714148957917 + 01/07 06:00:00,15.6,15.6,20.188354336108575 + 01/07 06:10:00,15.6,15.6,20.192672811999189 + 01/07 06:20:00,15.6,15.6,20.1970324728979 + 01/07 06:30:00,15.6,15.6,20.201341569507887 + 01/07 06:40:00,15.6,15.6,20.20557796367377 + 01/07 06:50:00,15.6,15.6,20.209865101120088 + 01/07 07:00:00,15.6,15.6,20.21410423118145 + 01/07 07:10:00,15.6,15.6,19.555221838335059 + 01/07 07:20:00,15.6,15.6,19.492169808655146 + 01/07 07:30:00,15.6,15.6,19.469225829045667 + 01/07 07:40:00,15.6,15.6,19.452375491599218 + 01/07 07:50:00,15.6,15.6,19.439864432192647 + 01/07 08:00:00,15.6,15.6,19.429973913659475 + 01/07 08:10:00,15.6,15.6,18.340996085692536 + 01/07 08:20:00,15.6,15.6,18.197972848136844 + 01/07 08:30:00,15.6,15.6,18.138898520547547 + 01/07 08:40:00,15.6,15.6,18.09176712650271 + 01/07 08:50:00,15.6,15.6,18.05345622996877 + 01/07 09:00:00,15.6,15.6,18.020711522842647 + 01/07 09:10:00,15.6,15.6,17.995130793855478 + 01/07 09:20:00,15.6,15.6,17.96350551363083 + 01/07 09:30:00,15.6,15.6,17.94301831202932 + 01/07 09:40:00,15.6,15.6,17.92447911864209 + 01/07 09:50:00,15.6,15.6,17.907615527883224 + 01/07 10:00:00,15.6,15.6,17.892255906899039 + 01/07 10:10:00,15.6,15.6,17.86980791419355 + 01/07 10:20:00,15.6,15.6,17.839553097852936 + 01/07 10:30:00,15.6,15.6,17.819048866025413 + 01/07 10:40:00,15.6,15.6,17.79941633615068 + 01/07 10:50:00,15.6,15.6,17.78051262126222 + 01/07 11:00:00,15.6,15.6,17.76228609030366 + 01/07 11:10:00,15.6,15.6,17.752369588735136 + 01/07 11:20:00,15.6,15.6,17.743098165370449 + 01/07 11:30:00,15.6,15.6,17.734457241882106 + 01/07 11:40:00,15.6,15.6,17.726446164784688 + 01/07 11:50:00,15.6,15.6,17.71911313785813 + 01/07 12:00:00,15.6,15.6,17.712425773628575 + 01/07 12:10:00,15.6,15.6,17.70033537633235 + 01/07 12:20:00,15.6,15.6,17.6885704414657 + 01/07 12:30:00,15.6,15.6,17.67704533886477 + 01/07 12:40:00,15.6,15.6,17.66567200791115 + 01/07 12:50:00,15.6,15.6,17.65438689450809 + 01/07 13:00:00,15.6,15.6,17.643160959067786 + 01/07 13:10:00,15.6,15.6,17.63660358734802 + 01/07 13:20:00,15.6,15.6,17.630282533988173 + 01/07 13:30:00,15.6,15.6,17.624315888351949 + 01/07 13:40:00,15.6,15.6,17.618849840521447 + 01/07 13:50:00,15.6,15.6,17.61418911434704 + 01/07 14:00:00,15.6,15.6,17.610310089883723 + 01/07 14:10:00,15.6,15.6,17.602163839977679 + 01/07 14:20:00,15.6,15.6,17.59454823175685 + 01/07 14:30:00,15.6,15.6,17.587207964941599 + 01/07 14:40:00,15.6,15.6,17.58014786092056 + 01/07 14:50:00,15.6,15.6,17.57085982560814 + 01/07 15:00:00,15.6,15.6,17.564046240989755 + 01/07 15:10:00,15.6,15.6,17.566166552256193 + 01/07 15:20:00,15.6,15.6,17.568742628484029 + 01/07 15:30:00,15.6,15.6,17.570844590900813 + 01/07 15:40:00,15.6,15.6,17.57237971347081 + 01/07 15:50:00,15.6,15.6,17.576130152252497 + 01/07 16:00:00,15.6,15.6,17.58050297842164 + 01/07 16:10:00,15.6,15.6,17.582524127228685 + 01/07 16:20:00,15.6,15.6,17.582900567905953 + 01/07 16:30:00,15.6,15.6,17.584732509671889 + 01/07 16:40:00,15.6,15.6,17.587798536365495 + 01/07 16:50:00,15.6,15.6,17.591205271257718 + 01/07 17:00:00,15.6,15.6,17.59451487449997 + 01/07 17:10:00,15.6,15.6,17.6082694557024 + 01/07 17:20:00,15.6,15.6,17.620543402688236 + 01/07 17:30:00,15.6,15.6,17.62375191436965 + 01/07 17:40:00,15.6,15.6,17.62712110102815 + 01/07 17:50:00,15.6,15.6,17.630735768649779 + 01/07 18:00:00,15.6,15.6,17.634207777581584 + 01/07 18:10:00,15.6,15.6,19.406390290840429 + 01/07 18:20:00,15.6,15.6,19.612447791643239 + 01/07 18:30:00,15.6,15.6,19.69363918059787 + 01/07 18:40:00,15.6,15.6,19.756536593596793 + 01/07 18:50:00,15.6,15.6,19.806263344066307 + 01/07 19:00:00,15.6,15.6,19.847289626386638 + 01/07 19:10:00,15.6,15.6,19.89115320734102 + 01/07 19:20:00,15.6,15.6,19.917926213464584 + 01/07 19:30:00,15.6,15.6,19.940711826353707 + 01/07 19:40:00,15.6,15.6,19.960544688690406 + 01/07 19:50:00,15.6,15.6,19.978088980197549 + 01/07 20:00:00,15.6,15.6,19.99357649093658 + 01/07 20:10:00,15.6,15.6,20.012729656303479 + 01/07 20:20:00,15.6,15.6,20.030527164598977 + 01/07 20:30:00,15.6,15.6,20.047151831604809 + 01/07 20:40:00,15.6,15.6,20.062753924634799 + 01/07 20:50:00,15.6,15.6,20.07739746269978 + 01/07 21:00:00,15.6,15.6,20.091293688006595 + 01/07 21:10:00,15.6,15.6,20.08022789527488 + 01/07 21:20:00,15.6,15.6,20.091200253674093 + 01/07 21:30:00,15.6,15.6,20.101584304833414 + 01/07 21:40:00,15.6,15.6,20.111391092751778 + 01/07 21:50:00,15.6,15.6,20.120696997333515 + 01/07 22:00:00,15.6,15.6,20.129617642847874 + 01/07 22:10:00,15.6,15.6,20.13813046372521 + 01/07 22:20:00,15.6,15.6,20.146247731409188 + 01/07 22:30:00,15.6,15.6,20.153989630954844 + 01/07 22:40:00,15.6,15.6,20.16133428469884 + 01/07 22:50:00,15.6,15.6,20.168451271093497 + 01/07 23:00:00,15.6,15.6,20.175271278517877 + 01/07 23:10:00,15.6,15.6,20.181657372708107 + 01/07 23:20:00,15.6,15.6,20.18778198959253 + 01/07 23:30:00,15.6,15.6,20.193563432018693 + 01/07 23:40:00,15.6,15.6,20.19921214878987 + 01/07 23:50:00,15.6,15.6,20.204647540257608 + 01/07 24:00:00,15.6,15.6,20.209875933203635 + 01/08 00:10:00,15.6,15.6,20.21742245279997 + 01/08 00:20:00,15.6,15.6,20.224698635782159 + 01/08 00:30:00,15.6,15.6,20.231849062287119 + 01/08 00:40:00,15.6,15.6,20.23884429729443 + 01/08 00:50:00,15.6,15.6,20.245661114205629 + 01/08 01:00:00,15.6,15.6,20.252307742990593 + 01/08 01:10:00,15.6,15.6,20.25695870280292 + 01/08 01:20:00,15.6,15.6,20.261438183895267 + 01/08 01:30:00,15.6,15.6,20.265781166869205 + 01/08 01:40:00,15.6,15.6,20.26991245143875 + 01/08 01:50:00,15.6,15.6,20.273894783511758 + 01/08 02:00:00,15.6,15.6,20.277700960902075 + 01/08 02:10:00,15.6,15.6,20.280779586393405 + 01/08 02:20:00,15.6,15.6,20.283825877557196 + 01/08 02:30:00,15.6,15.6,20.286796087144397 + 01/08 02:40:00,15.6,15.6,20.289691941542679 + 01/08 02:50:00,15.6,15.6,20.292512708188434 + 01/08 03:00:00,15.6,15.6,20.295170927705358 + 01/08 03:10:00,15.6,15.6,20.29557654172264 + 01/08 03:20:00,15.6,15.6,20.295924417486643 + 01/08 03:30:00,15.6,15.6,20.29621884964686 + 01/08 03:40:00,15.6,15.6,20.29646214064359 + 01/08 03:50:00,15.6,15.6,20.296568182630847 + 01/08 04:00:00,15.6,15.6,20.29669061172721 + 01/08 04:10:00,15.6,15.6,20.299055644159574 + 01/08 04:20:00,15.6,15.6,20.301372588957663 + 01/08 04:30:00,15.6,15.6,20.30360544977694 + 01/08 04:40:00,15.6,15.6,20.305702707523158 + 01/08 04:50:00,15.6,15.6,20.307740822017924 + 01/08 05:00:00,15.6,15.6,20.309744380327559 + 01/08 05:10:00,15.6,15.6,20.31229204799277 + 01/08 05:20:00,15.6,15.6,20.314646129075677 + 01/08 05:30:00,15.6,15.6,20.31686309375486 + 01/08 05:40:00,15.6,15.6,20.31893722790139 + 01/08 05:50:00,15.6,15.6,20.320961436383734 + 01/08 06:00:00,15.6,15.6,20.322874724456527 + 01/08 06:10:00,15.6,15.6,20.325480198632929 + 01/08 06:20:00,15.6,15.6,20.32800886656136 + 01/08 06:30:00,15.6,15.6,20.330418996568697 + 01/08 06:40:00,15.6,15.6,20.332884871624484 + 01/08 06:50:00,15.6,15.6,20.335318608603108 + 01/08 07:00:00,15.6,15.6,20.337720558541397 + 01/08 07:10:00,15.6,15.6,20.36193515734797 + 01/08 07:20:00,15.6,15.6,20.363330255217755 + 01/08 07:30:00,15.6,15.6,20.364722233622805 + 01/08 07:40:00,15.6,15.6,20.366040427585266 + 01/08 07:50:00,15.6,15.6,20.366876257576697 + 01/08 08:00:00,15.6,15.6,20.36669253459842 + 01/08 08:10:00,15.6,15.6,18.962741889522865 + 01/08 08:20:00,15.6,15.6,18.79682594397205 + 01/08 08:30:00,15.6,15.6,18.729417900793928 + 01/08 08:40:00,15.6,15.6,18.674839902463103 + 01/08 08:50:00,15.6,15.6,18.629719950892164 + 01/08 09:00:00,15.6,15.6,18.590943601550984 + 01/08 09:10:00,15.6,15.6,18.55774287820509 + 01/08 09:20:00,15.6,15.6,18.518734387001996 + 01/08 09:30:00,15.6,15.6,18.49098144051008 + 01/08 09:40:00,15.6,15.6,18.46534419929013 + 01/08 09:50:00,15.6,15.6,18.44153380137661 + 01/08 10:00:00,15.6,15.6,18.41932977444874 + 01/08 10:10:00,15.6,15.6,18.39877212635318 + 01/08 10:20:00,15.6,15.6,18.370629111123713 + 01/08 10:30:00,15.6,15.6,18.35242683939381 + 01/08 10:40:00,15.6,15.6,18.335304554438598 + 01/08 10:50:00,15.6,15.6,18.3189954653312 + 01/08 11:00:00,15.6,15.6,18.303326000398184 + 01/08 11:10:00,15.6,15.6,18.288820852826384 + 01/08 11:20:00,15.6,15.6,18.27495629922119 + 01/08 11:30:00,15.6,15.6,18.261577794398805 + 01/08 11:40:00,15.6,15.6,18.248691247596569 + 01/08 11:50:00,15.6,15.6,18.236634501544189 + 01/08 12:00:00,15.6,15.6,18.225374131300158 + 01/08 12:10:00,15.6,15.6,18.21406446941766 + 01/08 12:20:00,15.6,15.6,18.203278339207036 + 01/08 12:30:00,15.6,15.6,18.1929843246823 + 01/08 12:40:00,15.6,15.6,18.18312372722886 + 01/08 12:50:00,15.6,15.6,18.17374358239176 + 01/08 13:00:00,15.6,15.6,18.164928823821744 + 01/08 13:10:00,15.6,15.6,18.158481393560185 + 01/08 13:20:00,15.6,15.6,18.152533338671767 + 01/08 13:30:00,15.6,15.6,18.147144874917506 + 01/08 13:40:00,15.6,15.6,18.14250243968341 + 01/08 13:50:00,15.6,15.6,18.13836488655262 + 01/08 14:00:00,15.6,15.6,18.134669574129906 + 01/08 14:10:00,15.6,15.6,18.12916907548786 + 01/08 14:20:00,15.6,15.6,18.124097377949754 + 01/08 14:30:00,15.6,15.6,18.119238346704348 + 01/08 14:40:00,15.6,15.6,18.114699271081066 + 01/08 14:50:00,15.6,15.6,18.110435956812073 + 01/08 15:00:00,15.6,15.6,18.10637713632023 + 01/08 15:10:00,15.6,15.6,18.104364892082807 + 01/08 15:20:00,15.6,15.6,18.102596139514909 + 01/08 15:30:00,15.6,15.6,18.1011349031323 + 01/08 15:40:00,15.6,15.6,18.0999284534031 + 01/08 15:50:00,15.6,15.6,18.09930895003786 + 01/08 16:00:00,15.6,15.6,18.099602754413657 + 01/08 16:10:00,15.6,15.6,19.527162162690716 + 01/08 16:20:00,15.6,15.6,19.6757391026038 + 01/08 16:30:00,15.6,15.6,19.739357729733898 + 01/08 16:40:00,15.6,15.6,19.789237646341577 + 01/08 16:50:00,15.6,15.6,19.826985337680858 + 01/08 17:00:00,15.6,15.6,19.859759692306957 + 01/08 17:10:00,15.6,15.6,19.888772270131989 + 01/08 17:20:00,15.6,15.6,19.923186964424269 + 01/08 17:30:00,15.6,15.6,19.946412030007079 + 01/08 17:40:00,15.6,15.6,19.967591766337493 + 01/08 17:50:00,15.6,15.6,19.98724857433822 + 01/08 18:00:00,15.6,15.6,20.005638055130058 + 01/08 18:10:00,15.6,15.6,20.021705256379219 + 01/08 18:20:00,15.6,15.6,20.053217774391056 + 01/08 18:30:00,15.6,15.6,20.067059443602234 + 01/08 18:40:00,15.6,15.6,20.079648877311194 + 01/08 18:50:00,15.6,15.6,20.091000847368869 + 01/08 19:00:00,15.6,15.6,20.101558201246549 + 01/08 19:10:00,15.6,15.6,20.110770312077237 + 01/08 19:20:00,15.6,15.6,20.1193196598785 + 01/08 19:30:00,15.6,15.6,20.1272669757049 + 01/08 19:40:00,15.6,15.6,20.134624444509499 + 01/08 19:50:00,15.6,15.6,20.141376962345583 + 01/08 20:00:00,15.6,15.6,20.14783454000976 + 01/08 20:10:00,15.6,15.6,20.1539756448164 + 01/08 20:20:00,15.6,15.6,20.159794587443803 + 01/08 20:30:00,15.6,15.6,20.165270941607134 + 01/08 20:40:00,15.6,15.6,20.17046645696805 + 01/08 20:50:00,15.6,15.6,20.175471734662879 + 01/08 21:00:00,15.6,15.6,20.18024820959186 + 01/08 21:10:00,15.6,15.6,20.162183044858169 + 01/08 21:20:00,15.6,15.6,20.16652491071156 + 01/08 21:30:00,15.6,15.6,20.17062784354815 + 01/08 21:40:00,15.6,15.6,20.174640532472439 + 01/08 21:50:00,15.6,15.6,20.17849250260271 + 01/08 22:00:00,15.6,15.6,20.182192883465306 + 01/08 22:10:00,15.6,15.6,20.186328700941567 + 01/08 22:20:00,15.6,15.6,20.190252131914208 + 01/08 22:30:00,15.6,15.6,20.194141037549028 + 01/08 22:40:00,15.6,15.6,20.19791565036871 + 01/08 22:50:00,15.6,15.6,20.201572048999535 + 01/08 23:00:00,15.6,15.6,20.205114735145984 + 01/08 23:10:00,15.6,15.6,20.209057544175459 + 01/08 23:20:00,15.6,15.6,20.21289000678389 + 01/08 23:30:00,15.6,15.6,20.216642458237119 + 01/08 23:40:00,15.6,15.6,20.22006486102409 + 01/08 23:50:00,15.6,15.6,20.223681102941023 + 01/08 24:00:00,15.6,15.6,20.22711160620522 + 01/09 00:10:00,15.6,15.6,20.23106799562 + 01/09 00:20:00,15.6,15.6,20.23484446700874 + 01/09 00:30:00,15.6,15.6,20.238526403976377 + 01/09 00:40:00,15.6,15.6,20.242158044866696 + 01/09 00:50:00,15.6,15.6,20.24568981383927 + 01/09 01:00:00,15.6,15.6,20.249113466498927 + 01/09 01:10:00,15.6,15.6,20.24976158502709 + 01/09 01:20:00,15.6,15.6,20.250367543064625 + 01/09 01:30:00,15.6,15.6,20.250972113633645 + 01/09 01:40:00,15.6,15.6,20.251563462388025 + 01/09 01:50:00,15.6,15.6,20.2520613332337 + 01/09 02:00:00,15.6,15.6,20.252483965582255 + 01/09 02:10:00,15.6,15.6,20.25661218456278 + 01/09 02:20:00,15.6,15.6,20.26051912121631 + 01/09 02:30:00,15.6,15.6,20.264363685451828 + 01/09 02:40:00,15.6,15.6,20.26809116940335 + 01/09 02:50:00,15.6,15.6,20.27196380803837 + 01/09 03:00:00,15.6,15.6,20.275574175574517 + 01/09 03:10:00,15.6,15.6,20.278422455053844 + 01/09 03:20:00,15.6,15.6,20.281407929276907 + 01/09 03:30:00,15.6,15.6,20.284531007197378 + 01/09 03:40:00,15.6,15.6,20.2879165203992 + 01/09 03:50:00,15.6,15.6,20.291563608499865 + 01/09 04:00:00,15.6,15.6,20.29540249794913 + 01/09 04:10:00,15.6,15.6,20.29918971808016 + 01/09 04:20:00,15.6,15.6,20.302860460483733 + 01/09 04:30:00,15.6,15.6,20.30639444651701 + 01/09 04:40:00,15.6,15.6,20.30984687522932 + 01/09 04:50:00,15.6,15.6,20.313168133317875 + 01/09 05:00:00,15.6,15.6,20.316370064620629 + 01/09 05:10:00,15.6,15.6,20.318018342475889 + 01/09 05:20:00,15.6,15.6,20.31933116342939 + 01/09 05:30:00,15.6,15.6,20.32063528830988 + 01/09 05:40:00,15.6,15.6,20.321866242583398 + 01/09 05:50:00,15.6,15.6,20.322977773137379 + 01/09 06:00:00,15.6,15.6,20.32397768811799 + 01/09 06:10:00,15.6,15.6,20.325869503077536 + 01/09 06:20:00,15.6,15.6,20.327761348521788 + 01/09 06:30:00,15.6,15.6,20.329710132698766 + 01/09 06:40:00,15.6,15.6,20.331721571888303 + 01/09 06:50:00,15.6,15.6,20.33381207885402 + 01/09 07:00:00,15.6,15.6,20.335902125582824 + 01/09 07:05:00,15.6,15.6,18.33181967998737 + 01/09 07:10:00,15.6,15.6,18.332137895419775 + 01/09 07:20:00,15.6,15.6,18.099781236911804 + 01/09 07:30:00,15.6,15.6,18.0124199230117 + 01/09 07:40:00,15.6,15.6,17.94413217158985 + 01/09 07:50:00,15.6,15.6,17.889597072402098 + 01/09 08:00:00,15.6,15.6,17.844095889356987 + 01/09 08:10:00,15.6,15.6,16.355862929489004 + 01/09 08:20:00,15.6,15.6,16.13527721064226 + 01/09 08:30:00,15.6,15.6,16.029316223828859 + 01/09 08:40:00,15.6,15.6,15.941567918179361 + 01/09 08:50:00,15.6,15.6,15.867658390249057 + 01/09 09:00:00,15.6,15.6,15.803070537350193 + 01/09 09:10:00,15.6,15.6,15.719523454841275 + 01/09 09:20:00,15.6,15.6,15.65899073950256 + 01/09 09:30:00,15.6,15.6,15.610639228128319 + 01/09 09:40:00,15.6,15.6,15.565575463938823 + 01/09 09:50:00,15.6,15.6,15.522517297941077 + 01/09 10:00:00,15.6,15.6,15.480727013891725 + 01/09 10:10:00,15.6,15.6,15.443361873463486 + 01/09 10:20:00,15.6,15.6,15.396257212226898 + 01/09 10:30:00,15.6,15.6,15.360678262832728 + 01/09 10:40:00,15.6,15.6,15.326619845611843 + 01/09 10:50:00,15.6,15.6,15.294796166136142 + 01/09 11:00:00,15.6,15.6,15.265519221766154 + 01/09 11:10:00,15.6,15.6,15.23660394399057 + 01/09 11:20:00,15.6,15.6,15.206687682806061 + 01/09 11:30:00,15.6,15.6,15.183550007713104 + 01/09 11:40:00,15.6,15.6,15.157797511768381 + 01/09 11:50:00,15.6,15.6,15.135428458569617 + 01/09 12:00:00,15.6,15.6,15.11018723539664 + 01/09 12:10:00,15.6,15.6,15.089439352670697 + 01/09 12:20:00,15.6,15.6,15.075777814287342 + 01/09 12:30:00,15.6,15.6,15.054722589749485 + 01/09 12:40:00,15.6,15.6,15.034526825634284 + 01/09 12:50:00,15.6,15.6,15.015004875414502 + 01/09 13:00:00,15.6,15.6,15.00061944717675 + 01/09 13:10:00,15.6,15.6,14.984451082428722 + 01/09 13:20:00,15.6,15.6,14.961809337668594 + 01/09 13:30:00,15.6,15.6,14.950280109978483 + 01/09 13:40:00,15.6,15.6,14.939113403993959 + 01/09 13:50:00,15.6,15.6,14.927382399160381 + 01/09 14:00:00,15.6,15.6,14.913567576496004 + 01/09 14:10:00,15.6,15.6,14.900897914866937 + 01/09 14:20:00,15.6,15.6,14.89000218842522 + 01/09 14:30:00,15.6,15.6,14.876674243169255 + 01/09 14:40:00,15.6,15.6,14.861634055305137 + 01/09 14:50:00,15.6,15.6,14.850769427889297 + 01/09 15:00:00,15.6,15.6,14.838439014941545 + 01/09 15:10:00,15.6,15.6,14.82964321540095 + 01/09 15:20:00,15.6,15.6,14.822584505839945 + 01/09 15:30:00,15.6,15.6,14.814419359874347 + 01/09 15:40:00,15.6,15.6,14.80674201496829 + 01/09 15:50:00,15.6,15.6,14.799251292682074 + 01/09 16:00:00,15.6,15.6,14.795204705475089 + 01/09 16:10:00,15.6,15.6,16.952287686924508 + 01/09 16:20:00,15.6,15.6,17.201456160539484 + 01/09 16:30:00,15.6,15.6,17.30183139001007 + 01/09 16:40:00,15.6,15.6,17.377397657136055 + 01/09 16:50:00,15.6,15.6,17.439430497354726 + 01/09 17:00:00,15.6,15.6,17.491341606807365 + 01/09 17:10:00,15.6,15.6,17.560622240340125 + 01/09 17:20:00,15.6,15.6,17.61929937153965 + 01/09 17:30:00,15.6,15.6,17.65423230502406 + 01/09 17:40:00,15.6,15.6,17.68538876056297 + 01/09 17:50:00,15.6,15.6,17.713662366677416 + 01/09 18:00:00,15.6,15.6,17.739631616024029 + 01/09 18:10:00,15.6,15.6,17.776951229704598 + 01/09 18:20:00,15.6,15.6,17.80463189445814 + 01/09 18:30:00,15.6,15.6,17.82454453312682 + 01/09 18:40:00,15.6,15.6,17.84250981299096 + 01/09 18:50:00,15.6,15.6,17.858770773133768 + 01/09 19:00:00,15.6,15.6,17.873610304664525 + 01/09 19:10:00,15.6,15.6,17.885237036179725 + 01/09 19:20:00,15.6,15.6,17.895850921957139 + 01/09 19:30:00,15.6,15.6,17.905790374244199 + 01/09 19:40:00,15.6,15.6,17.915148944366395 + 01/09 19:50:00,15.6,15.6,17.923982946023217 + 01/09 20:00:00,15.6,15.6,17.93239706074135 + 01/09 20:10:00,15.6,15.6,17.955681161973076 + 01/09 20:20:00,15.6,15.6,17.96605008134537 + 01/09 20:30:00,15.6,15.6,17.975555703709508 + 01/09 20:40:00,15.6,15.6,17.98455647333084 + 01/09 20:50:00,15.6,15.6,17.993073914715369 + 01/09 21:00:00,15.6,15.6,18.001201561398739 + 01/09 21:10:00,15.6,15.6,17.98401979578806 + 01/09 21:20:00,15.6,15.6,17.993784992133265 + 01/09 21:30:00,15.6,15.6,17.999048267127355 + 01/09 21:40:00,15.6,15.6,18.004185760302258 + 01/09 21:50:00,15.6,15.6,18.009200028156245 + 01/09 22:00:00,15.6,15.6,18.014079900441148 + 01/09 22:10:00,15.6,15.6,18.02128704147697 + 01/09 22:20:00,15.6,15.6,18.028270699208219 + 01/09 22:30:00,15.6,15.6,18.035104708390077 + 01/09 22:40:00,15.6,15.6,18.041743239228013 + 01/09 22:50:00,15.6,15.6,18.048188576174398 + 01/09 23:00:00,15.6,15.6,18.054528467102935 + 01/09 23:10:00,15.6,15.6,19.429244543905356 + 01/09 23:20:00,15.6,15.6,19.57029890036304 + 01/09 23:30:00,15.6,15.6,19.632796646270607 + 01/09 23:40:00,15.6,15.6,19.682104825548444 + 01/09 23:50:00,15.6,15.6,19.7219760697457 + 01/09 24:00:00,15.6,15.6,19.755470956660504 + 01/10 00:10:00,15.6,15.6,19.78511461482367 + 01/10 00:20:00,15.6,15.6,19.811310385432404 + 01/10 00:30:00,15.6,15.6,19.83485185786201 + 01/10 00:40:00,15.6,15.6,19.856394951337177 + 01/10 00:50:00,15.6,15.6,19.876248964674195 + 01/10 01:00:00,15.6,15.6,19.89467402835458 + 01/10 01:10:00,15.6,15.6,19.90925528188471 + 01/10 01:20:00,15.6,15.6,19.922678054333248 + 01/10 01:30:00,15.6,15.6,19.935177109285936 + 01/10 01:40:00,15.6,15.6,19.946882310117414 + 01/10 01:50:00,15.6,15.6,19.957854654509857 + 01/10 02:00:00,15.6,15.6,19.96817679126051 + 01/10 02:10:00,15.6,15.6,19.97975340334407 + 01/10 02:20:00,15.6,15.6,19.990776141560095 + 01/10 02:30:00,15.6,15.6,20.00136209704964 + 01/10 02:40:00,15.6,15.6,20.01149435157191 + 01/10 02:50:00,15.6,15.6,20.021202576251406 + 01/10 03:00:00,15.6,15.6,20.030507075266855 + 01/10 03:10:00,15.6,15.6,20.040174122385709 + 01/10 03:20:00,15.6,15.6,20.049852368654915 + 01/10 03:30:00,15.6,15.6,20.059542373031527 + 01/10 03:40:00,15.6,15.6,20.069263687905129 + 01/10 03:50:00,15.6,15.6,20.079007834630404 + 01/10 04:00:00,15.6,15.6,20.088663100698665 + 01/10 04:10:00,15.6,15.6,20.098326678661566 + 01/10 04:20:00,15.6,15.6,20.10782874386696 + 01/10 04:30:00,15.6,15.6,20.11713121213257 + 01/10 04:40:00,15.6,15.6,20.126213270525996 + 01/10 04:50:00,15.6,15.6,20.135017428409446 + 01/10 05:00:00,15.6,15.6,20.143653706972257 + 01/10 05:10:00,15.6,15.6,20.15082269182711 + 01/10 05:20:00,15.6,15.6,20.157541991229978 + 01/10 05:30:00,15.6,15.6,20.163713974573328 + 01/10 05:40:00,15.6,15.6,20.169307439503205 + 01/10 05:50:00,15.6,15.6,20.174375238707083 + 01/10 06:00:00,15.6,15.6,20.179029779764929 + 01/10 06:10:00,15.6,15.6,20.18451775160918 + 01/10 06:20:00,15.6,15.6,20.18982316088019 + 01/10 06:30:00,15.6,15.6,20.19500034913428 + 01/10 06:40:00,15.6,15.6,20.20005046369008 + 01/10 06:50:00,15.6,15.6,20.20512817925702 + 01/10 07:00:00,15.6,15.6,20.210152133526337 + 01/10 07:05:00,15.6,15.6,18.203836881350797 + 01/10 07:10:00,15.6,15.6,18.203889432841064 + 01/10 07:20:00,15.6,15.6,17.973148378761818 + 01/10 07:30:00,15.6,15.6,17.888299777973655 + 01/10 07:40:00,15.6,15.6,17.822265557893059 + 01/10 07:50:00,15.6,15.6,17.77040211496513 + 01/10 08:00:00,15.6,15.6,17.727716804209366 + 01/10 08:10:00,15.6,15.6,16.241160689505045 + 01/10 08:20:00,15.6,15.6,16.024105385754113 + 01/10 08:30:00,15.6,15.6,15.922186113505003 + 01/10 08:40:00,15.6,15.6,15.838575058450637 + 01/10 08:50:00,15.6,15.6,15.76875135964394 + 01/10 09:00:00,15.6,15.6,15.708133161338413 + 01/10 09:10:00,15.6,15.6,15.628455466512739 + 01/10 09:20:00,15.6,15.6,15.571635027906046 + 01/10 09:30:00,15.6,15.6,15.52675117258404 + 01/10 09:40:00,15.6,15.6,15.485338614418915 + 01/10 09:50:00,15.6,15.6,15.446836559526126 + 01/10 10:00:00,15.6,15.6,15.41088912841334 + 01/10 10:10:00,15.6,15.6,15.378414666100158 + 01/10 10:20:00,15.6,15.6,15.337192763417108 + 01/10 10:30:00,15.6,15.6,15.308287151521342 + 01/10 10:40:00,15.6,15.6,15.280457176221838 + 01/10 10:50:00,15.6,15.6,15.254052673714746 + 01/10 11:00:00,15.6,15.6,15.226235969074362 + 01/10 11:10:00,15.6,15.6,15.194447775865136 + 01/10 11:20:00,15.6,15.6,15.160607119256536 + 01/10 11:30:00,15.6,15.6,15.12709260499297 + 01/10 11:40:00,15.6,15.6,15.096401734731945 + 01/10 11:50:00,15.6,15.6,15.064113983728794 + 01/10 12:00:00,15.6,15.6,15.036197280389854 + 01/10 12:10:00,15.6,15.6,15.005201480137013 + 01/10 12:20:00,15.6,15.6,14.987989893576417 + 01/10 12:30:00,15.6,15.6,14.959678072901032 + 01/10 12:40:00,15.6,15.6,14.934140518776366 + 01/10 12:50:00,15.6,15.6,14.910131825617818 + 01/10 13:00:00,15.6,15.6,14.885047234233085 + 01/10 13:10:00,15.6,15.6,14.868580804972187 + 01/10 13:20:00,15.6,15.6,14.843435095212286 + 01/10 13:30:00,15.6,15.6,14.831433326664156 + 01/10 13:40:00,15.6,15.6,14.820506681094332 + 01/10 13:50:00,15.6,15.6,14.811740550808646 + 01/10 14:00:00,15.6,15.6,14.803291024339254 + 01/10 14:10:00,15.6,15.6,14.792784816379136 + 01/10 14:20:00,15.6,15.6,14.78559441878658 + 01/10 14:30:00,15.6,15.6,14.775286511284419 + 01/10 14:40:00,15.6,15.6,14.765986846825744 + 01/10 14:50:00,15.6,15.6,14.755947891261127 + 01/10 15:00:00,15.6,15.6,14.74869311555519 + 01/10 15:10:00,15.6,15.6,14.738929473848558 + 01/10 15:20:00,15.6,15.6,14.736326656942337 + 01/10 15:30:00,15.6,15.6,14.728216484134745 + 01/10 15:40:00,15.6,15.6,14.722524954140584 + 01/10 15:50:00,15.6,15.6,14.71709956579099 + 01/10 16:00:00,15.6,15.6,14.71136145070272 + 01/10 16:10:00,15.6,15.6,16.87366092606146 + 01/10 16:20:00,15.6,15.6,17.123051265348705 + 01/10 16:30:00,15.6,15.6,17.22552252905331 + 01/10 16:40:00,15.6,15.6,17.30655657058827 + 01/10 16:50:00,15.6,15.6,17.370002855760334 + 01/10 17:00:00,15.6,15.6,17.424489242121177 + 01/10 17:10:00,15.6,15.6,17.49830397995392 + 01/10 17:20:00,15.6,15.6,17.56008755442109 + 01/10 17:30:00,15.6,15.6,17.597891794580435 + 01/10 17:40:00,15.6,15.6,17.63112573884036 + 01/10 17:50:00,15.6,15.6,17.661322547949636 + 01/10 18:00:00,15.6,15.6,17.690181733392757 + 01/10 18:10:00,15.6,15.6,17.73030167260546 + 01/10 18:20:00,15.6,15.6,17.7608926997131 + 01/10 18:30:00,15.6,15.6,17.78365538925958 + 01/10 18:40:00,15.6,15.6,17.804471512011966 + 01/10 18:50:00,15.6,15.6,17.823680007563135 + 01/10 19:00:00,15.6,15.6,17.84150713603 + 01/10 19:10:00,15.6,15.6,17.857356545179657 + 01/10 19:20:00,15.6,15.6,17.872133887327228 + 01/10 19:30:00,15.6,15.6,17.88611336693314 + 01/10 19:40:00,15.6,15.6,17.89932094608458 + 01/10 19:50:00,15.6,15.6,17.911998584338993 + 01/10 20:00:00,15.6,15.6,17.924205779487225 + 01/10 20:10:00,15.6,15.6,17.94394933276069 + 01/10 20:20:00,15.6,15.6,17.950869524262413 + 01/10 20:30:00,15.6,15.6,17.956970152055708 + 01/10 20:40:00,15.6,15.6,17.962677175039148 + 01/10 20:50:00,15.6,15.6,17.968040783381484 + 01/10 21:00:00,15.6,15.6,17.973084195379767 + 01/10 21:10:00,15.6,15.6,17.960861133789935 + 01/10 21:20:00,15.6,15.6,17.975350388016638 + 01/10 21:30:00,15.6,15.6,17.984939730889349 + 01/10 21:40:00,15.6,15.6,17.994045684737995 + 01/10 21:50:00,15.6,15.6,18.002731395705618 + 01/10 22:00:00,15.6,15.6,18.011025214276626 + 01/10 22:10:00,15.6,15.6,18.017263841655358 + 01/10 22:20:00,15.6,15.6,18.023327618364616 + 01/10 22:30:00,15.6,15.6,18.029327135321858 + 01/10 22:40:00,15.6,15.6,18.035303296478778 + 01/10 22:50:00,15.6,15.6,18.04121241254454 + 01/10 23:00:00,15.6,15.6,18.047044091124648 + 01/10 23:10:00,15.6,15.6,19.42400577366207 + 01/10 23:20:00,15.6,15.6,19.567319687240535 + 01/10 23:30:00,15.6,15.6,19.63222498084135 + 01/10 23:40:00,15.6,15.6,19.683882794664357 + 01/10 23:50:00,15.6,15.6,19.725846003527296 + 01/10 24:00:00,15.6,15.6,19.76134458745783 + 01/11 00:10:00,15.6,15.6,19.79040882213951 + 01/11 00:20:00,15.6,15.6,19.816161707945164 + 01/11 00:30:00,15.6,15.6,19.839303563248046 + 01/11 00:40:00,15.6,15.6,19.860364638024213 + 01/11 00:50:00,15.6,15.6,19.879710056112399 + 01/11 01:00:00,15.6,15.6,19.897534507059576 + 01/11 01:10:00,15.6,15.6,19.914227762311258 + 01/11 01:20:00,15.6,15.6,19.9298542593012 + 01/11 01:30:00,15.6,15.6,19.944561352513849 + 01/11 01:40:00,15.6,15.6,19.95845646193034 + 01/11 01:50:00,15.6,15.6,19.9715494951563 + 01/11 02:00:00,15.6,15.6,19.98407367550562 + 01/11 02:10:00,15.6,15.6,19.997812988574599 + 01/11 02:20:00,15.6,15.6,20.010959734203575 + 01/11 02:30:00,15.6,15.6,20.02348031148011 + 01/11 02:40:00,15.6,15.6,20.035356151985906 + 01/11 02:50:00,15.6,15.6,20.046706216860373 + 01/11 03:00:00,15.6,15.6,20.05759443427216 + 01/11 03:10:00,15.6,15.6,20.066092365183076 + 01/11 03:20:00,15.6,15.6,20.074155848116914 + 01/11 03:30:00,15.6,15.6,20.08183517981944 + 01/11 03:40:00,15.6,15.6,20.08914946544037 + 01/11 03:50:00,15.6,15.6,20.09622685394298 + 01/11 04:00:00,15.6,15.6,20.103020350105895 + 01/11 04:10:00,15.6,15.6,20.11099206346674 + 01/11 04:20:00,15.6,15.6,20.11876822774073 + 01/11 04:30:00,15.6,15.6,20.126315006737007 + 01/11 04:40:00,15.6,15.6,20.13381378637935 + 01/11 04:50:00,15.6,15.6,20.141177751103318 + 01/11 05:00:00,15.6,15.6,20.148410208368725 + 01/11 05:10:00,15.6,15.6,20.154753714671853 + 01/11 05:20:00,15.6,15.6,20.16089554079206 + 01/11 05:30:00,15.6,15.6,20.16696692999472 + 01/11 05:40:00,15.6,15.6,20.17291139389112 + 01/11 05:50:00,15.6,15.6,20.17871072171619 + 01/11 06:00:00,15.6,15.6,20.18436758088263 + 01/11 06:10:00,15.6,15.6,20.191330225840873 + 01/11 06:20:00,15.6,15.6,20.19821779213214 + 01/11 06:30:00,15.6,15.6,20.205107263931589 + 01/11 06:40:00,15.6,15.6,20.21194708831497 + 01/11 06:50:00,15.6,15.6,20.218755420603246 + 01/11 07:00:00,15.6,15.6,20.22548429142792 + 01/11 07:05:00,15.6,15.6,18.21813108096024 + 01/11 07:10:00,15.6,15.6,18.21836720367447 + 01/11 07:20:00,15.6,15.6,17.986779901650985 + 01/11 07:30:00,15.6,15.6,17.90084907361558 + 01/11 07:40:00,15.6,15.6,17.833736344386787 + 01/11 07:50:00,15.6,15.6,17.78033613602376 + 01/11 08:00:00,15.6,15.6,17.735376970468427 + 01/11 08:10:00,15.6,15.6,16.247662666382518 + 01/11 08:20:00,15.6,15.6,16.029393791729964 + 01/11 08:30:00,15.6,15.6,15.925550614559667 + 01/11 08:40:00,15.6,15.6,15.839041966220773 + 01/11 08:50:00,15.6,15.6,15.76557234209109 + 01/11 09:00:00,15.6,15.6,15.700712644964522 + 01/11 09:10:00,15.6,15.6,15.617138885066842 + 01/11 09:20:00,15.6,15.6,15.555623414751033 + 01/11 09:30:00,15.6,15.6,15.505325901796719 + 01/11 09:40:00,15.6,15.6,15.457929630820834 + 01/11 09:50:00,15.6,15.6,15.413079564038338 + 01/11 10:00:00,15.6,15.6,15.370544486964486 + 01/11 10:10:00,15.6,15.6,15.328943107869764 + 01/11 10:20:00,15.6,15.6,15.278539756182852 + 01/11 10:30:00,15.6,15.6,15.240410337377702 + 01/11 10:40:00,15.6,15.6,15.203902279360728 + 01/11 10:50:00,15.6,15.6,15.169564108841322 + 01/11 11:00:00,15.6,15.6,15.137831473856501 + 01/11 11:10:00,15.6,15.6,15.102546969870492 + 01/11 11:20:00,15.6,15.6,15.067887995828816 + 01/11 11:30:00,15.6,15.6,15.035733788032414 + 01/11 11:40:00,15.6,15.6,15.006554274769954 + 01/11 11:50:00,15.6,15.6,14.976576701816093 + 01/11 12:00:00,15.6,15.6,14.948736291992349 + 01/11 12:10:00,15.6,15.6,14.925176208107207 + 01/11 12:20:00,15.6,15.6,14.914803627861874 + 01/11 12:30:00,15.6,15.6,14.897463069223618 + 01/11 12:40:00,15.6,15.6,14.88075137388076 + 01/11 12:50:00,15.6,15.6,14.868137156151719 + 01/11 13:00:00,15.6,15.6,14.854911680224 + 01/11 13:10:00,15.6,15.6,14.839953656308176 + 01/11 13:20:00,15.6,15.6,14.816034333949391 + 01/11 13:30:00,15.6,15.6,14.800296692221647 + 01/11 13:40:00,15.6,15.6,14.786593512000457 + 01/11 13:50:00,15.6,15.6,14.771369816266564 + 01/11 14:00:00,15.6,15.6,14.758629947733029 + 01/11 14:10:00,15.6,15.6,14.745337647210569 + 01/11 14:20:00,15.6,15.6,14.739255756286609 + 01/11 14:30:00,15.6,15.6,14.727920730583625 + 01/11 14:40:00,15.6,15.6,14.720725113710234 + 01/11 14:50:00,15.6,15.6,14.711450019167368 + 01/11 15:00:00,15.6,15.6,14.705846180983622 + 01/11 15:10:00,15.6,15.6,14.698512385744929 + 01/11 15:20:00,15.6,15.6,14.69632123327115 + 01/11 15:30:00,15.6,15.6,14.691036986032989 + 01/11 15:40:00,15.6,15.6,14.685241882729981 + 01/11 15:50:00,15.6,15.6,14.682333675367217 + 01/11 16:00:00,15.6,15.6,14.677030203189329 + 01/11 16:10:00,15.6,15.6,16.842574157330107 + 01/11 16:20:00,15.6,15.6,17.093676254209826 + 01/11 16:30:00,15.6,15.6,17.193809724959768 + 01/11 16:40:00,15.6,15.6,17.27356372463879 + 01/11 16:50:00,15.6,15.6,17.33745656332708 + 01/11 17:00:00,15.6,15.6,17.389166427128154 + 01/11 17:10:00,15.6,15.6,17.460590613775446 + 01/11 17:20:00,15.6,15.6,17.520312221928614 + 01/11 17:30:00,15.6,15.6,17.555748417649637 + 01/11 17:40:00,15.6,15.6,17.587485269075949 + 01/11 17:50:00,15.6,15.6,17.61646268199734 + 01/11 18:00:00,15.6,15.6,17.642960528979779 + 01/11 18:10:00,15.6,15.6,17.682318063647278 + 01/11 18:20:00,15.6,15.6,17.711413759269449 + 01/11 18:30:00,15.6,15.6,17.733840408022816 + 01/11 18:40:00,15.6,15.6,17.754575467388916 + 01/11 18:50:00,15.6,15.6,17.773743549923919 + 01/11 19:00:00,15.6,15.6,17.791563208425076 + 01/11 19:10:00,15.6,15.6,17.80682545829796 + 01/11 19:20:00,15.6,15.6,17.821274110877945 + 01/11 19:30:00,15.6,15.6,17.834985638581473 + 01/11 19:40:00,15.6,15.6,17.84808215436712 + 01/11 19:50:00,15.6,15.6,17.86057635066652 + 01/11 20:00:00,15.6,15.6,17.872562234725917 + 01/11 20:10:00,15.6,15.6,17.895598220804926 + 01/11 20:20:00,15.6,15.6,17.905604421007909 + 01/11 20:30:00,15.6,15.6,17.914801433445335 + 01/11 20:40:00,15.6,15.6,17.923530909633 + 01/11 20:50:00,15.6,15.6,17.931849020195658 + 01/11 21:00:00,15.6,15.6,17.939846482194935 + 01/11 21:10:00,15.6,15.6,17.92604198478045 + 01/11 21:20:00,15.6,15.6,17.939238123642605 + 01/11 21:30:00,15.6,15.6,17.947824208838285 + 01/11 21:40:00,15.6,15.6,17.95625237929643 + 01/11 21:50:00,15.6,15.6,17.964539163213869 + 01/11 22:00:00,15.6,15.6,17.97267921855311 + 01/11 22:10:00,15.6,15.6,17.976961102251296 + 01/11 22:20:00,15.6,15.6,17.980932151275675 + 01/11 22:30:00,15.6,15.6,17.98476414925133 + 01/11 22:40:00,15.6,15.6,17.988369936415347 + 01/11 22:50:00,15.6,15.6,17.991829511902947 + 01/11 23:00:00,15.6,15.6,17.99545078014164 + 01/11 23:10:00,15.6,15.6,19.377524019793716 + 01/11 23:20:00,15.6,15.6,19.52457433390248 + 01/11 23:30:00,15.6,15.6,19.592588841865039 + 01/11 23:40:00,15.6,15.6,19.647031535950526 + 01/11 23:50:00,15.6,15.6,19.691700374592167 + 01/11 24:00:00,15.6,15.6,19.729836048548699 + 01/12 00:10:00,15.6,15.6,19.755901883956676 + 01/12 00:20:00,15.6,15.6,19.77856527629824 + 01/12 00:30:00,15.6,15.6,19.79863336400123 + 01/12 00:40:00,15.6,15.6,19.816788466467707 + 01/12 00:50:00,15.6,15.6,19.833419772028305 + 01/12 01:00:00,15.6,15.6,19.848932509507784 + 01/12 01:10:00,15.6,15.6,19.87161260409046 + 01/12 01:20:00,15.6,15.6,19.89285000690837 + 01/12 01:30:00,15.6,15.6,19.912701324382405 + 01/12 01:40:00,15.6,15.6,19.93139552769722 + 01/12 01:50:00,15.6,15.6,19.949060461884785 + 01/12 02:00:00,15.6,15.6,19.965850644919624 + 01/12 02:10:00,15.6,15.6,19.977708120807568 + 01/12 02:20:00,15.6,15.6,19.989049211959249 + 01/12 02:30:00,15.6,15.6,20.000130853087719 + 01/12 02:40:00,15.6,15.6,20.010928778099449 + 01/12 02:50:00,15.6,15.6,20.021475911927955 + 01/12 03:00:00,15.6,15.6,20.031777428380538 + 01/12 03:10:00,15.6,15.6,20.039701459150217 + 01/12 03:20:00,15.6,15.6,20.047499669653694 + 01/12 03:30:00,15.6,15.6,20.055030532347815 + 01/12 03:40:00,15.6,15.6,20.06235466695858 + 01/12 03:50:00,15.6,15.6,20.069472119989638 + 01/12 04:00:00,15.6,15.6,20.0762979098224 + 01/12 04:10:00,15.6,15.6,20.084901166310833 + 01/12 04:20:00,15.6,15.6,20.09324979748977 + 01/12 04:30:00,15.6,15.6,20.101308156113743 + 01/12 04:40:00,15.6,15.6,20.10907920599624 + 01/12 04:50:00,15.6,15.6,20.116511410848834 + 01/12 05:00:00,15.6,15.6,20.123713939286668 + 01/12 05:10:00,15.6,15.6,20.13136305229579 + 01/12 05:20:00,15.6,15.6,20.13878875919099 + 01/12 05:30:00,15.6,15.6,20.145987476374019 + 01/12 05:40:00,15.6,15.6,20.152936110112255 + 01/12 05:50:00,15.6,15.6,20.159664804440703 + 01/12 06:00:00,15.6,15.6,20.166268527179157 + 01/12 06:10:00,15.6,15.6,20.174656323210998 + 01/12 06:20:00,15.6,15.6,20.18278219359278 + 01/12 06:30:00,15.6,15.6,20.190670031978063 + 01/12 06:40:00,15.6,15.6,20.19826339044783 + 01/12 06:50:00,15.6,15.6,20.205748309334589 + 01/12 07:00:00,15.6,15.6,20.21305462263604 + 01/12 07:05:00,15.6,15.6,18.20364566925101 + 01/12 07:10:00,15.6,15.6,18.203831047527446 + 01/12 07:15:00,15.6,15.6,17.971126348758216 + 01/12 07:20:00,15.6,15.6,17.971313302269484 + 01/12 07:30:00,15.6,15.6,17.88398686809629 + 01/12 07:40:00,15.6,15.6,17.815679535040954 + 01/12 07:50:00,15.6,15.6,17.761155028802145 + 01/12 08:00:00,15.6,15.6,17.71559019268636 + 01/12 08:05:00,15.6,15.6,16.227823377869485 + 01/12 08:10:00,15.6,15.6,16.22772932393456 + 01/12 08:20:00,15.6,15.6,16.009250382597789 + 01/12 08:30:00,15.6,15.6,15.906463728609264 + 01/12 08:40:00,15.6,15.6,15.821693942394893 + 01/12 08:50:00,15.6,15.6,15.750491453953045 + 01/12 09:00:00,15.6,15.6,15.688055666495833 + 01/12 09:10:00,15.6,15.6,15.60804172537506 + 01/12 09:20:00,15.6,15.6,15.55005646548453 + 01/12 09:30:00,15.6,15.6,15.502963398124244 + 01/12 09:40:00,15.6,15.6,15.458605402658826 + 01/12 09:50:00,15.6,15.6,15.416792226885108 + 01/12 10:00:00,15.6,15.6,15.377311737210237 + 01/12 10:10:00,15.6,15.6,15.336786091872624 + 01/12 10:20:00,15.6,15.6,15.287472792362334 + 01/12 10:30:00,15.6,15.6,15.25046558209851 + 01/12 10:40:00,15.6,15.6,15.215122662845183 + 01/12 10:50:00,15.6,15.6,15.181540783632329 + 01/12 11:00:00,15.6,15.6,15.151361012145494 + 01/12 11:10:00,15.6,15.6,15.12040017424141 + 01/12 11:20:00,15.6,15.6,15.087742432241939 + 01/12 11:30:00,15.6,15.6,15.059496855910144 + 01/12 11:40:00,15.6,15.6,15.032322131704781 + 01/12 11:50:00,15.6,15.6,15.006122242285534 + 01/12 12:00:00,15.6,15.6,14.980431623833699 + 01/12 12:10:00,15.6,15.6,14.95689456975061 + 01/12 12:20:00,15.6,15.6,14.94355061461476 + 01/12 12:30:00,15.6,15.6,14.923316564920102 + 01/12 12:40:00,15.6,15.6,14.90114334504476 + 01/12 12:50:00,15.6,15.6,14.882998835176048 + 01/12 13:00:00,15.6,15.6,14.86521237904942 + 01/12 13:10:00,15.6,15.6,14.847675326321589 + 01/12 13:20:00,15.6,15.6,14.82362256690646 + 01/12 13:30:00,15.6,15.6,14.806914970737014 + 01/12 13:40:00,15.6,15.6,14.79468468417334 + 01/12 13:50:00,15.6,15.6,14.780563906399332 + 01/12 14:00:00,15.6,15.6,14.771189905477108 + 01/12 14:10:00,15.6,15.6,14.759073617778 + 01/12 14:20:00,15.6,15.6,14.754337591480669 + 01/12 14:30:00,15.6,15.6,14.744080754343754 + 01/12 14:40:00,15.6,15.6,14.736881414511173 + 01/12 14:50:00,15.6,15.6,14.728876104245256 + 01/12 15:00:00,15.6,15.6,14.722700745170327 + 01/12 15:10:00,15.6,15.6,14.717175710663735 + 01/12 15:20:00,15.6,15.6,14.715702744623233 + 01/12 15:30:00,15.6,15.6,14.712864704209843 + 01/12 15:40:00,15.6,15.6,14.707499684300509 + 01/12 15:50:00,15.6,15.6,14.704703187715923 + 01/12 16:00:00,15.6,15.6,14.699381246790259 + 01/12 16:10:00,15.6,15.6,16.86158226718264 + 01/12 16:15:00,15.6,15.6,17.11222204971902 + 01/12 16:20:00,15.6,15.6,17.11102513774786 + 01/12 16:30:00,15.6,15.6,17.20564964100369 + 01/12 16:40:00,15.6,15.6,17.28132011219943 + 01/12 16:50:00,15.6,15.6,17.34086619198915 + 01/12 17:00:00,15.6,15.6,17.38854013336168 + 01/12 17:10:00,15.6,15.6,17.457651957058795 + 01/12 17:20:00,15.6,15.6,17.51586267913774 + 01/12 17:30:00,15.6,15.6,17.550056832115098 + 01/12 17:40:00,15.6,15.6,17.580605754599149 + 01/12 17:50:00,15.6,15.6,17.60815098382805 + 01/12 18:00:00,15.6,15.6,17.633072932654846 + 01/12 18:10:00,15.6,15.6,17.667954301038575 + 01/12 18:20:00,15.6,15.6,17.693577792108124 + 01/12 18:30:00,15.6,15.6,17.712010475596445 + 01/12 18:40:00,15.6,15.6,17.728987104199935 + 01/12 18:50:00,15.6,15.6,17.744742895865998 + 01/12 19:00:00,15.6,15.6,17.7594254294533 + 01/12 19:10:00,15.6,15.6,17.772173480840345 + 01/12 19:20:00,15.6,15.6,17.783837569001059 + 01/12 19:30:00,15.6,15.6,17.794629251102874 + 01/12 19:40:00,15.6,15.6,17.80459338732652 + 01/12 19:50:00,15.6,15.6,17.81384295613332 + 01/12 20:00:00,15.6,15.6,17.822428314664813 + 01/12 20:10:00,15.6,15.6,17.845367876011275 + 01/12 20:20:00,15.6,15.6,17.855296959779275 + 01/12 20:30:00,15.6,15.6,17.864413557298997 + 01/12 20:40:00,15.6,15.6,17.87309359857204 + 01/12 20:50:00,15.6,15.6,17.881440613315836 + 01/12 21:00:00,15.6,15.6,17.889470573896909 + 01/12 21:10:00,15.6,15.6,17.872765135895599 + 01/12 21:20:00,15.6,15.6,17.883056526021457 + 01/12 21:30:00,15.6,15.6,17.888733138275624 + 01/12 21:40:00,15.6,15.6,17.894236397876587 + 01/12 21:50:00,15.6,15.6,17.899583122779704 + 01/12 22:00:00,15.6,15.6,17.904843272492387 + 01/12 22:10:00,15.6,15.6,17.909959130226384 + 01/12 22:20:00,15.6,15.6,17.91464181167809 + 01/12 22:30:00,15.6,15.6,17.91919512027578 + 01/12 22:40:00,15.6,15.6,17.92350376527638 + 01/12 22:50:00,15.6,15.6,17.927647721733839 + 01/12 23:00:00,15.6,15.6,17.931638542443559 + 01/12 23:10:00,15.6,15.6,19.307517081153788 + 01/12 23:20:00,15.6,15.6,19.448440574757734 + 01/12 23:30:00,15.6,15.6,19.51000796623896 + 01/12 23:40:00,15.6,15.6,19.558296017795425 + 01/12 23:50:00,15.6,15.6,19.5969317697365 + 01/12 24:00:00,15.6,15.6,19.62909352116327 + 01/13 00:10:00,15.6,15.6,19.65672618652898 + 01/13 00:20:00,15.6,15.6,19.681250168071558 + 01/13 00:30:00,15.6,15.6,19.703268110447327 + 01/13 00:40:00,15.6,15.6,19.723313466623684 + 01/13 00:50:00,15.6,15.6,19.741717211263937 + 01/13 01:00:00,15.6,15.6,19.758658771292425 + 01/13 01:10:00,15.6,15.6,19.77568397384257 + 01/13 01:20:00,15.6,15.6,19.791547269362533 + 01/13 01:30:00,15.6,15.6,19.8064286858812 + 01/13 01:40:00,15.6,15.6,19.820410877381766 + 01/13 01:50:00,15.6,15.6,19.83352819826757 + 01/13 02:00:00,15.6,15.6,19.846021987558154 + 01/13 02:10:00,15.6,15.6,19.857782820901954 + 01/13 02:20:00,15.6,15.6,19.86895674219415 + 01/13 02:30:00,15.6,15.6,19.879543350503267 + 01/13 02:40:00,15.6,15.6,19.889538886948388 + 01/13 02:50:00,15.6,15.6,19.899059430770686 + 01/13 03:00:00,15.6,15.6,19.90816711066306 + 01/13 03:10:00,15.6,15.6,19.91887333649447 + 01/13 03:20:00,15.6,15.6,19.929289994478077 + 01/13 03:30:00,15.6,15.6,19.939482860221074 + 01/13 03:40:00,15.6,15.6,19.949476081346334 + 01/13 03:50:00,15.6,15.6,19.95939041812521 + 01/13 04:00:00,15.6,15.6,19.96916978208786 + 01/13 04:10:00,15.6,15.6,19.97363654878254 + 01/13 04:20:00,15.6,15.6,19.97826294203907 + 01/13 04:30:00,15.6,15.6,19.982778438070925 + 01/13 04:40:00,15.6,15.6,19.987423930584357 + 01/13 04:50:00,15.6,15.6,19.992004542094646 + 01/13 05:00:00,15.6,15.6,19.99648496096475 + 01/13 05:10:00,15.6,15.6,20.00344968094743 + 01/13 05:20:00,15.6,15.6,20.009989149461693 + 01/13 05:30:00,15.6,15.6,20.01638316159869 + 01/13 05:40:00,15.6,15.6,20.022500849746455 + 01/13 05:50:00,15.6,15.6,20.0283825709067 + 01/13 06:00:00,15.6,15.6,20.034061156685377 + 01/13 06:10:00,15.6,15.6,20.039364130570289 + 01/13 06:20:00,15.6,15.6,20.04447452072514 + 01/13 06:30:00,15.6,15.6,20.04939263798883 + 01/13 06:40:00,15.6,15.6,20.054095277833349 + 01/13 06:50:00,15.6,15.6,20.05859955424723 + 01/13 07:00:00,15.6,15.6,20.062876272639494 + 01/13 07:10:00,15.6,15.6,18.054866509268899 + 01/13 07:20:00,15.6,15.6,17.823685517082266 + 01/13 07:30:00,15.6,15.6,17.739376419379654 + 01/13 07:40:00,15.6,15.6,17.674391160917766 + 01/13 07:50:00,15.6,15.6,17.62368040939168 + 01/13 08:00:00,15.6,15.6,17.58219645105981 + 01/13 08:10:00,15.6,15.6,16.101872844334303 + 01/13 08:20:00,15.6,15.6,15.888492016369663 + 01/13 08:30:00,15.6,15.6,15.790085576350974 + 01/13 08:40:00,15.6,15.6,15.709640496534583 + 01/13 08:50:00,15.6,15.6,15.642749344648458 + 01/13 09:00:00,15.6,15.6,15.585091539418898 + 01/13 09:10:00,15.6,15.6,15.506838558677535 + 01/13 09:20:00,15.6,15.6,15.451770506253844 + 01/13 09:30:00,15.6,15.6,15.40866139475232 + 01/13 09:40:00,15.6,15.6,15.36902258924852 + 01/13 09:50:00,15.6,15.6,15.332101343637224 + 01/13 10:00:00,15.6,15.6,15.297477195962058 + 01/13 10:10:00,15.6,15.6,15.265584882679239 + 01/13 10:20:00,15.6,15.6,15.224330225726219 + 01/13 10:30:00,15.6,15.6,15.195358024400049 + 01/13 10:40:00,15.6,15.6,15.16827411876624 + 01/13 10:50:00,15.6,15.6,15.143018125422464 + 01/13 11:00:00,15.6,15.6,15.114796453895961 + 01/13 11:10:00,15.6,15.6,15.090178900730268 + 01/13 11:20:00,15.6,15.6,15.060061207206239 + 01/13 11:30:00,15.6,15.6,15.034603863545634 + 01/13 11:40:00,15.6,15.6,15.008293862541006 + 01/13 11:50:00,15.6,15.6,14.984033525567924 + 01/13 12:00:00,15.6,15.6,14.960037315846926 + 01/13 12:10:00,15.6,15.6,14.935282948197882 + 01/13 12:20:00,15.6,15.6,14.920718220409196 + 01/13 12:30:00,15.6,15.6,14.897345978081724 + 01/13 12:40:00,15.6,15.6,14.876552873269537 + 01/13 12:50:00,15.6,15.6,14.854176676498894 + 01/13 13:00:00,15.6,15.6,14.83579233629991 + 01/13 13:10:00,15.6,15.6,14.819580577148232 + 01/13 13:20:00,15.6,15.6,14.794059883445506 + 01/13 13:30:00,15.6,15.6,14.78091366876645 + 01/13 13:40:00,15.6,15.6,14.767016869517108 + 01/13 13:50:00,15.6,15.6,14.756000310426867 + 01/13 14:00:00,15.6,15.6,14.743713288073666 + 01/13 14:10:00,15.6,15.6,14.73464332705935 + 01/13 14:20:00,15.6,15.6,14.726325737929527 + 01/13 14:30:00,15.6,15.6,14.717914512439308 + 01/13 14:40:00,15.6,15.6,14.70681276787596 + 01/13 14:50:00,15.6,15.6,14.699793851831983 + 01/13 15:00:00,15.6,15.6,14.691184682534305 + 01/13 15:10:00,15.6,15.6,14.683661941534704 + 01/13 15:20:00,15.6,15.6,14.680521361491487 + 01/13 15:30:00,15.6,15.6,14.675032475924392 + 01/13 15:40:00,15.6,15.6,14.671488430110307 + 01/13 15:50:00,15.6,15.6,14.666520544518463 + 01/13 16:00:00,15.6,15.6,14.664962684561088 + 01/13 16:10:00,15.6,15.6,16.82994351121201 + 01/13 16:20:00,15.6,15.6,17.082213333928445 + 01/13 16:30:00,15.6,15.6,17.18449239568169 + 01/13 16:40:00,15.6,15.6,17.262215356183835 + 01/13 16:50:00,15.6,15.6,17.325618644482625 + 01/13 17:00:00,15.6,15.6,17.379751301005869 + 01/13 17:10:00,15.6,15.6,17.451693336625739 + 01/13 17:20:00,15.6,15.6,17.512147077476464 + 01/13 17:30:00,15.6,15.6,17.549115301716865 + 01/13 17:40:00,15.6,15.6,17.582309600876024 + 01/13 17:50:00,15.6,15.6,17.612538148615238 + 01/13 18:00:00,15.6,15.6,17.640148903653459 + 01/13 18:10:00,15.6,15.6,17.678325632960865 + 01/13 18:20:00,15.6,15.6,17.706837137538775 + 01/13 18:30:00,15.6,15.6,17.727707511263909 + 01/13 18:40:00,15.6,15.6,17.746853338900018 + 01/13 18:50:00,15.6,15.6,17.764513623329824 + 01/13 19:00:00,15.6,15.6,17.78097474959842 + 01/13 19:10:00,15.6,15.6,17.796801862083276 + 01/13 19:20:00,15.6,15.6,17.811643027923745 + 01/13 19:30:00,15.6,15.6,17.825642633508644 + 01/13 19:40:00,15.6,15.6,17.83889207770597 + 01/13 19:50:00,15.6,15.6,17.851449849083584 + 01/13 20:00:00,15.6,15.6,17.86342614886013 + 01/13 20:10:00,15.6,15.6,17.887511573566706 + 01/13 20:20:00,15.6,15.6,17.89866085012574 + 01/13 20:30:00,15.6,15.6,17.909027613995236 + 01/13 20:40:00,15.6,15.6,17.91898303168658 + 01/13 20:50:00,15.6,15.6,17.928537003683137 + 01/13 21:00:00,15.6,15.6,17.93778460909278 + 01/13 21:10:00,15.6,15.6,17.92636310236404 + 01/13 21:20:00,15.6,15.6,17.9418166212788 + 01/13 21:30:00,15.6,15.6,17.952662422496226 + 01/13 21:40:00,15.6,15.6,17.96326075960669 + 01/13 21:50:00,15.6,15.6,17.973655253930937 + 01/13 22:00:00,15.6,15.6,17.98385557430621 + 01/13 22:10:00,15.6,15.6,17.991820738868208 + 01/13 22:20:00,15.6,15.6,17.999510425688006 + 01/13 22:30:00,15.6,15.6,18.006979893225535 + 01/13 22:40:00,15.6,15.6,18.014194966506616 + 01/13 22:50:00,15.6,15.6,18.021129585021784 + 01/13 23:00:00,15.6,15.6,18.027958859879754 + 01/13 23:10:00,15.6,15.6,19.406643459060797 + 01/13 23:20:00,15.6,15.6,19.54908316912796 + 01/13 23:30:00,15.6,15.6,19.612682843975209 + 01/13 23:40:00,15.6,15.6,19.663105102049419 + 01/13 23:50:00,15.6,15.6,19.704054148298714 + 01/13 24:00:00,15.6,15.6,19.73867845717832 + 01/14 00:10:00,15.6,15.6,19.77058911571457 + 01/14 00:20:00,15.6,15.6,19.79906391806064 + 01/14 00:30:00,15.6,15.6,19.82475247415519 + 01/14 00:40:00,15.6,15.6,19.848315347005859 + 01/14 00:50:00,15.6,15.6,19.87009938912208 + 01/14 01:00:00,15.6,15.6,19.89037328389499 + 01/14 01:10:00,15.6,15.6,19.907529110893184 + 01/14 01:20:00,15.6,15.6,19.923564628619503 + 01/14 01:30:00,15.6,15.6,19.938733923632247 + 01/14 01:40:00,15.6,15.6,19.95318455992011 + 01/14 01:50:00,15.6,15.6,19.966962097948576 + 01/14 02:00:00,15.6,15.6,19.98013709802976 + 01/14 02:10:00,15.6,15.6,19.994689036274055 + 01/14 02:20:00,15.6,15.6,20.008667749537854 + 01/14 02:30:00,15.6,15.6,20.02218538131728 + 01/14 02:40:00,15.6,15.6,20.03521232769751 + 01/14 02:50:00,15.6,15.6,20.04778378839691 + 01/14 03:00:00,15.6,15.6,20.059928507556806 + 01/14 03:10:00,15.6,15.6,20.071566056930924 + 01/14 03:20:00,15.6,15.6,20.0829318518112 + 01/14 03:30:00,15.6,15.6,20.093949363759273 + 01/14 03:40:00,15.6,15.6,20.104644154149747 + 01/14 03:50:00,15.6,15.6,20.11503745757723 + 01/14 04:00:00,15.6,15.6,20.12505992051786 + 01/14 04:10:00,15.6,15.6,20.131620454147176 + 01/14 04:20:00,15.6,15.6,20.13793184161778 + 01/14 04:30:00,15.6,15.6,20.144002947648145 + 01/14 04:40:00,15.6,15.6,20.14984291038611 + 01/14 04:50:00,15.6,15.6,20.155402542686994 + 01/14 05:00:00,15.6,15.6,20.160786885247377 + 01/14 05:10:00,15.6,15.6,20.16853642359894 + 01/14 05:20:00,15.6,15.6,20.17612753176163 + 01/14 05:30:00,15.6,15.6,20.18356223723736 + 01/14 05:40:00,15.6,15.6,20.190786978695895 + 01/14 05:50:00,15.6,15.6,20.197882068605016 + 01/14 06:00:00,15.6,15.6,20.204875186503693 + 01/14 06:10:00,15.6,15.6,20.214720365889009 + 01/14 06:20:00,15.6,15.6,20.22434828501713 + 01/14 06:30:00,15.6,15.6,20.23371170041384 + 01/14 06:40:00,15.6,15.6,20.242765884305034 + 01/14 06:50:00,15.6,15.6,20.251683809699168 + 01/14 07:00:00,15.6,15.6,20.260395519512117 + 01/14 07:10:00,15.6,15.6,19.59915561155365 + 01/14 07:20:00,15.6,15.6,19.533061574214935 + 01/14 07:30:00,15.6,15.6,19.506824464602706 + 01/14 07:40:00,15.6,15.6,19.486596108610443 + 01/14 07:50:00,15.6,15.6,19.47036592890714 + 01/14 08:00:00,15.6,15.6,19.45618383848808 + 01/14 08:10:00,15.6,15.6,18.363337353007503 + 01/14 08:20:00,15.6,15.6,18.21545991639462 + 01/14 08:30:00,15.6,15.6,18.150604223916227 + 01/14 08:40:00,15.6,15.6,18.09683470604611 + 01/14 08:50:00,15.6,15.6,18.051157393780846 + 01/14 09:00:00,15.6,15.6,18.01059755249385 + 01/14 09:10:00,15.6,15.6,17.97403957576852 + 01/14 09:20:00,15.6,15.6,17.930798936334999 + 01/14 09:30:00,15.6,15.6,17.8980427652201 + 01/14 09:40:00,15.6,15.6,17.86673229203001 + 01/14 09:50:00,15.6,15.6,17.836699022261955 + 01/14 10:00:00,15.6,15.6,17.807839642931655 + 01/14 10:10:00,15.6,15.6,17.782332452904606 + 01/14 10:20:00,15.6,15.6,17.749125943809046 + 01/14 10:30:00,15.6,15.6,17.72598939979401 + 01/14 10:40:00,15.6,15.6,17.704182030732853 + 01/14 10:50:00,15.6,15.6,17.683757155454797 + 01/14 11:00:00,15.6,15.6,17.664736639527598 + 01/14 11:10:00,15.6,15.6,17.645370910585095 + 01/14 11:20:00,15.6,15.6,17.627087382674419 + 01/14 11:30:00,15.6,15.6,17.609608378028058 + 01/14 11:40:00,15.6,15.6,17.59292022187393 + 01/14 11:50:00,15.6,15.6,17.577010606668617 + 01/14 12:00:00,15.6,15.6,17.56184287496324 + 01/14 12:10:00,15.6,15.6,17.548076495365018 + 01/14 12:20:00,15.6,15.6,17.535036860672294 + 01/14 12:30:00,15.6,15.6,17.52271918445431 + 01/14 12:40:00,15.6,15.6,17.51098905990559 + 01/14 12:50:00,15.6,15.6,17.49968297519347 + 01/14 13:00:00,15.6,15.6,17.488709224037878 + 01/14 13:10:00,15.6,15.6,17.478336503225525 + 01/14 13:20:00,15.6,15.6,17.46838342233189 + 01/14 13:30:00,15.6,15.6,17.458968109993124 + 01/14 13:40:00,15.6,15.6,17.45048652290376 + 01/14 13:50:00,15.6,15.6,17.443586645241976 + 01/14 14:00:00,15.6,15.6,17.439074351801904 + 01/14 14:10:00,15.6,15.6,17.437460100105619 + 01/14 14:20:00,15.6,15.6,17.43710531779572 + 01/14 14:30:00,15.6,15.6,17.437534124641365 + 01/14 14:40:00,15.6,15.6,17.43583359630858 + 01/14 14:50:00,15.6,15.6,17.43591704715869 + 01/14 15:00:00,15.6,15.6,17.43542197270049 + 01/14 15:10:00,15.6,15.6,17.432646343599396 + 01/14 15:20:00,15.6,15.6,17.42793740916528 + 01/14 15:30:00,15.6,15.6,17.42294113043619 + 01/14 15:40:00,15.6,15.6,17.419414502457675 + 01/14 15:50:00,15.6,15.6,17.41651322387794 + 01/14 16:00:00,15.6,15.6,17.41421925068291 + 01/14 16:10:00,15.6,15.6,17.408803139863957 + 01/14 16:20:00,15.6,15.6,17.40651917176552 + 01/14 16:30:00,15.6,15.6,17.405453203478726 + 01/14 16:40:00,15.6,15.6,17.405345289732968 + 01/14 16:50:00,15.6,15.6,17.40507656268721 + 01/14 17:00:00,15.6,15.6,17.405376377787304 + 01/14 17:10:00,15.6,15.6,17.42480252335176 + 01/14 17:20:00,15.6,15.6,17.440946012266303 + 01/14 17:30:00,15.6,15.6,17.44810426614982 + 01/14 17:40:00,15.6,15.6,17.45521936315492 + 01/14 17:50:00,15.6,15.6,17.462541530897878 + 01/14 18:00:00,15.6,15.6,17.468586883846265 + 01/14 18:10:00,15.6,15.6,19.24826766189308 + 01/14 18:20:00,15.6,15.6,19.458913302042576 + 01/14 18:30:00,15.6,15.6,19.542488045749754 + 01/14 18:40:00,15.6,15.6,19.607082465996358 + 01/14 18:50:00,15.6,15.6,19.658105329702253 + 01/14 19:00:00,15.6,15.6,19.69989038702656 + 01/14 19:10:00,15.6,15.6,19.750013108016636 + 01/14 19:20:00,15.6,15.6,19.782993548636374 + 01/14 19:30:00,15.6,15.6,19.812104975346814 + 01/14 19:40:00,15.6,15.6,19.838404417724786 + 01/14 19:50:00,15.6,15.6,19.86244406089153 + 01/14 20:00:00,15.6,15.6,19.884543238007639 + 01/14 20:10:00,15.6,15.6,19.905077340572246 + 01/14 20:20:00,15.6,15.6,19.92412881752037 + 01/14 20:30:00,15.6,15.6,19.94183422635693 + 01/14 20:40:00,15.6,15.6,19.958351255846279 + 01/14 20:50:00,15.6,15.6,19.973759911731685 + 01/14 21:00:00,15.6,15.6,19.98829391641359 + 01/14 21:10:00,15.6,15.6,19.976292150372747 + 01/14 21:20:00,15.6,15.6,19.98627775983737 + 01/14 21:30:00,15.6,15.6,19.995571384217976 + 01/14 21:40:00,15.6,15.6,20.004244121276913 + 01/14 21:50:00,15.6,15.6,20.01236714430919 + 01/14 22:00:00,15.6,15.6,20.02005194430161 + 01/14 22:10:00,15.6,15.6,20.028614283899974 + 01/14 22:20:00,15.6,15.6,20.036849192222666 + 01/14 22:30:00,15.6,15.6,20.04484595718458 + 01/14 22:40:00,15.6,15.6,20.05257671078577 + 01/14 22:50:00,15.6,15.6,20.06021056364417 + 01/14 23:00:00,15.6,15.6,20.06767064633751 + 01/14 23:10:00,15.6,15.6,20.074109109851358 + 01/14 23:20:00,15.6,15.6,20.080401992380165 + 01/14 23:30:00,15.6,15.6,20.086453167005339 + 01/14 23:40:00,15.6,15.6,20.092465205713116 + 01/14 23:50:00,15.6,15.6,20.098344003446159 + 01/14 24:00:00,15.6,15.6,20.104085318547914 + 01/15 00:10:00,15.6,15.6,20.1095844850626 + 01/15 00:20:00,15.6,15.6,20.115044579883795 + 01/15 00:30:00,15.6,15.6,20.120634967055154 + 01/15 00:40:00,15.6,15.6,20.126328488323347 + 01/15 00:50:00,15.6,15.6,20.132076847100764 + 01/15 01:00:00,15.6,15.6,20.137853915582626 + 01/15 01:10:00,15.6,15.6,20.145821206950278 + 01/15 01:20:00,15.6,15.6,20.15363128027081 + 01/15 01:30:00,15.6,15.6,20.161262654310968 + 01/15 01:40:00,15.6,15.6,20.168649475032824 + 01/15 01:50:00,15.6,15.6,20.17580466237002 + 01/15 02:00:00,15.6,15.6,20.18271880865792 + 01/15 02:10:00,15.6,15.6,20.18753282102785 + 01/15 02:20:00,15.6,15.6,20.19229928684224 + 01/15 02:30:00,15.6,15.6,20.1969751573229 + 01/15 02:40:00,15.6,15.6,20.201575628630388 + 01/15 02:50:00,15.6,15.6,20.206097092647729 + 01/15 03:00:00,15.6,15.6,20.21044703366295 + 01/15 03:10:00,15.6,15.6,20.214838015011215 + 01/15 03:20:00,15.6,15.6,20.21915242462571 + 01/15 03:30:00,15.6,15.6,20.223389064670234 + 01/15 03:40:00,15.6,15.6,20.227552112283467 + 01/15 03:50:00,15.6,15.6,20.23155696581589 + 01/15 04:00:00,15.6,15.6,20.235560375568367 + 01/15 04:10:00,15.6,15.6,20.240129487139709 + 01/15 04:20:00,15.6,15.6,20.24458942248844 + 01/15 04:30:00,15.6,15.6,20.24893144936802 + 01/15 04:40:00,15.6,15.6,20.25309376182541 + 01/15 04:50:00,15.6,15.6,20.2571656783181 + 01/15 05:00:00,15.6,15.6,20.261178071658394 + 01/15 05:10:00,15.6,15.6,20.264327865365425 + 01/15 05:20:00,15.6,15.6,20.267358349841819 + 01/15 05:30:00,15.6,15.6,20.27022623532966 + 01/15 05:40:00,15.6,15.6,20.27294853204496 + 01/15 05:50:00,15.6,15.6,20.27562838429934 + 01/15 06:00:00,15.6,15.6,20.27820707515633 + 01/15 06:10:00,15.6,15.6,20.28212416375454 + 01/15 06:20:00,15.6,15.6,20.28596685777455 + 01/15 06:30:00,15.6,15.6,20.28968887729111 + 01/15 06:40:00,15.6,15.6,20.29346261590984 + 01/15 06:50:00,15.6,15.6,20.2972005443396 + 01/15 07:00:00,15.6,15.6,20.300902993333403 + 01/15 07:10:00,15.6,15.6,20.325910729077305 + 01/15 07:20:00,15.6,15.6,20.32817863768052 + 01/15 07:30:00,15.6,15.6,20.3305692812356 + 01/15 07:40:00,15.6,15.6,20.333021345939075 + 01/15 07:50:00,15.6,15.6,20.335093186564636 + 01/15 08:00:00,15.6,15.6,20.33600661366051 + 01/15 08:10:00,15.6,15.6,18.93337330993916 + 01/15 08:20:00,15.6,15.6,18.771094359081148 + 01/15 08:30:00,15.6,15.6,18.706710032526975 + 01/15 08:40:00,15.6,15.6,18.6543519221286 + 01/15 08:50:00,15.6,15.6,18.610718494945176 + 01/15 09:00:00,15.6,15.6,18.57283895227434 + 01/15 09:10:00,15.6,15.6,18.5374718644371 + 01/15 09:20:00,15.6,15.6,18.49566058820733 + 01/15 09:30:00,15.6,15.6,18.464657511031509 + 01/15 09:40:00,15.6,15.6,18.435381166381963 + 01/15 09:50:00,15.6,15.6,18.407568036001807 + 01/15 10:00:00,15.6,15.6,18.381058537521846 + 01/15 10:10:00,15.6,15.6,18.35420764753417 + 01/15 10:20:00,15.6,15.6,18.31965480952232 + 01/15 10:30:00,15.6,15.6,18.294944223768888 + 01/15 10:40:00,15.6,15.6,18.271351816386525 + 01/15 10:50:00,15.6,15.6,18.248777251710395 + 01/15 11:00:00,15.6,15.6,18.227127630214445 + 01/15 11:10:00,15.6,15.6,18.206467077126154 + 01/15 11:20:00,15.6,15.6,18.186686779991608 + 01/15 11:30:00,15.6,15.6,18.16772560817969 + 01/15 11:40:00,15.6,15.6,18.149444179046929 + 01/15 11:50:00,15.6,15.6,18.13203915965553 + 01/15 12:00:00,15.6,15.6,18.11541409758373 + 01/15 12:10:00,15.6,15.6,18.100449911256687 + 01/15 12:20:00,15.6,15.6,18.08628180837874 + 01/15 12:30:00,15.6,15.6,18.072864369689 + 01/15 12:40:00,15.6,15.6,18.060162462383734 + 01/15 12:50:00,15.6,15.6,18.048094262634586 + 01/15 13:00:00,15.6,15.6,18.036793811448626 + 01/15 13:10:00,15.6,15.6,18.025622109195397 + 01/15 13:20:00,15.6,15.6,18.015038619609834 + 01/15 13:30:00,15.6,15.6,18.005032639649977 + 01/15 13:40:00,15.6,15.6,17.995684463617054 + 01/15 13:50:00,15.6,15.6,17.986980727604366 + 01/15 14:00:00,15.6,15.6,17.978865761492526 + 01/15 14:10:00,15.6,15.6,17.9714795210077 + 01/15 14:20:00,15.6,15.6,17.964663788310398 + 01/15 14:30:00,15.6,15.6,17.958385145514155 + 01/15 14:40:00,15.6,15.6,17.95273750529077 + 01/15 14:50:00,15.6,15.6,17.94774947802864 + 01/15 15:00:00,15.6,15.6,17.943347916262355 + 01/15 15:10:00,15.6,15.6,17.9387042509555 + 01/15 15:20:00,15.6,15.6,17.934521745244454 + 01/15 15:30:00,15.6,15.6,17.930734861744939 + 01/15 15:40:00,15.6,15.6,17.92727509647218 + 01/15 15:50:00,15.6,15.6,17.924399910314454 + 01/15 16:00:00,15.6,15.6,17.92193167883405 + 01/15 16:10:00,15.6,15.6,19.358088998598814 + 01/15 16:20:00,15.6,15.6,19.51133987715797 + 01/15 16:30:00,15.6,15.6,19.579367577567856 + 01/15 16:40:00,15.6,15.6,19.634145058720358 + 01/15 16:50:00,15.6,15.6,19.679604902782978 + 01/15 17:00:00,15.6,15.6,19.717132908912946 + 01/15 17:10:00,15.6,15.6,19.750054457457567 + 01/15 17:20:00,15.6,15.6,19.789331676571828 + 01/15 17:30:00,15.6,15.6,19.81720737748081 + 01/15 17:40:00,15.6,15.6,19.842892196199949 + 01/15 17:50:00,15.6,15.6,19.86686697826712 + 01/15 18:00:00,15.6,15.6,19.889109514031128 + 01/15 18:10:00,15.6,15.6,19.90968843792113 + 01/15 18:20:00,15.6,15.6,19.945324318992399 + 01/15 18:30:00,15.6,15.6,19.962266821661584 + 01/15 18:40:00,15.6,15.6,19.977686268196949 + 01/15 18:50:00,15.6,15.6,19.991898021999075 + 01/15 19:00:00,15.6,15.6,20.00522571729142 + 01/15 19:10:00,15.6,15.6,20.016933847687079 + 01/15 19:20:00,15.6,15.6,20.02774198506891 + 01/15 19:30:00,15.6,15.6,20.037750565364143 + 01/15 19:40:00,15.6,15.6,20.047020784513543 + 01/15 19:50:00,15.6,15.6,20.05579099394793 + 01/15 20:00:00,15.6,15.6,20.064040920873425 + 01/15 20:10:00,15.6,15.6,20.072599757755915 + 01/15 20:20:00,15.6,15.6,20.08087876467058 + 01/15 20:30:00,15.6,15.6,20.0889164436958 + 01/15 20:40:00,15.6,15.6,20.096727749227666 + 01/15 20:50:00,15.6,15.6,20.10449379802609 + 01/15 21:00:00,15.6,15.6,20.1121578359179 + 01/15 21:10:00,15.6,15.6,20.096649914356826 + 01/15 21:20:00,15.6,15.6,20.10354016134965 + 01/15 21:30:00,15.6,15.6,20.11006856696992 + 01/15 21:40:00,15.6,15.6,20.116378268035466 + 01/15 21:50:00,15.6,15.6,20.122407477464916 + 01/15 22:00:00,15.6,15.6,20.128180555042193 + 01/15 22:10:00,15.6,15.6,20.133597544181659 + 01/15 22:20:00,15.6,15.6,20.138874482264954 + 01/15 22:30:00,15.6,15.6,20.14425541527882 + 01/15 22:40:00,15.6,15.6,20.149665201080134 + 01/15 22:50:00,15.6,15.6,20.15509317962078 + 01/15 23:00:00,15.6,15.6,20.16052825773441 + 01/15 23:10:00,15.6,15.6,20.165488440176703 + 01/15 23:20:00,15.6,15.6,20.170344926030724 + 01/15 23:30:00,15.6,15.6,20.175033071345326 + 01/15 23:40:00,15.6,15.6,20.179514110765838 + 01/15 23:50:00,15.6,15.6,20.18380256433921 + 01/15 24:00:00,15.6,15.6,20.18785677496913 + 01/16 00:10:00,15.6,15.6,20.191188688286567 + 01/16 00:20:00,15.6,15.6,20.194643875493659 + 01/16 00:30:00,15.6,15.6,20.19822023850809 + 01/16 00:40:00,15.6,15.6,20.20193378959259 + 01/16 00:50:00,15.6,15.6,20.205733037921996 + 01/16 01:00:00,15.6,15.6,20.20958176157532 + 01/16 01:10:00,15.6,15.6,20.214265125687996 + 01/16 01:20:00,15.6,15.6,20.218747262295904 + 01/16 01:30:00,15.6,15.6,20.2229452649754 + 01/16 01:40:00,15.6,15.6,20.22682936369481 + 01/16 01:50:00,15.6,15.6,20.23033537573915 + 01/16 02:00:00,15.6,15.6,20.233677974778087 + 01/16 02:10:00,15.6,15.6,20.238811579134077 + 01/16 02:20:00,15.6,15.6,20.243856720668619 + 01/16 02:30:00,15.6,15.6,20.24882511398356 + 01/16 02:40:00,15.6,15.6,20.25366721695971 + 01/16 02:50:00,15.6,15.6,20.2585438713076 + 01/16 03:00:00,15.6,15.6,20.263407622727397 + 01/16 03:10:00,15.6,15.6,20.263711190240327 + 01/16 03:20:00,15.6,15.6,20.264010343603375 + 01/16 03:30:00,15.6,15.6,20.264259629184968 + 01/16 03:40:00,15.6,15.6,20.26452755148308 + 01/16 03:50:00,15.6,15.6,20.264837790479974 + 01/16 04:00:00,15.6,15.6,20.265150858544879 + 01/16 04:10:00,15.6,15.6,20.268171384415238 + 01/16 04:20:00,15.6,15.6,20.271157077150183 + 01/16 04:30:00,15.6,15.6,20.274135426066928 + 01/16 04:40:00,15.6,15.6,20.277210974032167 + 01/16 04:50:00,15.6,15.6,20.280311640358894 + 01/16 05:00:00,15.6,15.6,20.283431517626807 + 01/16 05:10:00,15.6,15.6,20.288852605105125 + 01/16 05:20:00,15.6,15.6,20.294095911711215 + 01/16 05:30:00,15.6,15.6,20.299264598542345 + 01/16 05:40:00,15.6,15.6,20.304247148205389 + 01/16 05:50:00,15.6,15.6,20.30905715608582 + 01/16 06:00:00,15.6,15.6,20.313714611080419 + 01/16 06:10:00,15.6,15.6,20.31429602502745 + 01/16 06:20:00,15.6,15.6,20.314915092179495 + 01/16 06:30:00,15.6,15.6,20.315527357410436 + 01/16 06:40:00,15.6,15.6,20.316137112574805 + 01/16 06:50:00,15.6,15.6,20.316748915279438 + 01/16 07:00:00,15.6,15.6,20.317290186315164 + 01/16 07:10:00,15.6,15.6,20.343888889244015 + 01/16 07:20:00,15.6,15.6,20.347774847668537 + 01/16 07:30:00,15.6,15.6,20.351570770846544 + 01/16 07:40:00,15.6,15.6,20.355278426509103 + 01/16 07:50:00,15.6,15.6,20.35849649870328 + 01/16 08:00:00,15.6,15.6,20.36047680031981 + 01/16 08:10:00,15.6,15.6,18.95337258092693 + 01/16 08:20:00,15.6,15.6,18.786111163872 + 01/16 08:30:00,15.6,15.6,18.716993606671524 + 01/16 08:40:00,15.6,15.6,18.660151123845677 + 01/16 08:50:00,15.6,15.6,18.612458724013139 + 01/16 09:00:00,15.6,15.6,18.57045230672031 + 01/16 09:10:00,15.6,15.6,18.53610349527968 + 01/16 09:20:00,15.6,15.6,18.495222933852209 + 01/16 09:30:00,15.6,15.6,18.464842423405487 + 01/16 09:40:00,15.6,15.6,18.435942249932528 + 01/16 09:50:00,15.6,15.6,18.408464232001437 + 01/16 10:00:00,15.6,15.6,18.382556910351938 + 01/16 10:10:00,15.6,15.6,18.35527442465689 + 01/16 10:20:00,15.6,15.6,18.32052197716182 + 01/16 10:30:00,15.6,15.6,18.296130971670704 + 01/16 10:40:00,15.6,15.6,18.27294650670549 + 01/16 10:50:00,15.6,15.6,18.2504605542044 + 01/16 11:00:00,15.6,15.6,18.228504291123128 + 01/16 11:10:00,15.6,15.6,18.2085599247382 + 01/16 11:20:00,15.6,15.6,18.189022481734154 + 01/16 11:30:00,15.6,15.6,18.169827567260766 + 01/16 11:40:00,15.6,15.6,18.151350333989386 + 01/16 11:50:00,15.6,15.6,18.133804255488604 + 01/16 12:00:00,15.6,15.6,18.11721708074346 + 01/16 12:10:00,15.6,15.6,18.101092149476157 + 01/16 12:20:00,15.6,15.6,18.085956289713363 + 01/16 12:30:00,15.6,15.6,18.07152767144897 + 01/16 12:40:00,15.6,15.6,18.0577396798653 + 01/16 12:50:00,15.6,15.6,18.044748968641689 + 01/16 13:00:00,15.6,15.6,18.032377598086879 + 01/16 13:10:00,15.6,15.6,18.020876879819388 + 01/16 13:20:00,15.6,15.6,18.010189168394768 + 01/16 13:30:00,15.6,15.6,18.000297216868323 + 01/16 13:40:00,15.6,15.6,17.991133508926269 + 01/16 13:50:00,15.6,15.6,17.98268709563651 + 01/16 14:00:00,15.6,15.6,17.97504244225656 + 01/16 14:10:00,15.6,15.6,17.96763790476403 + 01/16 14:20:00,15.6,15.6,17.960789218321126 + 01/16 14:30:00,15.6,15.6,17.954557648424257 + 01/16 14:40:00,15.6,15.6,17.9488654463744 + 01/16 14:50:00,15.6,15.6,17.94361681128454 + 01/16 15:00:00,15.6,15.6,17.938824886296954 + 01/16 15:10:00,15.574774774774774,15.574774774774774,17.93580804272807 + 01/16 15:20:00,15.54954954954955,15.54954954954955,17.933370186025429 + 01/16 15:30:00,15.524324324324324,15.524324324324324,17.93140559525114 + 01/16 15:40:00,15.499099099099098,15.499099099099098,17.930251409310516 + 01/16 15:50:00,15.473873873873874,15.473873873873874,17.93056100611833 + 01/16 16:00:00,15.448648648648648,15.448648648648648,17.931690339568968 + 01/16 16:10:00,15.448648648648648,15.448648648648648,19.366853183709105 + 01/16 16:20:00,15.448648648648648,15.448648648648648,19.518184533938716 + 01/16 16:30:00,15.448648648648648,15.448648648648648,19.582481302917438 + 01/16 16:40:00,15.448648648648648,15.448648648648648,19.631536012582708 + 01/16 16:50:00,15.448648648648648,15.448648648648648,19.672380109114877 + 01/16 17:00:00,15.448648648648648,15.448648648648648,19.707017668781054 + 01/16 17:10:00,15.545345345345345,15.545345345345345,19.737650465076283 + 01/16 17:20:00,15.6,15.6,19.773352146016025 + 01/16 17:30:00,15.6,15.6,19.797768951676937 + 01/16 17:40:00,15.6,15.6,19.817854753494083 + 01/16 17:50:00,15.6,15.6,19.83850751519968 + 01/16 18:00:00,15.6,15.6,19.858392273260909 + 01/16 18:10:00,15.6,15.6,19.87842957542671 + 01/16 18:20:00,15.6,15.6,19.91393818479151 + 01/16 18:30:00,15.6,15.6,19.9301721823793 + 01/16 18:40:00,15.6,15.6,19.94485229167963 + 01/16 18:50:00,15.6,15.6,19.958298086725934 + 01/16 19:00:00,15.6,15.6,19.970723111297013 + 01/16 19:10:00,15.6,15.6,19.979156316935609 + 01/16 19:20:00,15.6,15.6,19.98678215686954 + 01/16 19:30:00,15.6,15.6,19.993817124725056 + 01/16 19:40:00,15.6,15.6,20.000343939006379 + 01/16 19:50:00,15.6,15.6,20.006494966025934 + 01/16 20:00:00,15.6,15.6,20.012314231006493 + 01/16 20:10:00,15.6,15.6,20.02174140505413 + 01/16 20:20:00,15.6,15.6,20.030512220556369 + 01/16 20:30:00,15.6,15.6,20.038681389544246 + 01/16 20:40:00,15.6,15.6,20.046196895281878 + 01/16 20:50:00,15.6,15.6,20.05312146870646 + 01/16 21:00:00,15.6,15.6,20.059525492574989 + 01/16 21:10:00,15.6,15.6,20.04095438098709 + 01/16 21:20:00,15.6,15.6,20.044970968216448 + 01/16 21:30:00,15.6,15.6,20.048917611432704 + 01/16 21:40:00,15.6,15.6,20.052828213658925 + 01/16 21:50:00,15.6,15.6,20.056710382943498 + 01/16 22:00:00,15.6,15.6,20.060479246100774 + 01/16 22:10:00,15.6,15.6,20.06385756831872 + 01/16 22:20:00,15.6,15.6,20.067472039681179 + 01/16 22:30:00,15.6,15.6,20.071352625406705 + 01/16 22:40:00,15.6,15.6,20.075493165451513 + 01/16 22:50:00,15.6,15.6,20.07979860946087 + 01/16 23:00:00,15.6,15.6,20.084294417788099 + 01/16 23:10:00,15.6,15.6,20.089421615888694 + 01/16 23:20:00,15.6,15.6,20.09428042736936 + 01/16 23:30:00,15.6,15.6,20.098742696368217 + 01/16 23:40:00,15.6,15.6,20.10275074331291 + 01/16 23:50:00,15.6,15.6,20.106323988773555 + 01/16 24:00:00,15.6,15.6,20.10955015434844 + 01/17 00:10:00,15.6,15.6,20.11159763200782 + 01/17 00:20:00,15.6,15.6,20.113358759013648 + 01/17 00:30:00,15.6,15.6,20.114990833253118 + 01/17 00:40:00,15.6,15.6,20.116476591406735 + 01/17 00:50:00,15.6,15.6,20.117993037542019 + 01/17 01:00:00,15.6,15.6,20.11944790688837 + 01/17 01:10:00,15.6,15.6,20.121540345306366 + 01/17 01:20:00,15.6,15.6,20.123815155779658 + 01/17 01:30:00,15.6,15.6,20.126074478432139 + 01/17 01:40:00,15.6,15.6,20.128541450506626 + 01/17 01:50:00,15.6,15.6,20.131073855839529 + 01/17 02:00:00,15.6,15.6,20.133658631487415 + 01/17 02:10:00,15.6,15.6,20.136570097556004 + 01/17 02:20:00,15.6,15.6,20.139226004164159 + 01/17 02:30:00,15.6,15.6,20.141829279013924 + 01/17 02:40:00,15.6,15.6,20.14432776641082 + 01/17 02:50:00,15.6,15.6,20.14674347865576 + 01/17 03:00:00,15.6,15.6,20.14907221494959 + 01/17 03:10:00,15.6,15.6,20.151240157479557 + 01/17 03:20:00,15.6,15.6,20.153404258699685 + 01/17 03:30:00,15.6,15.6,20.15572262065966 + 01/17 03:40:00,15.6,15.6,20.158127058926163 + 01/17 03:50:00,15.6,15.6,20.16061839305873 + 01/17 04:00:00,15.6,15.6,20.16316892165296 + 01/17 04:10:00,15.6,15.6,20.16649725483784 + 01/17 04:20:00,15.6,15.6,20.169800123187838 + 01/17 04:30:00,15.6,15.6,20.17289917429101 + 01/17 04:40:00,15.6,15.6,20.175792687033856 + 01/17 04:50:00,15.6,15.6,20.178484185204004 + 01/17 05:00:00,15.6,15.6,20.18089537204251 + 01/17 05:10:00,15.6,15.6,20.181266751037204 + 01/17 05:20:00,15.6,15.6,20.181656654339418 + 01/17 05:30:00,15.6,15.6,20.18204515405691 + 01/17 05:40:00,15.6,15.6,20.18246584294304 + 01/17 05:50:00,15.6,15.6,20.182830080619057 + 01/17 06:00:00,15.6,15.6,20.183248489026189 + 01/17 06:10:00,15.6,15.6,20.185165878713844 + 01/17 06:20:00,15.6,15.6,20.18733881388953 + 01/17 06:30:00,15.6,15.6,20.189710961724694 + 01/17 06:40:00,15.6,15.6,20.192260748695767 + 01/17 06:50:00,15.6,15.6,20.19497631057648 + 01/17 07:00:00,15.6,15.6,20.19788868258855 + 01/17 07:10:00,15.6,15.6,18.190925098238119 + 01/17 07:20:00,15.6,15.6,17.95936681594428 + 01/17 07:30:00,15.6,15.6,17.87392987878805 + 01/17 07:40:00,15.6,15.6,17.807638284042157 + 01/17 07:50:00,15.6,15.6,17.755585983591286 + 01/17 08:00:00,15.6,15.6,17.712717476586016 + 01/17 08:10:00,15.6,15.6,16.229785457492207 + 01/17 08:20:00,15.6,15.6,16.01463770464535 + 01/17 08:30:00,15.6,15.6,15.914594808327216 + 01/17 08:40:00,15.6,15.6,15.832851906337244 + 01/17 08:50:00,15.6,15.6,15.764931553485109 + 01/17 09:00:00,15.6,15.6,15.706365939745418 + 01/17 09:10:00,15.6,15.6,15.625813506230664 + 01/17 09:20:00,15.6,15.6,15.568734063707378 + 01/17 09:30:00,15.6,15.6,15.5239202381537 + 01/17 09:40:00,15.6,15.6,15.483058521427794 + 01/17 09:50:00,15.6,15.6,15.445590239681597 + 01/17 10:00:00,15.6,15.6,15.411141570958434 + 01/17 10:10:00,15.6,15.6,15.381585591552627 + 01/17 10:20:00,15.6,15.6,15.343495133861416 + 01/17 10:30:00,15.6,15.6,15.317840361080906 + 01/17 10:40:00,15.6,15.6,15.293800273229908 + 01/17 10:50:00,15.6,15.6,15.270976477351317 + 01/17 11:00:00,15.6,15.6,15.249217101238254 + 01/17 11:10:00,15.6,15.6,15.226203078137207 + 01/17 11:20:00,15.6,15.6,15.201686552582052 + 01/17 11:30:00,15.6,15.6,15.177719198494677 + 01/17 11:40:00,15.6,15.6,15.15763902864819 + 01/17 11:50:00,15.6,15.6,15.13515114981315 + 01/17 12:00:00,15.6,15.6,15.116446430133625 + 01/17 12:10:00,15.6,15.6,15.09971802895605 + 01/17 12:20:00,15.6,15.6,15.095910126380206 + 01/17 12:30:00,15.6,15.6,15.081461174952269 + 01/17 12:40:00,15.6,15.6,15.068168239401734 + 01/17 12:50:00,15.6,15.6,15.05676103095099 + 01/17 13:00:00,15.6,15.6,15.043078925359592 + 01/17 13:10:00,15.6,15.6,15.026696322553225 + 01/17 13:20:00,15.6,15.6,14.99983761863882 + 01/17 13:30:00,15.6,15.6,14.983316728687804 + 01/17 13:40:00,15.6,15.6,14.967016978173679 + 01/17 13:50:00,15.6,15.6,14.951353945312 + 01/17 14:00:00,15.6,15.6,14.935998460819827 + 01/17 14:10:00,15.6,15.6,14.925539986604454 + 01/17 14:20:00,15.6,15.6,14.91888079586203 + 01/17 14:30:00,15.6,15.6,14.908940970230868 + 01/17 14:40:00,15.6,15.6,14.900391052245828 + 01/17 14:50:00,15.6,15.6,14.890685980436248 + 01/17 15:00:00,15.6,15.6,14.883650347431628 + 01/17 15:10:00,15.6,15.6,14.874122987521793 + 01/17 15:20:00,15.6,15.6,14.87140782241572 + 01/17 15:30:00,15.6,15.6,14.862968730806069 + 01/17 15:40:00,15.6,15.6,14.856701321600675 + 01/17 15:50:00,15.6,15.6,14.850289649047067 + 01/17 16:00:00,15.6,15.6,14.843640647015148 + 01/17 16:10:00,15.6,15.6,16.993579252169089 + 01/17 16:20:00,15.6,15.6,17.237121716181727 + 01/17 16:30:00,15.6,15.6,17.334258493633294 + 01/17 16:40:00,15.6,15.6,17.409439092069986 + 01/17 16:50:00,15.6,15.6,17.466398257360586 + 01/17 17:00:00,15.6,15.6,17.514641460747435 + 01/17 17:10:00,15.6,15.6,17.5798624227765 + 01/17 17:20:00,15.6,15.6,17.633019205935548 + 01/17 17:30:00,15.6,15.6,17.661666598611168 + 01/17 17:40:00,15.6,15.6,17.685544097335695 + 01/17 17:50:00,15.6,15.6,17.708158733827479 + 01/17 18:00:00,15.6,15.6,17.728915956039189 + 01/17 18:10:00,15.6,15.6,17.761275916951804 + 01/17 18:20:00,15.6,15.6,17.78461918291989 + 01/17 18:30:00,15.6,15.6,17.80065243819 + 01/17 18:40:00,15.6,15.6,17.815185157005986 + 01/17 18:50:00,15.6,15.6,17.828498225955614 + 01/17 19:00:00,15.6,15.6,17.840636452349118 + 01/17 19:10:00,15.6,15.6,17.852423885650678 + 01/17 19:20:00,15.6,15.6,17.863332266264789 + 01/17 19:30:00,15.6,15.6,17.873491185916956 + 01/17 19:40:00,15.6,15.6,17.882953694886788 + 01/17 19:50:00,15.6,15.6,17.891850156035568 + 01/17 20:00:00,15.6,15.6,17.9002124067911 + 01/17 20:10:00,15.6,15.6,17.921701550243147 + 01/17 20:20:00,15.6,15.6,17.930432682782305 + 01/17 20:30:00,15.6,15.6,17.9383898065862 + 01/17 20:40:00,15.6,15.6,17.945956642243787 + 01/17 20:50:00,15.6,15.6,17.953169574106164 + 01/17 21:00:00,15.6,15.6,17.95989814289729 + 01/17 21:10:00,15.6,15.6,17.94097288078644 + 01/17 21:20:00,15.6,15.6,17.94879715310597 + 01/17 21:30:00,15.6,15.6,17.95200064775384 + 01/17 21:40:00,15.6,15.6,17.95497151012359 + 01/17 21:50:00,15.6,15.6,17.957769744649505 + 01/17 22:00:00,15.6,15.6,17.96040099335152 + 01/17 22:10:00,15.6,15.6,17.966250116740313 + 01/17 22:20:00,15.6,15.6,17.972046231103627 + 01/17 22:30:00,15.6,15.6,17.977636434525317 + 01/17 22:40:00,15.6,15.6,17.983202318645494 + 01/17 22:50:00,15.6,15.6,17.988644367755279 + 01/17 23:00:00,15.6,15.6,17.99395670131476 + 01/17 23:10:00,15.6,15.6,19.363458116007597 + 01/17 23:20:00,15.6,15.6,19.503640375860074 + 01/17 23:30:00,15.6,15.6,19.565091901728338 + 01/17 23:40:00,15.6,15.6,19.6133094680988 + 01/17 23:50:00,15.6,15.6,19.65193991520096 + 01/17 24:00:00,15.6,15.6,19.684061718881226 + 01/18 00:10:00,15.6,15.6,19.7112376095657 + 01/18 00:20:00,15.6,15.6,19.73522790009489 + 01/18 00:30:00,15.6,15.6,19.756637094766977 + 01/18 00:40:00,15.6,15.6,19.77600156287077 + 01/18 00:50:00,15.6,15.6,19.793674297971799 + 01/18 01:00:00,15.6,15.6,19.8098597747146 + 01/18 01:10:00,15.6,15.6,19.825319077029037 + 01/18 01:20:00,15.6,15.6,19.839702257531529 + 01/18 01:30:00,15.6,15.6,19.853170263475854 + 01/18 01:40:00,15.6,15.6,19.865812214186023 + 01/18 01:50:00,15.6,15.6,19.877690294369413 + 01/18 02:00:00,15.6,15.6,19.88892342548347 + 01/18 02:10:00,15.6,15.6,19.899645447174508 + 01/18 02:20:00,15.6,15.6,19.90985121494587 + 01/18 02:30:00,15.6,15.6,19.919589136775487 + 01/18 02:40:00,15.6,15.6,19.92887504138601 + 01/18 02:50:00,15.6,15.6,19.93771150559378 + 01/18 03:00:00,15.6,15.6,19.946264981174296 + 01/18 03:10:00,15.6,15.6,19.95448106998149 + 01/18 03:20:00,15.6,15.6,19.96238297135648 + 01/18 03:30:00,15.6,15.6,19.969989637627934 + 01/18 03:40:00,15.6,15.6,19.97722112794063 + 01/18 03:50:00,15.6,15.6,19.984293402988908 + 01/18 04:00:00,15.6,15.6,19.991122755127184 + 01/18 04:10:00,15.6,15.6,19.997723764985375 + 01/18 04:20:00,15.6,15.6,20.004102565258465 + 01/18 04:30:00,15.6,15.6,20.010191184343918 + 01/18 04:40:00,15.6,15.6,20.016134856011065 + 01/18 04:50:00,15.6,15.6,20.021911790069848 + 01/18 05:00:00,15.6,15.6,20.02750779403382 + 01/18 05:10:00,15.6,15.6,20.03233744043657 + 01/18 05:20:00,15.6,15.6,20.036979851003499 + 01/18 05:30:00,15.6,15.6,20.041371952597559 + 01/18 05:40:00,15.6,15.6,20.045621535818463 + 01/18 05:50:00,15.6,15.6,20.04969346149551 + 01/18 06:00:00,15.6,15.6,20.05358705208874 + 01/18 06:10:00,15.6,15.6,20.058212394706218 + 01/18 06:20:00,15.6,15.6,20.062743825964536 + 01/18 06:30:00,15.6,15.6,20.067251730140439 + 01/18 06:40:00,15.6,15.6,20.071694575017835 + 01/18 06:50:00,15.6,15.6,20.076055708566604 + 01/18 07:00:00,15.6,15.6,20.08032551985327 + 01/18 07:10:00,15.6,15.6,18.077630635751448 + 01/18 07:20:00,15.6,15.6,17.84515345202971 + 01/18 07:30:00,15.6,15.6,17.75880492566366 + 01/18 07:40:00,15.6,15.6,17.691402358325655 + 01/18 07:50:00,15.6,15.6,17.638037704449738 + 01/18 08:00:00,15.6,15.6,17.59365442988426 + 01/18 08:10:00,15.6,15.6,16.112737175461939 + 01/18 08:20:00,15.6,15.6,15.896609236116758 + 01/18 08:30:00,15.6,15.6,15.795893407359188 + 01/18 08:40:00,15.6,15.6,15.713574964885746 + 01/18 08:50:00,15.6,15.6,15.64496887855097 + 01/18 09:00:00,15.6,15.6,15.585495891819559 + 01/18 09:10:00,15.6,15.6,15.507276265615504 + 01/18 09:20:00,15.6,15.6,15.451907449037968 + 01/18 09:30:00,15.6,15.6,15.408442286537099 + 01/18 09:40:00,15.6,15.6,15.368521701518752 + 01/18 09:50:00,15.6,15.6,15.33170275800443 + 01/18 10:00:00,15.6,15.6,15.29765791895059 + 01/18 10:10:00,15.6,15.6,15.265265896265652 + 01/18 10:20:00,15.6,15.6,15.22433377378955 + 01/18 10:30:00,15.6,15.6,15.195788837019679 + 01/18 10:40:00,15.6,15.6,15.16893872126394 + 01/18 10:50:00,15.6,15.6,15.145299459998386 + 01/18 11:00:00,15.6,15.6,15.121808402900536 + 01/18 11:10:00,15.6,15.6,15.098109644321245 + 01/18 11:20:00,15.6,15.6,15.073839201858112 + 01/18 11:30:00,15.6,15.6,15.052287991923885 + 01/18 11:40:00,15.6,15.6,15.033685958683693 + 01/18 11:50:00,15.6,15.6,15.014296315659795 + 01/18 12:00:00,15.6,15.6,14.99796847785952 + 01/18 12:10:00,15.6,15.6,14.981423097597372 + 01/18 12:20:00,15.6,15.6,14.97725901951979 + 01/18 12:30:00,15.6,15.6,14.961441906978348 + 01/18 12:40:00,15.6,15.6,14.949062746491278 + 01/18 12:50:00,15.6,15.6,14.936498033637524 + 01/18 13:00:00,15.6,15.6,14.92420232581044 + 01/18 13:10:00,15.6,15.6,14.914153616284145 + 01/18 13:20:00,15.6,15.6,14.892588647429763 + 01/18 13:30:00,15.6,15.6,14.88375023641398 + 01/18 13:40:00,15.6,15.6,14.872912120190842 + 01/18 13:50:00,15.6,15.6,14.864737805864694 + 01/18 14:00:00,15.6,15.6,14.854365741466977 + 01/18 14:10:00,15.6,15.6,14.846383473676586 + 01/18 14:20:00,15.6,15.6,14.839872741471817 + 01/18 14:30:00,15.6,15.6,14.8320322696033 + 01/18 14:40:00,15.6,15.6,14.82291520099419 + 01/18 14:50:00,15.6,15.6,14.814388285703183 + 01/18 15:00:00,15.6,15.6,14.805586618297756 + 01/18 15:10:00,15.574774774774774,15.574774774774774,14.796719779657991 + 01/18 15:20:00,15.54954954954955,15.54954954954955,14.79248928862415 + 01/18 15:30:00,15.524324324324324,15.524324324324324,14.782609567897282 + 01/18 15:40:00,15.499099099099098,15.499099099099098,14.775688870975687 + 01/18 15:50:00,15.473873873873874,15.473873873873874,14.767150197335438 + 01/18 16:00:00,15.448648648648648,15.448648648648648,14.761391762081005 + 01/18 16:10:00,15.427627627627628,15.427627627627628,16.898774304966027 + 01/18 16:20:00,15.406606606606607,15.406606606606607,17.140458561585097 + 01/18 16:30:00,15.385585585585586,15.385585585585586,17.234706080256 + 01/18 16:40:00,15.364564564564564,15.364564564564564,17.305546096368809 + 01/18 16:50:00,15.343543543543543,15.343543543543543,17.359235128111956 + 01/18 17:00:00,15.322522522522523,15.322522522522523,17.404589678551696 + 01/18 17:10:00,15.322522522522523,15.322522522522523,17.469801558786917 + 01/18 17:20:00,15.322522522522523,15.322522522522523,17.5215293314709 + 01/18 17:30:00,15.322522522522523,15.322522522522523,17.551517603890738 + 01/18 17:40:00,15.322522522522523,15.322522522522523,17.57820988859489 + 01/18 17:50:00,15.322522522522523,15.322522522522523,17.602829447822218 + 01/18 18:00:00,15.322522522522523,15.322522522522523,17.62536628555971 + 01/18 18:10:00,15.322522522522523,15.322522522522523,17.65914517854961 + 01/18 18:20:00,15.322522522522523,15.322522522522523,17.68358144405513 + 01/18 18:30:00,15.322522522522523,15.322522522522523,17.70070602263737 + 01/18 18:40:00,15.322522522522523,15.322522522522523,17.716333119625508 + 01/18 18:50:00,15.322522522522523,15.322522522522523,17.730638848755406 + 01/18 19:00:00,15.322522522522523,15.322522522522523,17.743777935530124 + 01/18 19:10:00,15.343543543543543,15.343543543543543,17.756389881569434 + 01/18 19:20:00,15.364564564564564,15.364564564564564,17.768243282070285 + 01/18 19:30:00,15.385585585585586,15.385585585585586,17.779406541695264 + 01/18 19:40:00,15.406606606606607,15.406606606606607,17.789995774587898 + 01/18 19:50:00,15.427627627627628,15.427627627627628,17.8000262457891 + 01/18 20:00:00,15.448648648648648,15.448648648648648,17.80958760853219 + 01/18 20:10:00,15.427627627627628,15.427627627627628,17.83039919455905 + 01/18 20:20:00,15.406606606606607,15.406606606606607,17.83825942918338 + 01/18 20:30:00,15.385585585585586,15.385585585585586,17.845246140174667 + 01/18 20:40:00,15.364564564564564,15.364564564564564,17.85170104532819 + 01/18 20:50:00,15.343543543543543,15.343543543543543,17.857537772815538 + 01/18 21:00:00,15.322522522522523,15.322522522522523,17.863054685872386 + 01/18 21:10:00,15.322522522522523,15.322522522522523,17.845729672803665 + 01/18 21:20:00,15.322522522522523,15.322522522522523,17.85541846322439 + 01/18 21:30:00,15.322522522522523,15.322522522522523,17.860567246037783 + 01/18 21:40:00,15.322522522522523,15.322522522522523,17.865632811501464 + 01/18 21:50:00,15.322522522522523,15.322522522522523,17.870555558779399 + 01/18 22:00:00,15.322522522522523,15.322522522522523,17.875293093952118 + 01/18 22:10:00,15.322522522522523,15.322522522522523,17.88087689789476 + 01/18 22:20:00,15.322522522522523,15.322522522522523,17.885785268738844 + 01/18 22:30:00,15.322522522522523,15.322522522522523,17.890490282742044 + 01/18 22:40:00,15.322522522522523,15.322522522522523,17.894948533132035 + 01/18 22:50:00,15.322522522522523,15.322522522522523,17.89917205011753 + 01/18 23:00:00,15.322522522522523,15.322522522522523,17.90332689883288 + 01/18 23:10:00,15.322522522522523,15.322522522522523,19.267025294764335 + 01/18 23:20:00,15.322522522522523,15.322522522522523,19.407805413770754 + 01/18 23:30:00,15.322522522522523,15.322522522522523,19.469438217814909 + 01/18 23:40:00,15.322522522522523,15.322522522522523,19.5177955504667 + 01/18 23:50:00,15.322522522522523,15.322522522522523,19.55659468329242 + 01/18 24:00:00,15.322522522522523,15.322522522522523,19.589125666975439 + 01/19 00:10:00,15.322522522522523,15.322522522522523,19.616582274111445 + 01/19 00:20:00,15.322522522522523,15.322522522522523,19.640666544661764 + 01/19 00:30:00,15.322522522522523,15.322522522522523,19.66205263233571 + 01/19 00:40:00,15.322522522522523,15.322522522522523,19.681382148454064 + 01/19 00:50:00,15.322522522522523,15.322522522522523,19.699009608722613 + 01/19 01:00:00,15.322522522522523,15.322522522522523,19.71519140812051 + 01/19 01:10:00,15.322522522522523,15.322522522522523,19.731364352162996 + 01/19 01:20:00,15.322522522522523,15.322522522522523,19.74642809579332 + 01/19 01:30:00,15.322522522522523,15.322522522522523,19.760567962494908 + 01/19 01:40:00,15.322522522522523,15.322522522522523,19.773948843043894 + 01/19 01:50:00,15.322522522522523,15.322522522522523,19.78661383452981 + 01/19 02:00:00,15.322522522522523,15.322522522522523,19.79864083386453 + 01/19 02:10:00,15.297297297297297,15.297297297297297,19.808668184866116 + 01/19 02:20:00,15.272072072072073,15.272072072072073,19.81826261673657 + 01/19 02:30:00,15.246846846846847,15.246846846846847,19.82743717409915 + 01/19 02:40:00,15.22162162162162,15.22162162162162,19.836199457574943 + 01/19 02:50:00,15.196396396396397,15.196396396396397,19.844528049568426 + 01/19 03:00:00,15.17117117117117,15.17117117117117,19.852472560877755 + 01/19 03:10:00,15.17117117117117,15.17117117117117,19.86066906071863 + 01/19 03:20:00,15.17117117117117,15.17117117117117,19.86841088064294 + 01/19 03:30:00,15.17117117117117,15.17117117117117,19.875962921194366 + 01/19 03:40:00,15.17117117117117,15.17117117117117,19.88310647732058 + 01/19 03:50:00,15.17117117117117,15.17117117117117,19.89002097646383 + 01/19 04:00:00,15.17117117117117,15.17117117117117,19.89664002726938 + 01/19 04:10:00,15.15015015015015,15.15015015015015,19.902684693228843 + 01/19 04:20:00,15.12912912912913,15.12912912912913,19.908661496666406 + 01/19 04:30:00,15.108108108108109,15.108108108108109,19.91442152738857 + 01/19 04:40:00,15.087087087087087,15.087087087087087,19.920009182800958 + 01/19 04:50:00,15.066066066066066,15.066066066066066,19.92534215081711 + 01/19 05:00:00,15.045045045045045,15.045045045045045,19.93047114815797 + 01/19 05:10:00,15.045045045045045,15.045045045045045,19.934753114195116 + 01/19 05:20:00,15.045045045045045,15.045045045045045,19.938768197975916 + 01/19 05:30:00,15.045045045045045,15.045045045045045,19.942628873722844 + 01/19 05:40:00,15.045045045045045,15.045045045045045,19.94627854881106 + 01/19 05:50:00,15.045045045045045,15.045045045045045,19.949775553878245 + 01/19 06:00:00,15.045045045045045,15.045045045045045,19.953226142348787 + 01/19 06:10:00,15.01981981981982,15.01981981981982,19.958112286280679 + 01/19 06:20:00,14.994594594594594,14.994594594594594,19.963004360271968 + 01/19 06:30:00,14.96936936936937,14.96936936936937,19.967707964309655 + 01/19 06:40:00,14.944144144144144,14.944144144144144,19.972214513260913 + 01/19 06:50:00,14.91891891891892,14.91891891891892,19.976631069696596 + 01/19 07:00:00,14.893693693693694,14.893693693693694,19.98088132028485 + 01/19 07:10:00,14.893693693693694,14.893693693693694,17.98778861114809 + 01/19 07:20:00,14.893693693693694,14.893693693693694,17.75626668380402 + 01/19 07:30:00,14.893693693693694,14.893693693693694,17.67102416936177 + 01/19 07:40:00,14.893693693693694,14.893693693693694,17.604745188666528 + 01/19 07:50:00,14.893693693693694,14.893693693693694,17.552482998935749 + 01/19 08:00:00,14.893693693693694,14.893693693693694,17.508980501697328 + 01/19 08:05:00,14.872672672672673,14.872672672672673,16.03450368576423 + 01/19 08:10:00,14.872672672672673,14.872672672672673,16.03422091181142 + 01/19 08:15:00,14.85165165165165,14.85165165165165,15.817938290937283 + 01/19 08:20:00,14.85165165165165,14.85165165165165,15.817951503460426 + 01/19 08:30:00,14.83063063063063,14.83063063063063,15.715493641212252 + 01/19 08:40:00,14.809609609609609,14.809609609609609,15.63235688488478 + 01/19 08:50:00,14.788588588588589,14.788588588588589,15.563064013639396 + 01/19 09:00:00,14.767567567567568,14.767567567567568,15.50340407111914 + 01/19 09:05:00,14.721321321321322,14.721321321321322,15.42755162162383 + 01/19 09:10:00,14.721321321321322,14.721321321321322,15.426457809254187 + 01/19 09:20:00,14.675075075075075,14.675075075075075,15.370401712053419 + 01/19 09:30:00,14.628828828828829,14.628828828828829,15.328317600078073 + 01/19 09:40:00,14.582582582582582,14.582582582582582,15.28911190393238 + 01/19 09:50:00,14.536336336336337,14.536336336336337,15.252388964696476 + 01/19 10:00:00,14.49009009009009,14.49009009009009,15.218049483689834 + 01/19 10:10:00,14.43963963963964,14.43963963963964,15.1872597074768 + 01/19 10:20:00,14.389189189189189,14.389189189189189,15.148470734658325 + 01/19 10:30:00,14.338738738738739,14.338738738738739,15.122254069153936 + 01/19 10:40:00,14.288288288288289,14.288288288288289,15.097729051904553 + 01/19 10:50:00,14.237837837837839,14.237837837837839,15.075326119293538 + 01/19 11:00:00,14.187387387387388,14.187387387387388,15.050658565784849 + 01/19 11:10:00,14.14114114114114,14.14114114114114,15.025546443046068 + 01/19 11:20:00,14.094894894894896,14.094894894894896,14.997034424980177 + 01/19 11:30:00,14.04864864864865,14.04864864864865,14.971693780174317 + 01/19 11:40:00,14.002402402402403,14.002402402402403,14.947403431313866 + 01/19 11:50:00,13.956156156156157,13.956156156156157,14.92390815422155 + 01/19 12:00:00,13.90990990990991,13.90990990990991,14.902404008160398 + 01/19 12:10:00,13.88888888888889,13.88888888888889,14.881777553744233 + 01/19 12:20:00,13.867867867867869,13.867867867867869,14.872749828177265 + 01/19 12:30:00,13.846846846846848,13.846846846846848,14.853864510300119 + 01/19 12:40:00,13.825825825825828,13.825825825825828,14.838046611748352 + 01/19 12:50:00,13.804804804804805,13.804804804804805,14.82098578393119 + 01/19 13:00:00,13.783783783783785,13.783783783783785,14.805620110050928 + 01/19 13:10:00,13.758558558558559,13.758558558558559,14.79228896802289 + 01/19 13:20:00,13.733333333333335,13.733333333333335,14.767885643619195 + 01/19 13:30:00,13.708108108108109,13.708108108108109,14.756076462400273 + 01/19 13:40:00,13.682882882882883,13.682882882882883,14.742127031585607 + 01/19 13:50:00,13.657657657657659,13.657657657657659,14.73172706874279 + 01/19 14:00:00,13.632432432432433,13.632432432432433,14.719049056843956 + 01/19 14:10:00,13.611411411411412,13.611411411411412,14.710110128944777 + 01/19 14:20:00,13.590390390390392,13.590390390390392,14.70202891908295 + 01/19 14:30:00,13.56936936936937,13.56936936936937,14.694149339428379 + 01/19 14:40:00,13.548348348348349,13.548348348348349,14.68382390082281 + 01/19 14:50:00,13.527327327327328,13.527327327327328,14.676551286324056 + 01/19 15:00:00,13.506306306306307,13.506306306306307,14.667957707730669 + 01/19 15:10:00,13.481081081081081,13.481081081081081,14.661015242593534 + 01/19 15:20:00,13.455855855855857,13.455855855855857,14.657361695035624 + 01/19 15:30:00,13.430630630630632,13.430630630630632,14.650486115744452 + 01/19 15:40:00,13.405405405405407,13.405405405405407,14.64548234175563 + 01/19 15:50:00,13.380180180180182,13.380180180180182,14.638459144618644 + 01/19 16:00:00,13.354954954954956,13.354954954954956,14.635045618411123 + 01/19 16:05:00,13.380180180180182,13.380180180180182,16.787091567141876 + 01/19 16:10:00,13.380180180180182,13.380180180180182,16.77978486526804 + 01/19 16:20:00,13.405405405405407,13.405405405405407,17.030419580086453 + 01/19 16:30:00,13.430630630630632,13.430630630630632,17.129819015929585 + 01/19 16:40:00,13.455855855855857,13.455855855855857,17.200102242133935 + 01/19 16:50:00,13.481081081081081,13.481081081081081,17.25580679015911 + 01/19 17:00:00,13.506306306306307,13.506306306306307,17.302054159858235 + 01/19 17:10:00,13.552552552552554,13.552552552552554,17.366859431529066 + 01/19 17:20:00,13.5987987987988,13.5987987987988,17.42089064733038 + 01/19 17:30:00,13.645045045045047,13.645045045045047,17.45190887439661 + 01/19 17:40:00,13.691291291291293,13.691291291291293,17.47967598720202 + 01/19 17:50:00,13.737537537537538,13.737537537537538,17.504764344901444 + 01/19 18:00:00,13.783783783783785,13.783783783783785,17.527647336337009 + 01/19 18:10:00,13.783783783783785,13.783783783783785,17.561850501917236 + 01/19 18:20:00,13.783783783783785,13.783783783783785,17.586115571792527 + 01/19 18:30:00,13.783783783783785,13.783783783783785,17.60325964898079 + 01/19 18:40:00,13.783783783783785,13.783783783783785,17.618784933411523 + 01/19 18:50:00,13.783783783783785,13.783783783783785,17.633038504115289 + 01/19 19:00:00,13.783783783783785,13.783783783783785,17.64613648874889 + 01/19 19:10:00,13.758558558558559,13.758558558558559,17.657815698762719 + 01/19 19:20:00,13.733333333333335,13.733333333333335,17.668660624612614 + 01/19 19:30:00,13.708108108108109,13.708108108108109,17.67863873004245 + 01/19 19:40:00,13.682882882882883,13.682882882882883,17.687652727154466 + 01/19 19:50:00,13.657657657657659,13.657657657657659,17.696111247164134 + 01/19 20:00:00,13.632432432432433,13.632432432432433,17.70403010203859 + 01/19 20:10:00,13.632432432432433,13.632432432432433,17.724863865792288 + 01/19 20:20:00,13.632432432432433,13.632432432432433,17.732919824693569 + 01/19 20:30:00,13.632432432432433,13.632432432432433,17.740203808307255 + 01/19 20:40:00,13.632432432432433,13.632432432432433,17.747128200326335 + 01/19 20:50:00,13.632432432432433,13.632432432432433,17.753603013945797 + 01/19 21:00:00,13.632432432432433,13.632432432432433,17.759820058100727 + 01/19 21:10:00,13.611411411411412,13.611411411411412,17.74348711684479 + 01/19 21:20:00,13.590390390390392,13.590390390390392,17.753394098500384 + 01/19 21:30:00,13.56936936936937,13.56936936936937,17.758663581075458 + 01/19 21:40:00,13.548348348348349,13.548348348348349,17.763643663934859 + 01/19 21:50:00,13.527327327327328,13.527327327327328,17.768342227015468 + 01/19 22:00:00,13.506306306306307,13.506306306306307,17.772769210981435 + 01/19 22:10:00,13.506306306306307,13.506306306306307,17.777478271637169 + 01/19 22:20:00,13.506306306306307,13.506306306306307,17.781976119287458 + 01/19 22:30:00,13.506306306306307,13.506306306306307,17.78645049884602 + 01/19 22:40:00,13.506306306306307,13.506306306306307,17.790832065057363 + 01/19 22:50:00,13.506306306306307,13.506306306306307,17.794989940939787 + 01/19 23:00:00,13.506306306306307,13.506306306306307,17.799064126817468 + 01/19 23:10:00,13.527327327327328,13.527327327327328,19.156220463246304 + 01/19 23:20:00,13.548348348348349,13.548348348348349,19.296009522996536 + 01/19 23:30:00,13.56936936936937,13.56936936936937,19.356156306878629 + 01/19 23:40:00,13.590390390390392,13.590390390390392,19.403216351186474 + 01/19 23:50:00,13.611411411411412,13.611411411411412,19.44080993594072 + 01/19 24:00:00,13.632432432432433,13.632432432432433,19.472072096350499 + 01/20 00:10:00,13.724924924924926,13.724924924924926,19.500592572756504 + 01/20 00:20:00,13.817417417417417,13.817417417417417,19.525671985284853 + 01/20 00:30:00,13.90990990990991,13.90990990990991,19.548397426422249 + 01/20 00:40:00,14.002402402402403,14.002402402402403,19.56918040664076 + 01/20 00:50:00,14.094894894894896,14.094894894894896,19.588448657908537 + 01/20 01:00:00,14.187387387387388,14.187387387387388,19.606354977181256 + 01/20 01:10:00,14.212612612612613,14.212612612612613,19.62218996679885 + 01/20 01:20:00,14.237837837837838,14.237837837837838,19.63587757428936 + 01/20 01:30:00,14.263063063063063,14.263063063063063,19.648542905261676 + 01/20 01:40:00,14.288288288288289,14.288288288288289,19.66006109328643 + 01/20 01:50:00,14.313513513513513,14.313513513513513,19.67074438937797 + 01/20 02:00:00,14.338738738738739,14.338738738738739,19.680840760730935 + 01/20 02:10:00,14.384984984984986,14.384984984984986,19.69053005185003 + 01/20 02:20:00,14.431231231231232,14.431231231231232,19.700688456336186 + 01/20 02:30:00,14.477477477477479,14.477477477477479,19.710497776263595 + 01/20 02:40:00,14.523723723723723,14.523723723723723,19.72014840810409 + 01/20 02:50:00,14.56996996996997,14.56996996996997,19.72948342916669 + 01/20 03:00:00,14.616216216216217,14.616216216216217,19.73853748798335 + 01/20 03:10:00,14.662462462462463,14.662462462462463,19.747734552331978 + 01/20 03:20:00,14.70870870870871,14.70870870870871,19.756640830406405 + 01/20 03:30:00,14.754954954954954,14.754954954954954,19.76523195136789 + 01/20 03:40:00,14.8012012012012,14.8012012012012,19.773525898308529 + 01/20 03:50:00,14.847447447447447,14.847447447447447,19.781636029279658 + 01/20 04:00:00,14.893693693693694,14.893693693693694,19.789509784422738 + 01/20 04:10:00,14.893693693693694,14.893693693693694,19.797490003720737 + 01/20 04:20:00,14.893693693693694,14.893693693693694,19.80559460377566 + 01/20 04:30:00,14.893693693693694,14.893693693693694,19.81336454299225 + 01/20 04:40:00,14.893693693693694,14.893693693693694,19.821076102697068 + 01/20 04:50:00,14.893693693693694,14.893693693693694,19.828541238943104 + 01/20 05:00:00,14.893693693693694,14.893693693693694,19.835738349448105 + 01/20 05:10:00,14.893693693693694,14.893693693693694,19.842786207238473 + 01/20 05:20:00,14.893693693693694,14.893693693693694,19.849514687488897 + 01/20 05:30:00,14.893693693693694,14.893693693693694,19.856379119409174 + 01/20 05:40:00,14.893693693693694,14.893693693693694,19.863244002669956 + 01/20 05:50:00,14.893693693693694,14.893693693693694,19.870167563541139 + 01/20 06:00:00,14.893693693693694,14.893693693693694,19.877130970559589 + 01/20 06:10:00,14.893693693693694,14.893693693693694,19.883981642498175 + 01/20 06:20:00,14.893693693693694,14.893693693693694,19.890681105522064 + 01/20 06:30:00,14.893693693693694,14.893693693693694,19.897172105579548 + 01/20 06:40:00,14.893693693693694,14.893693693693694,19.903408340715818 + 01/20 06:50:00,14.893693693693694,14.893693693693694,19.909402857689977 + 01/20 07:00:00,14.893693693693694,14.893693693693694,19.915129808246289 + 01/20 07:10:00,14.91891891891892,14.91891891891892,17.920725401953278 + 01/20 07:20:00,14.944144144144144,14.944144144144144,17.68895423501032 + 01/20 07:30:00,14.96936936936937,14.96936936936937,17.60362224458315 + 01/20 07:40:00,14.994594594594595,14.994594594594595,17.53694927576111 + 01/20 07:50:00,15.01981981981982,15.01981981981982,17.48402253328563 + 01/20 08:00:00,15.045045045045045,15.045045045045045,17.439632871284958 + 01/20 08:05:00,15.045045045045045,15.045045045045045,15.962027045306538 + 01/20 08:10:00,15.045045045045045,15.045045045045045,15.962002018690088 + 01/20 08:15:00,15.045045045045045,15.045045045045045,15.745792792350347 + 01/20 08:20:00,15.045045045045045,15.045045045045045,15.745669340559723 + 01/20 08:30:00,15.045045045045045,15.045045045045045,15.644036304842669 + 01/20 08:40:00,15.045045045045045,15.045045045045045,15.562170438325705 + 01/20 08:50:00,15.045045045045045,15.045045045045045,15.49434152882398 + 01/20 09:00:00,15.045045045045045,15.045045045045045,15.436282785161419 + 01/20 09:05:00,15.01981981981982,15.01981981981982,15.360241563848789 + 01/20 09:10:00,15.01981981981982,15.01981981981982,15.359435791682289 + 01/20 09:20:00,14.994594594594594,14.994594594594594,15.30369419301504 + 01/20 09:30:00,14.96936936936937,14.96936936936937,15.261144902389236 + 01/20 09:40:00,14.944144144144144,14.944144144144144,15.221465954454372 + 01/20 09:50:00,14.91891891891892,14.91891891891892,15.185024639233604 + 01/20 10:00:00,14.893693693693694,14.893693693693694,15.150994397971085 + 01/20 10:10:00,14.847447447447447,14.847447447447447,15.119775229742528 + 01/20 10:20:00,14.8012012012012,14.8012012012012,15.078894124885894 + 01/20 10:30:00,14.754954954954954,14.754954954954954,15.050065043753972 + 01/20 10:40:00,14.70870870870871,14.70870870870871,15.023031876698362 + 01/20 10:50:00,14.662462462462463,14.662462462462463,14.99876538134417 + 01/20 11:00:00,14.616216216216217,14.616216216216217,14.972822602028776 + 01/20 11:10:00,14.616216216216217,14.616216216216217,14.95061278035522 + 01/20 11:20:00,14.616216216216217,14.616216216216217,14.924220390260299 + 01/20 11:30:00,14.616216216216217,14.616216216216217,14.903332350707613 + 01/20 11:40:00,14.616216216216217,14.616216216216217,14.882585141594412 + 01/20 11:50:00,14.616216216216217,14.616216216216217,14.863571233115899 + 01/20 12:00:00,14.616216216216217,14.616216216216217,14.844751609335037 + 01/20 12:10:00,14.544744744744746,14.544744744744746,14.82559561204996 + 01/20 12:20:00,14.473273273273274,14.473273273273274,14.817026770708756 + 01/20 12:30:00,14.401801801801803,14.401801801801803,14.799131341046959 + 01/20 12:40:00,14.33033033033033,14.33033033033033,14.783580520863984 + 01/20 12:50:00,14.25885885885886,14.25885885885886,14.766004473052876 + 01/20 13:00:00,14.187387387387388,14.187387387387388,14.752013994497723 + 01/20 13:10:00,14.12012012012012,14.12012012012012,14.739445640279856 + 01/20 13:20:00,14.052852852852853,14.052852852852853,14.713673705831813 + 01/20 13:30:00,13.985585585585586,13.985585585585586,14.699501434001665 + 01/20 13:40:00,13.91831831831832,13.91831831831832,14.683672021927704 + 01/20 13:50:00,13.851051051051052,13.851051051051052,14.66993386563637 + 01/20 14:00:00,13.783783783783785,13.783783783783785,14.654652255020146 + 01/20 14:10:00,13.758558558558559,13.758558558558559,14.640529894633913 + 01/20 14:20:00,13.733333333333335,13.733333333333335,14.632819285713396 + 01/20 14:30:00,13.708108108108109,13.708108108108109,14.623917545697302 + 01/20 14:40:00,13.682882882882883,13.682882882882883,14.612897318322226 + 01/20 14:50:00,13.657657657657659,13.657657657657659,14.604943634613595 + 01/20 15:00:00,13.632432432432433,13.632432432432433,14.594100702016603 + 01/20 15:10:00,13.657657657657659,13.657657657657659,14.58712568592818 + 01/20 15:20:00,13.682882882882883,13.682882882882883,14.58276177007178 + 01/20 15:30:00,13.708108108108109,13.708108108108109,14.576708479209268 + 01/20 15:40:00,13.733333333333335,13.733333333333335,14.571471892257314 + 01/20 15:50:00,13.758558558558559,13.758558558558559,14.565877361486792 + 01/20 16:00:00,13.783783783783785,13.783783783783785,14.563391033186266 + 01/20 16:05:00,13.804804804804805,13.804804804804805,16.7060978617161 + 01/20 16:10:00,13.804804804804805,13.804804804804805,16.706376488662696 + 01/20 16:20:00,13.825825825825828,13.825825825825828,16.95344411612138 + 01/20 16:30:00,13.846846846846848,13.846846846846848,17.04817374173289 + 01/20 16:40:00,13.867867867867869,13.867867867867869,17.11860843116977 + 01/20 16:50:00,13.88888888888889,13.88888888888889,17.17544220410184 + 01/20 17:00:00,13.90990990990991,13.90990990990991,17.222477619763457 + 01/20 17:10:00,13.935135135135136,13.935135135135136,17.2872135132722 + 01/20 17:20:00,13.960360360360362,13.960360360360362,17.343844505948185 + 01/20 17:30:00,13.985585585585586,13.985585585585586,17.37683560062032 + 01/20 17:40:00,14.010810810810812,14.010810810810812,17.406649960123717 + 01/20 17:50:00,14.036036036036038,14.036036036036038,17.433470101016704 + 01/20 18:00:00,14.061261261261262,14.061261261261262,17.457944072268647 + 01/20 18:10:00,14.107507507507508,14.107507507507508,17.49318977916678 + 01/20 18:20:00,14.153753753753755,14.153753753753755,17.519755874882028 + 01/20 18:30:00,14.2,14.2,17.538930156326804 + 01/20 18:40:00,14.246246246246246,14.246246246246246,17.55658895573448 + 01/20 18:50:00,14.292492492492493,14.292492492492493,17.572812097737363 + 01/20 19:00:00,14.338738738738739,14.338738738738739,17.58782276977759 + 01/20 19:10:00,14.384984984984986,14.384984984984986,17.602072406542683 + 01/20 19:20:00,14.431231231231232,14.431231231231232,17.61510375636203 + 01/20 19:30:00,14.477477477477479,14.477477477477479,17.627452898541 + 01/20 19:40:00,14.523723723723723,14.523723723723723,17.639053960164764 + 01/20 19:50:00,14.56996996996997,14.56996996996997,17.650176959752558 + 01/20 20:00:00,14.616216216216217,14.616216216216217,17.66088734833126 + 01/20 20:10:00,14.662462462462463,14.662462462462463,17.683901036401666 + 01/20 20:20:00,14.70870870870871,14.70870870870871,17.69375968953114 + 01/20 20:30:00,14.754954954954954,14.754954954954954,17.70305481860064 + 01/20 20:40:00,14.8012012012012,14.8012012012012,17.71188583523441 + 01/20 20:50:00,14.847447447447447,14.847447447447447,17.7204406273716 + 01/20 21:00:00,14.893693693693694,14.893693693693694,17.72878651459498 + 01/20 21:10:00,14.93993993993994,14.93993993993994,17.71482788370025 + 01/20 21:20:00,14.986186186186187,14.986186186186187,17.72791140223903 + 01/20 21:30:00,15.032432432432433,15.032432432432433,17.736285052362473 + 01/20 21:40:00,15.078678678678678,15.078678678678678,17.744553426089835 + 01/20 21:50:00,15.124924924924925,15.124924924924925,17.752567530413694 + 01/20 22:00:00,15.17117117117117,15.17117117117117,17.76031302145553 + 01/20 22:10:00,15.217417417417418,15.217417417417418,17.767881768079606 + 01/20 22:20:00,15.263663663663664,15.263663663663664,17.774957130310633 + 01/20 22:30:00,15.30990990990991,15.30990990990991,17.78190632718474 + 01/20 22:40:00,15.356156156156157,15.356156156156157,17.788524509870649 + 01/20 22:50:00,15.402402402402402,15.402402402402402,17.794929570154929 + 01/20 23:00:00,15.448648648648648,15.448648648648648,17.801277533285089 + 01/20 23:10:00,15.473873873873874,15.473873873873874,19.175904217614133 + 01/20 23:20:00,15.499099099099098,15.499099099099098,19.320306402931494 + 01/20 23:30:00,15.524324324324324,15.524324324324324,19.384697016839995 + 01/20 23:40:00,15.54954954954955,15.54954954954955,19.435584192469937 + 01/20 23:50:00,15.574774774774774,15.574774774774774,19.476832534495246 + 01/20 24:00:00,15.6,15.6,19.511507356247859 + 01/21 00:10:00,15.6,15.6,19.541990285817989 + 01/21 00:20:00,15.6,15.6,19.569119904822285 + 01/21 00:30:00,15.6,15.6,19.59347684271997 + 01/21 00:40:00,15.6,15.6,19.615753190076153 + 01/21 00:50:00,15.6,15.6,19.63627551636961 + 01/21 01:00:00,15.6,15.6,19.655302256373159 + 01/21 01:10:00,15.6,15.6,19.672501208946927 + 01/21 01:20:00,15.6,15.6,19.688492740499325 + 01/21 01:30:00,15.6,15.6,19.70368327265243 + 01/21 01:40:00,15.6,15.6,19.718182593385689 + 01/21 01:50:00,15.6,15.6,19.732080706281076 + 01/21 02:00:00,15.6,15.6,19.745449231912244 + 01/21 02:10:00,15.6,15.6,19.759129156525348 + 01/21 02:20:00,15.6,15.6,19.77221504401132 + 01/21 02:30:00,15.6,15.6,19.784642460497915 + 01/21 02:40:00,15.6,15.6,19.796418793295545 + 01/21 02:50:00,15.6,15.6,19.80756260409728 + 01/21 03:00:00,15.6,15.6,19.818122043852 + 01/21 03:10:00,15.6,15.6,19.826345264225645 + 01/21 03:20:00,15.6,15.6,19.834606021812037 + 01/21 03:30:00,15.6,15.6,19.842823182661748 + 01/21 03:40:00,15.6,15.6,19.851060633087209 + 01/21 03:50:00,15.6,15.6,19.859277035906268 + 01/21 04:00:00,15.6,15.6,19.867360211655659 + 01/21 04:10:00,15.6,15.6,19.87549054062569 + 01/21 04:20:00,15.6,15.6,19.883504053286776 + 01/21 04:30:00,15.6,15.6,19.891340429857445 + 01/21 04:40:00,15.6,15.6,19.898994684680316 + 01/21 04:50:00,15.6,15.6,19.906394447903485 + 01/21 05:00:00,15.6,15.6,19.913631651794409 + 01/21 05:10:00,15.6,15.6,19.92366464772763 + 01/21 05:20:00,15.6,15.6,19.933457998520248 + 01/21 05:30:00,15.6,15.6,19.94312672051253 + 01/21 05:40:00,15.6,15.6,19.952601346810764 + 01/21 05:50:00,15.6,15.6,19.961941795386719 + 01/21 06:00:00,15.6,15.6,19.971241831648947 + 01/21 06:10:00,15.6,15.6,19.97778540439316 + 01/21 06:20:00,15.6,15.6,19.98412940133822 + 01/21 06:30:00,15.6,15.6,19.990166318926087 + 01/21 06:40:00,15.6,15.6,19.995871168972529 + 01/21 06:50:00,15.6,15.6,20.00140168221931 + 01/21 07:00:00,15.6,15.6,20.006690955535217 + 01/21 07:10:00,15.6,15.6,19.346029685371055 + 01/21 07:20:00,15.6,15.6,19.279415865392616 + 01/21 07:30:00,15.6,15.6,19.25330533940699 + 01/21 07:40:00,15.6,15.6,19.233171829389794 + 01/21 07:50:00,15.6,15.6,19.217194647351 + 01/21 08:00:00,15.6,15.6,19.203497429254758 + 01/21 08:10:00,15.6,15.6,18.11248118555186 + 01/21 08:20:00,15.6,15.6,17.966009705731076 + 01/21 08:30:00,15.6,15.6,17.90447324014388 + 01/21 08:40:00,15.6,15.6,17.855080751221697 + 01/21 08:50:00,15.6,15.6,17.81446669105742 + 01/21 09:00:00,15.6,15.6,17.779355098790675 + 01/21 09:10:00,15.6,15.6,17.75000542667932 + 01/21 09:20:00,15.6,15.6,17.714558041515816 + 01/21 09:30:00,15.6,15.6,17.690061196525276 + 01/21 09:40:00,15.6,15.6,17.667494909758447 + 01/21 09:50:00,15.6,15.6,17.646776419949086 + 01/21 10:00:00,15.6,15.6,17.6278559935515 + 01/21 10:10:00,15.6,15.6,17.60691409460249 + 01/21 10:20:00,15.6,15.6,17.5783759972812 + 01/21 10:30:00,15.6,15.6,17.559706567424138 + 01/21 10:40:00,15.6,15.6,17.542165284433417 + 01/21 10:50:00,15.6,15.6,17.525824111686498 + 01/21 11:00:00,15.6,15.6,17.510694955016946 + 01/21 11:10:00,15.6,15.6,17.499060784507806 + 01/21 11:20:00,15.6,15.6,17.488549345795126 + 01/21 11:30:00,15.6,15.6,17.479062618162464 + 01/21 11:40:00,15.6,15.6,17.470341787216826 + 01/21 11:50:00,15.6,15.6,17.462036808103716 + 01/21 12:00:00,15.6,15.6,17.453956239272764 + 01/21 12:10:00,15.6,15.6,17.443881054415475 + 01/21 12:20:00,15.6,15.6,17.43395630952365 + 01/21 12:30:00,15.6,15.6,17.424155180509979 + 01/21 12:40:00,15.6,15.6,17.414217640552143 + 01/21 12:50:00,15.6,15.6,17.403729968359199 + 01/21 13:00:00,15.6,15.6,17.39256240531752 + 01/21 13:10:00,15.6,15.6,17.381811765848089 + 01/21 13:20:00,15.6,15.6,17.370772583048259 + 01/21 13:30:00,15.6,15.6,17.35954170902924 + 01/21 13:40:00,15.6,15.6,17.348713949525274 + 01/21 13:50:00,15.6,15.6,17.339616350858046 + 01/21 14:00:00,15.6,15.6,17.331886687491307 + 01/21 14:10:00,15.6,15.6,17.324816545849634 + 01/21 14:20:00,15.6,15.6,17.318131528270816 + 01/21 14:30:00,15.6,15.6,17.310151030346405 + 01/21 14:40:00,15.6,15.6,17.305157920654027 + 01/21 14:50:00,15.6,15.6,17.30139666094504 + 01/21 15:00:00,15.6,15.6,17.298624096327076 + 01/21 15:10:00,15.6,15.6,17.296509772976586 + 01/21 15:20:00,15.6,15.6,17.29568718474938 + 01/21 15:30:00,15.6,15.6,17.29666017191103 + 01/21 15:40:00,15.6,15.6,17.297906576635627 + 01/21 15:50:00,15.6,15.6,17.298269104020485 + 01/21 16:00:00,15.6,15.6,17.296254129619677 + 01/21 16:10:00,15.6,15.6,17.294211340517216 + 01/21 16:20:00,15.6,15.6,17.292885510079168 + 01/21 16:30:00,15.6,15.6,17.29182198015544 + 01/21 16:40:00,15.6,15.6,17.289484851776078 + 01/21 16:50:00,15.6,15.6,17.288808326295876 + 01/21 17:00:00,15.6,15.6,17.2899254276833 + 01/21 17:10:00,15.6,15.6,17.307769890181498 + 01/21 17:20:00,15.6,15.6,17.322191199259664 + 01/21 17:30:00,15.6,15.6,17.327352116197866 + 01/21 17:40:00,15.6,15.6,17.332929594573359 + 01/21 17:50:00,15.6,15.6,17.34026106298006 + 01/21 18:00:00,15.6,15.6,17.34803262677105 + 01/21 18:10:00,15.6,15.6,19.124117549700118 + 01/21 18:20:00,15.6,15.6,19.33516368213389 + 01/21 18:30:00,15.6,15.6,19.41879835961432 + 01/21 18:40:00,15.6,15.6,19.483504293188383 + 01/21 18:50:00,15.6,15.6,19.534587501434009 + 01/21 19:00:00,15.6,15.6,19.576639871788428 + 01/21 19:10:00,15.6,15.6,19.628059830713704 + 01/21 19:20:00,15.6,15.6,19.662361775249364 + 01/21 19:30:00,15.6,15.6,19.69250958727532 + 01/21 19:40:00,15.6,15.6,19.719544098410226 + 01/21 19:50:00,15.6,15.6,19.74400784389697 + 01/21 20:00:00,15.6,15.6,19.766255424557714 + 01/21 20:10:00,15.6,15.6,19.787330422245334 + 01/21 20:20:00,15.6,15.6,19.806818108811759 + 01/21 20:30:00,15.6,15.6,19.82500997670169 + 01/21 20:40:00,15.6,15.6,19.842058793730403 + 01/21 20:50:00,15.6,15.6,19.85807666674921 + 01/21 21:00:00,15.6,15.6,19.873295941886924 + 01/21 21:10:00,15.6,15.6,19.86200360914356 + 01/21 21:20:00,15.6,15.6,19.872359003719997 + 01/21 21:30:00,15.6,15.6,19.88178584959424 + 01/21 21:40:00,15.6,15.6,19.890327427375625 + 01/21 21:50:00,15.6,15.6,19.89809943163842 + 01/21 22:00:00,15.6,15.6,19.90523860601351 + 01/21 22:10:00,15.6,15.6,19.91342526706297 + 01/21 22:20:00,15.6,15.6,19.92168093713045 + 01/21 22:30:00,15.6,15.6,19.930081144961244 + 01/21 22:40:00,15.6,15.6,19.938657142597845 + 01/21 22:50:00,15.6,15.6,19.94749985910554 + 01/21 23:00:00,15.6,15.6,19.956480068225678 + 01/21 23:10:00,15.6,15.6,19.964531633633475 + 01/21 23:20:00,15.6,15.6,19.972437655327775 + 01/21 23:30:00,15.6,15.6,19.980085169794184 + 01/21 23:40:00,15.6,15.6,19.987637683177736 + 01/21 23:50:00,15.6,15.6,19.99501318895814 + 01/21 24:00:00,15.6,15.6,20.002213020237165 + 01/22 00:10:00,15.6,15.6,20.011318150116144 + 01/22 00:20:00,15.6,15.6,20.020114270570877 + 01/22 00:30:00,15.6,15.6,20.028685185446176 + 01/22 00:40:00,15.6,15.6,20.037007937953214 + 01/22 00:50:00,15.6,15.6,20.045067687228405 + 01/22 01:00:00,15.6,15.6,20.052880754740938 + 01/22 01:10:00,15.6,15.6,20.06065224767813 + 01/22 01:20:00,15.6,15.6,20.06818416196633 + 01/22 01:30:00,15.6,15.6,20.075507221740133 + 01/22 01:40:00,15.6,15.6,20.082597778232807 + 01/22 01:50:00,15.6,15.6,20.089470221965205 + 01/22 02:00:00,15.6,15.6,20.096115207829436 + 01/22 02:10:00,15.6,15.6,20.100458020540704 + 01/22 02:20:00,15.6,15.6,20.104731913764789 + 01/22 02:30:00,15.6,15.6,20.10892261653164 + 01/22 02:40:00,15.6,15.6,20.113026267902538 + 01/22 02:50:00,15.6,15.6,20.117047368831888 + 01/22 03:00:00,15.6,15.6,20.120896449024543 + 01/22 03:10:00,15.6,15.6,20.126192612306605 + 01/22 03:20:00,15.6,15.6,20.13142907860741 + 01/22 03:30:00,15.6,15.6,20.136602318152844 + 01/22 03:40:00,15.6,15.6,20.14171497404925 + 01/22 03:50:00,15.6,15.6,20.14668140332938 + 01/22 04:00:00,15.6,15.6,20.151655261636088 + 01/22 04:10:00,15.6,15.6,20.154514206250036 + 01/22 04:20:00,15.6,15.6,20.157432737427798 + 01/22 04:30:00,15.6,15.6,20.160423773564504 + 01/22 04:40:00,15.6,15.6,20.163433737475594 + 01/22 04:50:00,15.6,15.6,20.166522972445205 + 01/22 05:00:00,15.6,15.6,20.1696982928216 + 01/22 05:10:00,15.6,15.6,20.174022262122759 + 01/22 05:20:00,15.6,15.6,20.178331095457204 + 01/22 05:30:00,15.6,15.6,20.18256049045077 + 01/22 05:40:00,15.6,15.6,20.18670985555832 + 01/22 05:50:00,15.6,15.6,20.190874644178888 + 01/22 06:00:00,15.6,15.6,20.194988464795498 + 01/22 06:10:00,15.6,15.6,20.200055936054097 + 01/22 06:20:00,15.6,15.6,20.204949136316448 + 01/22 06:30:00,15.6,15.6,20.209569638247296 + 01/22 06:40:00,15.6,15.6,20.21408760850777 + 01/22 06:50:00,15.6,15.6,20.218426013564888 + 01/22 07:00:00,15.6,15.6,20.222603263346529 + 01/22 07:10:00,15.6,15.6,20.248673001263854 + 01/22 07:20:00,15.6,15.6,20.251839942558719 + 01/22 07:30:00,15.6,15.6,20.25492187097895 + 01/22 07:40:00,15.6,15.6,20.25786195729858 + 01/22 07:50:00,15.6,15.6,20.26021786405273 + 01/22 08:00:00,15.6,15.6,20.261306858496874 + 01/22 08:10:00,15.6,15.6,18.858740247901446 + 01/22 08:20:00,15.6,15.6,18.695860059677988 + 01/22 08:30:00,15.6,15.6,18.63154348473698 + 01/22 08:40:00,15.6,15.6,18.579776728234536 + 01/22 08:50:00,15.6,15.6,18.536960316887858 + 01/22 09:00:00,15.6,15.6,18.50005602674633 + 01/22 09:10:00,15.6,15.6,18.467681245284749 + 01/22 09:20:00,15.6,15.6,18.429185461611025 + 01/22 09:30:00,15.6,15.6,18.4018315536647 + 01/22 09:40:00,15.6,15.6,18.376503290024528 + 01/22 09:50:00,15.6,15.6,18.352873294925407 + 01/22 10:00:00,15.6,15.6,18.33074806498236 + 01/22 10:10:00,15.6,15.6,18.308894079375258 + 01/22 10:20:00,15.6,15.6,18.279772572523414 + 01/22 10:30:00,15.6,15.6,18.260837530430508 + 01/22 10:40:00,15.6,15.6,18.24307691364932 + 01/22 10:50:00,15.6,15.6,18.22579650467359 + 01/22 11:00:00,15.6,15.6,18.208577095575138 + 01/22 11:10:00,15.6,15.6,18.188594659364136 + 01/22 11:20:00,15.6,15.6,18.16875024975547 + 01/22 11:30:00,15.6,15.6,18.149007718514509 + 01/22 11:40:00,15.6,15.6,18.129816938058558 + 01/22 11:50:00,15.6,15.6,18.11226471367537 + 01/22 12:00:00,15.6,15.6,18.09659127601468 + 01/22 12:10:00,15.6,15.6,18.08645804273606 + 01/22 12:20:00,15.6,15.6,18.07794355461432 + 01/22 12:30:00,15.6,15.6,18.070936433676346 + 01/22 12:40:00,15.6,15.6,18.065161959383617 + 01/22 12:50:00,15.6,15.6,18.060147949330469 + 01/22 13:00:00,15.6,15.6,18.055930676624269 + 01/22 13:10:00,15.6,15.6,18.048455043747894 + 01/22 13:20:00,15.6,15.6,18.04146686687654 + 01/22 13:30:00,15.6,15.6,18.03489886462437 + 01/22 13:40:00,15.6,15.6,18.02848424868909 + 01/22 13:50:00,15.6,15.6,18.021683960945859 + 01/22 14:00:00,15.6,15.6,18.014287226560925 + 01/22 14:10:00,15.6,15.6,18.011352272458866 + 01/22 14:20:00,15.6,15.6,18.007996202074254 + 01/22 14:30:00,15.6,15.6,18.00438157768252 + 01/22 14:40:00,15.6,15.6,18.000735191982899 + 01/22 14:50:00,15.6,15.6,17.9972270095408 + 01/22 15:00:00,15.6,15.6,17.993901082865834 + 01/22 15:10:00,15.6,15.6,17.987187459605157 + 01/22 15:20:00,15.6,15.6,17.981009484581074 + 01/22 15:30:00,15.6,15.6,17.97534202406904 + 01/22 15:40:00,15.6,15.6,17.97024334893014 + 01/22 15:50:00,15.6,15.6,17.966410703320269 + 01/22 16:00:00,15.6,15.6,17.963716661299388 + 01/22 16:10:00,15.6,15.6,19.396881903555899 + 01/22 16:20:00,15.6,15.6,19.54885920225863 + 01/22 16:30:00,15.6,15.6,19.615418780182375 + 01/22 16:40:00,15.6,15.6,19.66609710455907 + 01/22 16:50:00,15.6,15.6,19.70969102751244 + 01/22 17:00:00,15.6,15.6,19.74753111130834 + 01/22 17:10:00,15.6,15.6,19.778131824458617 + 01/22 17:20:00,15.6,15.6,19.8138230079414 + 01/22 17:30:00,15.6,15.6,19.838239896639548 + 01/22 17:40:00,15.6,15.6,19.859462580927315 + 01/22 17:50:00,15.6,15.6,19.878566561154135 + 01/22 18:00:00,15.6,15.6,19.897334307052277 + 01/22 18:10:00,15.6,15.6,19.91708725135065 + 01/22 18:20:00,15.6,15.6,19.952575585788929 + 01/22 18:30:00,15.6,15.6,19.96900445093515 + 01/22 18:40:00,15.6,15.6,19.984022968645634 + 01/22 18:50:00,15.6,15.6,19.9978659215003 + 01/22 19:00:00,15.6,15.6,20.010998621798728 + 01/22 19:10:00,15.6,15.6,20.022512220403809 + 01/22 19:20:00,15.6,15.6,20.033239669572354 + 01/22 19:30:00,15.6,15.6,20.0432484752687 + 01/22 19:40:00,15.6,15.6,20.052547615307064 + 01/22 19:50:00,15.6,15.6,20.06132116227292 + 01/22 20:00:00,15.6,15.6,20.06963442111783 + 01/22 20:10:00,15.6,15.6,20.078162565089327 + 01/22 20:20:00,15.6,15.6,20.08636403891704 + 01/22 20:30:00,15.6,15.6,20.09424227140011 + 01/22 20:40:00,15.6,15.6,20.10185838158339 + 01/22 20:50:00,15.6,15.6,20.109298161095244 + 01/22 21:00:00,15.6,15.6,20.116528193038815 + 01/22 21:10:00,15.6,15.6,20.101761996652 + 01/22 21:20:00,15.6,15.6,20.109282837250406 + 01/22 21:30:00,15.6,15.6,20.1163450052328 + 01/22 21:40:00,15.6,15.6,20.12310218571076 + 01/22 21:50:00,15.6,15.6,20.12949392126832 + 01/22 22:00:00,15.6,15.6,20.13555031933722 + 01/22 22:10:00,15.6,15.6,20.139994995961169 + 01/22 22:20:00,15.6,15.6,20.14434750574524 + 01/22 22:30:00,15.6,15.6,20.148768703673935 + 01/22 22:40:00,15.6,15.6,20.15329803564117 + 01/22 22:50:00,15.6,15.6,20.157858215834819 + 01/22 23:00:00,15.6,15.6,20.16243056469222 + 01/22 23:10:00,15.6,15.6,20.168974641729077 + 01/22 23:20:00,15.6,15.6,20.175226732021679 + 01/22 23:30:00,15.6,15.6,20.18115030596143 + 01/22 23:40:00,15.6,15.6,20.186686135485524 + 01/22 23:50:00,15.6,15.6,20.191845833006526 + 01/22 24:00:00,15.6,15.6,20.196601036486187 + 01/23 00:10:00,15.6,15.6,20.200428220180638 + 01/23 00:20:00,15.6,15.6,20.204292333460616 + 01/23 00:30:00,15.6,15.6,20.20824244232288 + 01/23 00:40:00,15.6,15.6,20.21234778074559 + 01/23 00:50:00,15.6,15.6,20.21654432668585 + 01/23 01:00:00,15.6,15.6,20.220800566317096 + 01/23 01:10:00,15.6,15.6,20.22553226574416 + 01/23 01:20:00,15.6,15.6,20.23011240803249 + 01/23 01:30:00,15.6,15.6,20.234547625940423 + 01/23 01:40:00,15.6,15.6,20.238791233588459 + 01/23 01:50:00,15.6,15.6,20.242782775864556 + 01/23 02:00:00,15.6,15.6,20.246722493386775 + 01/23 02:10:00,15.6,15.6,20.249795368278119 + 01/23 02:20:00,15.6,15.6,20.252742172923765 + 01/23 02:30:00,15.6,15.6,20.25554419081725 + 01/23 02:40:00,15.6,15.6,20.25806479740386 + 01/23 02:50:00,15.6,15.6,20.26063072784968 + 01/23 03:00:00,15.6,15.6,20.26302946931366 + 01/23 03:10:00,15.6,15.6,20.265312976045494 + 01/23 03:20:00,15.6,15.6,20.26750087221129 + 01/23 03:30:00,15.6,15.6,20.2695269671228 + 01/23 03:40:00,15.6,15.6,20.271477576467388 + 01/23 03:50:00,15.6,15.6,20.273378068808527 + 01/23 04:00:00,15.6,15.6,20.275191451427398 + 01/23 04:10:00,15.6,15.6,20.277768677798709 + 01/23 04:20:00,15.6,15.6,20.280348361246376 + 01/23 04:30:00,15.6,15.6,20.282947428313756 + 01/23 04:40:00,15.6,15.6,20.285672642013556 + 01/23 04:50:00,15.6,15.6,20.28844608453994 + 01/23 05:00:00,15.6,15.6,20.291258720400369 + 01/23 05:10:00,15.6,15.6,20.293337033211399 + 01/23 05:20:00,15.6,15.6,20.29535065242395 + 01/23 05:30:00,15.6,15.6,20.297424183749585 + 01/23 05:40:00,15.6,15.6,20.299471353822555 + 01/23 05:50:00,15.6,15.6,20.30148418733325 + 01/23 06:00:00,15.6,15.6,20.30346135188413 + 01/23 06:10:00,15.6,15.6,20.30649303232566 + 01/23 06:20:00,15.6,15.6,20.30945341130515 + 01/23 06:30:00,15.6,15.6,20.312265440387056 + 01/23 06:40:00,15.6,15.6,20.31491024476838 + 01/23 06:50:00,15.6,15.6,20.317404523352974 + 01/23 07:00:00,15.6,15.6,20.319688704607957 + 01/23 07:05:00,15.6,15.6,18.311813183159495 + 01/23 07:10:00,15.6,15.6,18.311934692158304 + 01/23 07:20:00,15.6,15.6,18.077383971092887 + 01/23 07:30:00,15.6,15.6,17.98839571763139 + 01/23 07:40:00,15.6,15.6,17.91864869035901 + 01/23 07:50:00,15.6,15.6,17.86264571594658 + 01/23 08:00:00,15.6,15.6,17.81537887785528 + 01/23 08:05:00,15.6,15.6,16.327964116744974 + 01/23 08:10:00,15.6,15.6,16.327833349710784 + 01/23 08:15:00,15.6,15.6,16.10844544441068 + 01/23 08:20:00,15.6,15.6,16.108501349198126 + 01/23 08:30:00,15.6,15.6,16.002335725394965 + 01/23 08:40:00,15.6,15.6,15.91397150618032 + 01/23 08:50:00,15.6,15.6,15.838447217068837 + 01/23 09:00:00,15.6,15.6,15.771609256897263 + 01/23 09:10:00,15.6,15.6,15.684893545497057 + 01/23 09:20:00,15.6,15.6,15.62019493362725 + 01/23 09:30:00,15.6,15.6,15.566722913638542 + 01/23 09:40:00,15.6,15.6,15.516206987045552 + 01/23 09:50:00,15.6,15.6,15.468367847901144 + 01/23 10:00:00,15.6,15.6,15.422970251197225 + 01/23 10:10:00,15.6,15.6,15.381582640018769 + 01/23 10:20:00,15.6,15.6,15.331759214239625 + 01/23 10:30:00,15.6,15.6,15.29456618692694 + 01/23 10:40:00,15.6,15.6,15.259349559431687 + 01/23 10:50:00,15.6,15.6,15.225877383858503 + 01/23 11:00:00,15.6,15.6,15.194052332302345 + 01/23 11:10:00,15.6,15.6,15.16176643636006 + 01/23 11:20:00,15.6,15.6,15.128433449263545 + 01/23 11:30:00,15.6,15.6,15.09642099882337 + 01/23 11:40:00,15.6,15.6,15.068693374840855 + 01/23 11:50:00,15.6,15.6,15.038977589574813 + 01/23 12:00:00,15.6,15.6,15.013460816965729 + 01/23 12:10:00,15.6,15.6,14.98748985410278 + 01/23 12:20:00,15.6,15.6,14.975582775930996 + 01/23 12:30:00,15.6,15.6,14.952750210218359 + 01/23 12:40:00,15.6,15.6,14.932940216683307 + 01/23 12:50:00,15.6,15.6,14.914384945234419 + 01/23 13:00:00,15.6,15.6,14.895285824083726 + 01/23 13:10:00,15.6,15.6,14.879621159082417 + 01/23 13:20:00,15.6,15.6,14.852556573419335 + 01/23 13:30:00,15.6,15.6,14.837380041128947 + 01/23 13:40:00,15.6,15.6,14.821254287902264 + 01/23 13:50:00,15.6,15.6,14.807380883742474 + 01/23 14:00:00,15.6,15.6,14.792749208611648 + 01/23 14:10:00,15.6,15.6,14.77999738657493 + 01/23 14:20:00,15.6,15.6,14.771078957806364 + 01/23 14:30:00,15.6,15.6,14.760713109364178 + 01/23 14:40:00,15.6,15.6,14.75080793045325 + 01/23 14:50:00,15.6,15.6,14.741719514226923 + 01/23 15:00:00,15.6,15.6,14.73409384925481 + 01/23 15:10:00,15.6,15.6,14.726218937777097 + 01/23 15:20:00,15.6,15.6,14.723878786381876 + 01/23 15:30:00,15.6,15.6,14.715896898173675 + 01/23 15:40:00,15.6,15.6,14.711463356961332 + 01/23 15:50:00,15.6,15.6,14.705762005299702 + 01/23 16:00:00,15.6,15.6,14.702007576469958 + 01/23 16:10:00,15.6,15.6,16.86389577539258 + 01/23 16:20:00,15.6,15.6,17.11036204527939 + 01/23 16:30:00,15.6,15.6,17.2080151652778 + 01/23 16:40:00,15.6,15.6,17.28278542316542 + 01/23 16:50:00,15.6,15.6,17.33974896966332 + 01/23 17:00:00,15.6,15.6,17.38874403450457 + 01/23 17:10:00,15.6,15.6,17.45854073514471 + 01/23 17:20:00,15.6,15.6,17.514536038464393 + 01/23 17:30:00,15.6,15.6,17.548496450870418 + 01/23 17:40:00,15.6,15.6,17.579393978619778 + 01/23 17:50:00,15.6,15.6,17.60770838721146 + 01/23 18:00:00,15.6,15.6,17.633752026744366 + 01/23 18:10:00,15.6,15.6,17.670244852794647 + 01/23 18:20:00,15.6,15.6,17.697541746729326 + 01/23 18:30:00,15.6,15.6,17.71723110600263 + 01/23 18:40:00,15.6,15.6,17.735258571350707 + 01/23 18:50:00,15.6,15.6,17.751833570620279 + 01/23 19:00:00,15.6,15.6,17.767150573828418 + 01/23 19:10:00,15.6,15.6,17.78271490076844 + 01/23 19:20:00,15.6,15.6,17.797143194831056 + 01/23 19:30:00,15.6,15.6,17.810564364635068 + 01/23 19:40:00,15.6,15.6,17.823073046312098 + 01/23 19:50:00,15.6,15.6,17.834761607121828 + 01/23 20:00:00,15.6,15.6,17.845761458402245 + 01/23 20:10:00,15.6,15.6,17.868340973848484 + 01/23 20:20:00,15.6,15.6,17.877892873363007 + 01/23 20:30:00,15.6,15.6,17.886538992545256 + 01/23 20:40:00,15.6,15.6,17.894664220674625 + 01/23 20:50:00,15.6,15.6,17.90230285106467 + 01/23 21:00:00,15.6,15.6,17.90955375057259 + 01/23 21:10:00,15.6,15.6,17.89450624496849 + 01/23 21:20:00,15.6,15.6,17.906561660279363 + 01/23 21:30:00,15.6,15.6,17.91409796717529 + 01/23 21:40:00,15.6,15.6,17.921571544019625 + 01/23 21:50:00,15.6,15.6,17.928987250524174 + 01/23 22:00:00,15.6,15.6,17.936326684966198 + 01/23 22:10:00,15.6,15.6,17.944547830649367 + 01/23 22:20:00,15.6,15.6,17.952412507414488 + 01/23 22:30:00,15.6,15.6,17.959875569439139 + 01/23 22:40:00,15.6,15.6,17.96689543107776 + 01/23 22:50:00,15.6,15.6,17.973483800700018 + 01/23 23:00:00,15.6,15.6,17.97979778078283 + 01/23 23:10:00,15.6,15.6,19.356150686472668 + 01/23 23:20:00,15.6,15.6,19.49747545971592 + 01/23 23:30:00,15.6,15.6,19.559841809864488 + 01/23 23:40:00,15.6,15.6,19.60899700630468 + 01/23 23:50:00,15.6,15.6,19.648747432782629 + 01/23 24:00:00,15.6,15.6,19.682169000685368 + 01/24 00:10:00,15.6,15.6,19.71120777322418 + 01/24 00:20:00,15.6,15.6,19.736935885737144 + 01/24 00:30:00,15.6,15.6,19.76003310283296 + 01/24 00:40:00,15.6,15.6,19.781164809014457 + 01/24 00:50:00,15.6,15.6,19.800654330422217 + 01/24 01:00:00,15.6,15.6,19.818754385976957 + 01/24 01:10:00,15.6,15.6,19.834590470987068 + 01/24 01:20:00,15.6,15.6,19.849303073885865 + 01/24 01:30:00,15.6,15.6,19.86312701816511 + 01/24 01:40:00,15.6,15.6,19.876191465760919 + 01/24 01:50:00,15.6,15.6,19.888553799768084 + 01/24 02:00:00,15.6,15.6,19.90025454791494 + 01/24 02:10:00,15.6,15.6,19.91093636086802 + 01/24 02:20:00,15.6,15.6,19.921214544558205 + 01/24 02:30:00,15.6,15.6,19.931212660387833 + 01/24 02:40:00,15.6,15.6,19.9409463762578 + 01/24 02:50:00,15.6,15.6,19.950449862880295 + 01/24 03:00:00,15.6,15.6,19.95984728825632 + 01/24 03:10:00,15.6,15.6,19.97407424925462 + 01/24 03:20:00,15.6,15.6,19.987617167060628 + 01/24 03:30:00,15.6,15.6,20.000296485635546 + 01/24 03:40:00,15.6,15.6,20.01216383087894 + 01/24 03:50:00,15.6,15.6,20.023327265485496 + 01/24 04:00:00,15.6,15.6,20.033763678066078 + 01/24 04:10:00,15.6,15.6,20.041802948194783 + 01/24 04:20:00,15.6,15.6,20.049674641146088 + 01/24 04:30:00,15.6,15.6,20.057438760276903 + 01/24 04:40:00,15.6,15.6,20.06514923849583 + 01/24 04:50:00,15.6,15.6,20.072737488984925 + 01/24 05:00:00,15.6,15.6,20.080302902512579 + 01/24 05:10:00,15.6,15.6,20.087066716109815 + 01/24 05:20:00,15.6,15.6,20.09370033669554 + 01/24 05:30:00,15.6,15.6,20.100156779647038 + 01/24 05:40:00,15.6,15.6,20.106395273756655 + 01/24 05:50:00,15.6,15.6,20.112443285261269 + 01/24 06:00:00,15.6,15.6,20.118382756590788 + 01/24 06:10:00,15.6,15.6,20.12414231982938 + 01/24 06:20:00,15.6,15.6,20.12966755885581 + 01/24 06:30:00,15.6,15.6,20.134949765265035 + 01/24 06:40:00,15.6,15.6,20.13994283449566 + 01/24 06:50:00,15.6,15.6,20.144813964270609 + 01/24 07:00:00,15.6,15.6,20.149493316333748 + 01/24 07:05:00,15.6,15.6,18.141176244796026 + 01/24 07:10:00,15.6,15.6,18.141184996989048 + 01/24 07:20:00,15.6,15.6,17.90976205507984 + 01/24 07:30:00,15.6,15.6,17.824488929341407 + 01/24 07:40:00,15.6,15.6,17.75778220637785 + 01/24 07:50:00,15.6,15.6,17.704863006017506 + 01/24 08:00:00,15.6,15.6,17.66023660571547 + 01/24 08:10:00,15.6,15.6,16.171220919017864 + 01/24 08:20:00,15.6,15.6,15.951999800551859 + 01/24 08:30:00,15.6,15.6,15.847854583117226 + 01/24 08:40:00,15.6,15.6,15.761631341493186 + 01/24 08:50:00,15.6,15.6,15.688921676764883 + 01/24 09:00:00,15.6,15.6,15.62513228822252 + 01/24 09:10:00,15.6,15.6,15.542649227260876 + 01/24 09:20:00,15.6,15.6,15.482504261485629 + 01/24 09:30:00,15.6,15.6,15.433527316372575 + 01/24 09:40:00,15.6,15.6,15.387485602036856 + 01/24 09:50:00,15.6,15.6,15.344160868647194 + 01/24 10:00:00,15.6,15.6,15.303424027434572 + 01/24 10:10:00,15.6,15.6,15.262153267152974 + 01/24 10:20:00,15.6,15.6,15.212570641113129 + 01/24 10:30:00,15.6,15.6,15.175347486771047 + 01/24 10:40:00,15.6,15.6,15.140276077904167 + 01/24 10:50:00,15.6,15.6,15.107981113067176 + 01/24 11:00:00,15.6,15.6,15.073932567524267 + 01/24 11:10:00,15.6,15.6,15.04477298890134 + 01/24 11:20:00,15.6,15.6,15.011814321909013 + 01/24 11:30:00,15.6,15.6,14.984024877186349 + 01/24 11:40:00,15.54954954954955,15.54954954954955,14.95691268257255 + 01/24 11:50:00,15.36036036036036,15.36036036036036,14.932906852912947 + 01/24 12:00:00,15.17117117117117,15.17117117117117,14.910780337238835 + 01/24 12:10:00,15.17117117117117,15.17117117117117,14.893054051561459 + 01/24 12:20:00,15.17117117117117,15.17117117117117,14.885273806565776 + 01/24 12:30:00,15.17117117117117,15.17117117117117,14.870292525779167 + 01/24 12:40:00,15.17117117117117,15.17117117117117,14.858001505509236 + 01/24 12:50:00,15.17117117117117,15.17117117117117,14.842726967885565 + 01/24 13:00:00,15.17117117117117,15.17117117117117,14.829372980602056 + 01/24 13:10:00,15.217417417417418,15.217417417417418,14.813659117117757 + 01/24 13:20:00,15.263663663663664,15.263663663663664,14.789847365536078 + 01/24 13:30:00,15.30990990990991,15.30990990990991,14.776466951615122 + 01/24 13:40:00,15.356156156156157,15.356156156156157,14.76275385547942 + 01/24 13:50:00,15.402402402402402,15.402402402402402,14.752236640262208 + 01/24 14:00:00,15.448648648648648,15.448648648648648,14.742378154189474 + 01/24 14:10:00,15.427627627627628,15.427627627627628,14.734957131185233 + 01/24 14:20:00,15.406606606606607,15.406606606606607,14.729968145227297 + 01/24 14:30:00,15.385585585585586,15.385585585585586,14.724792982525507 + 01/24 14:40:00,15.364564564564564,15.364564564564564,14.717448707356857 + 01/24 14:50:00,15.343543543543543,15.343543543543543,14.71307569251107 + 01/24 15:00:00,15.322522522522523,15.322522522522523,14.705180110961422 + 01/24 15:10:00,15.322522522522523,15.322522522522523,14.70099004224703 + 01/24 15:20:00,15.322522522522523,15.322522522522523,14.698249718868489 + 01/24 15:30:00,15.322522522522523,15.322522522522523,14.693622311869737 + 01/24 15:40:00,15.322522522522523,15.322522522522523,14.688779320462004 + 01/24 15:50:00,15.322522522522523,15.322522522522523,14.683357783812954 + 01/24 16:00:00,15.322522522522523,15.322522522522523,14.680250533778592 + 01/24 16:05:00,15.322522522522523,15.322522522522523,16.837354180496559 + 01/24 16:10:00,15.322522522522523,15.322522522522523,16.836351027313435 + 01/24 16:20:00,15.322522522522523,15.322522522522523,17.083134978222394 + 01/24 16:30:00,15.322522522522523,15.322522522522523,17.17913620333846 + 01/24 16:40:00,15.322522522522523,15.322522522522523,17.250103425186514 + 01/24 16:50:00,15.322522522522523,15.322522522522523,17.307311094551538 + 01/24 17:00:00,15.322522522522523,15.322522522522523,17.354527489301199 + 01/24 17:10:00,15.343543543543543,15.343543543543543,17.419427387462535 + 01/24 17:20:00,15.364564564564564,15.364564564564564,17.475399954294596 + 01/24 17:30:00,15.385585585585586,15.385585585585586,17.50752588188168 + 01/24 17:40:00,15.406606606606607,15.406606606606607,17.536213028457078 + 01/24 17:50:00,15.427627627627628,15.427627627627628,17.56203348210581 + 01/24 18:00:00,15.448648648648648,15.448648648648648,17.58540758036831 + 01/24 18:10:00,15.448648648648648,15.448648648648648,17.619493590542875 + 01/24 18:20:00,15.448648648648648,15.448648648648648,17.644216272881807 + 01/24 18:30:00,15.448648648648648,15.448648648648648,17.661626465621099 + 01/24 18:40:00,15.448648648648648,15.448648648648648,17.677390676976648 + 01/24 18:50:00,15.448648648648648,15.448648648648648,17.691700283675169 + 01/24 19:00:00,15.448648648648648,15.448648648648648,17.70488969188305 + 01/24 19:10:00,15.499099099099098,15.499099099099098,17.71637786262223 + 01/24 19:20:00,15.54954954954955,15.54954954954955,17.727229415835674 + 01/24 19:30:00,15.6,15.6,17.73743987718582 + 01/24 19:40:00,15.6,15.6,17.747103002715364 + 01/24 19:50:00,15.6,15.6,17.756283793308556 + 01/24 20:00:00,15.6,15.6,17.765000261460164 + 01/24 20:10:00,15.6,15.6,17.787903434711795 + 01/24 20:20:00,15.6,15.6,17.797711249494907 + 01/24 20:30:00,15.6,15.6,17.806583556241294 + 01/24 20:40:00,15.6,15.6,17.814875125148718 + 01/24 20:50:00,15.6,15.6,17.822696571519424 + 01/24 21:00:00,15.6,15.6,17.830063360101798 + 01/24 21:10:00,15.6,15.6,17.81419403501063 + 01/24 21:20:00,15.6,15.6,17.825596422674594 + 01/24 21:30:00,15.6,15.6,17.83242613142413 + 01/24 21:40:00,15.6,15.6,17.839258278179295 + 01/24 21:50:00,15.6,15.6,17.846030440567327 + 01/24 22:00:00,15.6,15.6,17.85263855582327 + 01/24 22:10:00,15.6,15.6,17.858765510425277 + 01/24 22:20:00,15.6,15.6,17.8645258128365 + 01/24 22:30:00,15.6,15.6,17.87016910936557 + 01/24 22:40:00,15.6,15.6,17.87564679053954 + 01/24 22:50:00,15.6,15.6,17.881035532026347 + 01/24 23:00:00,15.6,15.6,17.886281884615838 + 01/24 23:10:00,15.6,15.6,19.26031513727215 + 01/24 23:20:00,15.6,15.6,19.40203799344934 + 01/24 23:30:00,15.6,15.6,19.464340747438884 + 01/24 23:40:00,15.6,15.6,19.51339467625204 + 01/24 23:50:00,15.6,15.6,19.55284929997664 + 01/24 24:00:00,15.6,15.6,19.585873103537627 + 01/25 00:10:00,15.6,15.6,19.6142097149861 + 01/25 00:20:00,15.6,15.6,19.639405097416636 + 01/25 00:30:00,15.6,15.6,19.662035563037525 + 01/25 00:40:00,15.6,15.6,19.68266180168802 + 01/25 00:50:00,15.6,15.6,19.701589180317208 + 01/25 01:00:00,15.6,15.6,19.719013538902556 + 01/25 01:10:00,15.6,15.6,19.736694358526177 + 01/25 01:20:00,15.6,15.6,19.75329701606892 + 01/25 01:30:00,15.6,15.6,19.768989890144316 + 01/25 01:40:00,15.6,15.6,19.78385948675492 + 01/25 01:50:00,15.6,15.6,19.797948279618553 + 01/25 02:00:00,15.6,15.6,19.811474688730717 + 01/25 02:10:00,15.6,15.6,19.82379744986635 + 01/25 02:20:00,15.6,15.6,19.83562054934339 + 01/25 02:30:00,15.6,15.6,19.84689400095858 + 01/25 02:40:00,15.6,15.6,19.857622844894715 + 01/25 02:50:00,15.6,15.6,19.867909007880738 + 01/25 03:00:00,15.6,15.6,19.877806409780587 + 01/25 03:10:00,15.6,15.6,19.888238544429016 + 01/25 03:20:00,15.6,15.6,19.898197066117669 + 01/25 03:30:00,15.6,15.6,19.907780790493015 + 01/25 03:40:00,15.6,15.6,19.91704299520368 + 01/25 03:50:00,15.6,15.6,19.92608969886022 + 01/25 04:00:00,15.6,15.6,19.934890959102487 + 01/25 04:10:00,15.6,15.6,19.942597016213843 + 01/25 04:20:00,15.6,15.6,19.949967272232663 + 01/25 04:30:00,15.6,15.6,19.957048419439184 + 01/25 04:40:00,15.6,15.6,19.96398514568955 + 01/25 04:50:00,15.6,15.6,19.970728528992205 + 01/25 05:00:00,15.6,15.6,19.97729304888372 + 01/25 05:10:00,15.6,15.6,19.98267145007059 + 01/25 05:20:00,15.6,15.6,19.987868256562238 + 01/25 05:30:00,15.6,15.6,19.992970339140265 + 01/25 05:40:00,15.6,15.6,19.99794170490753 + 01/25 05:50:00,15.6,15.6,20.00275208910157 + 01/25 06:00:00,15.6,15.6,20.007406733846179 + 01/25 06:10:00,15.6,15.6,20.012203748266278 + 01/25 06:20:00,15.6,15.6,20.016889424364725 + 01/25 06:30:00,15.6,15.6,20.021464301890299 + 01/25 06:40:00,15.6,15.6,20.02589979820922 + 01/25 06:50:00,15.6,15.6,20.030202031166345 + 01/25 07:00:00,15.6,15.6,20.03432946280883 + 01/25 07:10:00,15.6,15.6,18.030468418763506 + 01/25 07:20:00,15.6,15.6,17.799722328594279 + 01/25 07:30:00,15.6,15.6,17.715617392569123 + 01/25 07:40:00,15.6,15.6,17.65054637624566 + 01/25 07:50:00,15.6,15.6,17.599627187161088 + 01/25 08:00:00,15.6,15.6,17.557870396840984 + 01/25 08:10:00,15.6,15.6,16.07581075789149 + 01/25 08:20:00,15.6,15.6,15.860556338425563 + 01/25 08:30:00,15.6,15.6,15.760994104880205 + 01/25 08:40:00,15.6,15.6,15.679749161995677 + 01/25 08:50:00,15.6,15.6,15.612110353280582 + 01/25 09:00:00,15.6,15.6,15.553474959831851 + 01/25 09:10:00,15.6,15.6,15.474978445834429 + 01/25 09:20:00,15.6,15.6,15.419417178487157 + 01/25 09:30:00,15.6,15.6,15.375718911600437 + 01/25 09:40:00,15.6,15.6,15.335760976488526 + 01/25 09:50:00,15.6,15.6,15.29935182816006 + 01/25 10:00:00,15.6,15.6,15.266252305388673 + 01/25 10:10:00,15.6,15.6,15.237694366069773 + 01/25 10:20:00,15.6,15.6,15.200049738199107 + 01/25 10:30:00,15.6,15.6,15.175061740541536 + 01/25 10:40:00,15.6,15.6,15.152317299417476 + 01/25 10:50:00,15.6,15.6,15.13004400603309 + 01/25 11:00:00,15.6,15.6,15.104232656668803 + 01/25 11:10:00,15.6,15.6,15.077891503246649 + 01/25 11:20:00,15.6,15.6,15.045888956372112 + 01/25 11:30:00,15.6,15.6,15.020334302838892 + 01/25 11:40:00,15.6,15.6,14.992651080599796 + 01/25 11:50:00,15.6,15.6,14.969351483745559 + 01/25 12:00:00,15.6,15.6,14.944865344099318 + 01/25 12:10:00,15.6,15.6,14.925641276033776 + 01/25 12:20:00,15.6,15.6,14.912072094046751 + 01/25 12:30:00,15.6,15.6,14.89194975507088 + 01/25 12:40:00,15.6,15.6,14.871207337359122 + 01/25 12:50:00,15.6,15.6,14.850056372770144 + 01/25 13:00:00,15.6,15.6,14.83156727469114 + 01/25 13:10:00,15.6,15.6,14.812771503150853 + 01/25 13:20:00,15.6,15.6,14.787564128929047 + 01/25 13:30:00,15.6,15.6,14.77139356430305 + 01/25 13:40:00,15.6,15.6,14.756943646288596 + 01/25 13:50:00,15.6,15.6,14.742513007212578 + 01/25 14:00:00,15.6,15.6,14.729730054336447 + 01/25 14:10:00,15.6,15.6,14.716338912858168 + 01/25 14:20:00,15.6,15.6,14.708606645145658 + 01/25 14:30:00,15.6,15.6,14.698026513707572 + 01/25 14:40:00,15.6,15.6,14.688216128976365 + 01/25 14:50:00,15.6,15.6,14.680078817013444 + 01/25 15:00:00,15.6,15.6,14.671321975771697 + 01/25 15:10:00,15.6,15.6,14.664561222151045 + 01/25 15:20:00,15.6,15.6,14.66072694315877 + 01/25 15:30:00,15.6,15.6,14.656997760760138 + 01/25 15:40:00,15.6,15.6,14.652072068670977 + 01/25 15:50:00,15.6,15.6,14.650108180983496 + 01/25 16:00:00,15.6,15.6,14.649075298464068 + 01/25 16:10:00,15.6,15.6,16.816438427317377 + 01/25 16:20:00,15.6,15.6,17.07027249054346 + 01/25 16:30:00,15.6,15.6,17.17099976855803 + 01/25 16:40:00,15.6,15.6,17.249888084640387 + 01/25 16:50:00,15.6,15.6,17.313281718423974 + 01/25 17:00:00,15.6,15.6,17.364624816609557 + 01/25 17:10:00,15.6,15.6,17.432527617569308 + 01/25 17:20:00,15.6,15.6,17.48999582785295 + 01/25 17:30:00,15.6,15.6,17.52293058474312 + 01/25 17:40:00,15.6,15.6,17.552057412475898 + 01/25 17:50:00,15.6,15.6,17.578215606002077 + 01/25 18:00:00,15.6,15.6,17.601997207751184 + 01/25 18:10:00,15.6,15.6,17.638249881635006 + 01/25 18:20:00,15.6,15.6,17.665194655355259 + 01/25 18:30:00,15.6,15.6,17.684624270614824 + 01/25 18:40:00,15.6,15.6,17.70239726023685 + 01/25 18:50:00,15.6,15.6,17.71871097008985 + 01/25 19:00:00,15.6,15.6,17.733733036646279 + 01/25 19:10:00,15.6,15.6,17.754900064170966 + 01/25 19:20:00,15.6,15.6,17.7749782022225 + 01/25 19:30:00,15.6,15.6,17.79398126678342 + 01/25 19:40:00,15.6,15.6,17.812042717286187 + 01/25 19:50:00,15.6,15.6,17.82927960536974 + 01/25 20:00:00,15.6,15.6,17.84585618405821 + 01/25 20:10:00,15.6,15.6,17.86321430638909 + 01/25 20:20:00,15.6,15.6,17.86795329110027 + 01/25 20:30:00,15.6,15.6,17.872571180606579 + 01/25 20:40:00,15.6,15.6,17.87733860403753 + 01/25 20:50:00,15.6,15.6,17.882257475504763 + 01/25 21:00:00,15.6,15.6,17.887340996654424 + 01/25 21:10:00,15.6,15.6,17.87710312854539 + 01/25 21:20:00,15.6,15.6,17.89313531834469 + 01/25 21:30:00,15.6,15.6,17.904060720388669 + 01/25 21:40:00,15.6,15.6,17.91417635705895 + 01/25 21:50:00,15.6,15.6,17.923664023970838 + 01/25 22:00:00,15.6,15.6,17.93269338972053 + 01/25 22:10:00,15.6,15.6,17.939706343701237 + 01/25 22:20:00,15.6,15.6,17.946359409050005 + 01/25 22:30:00,15.6,15.6,17.95276478906954 + 01/25 22:40:00,15.6,15.6,17.958934191580164 + 01/25 22:50:00,15.6,15.6,17.964852609604095 + 01/25 23:00:00,15.6,15.6,17.9706667654008 + 01/25 23:10:00,15.6,15.6,19.35173583574738 + 01/25 23:20:00,15.6,15.6,19.49806465688861 + 01/25 23:30:00,15.6,15.6,19.56531000355953 + 01/25 23:40:00,15.6,15.6,19.6192353552351 + 01/25 23:50:00,15.6,15.6,19.66371385204999 + 01/25 24:00:00,15.6,15.6,19.70186346338809 + 01/26 00:10:00,15.6,15.6,19.732369563460375 + 01/26 00:20:00,15.6,15.6,19.75950518360534 + 01/26 00:30:00,15.6,15.6,19.78388142426931 + 01/26 00:40:00,15.6,15.6,19.806180286319589 + 01/26 00:50:00,15.6,15.6,19.826732841553097 + 01/26 01:00:00,15.6,15.6,19.845802876216248 + 01/26 01:10:00,15.6,15.6,19.863444564301344 + 01/26 01:20:00,15.6,15.6,19.88010938156801 + 01/26 01:30:00,15.6,15.6,19.89608590577788 + 01/26 01:40:00,15.6,15.6,19.911511334841348 + 01/26 01:50:00,15.6,15.6,19.926416709875249 + 01/26 02:00:00,15.6,15.6,19.94085209010878 + 01/26 02:10:00,15.6,15.6,19.953755756366627 + 01/26 02:20:00,15.6,15.6,19.96614385623438 + 01/26 02:30:00,15.6,15.6,19.978130491766924 + 01/26 02:40:00,15.6,15.6,19.98967292125206 + 01/26 02:50:00,15.6,15.6,20.000801247052626 + 01/26 03:00:00,15.6,15.6,20.011537149227295 + 01/26 03:10:00,15.6,15.6,20.021712769341784 + 01/26 03:20:00,15.6,15.6,20.031673250576245 + 01/26 03:30:00,15.6,15.6,20.04135006562457 + 01/26 03:40:00,15.6,15.6,20.05076221833432 + 01/26 03:50:00,15.6,15.6,20.059926797203859 + 01/26 04:00:00,15.6,15.6,20.06876657243765 + 01/26 04:10:00,15.6,15.6,20.07765270375674 + 01/26 04:20:00,15.6,15.6,20.086312533448408 + 01/26 04:30:00,15.6,15.6,20.0947306382578 + 01/26 04:40:00,15.6,15.6,20.102918343763038 + 01/26 04:50:00,15.6,15.6,20.110820813791258 + 01/26 05:00:00,15.6,15.6,20.118541679045998 + 01/26 05:10:00,15.6,15.6,20.12592724184231 + 01/26 05:20:00,15.6,15.6,20.133119376723493 + 01/26 05:30:00,15.6,15.6,20.140072645455299 + 01/26 05:40:00,15.6,15.6,20.1467700414397 + 01/26 05:50:00,15.6,15.6,20.153235554722344 + 01/26 06:00:00,15.6,15.6,20.159565043443786 + 01/26 06:10:00,15.6,15.6,20.16692407391774 + 01/26 06:20:00,15.6,15.6,20.17397368779863 + 01/26 06:30:00,15.6,15.6,20.18071202737842 + 01/26 06:40:00,15.6,15.6,20.187082002872648 + 01/26 06:50:00,15.6,15.6,20.19327029130487 + 01/26 07:00:00,15.6,15.6,20.19920960675464 + 01/26 07:05:00,15.6,15.6,18.187003488398934 + 01/26 07:10:00,15.6,15.6,18.18718824838156 + 01/26 07:20:00,15.6,15.6,17.95493734736151 + 01/26 07:30:00,15.6,15.6,17.86901203617728 + 01/26 07:40:00,15.6,15.6,17.802330070751308 + 01/26 07:50:00,15.6,15.6,17.749344767831084 + 01/26 08:00:00,15.6,15.6,17.704847416007888 + 01/26 08:10:00,15.6,15.6,16.21857785140532 + 01/26 08:20:00,15.6,15.6,16.00433479674241 + 01/26 08:30:00,15.6,15.6,15.904595140837646 + 01/26 08:40:00,15.6,15.6,15.822002814169482 + 01/26 08:50:00,15.6,15.6,15.752318367039417 + 01/26 09:00:00,15.6,15.6,15.691166077860823 + 01/26 09:10:00,15.6,15.6,15.60955706773445 + 01/26 09:20:00,15.6,15.6,15.550264829153403 + 01/26 09:30:00,15.6,15.6,15.502550690869296 + 01/26 09:40:00,15.6,15.6,15.458074114312268 + 01/26 09:50:00,15.6,15.6,15.416486145977377 + 01/26 10:00:00,15.6,15.6,15.37753058137729 + 01/26 10:10:00,15.6,15.6,15.339196271577336 + 01/26 10:20:00,15.6,15.6,15.292342652370709 + 01/26 10:30:00,15.6,15.6,15.258075022955728 + 01/26 10:40:00,15.6,15.6,15.227245966293357 + 01/26 10:50:00,15.6,15.6,15.197322330153844 + 01/26 11:00:00,15.6,15.6,15.167354663221403 + 01/26 11:10:00,15.6,15.6,15.140361540226099 + 01/26 11:20:00,15.6,15.6,15.108726866169218 + 01/26 11:30:00,15.6,15.6,15.08444941457848 + 01/26 11:40:00,15.6,15.6,15.058535496612049 + 01/26 11:50:00,15.6,15.6,15.036556891915997 + 01/26 12:00:00,15.6,15.6,15.01272211522723 + 01/26 12:10:00,15.6,15.6,14.98986929813558 + 01/26 12:20:00,15.6,15.6,14.97439865160957 + 01/26 12:30:00,15.6,15.6,14.952977765969793 + 01/26 12:40:00,15.6,15.6,14.930556618535844 + 01/26 12:50:00,15.6,15.6,14.909247346011839 + 01/26 13:00:00,15.6,15.6,14.890118727224225 + 01/26 13:10:00,15.6,15.6,14.874013603496263 + 01/26 13:20:00,15.6,15.6,14.85273244080626 + 01/26 13:30:00,15.6,15.6,14.839947465784118 + 01/26 13:40:00,15.6,15.6,14.830528010600077 + 01/26 13:50:00,15.6,15.6,14.820307274312182 + 01/26 14:00:00,15.6,15.6,14.813139951603347 + 01/26 14:10:00,15.6,15.6,14.804186272392862 + 01/26 14:20:00,15.6,15.6,14.801005243100695 + 01/26 14:30:00,15.6,15.6,14.793245162438529 + 01/26 14:40:00,15.6,15.6,14.786831043287702 + 01/26 14:50:00,15.6,15.6,14.780469833854296 + 01/26 15:00:00,15.6,15.6,14.774382066761948 + 01/26 15:10:00,15.6,15.6,14.769975178127565 + 01/26 15:20:00,15.6,15.6,14.768245908165108 + 01/26 15:30:00,15.6,15.6,14.766134876904644 + 01/26 15:40:00,15.6,15.6,14.761687184721792 + 01/26 15:50:00,15.6,15.6,14.760939946076965 + 01/26 16:00:00,15.6,15.6,14.759430046863761 + 01/26 16:10:00,15.6,15.6,16.92635288006986 + 01/26 16:20:00,15.6,15.6,17.177293856936527 + 01/26 16:30:00,15.6,15.6,17.27499143341423 + 01/26 16:40:00,15.6,15.6,17.35256560415857 + 01/26 16:50:00,15.6,15.6,17.41450734189564 + 01/26 17:00:00,15.6,15.6,17.46397363359077 + 01/26 17:10:00,15.6,15.6,17.533965568115247 + 01/26 17:20:00,15.6,15.6,17.59343596447584 + 01/26 17:30:00,15.6,15.6,17.628830595797618 + 01/26 17:40:00,15.6,15.6,17.660843202441606 + 01/26 17:50:00,15.6,15.6,17.690328956102648 + 01/26 17:55:00,15.6,15.6,17.718174067986309 + 01/26 18:00:00,15.6,15.6,17.717797543476924 + 01/26 18:10:00,15.6,15.6,17.754923553676826 + 01/26 18:20:00,15.6,15.6,17.782636971691855 + 01/26 18:30:00,15.6,15.6,17.80255448603522 + 01/26 18:40:00,15.6,15.6,17.82057882229207 + 01/26 18:50:00,15.6,15.6,17.837007227172859 + 01/26 19:00:00,15.6,15.6,17.85207238793368 + 01/26 19:10:00,15.6,15.6,17.86620883398033 + 01/26 19:20:00,15.6,15.6,17.879312178650637 + 01/26 19:30:00,15.6,15.6,17.891478661588577 + 01/26 19:40:00,15.6,15.6,17.902769249926668 + 01/26 19:50:00,15.6,15.6,17.913383170948195 + 01/26 20:00:00,15.6,15.6,17.92336926548644 + 01/26 20:10:00,15.6,15.6,17.946684845425499 + 01/26 20:20:00,15.6,15.6,17.957064818884218 + 01/26 20:30:00,15.6,15.6,17.966575079655386 + 01/26 20:40:00,15.6,15.6,17.97563175321959 + 01/26 20:50:00,15.6,15.6,17.984287932520578 + 01/26 21:00:00,15.6,15.6,17.99255414410928 + 01/26 21:10:00,15.6,15.6,17.978397890595028 + 01/26 21:20:00,15.6,15.6,17.99096250913815 + 01/26 21:30:00,15.6,15.6,17.99884759567886 + 01/26 21:40:00,15.6,15.6,18.006425994358059 + 01/26 21:50:00,15.6,15.6,18.013773035855004 + 01/26 22:00:00,15.6,15.6,18.0209579618475 + 01/26 22:10:00,15.6,15.6,18.02867358440961 + 01/26 22:20:00,15.6,15.6,18.03607944776261 + 01/26 22:30:00,15.6,15.6,18.043332493207516 + 01/26 22:40:00,15.6,15.6,18.050390151382609 + 01/26 22:50:00,15.6,15.6,18.057273863911559 + 01/26 23:00:00,15.6,15.6,18.063992419718905 + 01/26 23:10:00,15.6,15.6,19.442126266276135 + 01/26 23:20:00,15.6,15.6,19.583930124976246 + 01/26 23:30:00,15.6,15.6,19.647291171100635 + 01/26 23:40:00,15.6,15.6,19.697643768565344 + 01/26 23:50:00,15.6,15.6,19.738494705135027 + 01/26 24:00:00,15.6,15.6,19.77303865320553 + 01/27 00:10:00,15.6,15.6,19.80414354512735 + 01/27 00:20:00,15.6,15.6,19.831840171337153 + 01/27 00:30:00,15.6,15.6,19.856771870217409 + 01/27 00:40:00,15.6,15.6,19.879450672292827 + 01/27 00:50:00,15.6,15.6,19.900260767506859 + 01/27 01:00:00,15.6,15.6,19.919412481908056 + 01/27 01:10:00,15.6,15.6,19.936796016780943 + 01/27 01:20:00,15.6,15.6,19.95310223839807 + 01/27 01:30:00,15.6,15.6,19.968494265692447 + 01/27 01:40:00,15.6,15.6,19.983097343754787 + 01/27 01:50:00,15.6,15.6,19.996919781442018 + 01/27 02:00:00,15.6,15.6,20.01018744550462 + 01/27 02:10:00,15.6,15.6,20.022929420657119 + 01/27 02:20:00,15.6,15.6,20.035156207470185 + 01/27 02:30:00,15.6,15.6,20.04691901073332 + 01/27 02:40:00,15.6,15.6,20.058191460042349 + 01/27 02:50:00,15.6,15.6,20.069088937028405 + 01/27 03:00:00,15.6,15.6,20.079665236043284 + 01/27 03:10:00,15.6,15.6,20.09129339591776 + 01/27 03:20:00,15.6,15.6,20.102530389616346 + 01/27 03:30:00,15.6,15.6,20.113305466949183 + 01/27 03:40:00,15.6,15.6,20.123689557371678 + 01/27 03:50:00,15.6,15.6,20.133798211393544 + 01/27 04:00:00,15.6,15.6,20.143582829868746 + 01/27 04:10:00,15.6,15.6,20.149454791539477 + 01/27 04:20:00,15.6,15.6,20.155138007219589 + 01/27 04:30:00,15.6,15.6,20.160610935322127 + 01/27 04:40:00,15.6,15.6,20.166062540807745 + 01/27 04:50:00,15.6,15.6,20.171400418386378 + 01/27 05:00:00,15.6,15.6,20.176623793002919 + 01/27 05:10:00,15.6,15.6,20.184736915004199 + 01/27 05:20:00,15.6,15.6,20.19258592984578 + 01/27 05:30:00,15.6,15.6,20.200332121061494 + 01/27 05:40:00,15.6,15.6,20.207899538733579 + 01/27 05:50:00,15.6,15.6,20.21528601102698 + 01/27 06:00:00,15.6,15.6,20.222499671940278 + 01/27 06:10:00,15.6,15.6,20.229508026460907 + 01/27 06:20:00,15.6,15.6,20.23641144983779 + 01/27 06:30:00,15.6,15.6,20.24322299018643 + 01/27 06:40:00,15.6,15.6,20.249915331612919 + 01/27 06:50:00,15.6,15.6,20.256495887834814 + 01/27 07:00:00,15.6,15.6,20.262924710314615 + 01/27 07:05:00,15.6,15.6,18.25514473501317 + 01/27 07:10:00,15.6,15.6,18.25524057536369 + 01/27 07:20:00,15.6,15.6,18.024965628482293 + 01/27 07:30:00,15.6,15.6,17.940198125849457 + 01/27 07:40:00,15.6,15.6,17.87410351120299 + 01/27 07:50:00,15.6,15.6,17.82172713213921 + 01/27 08:00:00,15.6,15.6,17.77770069690282 + 01/27 08:05:00,15.6,15.6,16.2902373274785 + 01/27 08:10:00,15.6,15.6,16.290180920263596 + 01/27 08:15:00,15.6,15.6,16.07303677351471 + 01/27 08:20:00,15.6,15.6,16.073139145856758 + 01/27 08:30:00,15.6,15.6,15.969519162881383 + 01/27 08:40:00,15.6,15.6,15.88369392344688 + 01/27 08:50:00,15.6,15.6,15.81065239349532 + 01/27 09:00:00,15.6,15.6,15.746301725214622 + 01/27 09:10:00,15.6,15.6,15.663102331660053 + 01/27 09:20:00,15.6,15.6,15.60210890335441 + 01/27 09:30:00,15.6,15.6,15.552675347626457 + 01/27 09:40:00,15.6,15.6,15.506482166937169 + 01/27 09:50:00,15.6,15.6,15.463144570373429 + 01/27 10:00:00,15.6,15.6,15.422372693316874 + 01/27 10:10:00,15.6,15.6,15.383111504424708 + 01/27 10:20:00,15.6,15.6,15.335302988826897 + 01/27 10:30:00,15.6,15.6,15.299984333386206 + 01/27 10:40:00,15.6,15.6,15.268266193995024 + 01/27 10:50:00,15.6,15.6,15.23671019736129 + 01/27 11:00:00,15.6,15.6,15.205886107354486 + 01/27 11:10:00,15.6,15.6,15.177233529591556 + 01/27 11:20:00,15.6,15.6,15.144505486962017 + 01/27 11:30:00,15.6,15.6,15.118410517167688 + 01/27 11:40:00,15.6,15.6,15.091436870133429 + 01/27 11:50:00,15.6,15.6,15.067682762244563 + 01/27 12:00:00,15.6,15.6,15.042995814566419 + 01/27 12:10:00,15.6,15.6,15.021240151246614 + 01/27 12:20:00,15.6,15.6,15.008034123459192 + 01/27 12:30:00,15.6,15.6,14.988705670515693 + 01/27 12:40:00,15.6,15.6,14.96806134112393 + 01/27 12:50:00,15.6,15.6,14.949563591636144 + 01/27 13:00:00,15.6,15.6,14.93260534194551 + 01/27 13:10:00,15.6,15.6,14.912391944328603 + 01/27 13:20:00,15.6,15.6,14.886284218540354 + 01/27 13:30:00,15.6,15.6,14.867478510851317 + 01/27 13:40:00,15.6,15.6,14.85219876048087 + 01/27 13:50:00,15.6,15.6,14.834886819238815 + 01/27 14:00:00,15.6,15.6,14.821036080909974 + 01/27 14:10:00,15.6,15.6,14.804915571832998 + 01/27 14:20:00,15.6,15.6,14.795709698074182 + 01/27 14:30:00,15.6,15.6,14.781524499864686 + 01/27 14:40:00,15.6,15.6,14.769925633236653 + 01/27 14:50:00,15.6,15.6,14.757899597040974 + 01/27 15:00:00,15.6,15.6,14.747275691585628 + 01/27 15:10:00,15.6,15.6,14.741851185691202 + 01/27 15:20:00,15.6,15.6,14.74013547167503 + 01/27 15:30:00,15.6,15.6,14.73758014966779 + 01/27 15:40:00,15.6,15.6,14.733226749381624 + 01/27 15:50:00,15.6,15.6,14.73287421853192 + 01/27 16:00:00,15.6,15.6,14.731157476013778 + 01/27 16:10:00,15.6,15.6,16.90051007070177 + 01/27 16:20:00,15.6,15.6,17.15268099056675 + 01/27 16:30:00,15.6,15.6,17.252045007675439 + 01/27 16:40:00,15.6,15.6,17.33141829622639 + 01/27 16:50:00,15.6,15.6,17.395105054511654 + 01/27 17:00:00,15.6,15.6,17.44582059479464 + 01/27 17:10:00,15.6,15.6,17.514882310660075 + 01/27 17:20:00,15.6,15.6,17.572568876181749 + 01/27 17:30:00,15.6,15.6,17.606028399235158 + 01/27 17:40:00,15.6,15.6,17.635983879649648 + 01/27 17:50:00,15.6,15.6,17.663289397959536 + 01/27 18:00:00,15.6,15.6,17.688281064431395 + 01/27 18:10:00,15.6,15.6,17.728930345291205 + 01/27 18:20:00,15.6,15.6,17.75860705674549 + 01/27 18:30:00,15.6,15.6,17.781968713463919 + 01/27 18:40:00,15.6,15.6,17.803755890269906 + 01/27 18:50:00,15.6,15.6,17.82395158198365 + 01/27 19:00:00,15.6,15.6,17.842778091039905 + 01/27 19:10:00,15.6,15.6,17.8551484752671 + 01/27 19:20:00,15.6,15.6,17.86640848070779 + 01/27 19:30:00,15.6,15.6,17.87672624138129 + 01/27 19:40:00,15.6,15.6,17.88628963891708 + 01/27 19:50:00,15.6,15.6,17.89517496836997 + 01/27 20:00:00,15.6,15.6,17.90349540386418 + 01/27 20:10:00,15.6,15.6,17.92684694229105 + 01/27 20:20:00,15.6,15.6,17.937330820267414 + 01/27 20:30:00,15.6,15.6,17.947040250634588 + 01/27 20:40:00,15.6,15.6,17.95635786262414 + 01/27 20:50:00,15.6,15.6,17.96528490600293 + 01/27 21:00:00,15.6,15.6,17.97390126140084 + 01/27 21:10:00,15.6,15.6,17.961159604987527 + 01/27 21:20:00,15.6,15.6,17.9750966512302 + 01/27 21:30:00,15.6,15.6,17.984199684845558 + 01/27 21:40:00,15.6,15.6,17.99287859017926 + 01/27 21:50:00,15.6,15.6,18.001232654445539 + 01/27 22:00:00,15.6,15.6,18.009288714834697 + 01/27 22:10:00,15.6,15.6,18.015310907088894 + 01/27 22:20:00,15.6,15.6,18.02114490100212 + 01/27 22:30:00,15.6,15.6,18.02684682445695 + 01/27 22:40:00,15.6,15.6,18.03240338959472 + 01/27 22:50:00,15.6,15.6,18.037779317765016 + 01/27 23:00:00,15.6,15.6,18.043108590422997 + 01/27 23:10:00,15.6,15.6,19.422482822337135 + 01/27 23:20:00,15.6,15.6,19.565402926564919 + 01/27 23:30:00,15.6,15.6,19.629879666535336 + 01/27 23:40:00,15.6,15.6,19.681194577504816 + 01/27 23:50:00,15.6,15.6,19.723065822622279 + 01/27 24:00:00,15.6,15.6,19.758642723686479 + 01/28 00:10:00,15.6,15.6,19.78876231988593 + 01/28 00:20:00,15.6,15.6,19.81532708325463 + 01/28 00:30:00,15.6,15.6,19.839002374206545 + 01/28 00:40:00,15.6,15.6,19.860433686949898 + 01/28 00:50:00,15.6,15.6,19.87998581516979 + 01/28 01:00:00,15.6,15.6,19.89793784014922 + 01/28 01:10:00,15.6,15.6,19.914727408866388 + 01/28 01:20:00,15.6,15.6,19.930420999631715 + 01/28 01:30:00,15.6,15.6,19.945239627862578 + 01/28 01:40:00,15.6,15.6,19.959354463119938 + 01/28 01:50:00,15.6,15.6,19.97280233970938 + 01/28 02:00:00,15.6,15.6,19.98565549598995 + 01/28 02:10:00,15.6,15.6,19.99728697565702 + 01/28 02:20:00,15.6,15.6,20.00841342351424 + 01/28 02:30:00,15.6,15.6,20.019193335239227 + 01/28 02:40:00,15.6,15.6,20.02957726627445 + 01/28 02:50:00,15.6,15.6,20.03959548377989 + 01/28 03:00:00,15.6,15.6,20.049263716087635 + 01/28 03:10:00,15.6,15.6,20.059803098463275 + 01/28 03:20:00,15.6,15.6,20.07011277692279 + 01/28 03:30:00,15.6,15.6,20.08009370586783 + 01/28 03:40:00,15.6,15.6,20.089764154142789 + 01/28 03:50:00,15.6,15.6,20.099139914457035 + 01/28 04:00:00,15.6,15.6,20.10815023055794 + 01/28 04:10:00,15.6,15.6,20.116216777355946 + 01/28 04:20:00,15.6,15.6,20.1240189526596 + 01/28 04:30:00,15.6,15.6,20.131557261526646 + 01/28 04:40:00,15.6,15.6,20.138842284973575 + 01/28 04:50:00,15.6,15.6,20.145823741866797 + 01/28 05:00:00,15.6,15.6,20.15260835892791 + 01/28 05:10:00,15.6,15.6,20.159888674600866 + 01/28 05:20:00,15.6,15.6,20.166955098681819 + 01/28 05:30:00,15.6,15.6,20.173815629654567 + 01/28 05:40:00,15.6,15.6,20.180438165992745 + 01/28 05:50:00,15.6,15.6,20.186853738935818 + 01/28 06:00:00,15.6,15.6,20.193156734301298 + 01/28 06:10:00,15.6,15.6,20.19797407475357 + 01/28 06:20:00,15.6,15.6,20.202658521566169 + 01/28 06:30:00,15.6,15.6,20.20720834299491 + 01/28 06:40:00,15.6,15.6,20.211579039963138 + 01/28 06:50:00,15.6,15.6,20.215931159535935 + 01/28 07:00:00,15.6,15.6,20.22017970779418 + 01/28 07:10:00,15.6,15.6,19.562181211648086 + 01/28 07:20:00,15.6,15.6,19.499445114252138 + 01/28 07:30:00,15.6,15.6,19.476696277495237 + 01/28 07:40:00,15.6,15.6,19.460066532649173 + 01/28 07:50:00,15.6,15.6,19.44737607056865 + 01/28 08:00:00,15.6,15.6,19.43655919456443 + 01/28 08:10:00,15.6,15.6,18.3448424039143 + 01/28 08:20:00,15.6,15.6,18.19790861938197 + 01/28 08:30:00,15.6,15.6,18.133689331895924 + 01/28 08:40:00,15.6,15.6,18.080089941520464 + 01/28 08:50:00,15.6,15.6,18.03421798557251 + 01/28 09:00:00,15.6,15.6,17.99322277030188 + 01/28 09:10:00,15.6,15.6,17.95650769035997 + 01/28 09:20:00,15.6,15.6,17.913056177612036 + 01/28 09:30:00,15.6,15.6,17.880073669749956 + 01/28 09:40:00,15.6,15.6,17.84859406753483 + 01/28 09:50:00,15.6,15.6,17.818419414129019 + 01/28 10:00:00,15.6,15.6,17.789572815673027 + 01/28 10:10:00,15.6,15.6,17.761419427749496 + 01/28 10:20:00,15.6,15.6,17.725516467737469 + 01/28 10:30:00,15.6,15.6,17.699475697995479 + 01/28 10:40:00,15.6,15.6,17.67446769750461 + 01/28 10:50:00,15.6,15.6,17.650394885850554 + 01/28 11:00:00,15.6,15.6,17.62723543433033 + 01/28 11:10:00,15.6,15.6,17.605319882255239 + 01/28 11:20:00,15.6,15.6,17.58448049132036 + 01/28 11:30:00,15.6,15.6,17.56466094892016 + 01/28 11:40:00,15.6,15.6,17.54583585608169 + 01/28 11:50:00,15.6,15.6,17.527970456906258 + 01/28 12:00:00,15.6,15.6,17.510998453618045 + 01/28 12:10:00,15.6,15.6,17.49406023221045 + 01/28 12:20:00,15.6,15.6,17.47778983342187 + 01/28 12:30:00,15.6,15.6,17.46214711638429 + 01/28 12:40:00,15.6,15.6,17.44711433404553 + 01/28 12:50:00,15.6,15.6,17.432741405742826 + 01/28 13:00:00,15.6,15.6,17.41903130051366 + 01/28 13:10:00,15.6,15.6,17.406584509069626 + 01/28 13:20:00,15.6,15.6,17.39489417786185 + 01/28 13:30:00,15.6,15.6,17.383804219362653 + 01/28 13:40:00,15.6,15.6,17.37335611845351 + 01/28 13:50:00,15.545345345345345,15.545345345345345,17.363519975089497 + 01/28 14:00:00,15.448648648648648,15.448648648648648,17.35460774547434 + 01/28 14:10:00,15.381381381381381,15.381381381381381,17.34616733020641 + 01/28 14:20:00,15.314114114114114,15.314114114114114,17.33787033045013 + 01/28 14:30:00,15.246846846846847,15.246846846846847,17.330052931533478 + 01/28 14:40:00,15.17957957957958,15.17957957957958,17.320791456010974 + 01/28 14:50:00,15.112312312312313,15.112312312312313,17.31296604984859 + 01/28 15:00:00,15.045045045045045,15.045045045045045,17.306748348560086 + 01/28 15:10:00,15.045045045045045,15.045045045045045,17.303145399273203 + 01/28 15:20:00,15.045045045045045,15.045045045045045,17.30032474035784 + 01/28 15:30:00,15.045045045045045,15.045045045045045,17.29697201155388 + 01/28 15:40:00,15.045045045045045,15.045045045045045,17.296681856255036 + 01/28 15:50:00,15.045045045045045,15.045045045045045,17.29752583806152 + 01/28 16:00:00,15.045045045045045,15.045045045045045,17.299162975036319 + 01/28 16:10:00,15.045045045045045,15.045045045045045,17.298504499475088 + 01/28 16:20:00,15.045045045045045,15.045045045045045,17.299706760425637 + 01/28 16:30:00,15.045045045045045,15.045045045045045,17.302129057139657 + 01/28 16:40:00,15.045045045045045,15.045045045045045,17.305076560563717 + 01/28 16:50:00,15.045045045045045,15.045045045045045,17.307690185931006 + 01/28 17:00:00,15.045045045045045,15.045045045045045,17.30976796586353 + 01/28 17:10:00,15.112312312312313,15.112312312312313,17.326524224577363 + 01/28 17:20:00,15.17957957957958,15.17957957957958,17.339954395958345 + 01/28 17:30:00,15.246846846846847,15.246846846846847,17.344535721833588 + 01/28 17:40:00,15.314114114114114,15.314114114114114,17.349386652169998 + 01/28 17:50:00,15.381381381381381,15.381381381381381,17.354543439028399 + 01/28 18:00:00,15.448648648648648,15.448648648648648,17.358463380116878 + 01/28 18:05:00,15.52012012012012,15.52012012012012,19.139576330562976 + 01/28 18:10:00,15.52012012012012,15.52012012012012,19.139007566160627 + 01/28 18:20:00,15.591591591591591,15.591591591591591,19.350985987753675 + 01/28 18:30:00,15.6,15.6,19.435723277958379 + 01/28 18:40:00,15.6,15.6,19.50124258981476 + 01/28 18:50:00,15.6,15.6,19.55343054884689 + 01/28 19:00:00,15.6,15.6,19.596530587902604 + 01/28 19:10:00,15.6,15.6,19.64707207276747 + 01/28 19:20:00,15.6,15.6,19.680206352410843 + 01/28 19:30:00,15.6,15.6,19.709048287744588 + 01/28 19:40:00,15.6,15.6,19.73465304340754 + 01/28 19:50:00,15.6,15.6,19.75760292725514 + 01/28 20:00:00,15.6,15.6,19.778263714346559 + 01/28 20:10:00,15.6,15.6,19.797551657292624 + 01/28 20:20:00,15.6,15.6,19.81548508213814 + 01/28 20:30:00,15.6,15.6,19.832296803920696 + 01/28 20:40:00,15.6,15.6,19.848234380504459 + 01/28 20:50:00,15.6,15.6,19.86335636100597 + 01/28 21:00:00,15.6,15.6,19.87785741613173 + 01/28 21:10:00,15.6,15.6,19.867932709000067 + 01/28 21:20:00,15.6,15.6,19.88014717182389 + 01/28 21:30:00,15.6,15.6,19.89189152136812 + 01/28 21:40:00,15.6,15.6,19.903163946665946 + 01/28 21:50:00,15.6,15.6,19.914033383259495 + 01/28 22:00:00,15.6,15.6,19.924601331282145 + 01/28 22:10:00,15.6,15.6,19.93489130025539 + 01/28 22:20:00,15.6,15.6,19.944728569993793 + 01/28 22:30:00,15.6,15.6,19.954066106122867 + 01/28 22:40:00,15.6,15.6,19.96288570382817 + 01/28 22:50:00,15.6,15.6,19.971365854513814 + 01/28 23:00:00,15.6,15.6,19.97945972339015 + 01/28 23:10:00,15.6,15.6,19.986909286184777 + 01/28 23:20:00,15.6,15.6,19.994107900716533 + 01/28 23:30:00,15.6,15.6,20.000996307448057 + 01/28 23:40:00,15.6,15.6,20.00779608606474 + 01/28 23:50:00,15.6,15.6,20.01442229127061 + 01/28 24:00:00,15.6,15.6,20.020878777933555 + 01/29 00:10:00,15.6,15.6,20.02721174834079 + 01/29 00:20:00,15.6,15.6,20.033349724754513 + 01/29 00:30:00,15.6,15.6,20.03942709917762 + 01/29 00:40:00,15.6,15.6,20.045419280867596 + 01/29 00:50:00,15.6,15.6,20.05129457847272 + 01/29 01:00:00,15.6,15.6,20.057047511338039 + 01/29 01:10:00,15.6,15.6,20.06038574360605 + 01/29 01:20:00,15.6,15.6,20.063698233585403 + 01/29 01:30:00,15.6,15.6,20.067091975802279 + 01/29 01:40:00,15.6,15.6,20.070540072961959 + 01/29 01:50:00,15.6,15.6,20.074068301210244 + 01/29 02:00:00,15.6,15.6,20.07778582962745 + 01/29 02:10:00,15.6,15.6,20.086817495378364 + 01/29 02:20:00,15.6,15.6,20.09566170954502 + 01/29 02:30:00,15.6,15.6,20.104097923451908 + 01/29 02:40:00,15.6,15.6,20.112167441896817 + 01/29 02:50:00,15.6,15.6,20.11992721608219 + 01/29 03:00:00,15.6,15.6,20.127333196985267 + 01/29 03:10:00,15.6,15.6,20.130192895037636 + 01/29 03:20:00,15.6,15.6,20.13307254525602 + 01/29 03:30:00,15.6,15.6,20.135969142602315 + 01/29 03:40:00,15.6,15.6,20.138953389118446 + 01/29 03:50:00,15.6,15.6,20.141944276547048 + 01/29 04:00:00,15.6,15.6,20.145211743048838 + 01/29 04:10:00,15.6,15.6,20.151068187477333 + 01/29 04:20:00,15.6,15.6,20.156810306577286 + 01/29 04:30:00,15.6,15.6,20.162357112809095 + 01/29 04:40:00,15.6,15.6,20.16755593452702 + 01/29 04:50:00,15.6,15.6,20.172504011217727 + 01/29 05:00:00,15.6,15.6,20.177233704233445 + 01/29 05:10:00,15.6,15.6,20.181721155465789 + 01/29 05:20:00,15.6,15.6,20.186018771903869 + 01/29 05:30:00,15.6,15.6,20.190086313114536 + 01/29 05:40:00,15.6,15.6,20.193961710488695 + 01/29 05:50:00,15.6,15.6,20.197746776054005 + 01/29 06:00:00,15.6,15.6,20.201384442451876 + 01/29 06:10:00,15.6,15.6,20.20750852537705 + 01/29 06:20:00,15.6,15.6,20.212845942766273 + 01/29 06:30:00,15.6,15.6,20.21735248443148 + 01/29 06:40:00,15.6,15.6,20.221362898762327 + 01/29 06:50:00,15.6,15.6,20.224902798389104 + 01/29 07:00:00,15.6,15.6,20.228060732831147 + 01/29 07:10:00,15.6,15.6,20.250672959702336 + 01/29 07:20:00,15.6,15.6,20.25060486207515 + 01/29 07:30:00,15.6,15.6,20.250780987817138 + 01/29 07:40:00,15.6,15.6,20.251155763794015 + 01/29 07:50:00,15.6,15.6,20.251220108661046 + 01/29 08:00:00,15.6,15.6,20.250093598693004 + 01/29 08:10:00,15.6,15.6,18.844256600351199 + 01/29 08:20:00,15.6,15.6,18.67852551381564 + 01/29 08:30:00,15.6,15.6,18.61126987843093 + 01/29 08:40:00,15.6,15.6,18.556147581487694 + 01/29 08:50:00,15.6,15.6,18.50978947282121 + 01/29 09:00:00,15.6,15.6,18.46906835515858 + 01/29 09:10:00,15.6,15.6,18.430907877094314 + 01/29 09:20:00,15.6,15.6,18.38623564180127 + 01/29 09:30:00,15.6,15.6,18.352123851404256 + 01/29 09:40:00,15.6,15.6,18.319596411058094 + 01/29 09:50:00,15.6,15.6,18.288462769362526 + 01/29 10:00:00,15.6,15.6,18.25858846239047 + 01/29 10:10:00,15.6,15.6,18.230220808763869 + 01/29 10:20:00,15.6,15.6,18.194203741644427 + 01/29 10:30:00,15.524324324324324,15.524324324324324,18.168109666024358 + 01/29 10:40:00,15.406606606606607,15.406606606606607,18.143196207189037 + 01/29 10:50:00,15.28888888888889,15.28888888888889,18.119352691835205 + 01/29 11:00:00,15.17117117117117,15.17117117117117,18.096489669109606 + 01/29 11:10:00,15.124924924924925,15.124924924924925,18.074856022198398 + 01/29 11:20:00,15.078678678678678,15.078678678678678,18.0545601418514 + 01/29 11:30:00,15.032432432432433,15.032432432432433,18.035366580453453 + 01/29 11:40:00,14.986186186186187,14.986186186186187,18.01715159644878 + 01/29 11:50:00,14.93993993993994,14.93993993993994,17.999990345991017 + 01/29 12:00:00,14.893693693693694,14.893693693693694,17.983744460698668 + 01/29 12:10:00,14.847447447447447,14.847447447447447,17.96829153883459 + 01/29 12:20:00,14.8012012012012,14.8012012012012,17.953600134230528 + 01/29 12:30:00,14.754954954954954,14.754954954954954,17.93968831871721 + 01/29 12:40:00,14.70870870870871,14.70870870870871,17.926489576118585 + 01/29 12:50:00,14.662462462462463,14.662462462462463,17.9139342117044 + 01/29 13:00:00,14.616216216216217,14.616216216216217,17.902216657789233 + 01/29 13:10:00,14.56996996996997,14.56996996996997,17.89271695740277 + 01/29 13:20:00,14.523723723723723,14.523723723723723,17.883574461315548 + 01/29 13:30:00,14.477477477477479,14.477477477477479,17.875234296318604 + 01/29 13:40:00,14.431231231231232,14.431231231231232,17.867873819625559 + 01/29 13:50:00,14.384984984984986,14.384984984984986,17.86182942322944 + 01/29 14:00:00,14.338738738738739,14.338738738738739,17.857047060825793 + 01/29 14:10:00,14.313513513513513,14.313513513513513,17.85122431074074 + 01/29 14:20:00,14.288288288288289,14.288288288288289,17.846562878024096 + 01/29 14:30:00,14.263063063063063,14.263063063063063,17.84235902516798 + 01/29 14:40:00,14.237837837837839,14.237837837837839,17.83842128730758 + 01/29 14:50:00,14.212612612612613,14.212612612612613,17.83419197490424 + 01/29 15:00:00,14.187387387387388,14.187387387387388,17.829521751388243 + 01/29 15:10:00,14.14114114114114,14.14114114114114,17.82548331312066 + 01/29 15:20:00,14.094894894894896,14.094894894894896,17.82144471617939 + 01/29 15:30:00,14.04864864864865,14.04864864864865,17.817604626237399 + 01/29 15:40:00,14.002402402402403,14.002402402402403,17.814188000123616 + 01/29 15:50:00,13.956156156156157,13.956156156156157,17.811726958317558 + 01/29 16:00:00,13.90990990990991,13.90990990990991,17.810734998698558 + 01/29 16:10:00,13.956156156156157,13.956156156156157,19.248006160501029 + 01/29 16:20:00,14.002402402402403,14.002402402402403,19.401294873488717 + 01/29 16:30:00,14.04864864864865,14.04864864864865,19.467862484806444 + 01/29 16:40:00,14.094894894894896,14.094894894894896,19.519881388679896 + 01/29 16:50:00,14.14114114114114,14.14114114114114,19.560543165453298 + 01/29 17:00:00,14.187387387387388,14.187387387387388,19.596703378328429 + 01/29 17:10:00,14.237837837837838,14.237837837837838,19.627890774875828 + 01/29 17:20:00,14.288288288288289,14.288288288288289,19.664127449084263 + 01/29 17:30:00,14.338738738738739,14.338738738738739,19.688767761922 + 01/29 17:40:00,14.389189189189189,14.389189189189189,19.711043735106395 + 01/29 17:50:00,14.43963963963964,14.43963963963964,19.73160801191092 + 01/29 18:00:00,14.49009009009009,14.49009009009009,19.74879100349048 + 01/29 18:10:00,14.536336336336337,14.536336336336337,19.76741114171698 + 01/29 18:20:00,14.582582582582582,14.582582582582582,19.802765164425865 + 01/29 18:30:00,14.628828828828829,14.628828828828829,19.819105471089637 + 01/29 18:40:00,14.675075075075075,14.675075075075075,19.834104883386119 + 01/29 18:50:00,14.721321321321322,14.721321321321322,19.847914913403895 + 01/29 19:00:00,14.767567567567568,14.767567567567568,19.860800748333064 + 01/29 19:10:00,14.813813813813815,14.813813813813815,19.87199291699111 + 01/29 19:20:00,14.860060060060059,14.860060060060059,19.882287997235769 + 01/29 19:30:00,14.906306306306306,14.906306306306306,19.891982667042176 + 01/29 19:40:00,14.952552552552552,14.952552552552552,19.901051313964908 + 01/29 19:50:00,14.998798798798799,14.998798798798799,19.909724133360038 + 01/29 20:00:00,15.045045045045045,15.045045045045045,19.918056936696478 + 01/29 20:10:00,15.137537537537538,15.137537537537538,19.926394140471829 + 01/29 20:20:00,15.23003003003003,15.23003003003003,19.93470531656188 + 01/29 20:30:00,15.322522522522523,15.322522522522523,19.94285145972635 + 01/29 20:40:00,15.415015015015016,15.415015015015016,19.950932801891399 + 01/29 20:50:00,15.507507507507507,15.507507507507507,19.958974520934257 + 01/29 21:00:00,15.6,15.6,19.966914512778968 + 01/29 21:10:00,15.6,15.6,19.952341881977245 + 01/29 21:20:00,15.6,15.6,19.960186466266113 + 01/29 21:30:00,15.6,15.6,19.967627953587866 + 01/29 21:40:00,15.6,15.6,19.974831262015969 + 01/29 21:50:00,15.6,15.6,19.98172369778115 + 01/29 22:00:00,15.6,15.6,19.98833537142641 + 01/29 22:10:00,15.6,15.6,19.99395875372484 + 01/29 22:20:00,15.6,15.6,19.999347102729023 + 01/29 22:30:00,15.6,15.6,20.00483841714051 + 01/29 22:40:00,15.6,15.6,20.010330637731348 + 01/29 22:50:00,15.6,15.6,20.015836858904277 + 01/29 23:00:00,15.6,15.6,20.021349485882756 + 01/29 23:10:00,15.6,15.6,20.02755241880753 + 01/29 23:20:00,15.6,15.6,20.03360123074822 + 01/29 23:30:00,15.6,15.6,20.039370851902349 + 01/29 23:40:00,15.6,15.6,20.044835901764814 + 01/29 23:50:00,15.6,15.6,20.0500104844561 + 01/29 24:00:00,15.6,15.6,20.054860999089465 + 01/30 00:10:00,15.6,15.6,20.058467391493378 + 01/30 00:20:00,15.6,15.6,20.062051013017947 + 01/30 00:30:00,15.6,15.6,20.065718450897039 + 01/30 00:40:00,15.6,15.6,20.069494976799758 + 01/30 00:50:00,15.6,15.6,20.073331527176057 + 01/30 01:00:00,15.6,15.6,20.07719890966832 + 01/30 01:10:00,15.6,15.6,20.08172086811697 + 01/30 01:20:00,15.6,15.6,20.08611406953828 + 01/30 01:30:00,15.6,15.6,20.090303470941689 + 01/30 01:40:00,15.6,15.6,20.09426543071957 + 01/30 01:50:00,15.6,15.6,20.09792800691863 + 01/30 02:00:00,15.6,15.6,20.101497707974617 + 01/30 02:10:00,15.6,15.6,20.10549864862034 + 01/30 02:20:00,15.6,15.6,20.10937595764687 + 01/30 02:30:00,15.6,15.6,20.11309451886164 + 01/30 02:40:00,15.6,15.6,20.11659404267995 + 01/30 02:50:00,15.6,15.6,20.120030012767427 + 01/30 03:00:00,15.6,15.6,20.123354933025455 + 01/30 03:10:00,15.6,15.6,20.126676815399216 + 01/30 03:20:00,15.6,15.6,20.1296655257898 + 01/30 03:30:00,15.6,15.6,20.132209492724266 + 01/30 03:40:00,15.6,15.6,20.134461890722024 + 01/30 03:50:00,15.6,15.6,20.136468899925366 + 01/30 04:00:00,15.6,15.6,20.13820311980148 + 01/30 04:10:00,15.6,15.6,20.138602322427407 + 01/30 04:20:00,15.6,15.6,20.13905634406569 + 01/30 04:30:00,15.6,15.6,20.139699718296904 + 01/30 04:40:00,15.6,15.6,20.140631780834725 + 01/30 04:50:00,15.6,15.6,20.141751292431168 + 01/30 05:00:00,15.6,15.6,20.143040111619784 + 01/30 05:10:00,15.6,15.6,20.14605477525429 + 01/30 05:20:00,15.6,15.6,20.14904461872581 + 01/30 05:30:00,15.6,15.6,20.15215112966315 + 01/30 05:40:00,15.6,15.6,20.155258325698829 + 01/30 05:50:00,15.6,15.6,20.158365162158835 + 01/30 06:00:00,15.6,15.6,20.161467634421134 + 01/30 06:10:00,15.6,15.6,20.16417134548983 + 01/30 06:20:00,15.6,15.6,20.167008154799228 + 01/30 06:30:00,15.6,15.6,20.16981179168387 + 01/30 06:40:00,15.6,15.6,20.17255072910727 + 01/30 06:50:00,15.6,15.6,20.175279479824586 + 01/30 07:00:00,15.6,15.6,20.17791740797321 + 01/30 07:10:00,15.6,15.6,18.169169440609605 + 01/30 07:20:00,15.6,15.6,17.93607981040102 + 01/30 07:30:00,15.6,15.6,17.849008908433768 + 01/30 07:40:00,15.6,15.6,17.7809918223884 + 01/30 07:50:00,15.6,15.6,17.72671753868276 + 01/30 08:00:00,15.6,15.6,17.680713742780676 + 01/30 08:10:00,15.6,15.6,16.192957516110867 + 01/30 08:20:00,15.6,15.6,15.973568278471563 + 01/30 08:30:00,15.6,15.6,15.869034694004128 + 01/30 08:40:00,15.6,15.6,15.782519117892419 + 01/30 08:50:00,15.6,15.6,15.709460197175514 + 01/30 09:00:00,15.6,15.6,15.645417103148777 + 01/30 09:10:00,15.6,15.6,15.562989373993137 + 01/30 09:20:00,15.6,15.6,15.502915512472992 + 01/30 09:30:00,15.6,15.6,15.454369763702877 + 01/30 09:40:00,15.6,15.6,15.409019606399593 + 01/30 09:50:00,15.6,15.6,15.36644937874464 + 01/30 10:00:00,15.6,15.6,15.326331284030014 + 01/30 10:10:00,15.415015015015016,15.415015015015016,15.288097058183232 + 01/30 10:20:00,15.23003003003003,15.23003003003003,15.240901129520346 + 01/30 10:30:00,15.045045045045045,15.045045045045045,15.205671359698935 + 01/30 10:40:00,14.86006006006006,14.86006006006006,15.171446324450827 + 01/30 10:50:00,14.675075075075075,14.675075075075075,15.137640285651884 + 01/30 11:00:00,14.49009009009009,14.49009009009009,15.104100551844489 + 01/30 11:10:00,14.418618618618618,14.418618618618618,15.071161588245529 + 01/30 11:20:00,14.347147147147148,14.347147147147148,15.033845203805333 + 01/30 11:30:00,14.275675675675675,14.275675675675675,14.997178905730417 + 01/30 11:40:00,14.204204204204205,14.204204204204205,14.964664061056669 + 01/30 11:50:00,14.132732732732734,14.132732732732734,14.931537926511844 + 01/30 12:00:00,14.061261261261262,14.061261261261262,14.904418747149773 + 01/30 12:10:00,14.036036036036036,14.036036036036036,14.877476009339354 + 01/30 12:20:00,14.01081081081081,14.01081081081081,14.867524903177428 + 01/30 12:30:00,13.985585585585586,13.985585585585586,14.8479278426672 + 01/30 12:40:00,13.960360360360362,13.960360360360362,14.831677274526469 + 01/30 12:50:00,13.935135135135136,13.935135135135136,14.81791568077347 + 01/30 13:00:00,13.90990990990991,13.90990990990991,14.803585024659247 + 01/30 13:10:00,13.90990990990991,13.90990990990991,14.793572984554319 + 01/30 13:20:00,13.90990990990991,13.90990990990991,14.772586406421248 + 01/30 13:30:00,13.90990990990991,13.90990990990991,14.7632926340725 + 01/30 13:40:00,13.90990990990991,13.90990990990991,14.753075974115643 + 01/30 13:50:00,13.90990990990991,13.90990990990991,14.743197946968138 + 01/30 14:00:00,13.90990990990991,13.90990990990991,14.731240612242674 + 01/30 14:10:00,13.90990990990991,13.90990990990991,14.719285514720128 + 01/30 14:20:00,13.90990990990991,13.90990990990991,14.710117184771116 + 01/30 14:30:00,13.90990990990991,13.90990990990991,14.698036364650723 + 01/30 14:40:00,13.90990990990991,13.90990990990991,14.686482211106526 + 01/30 14:50:00,13.90990990990991,13.90990990990991,14.676044895061179 + 01/30 15:00:00,13.90990990990991,13.90990990990991,14.668477365453749 + 01/30 15:10:00,13.90990990990991,13.90990990990991,14.660297705859817 + 01/30 15:20:00,13.90990990990991,13.90990990990991,14.658848562893123 + 01/30 15:30:00,13.90990990990991,13.90990990990991,14.65203265906437 + 01/30 15:40:00,13.90990990990991,13.90990990990991,14.648659133798155 + 01/30 15:50:00,13.90990990990991,13.90990990990991,14.64315314198404 + 01/30 16:00:00,13.90990990990991,13.90990990990991,14.637966945115812 + 01/30 16:10:00,13.90990990990991,13.90990990990991,16.789772541123609 + 01/30 16:20:00,13.90990990990991,13.90990990990991,17.03442580295972 + 01/30 16:30:00,13.90990990990991,13.90990990990991,17.13002486803736 + 01/30 16:40:00,13.90990990990991,13.90990990990991,17.2021630400908 + 01/30 16:50:00,13.90990990990991,13.90990990990991,17.25631112336649 + 01/30 17:00:00,13.90990990990991,13.90990990990991,17.302625757211325 + 01/30 17:10:00,13.956156156156157,13.956156156156157,17.367695131455464 + 01/30 17:20:00,14.002402402402403,14.002402402402403,17.419291897470275 + 01/30 17:30:00,14.04864864864865,14.04864864864865,17.44938939327263 + 01/30 17:40:00,14.094894894894896,14.094894894894896,17.477192052304344 + 01/30 17:50:00,14.14114114114114,14.14114114114114,17.50266753866404 + 01/30 18:00:00,14.187387387387388,14.187387387387388,17.526095175564863 + 01/30 18:10:00,14.237837837837838,14.237837837837838,17.56169990625213 + 01/30 18:20:00,14.288288288288289,14.288288288288289,17.58834656505481 + 01/30 18:30:00,14.338738738738739,14.338738738738739,17.607766067497978 + 01/30 18:40:00,14.389189189189189,14.389189189189189,17.62548907171255 + 01/30 18:50:00,14.43963963963964,14.43963963963964,17.641718389270037 + 01/30 19:00:00,14.49009009009009,14.49009009009009,17.656487990593296 + 01/30 19:10:00,14.49009009009009,14.49009009009009,17.669822245985317 + 01/30 19:20:00,14.49009009009009,14.49009009009009,17.682579814949209 + 01/30 19:30:00,14.49009009009009,14.49009009009009,17.694185932576184 + 01/30 19:40:00,14.49009009009009,14.49009009009009,17.704906891117188 + 01/30 19:50:00,14.49009009009009,14.49009009009009,17.71466079810062 + 01/30 20:00:00,14.49009009009009,14.49009009009009,17.723609490295784 + 01/30 20:10:00,14.511111111111111,14.511111111111111,17.745530694730687 + 01/30 20:20:00,14.532132132132132,14.532132132132132,17.754081902624049 + 01/30 20:30:00,14.553153153153153,14.553153153153153,17.761822268945858 + 01/30 20:40:00,14.574174174174175,14.574174174174175,17.769043530953849 + 01/30 20:50:00,14.595195195195196,14.595195195195196,17.77587696699166 + 01/30 21:00:00,14.616216216216217,14.616216216216217,17.782394957248028 + 01/30 21:10:00,14.662462462462463,14.662462462462463,17.765029106394019 + 01/30 21:20:00,14.70870870870871,14.70870870870871,17.77470739055491 + 01/30 21:30:00,14.754954954954954,14.754954954954954,17.779911374324564 + 01/30 21:40:00,14.8012012012012,14.8012012012012,17.785075328472105 + 01/30 21:50:00,14.847447447447447,14.847447447447447,17.79015482056583 + 01/30 22:00:00,14.893693693693694,14.893693693693694,17.795130863609584 + 01/30 22:10:00,14.93993993993994,14.93993993993994,17.80125865904537 + 01/30 22:20:00,14.986186186186187,14.986186186186187,17.807658453311409 + 01/30 22:30:00,15.032432432432433,15.032432432432433,17.81456183369479 + 01/30 22:40:00,15.078678678678678,15.078678678678678,17.821884968881397 + 01/30 22:50:00,15.124924924924925,15.124924924924925,17.82956694578769 + 01/30 23:00:00,15.17117117117117,15.17117117117117,17.837652109866874 + 01/30 23:10:00,15.17117117117117,15.17117117117117,19.21084982701654 + 01/30 23:20:00,15.17117117117117,15.17117117117117,19.354991759595867 + 01/30 23:30:00,15.17117117117117,15.17117117117117,19.418972961103678 + 01/30 23:40:00,15.17117117117117,15.17117117117117,19.469122202701145 + 01/30 23:50:00,15.17117117117117,15.17117117117117,19.509282486785147 + 01/30 24:00:00,15.17117117117117,15.17117117117117,19.54264737780726 + 01/31 00:10:00,15.217417417417418,15.217417417417418,19.571813147061133 + 01/31 00:20:00,15.263663663663664,15.263663663663664,19.597367838257669 + 01/31 00:30:00,15.30990990990991,15.30990990990991,19.620228134414459 + 01/31 00:40:00,15.356156156156157,15.356156156156157,19.641027558157306 + 01/31 00:50:00,15.402402402402402,15.402402402402402,19.660156525062548 + 01/31 01:00:00,15.448648648648648,15.448648648648648,19.67788440513292 + 01/31 01:10:00,15.448648648648648,15.448648648648648,19.694803107635978 + 01/31 01:20:00,15.448648648648648,15.448648648648648,19.710403948058983 + 01/31 01:30:00,15.448648648648648,15.448648648648648,19.724797318798325 + 01/31 01:40:00,15.448648648648648,15.448648648648648,19.738130410510157 + 01/31 01:50:00,15.448648648648648,15.448648648648648,19.750470049912765 + 01/31 02:00:00,15.448648648648648,15.448648648648648,19.761926328432048 + 01/31 02:10:00,15.473873873873874,15.473873873873874,19.77208539979444 + 01/31 02:20:00,15.499099099099098,15.499099099099098,19.781638177973524 + 01/31 02:30:00,15.524324324324324,15.524324324324324,19.790717582202036 + 01/31 02:40:00,15.54954954954955,15.54954954954955,19.799427138263665 + 01/31 02:50:00,15.574774774774774,15.574774774774774,19.80778745806007 + 01/31 03:00:00,15.6,15.6,19.815791987840887 + 01/31 03:10:00,15.6,15.6,19.824297498476118 + 01/31 03:20:00,15.6,15.6,19.83274861262678 + 01/31 03:30:00,15.6,15.6,19.840983777389515 + 01/31 03:40:00,15.6,15.6,19.849050202062779 + 01/31 03:50:00,15.6,15.6,19.85692518732283 + 01/31 04:00:00,15.6,15.6,19.86451958253943 + 01/31 04:10:00,15.6,15.6,19.871046497750649 + 01/31 04:20:00,15.6,15.6,19.87729496044408 + 01/31 04:30:00,15.6,15.6,19.883350496448164 + 01/31 04:40:00,15.6,15.6,19.889187855641219 + 01/31 04:50:00,15.6,15.6,19.894776191455557 + 01/31 05:00:00,15.6,15.6,19.90022757506381 + 01/31 05:10:00,15.6,15.6,19.905874158937956 + 01/31 05:20:00,15.6,15.6,19.9113625567396 + 01/31 05:30:00,15.6,15.6,19.916697789467834 + 01/31 05:40:00,15.6,15.6,19.921840693102216 + 01/31 05:50:00,15.6,15.6,19.92682550538389 + 01/31 06:00:00,15.6,15.6,19.93173375036028 + 01/31 06:10:00,15.6,15.6,19.93715009765866 + 01/31 06:20:00,15.6,15.6,19.942430117464374 + 01/31 06:30:00,15.6,15.6,19.947556384649177 + 01/31 06:40:00,15.6,15.6,19.95249037342174 + 01/31 06:50:00,15.6,15.6,19.957384732526273 + 01/31 07:00:00,15.6,15.6,19.96216034716442 + 01/31 07:10:00,15.574774774774774,15.574774774774774,17.957448226766407 + 01/31 07:20:00,15.54954954954955,15.54954954954955,17.72374171778113 + 01/31 07:30:00,15.524324324324324,15.524324324324324,17.63730266591842 + 01/31 07:40:00,15.499099099099098,15.499099099099098,17.56989277907335 + 01/31 07:50:00,15.473873873873874,15.473873873873874,17.51659319974854 + 01/31 08:00:00,15.448648648648648,15.448648648648648,17.472450234449196 + 01/31 08:10:00,15.427627627627628,15.427627627627628,15.992455445290562 + 01/31 08:20:00,15.406606606606607,15.406606606606607,15.777157183706782 + 01/31 08:30:00,15.385585585585586,15.385585585585586,15.677647273622407 + 01/31 08:40:00,15.364564564564564,15.364564564564564,15.596505099244995 + 01/31 08:50:00,15.343543543543543,15.343543543543543,15.529147091026213 + 01/31 09:00:00,15.322522522522523,15.322522522522523,15.471093107882265 + 01/31 09:05:00,15.322522522522523,15.322522522522523,15.39363672264031 + 01/31 09:10:00,15.322522522522523,15.322522522522523,15.393199809171163 + 01/31 09:20:00,15.322522522522523,15.322522522522523,15.33682291514728 + 01/31 09:30:00,15.322522522522523,15.322522522522523,15.293131265584313 + 01/31 09:40:00,15.322522522522523,15.322522522522523,15.252237127168254 + 01/31 09:50:00,15.322522522522523,15.322522522522523,15.21337591779276 + 01/31 10:00:00,15.322522522522523,15.322522522522523,15.175575378481064 + 01/31 10:10:00,15.183783783783783,15.183783783783783,15.138725127597507 + 01/31 10:20:00,15.045045045045045,15.045045045045045,15.09350936739181 + 01/31 10:30:00,14.906306306306306,14.906306306306306,15.059283748810595 + 01/31 10:40:00,14.767567567567568,14.767567567567568,15.026914859095453 + 01/31 10:50:00,14.62882882882883,14.62882882882883,14.997375804854034 + 01/31 11:00:00,14.49009009009009,14.49009009009009,14.966528199537994 + 01/31 11:10:00,14.372372372372372,14.372372372372372,14.940240440305875 + 01/31 11:20:00,14.254654654654655,14.254654654654655,14.908831807610645 + 01/31 11:30:00,14.136936936936938,14.136936936936938,14.883799963895268 + 01/31 11:40:00,14.01921921921922,14.01921921921922,14.85816068408446 + 01/31 11:50:00,13.901501501501502,13.901501501501502,14.835233462966038 + 01/31 12:00:00,13.783783783783785,13.783783783783785,14.811747272604878 + 01/31 12:10:00,13.691291291291293,13.691291291291293,14.790657171870308 + 01/31 12:20:00,13.5987987987988,13.5987987987988,14.776851213686286 + 01/31 12:30:00,13.506306306306307,13.506306306306307,14.755211368164167 + 01/31 12:40:00,13.413813813813816,13.413813813813816,14.735549161629816 + 01/31 12:50:00,13.32132132132132,13.32132132132132,14.715896413045963 + 01/31 13:00:00,13.22882882882883,13.22882882882883,14.701565256204182 + 01/31 13:10:00,13.17837837837838,13.17837837837838,14.687697765401417 + 01/31 13:20:00,13.127927927927928,13.127927927927928,14.66660950601472 + 01/31 13:30:00,13.077477477477478,13.077477477477478,14.656832846200752 + 01/31 13:40:00,13.027027027027028,13.027027027027028,14.64726262802095 + 01/31 13:50:00,12.976576576576579,12.976576576576579,14.637394170472449 + 01/31 14:00:00,12.926126126126127,12.926126126126127,14.625791951993343 + 01/31 14:10:00,12.905105105105106,12.905105105105106,14.61436695059428 + 01/31 14:20:00,12.884084084084084,12.884084084084084,14.606126957854114 + 01/31 14:30:00,12.863063063063063,12.863063063063063,14.595076374150768 + 01/31 14:40:00,12.842042042042042,12.842042042042042,14.582902749406589 + 01/31 14:50:00,12.821021021021022,12.821021021021022,14.573640672966862 + 01/31 15:00:00,12.8,12.8,14.562808583170336 + 01/31 15:10:00,12.846246246246248,12.846246246246248,14.556371029194056 + 01/31 15:20:00,12.892492492492494,12.892492492492494,14.556370648003693 + 01/31 15:30:00,12.938738738738739,12.938738738738739,14.556136896347267 + 01/31 15:40:00,12.984984984984987,12.984984984984987,14.55542628367725 + 01/31 15:50:00,13.031231231231232,13.031231231231232,14.554966678964778 + 01/31 16:00:00,13.077477477477478,13.077477477477478,14.555205091846603 + 01/31 16:05:00,13.102702702702704,13.102702702702704,16.704710113093005 + 01/31 16:10:00,13.102702702702704,13.102702702702704,16.7039297754672 + 01/31 16:20:00,13.127927927927928,13.127927927927928,16.951774843354749 + 01/31 16:30:00,13.153153153153154,13.153153153153154,17.047140336176939 + 01/31 16:40:00,13.17837837837838,13.17837837837838,17.118904722545215 + 01/31 16:50:00,13.203603603603604,13.203603603603604,17.176631785729375 + 01/31 17:00:00,13.22882882882883,13.22882882882883,17.22372816464369 + 01/31 17:10:00,13.24984984984985,13.24984984984985,17.288996922575874 + 01/31 17:20:00,13.270870870870871,13.270870870870871,17.345195101804945 + 01/31 17:30:00,13.291891891891894,13.291891891891894,17.377543494162635 + 01/31 17:40:00,13.312912912912914,13.312912912912914,17.406494405301936 + 01/31 17:50:00,13.333933933933935,13.333933933933935,17.432505636249858 + 01/31 18:00:00,13.354954954954956,13.354954954954956,17.455871222411117 + 01/31 18:10:00,13.401201201201202,13.401201201201202,17.490070574735804 + 01/31 18:20:00,13.447447447447449,13.447447447447449,17.514866021495075 + 01/31 18:30:00,13.493693693693695,13.493693693693695,17.532547928964907 + 01/31 18:40:00,13.539939939939942,13.539939939939942,17.54844347168613 + 01/31 18:50:00,13.586186186186187,13.586186186186187,17.563031972220207 + 01/31 19:00:00,13.632432432432433,13.632432432432433,17.576411142853695 + 01/31 19:10:00,13.632432432432433,13.632432432432433,17.58864691235486 + 01/31 19:20:00,13.632432432432433,13.632432432432433,17.60019439802134 + 01/31 19:30:00,13.632432432432433,13.632432432432433,17.610897258968877 + 01/31 19:40:00,13.632432432432433,13.632432432432433,17.620891054817986 + 01/31 19:50:00,13.632432432432433,13.632432432432433,17.630257260614856 + 01/31 20:00:00,13.632432432432433,13.632432432432433,17.639046105374296 + 01/31 20:10:00,13.657657657657659,13.657657657657659,17.660612459686246 + 01/31 20:20:00,13.682882882882883,13.682882882882883,17.669448033841733 + 01/31 20:30:00,13.708108108108109,13.708108108108109,17.67756849885006 + 01/31 20:40:00,13.733333333333335,13.733333333333335,17.685354136770369 + 01/31 20:50:00,13.758558558558559,13.758558558558559,17.692845089481766 + 01/31 21:00:00,13.783783783783785,13.783783783783785,17.7000268242036 + 01/31 21:10:00,13.88048048048048,13.88048048048048,17.685048135495696 + 01/31 21:20:00,13.977177177177178,13.977177177177178,17.696282067290995 + 01/31 21:30:00,14.073873873873874,14.073873873873874,17.703564246870799 + 01/31 21:40:00,14.17057057057057,14.17057057057057,17.7111529945217 + 01/31 21:50:00,14.267267267267269,14.267267267267269,17.71920843805096 + 01/31 22:00:00,14.363963963963965,14.363963963963965,17.727609848768617 + 01/31 22:10:00,14.460660660660662,14.460660660660662,17.736176557019566 + 01/31 22:20:00,14.557357357357358,14.557357357357358,17.745234681672913 + 01/31 22:30:00,14.654054054054054,14.654054054054054,17.754226157523854 + 01/31 22:40:00,14.75075075075075,14.75075075075075,17.76318555865804 + 01/31 22:50:00,14.847447447447447,14.847447447447447,17.771849663652455 + 01/31 23:00:00,14.944144144144144,14.944144144144144,17.780362204585253 + 01/31 23:10:00,15.04084084084084,15.04084084084084,19.154496989272407 + 01/31 23:20:00,15.137537537537538,15.137537537537538,19.300336621285 + 01/31 23:30:00,15.234234234234235,15.234234234234235,19.365904461320949 + 01/31 23:40:00,15.330930930930931,15.330930930930931,19.417791350154553 + 01/31 23:50:00,15.427627627627628,15.427627627627628,19.459630164423986 + 01/31 24:00:00,15.524324324324324,15.524324324324324,19.494884289428016 + 02/01 00:10:00,15.6,15.6,19.52547098907955 + 02/01 00:20:00,15.6,15.6,19.551049515916949 + 02/01 00:30:00,15.6,15.6,19.573959483393496 + 02/01 00:40:00,15.6,15.6,19.59434295862131 + 02/01 00:50:00,15.6,15.6,19.61310166804872 + 02/01 01:00:00,15.6,15.6,19.63050223490342 + 02/01 01:10:00,15.6,15.6,19.646997070736896 + 02/01 01:20:00,15.6,15.6,19.66368502743309 + 02/01 01:30:00,15.6,15.6,19.67988633327147 + 02/01 01:40:00,15.6,15.6,19.695954827277313 + 02/01 01:50:00,15.6,15.6,19.71164099339241 + 02/01 02:00:00,15.6,15.6,19.727037785212688 + 02/01 02:10:00,15.6,15.6,19.742029016785677 + 02/01 02:20:00,15.6,15.6,19.75670905204497 + 02/01 02:30:00,15.6,15.6,19.77109593540201 + 02/01 02:40:00,15.6,15.6,19.785145947001955 + 02/01 02:50:00,15.6,15.6,19.79896287697297 + 02/01 03:00:00,15.6,15.6,19.812585317658266 + 02/01 03:10:00,15.6,15.6,19.82608167817763 + 02/01 03:20:00,15.6,15.6,19.83945122922688 + 02/01 03:30:00,15.6,15.6,19.85262014643714 + 02/01 03:40:00,15.6,15.6,19.865631884336158 + 02/01 03:50:00,15.6,15.6,19.878571411635023 + 02/01 04:00:00,15.6,15.6,19.89137908528573 + 02/01 04:10:00,15.6,15.6,19.900447233306467 + 02/01 04:20:00,15.6,15.6,19.909161516476 + 02/01 04:30:00,15.6,15.6,19.91735049363326 + 02/01 04:40:00,15.6,15.6,19.925209258184819 + 02/01 04:50:00,15.6,15.6,19.932666019084694 + 02/01 05:00:00,15.6,15.6,19.93975800429225 + 02/01 05:10:00,15.6,15.6,19.947706605985439 + 02/01 05:20:00,15.6,15.6,19.955275708682675 + 02/01 05:30:00,15.6,15.6,19.96262698565055 + 02/01 05:40:00,15.6,15.6,19.9697484792304 + 02/01 05:50:00,15.6,15.6,19.976639917584927 + 02/01 06:00:00,15.6,15.6,19.983308832456538 + 02/01 06:10:00,15.6,15.6,19.992266292588114 + 02/01 06:20:00,15.6,15.6,20.001314513269766 + 02/01 06:30:00,15.6,15.6,20.010360694037666 + 02/01 06:40:00,15.6,15.6,20.019425506120386 + 02/01 06:50:00,15.6,15.6,20.028489041020774 + 02/01 07:00:00,15.6,15.6,20.037444183881076 + 02/01 07:10:00,15.6,15.6,18.02386667234887 + 02/01 07:20:00,15.6,15.6,17.793270072667484 + 02/01 07:30:00,15.6,15.6,17.709919000974318 + 02/01 07:40:00,15.6,15.6,17.64574924423325 + 02/01 07:50:00,15.6,15.6,17.596011372988479 + 02/01 08:00:00,15.6,15.6,17.555727276265345 + 02/01 08:10:00,15.6,15.6,16.071555614368067 + 02/01 08:20:00,15.6,15.6,15.86051582393537 + 02/01 08:30:00,15.6,15.6,15.765820328413552 + 02/01 08:40:00,15.6,15.6,15.690023788082874 + 02/01 08:50:00,15.6,15.6,15.628594173567184 + 02/01 09:00:00,15.6,15.6,15.57705187146567 + 02/01 09:10:00,15.6,15.6,15.499447918780453 + 02/01 09:20:00,15.6,15.6,15.444993484455589 + 02/01 09:30:00,15.6,15.6,15.402812713220462 + 02/01 09:40:00,15.6,15.6,15.364047406594829 + 02/01 09:50:00,15.6,15.6,15.327784523878947 + 02/01 10:00:00,15.6,15.6,15.293281139611845 + 02/01 10:10:00,15.6,15.6,15.264986731652133 + 02/01 10:20:00,15.6,15.6,15.227476746006419 + 02/01 10:30:00,15.6,15.6,15.201906173626153 + 02/01 10:40:00,15.6,15.6,15.17949461026391 + 02/01 10:50:00,15.6,15.6,15.158289191141609 + 02/01 11:00:00,15.6,15.6,15.137501731828906 + 02/01 11:10:00,15.6,15.6,15.120503375229305 + 02/01 11:20:00,15.6,15.6,15.098864017676837 + 02/01 11:30:00,15.6,15.6,15.084821313708766 + 02/01 11:40:00,15.6,15.6,15.068811868040843 + 02/01 11:50:00,15.6,15.6,15.05583327319992 + 02/01 12:00:00,15.6,15.6,15.039907809919825 + 02/01 12:10:00,15.6,15.6,15.02815562288698 + 02/01 12:20:00,15.6,15.6,15.022534370947906 + 02/01 12:30:00,15.6,15.6,15.010019049141663 + 02/01 12:40:00,15.6,15.6,14.995679285540675 + 02/01 12:50:00,15.6,15.6,14.981946203430314 + 02/01 13:00:00,15.6,15.6,14.969936828868154 + 02/01 13:10:00,15.6,15.6,14.952865075393705 + 02/01 13:20:00,15.6,15.6,14.929733851272872 + 02/01 13:30:00,15.6,15.6,14.913867208221016 + 02/01 13:40:00,15.6,15.6,14.899929201114827 + 02/01 13:50:00,15.6,15.6,14.883175309648872 + 02/01 14:00:00,15.6,15.6,14.867482467416684 + 02/01 14:10:00,15.6,15.6,14.850072636202804 + 02/01 14:20:00,15.6,15.6,14.83929313008515 + 02/01 14:30:00,15.6,15.6,14.823456668576807 + 02/01 14:40:00,15.6,15.6,14.809955182168413 + 02/01 14:50:00,15.6,15.6,14.797951129319486 + 02/01 15:00:00,15.6,15.6,14.78828452718094 + 02/01 15:10:00,15.6,15.6,14.781584828559293 + 02/01 15:20:00,15.6,15.6,14.776491628885245 + 02/01 15:30:00,15.6,15.6,14.771380645031682 + 02/01 15:40:00,15.6,15.6,14.7635378804407 + 02/01 15:50:00,15.6,15.6,14.759073650390553 + 02/01 16:00:00,15.6,15.6,14.752941024066539 + 02/01 16:10:00,15.6,15.6,16.89876144618009 + 02/01 16:20:00,15.6,15.6,17.14266273016171 + 02/01 16:30:00,15.6,15.6,17.234099587339239 + 02/01 16:40:00,15.6,15.6,17.30572839966791 + 02/01 16:50:00,15.6,15.6,17.362435842330045 + 02/01 17:00:00,15.6,15.6,17.407375149801316 + 02/01 17:10:00,15.6,15.6,17.476262540385745 + 02/01 17:20:00,15.6,15.6,17.53377559657248 + 02/01 17:30:00,15.6,15.6,17.567248550107096 + 02/01 17:40:00,15.6,15.6,17.596822115513516 + 02/01 17:50:00,15.6,15.6,17.62296160136536 + 02/01 18:00:00,15.6,15.6,17.645953296022858 + 02/01 18:10:00,15.444444444444445,15.444444444444445,17.67871706854863 + 02/01 18:20:00,15.137537537537538,15.137537537537538,17.702751347271254 + 02/01 18:30:00,14.83063063063063,14.83063063063063,17.71900401035993 + 02/01 18:40:00,14.523723723723723,14.523723723723723,17.733408210271056 + 02/01 18:50:00,14.216816816816817,14.216816816816817,17.745699627483867 + 02/01 19:00:00,13.90990990990991,13.90990990990991,17.755937665789888 + 02/01 19:10:00,13.88888888888889,13.88888888888889,17.766279670799997 + 02/01 19:20:00,13.867867867867869,13.867867867867869,17.771945281090916 + 02/01 19:30:00,13.846846846846848,13.846846846846848,17.777545080198708 + 02/01 19:40:00,13.825825825825828,13.825825825825828,17.78255588886325 + 02/01 19:50:00,13.804804804804805,13.804804804804805,17.78775189741833 + 02/01 20:00:00,13.783783783783785,13.783783783783785,17.792955744561345 + 02/01 20:10:00,14.111711711711712,14.111711711711712,17.814791506871118 + 02/01 20:20:00,14.43963963963964,14.43963963963964,17.82176639340096 + 02/01 20:30:00,14.767567567567568,14.767567567567568,17.82996844911277 + 02/01 20:40:00,15.095495495495495,15.095495495495495,17.83844469460893 + 02/01 20:50:00,15.423423423423424,15.423423423423424,17.84788049103366 + 02/01 21:00:00,15.6,15.6,17.858041524840027 + 02/01 21:10:00,15.6,15.6,17.83995242088199 + 02/01 21:20:00,15.6,15.6,17.84940825717582 + 02/01 21:30:00,15.6,15.6,17.85404792849283 + 02/01 21:40:00,15.6,15.6,17.858418327780318 + 02/01 21:50:00,15.6,15.6,17.862313983807917 + 02/01 22:00:00,15.6,15.6,17.865787822907309 + 02/01 22:10:00,15.6,15.6,17.87236959086968 + 02/01 22:20:00,15.6,15.6,17.87881370652791 + 02/01 22:30:00,15.6,15.6,17.88507090318228 + 02/01 22:40:00,15.6,15.6,17.891175948293264 + 02/01 22:50:00,15.6,15.6,17.897047034746199 + 02/01 23:00:00,15.6,15.6,17.902826266121705 + 02/01 23:10:00,15.6,15.6,19.271372033733738 + 02/01 23:20:00,15.6,15.6,19.41330328734668 + 02/01 23:30:00,15.6,15.6,19.475909956406207 + 02/01 23:40:00,15.6,15.6,19.525122895708717 + 02/01 23:50:00,15.6,15.6,19.564813932401717 + 02/01 24:00:00,15.6,15.6,19.59810065480165 + 02/02 00:10:00,15.6,15.6,19.628267120012834 + 02/02 00:20:00,15.6,15.6,19.654870010778305 + 02/02 00:30:00,15.6,15.6,19.678680934987474 + 02/02 00:40:00,15.6,15.6,19.700347709165479 + 02/02 00:50:00,15.6,15.6,19.720203852157696 + 02/02 01:00:00,15.6,15.6,19.738524204121427 + 02/02 01:10:00,15.6,15.6,19.75678517046999 + 02/02 01:20:00,15.6,15.6,19.77364288297686 + 02/02 01:30:00,15.6,15.6,19.789930968533935 + 02/02 01:40:00,15.6,15.6,19.80565611116007 + 02/02 01:50:00,15.6,15.6,19.821028026192776 + 02/02 02:00:00,15.6,15.6,19.83617169683687 + 02/02 02:10:00,15.6,15.6,19.849931998549804 + 02/02 02:20:00,15.6,15.6,19.863747379749083 + 02/02 02:30:00,15.6,15.6,19.877408350226586 + 02/02 02:40:00,15.6,15.6,19.890975698438596 + 02/02 02:50:00,15.6,15.6,19.904355708265105 + 02/02 03:00:00,15.6,15.6,19.917540722676308 + 02/02 03:10:00,15.6,15.6,19.927200784003639 + 02/02 03:20:00,15.6,15.6,19.93652187055866 + 02/02 03:30:00,15.6,15.6,19.945368141648215 + 02/02 03:40:00,15.6,15.6,19.953750603757699 + 02/02 03:50:00,15.6,15.6,19.961675742153177 + 02/02 04:00:00,15.6,15.6,19.969134776863674 + 02/02 04:10:00,15.6,15.6,19.979034294198756 + 02/02 04:20:00,15.6,15.6,19.98866785507626 + 02/02 04:30:00,15.6,15.6,19.998000710016148 + 02/02 04:40:00,15.6,15.6,20.007073318890478 + 02/02 04:50:00,15.6,15.6,20.015828494324386 + 02/02 05:00:00,15.6,15.6,20.024376521401576 + 02/02 05:10:00,15.6,15.6,20.029766693708557 + 02/02 05:20:00,15.6,15.6,20.03483402194911 + 02/02 05:30:00,15.6,15.6,20.03973641324285 + 02/02 05:40:00,15.6,15.6,20.044390635450477 + 02/02 05:50:00,15.6,15.6,20.0488646525653 + 02/02 06:00:00,15.6,15.6,20.053250680374704 + 02/02 06:10:00,15.6,15.6,20.059484808563306 + 02/02 06:20:00,15.6,15.6,20.066000869746604 + 02/02 06:30:00,15.6,15.6,20.072917198138243 + 02/02 06:40:00,15.6,15.6,20.08014614746738 + 02/02 06:50:00,15.6,15.6,20.087798250049809 + 02/02 07:00:00,15.6,15.6,20.095725452570158 + 02/02 07:10:00,15.6,15.6,18.091116008601064 + 02/02 07:20:00,15.6,15.6,17.8631712665849 + 02/02 07:30:00,15.6,15.6,17.781886408784048 + 02/02 07:40:00,15.6,15.6,17.719183636741258 + 02/02 07:50:00,15.6,15.6,17.66991789704482 + 02/02 08:00:00,15.6,15.6,17.629198332197129 + 02/02 08:10:00,15.6,15.6,16.143226099655338 + 02/02 08:20:00,15.6,15.6,15.926346790313643 + 02/02 08:30:00,15.6,15.6,15.824064881686312 + 02/02 08:40:00,15.6,15.6,15.739071585815737 + 02/02 08:50:00,15.6,15.6,15.667450955463002 + 02/02 09:00:00,15.6,15.6,15.604934507685624 + 02/02 09:10:00,15.6,15.6,15.52067621648079 + 02/02 09:20:00,15.6,15.6,15.459536413807939 + 02/02 09:30:00,15.6,15.6,15.410253189475253 + 02/02 09:40:00,15.6,15.6,15.364426411654965 + 02/02 09:50:00,15.6,15.6,15.321526793479574 + 02/02 10:00:00,15.6,15.6,15.281213396214842 + 02/02 10:10:00,15.6,15.6,15.242142667187262 + 02/02 10:20:00,15.6,15.6,15.194114287483926 + 02/02 10:30:00,15.6,15.6,15.158162205824166 + 02/02 10:40:00,15.6,15.6,15.125531191086309 + 02/02 10:50:00,15.6,15.6,15.092316026486126 + 02/02 11:00:00,15.6,15.6,15.060089696321282 + 02/02 11:10:00,15.6,15.6,15.033245369889878 + 02/02 11:20:00,15.6,15.6,15.00315604915894 + 02/02 11:30:00,15.6,15.6,14.979319929400362 + 02/02 11:40:00,15.6,15.6,14.955479131159434 + 02/02 11:50:00,15.6,15.6,14.934740460950705 + 02/02 12:00:00,15.6,15.6,14.913950846850842 + 02/02 12:10:00,15.6,15.6,14.895239419483439 + 02/02 12:20:00,15.6,15.6,14.885382827706513 + 02/02 12:30:00,15.6,15.6,14.86927078775586 + 02/02 12:40:00,15.6,15.6,14.851508983783918 + 02/02 12:50:00,15.6,15.6,14.836626461114332 + 02/02 13:00:00,15.6,15.6,14.822716806756427 + 02/02 13:10:00,15.6,15.6,14.807283985747933 + 02/02 13:20:00,15.6,15.6,14.785675914493995 + 02/02 13:30:00,15.6,15.6,14.77108388944746 + 02/02 13:40:00,15.6,15.6,14.760373190181646 + 02/02 13:50:00,15.6,15.6,14.746902197218687 + 02/02 14:00:00,15.6,15.6,14.737060372608037 + 02/02 14:10:00,15.6,15.6,14.72744971393159 + 02/02 14:20:00,15.6,15.6,14.72548506152098 + 02/02 14:30:00,15.6,15.6,14.71816779165055 + 02/02 14:40:00,15.6,15.6,14.714408159360027 + 02/02 14:50:00,15.6,15.6,14.710025770735858 + 02/02 15:00:00,15.6,15.6,14.708144169413068 + 02/02 15:10:00,15.6,15.6,14.703341419809476 + 02/02 15:20:00,15.6,15.6,14.702957237867013 + 02/02 15:30:00,15.6,15.6,14.700689704520287 + 02/02 15:40:00,15.6,15.6,14.696940471204238 + 02/02 15:50:00,15.6,15.6,14.696245985960538 + 02/02 16:00:00,15.6,15.6,14.693261755563868 + 02/02 16:10:00,15.6,15.6,16.862429041824954 + 02/02 16:20:00,15.6,15.6,17.115053847215348 + 02/02 16:30:00,15.6,15.6,17.215618462732207 + 02/02 16:40:00,15.6,15.6,17.29566538626832 + 02/02 16:50:00,15.6,15.6,17.359916295778008 + 02/02 17:00:00,15.6,15.6,17.411770353432368 + 02/02 17:10:00,15.6,15.6,17.484938596393194 + 02/02 17:20:00,15.6,15.6,17.546849703593126 + 02/02 17:30:00,15.6,15.6,17.584717435978058 + 02/02 17:40:00,15.6,15.6,17.619100362066246 + 02/02 17:50:00,15.6,15.6,17.650792798670595 + 02/02 18:00:00,15.6,15.6,17.680114371233079 + 02/02 18:10:00,15.6,15.6,17.714971867132858 + 02/02 18:20:00,15.6,15.6,17.741850644306039 + 02/02 18:30:00,15.6,15.6,17.761557865157948 + 02/02 18:40:00,15.6,15.6,17.77920763923537 + 02/02 18:50:00,15.6,15.6,17.795026762766743 + 02/02 19:00:00,15.6,15.6,17.80926064617473 + 02/02 19:10:00,15.6,15.6,17.82787623068743 + 02/02 19:20:00,15.6,15.6,17.84535065506827 + 02/02 19:30:00,15.6,15.6,17.861791721661889 + 02/02 19:40:00,15.6,15.6,17.87731595646213 + 02/02 19:50:00,15.6,15.6,17.892072918069628 + 02/02 20:00:00,15.6,15.6,17.906130299999448 + 02/02 20:10:00,15.6,15.6,17.92870470600566 + 02/02 20:20:00,15.6,15.6,17.93821365242384 + 02/02 20:30:00,15.6,15.6,17.946786860942259 + 02/02 20:40:00,15.6,15.6,17.954835076988649 + 02/02 20:50:00,15.6,15.6,17.96243502976118 + 02/02 21:00:00,15.6,15.6,17.969579370892576 + 02/02 21:10:00,15.6,15.6,17.95711805252292 + 02/02 21:20:00,15.6,15.6,17.971479413588708 + 02/02 21:30:00,15.6,15.6,17.981071009179418 + 02/02 21:40:00,15.6,15.6,17.99032405949309 + 02/02 21:50:00,15.6,15.6,17.999302702273096 + 02/02 22:00:00,15.6,15.6,18.008021262148725 + 02/02 22:10:00,15.6,15.6,18.015701745882106 + 02/02 22:20:00,15.6,15.6,18.02308167433999 + 02/02 22:30:00,15.6,15.6,18.030216260691227 + 02/02 22:40:00,15.6,15.6,18.037131409428829 + 02/02 22:50:00,15.6,15.6,18.043814016299529 + 02/02 23:00:00,15.6,15.6,18.05025548484071 + 02/02 23:10:00,15.6,15.6,19.430563597732328 + 02/02 23:20:00,15.6,15.6,19.57429856570058 + 02/02 23:30:00,15.6,15.6,19.639525346572034 + 02/02 23:40:00,15.6,15.6,19.69172873736494 + 02/02 23:50:00,15.6,15.6,19.734422484363586 + 02/02 24:00:00,15.6,15.6,19.770808674937407 + 02/03 00:10:00,15.6,15.6,19.8067219409545 + 02/03 00:20:00,15.6,15.6,19.839290596877555 + 02/03 00:30:00,15.6,15.6,19.86915534265634 + 02/03 00:40:00,15.6,15.6,19.896843505751755 + 02/03 00:50:00,15.6,15.6,19.922739421373657 + 02/03 01:00:00,15.6,15.6,19.94705666052512 + 02/03 01:10:00,15.6,15.6,19.95979281994336 + 02/03 01:20:00,15.6,15.6,19.971495973170929 + 02/03 01:30:00,15.6,15.6,19.98233470214666 + 02/03 01:40:00,15.6,15.6,19.992429398155946 + 02/03 01:50:00,15.6,15.6,20.001781392318553 + 02/03 02:00:00,15.6,15.6,20.01061557470956 + 02/03 02:10:00,15.6,15.6,20.02570571151496 + 02/03 02:20:00,15.6,15.6,20.040273526842279 + 02/03 02:30:00,15.6,15.6,20.05432708804458 + 02/03 02:40:00,15.6,15.6,20.06784114483088 + 02/03 02:50:00,15.6,15.6,20.08093377657995 + 02/03 03:00:00,15.6,15.6,20.093663166035968 + 02/03 03:10:00,15.6,15.6,20.10299495465575 + 02/03 03:20:00,15.6,15.6,20.11200089177149 + 02/03 03:30:00,15.6,15.6,20.120669597387346 + 02/03 03:40:00,15.6,15.6,20.1290350358221 + 02/03 03:50:00,15.6,15.6,20.137207869641725 + 02/03 04:00:00,15.6,15.6,20.145134531907627 + 02/03 04:10:00,15.6,15.6,20.153455841351215 + 02/03 04:20:00,15.6,15.6,20.161540878687018 + 02/03 04:30:00,15.6,15.6,20.169322880263289 + 02/03 04:40:00,15.6,15.6,20.176978623490247 + 02/03 04:50:00,15.6,15.6,20.184423987259775 + 02/03 05:00:00,15.6,15.6,20.191668382072927 + 02/03 05:10:00,15.6,15.6,20.200563199107479 + 02/03 05:20:00,15.6,15.6,20.20914910042168 + 02/03 05:30:00,15.6,15.6,20.217611079452163 + 02/03 05:40:00,15.6,15.6,20.225880451327567 + 02/03 05:50:00,15.6,15.6,20.23396074764068 + 02/03 06:00:00,15.6,15.6,20.24186249728057 + 02/03 06:10:00,15.6,15.6,20.246860729772388 + 02/03 06:20:00,15.6,15.6,20.251776662578075 + 02/03 06:30:00,15.6,15.6,20.256625121630248 + 02/03 06:40:00,15.6,15.6,20.261381961586296 + 02/03 06:50:00,15.6,15.6,20.266046408242926 + 02/03 07:00:00,15.6,15.6,20.270572396931354 + 02/03 07:10:00,15.6,15.6,18.265026652114864 + 02/03 07:20:00,15.6,15.6,18.038214205298197 + 02/03 07:30:00,15.6,15.6,17.95653953345581 + 02/03 07:40:00,15.6,15.6,17.89313965201353 + 02/03 07:50:00,15.6,15.6,17.843275271904877 + 02/03 08:00:00,15.6,15.6,17.802024755401108 + 02/03 08:05:00,15.6,15.6,16.31653069096781 + 02/03 08:10:00,15.6,15.6,16.31643300615117 + 02/03 08:15:00,15.6,15.6,16.10074391569473 + 02/03 08:20:00,15.6,15.6,16.100836692324095 + 02/03 08:30:00,15.6,15.6,15.9977489260541 + 02/03 08:40:00,15.6,15.6,15.911906876647166 + 02/03 08:50:00,15.6,15.6,15.83870303337188 + 02/03 09:00:00,15.6,15.6,15.774222538892556 + 02/03 09:10:00,15.6,15.6,15.686422268212816 + 02/03 09:20:00,15.6,15.6,15.62137460089736 + 02/03 09:30:00,15.6,15.6,15.568158115579936 + 02/03 09:40:00,15.6,15.6,15.518358103384159 + 02/03 09:50:00,15.6,15.6,15.471502255723529 + 02/03 10:00:00,15.6,15.6,15.427243067654075 + 02/03 10:10:00,15.6,15.6,15.384742847775146 + 02/03 10:20:00,15.6,15.6,15.333585423621063 + 02/03 10:30:00,15.6,15.6,15.294905131918057 + 02/03 10:40:00,15.6,15.6,15.258041555441816 + 02/03 10:50:00,15.6,15.6,15.224405300790047 + 02/03 11:00:00,15.6,15.6,15.191577636283047 + 02/03 11:10:00,15.6,15.6,15.162687544021292 + 02/03 11:20:00,15.6,15.6,15.13368922185594 + 02/03 11:30:00,15.6,15.6,15.107460171299279 + 02/03 11:40:00,15.6,15.6,15.084858908619891 + 02/03 11:50:00,15.6,15.6,15.061336142581915 + 02/03 12:00:00,15.6,15.6,15.041302677755852 + 02/03 12:10:00,15.6,15.6,15.019277502575119 + 02/03 12:20:00,15.6,15.6,15.010569908977124 + 02/03 12:30:00,15.6,15.6,14.990308426157935 + 02/03 12:40:00,15.6,15.6,14.973763636193512 + 02/03 12:50:00,15.6,15.6,14.957277177795003 + 02/03 13:00:00,15.6,15.6,14.941230648752935 + 02/03 13:10:00,15.6,15.6,14.92591951141583 + 02/03 13:20:00,15.6,15.6,14.899125989943578 + 02/03 13:30:00,15.6,15.6,14.885382816241306 + 02/03 13:40:00,15.6,15.6,14.869795039758762 + 02/03 13:50:00,15.6,15.6,14.857564973439445 + 02/03 14:00:00,15.6,15.6,14.843474945395809 + 02/03 14:10:00,15.6,15.6,14.833261689333792 + 02/03 14:20:00,15.6,15.6,14.824547819223266 + 02/03 14:30:00,15.6,15.6,14.815371631820927 + 02/03 14:40:00,15.6,15.6,14.805037342749447 + 02/03 14:50:00,15.6,15.6,14.79668077304546 + 02/03 15:00:00,15.6,15.6,14.78842293068079 + 02/03 15:10:00,15.6,15.6,14.780563428984485 + 02/03 15:20:00,15.6,15.6,14.777630298329882 + 02/03 15:30:00,15.6,15.6,14.7704037138504 + 02/03 15:40:00,15.6,15.6,14.76624584361729 + 02/03 15:50:00,15.6,15.6,14.759918787401603 + 02/03 16:00:00,15.6,15.6,14.757032722695758 + 02/03 16:10:00,15.6,15.6,16.921962982110018 + 02/03 16:20:00,15.6,15.6,17.16922587588906 + 02/03 16:30:00,15.6,15.6,17.267449273662768 + 02/03 16:40:00,15.6,15.6,17.341884518850656 + 02/03 16:50:00,15.6,15.6,17.400508686895209 + 02/03 17:00:00,15.6,15.6,17.45045765025431 + 02/03 17:10:00,15.6,15.6,17.521528046116864 + 02/03 17:20:00,15.6,15.6,17.58041703203434 + 02/03 17:30:00,15.6,15.6,17.616909760423945 + 02/03 17:40:00,15.6,15.6,17.650361065670439 + 02/03 17:50:00,15.6,15.6,17.68150739939125 + 02/03 18:00:00,15.6,15.6,17.71069203090218 + 02/03 18:10:00,15.6,15.6,17.74983634988021 + 02/03 18:20:00,15.6,15.6,17.780078591056545 + 02/03 18:30:00,15.6,15.6,17.80262065220291 + 02/03 18:40:00,15.6,15.6,17.822936614716097 + 02/03 18:50:00,15.6,15.6,17.841227529723946 + 02/03 19:00:00,15.6,15.6,17.85774448535313 + 02/03 19:10:00,15.6,15.6,17.873038812345265 + 02/03 19:20:00,15.6,15.6,17.887178137649764 + 02/03 19:30:00,15.6,15.6,17.900296676155514 + 02/03 19:40:00,15.6,15.6,17.912587882402265 + 02/03 19:50:00,15.6,15.6,17.9241135967151 + 02/03 20:00:00,15.6,15.6,17.934999621413597 + 02/03 20:10:00,15.6,15.6,17.958387767506435 + 02/03 20:20:00,15.6,15.6,17.96867075460646 + 02/03 20:30:00,15.6,15.6,17.97806218264549 + 02/03 20:40:00,15.6,15.6,17.98689297022418 + 02/03 20:50:00,15.6,15.6,17.995259243008019 + 02/03 21:00:00,15.6,15.6,18.00325596816213 + 02/03 21:10:00,15.6,15.6,17.990730031751338 + 02/03 21:20:00,15.6,15.6,18.00493091238178 + 02/03 21:30:00,15.6,15.6,18.014365254694764 + 02/03 21:40:00,15.6,15.6,18.023434999099228 + 02/03 21:50:00,15.6,15.6,18.032187050207125 + 02/03 22:00:00,15.6,15.6,18.040642943543859 + 02/03 22:10:00,15.6,15.6,18.047566093847018 + 02/03 22:20:00,15.6,15.6,18.054281791567307 + 02/03 22:30:00,15.6,15.6,18.06084751952462 + 02/03 22:40:00,15.6,15.6,18.06723949898138 + 02/03 22:50:00,15.6,15.6,18.073419634253257 + 02/03 23:00:00,15.6,15.6,18.07955170048156 + 02/03 23:10:00,15.6,15.6,19.458568072740737 + 02/03 23:20:00,15.6,15.6,19.600870641809775 + 02/03 23:30:00,15.6,15.6,19.664824908783979 + 02/03 23:40:00,15.6,15.6,19.715682055400614 + 02/03 23:50:00,15.6,15.6,19.75719441873817 + 02/03 24:00:00,15.6,15.6,19.79236411789374 + 02/04 00:10:00,15.6,15.6,19.82492728287557 + 02/04 00:20:00,15.6,15.6,19.85398781926254 + 02/04 00:30:00,15.6,15.6,19.880181764371714 + 02/04 00:40:00,15.6,15.6,19.90416000691351 + 02/04 00:50:00,15.6,15.6,19.926280567836149 + 02/04 01:00:00,15.6,15.6,19.946817776027524 + 02/04 01:10:00,15.6,15.6,19.963206921800795 + 02/04 01:20:00,15.6,15.6,19.978427359210444 + 02/04 01:30:00,15.6,15.6,19.99270414938654 + 02/04 01:40:00,15.6,15.6,20.00620245698476 + 02/04 01:50:00,15.6,15.6,20.0189697340891 + 02/04 02:00:00,15.6,15.6,20.031084957596 + 02/04 02:10:00,15.6,15.6,20.043558935152526 + 02/04 02:20:00,15.6,15.6,20.055561980999696 + 02/04 02:30:00,15.6,15.6,20.067260916656918 + 02/04 02:40:00,15.6,15.6,20.078627703146937 + 02/04 02:50:00,15.6,15.6,20.089685074825249 + 02/04 03:00:00,15.6,15.6,20.100442453527245 + 02/04 03:10:00,15.6,15.6,20.110430985858135 + 02/04 03:20:00,15.6,15.6,20.1200744036309 + 02/04 03:30:00,15.6,15.6,20.12930143955048 + 02/04 03:40:00,15.6,15.6,20.13811554588734 + 02/04 03:50:00,15.6,15.6,20.146536840518026 + 02/04 04:00:00,15.6,15.6,20.154503704907549 + 02/04 04:10:00,15.6,15.6,20.161622891329068 + 02/04 04:20:00,15.6,15.6,20.168496834426685 + 02/04 04:30:00,15.6,15.6,20.17516234083956 + 02/04 04:40:00,15.6,15.6,20.181633437397584 + 02/04 04:50:00,15.6,15.6,20.187859353858288 + 02/04 05:00:00,15.6,15.6,20.19394004579078 + 02/04 05:10:00,15.6,15.6,20.20070252832232 + 02/04 05:20:00,15.6,15.6,20.207309325954375 + 02/04 05:30:00,15.6,15.6,20.21373778657172 + 02/04 05:40:00,15.6,15.6,20.21995814416774 + 02/04 05:50:00,15.6,15.6,20.225991418258066 + 02/04 06:00:00,15.6,15.6,20.231929022549634 + 02/04 06:10:00,15.6,15.6,20.237463200524475 + 02/04 06:20:00,15.6,15.6,20.242686753160883 + 02/04 06:30:00,15.6,15.6,20.247551758445665 + 02/04 06:40:00,15.6,15.6,20.252007530140177 + 02/04 06:50:00,15.6,15.6,20.256232396899724 + 02/04 07:00:00,15.6,15.6,20.260160430033588 + 02/04 07:10:00,15.6,15.6,19.600426978432176 + 02/04 07:20:00,15.6,15.6,19.536012531392804 + 02/04 07:30:00,15.6,15.6,19.511523007525054 + 02/04 07:40:00,15.6,15.6,19.492740423559299 + 02/04 07:50:00,15.6,15.6,19.477995650975957 + 02/04 08:00:00,15.6,15.6,19.465688271865529 + 02/04 08:10:00,15.6,15.6,18.374443986583044 + 02/04 08:20:00,15.6,15.6,18.227951215976036 + 02/04 08:30:00,15.6,15.6,18.16384804290356 + 02/04 08:40:00,15.6,15.6,18.11050678557129 + 02/04 08:50:00,15.6,15.6,18.065339827127688 + 02/04 09:00:00,15.6,15.6,18.025736797206993 + 02/04 09:10:00,15.6,15.6,17.988863656987406 + 02/04 09:20:00,15.6,15.6,17.945877974565528 + 02/04 09:30:00,15.6,15.6,17.91373452432665 + 02/04 09:40:00,15.6,15.6,17.88317048113833 + 02/04 09:50:00,15.6,15.6,17.853743466840407 + 02/04 10:00:00,15.6,15.6,17.82525007415699 + 02/04 10:10:00,15.6,15.6,17.797835862592949 + 02/04 10:20:00,15.6,15.6,17.76256439178396 + 02/04 10:30:00,15.6,15.6,17.73724935487943 + 02/04 10:40:00,15.6,15.6,17.712875363959517 + 02/04 10:50:00,15.6,15.6,17.68912420591427 + 02/04 11:00:00,15.6,15.6,17.66582411415995 + 02/04 11:10:00,15.6,15.6,17.64574326998269 + 02/04 11:20:00,15.6,15.6,17.62631216343185 + 02/04 11:30:00,15.6,15.6,17.607564134224928 + 02/04 11:40:00,15.6,15.6,17.589619946969834 + 02/04 11:50:00,15.6,15.6,17.572650775947606 + 02/04 12:00:00,15.6,15.6,17.55665576494818 + 02/04 12:10:00,15.6,15.6,17.53902134219122 + 02/04 12:20:00,15.6,15.6,17.521985696902016 + 02/04 12:30:00,15.6,15.6,17.505390031755668 + 02/04 12:40:00,15.6,15.6,17.489273523156343 + 02/04 12:50:00,15.6,15.6,17.47375436750805 + 02/04 13:00:00,15.6,15.6,17.458877915005915 + 02/04 13:10:00,15.6,15.6,17.444612883364706 + 02/04 13:20:00,15.6,15.6,17.431051703850704 + 02/04 13:30:00,15.6,15.6,17.41825512210026 + 02/04 13:40:00,15.6,15.6,17.406253622111849 + 02/04 13:50:00,15.6,15.6,17.395862252090088 + 02/04 14:00:00,15.6,15.6,17.386332295271904 + 02/04 14:10:00,15.6,15.6,17.38375771267066 + 02/04 14:20:00,15.6,15.6,17.381514734215459 + 02/04 14:30:00,15.6,15.6,17.378895259464679 + 02/04 14:40:00,15.6,15.6,17.379085609671905 + 02/04 14:50:00,15.6,15.6,17.380304320136717 + 02/04 15:00:00,15.6,15.6,17.38219667124782 + 02/04 15:10:00,15.6,15.6,17.375284228605876 + 02/04 15:20:00,15.6,15.6,17.370244779982355 + 02/04 15:30:00,15.6,15.6,17.366126536986209 + 02/04 15:40:00,15.6,15.6,17.362343285810657 + 02/04 15:50:00,15.6,15.6,17.357961751491354 + 02/04 16:00:00,15.6,15.6,17.3531940968198 + 02/04 16:10:00,15.6,15.6,17.35231897072192 + 02/04 16:20:00,15.6,15.6,17.3521421172142 + 02/04 16:30:00,15.6,15.6,17.35259421586507 + 02/04 16:40:00,15.6,15.6,17.35119654787922 + 02/04 16:50:00,15.6,15.6,17.352701399899517 + 02/04 17:00:00,15.6,15.6,17.35544603598876 + 02/04 17:10:00,15.6,15.6,17.374077672468535 + 02/04 17:20:00,15.6,15.6,17.389227516043193 + 02/04 17:30:00,15.6,15.6,17.394009094872179 + 02/04 17:40:00,15.6,15.6,17.401203345484114 + 02/04 17:50:00,15.6,15.6,17.409170142998567 + 02/04 18:00:00,15.6,15.6,17.41743646986486 + 02/04 18:05:00,15.6,15.6,19.19923049173359 + 02/04 18:10:00,15.6,15.6,19.198695949501308 + 02/04 18:15:00,15.6,15.6,19.410461220747153 + 02/04 18:20:00,15.6,15.6,19.41040947468165 + 02/04 18:30:00,15.6,15.6,19.494502030660489 + 02/04 18:40:00,15.6,15.6,19.55984168016909 + 02/04 18:50:00,15.6,15.6,19.6112878958181 + 02/04 19:00:00,15.6,15.6,19.65344005450688 + 02/04 19:10:00,15.6,15.6,19.70766516639367 + 02/04 19:20:00,15.6,15.6,19.744460907494884 + 02/04 19:30:00,15.6,15.6,19.77725236798086 + 02/04 19:40:00,15.6,15.6,19.806964099671739 + 02/04 19:50:00,15.6,15.6,19.834169582939447 + 02/04 20:00:00,15.6,15.6,19.85922774615487 + 02/04 20:10:00,15.6,15.6,19.879550104346799 + 02/04 20:20:00,15.6,15.6,19.898394828534547 + 02/04 20:30:00,15.6,15.6,19.915995565555364 + 02/04 20:40:00,15.6,15.6,19.932523376799005 + 02/04 20:50:00,15.6,15.6,19.94805623376996 + 02/04 21:00:00,15.6,15.6,19.96281783587734 + 02/04 21:10:00,15.6,15.6,19.95317627848575 + 02/04 21:20:00,15.6,15.6,19.965508071672074 + 02/04 21:30:00,15.6,15.6,19.977178158350914 + 02/04 21:40:00,15.6,15.6,19.98819566231297 + 02/04 21:50:00,15.6,15.6,19.998653666211284 + 02/04 22:00:00,15.6,15.6,20.008675594862276 + 02/04 22:10:00,15.6,15.6,20.018928502260136 + 02/04 22:20:00,15.6,15.6,20.028735109127749 + 02/04 22:30:00,15.6,15.6,20.038111527031725 + 02/04 22:40:00,15.6,15.6,20.04704430440782 + 02/04 22:50:00,15.6,15.6,20.05570949408711 + 02/04 23:00:00,15.6,15.6,20.06401964004282 + 02/04 23:10:00,15.6,15.6,20.072058505772394 + 02/04 23:20:00,15.6,15.6,20.079864922041069 + 02/04 23:30:00,15.6,15.6,20.08733300002996 + 02/04 23:40:00,15.6,15.6,20.094685843293598 + 02/04 23:50:00,15.6,15.6,20.101834168090855 + 02/04 24:00:00,15.6,15.6,20.10878336256227 + 02/05 00:10:00,15.6,15.6,20.11556404373655 + 02/05 00:20:00,15.6,15.6,20.122105660337309 + 02/05 00:30:00,15.6,15.6,20.128554756725074 + 02/05 00:40:00,15.6,15.6,20.1348835727779 + 02/05 00:50:00,15.6,15.6,20.141068201831297 + 02/05 01:00:00,15.6,15.6,20.14710828219551 + 02/05 01:10:00,15.6,15.6,20.155072334227314 + 02/05 01:20:00,15.6,15.6,20.162963806153383 + 02/05 01:30:00,15.6,15.6,20.170866463497025 + 02/05 01:40:00,15.6,15.6,20.178730808906683 + 02/05 01:50:00,15.6,15.6,20.186566038330168 + 02/05 02:00:00,15.6,15.6,20.194343740000375 + 02/05 02:10:00,15.6,15.6,20.20039605328877 + 02/05 02:20:00,15.6,15.6,20.206379304188819 + 02/05 02:30:00,15.6,15.6,20.21222465604459 + 02/05 02:40:00,15.6,15.6,20.21792614188606 + 02/05 02:50:00,15.6,15.6,20.22347005568992 + 02/05 03:00:00,15.6,15.6,20.228776294244314 + 02/05 03:10:00,15.6,15.6,20.233534838995387 + 02/05 03:20:00,15.6,15.6,20.23822931308133 + 02/05 03:30:00,15.6,15.6,20.242879802226086 + 02/05 03:40:00,15.6,15.6,20.2474968865705 + 02/05 03:50:00,15.6,15.6,20.25199264263428 + 02/05 04:00:00,15.6,15.6,20.256520869544607 + 02/05 04:10:00,15.6,15.6,20.262307900087295 + 02/05 04:20:00,15.6,15.6,20.268008955003869 + 02/05 04:30:00,15.6,15.6,20.27358343828115 + 02/05 04:40:00,15.6,15.6,20.278973279356806 + 02/05 04:50:00,15.6,15.6,20.284264248496613 + 02/05 05:00:00,15.6,15.6,20.289487778581618 + 02/05 05:10:00,15.6,15.6,20.293747600772045 + 02/05 05:20:00,15.6,15.6,20.297863342835954 + 02/05 05:30:00,15.6,15.6,20.301799503739564 + 02/05 05:40:00,15.6,15.6,20.305571052663603 + 02/05 05:50:00,15.6,15.6,20.309283604048099 + 02/05 06:00:00,15.6,15.6,20.312880187449307 + 02/05 06:10:00,15.6,15.6,20.314324826389794 + 02/05 06:20:00,15.6,15.6,20.31571830902532 + 02/05 06:30:00,15.6,15.6,20.31703109811839 + 02/05 06:40:00,15.6,15.6,20.31843666870923 + 02/05 06:50:00,15.6,15.6,20.3198428384226 + 02/05 07:00:00,15.6,15.6,20.321246119401324 + 02/05 07:10:00,15.6,15.6,20.348991592874805 + 02/05 07:20:00,15.6,15.6,20.353825955045339 + 02/05 07:30:00,15.6,15.6,20.35859409370107 + 02/05 07:40:00,15.6,15.6,20.362923476586038 + 02/05 07:50:00,15.6,15.6,20.366338336540524 + 02/05 08:00:00,15.6,15.6,20.36885841281023 + 02/05 08:10:00,15.6,15.6,18.961843712470356 + 02/05 08:20:00,15.6,15.6,18.794744655200519 + 02/05 08:30:00,15.6,15.6,18.724637693209588 + 02/05 08:40:00,15.6,15.6,18.666215086595839 + 02/05 08:50:00,15.6,15.6,18.61648554996061 + 02/05 09:00:00,15.6,15.6,18.572403563620634 + 02/05 09:10:00,15.6,15.6,18.533533318008997 + 02/05 09:20:00,15.6,15.6,18.48831075942291 + 02/05 09:30:00,15.6,15.6,18.45411766133542 + 02/05 09:40:00,15.6,15.6,18.421766706042619 + 02/05 09:50:00,15.6,15.6,18.391062082046245 + 02/05 10:00:00,15.6,15.6,18.361847686249449 + 02/05 10:10:00,15.6,15.6,18.336705554476447 + 02/05 10:20:00,15.6,15.6,18.304178890342663 + 02/05 10:30:00,15.6,15.6,18.281811025754455 + 02/05 10:40:00,15.6,15.6,18.260869418245698 + 02/05 10:50:00,15.6,15.6,18.241170559742984 + 02/05 11:00:00,15.6,15.6,18.22257768856469 + 02/05 11:10:00,15.6,15.6,18.20332773674844 + 02/05 11:20:00,15.6,15.6,18.185055828859548 + 02/05 11:30:00,15.6,15.6,18.167549945416263 + 02/05 11:40:00,15.6,15.6,18.150704466811157 + 02/05 11:50:00,15.6,15.6,18.134704514460198 + 02/05 12:00:00,15.6,15.6,18.1194626640347 + 02/05 12:10:00,15.6,15.6,18.100932711977497 + 02/05 12:20:00,15.6,15.6,18.082937353873917 + 02/05 12:30:00,15.6,15.6,18.065413899632469 + 02/05 12:40:00,15.6,15.6,18.04836435332027 + 02/05 12:50:00,15.6,15.6,18.03180093456057 + 02/05 13:00:00,15.6,15.6,18.015954975680239 + 02/05 13:10:00,15.6,15.6,18.005786465233319 + 02/05 13:20:00,15.6,15.6,17.996387316002008 + 02/05 13:30:00,15.6,15.6,17.987900067840454 + 02/05 13:40:00,15.6,15.6,17.9808454279132 + 02/05 13:50:00,15.6,15.6,17.975828346876115 + 02/05 14:00:00,15.6,15.6,17.972856315508147 + 02/05 14:10:00,15.6,15.6,17.96948445252716 + 02/05 14:20:00,15.6,15.6,17.967631139378395 + 02/05 14:30:00,15.6,15.6,17.96683513720627 + 02/05 14:40:00,15.6,15.6,17.96663582800557 + 02/05 14:50:00,15.6,15.6,17.966408509135598 + 02/05 15:00:00,15.6,15.6,17.965845025438985 + 02/05 15:10:00,15.6,15.6,17.966765291156024 + 02/05 15:20:00,15.6,15.6,17.967746129915985 + 02/05 15:30:00,15.6,15.6,17.968744975869304 + 02/05 15:40:00,15.6,15.6,17.96999366119585 + 02/05 15:50:00,15.6,15.6,17.97199900921675 + 02/05 16:00:00,15.6,15.6,17.97431185873654 + 02/05 16:10:00,15.6,15.6,19.411720086553303 + 02/05 16:20:00,15.6,15.6,19.563683163121888 + 02/05 16:30:00,15.6,15.6,19.627754292144848 + 02/05 16:40:00,15.6,15.6,19.679136074938705 + 02/05 16:50:00,15.6,15.6,19.721326836981729 + 02/05 17:00:00,15.6,15.6,19.75701245715993 + 02/05 17:10:00,15.6,15.6,19.787478584555744 + 02/05 17:20:00,15.6,15.6,19.822553759792599 + 02/05 17:30:00,15.6,15.6,19.844920697491046 + 02/05 17:40:00,15.6,15.6,19.86677747371302 + 02/05 17:50:00,15.6,15.6,19.886804743007536 + 02/05 18:00:00,15.6,15.6,19.904954731129437 + 02/05 18:10:00,15.6,15.6,19.923447207018886 + 02/05 18:20:00,15.6,15.6,19.958179166850927 + 02/05 18:30:00,15.6,15.6,19.974408587530595 + 02/05 18:40:00,15.6,15.6,19.98941236219437 + 02/05 18:50:00,15.6,15.6,20.003309015242676 + 02/05 19:00:00,15.6,15.6,20.016362125557288 + 02/05 19:10:00,15.6,15.6,20.025941931435715 + 02/05 19:20:00,15.6,15.6,20.034771544077615 + 02/05 19:30:00,15.6,15.6,20.042801154951545 + 02/05 19:40:00,15.6,15.6,20.050148221441547 + 02/05 19:50:00,15.6,15.6,20.056997875466956 + 02/05 20:00:00,15.6,15.6,20.063392920707274 + 02/05 20:10:00,15.6,15.6,20.071780424234985 + 02/05 20:20:00,15.6,15.6,20.079759855923308 + 02/05 20:30:00,15.6,15.6,20.08728612392917 + 02/05 20:40:00,15.6,15.6,20.09443793934399 + 02/05 20:50:00,15.6,15.6,20.10131002957708 + 02/05 21:00:00,15.6,15.6,20.107875820816266 + 02/05 21:10:00,15.6,15.6,20.090612069793865 + 02/05 21:20:00,15.6,15.6,20.095857634841989 + 02/05 21:30:00,15.6,15.6,20.100909907326096 + 02/05 21:40:00,15.6,15.6,20.105814887315164 + 02/05 21:50:00,15.6,15.6,20.110657488850455 + 02/05 22:00:00,15.6,15.6,20.115430339042008 + 02/05 22:10:00,15.6,15.6,20.120357239113024 + 02/05 22:20:00,15.6,15.6,20.124973470436019 + 02/05 22:30:00,15.6,15.6,20.12944411895716 + 02/05 22:40:00,15.6,15.6,20.133670571066209 + 02/05 22:50:00,15.6,15.6,20.13766446234783 + 02/05 23:00:00,15.6,15.6,20.14144322180246 + 02/05 23:10:00,15.6,15.6,20.14629020065646 + 02/05 23:20:00,15.6,15.6,20.151104851615306 + 02/05 23:30:00,15.6,15.6,20.155916761889665 + 02/05 23:40:00,15.6,15.6,20.160707828914985 + 02/05 23:50:00,15.6,15.6,20.165486105732894 + 02/05 24:00:00,15.6,15.6,20.17019143183163 + 02/06 00:10:00,15.6,15.6,20.171106331782704 + 02/06 00:20:00,15.6,15.6,20.171845180288398 + 02/06 00:30:00,15.6,15.6,20.172524351647323 + 02/06 00:40:00,15.6,15.6,20.17316885117391 + 02/06 00:50:00,15.6,15.6,20.17373343557532 + 02/06 01:00:00,15.6,15.6,20.174209794661036 + 02/06 01:10:00,15.6,15.6,20.176449832520768 + 02/06 01:20:00,15.6,15.6,20.17869240308335 + 02/06 01:30:00,15.6,15.6,20.180930243335945 + 02/06 01:40:00,15.6,15.6,20.183163004727854 + 02/06 01:50:00,15.6,15.6,20.1853001142619 + 02/06 02:00:00,15.6,15.6,20.18752453965518 + 02/06 02:10:00,15.6,15.6,20.191145849460843 + 02/06 02:20:00,15.6,15.6,20.194668458896915 + 02/06 02:30:00,15.6,15.6,20.198080907794595 + 02/06 02:40:00,15.6,15.6,20.201285976710559 + 02/06 02:50:00,15.6,15.6,20.204453662064226 + 02/06 03:00:00,15.6,15.6,20.207537378011723 + 02/06 03:10:00,15.6,15.6,20.208485988202889 + 02/06 03:20:00,15.6,15.6,20.209385005635576 + 02/06 03:30:00,15.6,15.6,20.210177164036325 + 02/06 03:40:00,15.6,15.6,20.210960917096214 + 02/06 03:50:00,15.6,15.6,20.211755277723954 + 02/06 04:00:00,15.6,15.6,20.212520253936689 + 02/06 04:10:00,15.6,15.6,20.21398496192283 + 02/06 04:20:00,15.6,15.6,20.21559132884468 + 02/06 04:30:00,15.6,15.6,20.217254706689024 + 02/06 04:40:00,15.6,15.6,20.219110351927954 + 02/06 04:50:00,15.6,15.6,20.221043369318506 + 02/06 05:00:00,15.6,15.6,20.223034126431853 + 02/06 05:10:00,15.6,15.6,20.225485329352343 + 02/06 05:20:00,15.6,15.6,20.227835765387274 + 02/06 05:30:00,15.6,15.6,20.230232692858658 + 02/06 05:40:00,15.6,15.6,20.23257345184802 + 02/06 05:50:00,15.6,15.6,20.23486015769767 + 02/06 06:00:00,15.6,15.6,20.237095524403018 + 02/06 06:10:00,15.6,15.6,20.238657697761423 + 02/06 06:20:00,15.6,15.6,20.24020565909 + 02/06 06:30:00,15.6,15.6,20.24173476551706 + 02/06 06:40:00,15.6,15.6,20.243218807660968 + 02/06 06:50:00,15.6,15.6,20.24465386512669 + 02/06 07:00:00,15.6,15.6,20.246024782350959 + 02/06 07:05:00,15.6,15.6,18.238373490324297 + 02/06 07:10:00,15.6,15.6,18.238163860327164 + 02/06 07:20:00,15.6,15.6,18.003970969848788 + 02/06 07:30:00,15.6,15.6,17.915698288493905 + 02/06 07:40:00,15.6,15.6,17.846069388339296 + 02/06 07:50:00,15.6,15.6,17.790867038808373 + 02/06 08:00:00,15.6,15.6,17.745232191109954 + 02/06 08:10:00,15.6,15.6,16.26007313733195 + 02/06 08:20:00,15.6,15.6,16.043332348047149 + 02/06 08:30:00,15.6,15.6,15.941739929570203 + 02/06 08:40:00,15.6,15.6,15.85871967549021 + 02/06 08:50:00,15.6,15.6,15.789878689751369 + 02/06 09:00:00,15.6,15.6,15.730757609214708 + 02/06 09:10:00,15.6,15.6,15.65425219458902 + 02/06 09:20:00,15.6,15.6,15.600980190663229 + 02/06 09:30:00,15.6,15.6,15.559932253415323 + 02/06 09:40:00,15.6,15.6,15.52248945181439 + 02/06 09:50:00,15.6,15.6,15.487736165894687 + 02/06 10:00:00,15.6,15.6,15.455142387853903 + 02/06 10:10:00,15.6,15.6,15.422474051379778 + 02/06 10:20:00,15.6,15.6,15.38056572389624 + 02/06 10:30:00,15.6,15.6,15.350642612458874 + 02/06 10:40:00,15.6,15.6,15.322004058322133 + 02/06 10:50:00,15.6,15.6,15.294415842706649 + 02/06 11:00:00,15.6,15.6,15.267802554251006 + 02/06 11:10:00,15.6,15.6,15.243864619849083 + 02/06 11:20:00,15.6,15.6,15.215853210115608 + 02/06 11:30:00,15.6,15.6,15.191420264882101 + 02/06 11:40:00,15.6,15.6,15.168156026981734 + 02/06 11:50:00,15.6,15.6,15.145086380431659 + 02/06 12:00:00,15.6,15.6,15.123236769113117 + 02/06 12:10:00,15.6,15.6,15.10199652488707 + 02/06 12:20:00,15.6,15.6,15.092028335580716 + 02/06 12:30:00,15.6,15.6,15.07170861394384 + 02/06 12:40:00,15.6,15.6,15.05407109323394 + 02/06 12:50:00,15.6,15.6,15.03444545295228 + 02/06 13:00:00,15.6,15.6,15.016322064029163 + 02/06 13:10:00,15.6,15.6,14.99913055039171 + 02/06 13:20:00,15.6,15.6,14.970362018002636 + 02/06 13:30:00,15.6,15.6,14.953597166762498 + 02/06 13:40:00,15.6,15.6,14.93411849014756 + 02/06 13:50:00,15.6,15.6,14.91672547151009 + 02/06 14:00:00,15.6,15.6,14.896121371997018 + 02/06 14:10:00,15.6,15.6,14.878394867195658 + 02/06 14:20:00,15.6,15.6,14.86173449155739 + 02/06 14:30:00,15.6,15.6,14.844890627728696 + 02/06 14:40:00,15.6,15.6,14.825851019406646 + 02/06 14:50:00,15.6,15.6,14.811692215880372 + 02/06 15:00:00,15.6,15.6,14.797151439253124 + 02/06 15:10:00,15.6,15.6,14.785563300164656 + 02/06 15:20:00,15.6,15.6,14.77730234943209 + 02/06 15:30:00,15.6,15.6,14.767229177222835 + 02/06 15:40:00,15.6,15.6,14.758860525869786 + 02/06 15:50:00,15.6,15.6,14.749805420287851 + 02/06 16:00:00,15.6,15.6,14.744368212227207 + 02/06 16:10:00,15.6,15.6,16.89547509651245 + 02/06 16:20:00,15.6,15.6,17.142021792737095 + 02/06 16:30:00,15.6,15.6,17.239659126470295 + 02/06 16:40:00,15.6,15.6,17.31272686578006 + 02/06 16:50:00,15.6,15.6,17.372937304320293 + 02/06 17:00:00,15.6,15.6,17.42403536855646 + 02/06 17:10:00,15.6,15.6,17.492237435927544 + 02/06 17:20:00,15.6,15.6,17.550551326167097 + 02/06 17:30:00,15.6,15.6,17.5854058111103 + 02/06 17:40:00,15.6,15.6,17.61660852242829 + 02/06 17:50:00,15.6,15.6,17.644585186248667 + 02/06 18:00:00,15.6,15.6,17.6697253240071 + 02/06 18:10:00,15.6,15.6,17.70581972053216 + 02/06 18:20:00,15.6,15.6,17.7327137367884 + 02/06 18:30:00,15.6,15.6,17.75218070324725 + 02/06 18:40:00,15.6,15.6,17.769721357907224 + 02/06 18:50:00,15.6,15.6,17.785609510508644 + 02/06 19:00:00,15.6,15.6,17.799997543345225 + 02/06 19:10:00,15.6,15.6,17.81349881101653 + 02/06 19:20:00,15.6,15.6,17.82600243949296 + 02/06 19:30:00,15.6,15.6,17.837596377709123 + 02/06 19:40:00,15.6,15.6,17.848563585577855 + 02/06 19:50:00,15.6,15.6,17.858939443633689 + 02/06 20:00:00,15.6,15.6,17.86880343767011 + 02/06 20:10:00,15.6,15.6,17.889205312390208 + 02/06 20:20:00,15.6,15.6,17.896652556088399 + 02/06 20:30:00,15.6,15.6,17.90320345256611 + 02/06 20:40:00,15.6,15.6,17.909216618349434 + 02/06 20:50:00,15.6,15.6,17.914735653218224 + 02/06 21:00:00,15.6,15.6,17.91986065240937 + 02/06 21:10:00,15.6,15.6,17.90261875070683 + 02/06 21:20:00,15.6,15.6,17.912320613799218 + 02/06 21:30:00,15.6,15.6,17.917709478347548 + 02/06 21:40:00,15.6,15.6,17.92331305978052 + 02/06 21:50:00,15.6,15.6,17.929095076951293 + 02/06 22:00:00,15.6,15.6,17.93499332159322 + 02/06 22:10:00,15.6,15.6,17.943335475846028 + 02/06 22:20:00,15.6,15.6,17.951251866060557 + 02/06 22:30:00,15.6,15.6,17.958606442083377 + 02/06 22:40:00,15.6,15.6,17.965351712818536 + 02/06 22:50:00,15.6,15.6,17.971467239310557 + 02/06 23:00:00,15.6,15.6,17.97718744260216 + 02/06 23:10:00,15.6,15.6,19.34899715571687 + 02/06 23:20:00,15.6,15.6,19.490139682236735 + 02/06 23:30:00,15.6,15.6,19.552338807809634 + 02/06 23:40:00,15.6,15.6,19.601275484438387 + 02/06 23:50:00,15.6,15.6,19.64075059316136 + 02/06 24:00:00,15.6,15.6,19.673850715818838 + 02/07 00:10:00,15.6,15.6,19.701040111603949 + 02/07 00:20:00,15.6,15.6,19.725279942981986 + 02/07 00:30:00,15.6,15.6,19.74740413860437 + 02/07 00:40:00,15.6,15.6,19.768098979514034 + 02/07 00:50:00,15.6,15.6,19.78756178963724 + 02/07 01:00:00,15.6,15.6,19.806006341637269 + 02/07 01:10:00,15.6,15.6,19.824347869355188 + 02/07 01:20:00,15.6,15.6,19.841572828022419 + 02/07 01:30:00,15.6,15.6,19.85774506709695 + 02/07 01:40:00,15.6,15.6,19.87296849414416 + 02/07 01:50:00,15.6,15.6,19.88729538666381 + 02/07 02:00:00,15.6,15.6,19.900821552064117 + 02/07 02:10:00,15.6,15.6,19.912381696507287 + 02/07 02:20:00,15.6,15.6,19.9232540751435 + 02/07 02:30:00,15.6,15.6,19.933618640904606 + 02/07 02:40:00,15.6,15.6,19.94347372486496 + 02/07 02:50:00,15.6,15.6,19.952850366560378 + 02/07 03:00:00,15.6,15.6,19.961781933396087 + 02/07 03:10:00,15.6,15.6,19.972522426307536 + 02/07 03:20:00,15.6,15.6,19.982902965422697 + 02/07 03:30:00,15.6,15.6,19.992913102533025 + 02/07 03:40:00,15.6,15.6,20.00255544764355 + 02/07 03:50:00,15.6,15.6,20.011875336016418 + 02/07 04:00:00,15.6,15.6,20.0208080997742 + 02/07 04:10:00,15.6,15.6,20.02714204695851 + 02/07 04:20:00,15.6,15.6,20.033223975610168 + 02/07 04:30:00,15.6,15.6,20.03894922119818 + 02/07 04:40:00,15.6,15.6,20.04436392610986 + 02/07 04:50:00,15.6,15.6,20.049395541160334 + 02/07 05:00:00,15.6,15.6,20.05416547781796 + 02/07 05:10:00,15.6,15.6,20.060906273568869 + 02/07 05:20:00,15.6,15.6,20.067253276116867 + 02/07 05:30:00,15.6,15.6,20.07318398882823 + 02/07 05:40:00,15.6,15.6,20.078670259786077 + 02/07 05:50:00,15.6,15.6,20.083770120004986 + 02/07 06:00:00,15.6,15.6,20.088561185695814 + 02/07 06:10:00,15.6,15.6,20.092587579077465 + 02/07 06:20:00,15.6,15.6,20.09655191913735 + 02/07 06:30:00,15.6,15.6,20.100499216562935 + 02/07 06:40:00,15.6,15.6,20.104411882677455 + 02/07 06:50:00,15.6,15.6,20.108431519855249 + 02/07 07:00:00,15.6,15.6,20.112463105623278 + 02/07 07:10:00,15.6,15.6,18.105145539534428 + 02/07 07:20:00,15.6,15.6,17.87136036641667 + 02/07 07:30:00,15.6,15.6,17.783849017555839 + 02/07 07:40:00,15.6,15.6,17.715204056215478 + 02/07 07:50:00,15.6,15.6,17.660794621137748 + 02/07 08:00:00,15.6,15.6,17.615726625358 + 02/07 08:10:00,15.6,15.6,16.135086633447295 + 02/07 08:20:00,15.6,15.6,15.922057507112195 + 02/07 08:30:00,15.6,15.6,15.824693823581328 + 02/07 08:40:00,15.6,15.6,15.74596733024075 + 02/07 08:50:00,15.6,15.6,15.681282392004114 + 02/07 09:00:00,15.6,15.6,15.626048490936827 + 02/07 09:10:00,15.6,15.6,15.548591576629633 + 02/07 09:20:00,15.6,15.6,15.494222772224323 + 02/07 09:30:00,15.6,15.6,15.451834138003264 + 02/07 09:40:00,15.6,15.6,15.413156583673718 + 02/07 09:50:00,15.6,15.6,15.377841148898347 + 02/07 10:00:00,15.6,15.6,15.345584263892614 + 02/07 10:10:00,15.6,15.6,15.316201007655899 + 02/07 10:20:00,15.6,15.6,15.27811597696744 + 02/07 10:30:00,15.6,15.6,15.252617743089234 + 02/07 10:40:00,15.6,15.6,15.229914286560176 + 02/07 10:50:00,15.6,15.6,15.209032280776148 + 02/07 11:00:00,15.6,15.6,15.186138729087985 + 02/07 11:10:00,15.6,15.6,15.16630968000079 + 02/07 11:20:00,15.6,15.6,15.14106874990291 + 02/07 11:30:00,15.6,15.6,15.12304195429524 + 02/07 11:40:00,15.6,15.6,15.102960177960295 + 02/07 11:50:00,15.6,15.6,15.086557494982733 + 02/07 12:00:00,15.6,15.6,15.06803953120529 + 02/07 12:10:00,15.6,15.6,15.053318432645524 + 02/07 12:20:00,15.6,15.6,15.046132225088 + 02/07 12:30:00,15.6,15.6,15.03251147660682 + 02/07 12:40:00,15.6,15.6,15.018928557265165 + 02/07 12:50:00,15.6,15.6,15.004890111861427 + 02/07 13:00:00,15.6,15.6,14.993396496067352 + 02/07 13:10:00,15.6,15.6,14.981580403398557 + 02/07 13:20:00,15.6,15.6,14.962613371835055 + 02/07 13:30:00,15.6,15.6,14.952376578261351 + 02/07 13:40:00,15.6,15.6,14.943500626904023 + 02/07 13:50:00,15.6,15.6,14.934313081340882 + 02/07 14:00:00,15.6,15.6,14.926433594069616 + 02/07 14:10:00,15.6,15.6,14.917847640698833 + 02/07 14:20:00,15.6,15.6,14.913775848724319 + 02/07 14:30:00,15.6,15.6,14.90634604966491 + 02/07 14:40:00,15.6,15.6,14.898863812181928 + 02/07 14:50:00,15.6,15.6,14.892119814082552 + 02/07 15:00:00,15.6,15.6,14.883781952575112 + 02/07 15:10:00,15.6,15.6,14.876391583545035 + 02/07 15:20:00,15.6,15.6,14.869707666659015 + 02/07 15:30:00,15.6,15.6,14.862293929155202 + 02/07 15:40:00,15.6,15.6,14.852595002762549 + 02/07 15:50:00,15.6,15.6,14.845056715930588 + 02/07 16:00:00,15.6,15.6,14.837904265985016 + 02/07 16:10:00,15.6,15.6,16.981842829084905 + 02/07 16:20:00,15.6,15.6,17.22662072697338 + 02/07 16:30:00,15.6,15.6,17.32061434832105 + 02/07 16:40:00,15.6,15.6,17.392875185762916 + 02/07 16:50:00,15.6,15.6,17.450119177865678 + 02/07 17:00:00,15.6,15.6,17.495578263642736 + 02/07 17:10:00,15.6,15.6,17.55758773660876 + 02/07 17:20:00,15.6,15.6,17.6096758596696 + 02/07 17:30:00,15.6,15.6,17.637750533493859 + 02/07 17:40:00,15.6,15.6,17.662392707011877 + 02/07 17:50:00,15.6,15.6,17.68438426641277 + 02/07 18:00:00,15.6,15.6,17.70407861799316 + 02/07 18:10:00,15.6,15.6,17.737319334196039 + 02/07 18:20:00,15.6,15.6,17.761530512836708 + 02/07 18:30:00,15.6,15.6,17.778765281516365 + 02/07 18:40:00,15.6,15.6,17.79457035444669 + 02/07 18:50:00,15.6,15.6,17.809085809701629 + 02/07 19:00:00,15.6,15.6,17.822607739101544 + 02/07 19:10:00,15.6,15.6,17.83369305815836 + 02/07 19:20:00,15.6,15.6,17.84408573975388 + 02/07 19:30:00,15.6,15.6,17.85384507860256 + 02/07 19:40:00,15.6,15.6,17.863039317540513 + 02/07 19:50:00,15.6,15.6,17.87176066836537 + 02/07 20:00:00,15.6,15.6,17.880024602557776 + 02/07 20:10:00,15.6,15.6,17.901652819417945 + 02/07 20:20:00,15.6,15.6,17.91033422473666 + 02/07 20:30:00,15.6,15.6,17.918153870172838 + 02/07 20:40:00,15.6,15.6,17.925464377548616 + 02/07 20:50:00,15.6,15.6,17.932369142910575 + 02/07 21:00:00,15.6,15.6,17.938886573693183 + 02/07 21:10:00,15.6,15.6,17.92213535141743 + 02/07 21:20:00,15.6,15.6,17.932352453565579 + 02/07 21:30:00,15.6,15.6,17.93789018926076 + 02/07 21:40:00,15.6,15.6,17.943441774335058 + 02/07 21:50:00,15.6,15.6,17.948737691888718 + 02/07 22:00:00,15.6,15.6,17.95416690590106 + 02/07 22:10:00,15.6,15.6,17.959798103060913 + 02/07 22:20:00,15.6,15.6,17.965130013597596 + 02/07 22:30:00,15.6,15.6,17.970343985606399 + 02/07 22:40:00,15.6,15.6,17.975352679864199 + 02/07 22:50:00,15.6,15.6,17.980192351226298 + 02/07 23:00:00,15.6,15.6,17.984871603516799 + 02/07 23:10:00,15.6,15.6,19.351420632152445 + 02/07 23:20:00,15.6,15.6,19.489685500704878 + 02/07 23:30:00,15.6,15.6,19.549163375244136 + 02/07 23:40:00,15.6,15.6,19.59555028342773 + 02/07 23:50:00,15.6,15.6,19.63241903669248 + 02/07 24:00:00,15.6,15.6,19.662920160077094 + 02/08 00:10:00,15.6,15.6,19.691359325249889 + 02/08 00:20:00,15.6,15.6,19.716441831188236 + 02/08 00:30:00,15.6,15.6,19.738899203228408 + 02/08 00:40:00,15.6,15.6,19.75920375458721 + 02/08 00:50:00,15.6,15.6,19.77774844431582 + 02/08 01:00:00,15.6,15.6,19.79473766798197 + 02/08 01:10:00,15.6,15.6,19.809241441462878 + 02/08 01:20:00,15.6,15.6,19.822698303713645 + 02/08 01:30:00,15.6,15.6,19.835254365186093 + 02/08 01:40:00,15.6,15.6,19.84702385545261 + 02/08 01:50:00,15.6,15.6,19.858013698247289 + 02/08 02:00:00,15.6,15.6,19.868456793230306 + 02/08 02:10:00,15.6,15.6,19.880208503537437 + 02/08 02:20:00,15.6,15.6,19.891429395761983 + 02/08 02:30:00,15.6,15.6,19.902158901691416 + 02/08 02:40:00,15.6,15.6,19.912374086094986 + 02/08 02:50:00,15.6,15.6,19.92219521565596 + 02/08 03:00:00,15.6,15.6,19.931675106346224 + 02/08 03:10:00,15.6,15.6,19.93987644148457 + 02/08 03:20:00,15.6,15.6,19.947762492426894 + 02/08 03:30:00,15.6,15.6,19.955318753745087 + 02/08 03:40:00,15.6,15.6,19.962577424478 + 02/08 03:50:00,15.6,15.6,19.96964667098314 + 02/08 04:00:00,15.6,15.6,19.976476012287749 + 02/08 04:10:00,15.6,15.6,19.982578788462015 + 02/08 04:20:00,15.6,15.6,19.988481294714938 + 02/08 04:30:00,15.6,15.6,19.9940709830988 + 02/08 04:40:00,15.6,15.6,19.99954084335157 + 02/08 04:50:00,15.6,15.6,20.004796157063823 + 02/08 05:00:00,15.6,15.6,20.009845764716066 + 02/08 05:10:00,15.6,15.6,20.0166295129929 + 02/08 05:20:00,15.6,15.6,20.023007893865406 + 02/08 05:30:00,15.6,15.6,20.029144845737699 + 02/08 05:40:00,15.6,15.6,20.03497133923716 + 02/08 05:50:00,15.6,15.6,20.04049541372294 + 02/08 06:00:00,15.6,15.6,20.04573605924917 + 02/08 06:10:00,15.6,15.6,20.049944529473444 + 02/08 06:20:00,15.6,15.6,20.05401560239699 + 02/08 06:30:00,15.6,15.6,20.057943054769934 + 02/08 06:40:00,15.6,15.6,20.06169840609604 + 02/08 06:50:00,15.6,15.6,20.065308096444246 + 02/08 07:00:00,15.6,15.6,20.06869444027361 + 02/08 07:10:00,15.6,15.6,18.067441542226875 + 02/08 07:20:00,15.6,15.6,17.83485652957933 + 02/08 07:30:00,15.6,15.6,17.748475035578854 + 02/08 07:40:00,15.6,15.6,17.681072678571643 + 02/08 07:50:00,15.6,15.6,17.627837957357426 + 02/08 08:00:00,15.6,15.6,17.5839598434933 + 02/08 08:10:00,15.6,15.6,16.10432282759391 + 02/08 08:20:00,15.6,15.6,15.888005825187186 + 02/08 08:30:00,15.6,15.6,15.787228561553248 + 02/08 08:40:00,15.6,15.6,15.705051528261603 + 02/08 08:50:00,15.6,15.6,15.63688800013441 + 02/08 09:00:00,15.6,15.6,15.578180053322502 + 02/08 09:10:00,15.6,15.6,15.502338819847117 + 02/08 09:20:00,15.6,15.6,15.449234897358084 + 02/08 09:30:00,15.6,15.6,15.408294549126389 + 02/08 09:40:00,15.6,15.6,15.370654860031405 + 02/08 09:50:00,15.6,15.6,15.335237549110849 + 02/08 10:00:00,15.6,15.6,15.301389980351976 + 02/08 10:10:00,15.6,15.6,15.26828924241419 + 02/08 10:20:00,15.6,15.6,15.223267608670453 + 02/08 10:30:00,15.6,15.6,15.189293806478906 + 02/08 10:40:00,15.6,15.6,15.157740249371753 + 02/08 10:50:00,15.6,15.6,15.127742853250158 + 02/08 11:00:00,15.6,15.6,15.099065242747673 + 02/08 11:10:00,15.6,15.6,15.074366795294287 + 02/08 11:20:00,15.6,15.6,15.046692992024708 + 02/08 11:30:00,15.6,15.6,15.027306954858773 + 02/08 11:40:00,15.6,15.6,15.00619481651378 + 02/08 11:50:00,15.6,15.6,14.986790903161884 + 02/08 12:00:00,15.6,15.6,14.962838035738443 + 02/08 12:10:00,15.6,15.6,14.938592176742736 + 02/08 12:20:00,15.6,15.6,14.920858112067347 + 02/08 12:30:00,15.6,15.6,14.895386630688094 + 02/08 12:40:00,15.6,15.6,14.86848915449525 + 02/08 12:50:00,15.6,15.6,14.843464942970927 + 02/08 13:00:00,15.6,15.6,14.82177712192561 + 02/08 13:10:00,15.6,15.6,14.800788152575523 + 02/08 13:20:00,15.6,15.6,14.773137140476655 + 02/08 13:30:00,15.536936936936936,15.536936936936936,14.753549003577995 + 02/08 13:40:00,15.465465465465466,15.465465465465466,14.736422803677272 + 02/08 13:50:00,15.393993993993995,15.393993993993995,14.717843474796585 + 02/08 14:00:00,15.322522522522523,15.322522522522523,14.701687103100668 + 02/08 14:10:00,15.343543543543543,15.343543543543543,14.683797641934538 + 02/08 14:20:00,15.364564564564564,15.364564564564564,14.673041949022528 + 02/08 14:30:00,15.385585585585586,15.385585585585586,14.658327907460553 + 02/08 14:40:00,15.406606606606607,15.406606606606607,14.64585866038857 + 02/08 14:50:00,15.427627627627628,15.427627627627628,14.634110959877395 + 02/08 15:00:00,15.448648648648648,15.448648648648648,14.62331550488755 + 02/08 15:10:00,15.448648648648648,15.448648648648648,14.614785227630707 + 02/08 15:20:00,15.448648648648648,15.448648648648648,14.609606655048815 + 02/08 15:30:00,15.448648648648648,15.448648648648648,14.604041499872661 + 02/08 15:40:00,15.448648648648648,15.448648648648648,14.596349684915987 + 02/08 15:50:00,15.448648648648648,15.448648648648648,14.592588992687935 + 02/08 16:00:00,15.448648648648648,15.448648648648648,14.588238583003374 + 02/08 16:05:00,15.499099099099098,15.499099099099098,16.755200912858184 + 02/08 16:10:00,15.499099099099098,15.499099099099098,16.754312378957758 + 02/08 16:20:00,15.54954954954955,15.54954954954955,17.00715759848862 + 02/08 16:30:00,15.6,15.6,17.106245419449104 + 02/08 16:40:00,15.6,15.6,17.185235210307725 + 02/08 16:50:00,15.6,15.6,17.24873524109963 + 02/08 17:00:00,15.6,15.6,17.300023311192957 + 02/08 17:10:00,15.6,15.6,17.372016036878333 + 02/08 17:20:00,15.6,15.6,17.433485901044646 + 02/08 17:30:00,15.6,15.6,17.471008429474595 + 02/08 17:40:00,15.6,15.6,17.505323763464575 + 02/08 17:50:00,15.6,15.6,17.53730668830097 + 02/08 18:00:00,15.6,15.6,17.567316409450045 + 02/08 18:10:00,15.6,15.6,17.60331357994938 + 02/08 18:20:00,15.6,15.6,17.630070202318075 + 02/08 18:30:00,15.6,15.6,17.64936145532589 + 02/08 18:40:00,15.6,15.6,17.666585023546806 + 02/08 18:50:00,15.6,15.6,17.68187298336893 + 02/08 19:00:00,15.6,15.6,17.695460835997367 + 02/08 19:10:00,15.6,15.6,17.713057615541105 + 02/08 19:20:00,15.6,15.6,17.72954819385381 + 02/08 19:30:00,15.6,15.6,17.745007053719477 + 02/08 19:40:00,15.6,15.6,17.75960170683548 + 02/08 19:50:00,15.6,15.6,17.77340118516397 + 02/08 20:00:00,15.6,15.6,17.7865411104189 + 02/08 20:10:00,15.6,15.6,17.810151450517773 + 02/08 20:20:00,15.6,15.6,17.820774137296256 + 02/08 20:30:00,15.6,15.6,17.830658516929299 + 02/08 20:40:00,15.6,15.6,17.840177532531646 + 02/08 20:50:00,15.6,15.6,17.849351818240593 + 02/08 21:00:00,15.6,15.6,17.858237772332257 + 02/08 21:10:00,15.6,15.6,17.84566593308679 + 02/08 21:20:00,15.6,15.6,17.859810490097993 + 02/08 21:30:00,15.6,15.6,17.869284174419325 + 02/08 21:40:00,15.6,15.6,17.87846415479326 + 02/08 21:50:00,15.6,15.6,17.88741992758735 + 02/08 22:00:00,15.6,15.6,17.896224575876777 + 02/08 22:10:00,15.6,15.6,17.904433475268794 + 02/08 22:20:00,15.6,15.6,17.912491700738589 + 02/08 22:30:00,15.6,15.6,17.920461022899415 + 02/08 22:40:00,15.6,15.6,17.9282633777733 + 02/08 22:50:00,15.6,15.6,17.9358945143571 + 02/08 23:00:00,15.6,15.6,17.943485303495949 + 02/08 23:10:00,15.6,15.6,19.324369311085677 + 02/08 23:20:00,15.6,15.6,19.46836119518226 + 02/08 23:30:00,15.6,15.6,19.533016588855469 + 02/08 23:40:00,15.6,15.6,19.584302655905458 + 02/08 23:50:00,15.6,15.6,19.625981635713818 + 02/08 24:00:00,15.6,15.6,19.661238460531096 + 02/09 00:10:00,15.6,15.6,19.69427532314581 + 02/09 00:20:00,15.6,15.6,19.72383389962618 + 02/09 00:30:00,15.6,15.6,19.75059857230421 + 02/09 00:40:00,15.6,15.6,19.775231730807975 + 02/09 00:50:00,15.6,15.6,19.798092254099577 + 02/09 01:00:00,15.6,15.6,19.819455042723129 + 02/09 01:10:00,15.6,15.6,19.835546533484754 + 02/09 01:20:00,15.6,15.6,19.850478394306678 + 02/09 01:30:00,15.6,15.6,19.86443506706561 + 02/09 01:40:00,15.6,15.6,19.87758792803404 + 02/09 01:50:00,15.6,15.6,19.889988473532637 + 02/09 02:00:00,15.6,15.6,19.901725730742123 + 02/09 02:10:00,15.6,15.6,19.917338732369438 + 02/09 02:20:00,15.6,15.6,19.932367566899705 + 02/09 02:30:00,15.6,15.6,19.946977662289809 + 02/09 02:40:00,15.6,15.6,19.961137685569925 + 02/09 02:50:00,15.6,15.6,19.974894235680585 + 02/09 03:00:00,15.6,15.6,19.988275839358758 + 02/09 03:10:00,15.6,15.6,19.997081200194296 + 02/09 03:20:00,15.6,15.6,20.005646851800493 + 02/09 03:30:00,15.6,15.6,20.01388568782604 + 02/09 03:40:00,15.6,15.6,20.02182483267382 + 02/09 03:50:00,15.6,15.6,20.029482161750488 + 02/09 04:00:00,15.6,15.6,20.036790356242166 + 02/09 04:10:00,15.6,15.6,20.047430838618227 + 02/09 04:20:00,15.6,15.6,20.057901270423615 + 02/09 04:30:00,15.6,15.6,20.068258219756758 + 02/09 04:40:00,15.6,15.6,20.07850026297327 + 02/09 04:50:00,15.6,15.6,20.088581583403199 + 02/09 05:00:00,15.6,15.6,20.09860107451948 + 02/09 05:10:00,15.6,15.6,20.106718163945688 + 02/09 05:20:00,15.6,15.6,20.114610939763869 + 02/09 05:30:00,15.6,15.6,20.12218247651214 + 02/09 05:40:00,15.6,15.6,20.129412784043006 + 02/09 05:50:00,15.6,15.6,20.13632503773065 + 02/09 06:00:00,15.6,15.6,20.143024729734664 + 02/09 06:10:00,15.6,15.6,20.149807982171859 + 02/09 06:20:00,15.6,15.6,20.15640709243845 + 02/09 06:30:00,15.6,15.6,20.162894350235335 + 02/09 06:40:00,15.6,15.6,20.16921305259338 + 02/09 06:50:00,15.6,15.6,20.175535290679755 + 02/09 07:00:00,15.6,15.6,20.18175246531817 + 02/09 07:10:00,15.6,15.6,18.17032645548553 + 02/09 07:20:00,15.6,15.6,17.939087180559218 + 02/09 07:30:00,15.6,15.6,17.85405035786874 + 02/09 07:40:00,15.6,15.6,17.787650056446183 + 02/09 07:50:00,15.6,15.6,17.735137001441737 + 02/09 08:00:00,15.6,15.6,17.691370821020425 + 02/09 08:05:00,15.6,15.6,16.202910623499585 + 02/09 08:10:00,15.6,15.6,16.202717950762407 + 02/09 08:15:00,15.6,15.6,15.984831156608012 + 02/09 08:20:00,15.6,15.6,15.984857022406326 + 02/09 08:25:00,15.6,15.6,15.880254001743128 + 02/09 08:30:00,15.6,15.6,15.88018669480956 + 02/09 08:40:00,15.6,15.6,15.791162606061702 + 02/09 08:50:00,15.6,15.6,15.715137548879924 + 02/09 09:00:00,15.6,15.6,15.64706445917406 + 02/09 09:10:00,15.6,15.6,15.559644789232019 + 02/09 09:20:00,15.6,15.6,15.493814348684543 + 02/09 09:30:00,15.6,15.6,15.43903307318251 + 02/09 09:40:00,15.6,15.6,15.387139614743886 + 02/09 09:50:00,15.6,15.6,15.338091587984986 + 02/09 10:00:00,15.6,15.6,15.291758216591312 + 02/09 10:10:00,15.6,15.6,15.246140335467129 + 02/09 10:20:00,15.6,15.6,15.19237556601875 + 02/09 10:30:00,15.6,15.6,15.15137524910137 + 02/09 10:40:00,15.6,15.6,15.114137635719385 + 02/09 10:50:00,15.6,15.6,15.077462080795343 + 02/09 11:00:00,15.6,15.6,15.041420194892933 + 02/09 11:10:00,15.6,15.6,15.009281309385399 + 02/09 11:20:00,15.6,15.6,14.973418259121076 + 02/09 11:30:00,15.6,15.6,14.94472771652105 + 02/09 11:40:00,15.6,15.6,14.915367171431639 + 02/09 11:50:00,15.6,15.6,14.8900993999151 + 02/09 12:00:00,15.6,15.6,14.864175548174569 + 02/09 12:10:00,15.6,15.6,14.842333364977849 + 02/09 12:20:00,15.6,15.6,14.829506276328124 + 02/09 12:30:00,15.6,15.6,14.811101091708866 + 02/09 12:40:00,15.6,15.6,14.791852274950156 + 02/09 12:50:00,15.6,15.6,14.774132075856127 + 02/09 13:00:00,15.6,15.6,14.757900083652594 + 02/09 13:10:00,15.6,15.6,14.739497077370679 + 02/09 13:20:00,15.6,15.6,14.71537764853268 + 02/09 13:30:00,15.6,15.6,14.698648820315338 + 02/09 13:40:00,15.54954954954955,15.54954954954955,14.685671195268036 + 02/09 13:50:00,15.499099099099098,15.499099099099098,14.672629941253565 + 02/09 14:00:00,15.448648648648648,15.448648648648648,14.66456869873564 + 02/09 14:10:00,15.427627627627628,15.427627627627628,14.656365363346027 + 02/09 14:20:00,15.406606606606607,15.406606606606607,14.65582261269382 + 02/09 14:30:00,15.385585585585586,15.385585585585586,14.651713456233259 + 02/09 14:40:00,15.364564564564564,15.364564564564564,14.64986293103005 + 02/09 14:50:00,15.343543543543543,15.343543543543543,14.647022892453931 + 02/09 15:00:00,15.322522522522523,15.322522522522523,14.643723742280816 + 02/09 15:10:00,15.276276276276276,15.276276276276276,14.640905154927986 + 02/09 15:20:00,15.23003003003003,15.23003003003003,14.640164241828414 + 02/09 15:30:00,15.183783783783785,15.183783783783785,14.637750380507678 + 02/09 15:40:00,15.137537537537538,15.137537537537538,14.632272817511039 + 02/09 15:50:00,15.091291291291292,15.091291291291292,14.63000540682318 + 02/09 16:00:00,15.045045045045045,15.045045045045045,14.626203118528789 + 02/09 16:10:00,15.066066066066066,15.066066066066066,16.794864959671466 + 02/09 16:20:00,15.087087087087087,15.087087087087087,17.04562537227705 + 02/09 16:30:00,15.108108108108109,15.108108108108109,17.142479252258924 + 02/09 16:40:00,15.12912912912913,15.12912912912913,17.218961784160589 + 02/09 16:50:00,15.15015015015015,15.15015015015015,17.279283247391356 + 02/09 17:00:00,15.17117117117117,15.17117117117117,17.32635490173353 + 02/09 17:10:00,15.217417417417418,15.217417417417418,17.39499631567235 + 02/09 17:20:00,15.263663663663664,15.263663663663664,17.45298858808163 + 02/09 17:30:00,15.30990990990991,15.30990990990991,17.48690780994317 + 02/09 17:40:00,15.356156156156157,15.356156156156157,17.517525277371655 + 02/09 17:50:00,15.402402402402402,15.402402402402402,17.54553220109551 + 02/09 18:00:00,15.448648648648648,15.448648648648648,17.57128365711689 + 02/09 18:10:00,15.499099099099098,15.499099099099098,17.60578777778609 + 02/09 18:20:00,15.54954954954955,15.54954954954955,17.631054328593146 + 02/09 18:30:00,15.6,15.6,17.64955980884255 + 02/09 18:40:00,15.6,15.6,17.666537170056736 + 02/09 18:50:00,15.6,15.6,17.68213741862844 + 02/09 19:00:00,15.6,15.6,17.696463413806769 + 02/09 19:10:00,15.6,15.6,17.710883927588886 + 02/09 19:20:00,15.6,15.6,17.724494425035809 + 02/09 19:30:00,15.6,15.6,17.73708903814093 + 02/09 19:40:00,15.6,15.6,17.748948277296106 + 02/09 19:50:00,15.6,15.6,17.76013397303621 + 02/09 20:00:00,15.6,15.6,17.770666987569137 + 02/09 20:10:00,15.6,15.6,17.793859643366266 + 02/09 20:20:00,15.6,15.6,17.80411843393975 + 02/09 20:30:00,15.6,15.6,17.81353821308609 + 02/09 20:40:00,15.6,15.6,17.8225331935975 + 02/09 20:50:00,15.6,15.6,17.831156433551944 + 02/09 21:00:00,15.6,15.6,17.839408084506478 + 02/09 21:10:00,15.6,15.6,17.82456143395321 + 02/09 21:20:00,15.6,15.6,17.836422050160964 + 02/09 21:30:00,15.6,15.6,17.843608290320284 + 02/09 21:40:00,15.6,15.6,17.8505008132442 + 02/09 21:50:00,15.6,15.6,17.857168052815014 + 02/09 22:00:00,15.6,15.6,17.863668929730978 + 02/09 22:10:00,15.6,15.6,17.86954451961064 + 02/09 22:20:00,15.6,15.6,17.875201580107757 + 02/09 22:30:00,15.6,15.6,17.880855429465936 + 02/09 22:40:00,15.6,15.6,17.886453067479498 + 02/09 22:50:00,15.6,15.6,17.891915301739379 + 02/09 23:00:00,15.6,15.6,17.897308494611417 + 02/09 23:10:00,15.6,15.6,19.27830758566215 + 02/09 23:20:00,15.6,15.6,19.422458518926235 + 02/09 23:30:00,15.6,15.6,19.48690848999125 + 02/09 23:40:00,15.6,15.6,19.53797563677748 + 02/09 23:50:00,15.6,15.6,19.579317279572686 + 02/09 24:00:00,15.6,15.6,19.614130604372133 + 02/10 00:10:00,15.6,15.6,19.644952117792728 + 02/10 00:20:00,15.6,15.6,19.67248687140945 + 02/10 00:30:00,15.6,15.6,19.69734506024421 + 02/10 00:40:00,15.6,15.6,19.720173028100235 + 02/10 00:50:00,15.6,15.6,19.74132062499203 + 02/10 01:00:00,15.6,15.6,19.760964624856557 + 02/10 01:10:00,15.6,15.6,19.776164201852489 + 02/10 01:20:00,15.6,15.6,19.79020696465643 + 02/10 01:30:00,15.6,15.6,19.8032804899342 + 02/10 01:40:00,15.6,15.6,19.815475589961225 + 02/10 01:50:00,15.6,15.6,19.826823497526399 + 02/10 02:00:00,15.6,15.6,19.83756432518982 + 02/10 02:10:00,15.6,15.6,19.85007082098095 + 02/10 02:20:00,15.6,15.6,19.86214901557171 + 02/10 02:30:00,15.6,15.6,19.87379353718767 + 02/10 02:40:00,15.6,15.6,19.885008643526207 + 02/10 02:50:00,15.6,15.6,19.895887332915334 + 02/10 03:00:00,15.6,15.6,19.906477901975337 + 02/10 03:10:00,15.6,15.6,19.91702352403757 + 02/10 03:20:00,15.6,15.6,19.92729859873574 + 02/10 03:30:00,15.6,15.6,19.937192582308915 + 02/10 03:40:00,15.6,15.6,19.946759421833133 + 02/10 03:50:00,15.6,15.6,19.95609083097974 + 02/10 04:00:00,15.6,15.6,19.965138275903724 + 02/10 04:10:00,15.6,15.6,19.972026681051159 + 02/10 04:20:00,15.6,15.6,19.978720535948744 + 02/10 04:30:00,15.6,15.6,19.985197522041195 + 02/10 04:40:00,15.6,15.6,19.9916325268972 + 02/10 04:50:00,15.6,15.6,19.997936277011705 + 02/10 05:00:00,15.6,15.6,20.00410479632559 + 02/10 05:10:00,15.6,15.6,20.00636739593253 + 02/10 05:20:00,15.6,15.6,20.00832343158946 + 02/10 05:30:00,15.6,15.6,20.010150080080359 + 02/10 05:40:00,15.6,15.6,20.011771441512175 + 02/10 05:50:00,15.6,15.6,20.013203573109477 + 02/10 06:00:00,15.6,15.6,20.014469427353455 + 02/10 06:10:00,15.6,15.6,20.02098828837418 + 02/10 06:20:00,15.6,15.6,20.027264552731958 + 02/10 06:30:00,15.6,15.6,20.033385168036064 + 02/10 06:40:00,15.6,15.6,20.039316557707588 + 02/10 06:50:00,15.6,15.6,20.04508143016644 + 02/10 07:00:00,15.6,15.6,20.050651918350466 + 02/10 07:10:00,15.6,15.6,18.042615269578325 + 02/10 07:20:00,15.6,15.6,17.811335574004766 + 02/10 07:30:00,15.6,15.6,17.726963579607813 + 02/10 07:40:00,15.6,15.6,17.661604979009938 + 02/10 07:50:00,15.6,15.6,17.610483059059285 + 02/10 08:00:00,15.6,15.6,17.56886402081082 + 02/10 08:10:00,15.6,15.6,16.084539503067039 + 02/10 08:20:00,15.6,15.6,15.870798289254746 + 02/10 08:30:00,15.6,15.6,15.773543651861642 + 02/10 08:40:00,15.6,15.6,15.695399644058155 + 02/10 08:50:00,15.6,15.6,15.631552159097355 + 02/10 09:00:00,15.6,15.6,15.577332447504223 + 02/10 09:10:00,15.6,15.6,15.501958718851201 + 02/10 09:20:00,15.6,15.6,15.4490117985084 + 02/10 09:30:00,15.6,15.6,15.407946516152144 + 02/10 09:40:00,15.6,15.6,15.370223438596917 + 02/10 09:50:00,15.6,15.6,15.335586234405519 + 02/10 10:00:00,15.6,15.6,15.303746686394167 + 02/10 10:10:00,15.6,15.6,15.277184549255198 + 02/10 10:20:00,15.6,15.6,15.242292692935827 + 02/10 10:30:00,15.6,15.6,15.219962907729866 + 02/10 10:40:00,15.6,15.6,15.201038006625142 + 02/10 10:50:00,15.6,15.6,15.182132121774173 + 02/10 11:00:00,15.6,15.6,15.163131714655922 + 02/10 11:10:00,15.6,15.6,15.142574690341782 + 02/10 11:20:00,15.6,15.6,15.117407763434598 + 02/10 11:30:00,15.6,15.6,15.09853943051827 + 02/10 11:40:00,15.6,15.6,15.078002592742255 + 02/10 11:50:00,15.6,15.6,15.060575177774844 + 02/10 12:00:00,15.6,15.6,15.041472446627618 + 02/10 12:10:00,15.6,15.6,15.023407010166807 + 02/10 12:20:00,15.6,15.6,15.013045505079515 + 02/10 12:30:00,15.6,15.6,14.996483643333248 + 02/10 12:40:00,15.6,15.6,14.97867321611507 + 02/10 12:50:00,15.6,15.6,14.96226630938332 + 02/10 13:00:00,15.6,15.6,14.947630053112125 + 02/10 13:10:00,15.6,15.6,14.935626628381567 + 02/10 13:20:00,15.6,15.6,14.917452751540502 + 02/10 13:30:00,15.6,15.6,14.906872286316976 + 02/10 13:40:00,15.6,15.6,14.899049010139703 + 02/10 13:50:00,15.6,15.6,14.889346585826797 + 02/10 14:00:00,15.6,15.6,14.88214704558136 + 02/10 14:10:00,15.6,15.6,14.869431695821766 + 02/10 14:20:00,15.6,15.6,14.86189229254889 + 02/10 14:30:00,15.6,15.6,14.849239546095874 + 02/10 14:40:00,15.6,15.6,14.837943247365214 + 02/10 14:50:00,15.6,15.6,14.826516064170248 + 02/10 15:00:00,15.6,15.6,14.815735521811268 + 02/10 15:10:00,15.6,15.6,14.809672647528961 + 02/10 15:20:00,15.6,15.6,14.806474137662799 + 02/10 15:30:00,15.6,15.6,14.802536700551391 + 02/10 15:40:00,15.6,15.6,14.796171456369124 + 02/10 15:50:00,15.6,15.6,14.793421567023343 + 02/10 16:00:00,15.6,15.6,14.789563877324483 + 02/10 16:10:00,15.6,15.6,16.93390533804655 + 02/10 16:20:00,15.6,15.6,17.178992732085996 + 02/10 16:30:00,15.6,15.6,17.271861309919168 + 02/10 16:40:00,15.6,15.6,17.344609237866075 + 02/10 16:50:00,15.6,15.6,17.401494486036265 + 02/10 17:00:00,15.6,15.6,17.445533936807789 + 02/10 17:10:00,15.6,15.6,17.51193442861282 + 02/10 17:20:00,15.6,15.6,17.567203726638927 + 02/10 17:30:00,15.6,15.6,17.598508819675464 + 02/10 17:40:00,15.6,15.6,17.626239482847845 + 02/10 17:50:00,15.6,15.6,17.651022503292024 + 02/10 18:00:00,15.6,15.6,17.67322624012796 + 02/10 18:10:00,15.6,15.6,17.706237434897778 + 02/10 18:20:00,15.6,15.6,17.730377027409515 + 02/10 18:30:00,15.6,15.6,17.74749981897756 + 02/10 18:40:00,15.6,15.6,17.763356828747797 + 02/10 18:50:00,15.6,15.6,17.777939562361703 + 02/10 19:00:00,15.6,15.6,17.791539069141856 + 02/10 19:10:00,15.6,15.6,17.802631799488059 + 02/10 19:20:00,15.6,15.6,17.81269788537893 + 02/10 19:30:00,15.6,15.6,17.82200696277347 + 02/10 19:40:00,15.6,15.6,17.83060884502141 + 02/10 19:50:00,15.6,15.6,17.83859268715583 + 02/10 20:00:00,15.6,15.6,17.846059493897554 + 02/10 20:10:00,15.6,15.6,17.86628036431149 + 02/10 20:20:00,15.6,15.6,17.87382172373079 + 02/10 20:30:00,15.6,15.6,17.880653111364429 + 02/10 20:40:00,15.6,15.6,17.88718801978931 + 02/10 20:50:00,15.6,15.6,17.89327014252489 + 02/10 21:00:00,15.6,15.6,17.898998700304909 + 02/10 21:10:00,15.6,15.6,17.88462868651514 + 02/10 21:20:00,15.6,15.6,17.89622999060336 + 02/10 21:30:00,15.6,15.6,17.903052940761048 + 02/10 21:40:00,15.6,15.6,17.909408693875716 + 02/10 21:50:00,15.6,15.6,17.91545603561397 + 02/10 22:00:00,15.6,15.6,17.92130117275651 + 02/10 22:10:00,15.6,15.6,17.924822130603656 + 02/10 22:20:00,15.6,15.6,17.92867755469055 + 02/10 22:30:00,15.6,15.6,17.93248729065031 + 02/10 22:40:00,15.6,15.6,17.936245405266378 + 02/10 22:50:00,15.6,15.6,17.93979237938664 + 02/10 23:00:00,15.6,15.6,17.94325523924209 + 02/10 23:10:00,15.574774774774774,15.574774774774774,19.309559668601204 + 02/10 23:20:00,15.54954954954955,15.54954954954955,19.45013565919159 + 02/10 23:30:00,15.524324324324324,15.524324324324324,19.51182701862251 + 02/10 23:40:00,15.499099099099098,15.499099099099098,19.560130728935755 + 02/10 23:50:00,15.473873873873874,15.473873873873874,19.598960500806397 + 02/10 24:00:00,15.448648648648648,15.448648648648648,19.631536453726189 + 02/11 00:10:00,15.402402402402402,15.402402402402402,19.661903183710775 + 02/11 00:20:00,15.356156156156157,15.356156156156157,19.688863739347267 + 02/11 00:30:00,15.30990990990991,15.30990990990991,19.712960220517759 + 02/11 00:40:00,15.263663663663664,15.263663663663664,19.734878719847204 + 02/11 00:50:00,15.217417417417418,15.217417417417418,19.754933957766168 + 02/11 01:00:00,15.17117117117117,15.17117117117117,19.773390749705834 + 02/11 01:10:00,15.17117117117117,15.17117117117117,19.784249231971477 + 02/11 01:20:00,15.17117117117117,15.17117117117117,19.793758588735196 + 02/11 01:30:00,15.17117117117117,15.17117117117117,19.80246379419062 + 02/11 01:40:00,15.17117117117117,15.17117117117117,19.810408850158234 + 02/11 01:50:00,15.17117117117117,15.17117117117117,19.81775469898541 + 02/11 02:00:00,15.17117117117117,15.17117117117117,19.824546988633736 + 02/11 02:10:00,15.15015015015015,15.15015015015015,19.833474978199829 + 02/11 02:20:00,15.12912912912913,15.12912912912913,19.841709834758665 + 02/11 02:30:00,15.108108108108109,15.108108108108109,19.849499901317978 + 02/11 02:40:00,15.087087087087087,15.087087087087087,19.856775975844366 + 02/11 02:50:00,15.066066066066066,15.066066066066066,19.86361696362581 + 02/11 03:00:00,15.045045045045045,15.045045045045045,19.87005458945749 + 02/11 03:10:00,15.066066066066066,15.066066066066066,19.876881981334138 + 02/11 03:20:00,15.087087087087087,15.087087087087087,19.883839065185414 + 02/11 03:30:00,15.108108108108109,15.108108108108109,19.890748676502346 + 02/11 03:40:00,15.12912912912913,15.12912912912913,19.897550149476719 + 02/11 03:50:00,15.15015015015015,15.15015015015015,19.904235795254598 + 02/11 04:00:00,15.17117117117117,15.17117117117117,19.9107076398332 + 02/11 04:10:00,15.17117117117117,15.17117117117117,19.91750216697445 + 02/11 04:20:00,15.17117117117117,15.17117117117117,19.92403124663431 + 02/11 04:30:00,15.17117117117117,15.17117117117117,19.930223090099017 + 02/11 04:40:00,15.17117117117117,15.17117117117117,19.936201644229514 + 02/11 04:50:00,15.17117117117117,15.17117117117117,19.941832809029465 + 02/11 05:00:00,15.17117117117117,15.17117117117117,19.9473376038723 + 02/11 05:10:00,15.15015015015015,15.15015015015015,19.953282620873396 + 02/11 05:20:00,15.12912912912913,15.12912912912913,19.95914290847312 + 02/11 05:30:00,15.108108108108109,15.108108108108109,19.964795495341478 + 02/11 05:40:00,15.087087087087087,15.087087087087087,19.97023535487326 + 02/11 05:50:00,15.066066066066066,15.066066066066066,19.975446680687705 + 02/11 06:00:00,15.045045045045045,15.045045045045045,19.980533653619557 + 02/11 06:10:00,15.045045045045045,15.045045045045045,19.983545496160294 + 02/11 06:20:00,15.045045045045045,15.045045045045045,19.985982167485898 + 02/11 06:30:00,15.045045045045045,15.045045045045045,19.98826709112916 + 02/11 06:40:00,15.045045045045045,15.045045045045045,19.990201683283567 + 02/11 06:50:00,15.045045045045045,15.045045045045045,19.99208991347592 + 02/11 07:00:00,15.045045045045045,15.045045045045045,19.99387020413915 + 02/11 07:10:00,15.045045045045045,15.045045045045045,19.336029717400746 + 02/11 07:20:00,15.045045045045045,15.045045045045045,19.268620895619934 + 02/11 07:30:00,15.045045045045045,15.045045045045045,19.242050363192065 + 02/11 07:40:00,15.045045045045045,15.045045045045045,19.22183685257566 + 02/11 07:50:00,15.045045045045045,15.045045045045045,19.20620300982156 + 02/11 08:00:00,15.045045045045045,15.045045045045045,19.193499465071029 + 02/11 08:10:00,15.162762762762763,15.162762762762763,18.114415478910808 + 02/11 08:20:00,15.28048048048048,15.28048048048048,17.97227588064335 + 02/11 08:30:00,15.398198198198199,15.398198198198199,17.91491351541203 + 02/11 08:40:00,15.515915915915916,15.515915915915916,17.869823542981206 + 02/11 08:50:00,15.6,15.6,17.83448386551044 + 02/11 09:00:00,15.6,15.6,17.806047992071706 + 02/11 09:10:00,15.6,15.6,17.77781710835053 + 02/11 09:20:00,15.6,15.6,17.743961826868298 + 02/11 09:30:00,15.6,15.6,17.72186975033046 + 02/11 09:40:00,15.6,15.6,17.701569357825585 + 02/11 09:50:00,15.6,15.6,17.681779508950048 + 02/11 10:00:00,15.6,15.6,17.661874435475548 + 02/11 10:10:00,15.6,15.6,17.644273357953489 + 02/11 10:20:00,15.6,15.6,17.618458149503284 + 02/11 10:30:00,15.6,15.6,17.601911007388155 + 02/11 10:40:00,15.6,15.6,17.586610498127027 + 02/11 10:50:00,15.6,15.6,17.573235723982365 + 02/11 11:00:00,15.6,15.6,17.561984861700929 + 02/11 11:10:00,15.6,15.6,17.553424067177219 + 02/11 11:20:00,15.6,15.6,17.54629541313148 + 02/11 11:30:00,15.6,15.6,17.540643628656718 + 02/11 11:40:00,15.6,15.6,17.536202040609465 + 02/11 11:50:00,15.6,15.6,17.53302739536634 + 02/11 12:00:00,15.6,15.6,17.531129413184304 + 02/11 12:10:00,15.6,15.6,17.52242714406045 + 02/11 12:20:00,15.6,15.6,17.51431504790411 + 02/11 12:30:00,15.6,15.6,17.5062518579964 + 02/11 12:40:00,15.6,15.6,17.497578049732107 + 02/11 12:50:00,15.6,15.6,17.487368717719137 + 02/11 13:00:00,15.6,15.6,17.475333128971469 + 02/11 13:10:00,15.6,15.6,17.463533855081637 + 02/11 13:20:00,15.6,15.6,17.45051435192285 + 02/11 13:30:00,15.6,15.6,17.43671388924426 + 02/11 13:40:00,15.6,15.6,17.423597574024237 + 02/11 13:50:00,15.6,15.6,17.41193261339 + 02/11 14:00:00,15.6,15.6,17.40195266729662 + 02/11 14:10:00,15.6,15.6,17.39461408711856 + 02/11 14:20:00,15.6,15.6,17.386222767714718 + 02/11 14:30:00,15.6,15.6,17.381505380268324 + 02/11 14:40:00,15.6,15.6,17.37841248080535 + 02/11 14:50:00,15.6,15.6,17.37667568116642 + 02/11 15:00:00,15.6,15.6,17.374716692460085 + 02/11 15:10:00,15.6,15.6,17.378569548090789 + 02/11 15:20:00,15.6,15.6,17.384733884235965 + 02/11 15:30:00,15.6,15.6,17.391735517959014 + 02/11 15:40:00,15.6,15.6,17.399156155681348 + 02/11 15:50:00,15.6,15.6,17.40472311036571 + 02/11 16:00:00,15.6,15.6,17.413172502384513 + 02/11 16:10:00,15.6,15.6,17.418992340143526 + 02/11 16:20:00,15.6,15.6,17.425147834497737 + 02/11 16:30:00,15.6,15.6,17.42999114566142 + 02/11 16:40:00,15.6,15.6,17.435154877562483 + 02/11 16:50:00,15.6,15.6,17.441187655784228 + 02/11 17:00:00,15.6,15.6,17.4469150265471 + 02/11 17:10:00,15.6,15.6,17.4637106148788 + 02/11 17:20:00,15.6,15.6,17.474519856709173 + 02/11 17:30:00,15.6,15.6,17.478527072825324 + 02/11 17:40:00,15.6,15.6,17.48316282154141 + 02/11 17:50:00,15.6,15.6,17.488552881711283 + 02/11 18:00:00,15.6,15.6,17.494565901871846 + 02/11 18:05:00,15.6,15.6,19.27851124847352 + 02/11 18:10:00,15.6,15.6,19.278086732043059 + 02/11 18:20:00,15.6,15.6,19.49202901775358 + 02/11 18:30:00,15.6,15.6,19.580329994143729 + 02/11 18:40:00,15.6,15.6,19.64981455794247 + 02/11 18:50:00,15.6,15.6,19.705675884150087 + 02/11 19:00:00,15.6,15.6,19.752362205229454 + 02/11 19:10:00,15.6,15.6,19.799902598342407 + 02/11 19:20:00,15.6,15.6,19.82997672068762 + 02/11 19:30:00,15.6,15.6,19.855795934702095 + 02/11 19:40:00,15.6,15.6,19.87861461487573 + 02/11 19:50:00,15.6,15.6,19.8988391501973 + 02/11 20:00:00,15.6,15.6,19.916875023299029 + 02/11 20:10:00,15.6,15.6,19.93786985628801 + 02/11 20:20:00,15.6,15.6,19.957340682400777 + 02/11 20:30:00,15.6,15.6,19.97547341174344 + 02/11 20:40:00,15.6,15.6,19.992439024782607 + 02/11 20:50:00,15.6,15.6,20.00831684739556 + 02/11 21:00:00,15.6,15.6,20.02333433290096 + 02/11 21:10:00,15.6,15.6,20.017235533154265 + 02/11 21:20:00,15.6,15.6,20.03312414056231 + 02/11 21:30:00,15.6,15.6,20.048366663712629 + 02/11 21:40:00,15.6,15.6,20.06297488147866 + 02/11 21:50:00,15.6,15.6,20.077040861991358 + 02/11 22:00:00,15.6,15.6,20.090685947343009 + 02/11 22:10:00,15.6,15.6,20.099117129864636 + 02/11 22:20:00,15.6,15.6,20.107147633606897 + 02/11 22:30:00,15.6,15.6,20.114817252499443 + 02/11 22:40:00,15.6,15.6,20.122108219177436 + 02/11 22:50:00,15.6,15.6,20.129190768650028 + 02/11 23:00:00,15.6,15.6,20.135999235140227 + 02/11 23:10:00,15.6,15.6,20.1491529030024 + 02/11 23:20:00,15.6,15.6,20.162106647160575 + 02/11 23:30:00,15.6,15.6,20.174758554967704 + 02/11 23:40:00,15.6,15.6,20.18732445829066 + 02/11 23:50:00,15.6,15.6,20.19972044970421 + 02/11 24:00:00,15.6,15.6,20.211949959657699 + 02/12 00:10:00,15.6,15.6,20.223972874998205 + 02/12 00:20:00,15.6,15.6,20.23573849337072 + 02/12 00:30:00,15.6,15.6,20.247376658151578 + 02/12 00:40:00,15.6,15.6,20.258866925883785 + 02/12 00:50:00,15.6,15.6,20.270184465497615 + 02/12 01:00:00,15.6,15.6,20.2813366472758 + 02/12 01:01:06,15.6,15.6,20.28461700013866 + 02/12 01:02:13,15.6,15.6,20.28217296330079 + 02/12 01:03:19,15.6,15.6,20.28319184756892 + 02/12 01:04:26,15.6,15.6,20.283007727095268 + 02/12 01:05:33,15.6,15.6,20.282978442268907 + 02/12 01:06:40,15.6,15.6,20.28296505972042 + 02/12 01:07:46,15.6,15.6,20.28295489125378 + 02/12 01:08:53,15.6,15.6,20.282945541034186 + 02/12 01:10:00,15.6,15.6,20.28293664442606 + 02/12 01:11:40,15.6,15.6,20.284134927040527 + 02/12 01:13:19,15.6,15.6,20.28416039958355 + 02/12 01:15:00,15.6,15.6,20.284138935680639 + 02/12 01:16:40,15.6,15.6,20.284111238912027 + 02/12 01:18:19,15.6,15.6,20.284102484721953 + 02/12 01:20:00,15.6,15.6,20.28408980303142 + 02/12 01:23:19,15.6,15.6,20.284941129999689 + 02/12 01:26:40,15.6,15.6,20.28517320120761 + 02/12 01:30:00,15.6,15.6,20.28503473196064 + 02/12 01:35:00,15.6,15.6,20.28586416557515 + 02/12 01:40:00,15.6,15.6,20.28601263594118 + 02/12 01:50:00,15.6,15.6,20.286657605809244 + 02/12 02:00:00,15.6,15.6,20.28737079246592 + 02/12 02:10:00,15.6,15.6,20.29671869079874 + 02/12 02:20:00,15.6,15.6,20.30601912654644 + 02/12 02:30:00,15.6,15.6,20.315171429124196 + 02/12 02:40:00,15.6,15.6,20.32415768230314 + 02/12 02:50:00,15.6,15.6,20.332972367784057 + 02/12 03:00:00,15.6,15.6,20.341509037200337 + 02/12 03:10:00,15.6,15.6,20.346548874442108 + 02/12 03:20:00,15.6,15.6,20.3514710476445 + 02/12 03:30:00,15.6,15.6,20.356291560797894 + 02/12 03:40:00,15.6,15.6,20.36102235590156 + 02/12 03:50:00,15.6,15.6,20.36558156640591 + 02/12 04:00:00,15.6,15.6,20.370126087363294 + 02/12 04:10:00,15.6,15.6,20.37524400166379 + 02/12 04:20:00,15.6,15.6,20.380226803926204 + 02/12 04:30:00,15.6,15.6,20.385056744015935 + 02/12 04:40:00,15.6,15.6,20.389673327801959 + 02/12 04:50:00,15.6,15.6,20.394166214062339 + 02/12 05:00:00,15.6,15.6,20.39856816759666 + 02/12 05:10:00,15.6,15.6,20.405747807075764 + 02/12 05:20:00,15.6,15.6,20.412853685892995 + 02/12 05:30:00,15.6,15.6,20.419862385995683 + 02/12 05:40:00,15.6,15.6,20.426791578911993 + 02/12 05:50:00,15.6,15.6,20.433740411868177 + 02/12 06:00:00,15.6,15.6,20.44064471930271 + 02/12 06:10:00,15.6,15.6,20.442981580447289 + 02/12 06:20:00,15.6,15.6,20.445205569243706 + 02/12 06:30:00,15.6,15.6,20.447244433439466 + 02/12 06:40:00,15.6,15.6,20.449266438483805 + 02/12 06:50:00,15.6,15.6,20.451184146909385 + 02/12 07:00:00,15.6,15.6,20.453001997884248 + 02/12 07:10:00,15.6,15.6,20.476026057980627 + 02/12 07:20:00,15.6,15.6,20.47615109842998 + 02/12 07:30:00,15.6,15.6,20.476275875730427 + 02/12 07:40:00,15.6,15.6,20.476056150096598 + 02/12 07:50:00,15.6,15.6,20.475034343512907 + 02/12 08:00:00,15.6,15.6,20.47327721053501 + 02/12 08:10:00,15.6,15.6,19.069324162336554 + 02/12 08:20:00,15.6,15.6,18.904360834478156 + 02/12 08:30:00,15.6,15.6,18.835974966891663 + 02/12 08:40:00,15.6,15.6,18.77943732366333 + 02/12 08:50:00,15.6,15.6,18.73136224185605 + 02/12 09:00:00,15.6,15.6,18.688845756094879 + 02/12 09:10:00,15.6,15.6,18.647010978386996 + 02/12 09:20:00,15.6,15.6,18.598972011060867 + 02/12 09:30:00,15.6,15.6,18.561813419583605 + 02/12 09:40:00,15.6,15.6,18.526500728574655 + 02/12 09:50:00,15.6,15.6,18.49306191827982 + 02/12 10:00:00,15.6,15.6,18.46147565400238 + 02/12 10:10:00,15.6,15.6,18.43829041964105 + 02/12 10:20:00,15.6,15.6,18.40772288313283 + 02/12 10:30:00,15.6,15.6,18.38736911445765 + 02/12 10:40:00,15.6,15.6,18.36822906063384 + 02/12 10:50:00,15.6,15.6,18.34978421752944 + 02/12 11:00:00,15.6,15.6,18.331753495062878 + 02/12 11:10:00,15.6,15.6,18.30821371892754 + 02/12 11:20:00,15.6,15.6,18.28514578721815 + 02/12 11:30:00,15.6,15.6,18.262372946201908 + 02/12 11:40:00,15.6,15.6,18.239912134852433 + 02/12 11:50:00,15.6,15.6,18.218106819611294 + 02/12 12:00:00,15.6,15.6,18.19696590050601 + 02/12 12:10:00,15.6,15.6,18.17949941603195 + 02/12 12:20:00,15.6,15.6,18.162935051914208 + 02/12 12:30:00,15.6,15.6,18.147416170920147 + 02/12 12:40:00,15.6,15.6,18.132844033965904 + 02/12 12:50:00,15.6,15.6,18.11907445971346 + 02/12 13:00:00,15.6,15.6,18.106237823287196 + 02/12 13:10:00,15.6,15.6,18.09469576723168 + 02/12 13:20:00,15.6,15.6,18.083736968802964 + 02/12 13:30:00,15.6,15.6,18.073404977055298 + 02/12 13:40:00,15.6,15.6,18.063756524219998 + 02/12 13:50:00,15.6,15.6,18.0547886265375 + 02/12 14:00:00,15.6,15.6,18.046419293454965 + 02/12 14:10:00,15.6,15.6,18.04050751595728 + 02/12 14:20:00,15.6,15.6,18.035195893423194 + 02/12 14:30:00,15.6,15.6,18.030386854119237 + 02/12 14:40:00,15.6,15.6,18.0262226829556 + 02/12 14:50:00,15.6,15.6,18.022789445573318 + 02/12 15:00:00,15.6,15.6,18.020013431990919 + 02/12 15:10:00,15.6,15.6,18.013002476045949 + 02/12 15:20:00,15.6,15.6,18.00658333713061 + 02/12 15:30:00,15.6,15.6,18.00058834018615 + 02/12 15:40:00,15.6,15.6,17.9952464924079 + 02/12 15:50:00,15.6,15.6,17.991225135262316 + 02/12 16:00:00,15.6,15.6,17.98801788671195 + 02/12 16:10:00,15.6,15.6,19.42752776092186 + 02/12 16:20:00,15.6,15.6,19.58230612302318 + 02/12 16:30:00,15.6,15.6,19.649858975718304 + 02/12 16:40:00,15.6,15.6,19.70467223026901 + 02/12 16:50:00,15.6,15.6,19.750741730284788 + 02/12 17:00:00,15.6,15.6,19.790505807120785 + 02/12 17:10:00,15.6,15.6,19.82167165039947 + 02/12 17:20:00,15.6,15.6,19.857976551048897 + 02/12 17:30:00,15.6,15.6,19.881126181620517 + 02/12 17:40:00,15.6,15.6,19.9041217582069 + 02/12 17:50:00,15.6,15.6,19.925805374197066 + 02/12 18:00:00,15.6,15.6,19.94600807586246 + 02/12 18:10:00,15.6,15.6,19.967119058378054 + 02/12 18:20:00,15.6,15.6,20.004270858383764 + 02/12 18:30:00,15.6,15.6,20.022728843750877 + 02/12 18:40:00,15.6,15.6,20.039646672291935 + 02/12 18:50:00,15.6,15.6,20.054995230776976 + 02/12 19:00:00,15.6,15.6,20.069130374997397 + 02/12 19:10:00,15.6,15.6,20.082532631780969 + 02/12 19:20:00,15.6,15.6,20.094936905415336 + 02/12 19:30:00,15.6,15.6,20.1064332875802 + 02/12 19:40:00,15.6,15.6,20.117072848596608 + 02/12 19:50:00,15.6,15.6,20.127078811586235 + 02/12 20:00:00,15.6,15.6,20.13647207839099 + 02/12 20:10:00,15.6,15.6,20.142041887000706 + 02/12 20:20:00,15.6,15.6,20.147462169246827 + 02/12 20:30:00,15.6,15.6,20.152632701701273 + 02/12 20:40:00,15.6,15.6,20.157803540364335 + 02/12 20:50:00,15.6,15.6,20.16296485192282 + 02/12 21:00:00,15.6,15.6,20.168053072260304 + 02/12 21:10:00,15.6,15.6,20.155344278149575 + 02/12 21:20:00,15.6,15.6,20.165164154897128 + 02/12 21:30:00,15.6,15.6,20.17470630940052 + 02/12 21:40:00,15.6,15.6,20.184105106969015 + 02/12 21:50:00,15.6,15.6,20.193289067407425 + 02/12 22:00:00,15.6,15.6,20.20222107674294 + 02/12 22:10:00,15.6,15.6,20.208313361515008 + 02/12 22:20:00,15.6,15.6,20.21410003192276 + 02/12 22:30:00,15.6,15.6,20.219771771667383 + 02/12 22:40:00,15.6,15.6,20.225245316785967 + 02/12 22:50:00,15.6,15.6,20.230534632716485 + 02/12 23:00:00,15.6,15.6,20.23565442502273 + 02/12 23:10:00,15.6,15.6,20.240364589927727 + 02/12 23:20:00,15.6,15.6,20.244933336448285 + 02/12 23:30:00,15.6,15.6,20.24935312222965 + 02/12 23:40:00,15.6,15.6,20.25359751008073 + 02/12 23:50:00,15.6,15.6,20.25768557617766 + 02/12 24:00:00,15.6,15.6,20.261572805859769 + 02/13 00:10:00,15.6,15.6,20.26575496757384 + 02/13 00:20:00,15.6,15.6,20.269883066174889 + 02/13 00:30:00,15.6,15.6,20.274003360466506 + 02/13 00:40:00,15.6,15.6,20.27814564788989 + 02/13 00:50:00,15.6,15.6,20.282268865637108 + 02/13 01:00:00,15.6,15.6,20.286357174840103 + 02/13 01:10:00,15.6,15.6,20.290030733182083 + 02/13 01:20:00,15.6,15.6,20.293645064469655 + 02/13 01:30:00,15.6,15.6,20.297156738449805 + 02/13 01:40:00,15.6,15.6,20.300532158676334 + 02/13 01:50:00,15.6,15.6,20.30369119745812 + 02/13 02:00:00,15.6,15.6,20.306830193531704 + 02/13 02:10:00,15.6,15.6,20.31007603701725 + 02/13 02:20:00,15.6,15.6,20.313275109546045 + 02/13 02:30:00,15.6,15.6,20.31646046571147 + 02/13 02:40:00,15.6,15.6,20.3195485847456 + 02/13 02:50:00,15.6,15.6,20.322701151845924 + 02/13 03:00:00,15.6,15.6,20.325861234080319 + 02/13 03:10:00,15.6,15.6,20.333523921726387 + 02/13 03:20:00,15.6,15.6,20.34111547197691 + 02/13 03:30:00,15.6,15.6,20.348750048589115 + 02/13 03:40:00,15.6,15.6,20.356422772225778 + 02/13 03:50:00,15.6,15.6,20.364146439481414 + 02/13 04:00:00,15.6,15.6,20.371902924884016 + 02/13 04:10:00,15.6,15.6,20.371649831503466 + 02/13 04:20:00,15.6,15.6,20.3713019367972 + 02/13 04:30:00,15.6,15.6,20.370811827184075 + 02/13 04:40:00,15.6,15.6,20.370364831083355 + 02/13 04:50:00,15.6,15.6,20.36989573858246 + 02/13 05:00:00,15.6,15.6,20.3693931292747 + 02/13 05:10:00,15.6,15.6,20.372103589159559 + 02/13 05:20:00,15.6,15.6,20.374721953212 + 02/13 05:30:00,15.6,15.6,20.377416583529958 + 02/13 05:40:00,15.6,15.6,20.38009953510351 + 02/13 05:50:00,15.6,15.6,20.38276840577926 + 02/13 06:00:00,15.6,15.6,20.385422223055114 + 02/13 06:10:00,15.6,15.6,20.388426723317758 + 02/13 06:20:00,15.6,15.6,20.391449658665555 + 02/13 06:30:00,15.6,15.6,20.394385742208148 + 02/13 06:40:00,15.6,15.6,20.397229301995588 + 02/13 06:50:00,15.6,15.6,20.399985025283145 + 02/13 07:00:00,15.6,15.6,20.402589301308756 + 02/13 07:05:00,15.6,15.6,18.395020902628635 + 02/13 07:10:00,15.6,15.6,18.395137456139567 + 02/13 07:20:00,15.6,15.6,18.162868988049845 + 02/13 07:30:00,15.6,15.6,18.075473496056615 + 02/13 07:40:00,15.6,15.6,18.006460620739558 + 02/13 07:50:00,15.6,15.6,17.950920408885304 + 02/13 08:00:00,15.6,15.6,17.904444561656125 + 02/13 08:05:00,15.6,15.6,16.416580577697805 + 02/13 08:10:00,15.6,15.6,16.416513256105625 + 02/13 08:15:00,15.6,15.6,16.19746315936784 + 02/13 08:20:00,15.6,15.6,16.197570639694143 + 02/13 08:30:00,15.6,15.6,16.091039541207779 + 02/13 08:40:00,15.6,15.6,16.00189567410788 + 02/13 08:50:00,15.6,15.6,15.925448518404308 + 02/13 09:00:00,15.6,15.6,15.85766222069369 + 02/13 09:02:30,15.6,15.6,15.768949887090244 + 02/13 09:05:00,15.6,15.6,15.766671401621482 + 02/13 09:07:30,15.6,15.6,15.767654169173694 + 02/13 09:10:00,15.6,15.6,15.767561782692919 + 02/13 09:15:00,15.6,15.6,15.698393585007711 + 02/13 09:20:00,15.6,15.6,15.698210222012627 + 02/13 09:30:00,15.6,15.6,15.64109091157526 + 02/13 09:40:00,15.6,15.6,15.587780834941637 + 02/13 09:50:00,15.6,15.6,15.537488043105923 + 02/13 10:00:00,15.6,15.6,15.490045272088422 + 02/13 10:10:00,15.6,15.6,15.447852780427768 + 02/13 10:20:00,15.6,15.6,15.39718140183099 + 02/13 10:30:00,15.6,15.6,15.359136148554605 + 02/13 10:40:00,15.6,15.6,15.323079777665628 + 02/13 10:50:00,15.6,15.6,15.2888561914758 + 02/13 11:00:00,15.6,15.6,15.256373702506649 + 02/13 11:10:00,15.6,15.6,15.22121296433549 + 02/13 11:20:00,15.6,15.6,15.183823215283092 + 02/13 11:30:00,15.6,15.6,15.148890835172292 + 02/13 11:40:00,15.6,15.6,15.117073878778271 + 02/13 11:50:00,15.6,15.6,15.084289458959012 + 02/13 12:00:00,15.6,15.6,15.054666582752898 + 02/13 12:10:00,15.6,15.6,15.02724991505981 + 02/13 12:20:00,15.6,15.6,15.012783939952853 + 02/13 12:30:00,15.6,15.6,14.986733051241862 + 02/13 12:40:00,15.6,15.6,14.964387616562045 + 02/13 12:50:00,15.6,15.6,14.942112170635444 + 02/13 13:00:00,15.6,15.6,14.920297157947444 + 02/13 13:10:00,15.6,15.6,14.900592459818279 + 02/13 13:20:00,15.6,15.6,14.869689324410249 + 02/13 13:30:00,15.6,15.6,14.851976354321688 + 02/13 13:40:00,15.6,15.6,14.832806843031767 + 02/13 13:50:00,15.6,15.6,14.817178109516798 + 02/13 14:00:00,15.6,15.6,14.80021010567761 + 02/13 14:10:00,15.6,15.6,14.788708813272269 + 02/13 14:20:00,15.6,15.6,14.77945709590191 + 02/13 14:30:00,15.6,15.6,14.769625614721307 + 02/13 14:40:00,15.6,15.6,14.759128635424677 + 02/13 14:50:00,15.6,15.6,14.750235081617534 + 02/13 15:00:00,15.6,15.6,14.741839809662155 + 02/13 15:10:00,15.6,15.6,14.733492454350915 + 02/13 15:20:00,15.6,15.6,14.730649258653417 + 02/13 15:30:00,15.6,15.6,14.723113201203864 + 02/13 15:40:00,15.6,15.6,14.71948835581522 + 02/13 15:50:00,15.6,15.6,14.715329513519525 + 02/13 16:00:00,15.6,15.6,14.715345400078423 + 02/13 16:10:00,15.6,15.6,16.886922489384959 + 02/13 16:20:00,15.6,15.6,17.14032169430729 + 02/13 16:30:00,15.6,15.6,17.245040932324618 + 02/13 16:40:00,15.6,15.6,17.325992939008679 + 02/13 16:50:00,15.6,15.6,17.38875354786823 + 02/13 17:00:00,15.6,15.6,17.441703818818814 + 02/13 17:10:00,15.6,15.6,17.51298148373205 + 02/13 17:20:00,15.6,15.6,17.56988908928931 + 02/13 17:30:00,15.6,15.6,17.60396479655874 + 02/13 17:40:00,15.6,15.6,17.634278157951198 + 02/13 17:50:00,15.6,15.6,17.661490292707364 + 02/13 18:00:00,15.6,15.6,17.686104578122277 + 02/13 18:10:00,15.6,15.6,17.72086300327679 + 02/13 18:20:00,15.6,15.6,17.746556284443089 + 02/13 18:30:00,15.6,15.6,17.765159543754657 + 02/13 18:40:00,15.6,15.6,17.782246319391235 + 02/13 18:50:00,15.6,15.6,17.7979766810115 + 02/13 19:00:00,15.6,15.6,17.812444307125167 + 02/13 19:10:00,15.6,15.6,17.825815703858745 + 02/13 19:20:00,15.6,15.6,17.838206294884558 + 02/13 19:30:00,15.6,15.6,17.84975799258303 + 02/13 19:40:00,15.6,15.6,17.860592215894763 + 02/13 19:50:00,15.6,15.6,17.870685021382394 + 02/13 20:00:00,15.6,15.6,17.88026423716291 + 02/13 20:10:00,15.6,15.6,17.9025775648596 + 02/13 20:20:00,15.6,15.6,17.91182213057747 + 02/13 20:30:00,15.6,15.6,17.920294531517518 + 02/13 20:40:00,15.6,15.6,17.928363947322706 + 02/13 20:50:00,15.6,15.6,17.9360410102178 + 02/13 21:00:00,15.6,15.6,17.94341268099585 + 02/13 21:10:00,15.6,15.6,17.926639609909356 + 02/13 21:20:00,15.6,15.6,17.936684795093038 + 02/13 21:30:00,15.6,15.6,17.941973591395216 + 02/13 21:40:00,15.6,15.6,17.94692629210276 + 02/13 21:50:00,15.6,15.6,17.95161804258144 + 02/13 22:00:00,15.6,15.6,17.956064290444816 + 02/13 22:10:00,15.6,15.6,17.96272025343464 + 02/13 22:20:00,15.6,15.6,17.96916949673203 + 02/13 22:30:00,15.6,15.6,17.975489370219259 + 02/13 22:40:00,15.6,15.6,17.98161198345806 + 02/13 22:50:00,15.6,15.6,17.98746951828161 + 02/13 23:00:00,15.6,15.6,17.993256975789568 + 02/13 23:10:00,15.6,15.6,19.371821094173688 + 02/13 23:20:00,15.6,15.6,19.51313853280901 + 02/13 23:30:00,15.6,15.6,19.57531641941834 + 02/13 23:40:00,15.6,15.6,19.624235384388855 + 02/13 23:50:00,15.6,15.6,19.663690765727077 + 02/13 24:00:00,15.6,15.6,19.69676699900531 + 02/14 00:10:00,15.6,15.6,19.726976225637214 + 02/14 00:20:00,15.6,15.6,19.75391256780816 + 02/14 00:30:00,15.6,15.6,19.778283607784695 + 02/14 00:40:00,15.6,15.6,19.800693395248115 + 02/14 00:50:00,15.6,15.6,19.82155724651434 + 02/14 01:00:00,15.6,15.6,19.84111009112223 + 02/14 01:10:00,15.6,15.6,19.855519733301663 + 02/14 01:20:00,15.6,15.6,19.868854431187235 + 02/14 01:30:00,15.6,15.6,19.881344475430688 + 02/14 01:40:00,15.6,15.6,19.893114341180174 + 02/14 01:50:00,15.6,15.6,19.90421279401842 + 02/14 02:00:00,15.6,15.6,19.914713480484659 + 02/14 02:10:00,15.6,15.6,19.929199147891663 + 02/14 02:20:00,15.6,15.6,19.94303325861876 + 02/14 02:30:00,15.6,15.6,19.95632902683709 + 02/14 02:40:00,15.6,15.6,19.969051260647029 + 02/14 02:50:00,15.6,15.6,19.98125484921636 + 02/14 03:00:00,15.6,15.6,19.99298026924452 + 02/14 03:10:00,15.6,15.6,20.00135430968054 + 02/14 03:20:00,15.6,15.6,20.00945795932555 + 02/14 03:30:00,15.6,15.6,20.01722562721314 + 02/14 03:40:00,15.6,15.6,20.024691533236444 + 02/14 03:50:00,15.6,15.6,20.031874254410956 + 02/14 04:00:00,15.6,15.6,20.03870117341716 + 02/14 04:10:00,15.6,15.6,20.04608286346498 + 02/14 04:20:00,15.6,15.6,20.053301566940755 + 02/14 04:30:00,15.6,15.6,20.0603512884332 + 02/14 04:40:00,15.6,15.6,20.067250952953164 + 02/14 04:50:00,15.6,15.6,20.07393045632111 + 02/14 05:00:00,15.6,15.6,20.08049438710375 + 02/14 05:10:00,15.6,15.6,20.0859576091548 + 02/14 05:20:00,15.6,15.6,20.091400712566533 + 02/14 05:30:00,15.6,15.6,20.096852652641766 + 02/14 05:40:00,15.6,15.6,20.102273583435705 + 02/14 05:50:00,15.6,15.6,20.107680338983209 + 02/14 06:00:00,15.6,15.6,20.11313383259364 + 02/14 06:10:00,15.6,15.6,20.11942366260504 + 02/14 06:20:00,15.6,15.6,20.12552762798967 + 02/14 06:30:00,15.6,15.6,20.131397912333847 + 02/14 06:40:00,15.6,15.6,20.136979705110428 + 02/14 06:50:00,15.6,15.6,20.142435963449836 + 02/14 07:00:00,15.6,15.6,20.147698249895407 + 02/14 07:05:00,15.6,15.6,18.135567446583793 + 02/14 07:10:00,15.6,15.6,18.135597671370836 + 02/14 07:20:00,15.6,15.6,17.90384354377358 + 02/14 07:30:00,15.6,15.6,17.81870658622295 + 02/14 07:40:00,15.6,15.6,17.751935598890637 + 02/14 07:50:00,15.6,15.6,17.69882936928479 + 02/14 08:00:00,15.6,15.6,17.65449220496441 + 02/14 08:10:00,15.6,15.6,16.164383212090287 + 02/14 08:20:00,15.6,15.6,15.945697623793624 + 02/14 08:30:00,15.6,15.6,15.841623140659584 + 02/14 08:40:00,15.6,15.6,15.754984321346099 + 02/14 08:50:00,15.6,15.6,15.681578356259159 + 02/14 09:00:00,15.6,15.6,15.61702845080556 + 02/14 09:10:00,15.6,15.6,15.530266177962388 + 02/14 09:20:00,15.6,15.6,15.466345606973306 + 02/14 09:30:00,15.6,15.6,15.413796010508378 + 02/14 09:40:00,15.6,15.6,15.364341348605118 + 02/14 09:50:00,15.6,15.6,15.317680163622633 + 02/14 10:00:00,15.6,15.6,15.273627127210064 + 02/14 10:10:00,15.6,15.6,15.233717894180734 + 02/14 10:20:00,15.6,15.6,15.185248617957232 + 02/14 10:30:00,15.6,15.6,15.149385547948187 + 02/14 10:40:00,15.6,15.6,15.115668577244316 + 02/14 10:50:00,15.6,15.6,15.085283216924474 + 02/14 11:00:00,15.6,15.6,15.053901951856199 + 02/14 11:10:00,15.6,15.6,15.023290553791341 + 02/14 11:20:00,15.6,15.6,14.989762315023058 + 02/14 11:30:00,15.6,15.6,14.960786757333718 + 02/14 11:40:00,15.6,15.6,14.932835823980453 + 02/14 11:50:00,15.6,15.6,14.905959325051976 + 02/14 12:00:00,15.6,15.6,14.880309653982197 + 02/14 12:10:00,15.574774774774774,15.574774774774774,14.856918447568863 + 02/14 12:20:00,15.54954954954955,15.54954954954955,14.845464134496118 + 02/14 12:30:00,15.524324324324324,15.524324324324324,14.824685016626768 + 02/14 12:40:00,15.499099099099098,15.499099099099098,14.807476157583086 + 02/14 12:50:00,15.473873873873874,15.473873873873874,14.789359538844698 + 02/14 13:00:00,15.448648648648648,15.448648648648648,14.774266193172915 + 02/14 13:10:00,15.381381381381381,15.381381381381381,14.761414224948498 + 02/14 13:20:00,15.314114114114114,15.314114114114114,14.737351463619739 + 02/14 13:30:00,15.246846846846847,15.246846846846847,14.726050046169311 + 02/14 13:40:00,15.17957957957958,15.17957957957958,14.712994256407882 + 02/14 13:50:00,15.112312312312313,15.112312312312313,14.703343719400852 + 02/14 14:00:00,15.045045045045045,15.045045045045045,14.691841568063298 + 02/14 14:10:00,15.01981981981982,15.01981981981982,14.68175757000152 + 02/14 14:20:00,14.994594594594594,14.994594594594594,14.67273331103982 + 02/14 14:30:00,14.96936936936937,14.96936936936937,14.663724536898812 + 02/14 14:40:00,14.944144144144144,14.944144144144144,14.651971468423874 + 02/14 14:50:00,14.91891891891892,14.91891891891892,14.643740505206099 + 02/14 15:00:00,14.893693693693694,14.893693693693694,14.633800176239662 + 02/14 15:10:00,14.847447447447447,14.847447447447447,14.627682487390715 + 02/14 15:20:00,14.8012012012012,14.8012012012012,14.6247092329587 + 02/14 15:30:00,14.754954954954954,14.754954954954954,14.619151395966597 + 02/14 15:40:00,14.70870870870871,14.70870870870871,14.61536279998844 + 02/14 15:50:00,14.662462462462463,14.662462462462463,14.6101594631802 + 02/14 16:00:00,14.616216216216217,14.616216216216217,14.608541033219867 + 02/14 16:10:00,14.641441441441442,14.641441441441442,16.76627297436385 + 02/14 16:20:00,14.666666666666666,14.666666666666666,17.015773816197066 + 02/14 16:30:00,14.691891891891892,14.691891891891892,17.115172489016268 + 02/14 16:40:00,14.717117117117118,14.717117117117118,17.18948762293845 + 02/14 16:50:00,14.742342342342342,14.742342342342342,17.249205853547058 + 02/14 17:00:00,14.767567567567568,14.767567567567568,17.29885349779655 + 02/14 17:10:00,14.813813813813815,14.813813813813815,17.367481704866607 + 02/14 17:20:00,14.860060060060059,14.860060060060059,17.424901704407448 + 02/14 17:30:00,14.906306306306306,14.906306306306306,17.45921970834226 + 02/14 17:40:00,14.952552552552552,14.952552552552552,17.490294381268798 + 02/14 17:50:00,14.998798798798799,14.998798798798799,17.51885831262799 + 02/14 18:00:00,15.045045045045045,15.045045045045045,17.545275594439877 + 02/14 18:10:00,15.137537537537538,15.137537537537538,17.581576610615536 + 02/14 18:20:00,15.23003003003003,15.23003003003003,17.609169656357879 + 02/14 18:30:00,15.322522522522523,15.322522522522523,17.63001225421576 + 02/14 18:40:00,15.415015015015016,15.415015015015016,17.649442560124336 + 02/14 18:50:00,15.507507507507507,15.507507507507507,17.66750464796288 + 02/14 19:00:00,15.6,15.6,17.684264493008834 + 02/14 19:10:00,15.6,15.6,17.699468589507718 + 02/14 19:20:00,15.6,15.6,17.713867858076964 + 02/14 19:30:00,15.6,15.6,17.727394539347416 + 02/14 19:40:00,15.6,15.6,17.740201609422884 + 02/14 19:50:00,15.6,15.6,17.752379770973357 + 02/14 20:00:00,15.6,15.6,17.76397807431988 + 02/14 20:10:00,15.6,15.6,17.79040097483641 + 02/14 20:20:00,15.6,15.6,17.803696517691756 + 02/14 20:30:00,15.6,15.6,17.815788201766435 + 02/14 20:40:00,15.6,15.6,17.827098617091314 + 02/14 20:50:00,15.6,15.6,17.837705536211045 + 02/14 21:00:00,15.6,15.6,17.847654485779804 + 02/14 21:10:00,15.6,15.6,17.832204086075799 + 02/14 21:20:00,15.6,15.6,17.843452621035348 + 02/14 21:30:00,15.6,15.6,17.850111663279006 + 02/14 21:40:00,15.6,15.6,17.856663567660008 + 02/14 21:50:00,15.6,15.6,17.863082006243837 + 02/14 22:00:00,15.6,15.6,17.86936298976102 + 02/14 22:10:00,15.6,15.6,17.8778638018908 + 02/14 22:20:00,15.6,15.6,17.88602999362049 + 02/14 22:30:00,15.6,15.6,17.894020378827418 + 02/14 22:40:00,15.6,15.6,17.9018147247089 + 02/14 22:50:00,15.6,15.6,17.909438337658718 + 02/14 23:00:00,15.6,15.6,17.91690236407386 + 02/14 23:10:00,15.6,15.6,19.292410740564479 + 02/14 23:20:00,15.6,15.6,19.435187840691819 + 02/14 23:30:00,15.6,15.6,19.49867058239997 + 02/14 23:40:00,15.6,15.6,19.548982599271655 + 02/14 23:50:00,15.6,15.6,19.589662767549489 + 02/14 24:00:00,15.6,15.6,19.623898558062586 + 02/15 00:10:00,15.6,15.6,19.65381324495911 + 02/15 00:20:00,15.6,15.6,19.68030088343799 + 02/15 00:30:00,15.6,15.6,19.704041892091177 + 02/15 00:40:00,15.6,15.6,19.725557406669119 + 02/15 00:50:00,15.6,15.6,19.7452351927741 + 02/15 01:00:00,15.6,15.6,19.7632878119455 + 02/15 01:10:00,15.6,15.6,19.78117246399011 + 02/15 01:20:00,15.6,15.6,19.798046668364706 + 02/15 01:30:00,15.6,15.6,19.814016121787767 + 02/15 01:40:00,15.6,15.6,19.829201690245918 + 02/15 01:50:00,15.6,15.6,19.843599707414556 + 02/15 02:00:00,15.6,15.6,19.85744357049519 + 02/15 02:10:00,15.6,15.6,19.868342067946768 + 02/15 02:20:00,15.6,15.6,19.878678992899468 + 02/15 02:30:00,15.6,15.6,19.888593055278219 + 02/15 02:40:00,15.6,15.6,19.898032924807379 + 02/15 02:50:00,15.6,15.6,19.90713769733149 + 02/15 03:00:00,15.6,15.6,19.915954451480375 + 02/15 03:10:00,15.6,15.6,19.92545421007013 + 02/15 03:20:00,15.6,15.6,19.93470135633592 + 02/15 03:30:00,15.6,15.6,19.94361540226098 + 02/15 03:40:00,15.6,15.6,19.952240864307496 + 02/15 03:50:00,15.6,15.6,19.960669288378069 + 02/15 04:00:00,15.6,15.6,19.96884826708258 + 02/15 04:10:00,15.6,15.6,19.97950510102698 + 02/15 04:20:00,15.6,15.6,19.989714629615699 + 02/15 04:30:00,15.6,15.6,19.99939237701279 + 02/15 04:40:00,15.6,15.6,20.008713472417115 + 02/15 04:50:00,15.6,15.6,20.01762529405778 + 02/15 05:00:00,15.6,15.6,20.02616517502357 + 02/15 05:10:00,15.6,15.6,20.031656193483536 + 02/15 05:20:00,15.6,15.6,20.036781067159333 + 02/15 05:30:00,15.6,15.6,20.041738058199468 + 02/15 05:40:00,15.6,15.6,20.04647133431271 + 02/15 05:50:00,15.6,15.6,20.05098442582876 + 02/15 06:00:00,15.6,15.6,20.055290323194787 + 02/15 06:10:00,15.6,15.6,20.059821696025219 + 02/15 06:20:00,15.6,15.6,20.06423100197288 + 02/15 06:30:00,15.6,15.6,20.06857988397277 + 02/15 06:40:00,15.6,15.6,20.072829557988237 + 02/15 06:50:00,15.6,15.6,20.07699225834242 + 02/15 07:00:00,15.6,15.6,20.081019746080064 + 02/15 07:10:00,15.6,15.6,18.071752338675194 + 02/15 07:20:00,15.6,15.6,17.838564435252203 + 02/15 07:30:00,15.6,15.6,17.751938832008319 + 02/15 07:40:00,15.6,15.6,17.68384407659335 + 02/15 07:50:00,15.6,15.6,17.629529715944828 + 02/15 08:00:00,15.6,15.6,17.584144786812666 + 02/15 08:10:00,15.6,15.6,16.09805639326666 + 02/15 08:20:00,15.6,15.6,15.880941927562694 + 02/15 08:30:00,15.6,15.6,15.779262982546248 + 02/15 08:40:00,15.6,15.6,15.695713911881518 + 02/15 08:50:00,15.6,15.6,15.62589190505404 + 02/15 09:00:00,15.6,15.6,15.565382590966257 + 02/15 09:10:00,15.6,15.6,15.482396944553822 + 02/15 09:20:00,15.6,15.6,15.42288169755164 + 02/15 09:30:00,15.6,15.6,15.375553633354637 + 02/15 09:40:00,15.6,15.6,15.331809155339358 + 02/15 09:50:00,15.6,15.6,15.290743253644923 + 02/15 10:00:00,15.6,15.6,15.251855543098163 + 02/15 10:10:00,15.6,15.6,15.215200200850497 + 02/15 10:20:00,15.6,15.6,15.169243475927967 + 02/15 10:30:00,15.6,15.6,15.135313110877077 + 02/15 10:40:00,15.6,15.6,15.103534606856364 + 02/15 10:50:00,15.6,15.6,15.075297458478272 + 02/15 11:00:00,15.6,15.6,15.046323212936729 + 02/15 11:10:00,15.6,15.6,15.021581002919671 + 02/15 11:20:00,15.557957957957957,15.557957957957957,14.994719893904602 + 02/15 11:30:00,15.46126126126126,15.46126126126126,14.973541959842635 + 02/15 11:40:00,15.364564564564564,15.364564564564564,14.952689678026866 + 02/15 11:50:00,15.267867867867868,15.267867867867868,14.932636926447057 + 02/15 12:00:00,15.17117117117117,15.17117117117117,14.911872040688028 + 02/15 12:10:00,15.124924924924925,15.124924924924925,14.892573535186154 + 02/15 12:20:00,15.078678678678678,15.078678678678678,14.882049051559406 + 02/15 12:30:00,15.032432432432433,15.032432432432433,14.862046076305095 + 02/15 12:40:00,14.986186186186187,14.986186186186187,14.844518070903647 + 02/15 12:50:00,14.93993993993994,14.93993993993994,14.825738746899715 + 02/15 13:00:00,14.893693693693694,14.893693693693694,14.811089183857292 + 02/15 13:10:00,14.8012012012012,14.8012012012012,14.795147038349802 + 02/15 13:20:00,14.70870870870871,14.70870870870871,14.769514601160406 + 02/15 13:30:00,14.616216216216217,14.616216216216217,14.755827328803156 + 02/15 13:40:00,14.523723723723723,14.523723723723723,14.740689783132549 + 02/15 13:50:00,14.431231231231232,14.431231231231232,14.7273729295408 + 02/15 14:00:00,14.338738738738739,14.338738738738739,14.711801220200659 + 02/15 14:10:00,14.292492492492493,14.292492492492493,14.699622606106468 + 02/15 14:20:00,14.246246246246246,14.246246246246246,14.688678845325775 + 02/15 14:30:00,14.2,14.2,14.677134049557332 + 02/15 14:40:00,14.153753753753755,14.153753753753755,14.663025366083247 + 02/15 14:50:00,14.107507507507508,14.107507507507508,14.653040752727163 + 02/15 15:00:00,14.061261261261262,14.061261261261262,14.641296298230913 + 02/15 15:10:00,14.061261261261262,14.061261261261262,14.632779072422416 + 02/15 15:20:00,14.061261261261262,14.061261261261262,14.62566587769496 + 02/15 15:30:00,14.061261261261262,14.061261261261262,14.616631715518708 + 02/15 15:40:00,14.061261261261262,14.061261261261262,14.608427366794514 + 02/15 15:50:00,14.061261261261262,14.061261261261262,14.599237557185074 + 02/15 16:00:00,14.061261261261262,14.061261261261262,14.59304764233171 + 02/15 16:10:00,14.061261261261262,14.061261261261262,16.742243651317844 + 02/15 16:20:00,14.061261261261262,14.061261261261262,16.98905170076893 + 02/15 16:30:00,14.061261261261262,14.061261261261262,17.085639220533435 + 02/15 16:40:00,14.061261261261262,14.061261261261262,17.15723058908283 + 02/15 16:50:00,14.061261261261262,14.061261261261262,17.21576642829628 + 02/15 17:00:00,14.061261261261262,14.061261261261262,17.264951877933219 + 02/15 17:10:00,14.082282282282283,14.082282282282283,17.331744114501939 + 02/15 17:20:00,14.103303303303303,14.103303303303303,17.388044653135599 + 02/15 17:30:00,14.124324324324324,14.124324324324324,17.42105907080797 + 02/15 17:40:00,14.145345345345346,14.145345345345346,17.45056770293633 + 02/15 17:50:00,14.166366366366367,14.166366366366367,17.4769917868519 + 02/15 18:00:00,14.187387387387388,14.187387387387388,17.500692782818658 + 02/15 18:10:00,14.25885885885886,14.25885885885886,17.535178839199408 + 02/15 18:20:00,14.33033033033033,14.33033033033033,17.560184542161829 + 02/15 18:30:00,14.401801801801803,14.401801801801803,17.57846161296726 + 02/15 18:40:00,14.473273273273274,14.473273273273274,17.59535346205635 + 02/15 18:50:00,14.544744744744746,14.544744744744746,17.610997181341327 + 02/15 19:00:00,14.616216216216217,14.616216216216217,17.62534957757091 + 02/15 19:10:00,14.641441441441442,14.641441441441442,17.638890058816079 + 02/15 19:20:00,14.666666666666666,14.666666666666666,17.65183579983426 + 02/15 19:30:00,14.691891891891892,14.691891891891892,17.66387420516528 + 02/15 19:40:00,14.717117117117118,14.717117117117118,17.675199320137027 + 02/15 19:50:00,14.742342342342342,14.742342342342342,17.685776746387555 + 02/15 20:00:00,14.767567567567568,14.767567567567568,17.69572541391876 + 02/15 20:10:00,14.767567567567568,14.767567567567568,17.71899489901583 + 02/15 20:20:00,14.767567567567568,14.767567567567568,17.729052470649117 + 02/15 20:30:00,14.767567567567568,14.767567567567568,17.73820744738031 + 02/15 20:40:00,14.767567567567568,14.767567567567568,17.746790636556275 + 02/15 20:50:00,14.767567567567568,14.767567567567568,17.75489642748103 + 02/15 21:00:00,14.767567567567568,14.767567567567568,17.762612882502486 + 02/15 21:10:00,14.788588588588589,14.788588588588589,17.74611637298954 + 02/15 21:20:00,14.809609609609609,14.809609609609609,17.756293592748194 + 02/15 21:30:00,14.83063063063063,14.83063063063063,17.761840589018566 + 02/15 21:40:00,14.85165165165165,14.85165165165165,17.767286689575973 + 02/15 21:50:00,14.872672672672673,14.872672672672673,17.772561403853545 + 02/15 22:00:00,14.893693693693694,14.893693693693694,17.777663327649 + 02/15 22:10:00,14.893693693693694,14.893693693693694,17.783712868129674 + 02/15 22:20:00,14.893693693693694,14.893693693693694,17.789513319518357 + 02/15 22:30:00,14.893693693693694,14.893693693693694,17.795090012547715 + 02/15 22:40:00,14.893693693693694,14.893693693693694,17.800403015311689 + 02/15 22:50:00,14.893693693693694,14.893693693693694,17.805448146082438 + 02/15 23:00:00,14.893693693693694,14.893693693693694,17.810376376947845 + 02/15 23:10:00,14.91891891891892,14.91891891891892,19.183483274240058 + 02/15 23:20:00,14.944144144144144,14.944144144144144,19.325072988392067 + 02/15 23:30:00,14.96936936936937,14.96936936936937,19.386652781457295 + 02/15 23:40:00,14.994594594594595,14.994594594594595,19.43487580223107 + 02/15 23:50:00,15.01981981981982,15.01981981981982,19.473468298423179 + 02/15 24:00:00,15.045045045045045,15.045045045045045,19.505772180877988 + 02/16 00:10:00,15.066066066066066,15.066066066066066,19.534716397229 + 02/16 00:20:00,15.087087087087087,15.087087087087087,19.560745331456464 + 02/16 00:30:00,15.108108108108109,15.108108108108109,19.58435335181573 + 02/16 00:40:00,15.12912912912913,15.12912912912913,19.60624890016383 + 02/16 00:50:00,15.15015015015015,15.15015015015015,19.626673982687128 + 02/16 01:00:00,15.17117117117117,15.17117117117117,19.645849455144047 + 02/16 01:10:00,15.196396396396397,15.196396396396397,19.66355467587636 + 02/16 01:20:00,15.22162162162162,15.22162162162162,19.679864109146928 + 02/16 01:30:00,15.246846846846847,15.246846846846847,19.694874157577656 + 02/16 01:40:00,15.272072072072073,15.272072072072073,19.70872181295223 + 02/16 01:50:00,15.297297297297297,15.297297297297297,19.72148995303779 + 02/16 02:00:00,15.322522522522523,15.322522522522523,19.733297827491854 + 02/16 02:10:00,15.322522522522523,15.322522522522523,19.745007968150927 + 02/16 02:20:00,15.322522522522523,15.322522522522523,19.756320576947148 + 02/16 02:30:00,15.322522522522523,15.322522522522523,19.767221451904566 + 02/16 02:40:00,15.322522522522523,15.322522522522523,19.77784148079629 + 02/16 02:50:00,15.322522522522523,15.322522522522523,19.78809553601032 + 02/16 03:00:00,15.322522522522523,15.322522522522523,19.798008321402827 + 02/16 03:10:00,15.343543543543543,15.343543543543543,19.80681014977698 + 02/16 03:20:00,15.364564564564564,15.364564564564564,19.815273716289704 + 02/16 03:30:00,15.385585585585586,15.385585585585586,19.82349644153809 + 02/16 03:40:00,15.406606606606607,15.406606606606607,19.831441795466433 + 02/16 03:50:00,15.427627627627628,15.427627627627628,19.839169512640376 + 02/16 04:00:00,15.448648648648648,15.448648648648648,19.846604417144336 + 02/16 04:10:00,15.448648648648648,15.448648648648648,19.853750263202206 + 02/16 04:20:00,15.448648648648648,15.448648648648648,19.860708548100939 + 02/16 04:30:00,15.448648648648648,15.448648648648648,19.86741789934492 + 02/16 04:40:00,15.448648648648648,15.448648648648648,19.873895310597676 + 02/16 04:50:00,15.448648648648648,15.448648648648648,19.880084878565353 + 02/16 05:00:00,15.448648648648648,15.448648648648648,19.886091887043397 + 02/16 05:10:00,15.448648648648648,15.448648648648648,19.89261126330902 + 02/16 05:20:00,15.448648648648648,15.448648648648648,19.89922335508627 + 02/16 05:30:00,15.448648648648648,15.448648648648648,19.905874132103468 + 02/16 05:40:00,15.448648648648648,15.448648648648648,19.912570378608007 + 02/16 05:50:00,15.448648648648648,15.448648648648648,19.91928190074792 + 02/16 06:00:00,15.448648648648648,15.448648648648648,19.926068573850736 + 02/16 06:10:00,15.473873873873874,15.473873873873874,19.932306561900693 + 02/16 06:20:00,15.499099099099098,15.499099099099098,19.938136781739808 + 02/16 06:30:00,15.524324324324324,15.524324324324324,19.943570131402355 + 02/16 06:40:00,15.54954954954955,15.54954954954955,19.948512883060027 + 02/16 06:50:00,15.574774774774774,15.574774774774774,19.953180486157728 + 02/16 07:00:00,15.6,15.6,19.9574637500716 + 02/16 07:10:00,15.6,15.6,17.95429522635079 + 02/16 07:20:00,15.6,15.6,17.721869703393993 + 02/16 07:30:00,15.6,15.6,17.636558693291599 + 02/16 07:40:00,15.6,15.6,17.570193056182747 + 02/16 07:50:00,15.6,15.6,17.517983059831886 + 02/16 08:00:00,15.6,15.6,17.47495715375468 + 02/16 08:10:00,15.574774774774774,15.574774774774774,15.99486175111248 + 02/16 08:20:00,15.54954954954955,15.54954954954955,15.779301405465072 + 02/16 08:30:00,15.524324324324324,15.524324324324324,15.679495630932966 + 02/16 08:40:00,15.499099099099098,15.499099099099098,15.597901840903769 + 02/16 08:50:00,15.473873873873874,15.473873873873874,15.529940860351577 + 02/16 09:00:00,15.448648648648648,15.448648648648648,15.471129073581416 + 02/16 09:10:00,15.381381381381381,15.381381381381381,15.392697345786355 + 02/16 09:20:00,15.314114114114114,15.314114114114114,15.337193966741163 + 02/16 09:30:00,15.246846846846847,15.246846846846847,15.293339229211748 + 02/16 09:40:00,15.17957957957958,15.17957957957958,15.25287871264687 + 02/16 09:50:00,15.112312312312313,15.112312312312313,15.215449298650095 + 02/16 10:00:00,15.045045045045045,15.045045045045045,15.18078956414224 + 02/16 10:10:00,14.927327327327328,14.927327327327328,15.145798284086704 + 02/16 10:20:00,14.809609609609609,14.809609609609609,15.102708765783474 + 02/16 10:30:00,14.691891891891892,14.691891891891892,15.071868433881253 + 02/16 10:40:00,14.574174174174175,14.574174174174175,15.042824161585031 + 02/16 10:50:00,14.456456456456456,14.456456456456456,15.015826269425516 + 02/16 11:00:00,14.338738738738739,14.338738738738739,14.986276858151899 + 02/16 11:10:00,14.313513513513513,14.313513513513513,14.960198289386927 + 02/16 11:20:00,14.288288288288289,14.288288288288289,14.929630381945796 + 02/16 11:30:00,14.263063063063063,14.263063063063063,14.903913976533295 + 02/16 11:40:00,14.237837837837839,14.237837837837839,14.878407447744028 + 02/16 11:50:00,14.212612612612613,14.212612612612613,14.85488280061655 + 02/16 12:00:00,14.187387387387388,14.187387387387388,14.832259048342209 + 02/16 12:10:00,14.12012012012012,14.12012012012012,14.811690593009017 + 02/16 12:20:00,14.052852852852853,14.052852852852853,14.801833207403007 + 02/16 12:30:00,13.985585585585586,13.985585585585586,14.782904836441233 + 02/16 12:40:00,13.91831831831832,13.91831831831832,14.766576574637627 + 02/16 12:50:00,13.851051051051052,13.851051051051052,14.748132132871353 + 02/16 13:00:00,13.783783783783785,13.783783783783785,14.732496969824524 + 02/16 13:10:00,13.737537537537538,13.737537537537538,14.716593320361714 + 02/16 13:20:00,13.691291291291293,13.691291291291293,14.690386342728269 + 02/16 13:30:00,13.645045045045047,13.645045045045047,14.676062380312207 + 02/16 13:40:00,13.5987987987988,13.5987987987988,14.660616299436138 + 02/16 13:50:00,13.552552552552554,13.552552552552554,14.648239245248574 + 02/16 14:00:00,13.506306306306307,13.506306306306307,14.634833901902132 + 02/16 14:10:00,13.46006006006006,13.46006006006006,14.624279217788244 + 02/16 14:20:00,13.413813813813814,13.413813813813814,14.616692435758934 + 02/16 14:30:00,13.367567567567568,13.367567567567568,14.608806904527349 + 02/16 14:40:00,13.321321321321323,13.321321321321323,14.598316746128708 + 02/16 14:50:00,13.275075075075077,13.275075075075077,14.59117612027337 + 02/16 15:00:00,13.22882882882883,13.22882882882883,14.581562414050476 + 02/16 15:10:00,13.203603603603604,13.203603603603604,14.575479005386497 + 02/16 15:20:00,13.17837837837838,13.17837837837838,14.56877881405423 + 02/16 15:30:00,13.153153153153154,13.153153153153154,14.559666836599974 + 02/16 15:40:00,13.12792792792793,13.12792792792793,14.551233930456704 + 02/16 15:50:00,13.102702702702704,13.102702702702704,14.541852587974882 + 02/16 16:00:00,13.077477477477478,13.077477477477478,14.535836973900376 + 02/16 16:05:00,13.052252252252253,13.052252252252253,16.680504364000464 + 02/16 16:10:00,13.052252252252253,13.052252252252253,16.679740831475948 + 02/16 16:20:00,13.027027027027028,13.027027027027028,16.92660350338989 + 02/16 16:30:00,13.001801801801803,13.001801801801803,17.023703916266574 + 02/16 16:40:00,12.976576576576577,12.976576576576577,17.09567164652914 + 02/16 16:50:00,12.951351351351353,12.951351351351353,17.15368077986234 + 02/16 17:00:00,12.926126126126127,12.926126126126127,17.202111082268304 + 02/16 17:10:00,12.997597597597599,12.997597597597599,17.267902631491439 + 02/16 17:20:00,13.06906906906907,13.06906906906907,17.323249288820116 + 02/16 17:30:00,13.140540540540542,13.140540540540542,17.355510339820467 + 02/16 17:40:00,13.212012012012015,13.212012012012015,17.38443367809156 + 02/16 17:50:00,13.283483483483485,13.283483483483485,17.410360520693584 + 02/16 18:00:00,13.354954954954956,13.354954954954956,17.433564658734697 + 02/16 18:10:00,13.401201201201202,13.401201201201202,17.46812554210501 + 02/16 18:20:00,13.447447447447449,13.447447447447449,17.493915341832737 + 02/16 18:30:00,13.493693693693695,13.493693693693695,17.51276513478092 + 02/16 18:40:00,13.539939939939942,13.539939939939942,17.53023426194696 + 02/16 18:50:00,13.586186186186187,13.586186186186187,17.54639208702965 + 02/16 19:00:00,13.632432432432433,13.632432432432433,17.561230005074415 + 02/16 19:10:00,13.657657657657659,13.657657657657659,17.574576512896596 + 02/16 19:20:00,13.682882882882883,13.682882882882883,17.58693776645974 + 02/16 19:30:00,13.708108108108109,13.708108108108109,17.598430734691516 + 02/16 19:40:00,13.733333333333335,13.733333333333335,17.609126704058374 + 02/16 19:50:00,13.758558558558559,13.758558558558559,17.619171149492066 + 02/16 20:00:00,13.783783783783785,13.783783783783785,17.628608728346614 + 02/16 20:10:00,13.83003003003003,13.83003003003003,17.651327706521703 + 02/16 20:20:00,13.876276276276276,13.876276276276276,17.66208668200632 + 02/16 20:30:00,13.922522522522524,13.922522522522524,17.672021012866247 + 02/16 20:40:00,13.968768768768769,13.968768768768769,17.68168659497623 + 02/16 20:50:00,14.015015015015015,14.015015015015015,17.690968700449468 + 02/16 21:00:00,14.061261261261262,14.061261261261262,17.699892396760164 + 02/16 21:10:00,14.061261261261262,14.061261261261262,17.685419237675185 + 02/16 21:20:00,14.061261261261262,14.061261261261262,17.696932580742684 + 02/16 21:30:00,14.061261261261262,14.061261261261262,17.70387997073076 + 02/16 21:40:00,14.061261261261262,14.061261261261262,17.710607400124567 + 02/16 21:50:00,14.061261261261262,14.061261261261262,17.717184436307599 + 02/16 22:00:00,14.061261261261262,14.061261261261262,17.723594316644616 + 02/16 22:10:00,14.107507507507508,14.107507507507508,17.730060354340904 + 02/16 22:20:00,14.153753753753755,14.153753753753755,17.736357437851397 + 02/16 22:30:00,14.2,14.2,17.742387241210847 + 02/16 22:40:00,14.246246246246246,14.246246246246246,17.74818633519118 + 02/16 22:50:00,14.292492492492493,14.292492492492493,17.753698182831675 + 02/16 23:00:00,14.338738738738739,14.338738738738739,17.758975858241127 + 02/16 23:10:00,14.338738738738739,14.338738738738739,19.12860139121577 + 02/16 23:20:00,14.338738738738739,14.338738738738739,19.272104649945044 + 02/16 23:30:00,14.338738738738739,14.338738738738739,19.3353382160378 + 02/16 23:40:00,14.338738738738739,14.338738738738739,19.38530080629541 + 02/16 23:50:00,14.338738738738739,14.338738738738739,19.425600212614435 + 02/16 24:00:00,14.338738738738739,14.338738738738739,19.459413041088565 + 02/17 00:10:00,14.363963963963965,14.363963963963965,19.487821705810636 + 02/17 00:20:00,14.389189189189189,14.389189189189189,19.51328255343035 + 02/17 00:30:00,14.414414414414415,14.414414414414415,19.53630684117045 + 02/17 00:40:00,14.439639639639639,14.439639639639639,19.557462135174974 + 02/17 00:50:00,14.464864864864865,14.464864864864865,19.57705116741433 + 02/17 01:00:00,14.49009009009009,14.49009009009009,19.595226522147578 + 02/17 01:10:00,14.511111111111111,14.511111111111111,19.612314783636465 + 02/17 01:20:00,14.532132132132132,14.532132132132132,19.628362840534995 + 02/17 01:30:00,14.553153153153153,14.553153153153153,19.64342379557605 + 02/17 01:40:00,14.574174174174175,14.574174174174175,19.657616591260877 + 02/17 01:50:00,14.595195195195196,14.595195195195196,19.670945579641214 + 02/17 02:00:00,14.616216216216217,14.616216216216217,19.68364618702323 + 02/17 02:10:00,14.641441441441442,14.641441441441442,19.695779825113865 + 02/17 02:20:00,14.666666666666666,14.666666666666666,19.707186726386924 + 02/17 02:30:00,14.691891891891892,14.691891891891892,19.718096668798297 + 02/17 02:40:00,14.717117117117118,14.717117117117118,19.728442752878164 + 02/17 02:50:00,14.742342342342342,14.742342342342342,19.738399969397514 + 02/17 03:00:00,14.767567567567568,14.767567567567568,19.74802768979807 + 02/17 03:10:00,14.767567567567568,14.767567567567568,19.75680507067385 + 02/17 03:20:00,14.767567567567568,14.767567567567568,19.765406835174958 + 02/17 03:30:00,14.767567567567568,14.767567567567568,19.773538949007809 + 02/17 03:40:00,14.767567567567568,14.767567567567568,19.78127943846821 + 02/17 03:50:00,14.767567567567568,14.767567567567568,19.788709427096138 + 02/17 04:00:00,14.767567567567568,14.767567567567568,19.795698082366216 + 02/17 04:10:00,14.767567567567568,14.767567567567568,19.802749666845526 + 02/17 04:20:00,14.767567567567568,14.767567567567568,19.809216919885708 + 02/17 04:30:00,14.767567567567568,14.767567567567568,19.815388539843636 + 02/17 04:40:00,14.767567567567568,14.767567567567568,19.82139664825456 + 02/17 04:50:00,14.767567567567568,14.767567567567568,19.827221272835439 + 02/17 05:00:00,14.767567567567568,14.767567567567568,19.83288002279113 + 02/17 05:10:00,14.788588588588589,14.788588588588589,19.83897785665029 + 02/17 05:20:00,14.809609609609609,14.809609609609609,19.84488766412712 + 02/17 05:30:00,14.83063063063063,14.83063063063063,19.850790326055745 + 02/17 05:40:00,14.85165165165165,14.85165165165165,19.85661948055384 + 02/17 05:50:00,14.872672672672673,14.872672672672673,19.86236122981377 + 02/17 06:00:00,14.893693693693694,14.893693693693694,19.86801321609623 + 02/17 06:10:00,14.893693693693694,14.893693693693694,19.873686007671265 + 02/17 06:20:00,14.893693693693694,14.893693693693694,19.879242854404596 + 02/17 06:30:00,14.893693693693694,14.893693693693694,19.884677592270838 + 02/17 06:40:00,14.893693693693694,14.893693693693694,19.889997306923037 + 02/17 06:50:00,14.893693693693694,14.893693693693694,19.89511066081144 + 02/17 07:00:00,14.893693693693694,14.893693693693694,19.90004645751098 + 02/17 07:10:00,14.893693693693694,14.893693693693694,17.900624401478077 + 02/17 07:20:00,14.893693693693694,14.893693693693694,17.66795454003407 + 02/17 07:30:00,14.893693693693694,14.893693693693694,17.582650891848055 + 02/17 07:40:00,14.893693693693694,14.893693693693694,17.51664257179216 + 02/17 07:50:00,14.893693693693694,14.893693693693694,17.46501410601615 + 02/17 08:00:00,14.893693693693694,14.893693693693694,17.422951836356068 + 02/17 08:05:00,14.893693693693694,14.893693693693694,15.948121460520455 + 02/17 08:10:00,14.893693693693694,14.893693693693694,15.947914689140508 + 02/17 08:15:00,14.893693693693694,14.893693693693694,15.733470330558612 + 02/17 08:20:00,14.893693693693694,14.893693693693694,15.733628070834213 + 02/17 08:30:00,14.893693693693694,14.893693693693694,15.634465681768992 + 02/17 08:40:00,14.893693693693694,14.893693693693694,15.554536007251576 + 02/17 08:50:00,14.893693693693694,14.893693693693694,15.488671919339913 + 02/17 09:00:00,14.893693693693694,14.893693693693694,15.432540736722395 + 02/17 09:05:00,14.872672672672673,14.872672672672673,15.35914066160353 + 02/17 09:10:00,14.872672672672673,14.872672672672673,15.35851088072092 + 02/17 09:20:00,14.85165165165165,14.85165165165165,15.306333024979315 + 02/17 09:30:00,14.83063063063063,14.83063063063063,15.267393236348566 + 02/17 09:40:00,14.809609609609609,14.809609609609609,15.231576791629996 + 02/17 09:50:00,14.788588588588589,14.788588588588589,15.199081837743213 + 02/17 10:00:00,14.767567567567568,14.767567567567568,15.16934402005342 + 02/17 10:10:00,14.767567567567568,14.767567567567568,15.142241214962724 + 02/17 10:20:00,14.767567567567568,14.767567567567568,15.106688522389464 + 02/17 10:30:00,14.767567567567568,14.767567567567568,15.083470650819648 + 02/17 10:40:00,14.767567567567568,14.767567567567568,15.06211396742929 + 02/17 10:50:00,14.767567567567568,14.767567567567568,15.043379443391514 + 02/17 11:00:00,14.767567567567568,14.767567567567568,15.02283973419797 + 02/17 11:10:00,14.742342342342342,14.742342342342342,15.002624039322369 + 02/17 11:20:00,14.717117117117116,14.717117117117116,14.978308841193322 + 02/17 11:30:00,14.691891891891892,14.691891891891892,14.958274867763695 + 02/17 11:40:00,14.666666666666668,14.666666666666668,14.93868277593364 + 02/17 11:50:00,14.641441441441442,14.641441441441442,14.9202931683096 + 02/17 12:00:00,14.616216216216217,14.616216216216217,14.903032303502716 + 02/17 12:10:00,14.616216216216217,14.616216216216217,14.888856320935205 + 02/17 12:20:00,14.616216216216217,14.616216216216217,14.886197502178529 + 02/17 12:30:00,14.616216216216217,14.616216216216217,14.87402558946919 + 02/17 12:40:00,14.616216216216217,14.616216216216217,14.864778204374476 + 02/17 12:50:00,14.616216216216217,14.616216216216217,14.853855571673583 + 02/17 13:00:00,14.616216216216217,14.616216216216217,14.845080621822234 + 02/17 13:10:00,14.616216216216217,14.616216216216217,14.834999700840582 + 02/17 13:20:00,14.616216216216217,14.616216216216217,14.813270076701672 + 02/17 13:30:00,14.616216216216217,14.616216216216217,14.803699981919558 + 02/17 13:40:00,14.616216216216217,14.616216216216217,14.791833252065567 + 02/17 13:50:00,14.616216216216217,14.616216216216217,14.782924921455282 + 02/17 14:00:00,14.616216216216217,14.616216216216217,14.771629224809605 + 02/17 14:10:00,14.595195195195196,14.595195195195196,14.76421973175565 + 02/17 14:20:00,14.574174174174175,14.574174174174175,14.757574128063855 + 02/17 14:30:00,14.553153153153153,14.553153153153153,14.750766668997674 + 02/17 14:40:00,14.532132132132132,14.532132132132132,14.741030639566505 + 02/17 14:50:00,14.511111111111111,14.511111111111111,14.734195321611673 + 02/17 15:00:00,14.49009009009009,14.49009009009009,14.725325589750133 + 02/17 15:10:00,14.464864864864865,14.464864864864865,14.718463871614656 + 02/17 15:20:00,14.439639639639639,14.439639639639639,14.715423396281683 + 02/17 15:30:00,14.414414414414415,14.414414414414415,14.708902245785036 + 02/17 15:40:00,14.389189189189189,14.389189189189189,14.701062224373807 + 02/17 15:50:00,14.363963963963965,14.363963963963965,14.693026866113334 + 02/17 16:00:00,14.338738738738739,14.338738738738739,14.6878532621546 + 02/17 16:05:00,14.313513513513513,14.313513513513513,16.827775730119077 + 02/17 16:10:00,14.313513513513513,14.313513513513513,16.82448146032843 + 02/17 16:20:00,14.288288288288289,14.288288288288289,17.070019669353728 + 02/17 16:30:00,14.263063063063063,14.263063063063063,17.166923836890669 + 02/17 16:40:00,14.237837837837839,14.237837837837839,17.237282201441209 + 02/17 16:50:00,14.212612612612613,14.212612612612613,17.292921620741738 + 02/17 17:00:00,14.187387387387388,14.187387387387388,17.33905062961842 + 02/17 17:10:00,14.187387387387388,14.187387387387388,17.40249336445564 + 02/17 17:20:00,14.187387387387388,14.187387387387388,17.453589167084009 + 02/17 17:30:00,14.187387387387388,14.187387387387388,17.481988808594886 + 02/17 17:40:00,14.187387387387389,14.187387387387389,17.50702467103722 + 02/17 17:50:00,14.187387387387388,14.187387387387388,17.529261558650977 + 02/17 18:00:00,14.187387387387388,14.187387387387388,17.549376116402539 + 02/17 18:10:00,14.212612612612613,14.212612612612613,17.581347237075776 + 02/17 18:20:00,14.237837837837838,14.237837837837838,17.604489212303649 + 02/17 18:30:00,14.263063063063063,14.263063063063063,17.620876451909028 + 02/17 18:40:00,14.288288288288289,14.288288288288289,17.63616106774506 + 02/17 18:50:00,14.313513513513513,14.313513513513513,17.650362311836618 + 02/17 19:00:00,14.338738738738739,14.338738738738739,17.66358898330452 + 02/17 19:10:00,14.338738738738739,14.338738738738739,17.675324212821104 + 02/17 19:20:00,14.338738738738739,14.338738738738739,17.686149195675605 + 02/17 19:30:00,14.338738738738739,14.338738738738739,17.696233940935345 + 02/17 19:40:00,14.338738738738739,14.338738738738739,17.70565692357039 + 02/17 19:50:00,14.338738738738739,14.338738738738739,17.7144725874004 + 02/17 20:00:00,14.338738738738739,14.338738738738739,17.7225860629394 + 02/17 20:10:00,14.363963963963965,14.363963963963965,17.744696851290656 + 02/17 20:20:00,14.389189189189189,14.389189189189189,17.75334109046814 + 02/17 20:30:00,14.414414414414415,14.414414414414415,17.76130225184727 + 02/17 20:40:00,14.439639639639639,14.439639639639639,17.768817580025066 + 02/17 20:50:00,14.464864864864865,14.464864864864865,17.776081687073018 + 02/17 21:00:00,14.49009009009009,14.49009009009009,17.783142828439155 + 02/17 21:10:00,14.511111111111111,14.511111111111111,17.766895144937313 + 02/17 21:20:00,14.532132132132132,14.532132132132132,17.77796227575655 + 02/17 21:30:00,14.553153153153153,14.553153153153153,17.784540160655089 + 02/17 21:40:00,14.574174174174175,14.574174174174175,17.791107511268174 + 02/17 21:50:00,14.595195195195196,14.595195195195196,17.797474917463423 + 02/17 22:00:00,14.616216216216217,14.616216216216217,17.80351996821752 + 02/17 22:10:00,14.616216216216217,14.616216216216217,17.808701521180227 + 02/17 22:20:00,14.616216216216217,14.616216216216217,17.813566224537419 + 02/17 22:30:00,14.616216216216217,14.616216216216217,17.81819065594332 + 02/17 22:40:00,14.616216216216217,14.616216216216217,17.82255522903907 + 02/17 22:50:00,14.616216216216217,14.616216216216217,17.826669205734946 + 02/17 23:00:00,14.616216216216217,14.616216216216217,17.830680978297644 + 02/17 23:10:00,14.616216216216217,14.616216216216217,19.191825887072296 + 02/17 23:20:00,14.616216216216217,14.616216216216217,19.3329925514481 + 02/17 23:30:00,14.616216216216217,14.616216216216217,19.394473217794308 + 02/17 23:40:00,14.616216216216217,14.616216216216217,19.442714216239528 + 02/17 23:50:00,14.616216216216217,14.616216216216217,19.48148929278056 + 02/17 24:00:00,14.616216216216217,14.616216216216217,19.51387806806809 + 02/18 00:10:00,14.641441441441442,14.641441441441442,19.5418980234735 + 02/18 00:20:00,14.666666666666666,14.666666666666666,19.566267312052156 + 02/18 00:30:00,14.691891891891892,14.691891891891892,19.58795587353712 + 02/18 00:40:00,14.717117117117118,14.717117117117118,19.60755310044722 + 02/18 00:50:00,14.742342342342342,14.742342342342342,19.625482232798313 + 02/18 01:00:00,14.767567567567568,14.767567567567568,19.6420082144197 + 02/18 01:10:00,14.767567567567568,14.767567567567568,19.657664501517318 + 02/18 01:20:00,14.767567567567568,14.767567567567568,19.67246558514598 + 02/18 01:30:00,14.767567567567568,14.767567567567568,19.686368605764426 + 02/18 01:40:00,14.767567567567568,14.767567567567568,19.699578599901309 + 02/18 01:50:00,14.767567567567568,14.767567567567568,19.712069486627546 + 02/18 02:00:00,14.767567567567568,14.767567567567568,19.723910717778723 + 02/18 02:10:00,14.767567567567568,14.767567567567568,19.7346544620794 + 02/18 02:20:00,14.767567567567568,14.767567567567568,19.744826487833618 + 02/18 02:30:00,14.767567567567568,14.767567567567568,19.754588169086778 + 02/18 02:40:00,14.767567567567568,14.767567567567568,19.763908738257866 + 02/18 02:50:00,14.767567567567568,14.767567567567568,19.77282575103345 + 02/18 03:00:00,14.767567567567568,14.767567567567568,19.781360657138149 + 02/18 03:10:00,14.767567567567568,14.767567567567568,19.78970241212364 + 02/18 03:20:00,14.767567567567568,14.767567567567568,19.797822430807999 + 02/18 03:30:00,14.767567567567568,14.767567567567568,19.805641701300155 + 02/18 03:40:00,14.767567567567568,14.767567567567568,19.813180203499443 + 02/18 03:50:00,14.767567567567568,14.767567567567568,19.820453059450604 + 02/18 04:00:00,14.767567567567568,14.767567567567568,19.82738628815774 + 02/18 04:10:00,14.742342342342342,14.742342342342342,19.834231674546787 + 02/18 04:20:00,14.717117117117116,14.717117117117116,19.84105288678201 + 02/18 04:30:00,14.691891891891892,14.691891891891892,19.847631127023523 + 02/18 04:40:00,14.666666666666668,14.666666666666668,19.85401127014458 + 02/18 04:50:00,14.641441441441442,14.641441441441442,19.8600733980676 + 02/18 05:00:00,14.616216216216217,14.616216216216217,19.865993118349956 + 02/18 05:10:00,14.616216216216217,14.616216216216217,19.871406463296709 + 02/18 05:20:00,14.616216216216217,14.616216216216217,19.876405304197424 + 02/18 05:30:00,14.616216216216217,14.616216216216217,19.88125034031463 + 02/18 05:40:00,14.616216216216217,14.616216216216217,19.885845912026256 + 02/18 05:50:00,14.616216216216217,14.616216216216217,19.890284676001128 + 02/18 06:00:00,14.616216216216217,14.616216216216217,19.894662274163176 + 02/18 06:10:00,14.595195195195196,14.595195195195196,19.898740933396988 + 02/18 06:20:00,14.574174174174175,14.574174174174175,19.902601924641158 + 02/18 06:30:00,14.553153153153153,14.553153153153153,19.906260942620638 + 02/18 06:40:00,14.532132132132132,14.532132132132132,19.909658258442467 + 02/18 06:50:00,14.511111111111111,14.511111111111111,19.91297233304277 + 02/18 07:00:00,14.49009009009009,14.49009009009009,19.916128893545748 + 02/18 07:10:00,14.49009009009009,14.49009009009009,19.26072579351816 + 02/18 07:20:00,14.49009009009009,14.49009009009009,19.19430600214229 + 02/18 07:30:00,14.49009009009009,14.49009009009009,19.16864669498941 + 02/18 07:40:00,14.49009009009009,14.49009009009009,19.149127404067309 + 02/18 07:50:00,14.49009009009009,14.49009009009009,19.13394701728287 + 02/18 08:00:00,14.49009009009009,14.49009009009009,19.12143634136299 + 02/18 08:10:00,14.49009009009009,14.49009009009009,18.039854700873897 + 02/18 08:20:00,14.49009009009009,14.49009009009009,17.894265863665198 + 02/18 08:30:00,14.49009009009009,14.49009009009009,17.833262880247973 + 02/18 08:40:00,14.49009009009009,14.49009009009009,17.78437510575181 + 02/18 08:50:00,14.49009009009009,14.49009009009009,17.744451554267493 + 02/18 09:00:00,14.49009009009009,14.49009009009009,17.71045055234197 + 02/18 09:10:00,14.49009009009009,14.49009009009009,17.679565830698978 + 02/18 09:20:00,14.49009009009009,14.49009009009009,17.643071038682096 + 02/18 09:30:00,14.49009009009009,14.49009009009009,17.61777483471022 + 02/18 09:40:00,14.49009009009009,14.49009009009009,17.59452847218647 + 02/18 09:50:00,14.49009009009009,14.49009009009009,17.573057501279366 + 02/18 10:00:00,14.49009009009009,14.49009009009009,17.55316041794685 + 02/18 10:10:00,14.49009009009009,14.49009009009009,17.536240492834243 + 02/18 10:20:00,14.49009009009009,14.49009009009009,17.511846743362488 + 02/18 10:30:00,14.49009009009009,14.49009009009009,17.49727250277211 + 02/18 10:40:00,14.49009009009009,14.49009009009009,17.483734894930035 + 02/18 10:50:00,14.49009009009009,14.49009009009009,17.471166009236887 + 02/18 11:00:00,14.49009009009009,14.49009009009009,17.45951575882879 + 02/18 11:10:00,14.49009009009009,14.49009009009009,17.448642820944085 + 02/18 11:20:00,14.49009009009009,14.49009009009009,17.4384890414264 + 02/18 11:30:00,14.49009009009009,14.49009009009009,17.42897260326735 + 02/18 11:40:00,14.49009009009009,14.49009009009009,17.42018892493778 + 02/18 11:50:00,14.49009009009009,14.49009009009009,17.412437757047447 + 02/18 12:00:00,14.49009009009009,14.49009009009009,17.405654225086406 + 02/18 12:10:00,14.43963963963964,14.43963963963964,17.398049009473465 + 02/18 12:20:00,14.389189189189189,14.389189189189189,17.39133326891729 + 02/18 12:30:00,14.338738738738739,14.338738738738739,17.385102110617507 + 02/18 12:40:00,14.288288288288289,14.288288288288289,17.379320342459445 + 02/18 12:50:00,14.237837837837839,14.237837837837839,17.373558120264069 + 02/18 13:00:00,14.187387387387388,14.187387387387388,17.367617692879816 + 02/18 13:10:00,14.187387387387388,14.187387387387388,17.362453826683223 + 02/18 13:20:00,14.187387387387388,14.187387387387388,17.357801887600357 + 02/18 13:30:00,14.187387387387388,14.187387387387388,17.353434288514593 + 02/18 13:40:00,14.187387387387389,14.187387387387389,17.349311756178829 + 02/18 13:50:00,14.187387387387388,14.187387387387388,17.345373862948695 + 02/18 14:00:00,14.187387387387388,14.187387387387388,17.342148355524384 + 02/18 14:10:00,14.166366366366367,14.166366366366367,17.33874641666014 + 02/18 14:20:00,14.145345345345346,14.145345345345346,17.33467473005208 + 02/18 14:30:00,14.124324324324324,14.124324324324324,17.329834705937189 + 02/18 14:40:00,14.103303303303303,14.103303303303303,17.32375532801534 + 02/18 14:50:00,14.082282282282283,14.082282282282283,17.31930205838514 + 02/18 15:00:00,14.061261261261262,14.061261261261262,17.314962408381324 + 02/18 15:10:00,14.015015015015015,14.015015015015015,17.311275332033337 + 02/18 15:20:00,13.968768768768769,13.968768768768769,17.306117384650869 + 02/18 15:30:00,13.922522522522524,13.922522522522524,17.302106534179637 + 02/18 15:40:00,13.876276276276278,13.876276276276278,17.299021405315608 + 02/18 15:50:00,13.83003003003003,13.83003003003003,17.29636065159499 + 02/18 16:00:00,13.783783783783785,13.783783783783785,17.293603336337548 + 02/18 16:10:00,13.783783783783785,13.783783783783785,17.290174905568166 + 02/18 16:20:00,13.783783783783785,13.783783783783785,17.288437159400794 + 02/18 16:30:00,13.783783783783785,13.783783783783785,17.28757324071552 + 02/18 16:40:00,13.783783783783785,13.783783783783785,17.287030070249796 + 02/18 16:50:00,13.783783783783785,13.783783783783785,17.28472539450631 + 02/18 17:00:00,13.783783783783785,13.783783783783785,17.283744238912904 + 02/18 17:10:00,13.804804804804805,13.804804804804805,17.2956688212288 + 02/18 17:20:00,13.825825825825828,13.825825825825828,17.303105209193939 + 02/18 17:30:00,13.846846846846848,13.846846846846848,17.301693925292047 + 02/18 17:40:00,13.867867867867869,13.867867867867869,17.300207946869024 + 02/18 17:50:00,13.88888888888889,13.88888888888889,17.298176461821364 + 02/18 18:00:00,13.90990990990991,13.90990990990991,17.295163576215569 + 02/18 18:10:00,13.935135135135136,13.935135135135136,19.047409809571414 + 02/18 18:20:00,13.960360360360362,13.960360360360362,19.254600495007606 + 02/18 18:30:00,13.985585585585586,13.985585585585586,19.33526914292618 + 02/18 18:40:00,14.010810810810812,14.010810810810812,19.397748082530055 + 02/18 18:50:00,14.036036036036038,14.036036036036038,19.44712364828428 + 02/18 19:00:00,14.061261261261262,14.061261261261262,19.487907129311016 + 02/18 19:10:00,14.082282282282283,14.082282282282283,19.534376017771469 + 02/18 19:20:00,14.103303303303303,14.103303303303303,19.5641144188561 + 02/18 19:30:00,14.124324324324324,14.124324324324324,19.590003307563039 + 02/18 19:40:00,14.145345345345346,14.145345345345346,19.613037271972276 + 02/18 19:50:00,14.166366366366367,14.166366366366367,19.6337350185116 + 02/18 20:00:00,14.187387387387388,14.187387387387388,19.65241389586682 + 02/18 20:10:00,14.237837837837838,14.237837837837838,19.669350938625656 + 02/18 20:20:00,14.288288288288289,14.288288288288289,19.684962945204267 + 02/18 20:30:00,14.338738738738739,14.338738738738739,19.699474790611818 + 02/18 20:40:00,14.389189189189189,14.389189189189189,19.713035992065565 + 02/18 20:50:00,14.43963963963964,14.43963963963964,19.72570322398483 + 02/18 21:00:00,14.49009009009009,14.49009009009009,19.73767583662553 + 02/18 21:10:00,14.49009009009009,14.49009009009009,19.727604171288644 + 02/18 21:20:00,14.49009009009009,14.49009009009009,19.739252894355169 + 02/18 21:30:00,14.49009009009009,14.49009009009009,19.75026838725619 + 02/18 21:40:00,14.49009009009009,14.49009009009009,19.76066332361618 + 02/18 21:50:00,14.49009009009009,14.49009009009009,19.770509016499699 + 02/18 22:00:00,14.49009009009009,14.49009009009009,19.77992604116908 + 02/18 22:10:00,14.511111111111111,14.511111111111111,19.788572090240224 + 02/18 22:20:00,14.532132132132132,14.532132132132132,19.79662778248302 + 02/18 22:30:00,14.553153153153153,14.553153153153153,19.804348062272714 + 02/18 22:40:00,14.574174174174175,14.574174174174175,19.81166836841995 + 02/18 22:50:00,14.595195195195196,14.595195195195196,19.818822298408528 + 02/18 23:00:00,14.616216216216217,14.616216216216217,19.8257495441568 + 02/18 23:10:00,14.616216216216217,14.616216216216217,19.83205086481786 + 02/18 23:20:00,14.616216216216217,14.616216216216217,19.838329933040549 + 02/18 23:30:00,14.616216216216217,14.616216216216217,19.844287408768673 + 02/18 23:40:00,14.616216216216217,14.616216216216217,19.850175649518989 + 02/18 23:50:00,14.616216216216217,14.616216216216217,19.85580076738796 + 02/18 24:00:00,14.616216216216217,14.616216216216217,19.861288601268357 + 02/19 00:10:00,14.616216216216217,14.616216216216217,19.86714126099785 + 02/19 00:20:00,14.616216216216217,14.616216216216217,19.87271700089144 + 02/19 00:30:00,14.616216216216217,14.616216216216217,19.87818793932821 + 02/19 00:40:00,14.616216216216217,14.616216216216217,19.883529621273114 + 02/19 00:50:00,14.616216216216217,14.616216216216217,19.888715134307213 + 02/19 01:00:00,14.616216216216217,14.616216216216217,19.893745906942173 + 02/19 01:10:00,14.641441441441442,14.641441441441442,19.89819114596986 + 02/19 01:20:00,14.666666666666666,14.666666666666666,19.902289286064787 + 02/19 01:30:00,14.691891891891892,14.691891891891892,19.906334235912206 + 02/19 01:40:00,14.717117117117118,14.717117117117118,19.910222716167305 + 02/19 01:50:00,14.742342342342342,14.742342342342342,19.914028058424383 + 02/19 02:00:00,14.767567567567568,14.767567567567568,19.917730581914105 + 02/19 02:10:00,14.767567567567568,14.767567567567568,19.920984590993116 + 02/19 02:20:00,14.767567567567568,14.767567567567568,19.924427995909065 + 02/19 02:30:00,14.767567567567568,14.767567567567568,19.92778140046345 + 02/19 02:40:00,14.767567567567568,14.767567567567568,19.93109639781544 + 02/19 02:50:00,14.767567567567568,14.767567567567568,19.934308534207756 + 02/19 03:00:00,14.767567567567568,14.767567567567568,19.93732880619743 + 02/19 03:10:00,14.767567567567568,14.767567567567568,19.939106841657837 + 02/19 03:20:00,14.767567567567568,14.767567567567568,19.940803234318744 + 02/19 03:30:00,14.767567567567568,14.767567567567568,19.94242889464609 + 02/19 03:40:00,14.767567567567568,14.767567567567568,19.9439931783612 + 02/19 03:50:00,14.767567567567568,14.767567567567568,19.945423248288944 + 02/19 04:00:00,14.767567567567568,14.767567567567568,19.946909288045107 + 02/19 04:10:00,14.767567567567568,14.767567567567568,19.952055568210619 + 02/19 04:20:00,14.767567567567568,14.767567567567568,19.957056455734887 + 02/19 04:30:00,14.767567567567568,14.767567567567568,19.961884381694476 + 02/19 04:40:00,14.767567567567568,14.767567567567568,19.966499110821354 + 02/19 04:50:00,14.767567567567568,14.767567567567568,19.971002617782003 + 02/19 05:00:00,14.767567567567568,14.767567567567568,19.975436411169903 + 02/19 05:10:00,14.788588588588589,14.788588588588589,19.97769502669259 + 02/19 05:20:00,14.809609609609609,14.809609609609609,19.979737952521015 + 02/19 05:30:00,14.83063063063063,14.83063063063063,19.98172512272193 + 02/19 05:40:00,14.85165165165165,14.85165165165165,19.983624901043205 + 02/19 05:50:00,14.872672672672673,14.872672672672673,19.98558481133867 + 02/19 06:00:00,14.893693693693694,14.893693693693694,19.98754085605114 + 02/19 06:10:00,14.893693693693694,14.893693693693694,19.988891613770364 + 02/19 06:20:00,14.893693693693694,14.893693693693694,19.990361703938686 + 02/19 06:30:00,14.893693693693694,14.893693693693694,19.991730186557527 + 02/19 06:40:00,14.893693693693694,14.893693693693694,19.993201732335196 + 02/19 06:50:00,14.893693693693694,14.893693693693694,19.994637749500169 + 02/19 07:00:00,14.893693693693694,14.893693693693694,19.996032531179904 + 02/19 07:10:00,14.893693693693694,14.893693693693694,20.02100679138279 + 02/19 07:20:00,14.893693693693694,14.893693693693694,20.02345458915499 + 02/19 07:30:00,14.893693693693694,14.893693693693694,20.025902188623676 + 02/19 07:40:00,14.893693693693694,14.893693693693694,20.028248508586548 + 02/19 07:50:00,14.893693693693694,14.893693693693694,20.030456306755608 + 02/19 08:00:00,14.893693693693694,14.893693693693694,20.032507262363788 + 02/19 08:10:00,14.893693693693694,14.893693693693694,18.637242391461748 + 02/19 08:20:00,14.893693693693694,14.893693693693694,18.47191992950791 + 02/19 08:30:00,14.893693693693694,14.893693693693694,18.40701210084002 + 02/19 08:40:00,14.893693693693694,14.893693693693694,18.355637833054425 + 02/19 08:50:00,14.893693693693694,14.893693693693694,18.314279765292868 + 02/19 09:00:00,14.893693693693694,14.893693693693694,18.279896392043676 + 02/19 09:10:00,14.893693693693694,14.893693693693694,18.252276921162708 + 02/19 09:20:00,14.893693693693694,14.893693693693694,18.21950128545651 + 02/19 09:30:00,14.893693693693694,14.893693693693694,18.19808510543813 + 02/19 09:40:00,14.893693693693694,14.893693693693694,18.178898890970726 + 02/19 09:50:00,14.893693693693694,14.893693693693694,18.16135959527943 + 02/19 10:00:00,14.893693693693694,14.893693693693694,18.145161077023518 + 02/19 10:10:00,14.847447447447447,14.847447447447447,18.130173715183195 + 02/19 10:20:00,14.8012012012012,14.8012012012012,18.108098288901496 + 02/19 10:30:00,14.754954954954954,14.754954954954954,18.09556788413864 + 02/19 10:40:00,14.70870870870871,14.70870870870871,18.084091875672486 + 02/19 10:50:00,14.662462462462463,14.662462462462463,18.073479896175198 + 02/19 11:00:00,14.616216216216217,14.616216216216217,18.063939784083133 + 02/19 11:10:00,14.56996996996997,14.56996996996997,18.05451489611342 + 02/19 11:20:00,14.523723723723723,14.523723723723723,18.044923718030519 + 02/19 11:30:00,14.477477477477479,14.477477477477479,18.035827381390157 + 02/19 11:40:00,14.431231231231232,14.431231231231232,18.02638001090346 + 02/19 11:50:00,14.384984984984986,14.384984984984986,18.016665198809834 + 02/19 12:00:00,14.338738738738739,14.338738738738739,18.00633114706316 + 02/19 12:10:00,14.221021021021022,14.221021021021022,17.994563469719325 + 02/19 12:20:00,14.103303303303303,14.103303303303303,17.982632702377218 + 02/19 12:30:00,13.985585585585586,13.985585585585586,17.97019021523625 + 02/19 12:40:00,13.867867867867869,13.867867867867869,17.957514531867937 + 02/19 12:50:00,13.750150150150152,13.750150150150152,17.94460883309059 + 02/19 13:00:00,13.632432432432433,13.632432432432433,17.931857887531597 + 02/19 13:10:00,13.611411411411412,13.611411411411412,17.920375217935786 + 02/19 13:20:00,13.590390390390392,13.590390390390392,17.907506995768935 + 02/19 13:30:00,13.56936936936937,13.56936936936937,17.895370982713268 + 02/19 13:40:00,13.548348348348349,13.548348348348349,17.883280564040825 + 02/19 13:50:00,13.527327327327328,13.527327327327328,17.87100896663296 + 02/19 14:00:00,13.506306306306307,13.506306306306307,17.85822879002833 + 02/19 14:10:00,13.46006006006006,13.46006006006006,17.844035092420829 + 02/19 14:20:00,13.413813813813814,13.413813813813814,17.830247109858587 + 02/19 14:30:00,13.367567567567568,13.367567567567568,17.81585241518228 + 02/19 14:40:00,13.321321321321323,13.321321321321323,17.802269146690127 + 02/19 14:50:00,13.275075075075077,13.275075075075077,17.79094100976971 + 02/19 15:00:00,13.22882882882883,13.22882882882883,17.782262783586373 + 02/19 15:10:00,13.22882882882883,13.22882882882883,17.776486763402873 + 02/19 15:20:00,13.22882882882883,13.22882882882883,17.773660398478407 + 02/19 15:30:00,13.22882882882883,13.22882882882883,17.772512843345763 + 02/19 15:40:00,13.22882882882883,13.22882882882883,17.772341371420614 + 02/19 15:50:00,13.22882882882883,13.22882882882883,17.772124014201059 + 02/19 16:00:00,13.22882882882883,13.22882882882883,17.77144527854186 + 02/19 16:10:00,13.22882882882883,13.22882882882883,19.19099547574659 + 02/19 16:20:00,13.22882882882883,13.22882882882883,19.340025599501634 + 02/19 16:30:00,13.22882882882883,13.22882882882883,19.401807515486895 + 02/19 16:40:00,13.22882882882883,13.22882882882883,19.449166724224246 + 02/19 16:50:00,13.22882882882883,13.22882882882883,19.48634472282518 + 02/19 17:00:00,13.22882882882883,13.22882882882883,19.514798280838695 + 02/19 17:10:00,13.22882882882883,13.22882882882883,19.541217335873858 + 02/19 17:20:00,13.22882882882883,13.22882882882883,19.57387953621342 + 02/19 17:30:00,13.22882882882883,13.22882882882883,19.59565950165406 + 02/19 17:40:00,13.22882882882883,13.22882882882883,19.61591948568695 + 02/19 17:50:00,13.22882882882883,13.22882882882883,19.634959625919753 + 02/19 18:00:00,13.22882882882883,13.22882882882883,19.652944271125095 + 02/19 18:10:00,13.296096096096097,13.296096096096097,19.670943275880373 + 02/19 18:20:00,13.363363363363364,13.363363363363364,19.704073863818644 + 02/19 18:30:00,13.430630630630632,13.430630630630632,19.71996327633055 + 02/19 18:40:00,13.497897897897899,13.497897897897899,19.735072708233404 + 02/19 18:50:00,13.565165165165166,13.565165165165166,19.74926869879331 + 02/19 19:00:00,13.632432432432433,13.632432432432433,19.762610090380109 + 02/19 19:10:00,13.724924924924926,13.724924924924926,19.773938723028637 + 02/19 19:20:00,13.817417417417417,13.817417417417417,19.784572073136329 + 02/19 19:30:00,13.90990990990991,13.90990990990991,19.79469626824825 + 02/19 19:40:00,14.002402402402403,14.002402402402403,19.80434404036657 + 02/19 19:50:00,14.094894894894896,14.094894894894896,19.813827030579568 + 02/19 20:00:00,14.187387387387388,14.187387387387388,19.823078547630929 + 02/19 20:10:00,14.25885885885886,14.25885885885886,19.83275381066274 + 02/19 20:20:00,14.33033033033033,14.33033033033033,19.84238805585758 + 02/19 20:30:00,14.401801801801803,14.401801801801803,19.851636373898019 + 02/19 20:40:00,14.473273273273274,14.473273273273274,19.860619104489524 + 02/19 20:50:00,14.544744744744746,14.544744744744746,19.869356115339337 + 02/19 21:00:00,14.616216216216217,14.616216216216217,19.877818747884449 + 02/19 21:10:00,14.56996996996997,14.56996996996997,19.86410227682913 + 02/19 21:20:00,14.523723723723723,14.523723723723723,19.871972817430448 + 02/19 21:30:00,14.477477477477479,14.477477477477479,19.878753589441688 + 02/19 21:40:00,14.431231231231232,14.431231231231232,19.884613972951994 + 02/19 21:50:00,14.384984984984986,14.384984984984986,19.889554599816209 + 02/19 22:00:00,14.338738738738739,14.338738738738739,19.89367698677276 + 02/19 22:10:00,14.384984984984986,14.384984984984986,19.896811996293246 + 02/19 22:20:00,14.431231231231232,14.431231231231232,19.900199246233883 + 02/19 22:30:00,14.477477477477479,14.477477477477479,19.904143180769365 + 02/19 22:40:00,14.523723723723723,14.523723723723723,19.908631433813285 + 02/19 22:50:00,14.56996996996997,14.56996996996997,19.91356309055989 + 02/19 23:00:00,14.616216216216217,14.616216216216217,19.91886589926366 + 02/19 23:10:00,14.616216216216217,14.616216216216217,19.924507836060174 + 02/19 23:20:00,14.616216216216217,14.616216216216217,19.92996863864084 + 02/19 23:30:00,14.616216216216217,14.616216216216217,19.934987632821117 + 02/19 23:40:00,14.616216216216217,14.616216216216217,19.939516714457285 + 02/19 23:50:00,14.616216216216217,14.616216216216217,19.943574285545638 + 02/19 24:00:00,14.616216216216217,14.616216216216217,19.947150967738098 + 02/20 00:10:00,14.662462462462463,14.662462462462463,19.950257557926123 + 02/20 00:20:00,14.70870870870871,14.70870870870871,19.953635941477164 + 02/20 00:30:00,14.754954954954954,14.754954954954954,19.957331145003236 + 02/20 00:40:00,14.8012012012012,14.8012012012012,19.961381451752549 + 02/20 00:50:00,14.847447447447447,14.847447447447447,19.965700183931927 + 02/20 01:00:00,14.893693693693694,14.893693693693694,19.970227696598994 + 02/20 01:10:00,14.91891891891892,14.91891891891892,19.975690622132264 + 02/20 01:20:00,14.944144144144144,14.944144144144144,19.981168725174834 + 02/20 01:30:00,14.96936936936937,14.96936936936937,19.986492240584889 + 02/20 01:40:00,14.994594594594595,14.994594594594595,19.991651611101206 + 02/20 01:50:00,15.01981981981982,15.01981981981982,19.996548853715237 + 02/20 02:00:00,15.045045045045045,15.045045045045045,20.00138552556233 + 02/20 02:10:00,15.045045045045045,15.045045045045045,20.005545884440534 + 02/20 02:20:00,15.045045045045045,15.045045045045045,20.009486042550408 + 02/20 02:30:00,15.045045045045045,15.045045045045045,20.01313397290133 + 02/20 02:40:00,15.045045045045045,15.045045045045045,20.016446103514626 + 02/20 02:50:00,15.045045045045045,15.045045045045045,20.019568421201865 + 02/20 03:00:00,15.045045045045045,15.045045045045045,20.022488718948077 + 02/20 03:10:00,15.045045045045045,15.045045045045045,20.0250147373724 + 02/20 03:20:00,15.045045045045045,15.045045045045045,20.02760088108563 + 02/20 03:30:00,15.045045045045045,15.045045045045045,20.030232122025219 + 02/20 03:40:00,15.045045045045045,15.045045045045045,20.0330001249858 + 02/20 03:50:00,15.045045045045045,15.045045045045045,20.03591558266583 + 02/20 04:00:00,15.045045045045045,15.045045045045045,20.038918807362003 + 02/20 04:10:00,15.045045045045045,15.045045045045045,20.041955588263126 + 02/20 04:20:00,15.045045045045045,15.045045045045045,20.044754389916546 + 02/20 04:30:00,15.045045045045045,15.045045045045045,20.047438291148766 + 02/20 04:40:00,15.045045045045045,15.045045045045045,20.050011683392577 + 02/20 04:50:00,15.045045045045045,15.045045045045045,20.0524708622035 + 02/20 05:00:00,15.045045045045045,15.045045045045045,20.05483238633963 + 02/20 05:10:00,15.066066066066066,15.066066066066066,20.05725908559803 + 02/20 05:20:00,15.087087087087087,15.087087087087087,20.059457139944848 + 02/20 05:30:00,15.108108108108109,15.108108108108109,20.0617233298091 + 02/20 05:40:00,15.12912912912913,15.12912912912913,20.063941393902817 + 02/20 05:50:00,15.15015015015015,15.15015015015015,20.066149198183035 + 02/20 06:00:00,15.17117117117117,15.17117117117117,20.06835101616059 + 02/20 06:10:00,15.196396396396397,15.196396396396397,20.07048698845093 + 02/20 06:20:00,15.22162162162162,15.22162162162162,20.072540783167079 + 02/20 06:30:00,15.246846846846847,15.246846846846847,20.074568395613598 + 02/20 06:40:00,15.272072072072073,15.272072072072073,20.076522191630205 + 02/20 06:50:00,15.297297297297297,15.297297297297297,20.078447964947924 + 02/20 07:00:00,15.322522522522523,15.322522522522523,20.080283232820205 + 02/20 07:10:00,15.343543543543543,15.343543543543543,20.10399741370355 + 02/20 07:20:00,15.364564564564564,15.364564564564564,20.10530470410114 + 02/20 07:30:00,15.385585585585586,15.385585585585586,20.106314266345973 + 02/20 07:40:00,15.406606606606607,15.406606606606607,20.10643912806022 + 02/20 07:50:00,15.427627627627628,15.427627627627628,20.10576420361429 + 02/20 08:00:00,15.448648648648648,15.448648648648648,20.104710327225346 + 02/20 08:10:00,15.402402402402402,15.402402402402402,18.704853230718049 + 02/20 08:20:00,15.356156156156157,15.356156156156157,18.538149292744696 + 02/20 08:30:00,15.30990990990991,15.30990990990991,18.470231737893039 + 02/20 08:40:00,15.263663663663664,15.263663663663664,18.414560145887 + 02/20 08:50:00,15.217417417417418,15.217417417417418,18.36812164152666 + 02/20 09:00:00,15.17117117117117,15.17117117117117,18.327550239533179 + 02/20 09:10:00,15.078678678678678,15.078678678678678,18.289569589272959 + 02/20 09:20:00,14.986186186186187,14.986186186186187,18.244868913352307 + 02/20 09:30:00,14.893693693693694,14.893693693693694,18.210937856909259 + 02/20 09:40:00,14.801201201201203,14.801201201201203,18.17838393968608 + 02/20 09:50:00,14.70870870870871,14.70870870870871,18.14719691105408 + 02/20 10:00:00,14.616216216216217,14.616216216216217,18.11737285253984 + 02/20 10:10:00,14.544744744744746,14.544744744744746,18.08819826330488 + 02/20 10:20:00,14.473273273273274,14.473273273273274,18.052641900899006 + 02/20 10:30:00,14.401801801801803,14.401801801801803,18.02714297347958 + 02/20 10:40:00,14.33033033033033,14.33033033033033,18.002992594280216 + 02/20 10:50:00,14.25885885885886,14.25885885885886,17.979689426850518 + 02/20 11:00:00,14.187387387387388,14.187387387387388,17.95721848867241 + 02/20 11:10:00,14.12012012012012,14.12012012012012,17.936612561250234 + 02/20 11:20:00,14.052852852852853,14.052852852852853,17.918128398311649 + 02/20 11:30:00,13.985585585585586,13.985585585585586,17.90036658560033 + 02/20 11:40:00,13.91831831831832,13.91831831831832,17.883709192515818 + 02/20 11:50:00,13.851051051051052,13.851051051051052,17.86782163199492 + 02/20 12:00:00,13.783783783783785,13.783783783783785,17.85260829547951 + 02/20 12:10:00,13.758558558558559,13.758558558558559,17.838207003067799 + 02/20 12:20:00,13.733333333333335,13.733333333333335,17.825034510787796 + 02/20 12:30:00,13.708108108108109,13.708108108108109,17.812485786877994 + 02/20 12:40:00,13.682882882882883,13.682882882882883,17.80059567703186 + 02/20 12:50:00,13.657657657657659,13.657657657657659,17.78946412690243 + 02/20 13:00:00,13.632432432432433,13.632432432432433,17.779002559621703 + 02/20 13:10:00,13.611411411411412,13.611411411411412,17.76950279813976 + 02/20 13:20:00,13.590390390390392,13.590390390390392,17.760773684084684 + 02/20 13:30:00,13.56936936936937,13.56936936936937,17.752858982830007 + 02/20 13:40:00,13.548348348348349,13.548348348348349,17.745801013546588 + 02/20 13:50:00,13.527327327327328,13.527327327327328,17.739723971917937 + 02/20 14:00:00,13.506306306306307,13.506306306306307,17.73474101071771 + 02/20 14:10:00,13.481081081081081,13.481081081081081,17.729352471621064 + 02/20 14:20:00,13.455855855855857,13.455855855855857,17.72419244380705 + 02/20 14:30:00,13.430630630630632,13.430630630630632,17.719502183181857 + 02/20 14:40:00,13.405405405405407,13.405405405405407,17.714949492929688 + 02/20 14:50:00,13.380180180180182,13.380180180180182,17.710284823958835 + 02/20 15:00:00,13.354954954954956,13.354954954954956,17.7054755677379 + 02/20 15:10:00,13.333933933933935,13.333933933933935,17.701883003411028 + 02/20 15:20:00,13.312912912912914,13.312912912912914,17.698283740799334 + 02/20 15:30:00,13.291891891891894,13.291891891891894,17.695072089142664 + 02/20 15:40:00,13.270870870870873,13.270870870870873,17.692533673989915 + 02/20 15:50:00,13.24984984984985,13.24984984984985,17.691376583244819 + 02/20 16:00:00,13.22882882882883,13.22882882882883,17.69098108697643 + 02/20 16:10:00,13.275075075075077,13.275075075075077,19.12472273896697 + 02/20 16:20:00,13.321321321321323,13.321321321321323,19.278294428713147 + 02/20 16:30:00,13.367567567567568,13.367567567567568,19.343688929616169 + 02/20 16:40:00,13.413813813813816,13.413813813813816,19.394114276129373 + 02/20 16:50:00,13.46006006006006,13.46006006006006,19.43668388547078 + 02/20 17:00:00,13.506306306306307,13.506306306306307,19.473309097427135 + 02/20 17:10:00,13.552552552552554,13.552552552552554,19.505089020855878 + 02/20 17:20:00,13.5987987987988,13.5987987987988,19.541808702610653 + 02/20 17:30:00,13.645045045045047,13.645045045045047,19.567341347864994 + 02/20 17:40:00,13.691291291291293,13.691291291291293,19.588709998658275 + 02/20 17:50:00,13.737537537537538,13.737537537537538,19.610366347695185 + 02/20 18:00:00,13.783783783783785,13.783783783783785,19.631138204464628 + 02/20 18:10:00,13.901501501501502,13.901501501501502,19.651282991361979 + 02/20 18:20:00,14.01921921921922,14.01921921921922,19.687750338620746 + 02/20 18:30:00,14.136936936936938,14.136936936936938,19.705604227927389 + 02/20 18:40:00,14.254654654654655,14.254654654654655,19.722395190909955 + 02/20 18:50:00,14.372372372372374,14.372372372372374,19.738022226082955 + 02/20 19:00:00,14.49009009009009,14.49009009009009,19.75254728380129 + 02/20 19:10:00,14.557357357357358,14.557357357357358,19.76652113914799 + 02/20 19:20:00,14.624624624624625,14.624624624624625,19.779695417928175 + 02/20 19:30:00,14.691891891891892,14.691891891891892,19.791988015931368 + 02/20 19:40:00,14.759159159159159,14.759159159159159,19.803601380311045 + 02/20 19:50:00,14.826426426426427,14.826426426426427,19.814577736249775 + 02/20 20:00:00,14.893693693693694,14.893693693693694,19.824996416580587 + 02/20 20:10:00,14.93993993993994,14.93993993993994,19.836339376478276 + 02/20 20:20:00,14.986186186186187,14.986186186186187,19.8470484583842 + 02/20 20:30:00,15.032432432432433,15.032432432432433,19.857356991083586 + 02/20 20:40:00,15.078678678678678,15.078678678678678,19.8672123166429 + 02/20 20:50:00,15.124924924924925,15.124924924924925,19.876690183211463 + 02/20 21:00:00,15.17117117117117,15.17117117117117,19.88584243203222 + 02/20 21:10:00,15.242642642642644,15.242642642642644,19.87141326521921 + 02/20 21:20:00,15.314114114114114,15.314114114114114,19.879566171007299 + 02/20 21:30:00,15.385585585585586,15.385585585585586,19.887601719665385 + 02/20 21:40:00,15.457057057057057,15.457057057057057,19.895560020133364 + 02/20 21:50:00,15.528528528528529,15.528528528528529,19.90342608700062 + 02/20 22:00:00,15.6,15.6,19.91112159866873 + 02/20 22:10:00,15.574774774774774,15.574774774774774,19.917754523123965 + 02/20 22:20:00,15.54954954954955,15.54954954954955,19.92400098048928 + 02/20 22:30:00,15.524324324324324,15.524324324324324,19.929871272948576 + 02/20 22:40:00,15.499099099099098,15.499099099099098,19.935349513187725 + 02/20 22:50:00,15.473873873873874,15.473873873873874,19.940438174525963 + 02/20 23:00:00,15.448648648648648,15.448648648648648,19.945240847247438 + 02/20 23:10:00,15.473873873873874,15.473873873873874,19.94950782375208 + 02/20 23:20:00,15.499099099099098,15.499099099099098,19.953741918087269 + 02/20 23:30:00,15.524324324324324,15.524324324324324,19.957957018732178 + 02/20 23:40:00,15.54954954954955,15.54954954954955,19.962148808539014 + 02/20 23:50:00,15.574774774774774,15.574774774774774,19.966290917220687 + 02/20 24:00:00,15.6,15.6,19.970482699089208 + 02/21 00:10:00,15.6,15.6,19.974693996304724 + 02/21 00:20:00,15.6,15.6,19.978718940751596 + 02/21 00:30:00,15.6,15.6,19.98266541829947 + 02/21 00:40:00,15.6,15.6,19.986438433000463 + 02/21 00:50:00,15.6,15.6,19.990236363315409 + 02/21 01:00:00,15.6,15.6,19.9939742353257 + 02/21 01:10:00,15.6,15.6,19.998832382635759 + 02/21 01:20:00,15.6,15.6,20.00381201560522 + 02/21 01:30:00,15.6,15.6,20.00879263008835 + 02/21 01:40:00,15.6,15.6,20.013902406340333 + 02/21 01:50:00,15.6,15.6,20.019052859377337 + 02/21 02:00:00,15.6,15.6,20.024227443602926 + 02/21 02:10:00,15.6,15.6,20.02908125093489 + 02/21 02:20:00,15.6,15.6,20.03372231820444 + 02/21 02:30:00,15.6,15.6,20.038197264039135 + 02/21 02:40:00,15.6,15.6,20.042517423066174 + 02/21 02:50:00,15.6,15.6,20.046657705041704 + 02/21 03:00:00,15.6,15.6,20.050636912087208 + 02/21 03:10:00,15.6,15.6,20.054323305577598 + 02/21 03:20:00,15.6,15.6,20.057985953344045 + 02/21 03:30:00,15.6,15.6,20.061752561907097 + 02/21 03:40:00,15.6,15.6,20.06557005062848 + 02/21 03:50:00,15.6,15.6,20.069432092992927 + 02/21 04:00:00,15.6,15.6,20.073311897532709 + 02/21 04:10:00,15.6,15.6,20.077283811132224 + 02/21 04:20:00,15.6,15.6,20.08124537914801 + 02/21 04:30:00,15.6,15.6,20.085066768453925 + 02/21 04:40:00,15.6,15.6,20.088744243321508 + 02/21 04:50:00,15.6,15.6,20.092286377921356 + 02/21 05:00:00,15.6,15.6,20.09560871063344 + 02/21 05:10:00,15.6,15.6,20.09839818657953 + 02/21 05:20:00,15.6,15.6,20.1012059296727 + 02/21 05:30:00,15.6,15.6,20.104069745319224 + 02/21 05:40:00,15.6,15.6,20.106994955127875 + 02/21 05:50:00,15.6,15.6,20.109901208391656 + 02/21 06:00:00,15.6,15.6,20.112893190323015 + 02/21 06:10:00,15.6,15.6,20.11611777051486 + 02/21 06:20:00,15.6,15.6,20.11927708716255 + 02/21 06:30:00,15.6,15.6,20.12232554597716 + 02/21 06:40:00,15.6,15.6,20.125211560276669 + 02/21 06:50:00,15.6,15.6,20.12798174254961 + 02/21 07:00:00,15.6,15.6,20.130707515934433 + 02/21 07:10:00,15.6,15.6,18.1239157370105 + 02/21 07:20:00,15.6,15.6,17.88929947233662 + 02/21 07:30:00,15.6,15.6,17.80073693002407 + 02/21 07:40:00,15.6,15.6,17.730105316937629 + 02/21 07:50:00,15.6,15.6,17.673173721826524 + 02/21 08:00:00,15.6,15.6,17.625596885046329 + 02/21 08:10:00,15.6,15.6,16.14069391372152 + 02/21 08:15:00,15.6,15.6,15.922094574210439 + 02/21 08:20:00,15.6,15.6,15.921814855350914 + 02/21 08:30:00,15.6,15.6,15.815243390970691 + 02/21 08:40:00,15.6,15.6,15.725960798414184 + 02/21 08:50:00,15.6,15.6,15.648721110213352 + 02/21 09:00:00,15.6,15.6,15.579762569328093 + 02/21 09:10:00,15.587387387387388,15.587387387387388,15.48891481231148 + 02/21 09:20:00,15.423423423423423,15.423423423423423,15.420888010182024 + 02/21 09:30:00,15.259459459459459,15.259459459459459,15.364514124704512 + 02/21 09:40:00,15.095495495495495,15.095495495495495,15.311554857233173 + 02/21 09:50:00,14.931531531531532,14.931531531531532,15.261568089836457 + 02/21 10:00:00,14.767567567567568,14.767567567567568,15.214283717026762 + 02/21 10:10:00,14.624624624624625,14.624624624624625,15.169048631542268 + 02/21 10:20:00,14.481681681681682,14.481681681681682,15.114929090612299 + 02/21 10:30:00,14.338738738738739,14.338738738738739,15.073366468398956 + 02/21 10:40:00,14.195795795795796,14.195795795795796,15.033388570036922 + 02/21 10:50:00,14.052852852852853,14.052852852852853,14.994919277968803 + 02/21 11:00:00,13.90990990990991,13.90990990990991,14.957846931361429 + 02/21 11:10:00,13.842642642642645,13.842642642642645,14.922740599661673 + 02/21 11:20:00,13.775375375375376,13.775375375375376,14.887669245385315 + 02/21 11:30:00,13.708108108108109,13.708108108108109,14.85456148976438 + 02/21 11:40:00,13.640840840840842,13.640840840840842,14.82484049364536 + 02/21 11:50:00,13.573573573573574,13.573573573573574,14.794548285177092 + 02/21 12:00:00,13.506306306306307,13.506306306306307,14.767218363018614 + 02/21 12:10:00,13.40960960960961,13.40960960960961,14.739591468445609 + 02/21 12:20:00,13.312912912912913,13.312912912912913,14.7243271771718 + 02/21 12:30:00,13.216216216216216,13.216216216216216,14.700139184358497 + 02/21 12:40:00,13.11951951951952,13.11951951951952,14.675842607087978 + 02/21 12:50:00,13.022822822822823,13.022822822822823,14.654754381329227 + 02/21 13:00:00,12.926126126126127,12.926126126126127,14.632391943804875 + 02/21 13:10:00,12.87987987987988,12.87987987987988,14.612840454004103 + 02/21 13:20:00,12.833633633633636,12.833633633633636,14.586462449608858 + 02/21 13:30:00,12.8,12.8,14.569399801295344 + 02/21 13:40:00,12.8,12.8,14.554671169432389 + 02/21 13:50:00,12.8,12.8,14.538447211737664 + 02/21 14:00:00,12.8,12.8,14.523783014570773 + 02/21 14:10:00,12.8,12.8,14.507351951816258 + 02/21 14:20:00,12.8,12.8,14.497814520354579 + 02/21 14:30:00,12.8,12.8,14.482509588124359 + 02/21 14:40:00,12.8,12.8,14.4710638335893 + 02/21 14:50:00,12.8,12.8,14.458353583706277 + 02/21 15:00:00,12.8,12.8,14.450971893110396 + 02/21 15:10:00,12.8,12.8,14.443660018118133 + 02/21 15:20:00,12.8,12.8,14.442296798378422 + 02/21 15:30:00,12.8,12.8,14.43848842933267 + 02/21 15:40:00,12.8,12.8,14.435400286452241 + 02/21 15:50:00,12.8,12.8,14.43500279904362 + 02/21 16:00:00,12.8,12.8,14.432397587770236 + 02/21 16:05:00,12.8,12.8,16.59927896118529 + 02/21 16:10:00,12.8,12.8,16.598884848822917 + 02/21 16:20:00,12.8,12.8,16.849682545984274 + 02/21 16:30:00,12.8,12.8,16.9498226613815 + 02/21 16:40:00,12.8,12.8,17.027857208658685 + 02/21 16:50:00,12.8,12.8,17.0887245871674 + 02/21 17:00:00,12.8,12.8,17.13773512664894 + 02/21 17:10:00,12.8,12.8,17.207519996734246 + 02/21 17:20:00,12.8,12.8,17.26668963417932 + 02/21 17:30:00,12.863063063063063,12.863063063063063,17.30137387627831 + 02/21 17:40:00,12.934534534534535,12.934534534534535,17.332412460945265 + 02/21 17:50:00,13.006006006006008,13.006006006006008,17.360197161392024 + 02/21 18:00:00,13.077477477477478,13.077477477477478,17.38469036268676 + 02/21 18:10:00,13.148948948948949,13.148948948948949,17.419775068071738 + 02/21 18:20:00,13.220420420420421,13.220420420420421,17.44685929665784 + 02/21 18:30:00,13.291891891891894,13.291891891891894,17.46704842007277 + 02/21 18:40:00,13.363363363363364,13.363363363363364,17.48587535928216 + 02/21 18:50:00,13.434834834834835,13.434834834834835,17.503333345789863 + 02/21 19:00:00,13.506306306306307,13.506306306306307,17.519263178427189 + 02/21 19:10:00,13.552552552552554,13.552552552552554,17.533582166629225 + 02/21 19:20:00,13.5987987987988,13.5987987987988,17.54703182045562 + 02/21 19:30:00,13.645045045045047,13.645045045045047,17.55937832000813 + 02/21 19:40:00,13.691291291291293,13.691291291291293,17.570810756346057 + 02/21 19:50:00,13.737537537537538,13.737537537537538,17.581411797741159 + 02/21 20:00:00,13.783783783783785,13.783783783783785,17.591276256868349 + 02/21 20:10:00,13.804804804804805,13.804804804804805,17.6141528256593 + 02/21 20:20:00,13.825825825825828,13.825825825825828,17.624408892913338 + 02/21 20:30:00,13.846846846846848,13.846846846846848,17.633801870110806 + 02/21 20:40:00,13.867867867867869,13.867867867867869,17.6428139040596 + 02/21 20:50:00,13.88888888888889,13.88888888888889,17.651425760526089 + 02/21 21:00:00,13.90990990990991,13.90990990990991,17.659653907598139 + 02/21 21:10:00,14.006606606606607,14.006606606606607,17.64455456592596 + 02/21 21:20:00,14.103303303303303,14.103303303303303,17.65587375473462 + 02/21 21:30:00,14.2,14.2,17.66275780611111 + 02/21 21:40:00,14.296696696696696,14.296696696696696,17.669523397117403 + 02/21 21:50:00,14.393393393393394,14.393393393393394,17.676235973368806 + 02/21 22:00:00,14.49009009009009,14.49009009009009,17.682878341860375 + 02/21 22:10:00,14.511111111111111,14.511111111111111,17.690449781603957 + 02/21 22:20:00,14.532132132132132,14.532132132132132,17.698829176411509 + 02/21 22:30:00,14.553153153153153,14.553153153153153,17.70686535184361 + 02/21 22:40:00,14.574174174174175,14.574174174174175,17.714900388540106 + 02/21 22:50:00,14.595195195195196,14.595195195195196,17.722613350850474 + 02/21 23:00:00,14.616216216216217,14.616216216216217,17.730044734542959 + 02/21 23:10:00,14.616216216216217,14.616216216216217,19.10727825624657 + 02/21 23:20:00,14.616216216216217,14.616216216216217,19.250818109502 + 02/21 23:30:00,14.616216216216217,14.616216216216217,19.31403460858693 + 02/21 23:40:00,14.616216216216217,14.616216216216217,19.363461020536346 + 02/21 23:50:00,14.616216216216217,14.616216216216217,19.403271800426255 + 02/21 24:00:00,14.616216216216217,14.616216216216217,19.436651550292628 + 02/22 00:10:00,14.544744744744746,14.544744744744746,19.465240725301514 + 02/22 00:20:00,14.473273273273274,14.473273273273274,19.48987539602579 + 02/22 00:30:00,14.401801801801803,14.401801801801803,19.511552709428878 + 02/22 00:40:00,14.33033033033033,14.33033033033033,19.530711033420006 + 02/22 00:50:00,14.25885885885886,14.25885885885886,19.547856905893878 + 02/22 01:00:00,14.187387387387388,14.187387387387388,19.56323265341358 + 02/22 01:10:00,14.187387387387388,14.187387387387388,19.57667754783148 + 02/22 01:20:00,14.187387387387388,14.187387387387388,19.589720304373555 + 02/22 01:30:00,14.187387387387388,14.187387387387388,19.602008103868167 + 02/22 01:40:00,14.187387387387389,14.187387387387389,19.613809813148469 + 02/22 01:50:00,14.187387387387388,14.187387387387388,19.62502383005188 + 02/22 02:00:00,14.187387387387388,14.187387387387388,19.635815447432173 + 02/22 02:10:00,14.25885885885886,14.25885885885886,19.64732380593617 + 02/22 02:20:00,14.33033033033033,14.33033033033033,19.659148634156688 + 02/22 02:30:00,14.401801801801803,14.401801801801803,19.670652866738388 + 02/22 02:40:00,14.473273273273274,14.473273273273274,19.681941178516899 + 02/22 02:50:00,14.544744744744746,14.544744744744746,19.692838640767485 + 02/22 03:00:00,14.616216216216217,14.616216216216217,19.703486761745788 + 02/22 03:10:00,14.662462462462463,14.662462462462463,19.714749780390109 + 02/22 03:20:00,14.70870870870871,14.70870870870871,19.72580985697889 + 02/22 03:30:00,14.754954954954954,14.754954954954954,19.736607390723387 + 02/22 03:40:00,14.8012012012012,14.8012012012012,19.747133243739204 + 02/22 03:50:00,14.847447447447447,14.847447447447447,19.757589031140446 + 02/22 04:00:00,14.893693693693694,14.893693693693694,19.76789599958414 + 02/22 04:10:00,14.893693693693694,14.893693693693694,19.775790650130586 + 02/22 04:20:00,14.893693693693694,14.893693693693694,19.78298307480099 + 02/22 04:30:00,14.893693693693694,14.893693693693694,19.78975823560705 + 02/22 04:40:00,14.893693693693694,14.893693693693694,19.796154610560256 + 02/22 04:50:00,14.893693693693694,14.893693693693694,19.802322766032114 + 02/22 05:00:00,14.893693693693694,14.893693693693694,19.80834679839237 + 02/22 05:10:00,14.91891891891892,14.91891891891892,19.817316270026326 + 02/22 05:20:00,14.944144144144144,14.944144144144144,19.825658775968046 + 02/22 05:30:00,14.96936936936937,14.96936936936937,19.833633406793479 + 02/22 05:40:00,14.994594594594595,14.994594594594595,19.841301643216455 + 02/22 05:50:00,15.01981981981982,15.01981981981982,19.848745614995598 + 02/22 06:00:00,15.045045045045045,15.045045045045045,19.856022778909368 + 02/22 06:10:00,15.091291291291292,15.091291291291292,19.861359950524049 + 02/22 06:20:00,15.137537537537538,15.137537537537538,19.866976095391203 + 02/22 06:30:00,15.183783783783785,15.183783783783785,19.872786961318888 + 02/22 06:40:00,15.23003003003003,15.23003003003003,19.878795940405554 + 02/22 06:50:00,15.276276276276276,15.276276276276276,19.88490603051221 + 02/22 07:00:00,15.322522522522523,15.322522522522523,19.8910785983552 + 02/22 07:10:00,15.343543543543543,15.343543543543543,17.878450203881309 + 02/22 07:20:00,15.364564564564564,15.364564564564564,17.64513197534106 + 02/22 07:30:00,15.385585585585586,15.385585585585586,17.55951458474128 + 02/22 07:40:00,15.406606606606607,15.406606606606607,17.49267112208042 + 02/22 07:50:00,15.427627627627628,15.427627627627628,17.43992223820313 + 02/22 08:00:00,15.448648648648648,15.448648648648648,17.396412834775448 + 02/22 08:10:00,15.402402402402402,15.402402402402402,15.908586445275092 + 02/22 08:20:00,15.356156156156157,15.356156156156157,15.690736463199054 + 02/22 08:30:00,15.30990990990991,15.30990990990991,15.589031121824148 + 02/22 08:40:00,15.263663663663664,15.263663663663664,15.505491440942456 + 02/22 08:50:00,15.217417417417418,15.217417417417418,15.435998384838904 + 02/22 09:00:00,15.17117117117117,15.17117117117117,15.375990867861847 + 02/22 09:05:00,15.124924924924925,15.124924924924925,15.297324154781603 + 02/22 09:10:00,15.124924924924925,15.124924924924925,15.297060293045917 + 02/22 09:20:00,15.078678678678678,15.078678678678678,15.240968888970711 + 02/22 09:30:00,15.032432432432433,15.032432432432433,15.198019089922547 + 02/22 09:40:00,14.986186186186187,14.986186186186187,15.158418068340988 + 02/22 09:50:00,14.93993993993994,14.93993993993994,15.121321406161137 + 02/22 10:00:00,14.893693693693694,14.893693693693694,15.08612591545855 + 02/22 10:10:00,14.847447447447447,14.847447447447447,15.05215432498794 + 02/22 10:20:00,14.8012012012012,14.8012012012012,15.009124674051784 + 02/22 10:30:00,14.754954954954954,14.754954954954954,14.977896251329565 + 02/22 10:40:00,14.70870870870871,14.70870870870871,14.94753567762821 + 02/22 10:50:00,14.662462462462463,14.662462462462463,14.918050663518166 + 02/22 11:00:00,14.616216216216217,14.616216216216217,14.89004625627138 + 02/22 11:10:00,14.477477477477479,14.477477477477479,14.857955106590321 + 02/22 11:20:00,14.338738738738739,14.338738738738739,14.824776662405304 + 02/22 11:30:00,14.2,14.2,14.793114957124154 + 02/22 11:40:00,14.061261261261262,14.061261261261262,14.763325177094313 + 02/22 11:50:00,13.922522522522524,13.922522522522524,14.733637674728066 + 02/22 12:00:00,13.783783783783785,13.783783783783785,14.706888194861597 + 02/22 12:10:00,13.712312312312314,13.712312312312314,14.681422128651788 + 02/22 12:20:00,13.640840840840842,13.640840840840842,14.668420342537499 + 02/22 12:30:00,13.56936936936937,13.56936936936937,14.647853202365623 + 02/22 12:40:00,13.497897897897899,13.497897897897899,14.627381308721095 + 02/22 12:50:00,13.426426426426428,13.426426426426428,14.611991775544098 + 02/22 13:00:00,13.354954954954956,13.354954954954956,14.59742080525581 + 02/22 13:10:00,13.283483483483485,13.283483483483485,14.585689296820009 + 02/22 13:20:00,13.212012012012013,13.212012012012013,14.568603505909671 + 02/22 13:30:00,13.140540540540542,13.140540540540542,14.56077280586822 + 02/22 13:40:00,13.06906906906907,13.06906906906907,14.556764680265195 + 02/22 13:50:00,12.997597597597599,12.997597597597599,14.551650116764272 + 02/22 14:00:00,12.926126126126127,12.926126126126127,14.549985977258393 + 02/22 14:10:00,12.951351351351353,12.951351351351353,14.54728030296956 + 02/22 14:20:00,12.976576576576577,12.976576576576577,14.551286197064787 + 02/22 14:30:00,13.001801801801803,13.001801801801803,14.549678695785542 + 02/22 14:40:00,13.027027027027028,13.027027027027028,14.551603694660554 + 02/22 14:50:00,13.052252252252253,13.052252252252253,14.550521993781885 + 02/22 15:00:00,13.077477477477478,13.077477477477478,14.551380359197433 + 02/22 15:10:00,13.312912912912914,13.312912912912914,14.551014853031545 + 02/22 15:20:00,13.548348348348349,13.548348348348349,14.567714623505216 + 02/22 15:30:00,13.783783783783785,13.783783783783785,14.579164502515536 + 02/22 15:40:00,14.01921921921922,14.01921921921922,14.589521162374023 + 02/22 15:50:00,14.254654654654655,14.254654654654655,14.599866833526927 + 02/22 16:00:00,14.49009009009009,14.49009009009009,14.60555260078305 + 02/22 16:05:00,14.464864864864865,14.464864864864865,16.756367911257063 + 02/22 16:10:00,14.464864864864865,14.464864864864865,16.755951038904457 + 02/22 16:20:00,14.439639639639639,14.439639639639639,17.006219122551739 + 02/22 16:30:00,14.414414414414415,14.414414414414415,17.106591935372749 + 02/22 16:40:00,14.389189189189189,14.389189189189189,17.184100457433869 + 02/22 16:50:00,14.363963963963965,14.363963963963965,17.24498186195579 + 02/22 17:00:00,14.338738738738739,14.338738738738739,17.29198356566928 + 02/22 17:10:00,14.384984984984986,14.384984984984986,17.358570946723267 + 02/22 17:20:00,14.431231231231232,14.431231231231232,17.412732738041343 + 02/22 17:30:00,14.477477477477479,14.477477477477479,17.44292881612352 + 02/22 17:40:00,14.523723723723723,14.523723723723723,17.46956443579889 + 02/22 17:50:00,14.56996996996997,14.56996996996997,17.493622474893188 + 02/22 18:00:00,14.616216216216217,14.616216216216217,17.515565998015423 + 02/22 18:10:00,14.616216216216217,14.616216216216217,17.547636505071766 + 02/22 18:20:00,14.616216216216217,14.616216216216217,17.56976537341231 + 02/22 18:30:00,14.616216216216217,14.616216216216217,17.58631116866455 + 02/22 18:40:00,14.616216216216217,14.616216216216217,17.601672922115158 + 02/22 18:50:00,14.616216216216217,14.616216216216217,17.615929460228228 + 02/22 19:00:00,14.616216216216217,14.616216216216217,17.629124004021496 + 02/22 19:10:00,14.595195195195196,14.595195195195196,17.642107780805845 + 02/22 19:20:00,14.574174174174175,14.574174174174175,17.654624349635303 + 02/22 19:30:00,14.553153153153153,14.553153153153153,17.666327164131347 + 02/22 19:40:00,14.532132132132132,14.532132132132132,17.677397112385586 + 02/22 19:50:00,14.511111111111111,14.511111111111111,17.687758228836818 + 02/22 20:00:00,14.49009009009009,14.49009009009009,17.697523981865524 + 02/22 20:10:00,14.49009009009009,14.49009009009009,17.719028051497287 + 02/22 20:20:00,14.49009009009009,14.49009009009009,17.727311568240475 + 02/22 20:30:00,14.49009009009009,14.49009009009009,17.734873449736868 + 02/22 20:40:00,14.49009009009009,14.49009009009009,17.741963930293296 + 02/22 20:50:00,14.49009009009009,14.49009009009009,17.748718102278663 + 02/22 21:00:00,14.49009009009009,14.49009009009009,17.755195065907058 + 02/22 21:10:00,14.49009009009009,14.49009009009009,17.739667278587665 + 02/22 21:20:00,14.49009009009009,14.49009009009009,17.75058668704191 + 02/22 21:30:00,14.49009009009009,14.49009009009009,17.756879525364817 + 02/22 21:40:00,14.49009009009009,14.49009009009009,17.762930330473308 + 02/22 21:50:00,14.49009009009009,14.49009009009009,17.76877884053597 + 02/22 22:00:00,14.49009009009009,14.49009009009009,17.774426991001144 + 02/22 22:10:00,14.511111111111111,14.511111111111111,17.780251872284933 + 02/22 22:20:00,14.532132132132132,14.532132132132132,17.785481182016846 + 02/22 22:30:00,14.553153153153153,14.553153153153153,17.790617949782435 + 02/22 22:40:00,14.574174174174175,14.574174174174175,17.79554162791745 + 02/22 22:50:00,14.595195195195196,14.595195195195196,17.80032766649279 + 02/22 23:00:00,14.616216216216217,14.616216216216217,17.805120042387338 + 02/22 23:10:00,14.687687687687689,14.687687687687689,19.169964485213855 + 02/22 23:20:00,14.759159159159159,14.759159159159159,19.312389659200904 + 02/22 23:30:00,14.83063063063063,14.83063063063063,19.375270894252468 + 02/22 23:40:00,14.902102102102102,14.902102102102102,19.424693983085605 + 02/22 23:50:00,14.973573573573575,14.973573573573575,19.46504082910038 + 02/22 24:00:00,15.045045045045045,15.045045045045045,19.499401727532367 + 02/23 00:10:00,15.162762762762763,15.162762762762763,19.526011953685946 + 02/23 00:20:00,15.28048048048048,15.28048048048048,19.550668670294458 + 02/23 00:30:00,15.398198198198199,15.398198198198199,19.57294187736877 + 02/23 00:40:00,15.515915915915916,15.515915915915916,19.593726912742218 + 02/23 00:50:00,15.6,15.6,19.61298657323271 + 02/23 01:00:00,15.6,15.6,19.630901802930944 + 02/23 01:10:00,15.6,15.6,19.647138536268299 + 02/23 01:20:00,15.6,15.6,19.662187736044247 + 02/23 01:30:00,15.6,15.6,19.676179236280864 + 02/23 01:40:00,15.6,15.6,19.689263271027984 + 02/23 01:50:00,15.6,15.6,19.701496571832658 + 02/23 02:00:00,15.6,15.6,19.712968485669827 + 02/23 02:10:00,15.6,15.6,19.726006117888418 + 02/23 02:20:00,15.6,15.6,19.738882693366727 + 02/23 02:30:00,15.6,15.6,19.75156170175151 + 02/23 02:40:00,15.6,15.6,19.76409203765959 + 02/23 02:50:00,15.6,15.6,19.77640769510779 + 02/23 03:00:00,15.6,15.6,19.78850179417687 + 02/23 03:10:00,15.6,15.6,19.79878705565269 + 02/23 03:20:00,15.6,15.6,19.808832547336328 + 02/23 03:30:00,15.6,15.6,19.818797248107818 + 02/23 03:40:00,15.6,15.6,19.828619217774518 + 02/23 03:50:00,15.6,15.6,19.838396817574343 + 02/23 04:00:00,15.6,15.6,19.847990503219245 + 02/23 04:10:00,15.6,15.6,19.859111356397329 + 02/23 04:20:00,15.6,15.6,19.870078257876658 + 02/23 04:30:00,15.6,15.6,19.88071833228994 + 02/23 04:40:00,15.6,15.6,19.8910589503698 + 02/23 04:50:00,15.6,15.6,19.90102908655799 + 02/23 05:00:00,15.6,15.6,19.910727535328854 + 02/23 05:10:00,15.6,15.6,19.919161406137357 + 02/23 05:20:00,15.6,15.6,19.92730359931832 + 02/23 05:30:00,15.6,15.6,19.935130823151625 + 02/23 05:40:00,15.6,15.6,19.942635505288626 + 02/23 05:50:00,15.6,15.6,19.949815579143598 + 02/23 06:00:00,15.6,15.6,19.956829481222269 + 02/23 06:10:00,15.6,15.6,19.964641719982369 + 02/23 06:20:00,15.6,15.6,19.97223377889191 + 02/23 06:30:00,15.6,15.6,19.97954996017159 + 02/23 06:40:00,15.6,15.6,19.986553110135384 + 02/23 06:50:00,15.6,15.6,19.9934209489671 + 02/23 07:00:00,15.6,15.6,20.000080409527599 + 02/23 07:10:00,15.6,15.6,17.992339416022106 + 02/23 07:20:00,15.6,15.6,17.759993542597547 + 02/23 07:30:00,15.6,15.6,17.674529111733258 + 02/23 07:40:00,15.6,15.6,17.60727029262575 + 02/23 07:50:00,15.6,15.6,17.553830926658465 + 02/23 08:00:00,15.6,15.6,17.50966913033134 + 02/23 08:10:00,15.6,15.6,16.02566847621483 + 02/23 08:15:00,15.6,15.6,15.80930172960114 + 02/23 08:20:00,15.6,15.6,15.80924079630484 + 02/23 08:30:00,15.6,15.6,15.706095948780297 + 02/23 08:40:00,15.6,15.6,15.620420080725792 + 02/23 08:50:00,15.6,15.6,15.547466504822902 + 02/23 09:00:00,15.6,15.6,15.483422752153605 + 02/23 09:10:00,15.6,15.6,15.398832963345003 + 02/23 09:20:00,15.6,15.6,15.336659276698772 + 02/23 09:30:00,15.6,15.6,15.28618809932959 + 02/23 09:40:00,15.6,15.6,15.238950288974323 + 02/23 09:50:00,15.6,15.6,15.194582543293887 + 02/23 10:00:00,15.6,15.6,15.152824546870857 + 02/23 10:10:00,15.6,15.6,15.112551264565282 + 02/23 10:20:00,15.6,15.6,15.063658826755669 + 02/23 10:30:00,15.6,15.6,15.027079243800986 + 02/23 10:40:00,15.6,15.6,14.99213346407075 + 02/23 10:50:00,15.545345345345345,15.545345345345345,14.958745490675394 + 02/23 11:00:00,15.448648648648648,15.448648648648648,14.92861369410646 + 02/23 11:10:00,15.381381381381381,15.381381381381381,14.897622849842597 + 02/23 11:20:00,15.314114114114114,15.314114114114114,14.86631031320959 + 02/23 11:30:00,15.246846846846847,15.246846846846847,14.839837681864305 + 02/23 11:40:00,15.17957957957958,15.17957957957958,14.814820910637219 + 02/23 11:50:00,15.112312312312313,15.112312312312313,14.791793657660503 + 02/23 12:00:00,15.045045045045045,15.045045045045045,14.76985637475085 + 02/23 12:10:00,14.998798798798799,14.998798798798799,14.751536652221607 + 02/23 12:20:00,14.952552552552552,14.952552552552552,14.742586932884866 + 02/23 12:30:00,14.906306306306306,14.906306306306306,14.727467245869214 + 02/23 12:40:00,14.86006006006006,14.86006006006006,14.710291090259322 + 02/23 12:50:00,14.813813813813815,14.813813813813815,14.695960356530483 + 02/23 13:00:00,14.767567567567568,14.767567567567568,14.681176747103667 + 02/23 13:10:00,14.742342342342342,14.742342342342342,14.66426070840689 + 02/23 13:20:00,14.717117117117116,14.717117117117116,14.640223955060343 + 02/23 13:30:00,14.691891891891892,14.691891891891892,14.622811363213712 + 02/23 13:40:00,14.666666666666668,14.666666666666668,14.609515683866235 + 02/23 13:50:00,14.641441441441442,14.641441441441442,14.594714587652918 + 02/23 14:00:00,14.616216216216217,14.616216216216217,14.584856378847194 + 02/23 14:10:00,14.56996996996997,14.56996996996997,14.573015658780854 + 02/23 14:20:00,14.523723723723723,14.523723723723723,14.56991067308808 + 02/23 14:30:00,14.477477477477479,14.477477477477479,14.561965453927297 + 02/23 14:40:00,14.431231231231232,14.431231231231232,14.556173605984633 + 02/23 14:50:00,14.384984984984986,14.384984984984986,14.54865631121103 + 02/23 15:00:00,14.338738738738739,14.338738738738739,14.540600478153819 + 02/23 15:10:00,14.292492492492493,14.292492492492493,14.534029114414839 + 02/23 15:20:00,14.246246246246246,14.246246246246246,14.530059798516096 + 02/23 15:30:00,14.2,14.2,14.524572407699124 + 02/23 15:40:00,14.153753753753755,14.153753753753755,14.516335940617918 + 02/23 15:50:00,14.107507507507508,14.107507507507508,14.51167650714631 + 02/23 16:00:00,14.061261261261262,14.061261261261262,14.506348688314905 + 02/23 16:05:00,14.082282282282283,14.082282282282283,16.66854176569619 + 02/23 16:10:00,14.082282282282283,14.082282282282283,16.668035884322437 + 02/23 16:20:00,14.103303303303303,14.103303303303303,16.915916979737525 + 02/23 16:30:00,14.124324324324324,14.124324324324324,17.00906537516586 + 02/23 16:40:00,14.145345345345346,14.145345345345346,17.081913980769156 + 02/23 16:50:00,14.166366366366367,14.166366366366367,17.139707858654757 + 02/23 17:00:00,14.187387387387388,14.187387387387388,17.18596138715752 + 02/23 17:10:00,14.237837837837838,14.237837837837838,17.254640399319329 + 02/23 17:20:00,14.288288288288289,14.288288288288289,17.313061375688159 + 02/23 17:30:00,14.338738738738739,14.338738738738739,17.347859553499906 + 02/23 17:40:00,14.389189189189189,14.389189189189189,17.379515000247168 + 02/23 17:50:00,14.43963963963964,14.43963963963964,17.408721416207908 + 02/23 18:00:00,14.49009009009009,14.49009009009009,17.435725425411268 + 02/23 18:10:00,14.536336336336337,14.536336336336337,17.472359102232475 + 02/23 18:20:00,14.582582582582582,14.582582582582582,17.500717330022359 + 02/23 18:30:00,14.628828828828829,14.628828828828829,17.52210260468032 + 02/23 18:40:00,14.675075075075075,14.675075075075075,17.542171960780555 + 02/23 18:50:00,14.721321321321322,14.721321321321322,17.560599203664738 + 02/23 19:00:00,14.767567567567568,14.767567567567568,17.57750440518512 + 02/23 19:10:00,14.834834834834835,14.834834834834835,17.59470012008973 + 02/23 19:20:00,14.902102102102102,14.902102102102102,17.610822697209259 + 02/23 19:30:00,14.96936936936937,14.96936936936937,17.625982651031273 + 02/23 19:40:00,15.036636636636637,15.036636636636637,17.64031291457479 + 02/23 19:50:00,15.103903903903904,15.103903903903904,17.653962949893744 + 02/23 20:00:00,15.17117117117117,15.17117117117117,17.6669983079394 + 02/23 20:10:00,15.288888888888888,15.288888888888888,17.691662321526655 + 02/23 20:20:00,15.406606606606607,15.406606606606607,17.70364383657575 + 02/23 20:30:00,15.524324324324324,15.524324324324324,17.714853649752678 + 02/23 20:40:00,15.6,15.6,17.725737575460987 + 02/23 20:50:00,15.6,15.6,17.736268828103364 + 02/23 21:00:00,15.6,15.6,17.746434110395048 + 02/23 21:10:00,15.6,15.6,17.73423305961387 + 02/23 21:20:00,15.6,15.6,17.748392635254768 + 02/23 21:30:00,15.6,15.6,17.757549055537319 + 02/23 21:40:00,15.6,15.6,17.7660847712553 + 02/23 21:50:00,15.6,15.6,17.774233206716084 + 02/23 22:00:00,15.6,15.6,17.781987245968069 + 02/23 22:10:00,15.6,15.6,17.789677679207146 + 02/23 22:20:00,15.6,15.6,17.79731242724837 + 02/23 22:30:00,15.6,15.6,17.80483187129706 + 02/23 22:40:00,15.6,15.6,17.812303969842938 + 02/23 22:50:00,15.6,15.6,17.81965776992677 + 02/23 23:00:00,15.6,15.6,17.82689134004966 + 02/23 23:10:00,15.6,15.6,19.208053929091883 + 02/23 23:20:00,15.6,15.6,19.352513659424468 + 02/23 23:30:00,15.6,15.6,19.41709168464743 + 02/23 23:40:00,15.6,15.6,19.46836110321643 + 02/23 23:50:00,15.6,15.6,19.509973706808525 + 02/23 24:00:00,15.6,15.6,19.545126458503114 + 02/24 00:10:00,15.6,15.6,19.57639754063115 + 02/24 00:20:00,15.6,15.6,19.604202982405569 + 02/24 00:30:00,15.6,15.6,19.629271021893105 + 02/24 00:40:00,15.6,15.6,19.652107295854426 + 02/24 00:50:00,15.6,15.6,19.67310572310137 + 02/24 01:00:00,15.6,15.6,19.692463889433769 + 02/24 01:10:00,15.6,15.6,19.710583455069 + 02/24 01:20:00,15.6,15.6,19.727592443662929 + 02/24 01:30:00,15.6,15.6,19.743614640241515 + 02/24 01:40:00,15.6,15.6,19.75878065668356 + 02/24 01:50:00,15.6,15.6,19.77310116709338 + 02/24 02:00:00,15.6,15.6,19.786808904529239 + 02/24 02:10:00,15.6,15.6,19.79994833627366 + 02/24 02:20:00,15.6,15.6,19.81260952206926 + 02/24 02:30:00,15.6,15.6,19.824760690918969 + 02/24 02:40:00,15.6,15.6,19.83649024658914 + 02/24 02:50:00,15.6,15.6,19.847800958200744 + 02/24 03:00:00,15.6,15.6,19.858794791046923 + 02/24 03:10:00,15.6,15.6,19.86931373405666 + 02/24 03:20:00,15.6,15.6,19.879442578621615 + 02/24 03:30:00,15.6,15.6,19.889150592240524 + 02/24 03:40:00,15.6,15.6,19.898459629747557 + 02/24 03:50:00,15.6,15.6,19.90749488025322 + 02/24 04:00:00,15.6,15.6,19.91621260557637 + 02/24 04:10:00,15.6,15.6,19.924901461053673 + 02/24 04:20:00,15.6,15.6,19.933423535794366 + 02/24 04:30:00,15.6,15.6,19.941750425417955 + 02/24 04:40:00,15.6,15.6,19.95007084939593 + 02/24 04:50:00,15.6,15.6,19.958291462925609 + 02/24 05:00:00,15.6,15.6,19.966407325089869 + 02/24 05:10:00,15.6,15.6,19.974613836029684 + 02/24 05:20:00,15.6,15.6,19.982467466683177 + 02/24 05:30:00,15.6,15.6,19.99013489842976 + 02/24 05:40:00,15.6,15.6,19.997537415934578 + 02/24 05:50:00,15.6,15.6,20.00468599808119 + 02/24 06:00:00,15.6,15.6,20.011597698046399 + 02/24 06:10:00,15.6,15.6,20.017578583214264 + 02/24 06:20:00,15.6,15.6,20.023510605042728 + 02/24 06:30:00,15.6,15.6,20.029443334149645 + 02/24 06:40:00,15.6,15.6,20.035351520817735 + 02/24 06:50:00,15.6,15.6,20.041230537569456 + 02/24 07:00:00,15.6,15.6,20.04702724496308 + 02/24 07:10:00,15.6,15.6,18.03597194592367 + 02/24 07:20:00,15.6,15.6,17.804815159173044 + 02/24 07:30:00,15.6,15.6,17.719976999613036 + 02/24 07:40:00,15.6,15.6,17.652631112084046 + 02/24 07:50:00,15.6,15.6,17.598541944810408 + 02/24 08:00:00,15.6,15.6,17.553555157744154 + 02/24 08:10:00,15.6,15.6,16.06380967609565 + 02/24 08:15:00,15.6,15.6,15.84504066388508 + 02/24 08:20:00,15.6,15.6,15.844878832275784 + 02/24 08:30:00,15.6,15.6,15.738971005140723 + 02/24 08:40:00,15.6,15.6,15.650512918445525 + 02/24 08:50:00,15.6,15.6,15.574612008962907 + 02/24 09:00:00,15.6,15.6,15.50752275275618 + 02/24 09:10:00,15.6,15.6,15.418802215191516 + 02/24 09:20:00,15.6,15.6,15.353212874511332 + 02/24 09:30:00,15.6,15.6,15.299859243976432 + 02/24 09:40:00,15.6,15.6,15.250273892541005 + 02/24 09:50:00,15.6,15.6,15.203932685942135 + 02/24 10:00:00,15.6,15.6,15.160454944402744 + 02/24 10:10:00,15.6,15.6,15.12084073921014 + 02/24 10:20:00,15.557957957957957,15.557957957957957,15.07278856413854 + 02/24 10:30:00,15.46126126126126,15.46126126126126,15.037314720461147 + 02/24 10:40:00,15.364564564564564,15.364564564564564,15.003920043270848 + 02/24 10:50:00,15.267867867867868,15.267867867867868,14.97382912339626 + 02/24 11:00:00,15.17117117117117,15.17117117117117,14.942808933536578 + 02/24 11:10:00,15.103903903903904,15.103903903903904,14.91217419981643 + 02/24 11:20:00,15.036636636636637,15.036636636636637,14.87855573216117 + 02/24 11:30:00,14.96936936936937,14.96936936936937,14.849234431718454 + 02/24 11:40:00,14.902102102102102,14.902102102102102,14.821434797370868 + 02/24 11:50:00,14.834834834834835,14.834834834834835,14.79413505404878 + 02/24 12:00:00,14.767567567567568,14.767567567567568,14.768737930429455 + 02/24 12:10:00,14.696096096096096,14.696096096096096,14.744909624955007 + 02/24 12:20:00,14.624624624624625,14.624624624624625,14.733980083044696 + 02/24 12:30:00,14.553153153153153,14.553153153153153,14.712219866464553 + 02/24 12:40:00,14.481681681681682,14.481681681681682,14.694054806374817 + 02/24 12:50:00,14.41021021021021,14.41021021021021,14.675168986177363 + 02/24 13:00:00,14.338738738738739,14.338738738738739,14.657473822051986 + 02/24 13:10:00,14.313513513513513,14.313513513513513,14.641455816955434 + 02/24 13:20:00,14.288288288288289,14.288288288288289,14.614937452100552 + 02/24 13:30:00,14.263063063063063,14.263063063063063,14.601987147177168 + 02/24 13:40:00,14.237837837837839,14.237837837837839,14.586917557717343 + 02/24 13:50:00,14.212612612612613,14.212612612612613,14.575502124438153 + 02/24 14:00:00,14.187387387387388,14.187387387387388,14.562056235362352 + 02/24 14:10:00,14.14114114114114,14.14114114114114,14.552439731916442 + 02/24 14:20:00,14.094894894894896,14.094894894894896,14.544361101636314 + 02/24 14:30:00,14.04864864864865,14.04864864864865,14.53565665793597 + 02/24 14:40:00,14.002402402402403,14.002402402402403,14.52613503565124 + 02/24 14:50:00,13.956156156156157,13.956156156156157,14.518132929288676 + 02/24 15:00:00,13.90990990990991,13.90990990990991,14.510795117268114 + 02/24 15:10:00,13.935135135135136,13.935135135135136,14.503490938732585 + 02/24 15:20:00,13.960360360360362,13.960360360360362,14.50137356647458 + 02/24 15:30:00,13.985585585585586,13.985585585585586,14.494073979078884 + 02/24 15:40:00,14.010810810810812,14.010810810810812,14.490265143652385 + 02/24 15:50:00,14.036036036036038,14.036036036036038,14.48506424929609 + 02/24 16:00:00,14.061261261261262,14.061261261261262,14.48191228424183 + 02/24 16:05:00,14.061261261261262,14.061261261261262,16.649337504502918 + 02/24 16:10:00,14.061261261261262,14.061261261261262,16.648502608540178 + 02/24 16:20:00,14.061261261261262,14.061261261261262,16.897303959126697 + 02/24 16:30:00,14.061261261261262,14.061261261261262,16.996648226104129 + 02/24 16:40:00,14.061261261261262,14.061261261261262,17.072748156559137 + 02/24 16:50:00,14.061261261261262,14.061261261261262,17.130625662515024 + 02/24 17:00:00,14.061261261261262,14.061261261261262,17.180711767418978 + 02/24 17:10:00,14.107507507507508,14.107507507507508,17.250985695465308 + 02/24 17:20:00,14.153753753753755,14.153753753753755,17.308282018508256 + 02/24 17:30:00,14.2,14.2,17.34200797696244 + 02/24 17:40:00,14.246246246246246,14.246246246246246,17.37365637435158 + 02/24 17:50:00,14.292492492492493,14.292492492492493,17.403140317767975 + 02/24 18:00:00,14.338738738738739,14.338738738738739,17.43070870941677 + 02/24 18:10:00,14.431231231231232,14.431231231231232,17.470181125105389 + 02/24 18:20:00,14.523723723723723,14.523723723723723,17.501009592011063 + 02/24 18:30:00,14.616216216216217,14.616216216216217,17.524603013242698 + 02/24 18:40:00,14.70870870870871,14.70870870870871,17.546665954795438 + 02/24 18:50:00,14.8012012012012,14.8012012012012,17.567034087499189 + 02/24 19:00:00,14.893693693693694,14.893693693693694,17.585705096631544 + 02/24 19:10:00,14.965165165165164,14.965165165165164,17.602531367240809 + 02/24 19:20:00,15.036636636636637,15.036636636636637,17.618199220224566 + 02/24 19:30:00,15.108108108108109,15.108108108108109,17.632780880516767 + 02/24 19:40:00,15.17957957957958,15.17957957957958,17.64647849850882 + 02/24 19:50:00,15.251051051051052,15.251051051051052,17.659364426837738 + 02/24 20:00:00,15.322522522522523,15.322522522522523,17.671582147613085 + 02/24 20:10:00,15.415015015015016,15.415015015015016,17.69594918335276 + 02/24 20:20:00,15.507507507507507,15.507507507507507,17.70736684937353 + 02/24 20:30:00,15.6,15.6,17.718019479520544 + 02/24 20:40:00,15.6,15.6,17.72832381498484 + 02/24 20:50:00,15.6,15.6,17.738258482646868 + 02/24 21:00:00,15.6,15.6,17.74789600343238 + 02/24 21:10:00,15.6,15.6,17.735896119563617 + 02/24 21:20:00,15.6,15.6,17.750760003128986 + 02/24 21:30:00,15.6,15.6,17.760899168805019 + 02/24 21:40:00,15.6,15.6,17.770755584811217 + 02/24 21:50:00,15.6,15.6,17.78036873573261 + 02/24 22:00:00,15.6,15.6,17.789750097358135 + 02/24 22:10:00,15.6,15.6,17.797885060472319 + 02/24 22:20:00,15.6,15.6,17.805808139092937 + 02/24 22:30:00,15.6,15.6,17.81344452683686 + 02/24 22:40:00,15.6,15.6,17.820782904289307 + 02/24 22:50:00,15.6,15.6,17.82779325163936 + 02/24 23:00:00,15.6,15.6,17.834631569443276 + 02/24 23:10:00,15.6,15.6,19.215306331932788 + 02/24 23:20:00,15.6,15.6,19.360229659709316 + 02/24 23:30:00,15.6,15.6,19.425143922475408 + 02/24 23:40:00,15.6,15.6,19.476438836908913 + 02/24 23:50:00,15.6,15.6,19.518001212498523 + 02/24 24:00:00,15.6,15.6,19.552973005623639 + 02/25 00:10:00,15.6,15.6,19.581884622866935 + 02/25 00:20:00,15.6,15.6,19.60742113771809 + 02/25 00:30:00,15.6,15.6,19.630285154694176 + 02/25 00:40:00,15.6,15.6,19.65115401340351 + 02/25 00:50:00,15.6,15.6,19.67036133967617 + 02/25 01:00:00,15.6,15.6,19.68816528658204 + 02/25 01:10:00,15.6,15.6,19.706609513472423 + 02/25 01:20:00,15.6,15.6,19.724130532517284 + 02/25 01:30:00,15.6,15.6,19.740910993605433 + 02/25 01:40:00,15.6,15.6,19.757106176611928 + 02/25 01:50:00,15.6,15.6,19.77273482252666 + 02/25 02:00:00,15.6,15.6,19.787857189292958 + 02/25 02:10:00,15.6,15.6,19.802270395391234 + 02/25 02:20:00,15.6,15.6,19.815817827051338 + 02/25 02:30:00,15.6,15.6,19.828539535120773 + 02/25 02:40:00,15.6,15.6,19.840361335292696 + 02/25 02:50:00,15.6,15.6,19.851398866099843 + 02/25 03:00:00,15.6,15.6,19.86170612423651 + 02/25 03:10:00,15.6,15.6,19.868274410989988 + 02/25 03:20:00,15.6,15.6,19.874783257212749 + 02/25 03:30:00,15.6,15.6,19.88129636769325 + 02/25 03:40:00,15.6,15.6,19.887882828028134 + 02/25 03:50:00,15.6,15.6,19.894549685045737 + 02/25 04:00:00,15.6,15.6,19.901365660874875 + 02/25 04:10:00,15.6,15.6,19.91456489603162 + 02/25 04:20:00,15.6,15.6,19.927381903009406 + 02/25 04:30:00,15.6,15.6,19.939598517490169 + 02/25 04:40:00,15.6,15.6,19.951276714423107 + 02/25 04:50:00,15.6,15.6,19.962421067472599 + 02/25 05:00:00,15.6,15.6,19.973200172269395 + 02/25 05:10:00,15.6,15.6,19.980308616554824 + 02/25 05:20:00,15.6,15.6,19.98715342888402 + 02/25 05:30:00,15.6,15.6,19.99381058871843 + 02/25 05:40:00,15.6,15.6,20.00028341166834 + 02/25 05:50:00,15.6,15.6,20.00661083329697 + 02/25 06:00:00,15.6,15.6,20.012877987097519 + 02/25 06:10:00,15.6,15.6,20.01945747757013 + 02/25 06:20:00,15.6,15.6,20.025905586087064 + 02/25 06:30:00,15.6,15.6,20.03221934148928 + 02/25 06:40:00,15.6,15.6,20.038342920362604 + 02/25 06:50:00,15.6,15.6,20.044441342163237 + 02/25 07:00:00,15.6,15.6,20.050431502501703 + 02/25 07:10:00,15.6,15.6,19.390586780362495 + 02/25 07:20:00,15.6,15.6,19.325793922907275 + 02/25 07:30:00,15.6,15.6,19.300620535028039 + 02/25 07:40:00,15.6,15.6,19.280581591588385 + 02/25 07:50:00,15.6,15.6,19.264135744487207 + 02/25 08:00:00,15.6,15.6,19.249979044330595 + 02/25 08:10:00,15.6,15.6,18.155192637515876 + 02/25 08:20:00,15.6,15.6,18.004539422594865 + 02/25 08:30:00,15.6,15.6,17.936511336146056 + 02/25 08:40:00,15.6,15.6,17.878669075250355 + 02/25 08:50:00,15.6,15.6,17.82841164077333 + 02/25 09:00:00,15.6,15.6,17.782996773520745 + 02/25 09:10:00,15.6,15.6,17.742894936137036 + 02/25 09:20:00,15.6,15.6,17.696685582951287 + 02/25 09:30:00,15.6,15.6,17.661539961845823 + 02/25 09:40:00,15.6,15.6,17.6284284540455 + 02/25 09:50:00,15.486486486486486,15.486486486486486,17.597115652410137 + 02/25 10:00:00,15.322522522522523,15.322522522522523,17.567447363081564 + 02/25 10:10:00,15.158558558558559,15.158558558558559,17.53806737279364 + 02/25 10:20:00,14.994594594594595,14.994594594594595,17.50131835250044 + 02/25 10:30:00,14.83063063063063,14.83063063063063,17.47457590126068 + 02/25 10:40:00,14.666666666666668,14.666666666666668,17.44888563858262 + 02/25 10:50:00,14.502702702702703,14.502702702702703,17.423968498794886 + 02/25 11:00:00,14.338738738738739,14.338738738738739,17.39973097403517 + 02/25 11:10:00,14.221021021021022,14.221021021021022,17.376813840188765 + 02/25 11:20:00,14.103303303303303,14.103303303303303,17.355094250066466 + 02/25 11:30:00,13.985585585585586,13.985585585585586,17.334193783422074 + 02/25 11:40:00,13.867867867867869,13.867867867867869,17.314313530741374 + 02/25 11:50:00,13.750150150150152,13.750150150150152,17.29544111954107 + 02/25 12:00:00,13.632432432432433,13.632432432432433,17.27760522425456 + 02/25 12:10:00,13.586186186186187,13.586186186186187,17.260910506647276 + 02/25 12:20:00,13.539939939939942,13.539939939939942,17.24507908962366 + 02/25 12:30:00,13.493693693693695,13.493693693693695,17.23023763227826 + 02/25 12:40:00,13.447447447447449,13.447447447447449,17.21643025498544 + 02/25 12:50:00,13.401201201201202,13.401201201201202,17.203864769438519 + 02/25 13:00:00,13.354954954954956,13.354954954954956,17.19252552868508 + 02/25 13:10:00,13.30870870870871,13.30870870870871,17.182003741966999 + 02/25 13:20:00,13.262462462462464,13.262462462462464,17.172364727121928 + 02/25 13:30:00,13.216216216216218,13.216216216216218,17.163463618345284 + 02/25 13:40:00,13.169969969969971,13.169969969969971,17.155188649699399 + 02/25 13:50:00,13.123723723723725,13.123723723723725,17.147380798558684 + 02/25 14:00:00,13.077477477477478,13.077477477477478,17.13995879546104 + 02/25 14:10:00,13.006006006006008,13.006006006006008,17.133605731845038 + 02/25 14:20:00,12.934534534534535,12.934534534534535,17.128071944117275 + 02/25 14:30:00,12.863063063063063,12.863063063063063,17.122786060459814 + 02/25 14:40:00,12.8,12.8,17.11783403797977 + 02/25 14:50:00,12.8,12.8,17.111343248800563 + 02/25 15:00:00,12.8,12.8,17.10622223931984 + 02/25 15:10:00,12.8,12.8,17.10292156481103 + 02/25 15:20:00,12.8,12.8,17.099859704112153 + 02/25 15:30:00,12.8,12.8,17.097020232463774 + 02/25 15:40:00,12.833633633633636,12.833633633633636,17.092641711197058 + 02/25 15:50:00,12.87987987987988,12.87987987987988,17.09129873155021 + 02/25 16:00:00,12.926126126126127,12.926126126126127,17.09097778931077 + 02/25 16:10:00,12.951351351351353,12.951351351351353,17.091528062832137 + 02/25 16:20:00,12.976576576576577,12.976576576576577,17.092415318480449 + 02/25 16:30:00,13.001801801801803,13.001801801801803,17.0940805324645 + 02/25 16:40:00,13.027027027027028,13.027027027027028,17.097952251850907 + 02/25 16:50:00,13.052252252252253,13.052252252252253,17.1024484900645 + 02/25 17:00:00,13.077477477477478,13.077477477477478,17.10733799182967 + 02/25 17:10:00,13.148948948948949,13.148948948948949,17.123241704602159 + 02/25 17:20:00,13.220420420420421,13.220420420420421,17.137512946437217 + 02/25 17:30:00,13.291891891891894,13.291891891891894,17.143085566775168 + 02/25 17:40:00,13.363363363363364,13.363363363363364,17.148688269871859 + 02/25 17:50:00,13.434834834834835,13.434834834834835,17.15426107141441 + 02/25 18:00:00,13.506306306306307,13.506306306306307,17.159726891882419 + 02/25 18:10:00,13.552552552552554,13.552552552552554,18.942557321812996 + 02/25 18:20:00,13.5987987987988,13.5987987987988,19.156634088228129 + 02/25 18:30:00,13.645045045045047,13.645045045045047,19.24299689329133 + 02/25 18:40:00,13.691291291291293,13.691291291291293,19.310730168833847 + 02/25 18:50:00,13.737537537537538,13.737537537537538,19.36492524691679 + 02/25 19:00:00,13.783783783783785,13.783783783783785,19.409939140542265 + 02/25 19:10:00,13.922522522522524,13.922522522522524,19.46201157977613 + 02/25 19:20:00,14.061261261261262,14.061261261261262,19.49733625995461 + 02/25 19:30:00,14.2,14.2,19.528522664392989 + 02/25 19:40:00,14.338738738738739,14.338738738738739,19.55683318783565 + 02/25 19:50:00,14.477477477477479,14.477477477477479,19.582840817944996 + 02/25 20:00:00,14.616216216216217,14.616216216216217,19.60676432874718 + 02/25 20:10:00,14.662462462462463,14.662462462462463,19.62867970906393 + 02/25 20:20:00,14.70870870870871,14.70870870870871,19.649164496699087 + 02/25 20:30:00,14.754954954954954,14.754954954954954,19.668188206437283 + 02/25 20:40:00,14.8012012012012,14.8012012012012,19.685938643302216 + 02/25 20:50:00,14.847447447447447,14.847447447447447,19.70244421395943 + 02/25 21:00:00,14.893693693693694,14.893693693693694,19.718023687305327 + 02/25 21:10:00,14.91891891891892,14.91891891891892,19.709817086270236 + 02/25 21:20:00,14.944144144144144,14.944144144144144,19.723197529809949 + 02/25 21:30:00,14.96936936936937,14.96936936936937,19.735843752382008 + 02/25 21:40:00,14.994594594594595,14.994594594594595,19.747699563018729 + 02/25 21:50:00,15.01981981981982,15.01981981981982,19.758943066729264 + 02/25 22:00:00,15.045045045045045,15.045045045045045,19.76971846402939 + 02/25 22:10:00,15.112312312312313,15.112312312312313,19.780496821362108 + 02/25 22:20:00,15.17957957957958,15.17957957957958,19.79108200874346 + 02/25 22:30:00,15.246846846846847,15.246846846846847,19.80139605183794 + 02/25 22:40:00,15.314114114114114,15.314114114114114,19.81145941809249 + 02/25 22:50:00,15.381381381381381,15.381381381381381,19.821396600421889 + 02/25 23:00:00,15.448648648648648,15.448648648648648,19.83113182979829 + 02/25 23:10:00,15.427627627627628,15.427627627627628,19.83988361905148 + 02/25 23:20:00,15.406606606606607,15.406606606606607,19.848222232783919 + 02/25 23:30:00,15.385585585585586,15.385585585585586,19.856035682703689 + 02/25 23:40:00,15.364564564564564,15.364564564564564,19.863525518354448 + 02/25 23:50:00,15.343543543543543,15.343543543543543,19.870638513582063 + 02/25 24:00:00,15.322522522522523,15.322522522522523,19.87740403021653 + 02/26 00:10:00,15.368768768768769,15.368768768768769,19.88454972660164 + 02/26 00:20:00,15.415015015015016,15.415015015015016,19.89157179126327 + 02/26 00:30:00,15.46126126126126,15.46126126126126,19.898600888228534 + 02/26 00:40:00,15.507507507507507,15.507507507507507,19.905638792732835 + 02/26 00:50:00,15.553753753753754,15.553753753753754,19.912612736585019 + 02/26 01:00:00,15.6,15.6,19.91953606508309 + 02/26 01:10:00,15.6,15.6,19.925704832752989 + 02/26 01:20:00,15.6,15.6,19.93177576272322 + 02/26 01:30:00,15.6,15.6,19.93783402518708 + 02/26 01:40:00,15.6,15.6,19.943818052939045 + 02/26 01:50:00,15.6,15.6,19.949735689800485 + 02/26 02:00:00,15.6,15.6,19.95555574745255 + 02/26 02:10:00,15.6,15.6,19.961572450664194 + 02/26 02:20:00,15.6,15.6,19.96740370438132 + 02/26 02:30:00,15.6,15.6,19.972933091311874 + 02/26 02:40:00,15.6,15.6,19.97815923964867 + 02/26 02:50:00,15.6,15.6,19.98310132605952 + 02/26 03:00:00,15.6,15.6,19.987696378924676 + 02/26 03:10:00,15.6,15.6,19.991240849113674 + 02/26 03:20:00,15.6,15.6,19.994776168305358 + 02/26 03:30:00,15.6,15.6,19.998358123621299 + 02/26 03:40:00,15.6,15.6,20.00200599955828 + 02/26 03:50:00,15.6,15.6,20.005618611796444 + 02/26 04:00:00,15.6,15.6,20.009333790013615 + 02/26 04:10:00,15.6,15.6,20.01416694157937 + 02/26 04:20:00,15.6,15.6,20.018990542017755 + 02/26 04:30:00,15.6,15.6,20.023780843134678 + 02/26 04:40:00,15.6,15.6,20.02846596156047 + 02/26 04:50:00,15.6,15.6,20.033123307266448 + 02/26 05:00:00,15.6,15.6,20.037776031442726 + 02/26 05:10:00,15.6,15.6,20.04235544661499 + 02/26 05:20:00,15.6,15.6,20.04668714551304 + 02/26 05:30:00,15.6,15.6,20.050664579478487 + 02/26 05:40:00,15.6,15.6,20.05430201118651 + 02/26 05:50:00,15.6,15.6,20.05771245038261 + 02/26 06:00:00,15.6,15.6,20.06085477466564 + 02/26 06:10:00,15.6,15.6,20.063989988319635 + 02/26 06:20:00,15.6,15.6,20.06700180980047 + 02/26 06:30:00,15.6,15.6,20.069877723533386 + 02/26 06:40:00,15.6,15.6,20.072803377658997 + 02/26 06:50:00,15.6,15.6,20.075693605159097 + 02/26 07:00:00,15.6,15.6,20.078548726272687 + 02/26 07:10:00,15.6,15.6,20.103218630962606 + 02/26 07:20:00,15.6,15.6,20.10496476042156 + 02/26 07:30:00,15.6,15.6,20.10609567729424 + 02/26 07:40:00,15.6,15.6,20.10600022278725 + 02/26 07:50:00,15.6,15.6,20.104976496157098 + 02/26 08:00:00,15.6,15.6,20.103511914295859 + 02/26 08:10:00,15.46126126126126,15.46126126126126,18.695612418071936 + 02/26 08:20:00,15.322522522522523,15.322522522522523,18.526910722747826 + 02/26 08:30:00,15.183783783783783,15.183783783783783,18.457044543240323 + 02/26 08:40:00,15.045045045045045,15.045045045045045,18.39936628958585 + 02/26 08:50:00,14.906306306306306,14.906306306306306,18.35055151582261 + 02/26 09:00:00,14.767567567567568,14.767567567567568,18.307455988861059 + 02/26 09:10:00,14.64984984984985,14.64984984984985,18.26753764427909 + 02/26 09:20:00,14.532132132132132,14.532132132132132,18.221887556534698 + 02/26 09:30:00,14.414414414414415,14.414414414414415,18.18743955508063 + 02/26 09:40:00,14.296696696696696,14.296696696696696,18.155128044901536 + 02/26 09:50:00,14.178978978978979,14.178978978978979,18.124609814534446 + 02/26 10:00:00,14.061261261261262,14.061261261261262,18.095659166024693 + 02/26 10:10:00,13.872072072072072,13.872072072072072,18.067710294016626 + 02/26 10:20:00,13.682882882882883,13.682882882882883,18.032552121504268 + 02/26 10:30:00,13.493693693693695,13.493693693693695,18.00701499499016 + 02/26 10:40:00,13.304504504504506,13.304504504504506,17.982352317463325 + 02/26 10:50:00,13.115315315315316,13.115315315315316,17.958424125902128 + 02/26 11:00:00,12.926126126126127,12.926126126126127,17.93514360128558 + 02/26 11:10:00,12.833633633633636,12.833633633633636,17.913265489386697 + 02/26 11:20:00,12.8,12.8,17.89238624173353 + 02/26 11:30:00,12.8,12.8,17.872483801454487 + 02/26 11:40:00,12.8,12.8,17.853429050992856 + 02/26 11:50:00,12.8,12.8,17.835368185957387 + 02/26 12:00:00,12.8,12.8,17.81816967251252 + 02/26 12:10:00,12.8,12.8,17.802034691787978 + 02/26 12:20:00,12.8,12.8,17.786842202694609 + 02/26 12:30:00,12.8,12.8,17.77252927695738 + 02/26 12:40:00,12.8,12.8,17.7590139600692 + 02/26 12:50:00,12.8,12.8,17.746170142328415 + 02/26 13:00:00,12.8,12.8,17.73416205313467 + 02/26 13:10:00,12.8,12.8,17.722999421566305 + 02/26 13:20:00,12.8,12.8,17.71171760210923 + 02/26 13:30:00,12.8,12.8,17.701092182433308 + 02/26 13:40:00,12.8,12.8,17.691041284778867 + 02/26 13:50:00,12.8,12.8,17.681704470794008 + 02/26 14:00:00,12.8,12.8,17.672987526832026 + 02/26 14:10:00,12.8,12.8,17.664989536504299 + 02/26 14:20:00,12.8,12.8,17.659388047225535 + 02/26 14:30:00,12.8,12.8,17.653323348646688 + 02/26 14:40:00,12.8,12.8,17.648342816168744 + 02/26 14:50:00,12.8,12.8,17.640101767014735 + 02/26 15:00:00,12.8,12.8,17.637831378393309 + 02/26 15:10:00,12.8,12.8,17.633330802016127 + 02/26 15:20:00,12.8,12.8,17.631275343926818 + 02/26 15:30:00,12.8,12.8,17.624995310108618 + 02/26 15:40:00,12.8,12.8,17.626242518782587 + 02/26 15:50:00,12.8,12.8,17.621508673490735 + 02/26 16:00:00,12.8,12.8,17.62229159797512 + 02/26 16:10:00,12.8,12.8,19.058568990502445 + 02/26 16:20:00,12.8,12.8,19.2110361986621 + 02/26 16:30:00,12.8,12.8,19.27716994220651 + 02/26 16:40:00,12.8,12.8,19.32859775471166 + 02/26 16:50:00,12.8,12.8,19.36849765493675 + 02/26 17:00:00,12.8,12.8,19.40311039264498 + 02/26 17:10:00,12.8,12.8,19.434204717324684 + 02/26 17:20:00,12.8,12.8,19.471047796116037 + 02/26 17:30:00,12.8,12.8,19.496542528664436 + 02/26 17:40:00,12.8,12.8,19.520116336117053 + 02/26 17:50:00,12.8,12.8,19.542235119426146 + 02/26 18:00:00,12.8,12.8,19.563166346300326 + 02/26 18:10:00,12.8,12.8,19.58302705505922 + 02/26 18:20:00,12.8,12.8,19.618573359543068 + 02/26 18:30:00,12.8,12.8,19.637192021610955 + 02/26 18:40:00,12.842042042042042,12.842042042042042,19.65481085382945 + 02/26 18:50:00,12.95975975975976,12.95975975975976,19.671090257632966 + 02/26 19:00:00,13.077477477477478,13.077477477477478,19.686242354228303 + 02/26 19:10:00,13.077477477477478,13.077477477477478,19.69991794518591 + 02/26 19:20:00,13.077477477477478,13.077477477477478,19.71228250838123 + 02/26 19:30:00,13.077477477477478,13.077477477477478,19.723631609073565 + 02/26 19:40:00,13.077477477477478,13.077477477477478,19.733929567571786 + 02/26 19:50:00,13.077477477477478,13.077477477477478,19.74350385382419 + 02/26 20:00:00,13.077477477477478,13.077477477477478,19.75244972353695 + 02/26 20:10:00,13.216216216216216,13.216216216216216,19.761511508698385 + 02/26 20:20:00,13.354954954954956,13.354954954954956,19.77109241207216 + 02/26 20:30:00,13.493693693693695,13.493693693693695,19.780390138376327 + 02/26 20:40:00,13.632432432432433,13.632432432432433,19.789693242111335 + 02/26 20:50:00,13.771171171171173,13.771171171171173,19.798907241870795 + 02/26 21:00:00,13.90990990990991,13.90990990990991,19.808046917157527 + 02/26 21:10:00,13.935135135135136,13.935135135135136,19.79374808548338 + 02/26 21:20:00,13.960360360360362,13.960360360360362,19.80144681378807 + 02/26 21:30:00,13.985585585585586,13.985585585585586,19.808741018083773 + 02/26 21:40:00,14.010810810810812,14.010810810810812,19.815724442469837 + 02/26 21:50:00,14.036036036036038,14.036036036036038,19.82241551248489 + 02/26 22:00:00,14.061261261261262,14.061261261261262,19.82884514074314 + 02/26 22:10:00,14.107507507507508,14.107507507507508,19.83477068286496 + 02/26 22:20:00,14.153753753753755,14.153753753753755,19.840512984365515 + 02/26 22:30:00,14.2,14.2,19.846235701122454 + 02/26 22:40:00,14.246246246246246,14.246246246246246,19.851877867857064 + 02/26 22:50:00,14.292492492492493,14.292492492492493,19.857423570466048 + 02/26 23:00:00,14.338738738738739,14.338738738738739,19.86287762939146 + 02/26 23:10:00,14.384984984984986,14.384984984984986,19.868331720795024 + 02/26 23:20:00,14.431231231231232,14.431231231231232,19.873753231563684 + 02/26 23:30:00,14.477477477477479,14.477477477477479,19.879120987386118 + 02/26 23:40:00,14.523723723723723,14.523723723723723,19.88440785942778 + 02/26 23:50:00,14.56996996996997,14.56996996996997,19.88961847265688 + 02/26 24:00:00,14.616216216216217,14.616216216216217,19.894699937035488 + 02/27 00:10:00,14.641441441441442,14.641441441441442,19.900412321842724 + 02/27 00:20:00,14.666666666666666,14.666666666666666,19.905961927952199 + 02/27 00:30:00,14.691891891891892,14.691891891891892,19.911314174123065 + 02/27 00:40:00,14.717117117117118,14.717117117117118,19.91648542186668 + 02/27 00:50:00,14.742342342342342,14.742342342342342,19.921448244275859 + 02/27 01:00:00,14.767567567567568,14.767567567567568,19.926217558589636 + 02/27 01:10:00,14.788588588588589,14.788588588588589,19.930390435186156 + 02/27 01:20:00,14.809609609609609,14.809609609609609,19.93448502970773 + 02/27 01:30:00,14.83063063063063,14.83063063063063,19.93850463808266 + 02/27 01:40:00,14.85165165165165,14.85165165165165,19.942456896985264 + 02/27 01:50:00,14.872672672672673,14.872672672672673,19.946257915480179 + 02/27 02:00:00,14.893693693693694,14.893693693693694,19.9500979334923 + 02/27 02:10:00,14.91891891891892,14.91891891891892,19.953645063643415 + 02/27 02:20:00,14.944144144144144,14.944144144144144,19.957250895604916 + 02/27 02:30:00,14.96936936936937,14.96936936936937,19.960844778744943 + 02/27 02:40:00,14.994594594594595,14.994594594594595,19.96436357067078 + 02/27 02:50:00,15.01981981981982,15.01981981981982,19.967934903954054 + 02/27 03:00:00,15.045045045045045,15.045045045045045,19.97149937294362 + 02/27 03:10:00,15.091291291291292,15.091291291291292,19.97563561902703 + 02/27 03:20:00,15.137537537537538,15.137537537537538,19.979379091487894 + 02/27 03:30:00,15.183783783783785,15.183783783783785,19.983002627922678 + 02/27 03:40:00,15.23003003003003,15.23003003003003,19.986495219154507 + 02/27 03:50:00,15.276276276276276,15.276276276276276,19.98998807807742 + 02/27 04:00:00,15.322522522522523,15.322522522522523,19.993456799349184 + 02/27 04:10:00,15.297297297297297,15.297297297297297,19.99607437347624 + 02/27 04:20:00,15.272072072072073,15.272072072072073,19.998439759857413 + 02/27 04:30:00,15.246846846846847,15.246846846846847,20.00054654924486 + 02/27 04:40:00,15.22162162162162,15.22162162162162,20.002537326023636 + 02/27 04:50:00,15.196396396396397,15.196396396396397,20.004351890266415 + 02/27 05:00:00,15.17117117117117,15.17117117117117,20.005985055527018 + 02/27 05:10:00,15.242642642642644,15.242642642642644,20.008638785038337 + 02/27 05:20:00,15.314114114114114,15.314114114114114,20.011499388633415 + 02/27 05:30:00,15.385585585585586,15.385585585585586,20.014610589681867 + 02/27 05:40:00,15.457057057057057,15.457057057057057,20.01796252469415 + 02/27 05:50:00,15.528528528528529,15.528528528528529,20.02147249181792 + 02/27 06:00:00,15.6,15.6,20.025148924892564 + 02/27 06:10:00,15.6,15.6,20.02837264212713 + 02/27 06:20:00,15.6,15.6,20.03184952186929 + 02/27 06:30:00,15.6,15.6,20.0353651168466 + 02/27 06:40:00,15.6,15.6,20.038921277343048 + 02/27 06:50:00,15.6,15.6,20.04249674400029 + 02/27 07:00:00,15.6,15.6,20.04601527713879 + 02/27 07:10:00,15.6,15.6,18.033955147875859 + 02/27 07:20:00,15.6,15.6,17.79923519076285 + 02/27 07:30:00,15.6,15.6,17.711151867789697 + 02/27 07:40:00,15.6,15.6,17.640967890895419 + 02/27 07:50:00,15.6,15.6,17.584418458923254 + 02/27 08:00:00,15.6,15.6,17.537189838384319 + 02/27 08:05:00,15.6,15.6,16.045899707065435 + 02/27 08:10:00,15.6,15.6,16.04604630486147 + 02/27 08:15:00,15.6,15.6,15.823649972081976 + 02/27 08:20:00,15.6,15.6,15.823803701162643 + 02/27 08:25:00,15.536936936936936,15.536936936936936,15.716029679988078 + 02/27 08:30:00,15.536936936936936,15.536936936936936,15.716106393963028 + 02/27 08:40:00,15.465465465465466,15.465465465465466,15.625212074545413 + 02/27 08:50:00,15.393993993993995,15.393993993993995,15.547723127364799 + 02/27 09:00:00,15.322522522522523,15.322522522522523,15.478815874694748 + 02/27 09:10:00,15.251051051051052,15.251051051051052,15.388483986640493 + 02/27 09:20:00,15.17957957957958,15.17957957957958,15.321233201048433 + 02/27 09:30:00,15.108108108108109,15.108108108108109,15.265956167979537 + 02/27 09:40:00,15.036636636636637,15.036636636636637,15.21422823683152 + 02/27 09:50:00,14.965165165165164,14.965165165165164,15.165582689638905 + 02/27 10:00:00,14.893693693693694,14.893693693693694,15.119714258373648 + 02/27 10:10:00,14.8012012012012,14.8012012012012,15.076499655126345 + 02/27 10:20:00,14.70870870870871,14.70870870870871,15.025222665069967 + 02/27 10:30:00,14.616216216216217,14.616216216216217,14.98644878775137 + 02/27 10:40:00,14.523723723723723,14.523723723723723,14.94963170442602 + 02/27 10:50:00,14.431231231231232,14.431231231231232,14.914630978262578 + 02/27 11:00:00,14.338738738738739,14.338738738738739,14.881481086434813 + 02/27 11:10:00,14.246246246246246,14.246246246246246,14.850274133130839 + 02/27 11:20:00,14.153753753753755,14.153753753753755,14.818028823514144 + 02/27 11:30:00,14.061261261261262,14.061261261261262,14.792661672896076 + 02/27 11:40:00,13.96876876876877,13.96876876876877,14.765445863325738 + 02/27 11:50:00,13.876276276276278,13.876276276276278,14.7411061491699 + 02/27 12:00:00,13.783783783783785,13.783783783783785,14.715794636134506 + 02/27 12:10:00,13.691291291291293,13.691291291291293,14.692717941370049 + 02/27 12:20:00,13.5987987987988,13.5987987987988,14.678447563937319 + 02/27 12:30:00,13.506306306306307,13.506306306306307,14.655904982559373 + 02/27 12:40:00,13.413813813813816,13.413813813813816,14.63545763431623 + 02/27 12:50:00,13.32132132132132,13.32132132132132,14.613529768014495 + 02/27 13:00:00,13.22882882882883,13.22882882882883,14.596007832596362 + 02/27 13:10:00,13.17837837837838,13.17837837837838,14.57898864641455 + 02/27 13:20:00,13.127927927927928,13.127927927927928,14.55449042674136 + 02/27 13:30:00,13.077477477477478,13.077477477477478,14.542128051660692 + 02/27 13:40:00,13.027027027027028,13.027027027027028,14.529358225650402 + 02/27 13:50:00,12.976576576576579,12.976576576576579,14.51927013901316 + 02/27 14:00:00,12.926126126126127,12.926126126126127,14.507868710615974 + 02/27 14:10:00,12.905105105105106,12.905105105105106,14.49919629148551 + 02/27 14:20:00,12.884084084084084,12.884084084084084,14.491662783777527 + 02/27 14:30:00,12.863063063063063,12.863063063063063,14.483897792570963 + 02/27 14:40:00,12.842042042042042,12.842042042042042,14.4728744354368 + 02/27 14:50:00,12.821021021021022,12.821021021021022,14.464440319857836 + 02/27 15:00:00,12.8,12.8,14.452875607783009 + 02/27 15:10:00,12.8,12.8,14.442462900973615 + 02/27 15:20:00,12.8,12.8,14.434964136118446 + 02/27 15:30:00,12.8,12.8,14.42412521597381 + 02/27 15:40:00,12.8,12.8,14.415570250391598 + 02/27 15:50:00,12.8,12.8,14.4051156035036 + 02/27 16:00:00,12.8,12.8,14.398617083469797 + 02/27 16:05:00,12.8,12.8,16.56034076914677 + 02/27 16:10:00,12.8,12.8,16.55912499986057 + 02/27 16:20:00,12.8,12.8,16.8070626716831 + 02/27 16:30:00,12.8,12.8,16.905673471160776 + 02/27 16:40:00,12.8,12.8,16.97994939694903 + 02/27 16:50:00,12.8,12.8,17.03944128372916 + 02/27 17:00:00,12.8,12.8,17.0905827276638 + 02/27 17:10:00,12.8,12.8,17.16066196572774 + 02/27 17:20:00,12.8,12.8,17.217715140854027 + 02/27 17:30:00,12.8,12.8,17.253045944151827 + 02/27 17:40:00,12.8,12.8,17.285508399087737 + 02/27 17:50:00,12.8,12.8,17.31570935212185 + 02/27 18:00:00,12.8,12.8,17.343961539448629 + 02/27 18:10:00,12.8,12.8,17.383645387029917 + 02/27 18:20:00,12.8,12.8,17.414437714610356 + 02/27 18:30:00,12.863063063063063,12.863063063063063,17.437918164492193 + 02/27 18:40:00,12.934534534534535,12.934534534534535,17.45956635527857 + 02/27 18:50:00,13.006006006006008,13.006006006006008,17.479272292308378 + 02/27 19:00:00,13.077477477477478,13.077477477477478,17.497248128349534 + 02/27 19:10:00,13.123723723723725,13.123723723723725,17.513705247428474 + 02/27 19:20:00,13.169969969969971,13.169969969969971,17.529080212832313 + 02/27 19:30:00,13.216216216216218,13.216216216216218,17.54323107965714 + 02/27 19:40:00,13.262462462462464,13.262462462462464,17.55641262099978 + 02/27 19:50:00,13.30870870870871,13.30870870870871,17.56858243581823 + 02/27 20:00:00,13.354954954954956,13.354954954954956,17.58005410752827 + 02/27 20:10:00,13.401201201201202,13.401201201201202,17.60401723575304 + 02/27 20:20:00,13.447447447447449,13.447447447447449,17.614754358744329 + 02/27 20:30:00,13.493693693693695,13.493693693693695,17.6246947934868 + 02/27 20:40:00,13.539939939939942,13.539939939939942,17.63415465609815 + 02/27 20:50:00,13.586186186186187,13.586186186186187,17.643212606370708 + 02/27 21:00:00,13.632432432432433,13.632432432432433,17.651983019045109 + 02/27 21:10:00,13.724924924924926,13.724924924924926,17.637798113308599 + 02/27 21:20:00,13.817417417417417,13.817417417417417,17.650373306970445 + 02/27 21:30:00,13.90990990990991,13.90990990990991,17.658422601479079 + 02/27 21:40:00,14.002402402402403,14.002402402402403,17.666369808117879 + 02/27 21:50:00,14.094894894894896,14.094894894894896,17.674239150548098 + 02/27 22:00:00,14.187387387387388,14.187387387387388,17.682050975060528 + 02/27 22:10:00,14.237837837837838,14.237837837837838,17.690208913494606 + 02/27 22:20:00,14.288288288288289,14.288288288288289,17.698318726589965 + 02/27 22:30:00,14.338738738738739,14.338738738738739,17.706191201400644 + 02/27 22:40:00,14.389189189189189,14.389189189189189,17.71384827866565 + 02/27 22:50:00,14.43963963963964,14.43963963963964,17.72121636090722 + 02/27 23:00:00,14.49009009009009,14.49009009009009,17.72845146108176 + 02/27 23:10:00,14.49009009009009,14.49009009009009,19.106739098573088 + 02/27 23:20:00,14.49009009009009,14.49009009009009,19.251517020802465 + 02/27 23:30:00,14.49009009009009,14.49009009009009,19.315730198820164 + 02/27 23:40:00,14.49009009009009,14.49009009009009,19.366330437118188 + 02/27 23:50:00,14.49009009009009,14.49009009009009,19.407219350576456 + 02/27 24:00:00,14.49009009009009,14.49009009009009,19.441481439344785 + 02/28 00:10:00,14.49009009009009,14.49009009009009,19.471351550047119 + 02/28 00:20:00,14.49009009009009,14.49009009009009,19.497761848277077 + 02/28 00:30:00,14.49009009009009,14.49009009009009,19.52136537107834 + 02/28 00:40:00,14.49009009009009,14.49009009009009,19.542830728920227 + 02/28 00:50:00,14.49009009009009,14.49009009009009,19.562497177898256 + 02/28 01:00:00,14.49009009009009,14.49009009009009,19.580641014706314 + 02/28 01:10:00,14.557357357357358,14.557357357357358,19.597857333871187 + 02/28 01:20:00,14.624624624624625,14.624624624624625,19.61389077544051 + 02/28 01:30:00,14.691891891891892,14.691891891891892,19.629166666202278 + 02/28 01:40:00,14.759159159159159,14.759159159159159,19.643786310443575 + 02/28 01:50:00,14.826426426426427,14.826426426426427,19.65783100093403 + 02/28 02:00:00,14.893693693693694,14.893693693693694,19.671363857475776 + 02/28 02:10:00,14.893693693693694,14.893693693693694,19.684027637451604 + 02/28 02:20:00,14.893693693693694,14.893693693693694,19.69622022263731 + 02/28 02:30:00,14.893693693693694,14.893693693693694,19.707916611625408 + 02/28 02:40:00,14.893693693693694,14.893693693693694,19.71911350484622 + 02/28 02:50:00,14.893693693693694,14.893693693693694,19.72981561895847 + 02/28 03:00:00,14.893693693693694,14.893693693693694,19.740049018320346 + 02/28 03:10:00,14.965165165165164,14.965165165165164,19.749916676356216 + 02/28 03:20:00,15.036636636636637,15.036636636636637,19.75973559290098 + 02/28 03:30:00,15.108108108108109,15.108108108108109,19.769414559882045 + 02/28 03:40:00,15.17957957957958,15.17957957957958,19.778991692001079 + 02/28 03:50:00,15.251051051051052,15.251051051051052,19.788441816406939 + 02/28 04:00:00,15.322522522522523,15.322522522522523,19.797664906237487 + 02/28 04:10:00,15.343543543543543,15.343543543543543,19.807459477128359 + 02/28 04:20:00,15.364564564564564,15.364564564564564,19.816933231401987 + 02/28 04:30:00,15.385585585585586,15.385585585585586,19.826078825943449 + 02/28 04:40:00,15.406606606606607,15.406606606606607,19.8348877104422 + 02/28 04:50:00,15.427627627627628,15.427627627627628,19.843328790937258 + 02/28 05:00:00,15.448648648648648,15.448648648648648,19.85153033710675 + 02/28 05:10:00,15.448648648648648,15.448648648648648,19.85848811336714 + 02/28 05:20:00,15.448648648648648,15.448648648648648,19.865148922603987 + 02/28 05:30:00,15.448648648648648,15.448648648648648,19.871576949802436 + 02/28 05:40:00,15.448648648648648,15.448648648648648,19.877729740753144 + 02/28 05:50:00,15.448648648648648,15.448648648648648,19.883669359733277 + 02/28 06:00:00,15.448648648648648,15.448648648648648,19.889486253123498 + 02/28 06:10:00,15.402402402402402,15.402402402402402,19.895429016221159 + 02/28 06:20:00,15.356156156156157,15.356156156156157,19.901041681489074 + 02/28 06:30:00,15.30990990990991,15.30990990990991,19.906166750405054 + 02/28 06:40:00,15.263663663663664,15.263663663663664,19.91079488748774 + 02/28 06:50:00,15.217417417417418,15.217417417417418,19.915081714083436 + 02/28 07:00:00,15.17117117117117,15.17117117117117,19.918978433666088 + 02/28 07:10:00,15.17117117117117,15.17117117117117,17.90448690293993 + 02/28 07:20:00,15.17117117117117,15.17117117117117,17.669136137662109 + 02/28 07:30:00,15.17117117117117,15.17117117117117,17.581472882141989 + 02/28 07:40:00,15.17117117117117,15.17117117117117,17.512637762152815 + 02/28 07:50:00,15.17117117117117,15.17117117117117,17.457929601439877 + 02/28 08:00:00,15.17117117117117,15.17117117117117,17.412320308440923 + 02/28 08:05:00,15.124924924924925,15.124924924924925,15.92335466700649 + 02/28 08:10:00,15.124924924924925,15.124924924924925,15.922948135448002 + 02/28 08:15:00,15.078678678678678,15.078678678678678,15.705147577143821 + 02/28 08:20:00,15.078678678678678,15.078678678678678,15.705116942544425 + 02/28 08:30:00,15.032432432432433,15.032432432432433,15.6015648027678 + 02/28 08:40:00,14.986186186186187,14.986186186186187,15.517277862152815 + 02/28 08:50:00,14.93993993993994,14.93993993993994,15.446298247340767 + 02/28 09:00:00,14.893693693693694,14.893693693693694,15.384234436430229 + 02/28 09:05:00,14.72972972972973,14.72972972972973,15.301665766361906 + 02/28 09:10:00,14.72972972972973,14.72972972972973,15.30090079376718 + 02/28 09:20:00,14.565765765765767,14.565765765765767,15.237542281151799 + 02/28 09:25:00,14.401801801801803,14.401801801801803,15.18721374618406 + 02/28 09:30:00,14.401801801801803,14.401801801801803,15.187035941375829 + 02/28 09:40:00,14.237837837837838,14.237837837837838,15.137245657736349 + 02/28 09:50:00,14.073873873873876,14.073873873873876,15.0916697960085 + 02/28 10:00:00,13.90990990990991,13.90990990990991,15.04811687772865 + 02/28 10:10:00,13.745945945945947,13.745945945945947,15.006576923847636 + 02/28 10:20:00,13.581981981981983,13.581981981981983,14.958286524920473 + 02/28 10:30:00,13.418018018018019,13.418018018018019,14.922136597461382 + 02/28 10:40:00,13.254054054054056,13.254054054054056,14.887986748901695 + 02/28 10:50:00,13.09009009009009,13.09009009009009,14.856516204029229 + 02/28 11:00:00,12.926126126126127,12.926126126126127,14.82842294633583 + 02/28 11:10:00,12.85885885885886,12.85885885885886,14.800828546129094 + 02/28 11:20:00,12.8,12.8,14.771478795206813 + 02/28 11:30:00,12.8,12.8,14.745981658551742 + 02/28 11:40:00,12.8,12.8,14.723365678842076 + 02/28 11:50:00,12.8,12.8,14.700388214099448 + 02/28 12:00:00,12.8,12.8,14.67915616587657 + 02/28 12:10:00,12.8,12.8,14.656952181345176 + 02/28 12:20:00,12.8,12.8,14.646369237015755 + 02/28 12:30:00,12.8,12.8,14.627230957564186 + 02/28 12:40:00,12.8,12.8,14.606801542781473 + 02/28 12:50:00,12.8,12.8,14.589954510301763 + 02/28 13:00:00,12.8,12.8,14.572580564592175 + 02/28 13:10:00,12.8,12.8,14.55624534888568 + 02/28 13:20:00,12.8,12.8,14.533476108777739 + 02/28 13:30:00,12.8,12.8,14.518256755722718 + 02/28 13:40:00,12.8,12.8,14.50768062771215 + 02/28 13:50:00,12.8,12.8,14.494685334876442 + 02/28 14:00:00,12.8,12.8,14.485930308822827 + 02/28 14:10:00,12.8,12.8,14.475499683445304 + 02/28 14:20:00,12.8,12.8,14.472767225836423 + 02/28 14:30:00,12.8,12.8,14.4644079568694 + 02/28 14:40:00,12.8,12.8,14.451875523517414 + 02/28 14:50:00,12.8,12.8,14.447258581081166 + 02/28 15:00:00,12.8,12.8,14.437326432780099 + 02/28 15:10:00,12.8,12.8,14.430103370674253 + 02/28 15:20:00,12.8,12.8,14.415577959930724 + 02/28 15:30:00,12.8,12.8,14.405798037310099 + 02/28 15:40:00,12.8,12.8,14.392600709434939 + 02/28 15:50:00,12.8,12.8,14.385396248111587 + 02/28 16:00:00,12.8,12.8,14.378065854443787 + 02/28 16:05:00,12.8,12.8,16.537369352386173 + 02/28 16:10:00,12.8,12.8,16.536352323638306 + 02/28 16:20:00,12.8,12.8,16.787343853048033 + 02/28 16:30:00,12.8,12.8,16.88436170355991 + 02/28 16:40:00,12.8,12.8,16.960991306327498 + 02/28 16:50:00,12.8,12.8,17.02218930765919 + 02/28 17:00:00,12.8,12.8,17.07152705200599 + 02/28 17:10:00,12.8,12.8,17.141333223890699 + 02/28 17:20:00,12.8,12.8,17.19980077937317 + 02/28 17:30:00,12.8,12.8,17.234245498678157 + 02/28 17:40:00,12.8,12.8,17.265015126447559 + 02/28 17:50:00,12.8,12.8,17.292734798800987 + 02/28 18:00:00,12.8,12.8,17.317759304409639 + 02/28 18:10:00,12.8,12.8,17.35390184356567 + 02/28 18:20:00,12.8,12.8,17.38172244821909 + 02/28 18:30:00,12.8,12.8,17.40276809370772 + 02/28 18:40:00,12.8,12.8,17.422704727558853 + 02/28 18:50:00,12.8,12.8,17.44128972110299 + 02/28 19:00:00,12.8,12.8,17.458520097391565 + 02/28 19:10:00,12.8,12.8,17.47435188645575 + 02/28 19:20:00,12.8,12.8,17.48874109496928 + 02/28 19:30:00,12.8,12.8,17.50161877318192 + 02/28 19:40:00,12.833633633633636,12.833633633633636,17.51326383876797 + 02/28 19:50:00,12.87987987987988,12.87987987987988,17.523854557174205 + 02/28 20:00:00,12.926126126126127,12.926126126126127,17.533474741036814 + 02/28 20:10:00,12.926126126126127,12.926126126126127,17.554977654546258 + 02/28 20:20:00,12.926126126126127,12.926126126126127,17.563383771072926 + 02/28 20:30:00,12.926126126126127,12.926126126126127,17.57105174289881 + 02/28 20:40:00,12.926126126126127,12.926126126126127,17.5783631368802 + 02/28 20:50:00,12.926126126126127,12.926126126126127,17.5854067836866 + 02/28 21:00:00,12.926126126126127,12.926126126126127,17.592160128569569 + 02/28 21:10:00,12.997597597597599,12.997597597597599,17.57676730032146 + 02/28 21:20:00,13.06906906906907,13.06906906906907,17.58833515050284 + 02/28 21:30:00,13.140540540540542,13.140540540540542,17.595888534108718 + 02/28 21:40:00,13.212012012012015,13.212012012012015,17.603778959985019 + 02/28 21:50:00,13.283483483483485,13.283483483483485,17.612110834269914 + 02/28 22:00:00,13.354954954954956,13.354954954954956,17.620673731526645 + 02/28 22:10:00,13.422222222222223,13.422222222222223,17.629335765056245 + 02/28 22:20:00,13.48948948948949,13.48948948948949,17.637476736663435 + 02/28 22:30:00,13.556756756756757,13.556756756756757,17.645388219108825 + 02/28 22:40:00,13.624024024024026,13.624024024024026,17.653016093175734 + 02/28 22:50:00,13.691291291291293,13.691291291291293,17.6603784236995 + 02/28 23:00:00,13.758558558558559,13.758558558558559,17.6674795349564 + 02/28 23:10:00,13.83003003003003,13.83003003003003,19.046040367787563 + 02/28 23:20:00,13.901501501501502,13.901501501501502,19.191406068229605 + 02/28 23:30:00,13.972972972972974,13.972972972972974,19.256018844163699 + 02/28 23:40:00,14.044444444444446,14.044444444444446,19.30718905388034 + 02/28 23:50:00,14.115915915915917,14.115915915915917,19.348760678351718 + 02/28 24:00:00,14.187387387387388,14.187387387387388,19.383890343109849 + 03/01 00:10:00,14.25885885885886,14.25885885885886,19.4142760756378 + 03/01 00:20:00,14.33033033033033,14.33033033033033,19.442665464162265 + 03/01 00:30:00,14.401801801801803,14.401801801801803,19.468032723134514 + 03/01 00:40:00,14.473273273273274,14.473273273273274,19.49130125005788 + 03/01 00:50:00,14.544744744744746,14.544744744744746,19.512435141215339 + 03/01 01:00:00,14.616216216216217,14.616216216216217,19.531670145846549 + 03/01 01:10:00,14.687687687687689,14.687687687687689,19.54960371661248 + 03/01 01:20:00,14.759159159159159,14.759159159159159,19.565668948733817 + 03/01 01:30:00,14.83063063063063,14.83063063063063,19.58087875676295 + 03/01 01:40:00,14.902102102102102,14.902102102102102,19.5951908704764 + 03/01 01:50:00,14.973573573573575,14.973573573573575,19.608831525123859 + 03/01 02:00:00,15.045045045045045,15.045045045045045,19.622039176572828 + 03/01 02:10:00,15.112312312312313,15.112312312312313,19.63479032576074 + 03/01 02:20:00,15.17957957957958,15.17957957957958,19.647257629305387 + 03/01 02:30:00,15.246846846846847,15.246846846846847,19.65935497976491 + 03/01 02:40:00,15.314114114114114,15.314114114114114,19.6710783207159 + 03/01 02:50:00,15.381381381381381,15.381381381381381,19.682496725557827 + 03/01 03:00:00,15.448648648648648,15.448648648648648,19.693646591397827 + 03/01 03:10:00,15.52012012012012,15.52012012012012,19.704520482619956 + 03/01 03:20:00,15.591591591591591,15.591591591591591,19.714928299797067 + 03/01 03:30:00,15.6,15.6,19.725006745527119 + 03/01 03:40:00,15.6,15.6,19.734738080526623 + 03/01 03:50:00,15.6,15.6,19.744288795227697 + 03/01 04:00:00,15.6,15.6,19.753621801676219 + 03/01 04:10:00,15.6,15.6,19.763105047960197 + 03/01 04:20:00,15.6,15.6,19.77244265513845 + 03/01 04:30:00,15.6,15.6,19.781378594955187 + 03/01 04:40:00,15.6,15.6,19.79012681987619 + 03/01 04:50:00,15.6,15.6,19.798561857152966 + 03/01 05:00:00,15.6,15.6,19.806697972992063 + 03/01 05:10:00,15.6,15.6,19.814689865252374 + 03/01 05:20:00,15.6,15.6,19.8226428092023 + 03/01 05:30:00,15.6,15.6,19.83055939598885 + 03/01 05:40:00,15.6,15.6,19.83844373749328 + 03/01 05:50:00,15.6,15.6,19.846221010221869 + 03/01 06:00:00,15.6,15.6,19.85388272460012 + 03/01 06:10:00,15.6,15.6,19.86146181923462 + 03/01 06:20:00,15.6,15.6,19.869016645835225 + 03/01 06:30:00,15.6,15.6,19.876360740898659 + 03/01 06:40:00,15.6,15.6,19.88351684594311 + 03/01 06:50:00,15.6,15.6,19.89044749929247 + 03/01 07:00:00,15.6,15.6,19.897114666749056 + 03/01 07:10:00,15.6,15.6,17.887320091264294 + 03/01 07:20:00,15.6,15.6,17.654599267690377 + 03/01 07:30:00,15.6,15.6,17.56881809952441 + 03/01 07:40:00,15.6,15.6,17.501881691700189 + 03/01 07:50:00,15.6,15.6,17.448719567340956 + 03/01 08:00:00,15.6,15.6,17.404671161180013 + 03/01 08:10:00,15.6,15.6,15.921889999657207 + 03/01 08:20:00,15.6,15.6,15.70612272389773 + 03/01 08:30:00,15.6,15.6,15.606446245007 + 03/01 08:40:00,15.6,15.6,15.525352619074342 + 03/01 08:50:00,15.6,15.6,15.458249483712106 + 03/01 09:00:00,15.6,15.6,15.40069162207204 + 03/01 09:10:00,15.6,15.6,15.322832095923327 + 03/01 09:20:00,15.6,15.6,15.26769459226937 + 03/01 09:30:00,15.6,15.6,15.224614024758905 + 03/01 09:40:00,15.6,15.6,15.185389154318209 + 03/01 09:50:00,15.6,15.6,15.150098190533143 + 03/01 10:00:00,15.6,15.6,15.118613469334976 + 03/01 10:10:00,15.6,15.6,15.089466832035777 + 03/01 10:20:00,15.6,15.6,15.05281389419087 + 03/01 10:30:00,15.6,15.6,15.029108436500645 + 03/01 10:40:00,15.6,15.6,15.00733311987669 + 03/01 10:50:00,15.6,15.6,14.98818569689134 + 03/01 11:00:00,15.6,15.6,14.96929912105169 + 03/01 11:10:00,15.6,15.6,14.949149022862157 + 03/01 11:20:00,15.6,15.6,14.928697517477394 + 03/01 11:30:00,15.6,15.6,14.909352543604536 + 03/01 11:40:00,15.6,15.6,14.893605919422756 + 03/01 11:50:00,15.6,15.6,14.874867517435364 + 03/01 12:00:00,15.6,15.6,14.85957492349276 + 03/01 12:10:00,15.6,15.6,14.842566439543635 + 03/01 12:20:00,15.6,15.6,14.837212705337328 + 03/01 12:30:00,15.6,15.6,14.820752655504338 + 03/01 12:40:00,15.6,15.6,14.805013944937225 + 03/01 12:50:00,15.6,15.6,14.790700568954343 + 03/01 13:00:00,15.6,15.6,14.773559004495489 + 03/01 13:10:00,15.574774774774774,15.574774774774774,14.757880917128235 + 03/01 13:20:00,15.54954954954955,15.54954954954955,14.733235154164362 + 03/01 13:30:00,15.524324324324324,15.524324324324324,14.718118165413199 + 03/01 13:40:00,15.499099099099098,15.499099099099098,14.70403964018042 + 03/01 13:50:00,15.473873873873874,15.473873873873874,14.6902854349018 + 03/01 14:00:00,15.448648648648648,15.448648648648648,14.678266166486408 + 03/01 14:10:00,15.427627627627628,15.427627627627628,14.667579838910612 + 03/01 14:20:00,15.406606606606607,15.406606606606607,14.661229219864746 + 03/01 14:30:00,15.385585585585586,15.385585585585586,14.650527796561839 + 03/01 14:40:00,15.364564564564564,15.364564564564564,14.64302628408083 + 03/01 14:50:00,15.343543543543543,15.343543543543543,14.63386488311262 + 03/01 15:00:00,15.322522522522523,15.322522522522523,14.629446540844756 + 03/01 15:10:00,15.297297297297297,15.297297297297297,14.622415210912692 + 03/01 15:20:00,15.272072072072073,15.272072072072073,14.621853658068068 + 03/01 15:30:00,15.246846846846847,15.246846846846847,14.61796690883533 + 03/01 15:40:00,15.22162162162162,15.22162162162162,14.61408096856339 + 03/01 15:50:00,15.196396396396397,15.196396396396397,14.611712261478568 + 03/01 16:00:00,15.17117117117117,15.17117117117117,14.60567439340027 + 03/01 16:05:00,15.17117117117117,15.17117117117117,16.755458658930875 + 03/01 16:10:00,15.17117117117117,15.17117117117117,16.754513309795909 + 03/01 16:20:00,15.17117117117117,15.17117117117117,16.999344969883297 + 03/01 16:30:00,15.17117117117117,15.17117117117117,17.094884941047896 + 03/01 16:40:00,15.17117117117117,15.17117117117117,17.16771301989707 + 03/01 16:50:00,15.17117117117117,15.17117117117117,17.224349391806937 + 03/01 17:00:00,15.17117117117117,15.17117117117117,17.268677731812173 + 03/01 17:10:00,15.17117117117117,15.17117117117117,17.334461731279249 + 03/01 17:20:00,15.17117117117117,15.17117117117117,17.38900955005885 + 03/01 17:30:00,15.17117117117117,15.17117117117117,17.4198407388073 + 03/01 17:40:00,15.17117117117117,15.17117117117117,17.447463325030588 + 03/01 17:50:00,15.17117117117117,15.17117117117117,17.472648298602956 + 03/01 18:00:00,15.17117117117117,15.17117117117117,17.49582409646659 + 03/01 18:10:00,15.196396396396397,15.196396396396397,17.52992761152555 + 03/01 18:20:00,15.22162162162162,15.22162162162162,17.556049861871086 + 03/01 18:30:00,15.246846846846847,15.246846846846847,17.575832420767627 + 03/01 18:40:00,15.272072072072073,15.272072072072073,17.594892965218059 + 03/01 18:50:00,15.297297297297297,15.297297297297297,17.61277698694283 + 03/01 19:00:00,15.322522522522523,15.322522522522523,17.62936734447284 + 03/01 19:10:00,15.343543543543543,15.343543543543543,17.645055772112895 + 03/01 19:20:00,15.364564564564564,15.364564564564564,17.65901683025888 + 03/01 19:30:00,15.385585585585586,15.385585585585586,17.67193269929563 + 03/01 19:40:00,15.406606606606607,15.406606606606607,17.683828733071466 + 03/01 19:50:00,15.427627627627628,15.427627627627628,17.694929868214677 + 03/01 20:00:00,15.448648648648648,15.448648648648648,17.705292978764477 + 03/01 20:10:00,15.448648648648648,15.448648648648648,17.72782265238733 + 03/01 20:20:00,15.448648648648648,15.448648648648648,17.7373587020552 + 03/01 20:30:00,15.448648648648648,15.448648648648648,17.74604580992581 + 03/01 20:40:00,15.448648648648648,15.448648648648648,17.754272185579845 + 03/01 20:50:00,15.448648648648648,15.448648648648648,17.7620377499342 + 03/01 21:00:00,15.448648648648648,15.448648648648648,17.7694237028199 + 03/01 21:10:00,15.427627627627628,15.427627627627628,17.754196656374274 + 03/01 21:20:00,15.406606606606607,15.406606606606607,17.765327685028148 + 03/01 21:30:00,15.385585585585586,15.385585585585586,17.771733625837546 + 03/01 21:40:00,15.364564564564564,15.364564564564564,17.77777743651755 + 03/01 21:50:00,15.343543543543543,15.343543543543543,17.78355897495778 + 03/01 22:00:00,15.322522522522523,15.322522522522523,17.78916633699965 + 03/01 22:10:00,15.343543543543543,15.343543543543543,17.79474373772031 + 03/01 22:20:00,15.364564564564564,15.364564564564564,17.799856776176627 + 03/01 22:30:00,15.385585585585586,15.385585585585586,17.80485613833868 + 03/01 22:40:00,15.406606606606607,15.406606606606607,17.80966477016477 + 03/01 22:50:00,15.427627627627628,15.427627627627628,17.8143151267432 + 03/01 23:00:00,15.448648648648648,15.448648648648648,17.818948803918724 + 03/01 23:10:00,15.473873873873874,15.473873873873874,19.186566705489314 + 03/01 23:20:00,15.499099099099098,15.499099099099098,19.328765530208615 + 03/01 23:30:00,15.524324324324324,15.524324324324324,19.391120160488044 + 03/01 23:40:00,15.54954954954955,15.54954954954955,19.440349076298767 + 03/01 23:50:00,15.574774774774774,15.574774774774774,19.480145578285886 + 03/01 24:00:00,15.6,15.6,19.51358377810654 + 03/02 00:10:00,15.6,15.6,19.542713888934164 + 03/02 00:20:00,15.6,15.6,19.568307197744024 + 03/02 00:30:00,15.6,15.6,19.591103763334198 + 03/02 00:40:00,15.6,15.6,19.611740423801526 + 03/02 00:50:00,15.6,15.6,19.630594598061945 + 03/02 01:00:00,15.6,15.6,19.647940260281215 + 03/02 01:10:00,15.6,15.6,19.663692614985636 + 03/02 01:20:00,15.6,15.6,19.67855853040057 + 03/02 01:30:00,15.6,15.6,19.6925549587103 + 03/02 01:40:00,15.6,15.6,19.70589424506615 + 03/02 01:50:00,15.6,15.6,19.718553233419504 + 03/02 02:00:00,15.6,15.6,19.730596734088338 + 03/02 02:10:00,15.6,15.6,19.742758016685138 + 03/02 02:20:00,15.6,15.6,19.754255161584135 + 03/02 02:30:00,15.6,15.6,19.76536849792852 + 03/02 02:40:00,15.6,15.6,19.776030682025654 + 03/02 02:50:00,15.6,15.6,19.786314183729468 + 03/02 03:00:00,15.6,15.6,19.796243248937168 + 03/02 03:10:00,15.6,15.6,19.805674407583948 + 03/02 03:20:00,15.6,15.6,19.814763768973397 + 03/02 03:30:00,15.6,15.6,19.823483083986749 + 03/02 03:40:00,15.6,15.6,19.83182996097429 + 03/02 03:50:00,15.6,15.6,19.839847252913935 + 03/02 04:00:00,15.6,15.6,19.847472894525454 + 03/02 04:10:00,15.6,15.6,19.854895978597555 + 03/02 04:20:00,15.6,15.6,19.86218202768127 + 03/02 04:30:00,15.6,15.6,19.869254809352588 + 03/02 04:40:00,15.6,15.6,19.87615533724756 + 03/02 04:50:00,15.6,15.6,19.88280273128555 + 03/02 05:00:00,15.6,15.6,19.889294474519489 + 03/02 05:10:00,15.6,15.6,19.896371733171589 + 03/02 05:20:00,15.6,15.6,19.903272608706656 + 03/02 05:30:00,15.6,15.6,19.90999812125906 + 03/02 05:40:00,15.6,15.6,19.916515828678553 + 03/02 05:50:00,15.6,15.6,19.92285362552892 + 03/02 06:00:00,15.6,15.6,19.92910263568916 + 03/02 06:10:00,15.6,15.6,19.933483745231404 + 03/02 06:20:00,15.6,15.6,19.93780183824429 + 03/02 06:30:00,15.6,15.6,19.942175990747829 + 03/02 06:40:00,15.6,15.6,19.94653292294428 + 03/02 06:50:00,15.6,15.6,19.951040732462166 + 03/02 07:00:00,15.6,15.6,19.955599889472017 + 03/02 07:10:00,15.6,15.6,17.95475524947144 + 03/02 07:20:00,15.6,15.6,17.722617624551704 + 03/02 07:30:00,15.6,15.6,17.636890917934659 + 03/02 07:40:00,15.6,15.6,17.56939201982134 + 03/02 07:50:00,15.6,15.6,17.515547497652304 + 03/02 08:00:00,15.6,15.6,17.470322429910718 + 03/02 08:10:00,15.6,15.6,15.98586563056889 + 03/02 08:20:00,15.6,15.6,15.766858296721356 + 03/02 08:30:00,15.6,15.6,15.664025057062443 + 03/02 08:40:00,15.6,15.6,15.579596974406153 + 03/02 08:50:00,15.6,15.6,15.50844192991792 + 03/02 09:00:00,15.6,15.6,15.44558777146974 + 03/02 09:10:00,15.528528528528529,15.528528528528529,15.360780545938566 + 03/02 09:20:00,15.457057057057057,15.457057057057057,15.297573158908238 + 03/02 09:30:00,15.385585585585586,15.385585585585586,15.244955193003188 + 03/02 09:40:00,15.314114114114114,15.314114114114114,15.195050311698854 + 03/02 09:50:00,15.242642642642644,15.242642642642644,15.148328454596099 + 03/02 10:00:00,15.17117117117117,15.17117117117117,15.104849944099652 + 03/02 10:10:00,15.103903903903904,15.103903903903904,15.064063787363804 + 03/02 10:20:00,15.036636636636637,15.036636636636637,15.014074501345903 + 03/02 10:30:00,14.96936936936937,14.96936936936937,14.976459117326373 + 03/02 10:40:00,14.902102102102102,14.902102102102102,14.94064338111959 + 03/02 10:50:00,14.834834834834835,14.834834834834835,14.9087681482532 + 03/02 11:00:00,14.767567567567568,14.767567567567568,14.87852929291221 + 03/02 11:10:00,14.696096096096096,14.696096096096096,14.849663555239239 + 03/02 11:20:00,14.624624624624625,14.624624624624625,14.82309309514052 + 03/02 11:30:00,14.553153153153153,14.553153153153153,14.799176969571452 + 03/02 11:40:00,14.481681681681682,14.481681681681682,14.779851975355405 + 03/02 11:50:00,14.41021021021021,14.41021021021021,14.758351172841083 + 03/02 12:00:00,14.338738738738739,14.338738738738739,14.740720199491774 + 03/02 12:10:00,14.292492492492493,14.292492492492493,14.721235391521852 + 03/02 12:20:00,14.246246246246246,14.246246246246246,14.712814396066495 + 03/02 12:30:00,14.2,14.2,14.693777789429069 + 03/02 12:40:00,14.153753753753755,14.153753753753755,14.676028642602415 + 03/02 12:50:00,14.107507507507508,14.107507507507508,14.659720414469769 + 03/02 13:00:00,14.061261261261262,14.061261261261262,14.640622900063754 + 03/02 13:10:00,14.036036036036036,14.036036036036036,14.624010075553875 + 03/02 13:20:00,14.01081081081081,14.01081081081081,14.599005295608768 + 03/02 13:30:00,13.985585585585586,13.985585585585586,14.583719362836142 + 03/02 13:40:00,13.960360360360362,13.960360360360362,14.57017786559623 + 03/02 13:50:00,13.935135135135136,13.935135135135136,14.55864543898306 + 03/02 14:00:00,13.90990990990991,13.90990990990991,14.55062894854813 + 03/02 14:10:00,13.90990990990991,13.90990990990991,14.545153079226408 + 03/02 14:20:00,13.90990990990991,13.90990990990991,14.547075094637832 + 03/02 14:30:00,13.90990990990991,13.90990990990991,14.545502942713196 + 03/02 14:40:00,13.90990990990991,13.90990990990991,14.546982748065965 + 03/02 14:50:00,13.90990990990991,13.90990990990991,14.54486461774231 + 03/02 15:00:00,13.90990990990991,13.90990990990991,14.544945892952424 + 03/02 15:10:00,13.90990990990991,13.90990990990991,14.541254548745146 + 03/02 15:20:00,13.90990990990991,13.90990990990991,14.541830067425267 + 03/02 15:30:00,13.90990990990991,13.90990990990991,14.538033963916906 + 03/02 15:40:00,13.90990990990991,13.90990990990991,14.533920462623007 + 03/02 15:50:00,13.90990990990991,13.90990990990991,14.532416300956497 + 03/02 16:00:00,13.90990990990991,13.90990990990991,14.528838955910912 + 03/02 16:05:00,13.956156156156157,13.956156156156157,16.684143166728917 + 03/02 16:10:00,13.956156156156157,13.956156156156157,16.683761108107448 + 03/02 16:20:00,14.002402402402403,14.002402402402403,16.932529415589323 + 03/02 16:30:00,14.04864864864865,14.04864864864865,17.03117079265685 + 03/02 16:40:00,14.094894894894896,14.094894894894896,17.107772281593456 + 03/02 16:50:00,14.14114114114114,14.14114114114114,17.166797271648247 + 03/02 17:00:00,14.187387387387388,14.187387387387388,17.211756178781074 + 03/02 17:10:00,14.212612612612613,14.212612612612613,17.277512330909894 + 03/02 17:20:00,14.237837837837838,14.237837837837838,17.331746373825845 + 03/02 17:30:00,14.263063063063063,14.263063063063063,17.361890193002937 + 03/02 17:40:00,14.288288288288289,14.288288288288289,17.38901966063385 + 03/02 17:50:00,14.313513513513513,14.313513513513513,17.41424730747567 + 03/02 18:00:00,14.338738738738739,14.338738738738739,17.438065895522496 + 03/02 18:10:00,14.384984984984986,14.384984984984986,17.473234170709359 + 03/02 18:20:00,14.431231231231232,14.431231231231232,17.49999324738937 + 03/02 18:30:00,14.477477477477479,14.477477477477479,17.520171483569503 + 03/02 18:40:00,14.523723723723723,14.523723723723723,17.53949079697542 + 03/02 18:50:00,14.56996996996997,14.56996996996997,17.558009277983844 + 03/02 19:00:00,14.616216216216217,14.616216216216217,17.575358556163175 + 03/02 19:10:00,14.662462462462463,14.662462462462463,17.591921659685668 + 03/02 19:20:00,14.70870870870871,14.70870870870871,17.607711862338076 + 03/02 19:30:00,14.754954954954954,14.754954954954954,17.62256543431131 + 03/02 19:40:00,14.8012012012012,14.8012012012012,17.636662027133864 + 03/02 19:50:00,14.847447447447447,14.847447447447447,17.65007736004329 + 03/02 20:00:00,14.893693693693694,14.893693693693694,17.66287402352601 + 03/02 20:10:00,14.93993993993994,14.93993993993994,17.68915515063056 + 03/02 20:20:00,14.986186186186187,14.986186186186187,17.702288330405204 + 03/02 20:30:00,15.032432432432433,15.032432432432433,17.71435596454664 + 03/02 20:40:00,15.078678678678678,15.078678678678678,17.725746449260254 + 03/02 20:50:00,15.124924924924925,15.124924924924925,17.736564589362798 + 03/02 21:00:00,15.17117117117117,15.17117117117117,17.74684048591213 + 03/02 21:10:00,15.217417417417418,15.217417417417418,17.733575233497886 + 03/02 21:20:00,15.263663663663664,15.263663663663664,17.746863822593388 + 03/02 21:30:00,15.30990990990991,15.30990990990991,17.755444475528554 + 03/02 21:40:00,15.356156156156157,15.356156156156157,17.763724156246 + 03/02 21:50:00,15.402402402402402,15.402402402402402,17.771804227912264 + 03/02 22:00:00,15.448648648648648,15.448648648648648,17.7797225756391 + 03/02 22:10:00,15.499099099099098,15.499099099099098,17.78682633488395 + 03/02 22:20:00,15.54954954954955,15.54954954954955,17.793684752740896 + 03/02 22:30:00,15.6,15.6,17.800393238789533 + 03/02 22:40:00,15.6,15.6,17.80695898217426 + 03/02 22:50:00,15.6,15.6,17.813372569976275 + 03/02 23:00:00,15.6,15.6,17.81964685202572 + 03/02 23:10:00,15.6,15.6,19.194486318449955 + 03/02 23:20:00,15.6,15.6,19.339561440599306 + 03/02 23:30:00,15.6,15.6,19.404817563892068 + 03/02 23:40:00,15.6,15.6,19.456654760989573 + 03/02 23:50:00,15.6,15.6,19.498705953589238 + 03/02 24:00:00,15.6,15.6,19.534196807611953 + 03/03 00:10:00,15.6,15.6,19.561903284587595 + 03/03 00:20:00,15.6,15.6,19.586035812288466 + 03/03 00:30:00,15.6,15.6,19.607633341226646 + 03/03 00:40:00,15.6,15.6,19.62718347141905 + 03/03 00:50:00,15.6,15.6,19.64513267284652 + 03/03 01:00:00,15.6,15.6,19.661830672783404 + 03/03 01:10:00,15.6,15.6,19.680036639985454 + 03/03 01:20:00,15.6,15.6,19.697682245121184 + 03/03 01:30:00,15.6,15.6,19.71454007354091 + 03/03 01:40:00,15.6,15.6,19.730765305635296 + 03/03 01:50:00,15.6,15.6,19.74624930861674 + 03/03 02:00:00,15.6,15.6,19.761183506788343 + 03/03 02:10:00,15.6,15.6,19.775523203974467 + 03/03 02:20:00,15.6,15.6,19.78916148089334 + 03/03 02:30:00,15.6,15.6,19.802168148869606 + 03/03 02:40:00,15.6,15.6,19.81449891262401 + 03/03 02:50:00,15.6,15.6,19.82629922244412 + 03/03 03:00:00,15.6,15.6,19.837639250768086 + 03/03 03:10:00,15.6,15.6,19.848509295117517 + 03/03 03:20:00,15.6,15.6,19.85884952828259 + 03/03 03:30:00,15.6,15.6,19.868675134342579 + 03/03 03:40:00,15.6,15.6,19.878080515138444 + 03/03 03:50:00,15.6,15.6,19.88713082806143 + 03/03 04:00:00,15.6,15.6,19.895831317559094 + 03/03 04:10:00,15.6,15.6,19.905227873944985 + 03/03 04:20:00,15.6,15.6,19.913983114083679 + 03/03 04:30:00,15.6,15.6,19.922035785850015 + 03/03 04:40:00,15.6,15.6,19.929690932284158 + 03/03 04:50:00,15.6,15.6,19.936937835808366 + 03/03 05:00:00,15.6,15.6,19.943846448938666 + 03/03 05:10:00,15.6,15.6,19.950982777704735 + 03/03 05:20:00,15.6,15.6,19.957736663904954 + 03/03 05:30:00,15.6,15.6,19.964377816572694 + 03/03 05:40:00,15.6,15.6,19.970843368413769 + 03/03 05:50:00,15.6,15.6,19.977162567097886 + 03/03 06:00:00,15.6,15.6,19.983354351114146 + 03/03 06:10:00,15.6,15.6,19.987215879221357 + 03/03 06:20:00,15.6,15.6,19.991198625747186 + 03/03 06:30:00,15.6,15.6,19.995344282538907 + 03/03 06:40:00,15.6,15.6,19.999619261845298 + 03/03 06:50:00,15.6,15.6,20.003998497899237 + 03/03 07:00:00,15.6,15.6,20.008410450441823 + 03/03 07:10:00,15.6,15.6,18.002660497603057 + 03/03 07:20:00,15.6,15.6,17.76952331823117 + 03/03 07:30:00,15.6,15.6,17.68230872202836 + 03/03 07:40:00,15.6,15.6,17.613071627109155 + 03/03 07:50:00,15.6,15.6,17.55696031760226 + 03/03 08:00:00,15.6,15.6,17.508925769277157 + 03/03 08:10:00,15.6,15.6,16.018176620682814 + 03/03 08:15:00,15.6,15.6,15.794459141540223 + 03/03 08:20:00,15.6,15.6,15.794467491467206 + 03/03 08:30:00,15.6,15.6,15.684497758486476 + 03/03 08:40:00,15.6,15.6,15.592643525460927 + 03/03 08:50:00,15.6,15.6,15.514440811952607 + 03/03 09:00:00,15.6,15.6,15.445964727284738 + 03/03 09:10:00,15.507507507507507,15.507507507507507,15.358006829354409 + 03/03 09:20:00,15.415015015015016,15.415015015015016,15.293476486497765 + 03/03 09:30:00,15.322522522522523,15.322522522522523,15.241393974070676 + 03/03 09:40:00,15.23003003003003,15.23003003003003,15.193454618260846 + 03/03 09:50:00,15.137537537537538,15.137537537537538,15.149535911035946 + 03/03 10:00:00,15.045045045045045,15.045045045045045,15.109505068625314 + 03/03 10:10:00,14.973573573573575,14.973573573573575,15.071471307194397 + 03/03 10:20:00,14.902102102102102,14.902102102102102,15.027430481409088 + 03/03 10:30:00,14.83063063063063,14.83063063063063,14.996931677174774 + 03/03 10:40:00,14.759159159159159,14.759159159159159,14.96818597667603 + 03/03 10:50:00,14.687687687687689,14.687687687687689,14.940143094016732 + 03/03 11:00:00,14.616216216216217,14.616216216216217,14.910399430632565 + 03/03 11:10:00,14.523723723723723,14.523723723723723,14.877883424181425 + 03/03 11:20:00,14.431231231231232,14.431231231231232,14.844494849352918 + 03/03 11:30:00,14.338738738738739,14.338738738738739,14.81073089931147 + 03/03 11:40:00,14.246246246246246,14.246246246246246,14.781146532718897 + 03/03 11:50:00,14.153753753753755,14.153753753753755,14.750920751925892 + 03/03 12:00:00,14.061261261261262,14.061261261261262,14.727094919682916 + 03/03 12:10:00,13.989789789789791,13.989789789789791,14.703136071090018 + 03/03 12:20:00,13.918318318318317,13.918318318318317,14.693125927885684 + 03/03 12:30:00,13.846846846846847,13.846846846846847,14.674315798864307 + 03/03 12:40:00,13.775375375375376,13.775375375375376,14.656714652607225 + 03/03 12:50:00,13.703903903903905,13.703903903903905,14.641443421638125 + 03/03 13:00:00,13.632432432432433,13.632432432432433,14.623689809228857 + 03/03 13:10:00,13.611411411411412,13.611411411411412,14.6088247460788 + 03/03 13:20:00,13.590390390390392,13.590390390390392,14.58369947044532 + 03/03 13:30:00,13.56936936936937,13.56936936936937,14.567900399894459 + 03/03 13:40:00,13.548348348348349,13.548348348348349,14.553994825471785 + 03/03 13:50:00,13.527327327327328,13.527327327327328,14.539962436583292 + 03/03 14:00:00,13.506306306306307,13.506306306306307,14.528799309177009 + 03/03 14:10:00,13.46006006006006,13.46006006006006,14.51699028818848 + 03/03 14:20:00,13.413813813813814,13.413813813813814,14.510395778232845 + 03/03 14:30:00,13.367567567567568,13.367567567567568,14.498456483565683 + 03/03 14:40:00,13.321321321321323,13.321321321321323,14.490021707429939 + 03/03 14:50:00,13.275075075075077,13.275075075075077,14.479349938197178 + 03/03 15:00:00,13.22882882882883,13.22882882882883,14.47192880192724 + 03/03 15:10:00,13.203603603603604,13.203603603603604,14.463098943711316 + 03/03 15:20:00,13.17837837837838,13.17837837837838,14.460275595140076 + 03/03 15:30:00,13.153153153153154,13.153153153153154,14.454822810553706 + 03/03 15:40:00,13.12792792792793,13.12792792792793,14.448418755232396 + 03/03 15:50:00,13.102702702702704,13.102702702702704,14.445066518442449 + 03/03 16:00:00,13.077477477477478,13.077477477477478,14.439673839768066 + 03/03 16:05:00,13.102702702702704,13.102702702702704,16.597913500732238 + 03/03 16:10:00,13.102702702702704,13.102702702702704,16.59687777160689 + 03/03 16:20:00,13.127927927927928,13.127927927927928,16.846905852313666 + 03/03 16:30:00,13.153153153153154,13.153153153153154,16.944633265190804 + 03/03 16:40:00,13.17837837837838,13.17837837837838,17.021344485856216 + 03/03 16:50:00,13.203603603603604,13.203603603603604,17.082309585349429 + 03/03 17:00:00,13.22882882882883,13.22882882882883,17.130754412087386 + 03/03 17:10:00,13.24984984984985,13.24984984984985,17.20046927991817 + 03/03 17:20:00,13.270870870870871,13.270870870870871,17.25843031579913 + 03/03 17:30:00,13.291891891891894,13.291891891891894,17.29270050833002 + 03/03 17:40:00,13.312912912912914,13.312912912912914,17.323813687221933 + 03/03 17:50:00,13.333933933933935,13.333933933933935,17.35270666369898 + 03/03 18:00:00,13.354954954954956,13.354954954954956,17.379567253203399 + 03/03 18:10:00,13.401201201201202,13.401201201201202,17.41670030291204 + 03/03 18:20:00,13.447447447447449,13.447447447447449,17.445766322455417 + 03/03 18:30:00,13.493693693693695,13.493693693693695,17.46782834155006 + 03/03 18:40:00,13.539939939939942,13.539939939939942,17.488871077710394 + 03/03 18:50:00,13.586186186186187,13.586186186186187,17.508691074833004 + 03/03 19:00:00,13.632432432432433,13.632432432432433,17.526957028173738 + 03/03 19:10:00,13.67867867867868,13.67867867867868,17.544796053754525 + 03/03 19:20:00,13.724924924924924,13.724924924924924,17.56075282378733 + 03/03 19:30:00,13.771171171171173,13.771171171171173,17.575588063386058 + 03/03 19:40:00,13.817417417417419,13.817417417417419,17.589360894814769 + 03/03 19:50:00,13.863663663663666,13.863663663663666,17.602289852897898 + 03/03 20:00:00,13.90990990990991,13.90990990990991,17.614512041649417 + 03/03 20:10:00,13.956156156156157,13.956156156156157,17.63860402032458 + 03/03 20:20:00,14.002402402402403,14.002402402402403,17.649940723480854 + 03/03 20:30:00,14.04864864864865,14.04864864864865,17.660377453293127 + 03/03 20:40:00,14.094894894894896,14.094894894894896,17.67034840496508 + 03/03 20:50:00,14.14114114114114,14.14114114114114,17.67983546406279 + 03/03 21:00:00,14.187387387387388,14.187387387387388,17.688852998463504 + 03/03 21:10:00,14.237837837837838,14.237837837837838,17.675644213139714 + 03/03 21:20:00,14.288288288288289,14.288288288288289,17.68886101370474 + 03/03 21:30:00,14.338738738738739,14.338738738738739,17.69738226717648 + 03/03 21:40:00,14.389189189189189,14.389189189189189,17.705605219696957 + 03/03 21:50:00,14.43963963963964,14.43963963963964,17.713710969654753 + 03/03 22:00:00,14.49009009009009,14.49009009009009,17.721583316161995 + 03/03 22:10:00,14.511111111111111,14.511111111111111,17.729140867131848 + 03/03 22:20:00,14.532132132132132,14.532132132132132,17.736088832561124 + 03/03 22:30:00,14.553153153153153,14.553153153153153,17.74272142899787 + 03/03 22:40:00,14.574174174174175,14.574174174174175,17.74898175801824 + 03/03 22:50:00,14.595195195195196,14.595195195195196,17.754904973042309 + 03/03 23:00:00,14.616216216216217,14.616216216216217,17.760651714556816 + 03/03 23:10:00,14.662462462462463,14.662462462462463,19.133745692023174 + 03/03 23:20:00,14.70870870870871,14.70870870870871,19.277565264909805 + 03/03 23:30:00,14.754954954954954,14.754954954954954,19.341109897585214 + 03/03 23:40:00,14.8012012012012,14.8012012012012,19.39148969421059 + 03/03 23:50:00,14.847447447447447,14.847447447447447,19.432417688684397 + 03/03 24:00:00,14.893693693693694,14.893693693693694,19.466989658135593 + 03/04 00:10:00,14.893693693693694,14.893693693693694,19.497048195638848 + 03/04 00:20:00,14.893693693693694,14.893693693693694,19.52374539892352 + 03/04 00:30:00,14.893693693693694,14.893693693693694,19.547576518927785 + 03/04 00:40:00,14.893693693693694,14.893693693693694,19.569241172906986 + 03/04 00:50:00,14.893693693693694,14.893693693693694,19.5890535348273 + 03/04 01:00:00,14.893693693693694,14.893693693693694,19.607280529877298 + 03/04 01:10:00,14.93993993993994,14.93993993993994,19.62419070640202 + 03/04 01:20:00,14.986186186186187,14.986186186186187,19.64011494769189 + 03/04 01:30:00,15.032432432432433,15.032432432432433,19.655251243376357 + 03/04 01:40:00,15.078678678678678,15.078678678678678,19.66973646032532 + 03/04 01:50:00,15.124924924924925,15.124924924924925,19.683607520791104 + 03/04 02:00:00,15.17117117117117,15.17117117117117,19.69692444085095 + 03/04 02:10:00,15.217417417417418,15.217417417417418,19.71027724455699 + 03/04 02:20:00,15.263663663663664,15.263663663663664,19.723178952701919 + 03/04 02:30:00,15.30990990990991,15.30990990990991,19.735775672120075 + 03/04 02:40:00,15.356156156156157,15.356156156156157,19.748027736979734 + 03/04 02:50:00,15.402402402402402,15.402402402402402,19.759961436451417 + 03/04 03:00:00,15.448648648648648,15.448648648648648,19.771569117663554 + 03/04 03:10:00,15.448648648648648,15.448648648648648,19.7822236461582 + 03/04 03:20:00,15.448648648648648,15.448648648648648,19.792443574026323 + 03/04 03:30:00,15.448648648648648,15.448648648648648,19.802209774890416 + 03/04 03:40:00,15.448648648648648,15.448648648648648,19.811512205987549 + 03/04 03:50:00,15.448648648648648,15.448648648648648,19.820409659029527 + 03/04 04:00:00,15.448648648648648,15.448648648648648,19.828851611272186 + 03/04 04:10:00,15.448648648648648,15.448648648648648,19.836987761428249 + 03/04 04:20:00,15.448648648648648,15.448648648648648,19.84484003608998 + 03/04 04:30:00,15.448648648648648,15.448648648648648,19.85228417092017 + 03/04 04:40:00,15.448648648648648,15.448648648648648,19.85937341593807 + 03/04 04:50:00,15.448648648648648,15.448648648648648,19.86603789688974 + 03/04 05:00:00,15.448648648648648,15.448648648648648,19.872393795543578 + 03/04 05:10:00,15.448648648648648,15.448648648648648,19.88004347614026 + 03/04 05:20:00,15.448648648648648,15.448648648648648,19.887539050146779 + 03/04 05:30:00,15.448648648648648,15.448648648648648,19.89476432447482 + 03/04 05:40:00,15.448648648648648,15.448648648648648,19.901742941374509 + 03/04 05:50:00,15.448648648648648,15.448648648648648,19.908474970559167 + 03/04 06:00:00,15.448648648648648,15.448648648648648,19.91505830448248 + 03/04 06:10:00,15.448648648648648,15.448648648648648,19.91871152251315 + 03/04 06:20:00,15.448648648648648,15.448648648648648,19.922050444723668 + 03/04 06:30:00,15.448648648648648,15.448648648648648,19.925335850222518 + 03/04 06:40:00,15.448648648648648,15.448648648648648,19.928438031814126 + 03/04 06:50:00,15.448648648648648,15.448648648648648,19.93160695006319 + 03/04 07:00:00,15.448648648648648,15.448648648648648,19.934735394920638 + 03/04 07:10:00,15.427627627627628,15.427627627627628,19.27697952580635 + 03/04 07:20:00,15.406606606606607,15.406606606606607,19.210433151608549 + 03/04 07:30:00,15.385585585585586,15.385585585585586,19.18417931458057 + 03/04 07:40:00,15.364564564564564,15.364564564564564,19.163692672629037 + 03/04 07:50:00,15.343543543543543,15.343543543543543,19.14720860413177 + 03/04 08:00:00,15.322522522522523,15.322522522522523,19.13309426318973 + 03/04 08:10:00,15.276276276276276,15.276276276276276,18.044209803733737 + 03/04 08:20:00,15.23003003003003,15.23003003003003,17.895518336059707 + 03/04 08:30:00,15.183783783783785,15.183783783783785,17.83163674618164 + 03/04 08:40:00,15.137537537537538,15.137537537537538,17.779914055376247 + 03/04 08:50:00,15.091291291291292,15.091291291291292,17.736904978279573 + 03/04 09:00:00,15.045045045045045,15.045045045045045,17.699489510077428 + 03/04 09:10:00,15.01981981981982,15.01981981981982,17.667035969492546 + 03/04 09:20:00,14.994594594594594,14.994594594594594,17.628051055003696 + 03/04 09:30:00,14.96936936936937,14.96936936936937,17.600105333301089 + 03/04 09:40:00,14.944144144144144,14.944144144144144,17.574145065005739 + 03/04 09:50:00,14.91891891891892,14.91891891891892,17.550366593972947 + 03/04 10:00:00,14.893693693693694,14.893693693693694,17.528693163812585 + 03/04 10:10:00,14.847447447447447,14.847447447447447,17.5084259407369 + 03/04 10:20:00,14.8012012012012,14.8012012012012,17.481274050618795 + 03/04 10:30:00,14.754954954954954,14.754954954954954,17.464209882139295 + 03/04 10:40:00,14.70870870870871,14.70870870870871,17.44826208456924 + 03/04 10:50:00,14.662462462462463,14.662462462462463,17.43301933508154 + 03/04 11:00:00,14.616216216216217,14.616216216216217,17.418254768081888 + 03/04 11:10:00,14.544744744744746,14.544744744744746,17.4037205138834 + 03/04 11:20:00,14.473273273273274,14.473273273273274,17.389467001321646 + 03/04 11:30:00,14.401801801801803,14.401801801801803,17.375502380466516 + 03/04 11:40:00,14.33033033033033,14.33033033033033,17.361855220958444 + 03/04 11:50:00,14.25885885885886,14.25885885885886,17.348620914860324 + 03/04 12:00:00,14.187387387387388,14.187387387387388,17.335836361658637 + 03/04 12:10:00,14.073873873873874,14.073873873873874,17.323293094152036 + 03/04 12:20:00,13.960360360360362,13.960360360360362,17.31143837983432 + 03/04 12:30:00,13.846846846846848,13.846846846846848,17.29997236406801 + 03/04 12:40:00,13.733333333333335,13.733333333333335,17.287982421912007 + 03/04 12:50:00,13.61981981981982,13.61981981981982,17.273924280148145 + 03/04 13:00:00,13.506306306306307,13.506306306306307,17.257429347786404 + 03/04 13:10:00,13.363363363363364,13.363363363363364,17.238760068205445 + 03/04 13:20:00,13.220420420420421,13.220420420420421,17.21811210199052 + 03/04 13:30:00,13.077477477477478,13.077477477477478,17.195896171405307 + 03/04 13:40:00,12.934534534534535,12.934534534534535,17.173875151940629 + 03/04 13:50:00,12.8,12.8,17.154366632331798 + 03/04 14:00:00,12.8,12.8,17.13806208560002 + 03/04 14:10:00,12.8,12.8,17.12553349529491 + 03/04 14:20:00,12.8,12.8,17.11661891146462 + 03/04 14:30:00,12.8,12.8,17.109790004825944 + 03/04 14:40:00,12.8,12.8,17.104525642353779 + 03/04 14:50:00,12.8,12.8,17.09854503940871 + 03/04 15:00:00,12.8,12.8,17.09313832211222 + 03/04 15:10:00,12.8,12.8,17.089620659404518 + 03/04 15:20:00,12.8,12.8,17.0853393376181 + 03/04 15:30:00,12.8,12.8,17.081430749763596 + 03/04 15:40:00,12.8,12.8,17.075611116844585 + 03/04 15:50:00,12.8,12.8,17.072680455619719 + 03/04 16:00:00,12.8,12.8,17.07143813981808 + 03/04 16:10:00,12.8,12.8,17.071062654488239 + 03/04 16:20:00,12.8,12.8,17.071871552736448 + 03/04 16:30:00,12.8,12.8,17.07111343949328 + 03/04 16:40:00,12.8,12.8,17.07258717768761 + 03/04 16:50:00,12.8,12.8,17.073854440872009 + 03/04 17:00:00,12.8,12.8,17.07467532316849 + 03/04 17:10:00,12.8,12.8,17.088992602378946 + 03/04 17:20:00,12.8,12.8,17.096598716839979 + 03/04 17:30:00,12.8,12.8,17.098770091072553 + 03/04 17:40:00,12.8,12.8,17.101030482177497 + 03/04 17:50:00,12.8,12.8,17.104295091944718 + 03/04 18:00:00,12.8,12.8,17.108098098669616 + 03/04 18:10:00,12.8,12.8,18.87508285119589 + 03/04 18:20:00,12.8,12.8,19.088213596494805 + 03/04 18:30:00,12.8,12.8,19.174014055180679 + 03/04 18:40:00,12.8,12.8,19.241760120262876 + 03/04 18:50:00,12.8,12.8,19.29653563173102 + 03/04 19:00:00,12.8,12.8,19.342401045770925 + 03/04 19:10:00,12.8,12.8,19.394154377788625 + 03/04 19:20:00,12.8,12.8,19.428828056882716 + 03/04 19:30:00,12.8,12.8,19.458801506534518 + 03/04 19:40:00,12.833633633633636,12.833633633633636,19.485449171617306 + 03/04 19:50:00,12.87987987987988,12.87987987987988,19.50907534948329 + 03/04 20:00:00,12.926126126126127,12.926126126126127,19.530248990759746 + 03/04 20:10:00,12.951351351351353,12.951351351351353,19.549697395808736 + 03/04 20:20:00,12.976576576576577,12.976576576576577,19.567334744946604 + 03/04 20:30:00,13.001801801801803,13.001801801801803,19.58401873413463 + 03/04 20:40:00,13.027027027027028,13.027027027027028,19.599817515824087 + 03/04 20:50:00,13.052252252252253,13.052252252252253,19.614889048978985 + 03/04 21:00:00,13.077477477477478,13.077477477477478,19.629401542645949 + 03/04 21:10:00,13.102702702702704,13.102702702702704,19.620917738047173 + 03/04 21:20:00,13.127927927927928,13.127927927927928,19.634520293388996 + 03/04 21:30:00,13.153153153153154,13.153153153153154,19.647339692478896 + 03/04 21:40:00,13.17837837837838,13.17837837837838,19.659481847123307 + 03/04 21:50:00,13.203603603603604,13.203603603603604,19.670955060268676 + 03/04 22:00:00,13.22882882882883,13.22882882882883,19.6819123191832 + 03/04 22:10:00,13.22882882882883,13.22882882882883,19.692383613245008 + 03/04 22:20:00,13.22882882882883,13.22882882882883,19.701688647115917 + 03/04 22:30:00,13.22882882882883,13.22882882882883,19.710103117802267 + 03/04 22:40:00,13.22882882882883,13.22882882882883,19.717554690429883 + 03/04 22:50:00,13.22882882882883,13.22882882882883,19.724289308437475 + 03/04 23:00:00,13.22882882882883,13.22882882882883,19.73037818879184 + 03/04 23:10:00,13.22882882882883,13.22882882882883,19.735731767190005 + 03/04 23:20:00,13.22882882882883,13.22882882882883,19.74032097745566 + 03/04 23:30:00,13.22882882882883,13.22882882882883,19.74456931625044 + 03/04 23:40:00,13.22882882882883,13.22882882882883,19.748616164828986 + 03/04 23:50:00,13.22882882882883,13.22882882882883,19.752472259919583 + 03/04 24:00:00,13.22882882882883,13.22882882882883,19.756130264750845 + 03/05 00:10:00,13.32132132132132,13.32132132132132,19.76016879629968 + 03/05 00:20:00,13.413813813813816,13.413813813813816,19.767419824897176 + 03/05 00:30:00,13.506306306306307,13.506306306306307,19.77455500569198 + 03/05 00:40:00,13.5987987987988,13.5987987987988,19.782310873762989 + 03/05 00:50:00,13.691291291291293,13.691291291291293,19.789815192217433 + 03/05 01:00:00,13.783783783783785,13.783783783783785,19.7973265517345 + 03/05 01:10:00,13.901501501501502,13.901501501501502,19.80543276211953 + 03/05 01:20:00,14.01921921921922,14.01921921921922,19.81112131877389 + 03/05 01:30:00,14.136936936936938,14.136936936936938,19.817215351321548 + 03/05 01:40:00,14.254654654654655,14.254654654654655,19.822882141018348 + 03/05 01:50:00,14.372372372372374,14.372372372372374,19.82879482220959 + 03/05 02:00:00,14.49009009009009,14.49009009009009,19.83486282884914 + 03/05 02:10:00,14.536336336336337,14.536336336336337,19.839768618515018 + 03/05 02:20:00,14.582582582582582,14.582582582582582,19.844905973896659 + 03/05 02:30:00,14.628828828828829,14.628828828828829,19.849928588807726 + 03/05 02:40:00,14.675075075075075,14.675075075075075,19.854878410151835 + 03/05 02:50:00,14.721321321321322,14.721321321321322,19.85968564034138 + 03/05 03:00:00,14.767567567567568,14.767567567567568,19.864270219323055 + 03/05 03:10:00,14.813813813813815,14.813813813813815,19.868788034163019 + 03/05 03:20:00,14.860060060060059,14.860060060060059,19.872950753957818 + 03/05 03:30:00,14.906306306306306,14.906306306306306,19.876989300003538 + 03/05 03:40:00,14.952552552552552,14.952552552552552,19.88085607978932 + 03/05 03:50:00,14.998798798798799,14.998798798798799,19.884546242805134 + 03/05 04:00:00,15.045045045045045,15.045045045045045,19.888228130222438 + 03/05 04:10:00,15.112312312312313,15.112312312312313,19.892910529099546 + 03/05 04:20:00,15.17957957957958,15.17957957957958,19.897376341935595 + 03/05 04:30:00,15.246846846846847,15.246846846846847,19.901853312465428 + 03/05 04:40:00,15.314114114114114,15.314114114114114,19.90622686862323 + 03/05 04:50:00,15.381381381381381,15.381381381381381,19.91064899989651 + 03/05 05:00:00,15.448648648648648,15.448648648648648,19.91515021213211 + 03/05 05:10:00,15.448648648648648,15.448648648648648,19.917890805925699 + 03/05 05:20:00,15.448648648648648,15.448648648648648,19.920797464471108 + 03/05 05:30:00,15.448648648648648,15.448648648648648,19.923542374541115 + 03/05 05:40:00,15.448648648648648,15.448648648648648,19.926207581346679 + 03/05 05:50:00,15.448648648648648,15.448648648648648,19.928814961966073 + 03/05 06:00:00,15.448648648648648,15.448648648648648,19.9312999269018 + 03/05 06:10:00,15.448648648648648,15.448648648648648,19.934628436022938 + 03/05 06:20:00,15.448648648648648,15.448648648648648,19.93818361886076 + 03/05 06:30:00,15.448648648648648,15.448648648648648,19.94161195879089 + 03/05 06:40:00,15.448648648648648,15.448648648648648,19.9451769209047 + 03/05 06:50:00,15.448648648648648,15.448648648648648,19.94869083135878 + 03/05 07:00:00,15.448648648648648,15.448648648648648,19.952141263462296 + 03/05 07:10:00,15.448648648648648,15.448648648648648,19.977645820376219 + 03/05 07:20:00,15.448648648648648,15.448648648648648,19.979607541766915 + 03/05 07:30:00,15.448648648648648,15.448648648648648,19.981072130681484 + 03/05 07:40:00,15.448648648648648,15.448648648648648,19.982139426521905 + 03/05 07:50:00,15.448648648648648,15.448648648648648,19.98282851846809 + 03/05 08:00:00,15.448648648648648,15.448648648648648,19.98312478092894 + 03/05 08:10:00,15.448648648648648,15.448648648648648,18.578565296117988 + 03/05 08:20:00,15.448648648648648,15.448648648648648,18.41182789153093 + 03/05 08:30:00,15.448648648648648,15.448648648648648,18.34612872410453 + 03/05 08:40:00,15.448648648648648,15.448648648648648,18.293999092434878 + 03/05 08:50:00,15.448648648648648,15.448648648648648,18.251761784111137 + 03/05 09:00:00,15.448648648648648,15.448648648648648,18.216107714446804 + 03/05 09:10:00,15.402402402402402,15.402402402402402,18.18696764020847 + 03/05 09:20:00,15.356156156156157,15.356156156156157,18.151902306244858 + 03/05 09:30:00,15.30990990990991,15.30990990990991,18.12804277914332 + 03/05 09:40:00,15.263663663663664,15.263663663663664,18.10578383122133 + 03/05 09:50:00,15.217417417417418,15.217417417417418,18.084164281529078 + 03/05 10:00:00,15.17117117117117,15.17117117117117,18.062577057098737 + 03/05 10:10:00,15.103903903903904,15.103903903903904,18.039251536239747 + 03/05 10:20:00,15.036636636636637,15.036636636636637,18.00673736152641 + 03/05 10:30:00,14.96936936936937,14.96936936936937,17.98280636997688 + 03/05 10:40:00,14.902102102102102,14.902102102102102,17.95940526875196 + 03/05 10:50:00,14.834834834834835,14.834834834834835,17.93759628170214 + 03/05 11:00:00,14.767567567567568,14.767567567567568,17.917709194001956 + 03/05 11:10:00,14.670870870870872,14.670870870870872,17.899542289637418 + 03/05 11:20:00,14.574174174174175,14.574174174174175,17.883396424731929 + 03/05 11:30:00,14.477477477477479,14.477477477477479,17.868408503561818 + 03/05 11:40:00,14.380780780780782,14.380780780780782,17.85396788427013 + 03/05 11:50:00,14.284084084084084,14.284084084084084,17.83938350124104 + 03/05 12:00:00,14.187387387387388,14.187387387387388,17.82439453424382 + 03/05 12:10:00,14.166366366366367,14.166366366366367,17.8096055915547 + 03/05 12:20:00,14.145345345345346,14.145345345345346,17.794819380617438 + 03/05 12:30:00,14.124324324324324,14.124324324324324,17.780206488390474 + 03/05 12:40:00,14.103303303303303,14.103303303303303,17.76594977943736 + 03/05 12:50:00,14.082282282282283,14.082282282282283,17.7522244813001 + 03/05 13:00:00,14.061261261261262,14.061261261261262,17.739324334153844 + 03/05 13:10:00,14.015015015015015,14.015015015015015,17.72634083310207 + 03/05 13:20:00,13.968768768768769,13.968768768768769,17.713286990585446 + 03/05 13:30:00,13.922522522522524,13.922522522522524,17.700753996143253 + 03/05 13:40:00,13.876276276276278,13.876276276276278,17.68878267610078 + 03/05 13:50:00,13.83003003003003,13.83003003003003,17.677708638657447 + 03/05 14:00:00,13.783783783783785,13.783783783783785,17.667531157325408 + 03/05 14:10:00,13.758558558558559,13.758558558558559,17.65892621403505 + 03/05 14:20:00,13.733333333333335,13.733333333333335,17.651843384063939 + 03/05 14:30:00,13.708108108108109,13.708108108108109,17.645436349377879 + 03/05 14:40:00,13.682882882882883,13.682882882882883,17.639978831706509 + 03/05 14:50:00,13.657657657657659,13.657657657657659,17.635410009785465 + 03/05 15:00:00,13.632432432432433,13.632432432432433,17.63165473001268 + 03/05 15:10:00,13.632432432432433,13.632432432432433,17.628654778520614 + 03/05 15:20:00,13.632432432432433,13.632432432432433,17.625027541231959 + 03/05 15:30:00,13.632432432432433,13.632432432432433,17.622081698654048 + 03/05 15:40:00,13.632432432432433,13.632432432432433,17.61941764819788 + 03/05 15:50:00,13.632432432432433,13.632432432432433,17.61749192794472 + 03/05 16:00:00,13.632432432432433,13.632432432432433,17.61615821240404 + 03/05 16:10:00,13.657657657657659,13.657657657657659,19.052053117468625 + 03/05 16:20:00,13.682882882882883,13.682882882882883,19.206337057323915 + 03/05 16:30:00,13.708108108108109,13.708108108108109,19.27330272558343 + 03/05 16:40:00,13.733333333333335,13.733333333333335,19.326267057780119 + 03/05 16:50:00,13.758558558558559,13.758558558558559,19.369328885013489 + 03/05 17:00:00,13.783783783783785,13.783783783783785,19.40603901949216 + 03/05 17:10:00,13.83003003003003,13.83003003003003,19.437421825506424 + 03/05 17:20:00,13.876276276276276,13.876276276276276,19.47297958026825 + 03/05 17:30:00,13.922522522522524,13.922522522522524,19.499125861591414 + 03/05 17:40:00,13.968768768768769,13.968768768768769,19.523561606430169 + 03/05 17:50:00,14.015015015015015,14.015015015015015,19.54650470013693 + 03/05 18:00:00,14.061261261261262,14.061261261261262,19.56812940997655 + 03/05 18:10:00,14.132732732732733,14.132732732732733,19.590191455525149 + 03/05 18:20:00,14.204204204204205,14.204204204204205,19.628156538207404 + 03/05 18:30:00,14.275675675675675,14.275675675675675,19.64797274512132 + 03/05 18:40:00,14.347147147147148,14.347147147147148,19.66708129362932 + 03/05 18:50:00,14.418618618618618,14.418618618618618,19.685523326877346 + 03/05 19:00:00,14.49009009009009,14.49009009009009,19.703034068438954 + 03/05 19:10:00,14.557357357357358,14.557357357357358,19.717591753310388 + 03/05 19:20:00,14.624624624624625,14.624624624624625,19.731533679672709 + 03/05 19:30:00,14.691891891891892,14.691891891891892,19.744516514879373 + 03/05 19:40:00,14.759159159159159,14.759159159159159,19.75672212226955 + 03/05 19:50:00,14.826426426426427,14.826426426426427,19.76827384476429 + 03/05 20:00:00,14.893693693693694,14.893693693693694,19.779265777805418 + 03/05 20:10:00,14.93993993993994,14.93993993993994,19.789519081668645 + 03/05 20:20:00,14.986186186186187,14.986186186186187,19.799063982332265 + 03/05 20:30:00,15.032432432432433,15.032432432432433,19.807967981926966 + 03/05 20:40:00,15.078678678678678,15.078678678678678,19.81625975295773 + 03/05 20:50:00,15.124924924924925,15.124924924924925,19.824143503746133 + 03/05 21:00:00,15.17117117117117,15.17117117117117,19.831614705722516 + 03/05 21:10:00,15.217417417417418,15.217417417417418,19.81903295844706 + 03/05 21:20:00,15.263663663663664,15.263663663663664,19.828688701159164 + 03/05 21:30:00,15.30990990990991,15.30990990990991,19.83802125060686 + 03/05 21:40:00,15.356156156156157,15.356156156156157,19.84717902388384 + 03/05 21:50:00,15.402402402402402,15.402402402402402,19.85614339021985 + 03/05 22:00:00,15.448648648648648,15.448648648648648,19.864949479484968 + 03/05 22:10:00,15.499099099099098,15.499099099099098,19.871744047063623 + 03/05 22:20:00,15.54954954954955,15.54954954954955,19.878501034847838 + 03/05 22:30:00,15.6,15.6,19.88532539547424 + 03/05 22:40:00,15.6,15.6,19.892168037297659 + 03/05 22:50:00,15.6,15.6,19.898983004629579 + 03/05 23:00:00,15.6,15.6,19.905761472315669 + 03/05 23:10:00,15.6,15.6,19.912863002413116 + 03/05 23:20:00,15.6,15.6,19.91976849019617 + 03/05 23:30:00,15.6,15.6,19.9265477613118 + 03/05 23:40:00,15.6,15.6,19.933135114738517 + 03/05 23:50:00,15.6,15.6,19.93957915768428 + 03/05 24:00:00,15.6,15.6,19.945839604438257 + 03/06 00:10:00,15.6,15.6,19.951168499612437 + 03/06 00:20:00,15.6,15.6,19.95665778291902 + 03/06 00:30:00,15.6,15.6,19.96215660015804 + 03/06 00:40:00,15.6,15.6,19.96772504866663 + 03/06 00:50:00,15.6,15.6,19.973284318904275 + 03/06 01:00:00,15.6,15.6,19.978814737525583 + 03/06 01:10:00,15.6,15.6,19.984409436225844 + 03/06 01:20:00,15.6,15.6,19.98990731214878 + 03/06 01:30:00,15.6,15.6,19.995331520358435 + 03/06 01:40:00,15.6,15.6,20.000654722867997 + 03/06 01:50:00,15.6,15.6,20.005808021283565 + 03/06 02:00:00,15.6,15.6,20.01098403372128 + 03/06 02:10:00,15.6,15.6,20.016318628293815 + 03/06 02:20:00,15.6,15.6,20.021539012268133 + 03/06 02:30:00,15.6,15.6,20.026623658356486 + 03/06 02:40:00,15.6,15.6,20.031494113044177 + 03/06 02:50:00,15.6,15.6,20.036315323566009 + 03/06 03:00:00,15.6,15.6,20.041043689744105 + 03/06 03:10:00,15.6,15.6,20.04542350866117 + 03/06 03:20:00,15.6,15.6,20.04985026289642 + 03/06 03:30:00,15.6,15.6,20.054210284871158 + 03/06 03:40:00,15.6,15.6,20.05862004229761 + 03/06 03:50:00,15.6,15.6,20.06306974527048 + 03/06 04:00:00,15.6,15.6,20.0675093684041 + 03/06 04:10:00,15.6,15.6,20.072667020650969 + 03/06 04:20:00,15.6,15.6,20.077612528141846 + 03/06 04:30:00,15.6,15.6,20.08242546071576 + 03/06 04:40:00,15.6,15.6,20.08716443370689 + 03/06 04:50:00,15.6,15.6,20.091797947331498 + 03/06 05:00:00,15.6,15.6,20.09633866978603 + 03/06 05:10:00,15.6,15.6,20.099580050853704 + 03/06 05:20:00,15.6,15.6,20.102775064968627 + 03/06 05:30:00,15.6,15.6,20.10607369817548 + 03/06 05:40:00,15.6,15.6,20.109407040120318 + 03/06 05:50:00,15.6,15.6,20.112757316538155 + 03/06 06:00:00,15.6,15.6,20.11611600182 + 03/06 06:10:00,15.6,15.6,20.117653705990067 + 03/06 06:20:00,15.6,15.6,20.119194930880349 + 03/06 06:30:00,15.6,15.6,20.12069043485241 + 03/06 06:40:00,15.6,15.6,20.122118091995469 + 03/06 06:50:00,15.6,15.6,20.123496530649076 + 03/06 07:00:00,15.6,15.6,20.124763865598376 + 03/06 07:10:00,15.6,15.6,18.11617817710143 + 03/06 07:20:00,15.6,15.6,17.883612675289905 + 03/06 07:30:00,15.6,15.6,17.796952514382459 + 03/06 07:40:00,15.6,15.6,17.728717331861195 + 03/06 07:50:00,15.6,15.6,17.673994344641977 + 03/06 08:00:00,15.6,15.6,17.627689358821188 + 03/06 08:10:00,15.6,15.6,16.135989016631528 + 03/06 08:20:00,15.6,15.6,15.912883900972675 + 03/06 08:30:00,15.6,15.6,15.80399078167229 + 03/06 08:40:00,15.6,15.6,15.712192268212729 + 03/06 08:50:00,15.6,15.6,15.633737195817933 + 03/06 09:00:00,15.6,15.6,15.564442987180139 + 03/06 09:10:00,15.6,15.6,15.471350324701135 + 03/06 09:20:00,15.6,15.6,15.40137663198139 + 03/06 09:30:00,15.6,15.6,15.343247632308886 + 03/06 09:40:00,15.6,15.6,15.28853209905738 + 03/06 09:50:00,15.6,15.6,15.236749356845252 + 03/06 10:00:00,15.6,15.6,15.187557310936203 + 03/06 10:10:00,15.6,15.6,15.145438964689749 + 03/06 10:20:00,15.6,15.6,15.094880708389287 + 03/06 10:30:00,15.6,15.6,15.056947851305443 + 03/06 10:40:00,15.6,15.6,15.020949973964605 + 03/06 10:50:00,15.591591591591591,15.591591591591591,14.986676518140323 + 03/06 11:00:00,15.448648648648648,15.448648648648648,14.95400607923237 + 03/06 11:10:00,15.381381381381381,15.381381381381381,14.91974348654735 + 03/06 11:20:00,15.314114114114114,15.314114114114114,14.884149016158366 + 03/06 11:30:00,15.246846846846847,15.246846846846847,14.854412294098684 + 03/06 11:40:00,15.17957957957958,15.17957957957958,14.822120404118689 + 03/06 11:50:00,15.112312312312313,15.112312312312313,14.794291467694866 + 03/06 12:00:00,15.045045045045045,15.045045045045045,14.76431624510052 + 03/06 12:10:00,14.952552552552552,14.952552552552552,14.739164150217184 + 03/06 12:20:00,14.86006006006006,14.86006006006006,14.721898149483718 + 03/06 12:30:00,14.767567567567568,14.767567567567568,14.698143708727042 + 03/06 12:40:00,14.675075075075075,14.675075075075075,14.675243539290069 + 03/06 12:50:00,14.582582582582584,14.582582582582584,14.65153087247301 + 03/06 13:00:00,14.49009009009009,14.49009009009009,14.6311843473583 + 03/06 13:10:00,14.418618618618618,14.418618618618618,14.61066877313018 + 03/06 13:20:00,14.347147147147148,14.347147147147148,14.582768973628255 + 03/06 13:30:00,14.275675675675675,14.275675675675675,14.56593513830826 + 03/06 13:40:00,14.204204204204205,14.204204204204205,14.549213142509594 + 03/06 13:50:00,14.132732732732734,14.132732732732734,14.534860852093676 + 03/06 14:00:00,14.061261261261262,14.061261261261262,14.519982336928003 + 03/06 14:10:00,14.015015015015015,14.015015015015015,14.509085527108156 + 03/06 14:20:00,13.968768768768769,13.968768768768769,14.500788984737519 + 03/06 14:30:00,13.922522522522524,13.922522522522524,14.492971697259307 + 03/06 14:40:00,13.876276276276278,13.876276276276278,14.483093327907909 + 03/06 14:50:00,13.83003003003003,13.83003003003003,14.477343280126352 + 03/06 15:00:00,13.783783783783785,13.783783783783785,14.470317966164185 + 03/06 15:10:00,13.737537537537538,13.737537537537538,14.463952160709689 + 03/06 15:20:00,13.691291291291293,13.691291291291293,14.460931712305542 + 03/06 15:30:00,13.645045045045047,13.645045045045047,14.454039349426129 + 03/06 15:40:00,13.5987987987988,13.5987987987988,14.449393910040444 + 03/06 15:50:00,13.552552552552554,13.552552552552554,14.442217704122545 + 03/06 16:00:00,13.506306306306307,13.506306306306307,14.43845912212727 + 03/06 16:05:00,13.527327327327328,13.527327327327328,16.60417981032571 + 03/06 16:10:00,13.527327327327328,13.527327327327328,16.603575045813327 + 03/06 16:20:00,13.548348348348349,13.548348348348349,16.853196449607496 + 03/06 16:30:00,13.56936936936937,13.56936936936937,16.952519195792026 + 03/06 16:40:00,13.590390390390392,13.590390390390392,17.028624856429116 + 03/06 16:50:00,13.611411411411412,13.611411411411412,17.087903150117893 + 03/06 17:00:00,13.632432432432433,13.632432432432433,17.13924129555126 + 03/06 17:10:00,13.632432432432433,13.632432432432433,17.20978876265307 + 03/06 17:20:00,13.632432432432433,13.632432432432433,17.26753131407303 + 03/06 17:30:00,13.632432432432433,13.632432432432433,17.302899624476816 + 03/06 17:40:00,13.632432432432433,13.632432432432433,17.335328212221115 + 03/06 17:50:00,13.632432432432433,13.632432432432433,17.365088344546267 + 03/06 18:00:00,13.632432432432433,13.632432432432433,17.39261321386049 + 03/06 18:10:00,13.703903903903905,13.703903903903905,17.431964133428108 + 03/06 18:20:00,13.775375375375376,13.775375375375376,17.462139023227356 + 03/06 18:30:00,13.846846846846847,13.846846846846847,17.485415723304074 + 03/06 18:40:00,13.918318318318319,13.918318318318319,17.50753780486954 + 03/06 18:50:00,13.989789789789791,13.989789789789791,17.52852742405587 + 03/06 19:00:00,14.061261261261262,14.061261261261262,17.548053829162805 + 03/06 19:10:00,14.082282282282283,14.082282282282283,17.565941404058607 + 03/06 19:20:00,14.103303303303303,14.103303303303303,17.582324072543547 + 03/06 19:30:00,14.124324324324324,14.124324324324324,17.59731547861239 + 03/06 19:40:00,14.145345345345346,14.145345345345346,17.611107860843313 + 03/06 19:50:00,14.166366366366367,14.166366366366367,17.62383403476539 + 03/06 20:00:00,14.187387387387388,14.187387387387388,17.635681888579805 + 03/06 20:10:00,14.237837837837838,14.237837837837838,17.659697244182934 + 03/06 20:20:00,14.288288288288289,14.288288288288289,17.670298773921127 + 03/06 20:30:00,14.338738738738739,14.338738738738739,17.680100202490665 + 03/06 20:40:00,14.389189189189189,14.389189189189189,17.689477495856705 + 03/06 20:50:00,14.43963963963964,14.43963963963964,17.69853467581127 + 03/06 21:00:00,14.49009009009009,14.49009009009009,17.707315084863809 + 03/06 21:10:00,14.557357357357358,14.557357357357358,17.69263150248367 + 03/06 21:20:00,14.624624624624625,14.624624624624625,17.705455623981963 + 03/06 21:30:00,14.691891891891892,14.691891891891892,17.713640366214425 + 03/06 21:40:00,14.759159159159159,14.759159159159159,17.721764495402238 + 03/06 21:50:00,14.826426426426427,14.826426426426427,17.729694857388464 + 03/06 22:00:00,14.893693693693694,14.893693693693694,17.73743324819196 + 03/06 22:10:00,14.965165165165164,14.965165165165164,17.745596363645008 + 03/06 22:20:00,15.036636636636637,15.036636636636637,17.753791433540905 + 03/06 22:30:00,15.108108108108109,15.108108108108109,17.761818700845585 + 03/06 22:40:00,15.17957957957958,15.17957957957958,17.769703635112163 + 03/06 22:50:00,15.251051051051052,15.251051051051052,17.777363268301934 + 03/06 23:00:00,15.322522522522523,15.322522522522523,17.784941884319986 + 03/06 23:10:00,15.343543543543543,15.343543543543543,19.16597194173015 + 03/06 23:20:00,15.364564564564564,15.364564564564564,19.31161795617007 + 03/06 23:30:00,15.385585585585586,15.385585585585586,19.37699288847601 + 03/06 23:40:00,15.406606606606607,15.406606606606607,19.428724677614743 + 03/06 23:50:00,15.427627627627628,15.427627627627628,19.470781931329 + 03/06 24:00:00,15.448648648648648,15.448648648648648,19.506318319775944 + 03/07 00:10:00,15.499099099099098,15.499099099099098,19.536496153702346 + 03/07 00:20:00,15.54954954954955,15.54954954954955,19.563254881115637 + 03/07 00:30:00,15.6,15.6,19.587379955405269 + 03/07 00:40:00,15.6,15.6,19.609544656901784 + 03/07 00:50:00,15.6,15.6,19.630041107313056 + 03/07 01:00:00,15.6,15.6,19.64912304422511 + 03/07 01:10:00,15.6,15.6,19.667310004229966 + 03/07 01:20:00,15.6,15.6,19.684432132101269 + 03/07 01:30:00,15.6,15.6,19.700657368580499 + 03/07 01:40:00,15.6,15.6,19.71613675098443 + 03/07 01:50:00,15.6,15.6,19.73090668099099 + 03/07 02:00:00,15.6,15.6,19.74504344838372 + 03/07 02:10:00,15.6,15.6,19.759114058121037 + 03/07 02:20:00,15.6,15.6,19.772513485897034 + 03/07 02:30:00,15.6,15.6,19.785423148734425 + 03/07 02:40:00,15.6,15.6,19.797801129402385 + 03/07 02:50:00,15.6,15.6,19.80971080672919 + 03/07 03:00:00,15.6,15.6,19.82118336167829 + 03/07 03:10:00,15.6,15.6,19.831272993982727 + 03/07 03:20:00,15.6,15.6,19.841194418981073 + 03/07 03:30:00,15.6,15.6,19.85087726373547 + 03/07 03:40:00,15.6,15.6,19.86035202073541 + 03/07 03:50:00,15.6,15.6,19.869621811430464 + 03/07 04:00:00,15.6,15.6,19.87860031868166 + 03/07 04:10:00,15.6,15.6,19.888103434508829 + 03/07 04:20:00,15.6,15.6,19.897466740438639 + 03/07 04:30:00,15.6,15.6,19.90659808606594 + 03/07 04:40:00,15.6,15.6,19.915528998027314 + 03/07 04:50:00,15.6,15.6,19.924180482949845 + 03/07 05:00:00,15.6,15.6,19.932663089867569 + 03/07 05:10:00,15.6,15.6,19.94095787650454 + 03/07 05:20:00,15.6,15.6,19.948933078296489 + 03/07 05:30:00,15.6,15.6,19.95669041984914 + 03/07 05:40:00,15.6,15.6,19.964160882218324 + 03/07 05:50:00,15.6,15.6,19.971418922287798 + 03/07 06:00:00,15.6,15.6,19.978556074111315 + 03/07 06:10:00,15.6,15.6,19.98426308511905 + 03/07 06:20:00,15.6,15.6,19.9899515795583 + 03/07 06:30:00,15.6,15.6,19.99553365257303 + 03/07 06:40:00,15.6,15.6,20.001005735838694 + 03/07 06:50:00,15.6,15.6,20.00648706185544 + 03/07 07:00:00,15.6,15.6,20.011887201490557 + 03/07 07:10:00,15.6,15.6,18.001005618913383 + 03/07 07:20:00,15.6,15.6,17.7682432783333 + 03/07 07:30:00,15.6,15.6,17.681913929716758 + 03/07 07:40:00,15.6,15.6,17.613710526583579 + 03/07 07:50:00,15.6,15.6,17.558804466094487 + 03/07 08:00:00,15.6,15.6,17.51212148933219 + 03/07 08:05:00,15.6,15.6,16.019615736368544 + 03/07 08:10:00,15.6,15.6,16.019448720583467 + 03/07 08:15:00,15.6,15.6,15.796833522318189 + 03/07 08:20:00,15.6,15.6,15.796855245655362 + 03/07 08:30:00,15.6,15.6,15.688265580633756 + 03/07 08:40:00,15.6,15.6,15.598208678580109 + 03/07 08:50:00,15.6,15.6,15.521920294285647 + 03/07 09:00:00,15.6,15.6,15.455519095243382 + 03/07 09:10:00,15.6,15.6,15.36771085061816 + 03/07 09:20:00,15.6,15.6,15.302893113382498 + 03/07 09:30:00,15.6,15.6,15.25017884191419 + 03/07 09:40:00,15.6,15.6,15.200984669765369 + 03/07 09:50:00,15.6,15.6,15.15488678489722 + 03/07 10:00:00,15.6,15.6,15.111539280007872 + 03/07 10:10:00,15.6,15.6,15.071708003139273 + 03/07 10:20:00,15.6,15.6,15.023504544416808 + 03/07 10:30:00,15.6,15.6,14.98792287165205 + 03/07 10:40:00,15.6,15.6,14.955138889119266 + 03/07 10:50:00,15.6,15.6,14.926257591164437 + 03/07 11:00:00,15.6,15.6,14.902922052535743 + 03/07 11:10:00,15.507507507507507,15.507507507507507,14.881846871705662 + 03/07 11:20:00,15.415015015015016,15.415015015015016,14.857358617750212 + 03/07 11:30:00,15.322522522522523,15.322522522522523,14.842347759811114 + 03/07 11:40:00,15.23003003003003,15.23003003003003,14.824943204791598 + 03/07 11:50:00,15.137537537537538,15.137537537537538,14.80905050395966 + 03/07 12:00:00,15.045045045045045,15.045045045045045,14.78711371926155 + 03/07 12:10:00,15.01981981981982,15.01981981981982,14.767721230795797 + 03/07 12:20:00,14.994594594594594,14.994594594594594,14.754604722043768 + 03/07 12:30:00,14.96936936936937,14.96936936936937,14.733088796844024 + 03/07 12:40:00,14.944144144144144,14.944144144144144,14.712423549384539 + 03/07 12:50:00,14.91891891891892,14.91891891891892,14.691714036649847 + 03/07 13:00:00,14.893693693693694,14.893693693693694,14.676159631656457 + 03/07 13:10:00,14.826426426426427,14.826426426426427,14.660597716671888 + 03/07 13:20:00,14.759159159159159,14.759159159159159,14.637919557821265 + 03/07 13:30:00,14.691891891891892,14.691891891891892,14.62693281994153 + 03/07 13:40:00,14.624624624624625,14.624624624624625,14.615340966512442 + 03/07 13:50:00,14.557357357357358,14.557357357357358,14.605198743658308 + 03/07 14:00:00,14.49009009009009,14.49009009009009,14.592675344588845 + 03/07 14:10:00,14.43963963963964,14.43963963963964,14.582007163887944 + 03/07 14:20:00,14.389189189189189,14.389189189189189,14.572643793173987 + 03/07 14:30:00,14.338738738738739,14.338738738738739,14.562674646528409 + 03/07 14:40:00,14.288288288288289,14.288288288288289,14.549858707029529 + 03/07 14:50:00,14.237837837837839,14.237837837837839,14.54012530709217 + 03/07 15:00:00,14.187387387387388,14.187387387387388,14.52912174602524 + 03/07 15:10:00,14.187387387387388,14.187387387387388,14.520195589121809 + 03/07 15:20:00,14.187387387387388,14.187387387387388,14.514028210197909 + 03/07 15:30:00,14.187387387387388,14.187387387387388,14.504217821504846 + 03/07 15:40:00,14.187387387387389,14.187387387387389,14.49730554021736 + 03/07 15:50:00,14.187387387387388,14.187387387387388,14.488554931583874 + 03/07 16:00:00,14.187387387387388,14.187387387387388,14.483064363748296 + 03/07 16:05:00,14.14114114114114,14.14114114114114,16.643297089253236 + 03/07 16:10:00,14.14114114114114,14.14114114114114,16.64216739001745 + 03/07 16:20:00,14.094894894894896,14.094894894894896,16.888718025743569 + 03/07 16:30:00,14.04864864864865,14.04864864864865,16.986354856736257 + 03/07 16:40:00,14.002402402402403,14.002402402402403,17.060571605551077 + 03/07 16:50:00,13.956156156156157,13.956156156156157,17.117779136408765 + 03/07 17:00:00,13.90990990990991,13.90990990990991,17.16783716472288 + 03/07 17:10:00,13.935135135135136,13.935135135135136,17.23835594430171 + 03/07 17:20:00,13.960360360360362,13.960360360360362,17.296361100818694 + 03/07 17:30:00,13.985585585585586,13.985585585585586,17.329959503928344 + 03/07 17:40:00,14.010810810810812,14.010810810810812,17.361414153494157 + 03/07 17:50:00,14.036036036036038,14.036036036036038,17.390094830671428 + 03/07 18:00:00,14.061261261261262,14.061261261261262,17.41626021316074 + 03/07 18:10:00,14.107507507507508,14.107507507507508,17.453341296809179 + 03/07 18:20:00,14.153753753753755,14.153753753753755,17.4811386955677 + 03/07 18:30:00,14.2,14.2,17.50194163712262 + 03/07 18:40:00,14.246246246246246,14.246246246246246,17.521804341333316 + 03/07 18:50:00,14.292492492492493,14.292492492492493,17.54085810504548 + 03/07 19:00:00,14.338738738738739,14.338738738738739,17.55879895891102 + 03/07 19:10:00,14.363963963963965,14.363963963963965,17.575687924886059 + 03/07 19:20:00,14.389189189189189,14.389189189189189,17.59081696297866 + 03/07 19:30:00,14.414414414414415,14.414414414414415,17.604558567486355 + 03/07 19:40:00,14.439639639639639,14.439639639639639,17.616992098947916 + 03/07 19:50:00,14.464864864864865,14.464864864864865,17.628391744868808 + 03/07 20:00:00,14.49009009009009,14.49009009009009,17.638788817882248 + 03/07 20:10:00,14.536336336336337,14.536336336336337,17.661199735742483 + 03/07 20:20:00,14.582582582582582,14.582582582582582,17.67094776408315 + 03/07 20:30:00,14.628828828828829,14.628828828828829,17.679837293129915 + 03/07 20:40:00,14.675075075075075,14.675075075075075,17.68835102346367 + 03/07 20:50:00,14.721321321321322,14.721321321321322,17.69647807758357 + 03/07 21:00:00,14.767567567567568,14.767567567567568,17.7042198456935 + 03/07 21:10:00,14.767567567567568,14.767567567567568,17.689362405927306 + 03/07 21:20:00,14.767567567567568,14.767567567567568,17.700828381900263 + 03/07 21:30:00,14.767567567567568,14.767567567567568,17.707411240446925 + 03/07 21:40:00,14.767567567567568,14.767567567567568,17.713496900396796 + 03/07 21:50:00,14.767567567567568,14.767567567567568,17.719216653003714 + 03/07 22:00:00,14.767567567567568,14.767567567567568,17.72459885062049 + 03/07 22:10:00,14.813813813813815,14.813813813813815,17.729013847260395 + 03/07 22:20:00,14.860060060060059,14.860060060060059,17.733644237158705 + 03/07 22:30:00,14.906306306306306,14.906306306306306,17.73855249956325 + 03/07 22:40:00,14.952552552552552,14.952552552552552,17.74376774564042 + 03/07 22:50:00,14.998798798798799,14.998798798798799,17.749196764821517 + 03/07 23:00:00,15.045045045045045,15.045045045045045,17.754796384717989 + 03/07 23:10:00,15.066066066066066,15.066066066066066,19.132808098027235 + 03/07 23:20:00,15.087087087087087,15.087087087087087,19.27779874008916 + 03/07 23:30:00,15.108108108108109,15.108108108108109,19.34254434146043 + 03/07 23:40:00,15.12912912912913,15.12912912912913,19.393950570458537 + 03/07 23:50:00,15.15015015015015,15.15015015015015,19.435642722551948 + 03/07 24:00:00,15.17117117117117,15.17117117117117,19.470753769065707 + 03/08 00:10:00,15.196396396396397,15.196396396396397,19.502085147591289 + 03/08 00:20:00,15.22162162162162,15.22162162162162,19.529675849047579 + 03/08 00:30:00,15.246846846846847,15.246846846846847,19.55434649744532 + 03/08 00:40:00,15.272072072072073,15.272072072072073,19.57657100628225 + 03/08 00:50:00,15.297297297297297,15.297297297297297,19.59681855498608 + 03/08 01:00:00,15.322522522522523,15.322522522522523,19.615330330048779 + 03/08 01:10:00,15.343543543543543,15.343543543543543,19.63169990311632 + 03/08 01:20:00,15.364564564564564,15.364564564564564,19.647308520017029 + 03/08 01:30:00,15.385585585585586,15.385585585585586,19.66215098434659 + 03/08 01:40:00,15.406606606606607,15.406606606606607,19.676416970151935 + 03/08 01:50:00,15.427627627627628,15.427627627627628,19.690031883029243 + 03/08 02:00:00,15.448648648648648,15.448648648648648,19.703198481967008 + 03/08 02:10:00,15.448648648648648,15.448648648648648,19.715788226410383 + 03/08 02:20:00,15.448648648648648,15.448648648648648,19.72789415562101 + 03/08 02:30:00,15.448648648648648,15.448648648648648,19.739505907735187 + 03/08 02:40:00,15.448648648648648,15.448648648648648,19.750600562705473 + 03/08 02:50:00,15.448648648648648,15.448648648648648,19.761289354538194 + 03/08 03:00:00,15.448648648648648,15.448648648648648,19.771625804385804 + 03/08 03:10:00,15.499099099099098,15.499099099099098,19.78148826537595 + 03/08 03:20:00,15.54954954954955,15.54954954954955,19.79119948376917 + 03/08 03:30:00,15.6,15.6,19.80066429628623 + 03/08 03:40:00,15.6,15.6,19.80992697016923 + 03/08 03:50:00,15.6,15.6,19.819083756094487 + 03/08 04:00:00,15.6,15.6,19.82804343652906 + 03/08 04:10:00,15.6,15.6,19.837683672576924 + 03/08 04:20:00,15.6,15.6,19.84672896433913 + 03/08 04:30:00,15.6,15.6,19.8553552366243 + 03/08 04:40:00,15.6,15.6,19.86365056956774 + 03/08 04:50:00,15.6,15.6,19.87163015374472 + 03/08 05:00:00,15.6,15.6,19.87932771982691 + 03/08 05:10:00,15.6,15.6,19.886251494265669 + 03/08 05:20:00,15.6,15.6,19.893180124999654 + 03/08 05:30:00,15.6,15.6,19.90010397940712 + 03/08 05:40:00,15.6,15.6,19.90703296829389 + 03/08 05:50:00,15.6,15.6,19.91388524361923 + 03/08 06:00:00,15.6,15.6,19.920650637633089 + 03/08 06:10:00,15.6,15.6,19.927843576864775 + 03/08 06:20:00,15.6,15.6,19.934693396486698 + 03/08 06:30:00,15.6,15.6,19.9413393057409 + 03/08 06:40:00,15.6,15.6,19.94769030381505 + 03/08 06:50:00,15.6,15.6,19.953815381445048 + 03/08 07:00:00,15.6,15.6,19.959691001384745 + 03/08 07:10:00,15.6,15.6,17.94907449449909 + 03/08 07:20:00,15.6,15.6,17.715158057400168 + 03/08 07:30:00,15.6,15.6,17.62811428084498 + 03/08 07:40:00,15.6,15.6,17.559618256579058 + 03/08 07:50:00,15.6,15.6,17.504671252236734 + 03/08 08:00:00,15.6,15.6,17.458085994247459 + 03/08 08:10:00,15.6,15.6,15.965539130649733 + 03/08 08:15:00,15.6,15.6,15.744937171084521 + 03/08 08:20:00,15.6,15.6,15.743645693345967 + 03/08 08:30:00,15.6,15.6,15.634206126552499 + 03/08 08:40:00,15.6,15.6,15.543879847867976 + 03/08 08:50:00,15.545345345345345,15.545345345345345,15.466052800650746 + 03/08 09:00:00,15.448648648648648,15.448648648648648,15.398214106425473 + 03/08 09:10:00,15.263663663663664,15.263663663663664,15.313448027889944 + 03/08 09:20:00,15.078678678678678,15.078678678678678,15.252487144362718 + 03/08 09:30:00,14.893693693693694,14.893693693693694,15.203574096276843 + 03/08 09:40:00,14.70870870870871,14.70870870870871,15.158482742203813 + 03/08 09:50:00,14.523723723723723,14.523723723723723,15.116719238216895 + 03/08 10:00:00,14.338738738738739,14.338738738738739,15.07773815903669 + 03/08 10:10:00,14.2,14.2,15.039765568018586 + 03/08 10:20:00,14.061261261261262,14.061261261261262,14.99075198619546 + 03/08 10:30:00,13.922522522522524,13.922522522522524,14.954448130076259 + 03/08 10:40:00,13.783783783783785,13.783783783783785,14.919694098185769 + 03/08 10:50:00,13.645045045045047,13.645045045045047,14.887087992258034 + 03/08 11:00:00,13.506306306306307,13.506306306306307,14.857258288599948 + 03/08 11:10:00,13.388588588588588,13.388588588588588,14.831035424479577 + 03/08 11:20:00,13.270870870870871,13.270870870870871,14.798280408037734 + 03/08 11:30:00,13.153153153153154,13.153153153153154,14.773137175723488 + 03/08 11:40:00,13.035435435435435,13.035435435435435,14.746850331622469 + 03/08 11:50:00,12.917717717717718,12.917717717717718,14.723722727394236 + 03/08 12:00:00,12.8,12.8,14.69999387136367 + 03/08 12:10:00,12.8,12.8,14.678711772216163 + 03/08 12:20:00,12.8,12.8,14.666928917829367 + 03/08 12:30:00,12.8,12.8,14.646773383550562 + 03/08 12:40:00,12.8,12.8,14.629114008994037 + 03/08 12:50:00,12.8,12.8,14.609644864226397 + 03/08 13:00:00,12.8,12.8,14.593119972200955 + 03/08 13:10:00,12.8,12.8,14.577614650284627 + 03/08 13:20:00,12.8,12.8,14.55137597257453 + 03/08 13:30:00,12.8,12.8,14.538127178443896 + 03/08 13:40:00,12.8,12.8,14.522784972536205 + 03/08 13:50:00,12.8,12.8,14.511799889037297 + 03/08 14:00:00,12.8,12.8,14.498643915643635 + 03/08 14:10:00,12.8,12.8,14.489325317762152 + 03/08 14:20:00,12.8,12.8,14.481889977895778 + 03/08 14:30:00,12.8,12.8,14.474017277463803 + 03/08 14:40:00,12.8,12.8,14.464812801342813 + 03/08 14:50:00,12.8,12.8,14.456549621011514 + 03/08 15:00:00,12.8,12.8,14.448414085679723 + 03/08 15:10:00,12.8,12.8,14.441574193947894 + 03/08 15:20:00,12.8,12.8,14.435934170062494 + 03/08 15:30:00,12.8,12.8,14.426443180224439 + 03/08 15:40:00,12.8,12.8,14.420095205189769 + 03/08 15:50:00,12.8,12.8,14.413787031496448 + 03/08 16:00:00,12.8,12.8,14.408825534760128 + 03/08 16:05:00,12.8,12.8,16.558862990118209 + 03/08 16:10:00,12.8,12.8,16.558061782977089 + 03/08 16:20:00,12.8,12.8,16.80542882851876 + 03/08 16:30:00,12.8,12.8,16.904488607142946 + 03/08 16:40:00,12.8,12.8,16.98076186579953 + 03/08 16:50:00,12.8,12.8,17.038962613851866 + 03/08 17:00:00,12.8,12.8,17.088172588774048 + 03/08 17:10:00,12.8,12.8,17.15789751331053 + 03/08 17:20:00,12.8,12.8,17.215830012447257 + 03/08 17:30:00,12.8,12.8,17.250175336831945 + 03/08 17:40:00,12.8,12.8,17.281293065403749 + 03/08 17:50:00,12.8,12.8,17.308951805865687 + 03/08 18:00:00,12.8,12.8,17.334360881084167 + 03/08 18:10:00,12.8,12.8,17.371779669526626 + 03/08 18:20:00,12.8,12.8,17.399687166557187 + 03/08 18:30:00,12.8,12.8,17.42045058991298 + 03/08 18:40:00,12.8,12.8,17.43999108290963 + 03/08 18:50:00,12.8,12.8,17.45856665553624 + 03/08 19:00:00,12.8,12.8,17.47577551766881 + 03/08 19:10:00,12.8,12.8,17.491627840706856 + 03/08 19:20:00,12.8,12.8,17.507698752186813 + 03/08 19:30:00,12.863063063063063,12.863063063063063,17.52258138954101 + 03/08 19:40:00,12.934534534534535,12.934534534534535,17.536759409469945 + 03/08 19:50:00,13.006006006006008,13.006006006006008,17.55003755723413 + 03/08 20:00:00,13.077477477477478,13.077477477477478,17.562608579975405 + 03/08 20:10:00,13.123723723723725,13.123723723723725,17.587780768811066 + 03/08 20:20:00,13.169969969969971,13.169969969969971,17.599679580692887 + 03/08 20:30:00,13.216216216216218,13.216216216216218,17.610676817163826 + 03/08 20:40:00,13.262462462462464,13.262462462462464,17.620991831610696 + 03/08 20:50:00,13.30870870870871,13.30870870870871,17.63084571829697 + 03/08 21:00:00,13.354954954954956,13.354954954954956,17.64030291519903 + 03/08 21:10:00,13.380180180180182,13.380180180180182,17.626917354465797 + 03/08 21:20:00,13.405405405405407,13.405405405405407,17.63987697277301 + 03/08 21:30:00,13.430630630630632,13.430630630630632,17.648035323202899 + 03/08 21:40:00,13.455855855855857,13.455855855855857,17.65582167409607 + 03/08 21:50:00,13.481081081081081,13.481081081081081,17.66329501230588 + 03/08 22:00:00,13.506306306306307,13.506306306306307,17.670471018719185 + 03/08 22:10:00,13.527327327327328,13.527327327327328,17.677574746929389 + 03/08 22:20:00,13.548348348348349,13.548348348348349,17.685534006139798 + 03/08 22:30:00,13.56936936936937,13.56936936936937,17.69322369459445 + 03/08 22:40:00,13.590390390390392,13.590390390390392,17.700867510105014 + 03/08 22:50:00,13.611411411411412,13.611411411411412,17.70820637973227 + 03/08 23:00:00,13.632432432432433,13.632432432432433,17.715431666958894 + 03/08 23:10:00,13.657657657657659,13.657657657657659,19.085288635460264 + 03/08 23:20:00,13.682882882882883,13.682882882882883,19.22993842135711 + 03/08 23:30:00,13.708108108108109,13.708108108108109,19.294091103202775 + 03/08 23:40:00,13.733333333333335,13.733333333333335,19.34471659337723 + 03/08 23:50:00,13.758558558558559,13.758558558558559,19.38572250178856 + 03/08 24:00:00,13.783783783783785,13.783783783783785,19.42021290213983 + 03/09 00:10:00,13.783783783783785,13.783783783783785,19.44877569714989 + 03/09 00:20:00,13.783783783783785,13.783783783783785,19.47355548909708 + 03/09 00:30:00,13.783783783783785,13.783783783783785,19.495647300711334 + 03/09 00:40:00,13.783783783783785,13.783783783783785,19.515583636211873 + 03/09 00:50:00,13.783783783783785,13.783783783783785,19.533834717422978 + 03/09 01:00:00,13.783783783783785,13.783783783783785,19.5506386180306 + 03/09 01:10:00,13.783783783783785,13.783783783783785,19.56660049143884 + 03/09 01:20:00,13.783783783783785,13.783783783783785,19.58161494917374 + 03/09 01:30:00,13.783783783783785,13.783783783783785,19.595380118767936 + 03/09 01:40:00,13.783783783783785,13.783783783783785,19.6080249093479 + 03/09 01:50:00,13.783783783783785,13.783783783783785,19.61968746982319 + 03/09 02:00:00,13.783783783783785,13.783783783783785,19.63045746536722 + 03/09 02:10:00,13.83003003003003,13.83003003003003,19.640759580257279 + 03/09 02:20:00,13.876276276276276,13.876276276276276,19.650324819271373 + 03/09 02:30:00,13.922522522522524,13.922522522522524,19.65995426285012 + 03/09 02:40:00,13.968768768768769,13.968768768768769,19.6694555878252 + 03/09 02:50:00,14.015015015015015,14.015015015015015,19.678974286725386 + 03/09 03:00:00,14.061261261261262,14.061261261261262,19.688468498144535 + 03/09 03:10:00,14.061261261261262,14.061261261261262,19.698187199327174 + 03/09 03:20:00,14.061261261261262,14.061261261261262,19.708413301882375 + 03/09 03:30:00,14.061261261261262,14.061261261261262,19.718566728840444 + 03/09 03:40:00,14.061261261261262,14.061261261261262,19.728671935795366 + 03/09 03:50:00,14.061261261261262,14.061261261261262,19.738702354229994 + 03/09 04:00:00,14.061261261261262,14.061261261261262,19.748509295924629 + 03/09 04:10:00,14.082282282282283,14.082282282282283,19.75774418559213 + 03/09 04:20:00,14.103303303303303,14.103303303303303,19.766312844294587 + 03/09 04:30:00,14.124324324324324,14.124324324324324,19.77443422278553 + 03/09 04:40:00,14.145345345345346,14.145345345345346,19.782021419114295 + 03/09 04:50:00,14.166366366366367,14.166366366366367,19.789141002396606 + 03/09 05:00:00,14.187387387387388,14.187387387387388,19.795918084249786 + 03/09 05:10:00,14.237837837837838,14.237837837837838,19.802204261097523 + 03/09 05:20:00,14.288288288288289,14.288288288288289,19.807990276653379 + 03/09 05:30:00,14.338738738738739,14.338738738738739,19.81368009639167 + 03/09 05:40:00,14.389189189189189,14.389189189189189,19.81917161294144 + 03/09 05:50:00,14.43963963963964,14.43963963963964,19.824581071695265 + 03/09 06:00:00,14.49009009009009,14.49009009009009,19.829990709188885 + 03/09 06:10:00,14.511111111111111,14.511111111111111,19.83633240511091 + 03/09 06:20:00,14.532132132132132,14.532132132132132,19.842891525565194 + 03/09 06:30:00,14.553153153153153,14.553153153153153,19.849376755158369 + 03/09 06:40:00,14.574174174174175,14.574174174174175,19.855799169239789 + 03/09 06:50:00,14.595195195195196,14.595195195195196,19.86223074181953 + 03/09 07:00:00,14.616216216216217,14.616216216216217,19.868577443813814 + 03/09 07:10:00,14.544744744744746,14.544744744744746,17.871411321218436 + 03/09 07:20:00,14.473273273273274,14.473273273273274,17.63866856727006 + 03/09 07:30:00,14.401801801801803,14.401801801801803,17.55234809210781 + 03/09 07:40:00,14.33033033033033,14.33033033033033,17.484268500984123 + 03/09 07:50:00,14.25885885885886,14.25885885885886,17.429401415717686 + 03/09 08:00:00,14.187387387387388,14.187387387387388,17.382667958100258 + 03/09 08:05:00,14.14114114114114,14.14114114114114,15.904445119518563 + 03/09 08:10:00,14.14114114114114,14.14114114114114,15.90389900741155 + 03/09 08:15:00,14.094894894894896,14.094894894894896,15.684134925831751 + 03/09 08:20:00,14.094894894894896,14.094894894894896,15.684275857463373 + 03/09 08:30:00,14.04864864864865,14.04864864864865,15.578495943233309 + 03/09 08:40:00,14.002402402402403,14.002402402402403,15.492101443858259 + 03/09 08:50:00,13.956156156156157,13.956156156156157,15.419061682879276 + 03/09 09:00:00,13.90990990990991,13.90990990990991,15.355010394159179 + 03/09 09:05:00,13.796396396396398,13.796396396396398,15.272460119293874 + 03/09 09:10:00,13.796396396396398,13.796396396396398,15.271707977541404 + 03/09 09:20:00,13.682882882882883,13.682882882882883,15.20870229970199 + 03/09 09:30:00,13.56936936936937,13.56936936936937,15.158135840666722 + 03/09 09:40:00,13.455855855855857,13.455855855855857,15.110133070651742 + 03/09 09:50:00,13.342342342342344,13.342342342342344,15.065731150312347 + 03/09 10:00:00,13.22882882882883,13.22882882882883,15.024407350151947 + 03/09 10:10:00,13.157357357357359,13.157357357357359,14.985765759484954 + 03/09 10:20:00,13.085885885885887,13.085885885885887,14.936319441515586 + 03/09 10:30:00,13.014414414414415,13.014414414414415,14.901047699296463 + 03/09 10:40:00,12.942942942942946,12.942942942942946,14.867811734797384 + 03/09 10:50:00,12.871471471471472,12.871471471471472,14.838087024309639 + 03/09 11:00:00,12.8,12.8,14.811901709025705 + 03/09 11:10:00,12.821021021021022,12.821021021021022,14.791261441573795 + 03/09 11:20:00,12.842042042042042,12.842042042042042,14.768411698794859 + 03/09 11:30:00,12.863063063063063,12.863063063063063,14.751674556810285 + 03/09 11:40:00,12.884084084084084,12.884084084084084,14.737165654368456 + 03/09 11:50:00,12.905105105105106,12.905105105105106,14.723202048816127 + 03/09 12:00:00,12.926126126126127,12.926126126126127,14.710534096785178 + 03/09 12:10:00,12.87987987987988,12.87987987987988,14.69629126730807 + 03/09 12:20:00,12.833633633633636,12.833633633633636,14.693308485070532 + 03/09 12:30:00,12.8,12.8,14.678099948292945 + 03/09 12:40:00,12.8,12.8,14.665151897333916 + 03/09 12:50:00,12.8,12.8,14.65038102243587 + 03/09 13:00:00,12.8,12.8,14.633724587490729 + 03/09 13:10:00,12.8,12.8,14.618959887994718 + 03/09 13:20:00,12.8,12.8,14.592689092799409 + 03/09 13:30:00,12.8,12.8,14.577842815828854 + 03/09 13:40:00,12.8,12.8,14.562782182289796 + 03/09 13:50:00,12.8,12.8,14.550145028422034 + 03/09 14:00:00,12.8,12.8,14.538623960862648 + 03/09 14:10:00,12.8,12.8,14.5287645173057 + 03/09 14:20:00,12.8,12.8,14.523225398798799 + 03/09 14:30:00,12.8,12.8,14.514196615367164 + 03/09 14:40:00,12.8,12.8,14.506410982910378 + 03/09 14:50:00,12.8,12.8,14.495339608387612 + 03/09 15:00:00,12.8,12.8,14.486056599476232 + 03/09 15:10:00,12.8,12.8,14.473349033731873 + 03/09 15:20:00,12.8,12.8,14.466567230557774 + 03/09 15:30:00,12.8,12.8,14.455835282504323 + 03/09 15:40:00,12.833633633633636,12.833633633633636,14.446156671351398 + 03/09 15:50:00,12.87987987987988,12.87987987987988,14.44043839076175 + 03/09 16:00:00,12.926126126126127,12.926126126126127,14.434031091864778 + 03/09 16:05:00,12.976576576576577,12.976576576576577,16.58001778325975 + 03/09 16:10:00,12.976576576576577,12.976576576576577,16.57888425681128 + 03/09 16:20:00,13.027027027027028,13.027027027027028,16.82837936128078 + 03/09 16:30:00,13.077477477477478,13.077477477477478,16.926670975860615 + 03/09 16:40:00,13.127927927927928,13.127927927927928,17.003417127831299 + 03/09 16:50:00,13.17837837837838,13.17837837837838,17.06417493947234 + 03/09 17:00:00,13.22882882882883,13.22882882882883,17.11211958152324 + 03/09 17:10:00,13.296096096096097,13.296096096096097,17.180991924548978 + 03/09 17:20:00,13.363363363363364,13.363363363363364,17.238800574335508 + 03/09 17:30:00,13.430630630630632,13.430630630630632,17.27287441158987 + 03/09 17:40:00,13.497897897897899,13.497897897897899,17.303807651530506 + 03/09 17:50:00,13.565165165165166,13.565165165165166,17.332223116517726 + 03/09 18:00:00,13.632432432432433,13.632432432432433,17.35856064335775 + 03/09 18:10:00,13.657657657657659,13.657657657657659,17.395551211467756 + 03/09 18:20:00,13.682882882882883,13.682882882882883,17.42327020937791 + 03/09 18:30:00,13.708108108108109,13.708108108108109,17.443931871350015 + 03/09 18:40:00,13.733333333333335,13.733333333333335,17.463425134558329 + 03/09 18:50:00,13.758558558558559,13.758558558558559,17.482017179528307 + 03/09 19:00:00,13.783783783783785,13.783783783783785,17.499299975720299 + 03/09 19:10:00,13.851051051051052,13.851051051051052,17.515474922150959 + 03/09 19:20:00,13.91831831831832,13.91831831831832,17.52964152112801 + 03/09 19:30:00,13.985585585585586,13.985585585585586,17.54281968091937 + 03/09 19:40:00,14.052852852852853,14.052852852852853,17.554996253029147 + 03/09 19:50:00,14.12012012012012,14.12012012012012,17.566505438574663 + 03/09 20:00:00,14.187387387387388,14.187387387387388,17.577486468505677 + 03/09 20:10:00,14.212612612612613,14.212612612612613,17.60114771845506 + 03/09 20:20:00,14.237837837837838,14.237837837837838,17.613460149254636 + 03/09 20:30:00,14.263063063063063,14.263063063063063,17.624671858228444 + 03/09 20:40:00,14.288288288288289,14.288288288288289,17.635537483894095 + 03/09 20:50:00,14.313513513513513,14.313513513513513,17.645784176893046 + 03/09 21:00:00,14.338738738738739,14.338738738738739,17.655479917682237 + 03/09 21:10:00,14.384984984984986,14.384984984984986,17.64210251204726 + 03/09 21:20:00,14.431231231231232,14.431231231231232,17.653822547569705 + 03/09 21:30:00,14.477477477477479,14.477477477477479,17.661004986718674 + 03/09 21:40:00,14.523723723723723,14.523723723723723,17.66780895097628 + 03/09 21:50:00,14.56996996996997,14.56996996996997,17.674623716679336 + 03/09 22:00:00,14.616216216216217,14.616216216216217,17.681349117531555 + 03/09 22:10:00,14.641441441441442,14.641441441441442,17.68885680388137 + 03/09 22:20:00,14.666666666666666,14.666666666666666,17.695766056093594 + 03/09 22:30:00,14.691891891891892,14.691891891891892,17.7023853818068 + 03/09 22:40:00,14.717117117117118,14.717117117117118,17.70862376367362 + 03/09 22:50:00,14.742342342342342,14.742342342342342,17.714643686526615 + 03/09 23:00:00,14.767567567567568,14.767567567567568,17.720459381371059 + 03/09 23:10:00,14.813813813813815,14.813813813813815,19.095753817972868 + 03/09 23:20:00,14.860060060060059,14.860060060060059,19.241047084228133 + 03/09 23:30:00,14.906306306306306,14.906306306306306,19.305694746609619 + 03/09 23:40:00,14.952552552552552,14.952552552552552,19.35725334403637 + 03/09 23:50:00,14.998798798798799,14.998798798798799,19.3991243198466 + 03/09 24:00:00,15.045045045045045,15.045045045045045,19.434547287233923 + 03/10 00:10:00,15.091291291291292,15.091291291291292,19.464291451146499 + 03/10 00:20:00,15.137537537537538,15.137537537537538,19.49050153067809 + 03/10 00:30:00,15.183783783783785,15.183783783783785,19.514095527804103 + 03/10 00:40:00,15.23003003003003,15.23003003003003,19.535545029350389 + 03/10 00:50:00,15.276276276276276,15.276276276276276,19.55529076679556 + 03/10 01:00:00,15.322522522522523,15.322522522522523,19.573535472860159 + 03/10 01:10:00,15.343543543543543,15.343543543543543,19.59173839393457 + 03/10 01:20:00,15.364564564564564,15.364564564564564,19.609069831452275 + 03/10 01:30:00,15.385585585585586,15.385585585585586,19.625392388824229 + 03/10 01:40:00,15.406606606606607,15.406606606606607,19.64088449299487 + 03/10 01:50:00,15.427627627627628,15.427627627627628,19.655489606587666 + 03/10 02:00:00,15.448648648648648,15.448648648648648,19.669442783683949 + 03/10 02:10:00,15.499099099099098,15.499099099099098,19.683333201698369 + 03/10 02:20:00,15.54954954954955,15.54954954954955,19.69693199699356 + 03/10 02:30:00,15.6,15.6,19.710213608090986 + 03/10 02:40:00,15.6,15.6,19.72319439452744 + 03/10 02:50:00,15.6,15.6,19.735943421475516 + 03/10 03:00:00,15.6,15.6,19.74850070756368 + 03/10 03:10:00,15.6,15.6,19.758432178114775 + 03/10 03:20:00,15.6,15.6,19.767970902959048 + 03/10 03:30:00,15.6,15.6,19.777081863915833 + 03/10 03:40:00,15.6,15.6,19.785768462995415 + 03/10 03:50:00,15.6,15.6,19.79415197980971 + 03/10 04:00:00,15.6,15.6,19.80219045540742 + 03/10 04:10:00,15.6,15.6,19.810939461400375 + 03/10 04:20:00,15.6,15.6,19.819323078252649 + 03/10 04:30:00,15.6,15.6,19.82736801717084 + 03/10 04:40:00,15.6,15.6,19.835236620525273 + 03/10 04:50:00,15.6,15.6,19.842874361508359 + 03/10 05:00:00,15.6,15.6,19.850298144782444 + 03/10 05:10:00,15.6,15.6,19.85747329307214 + 03/10 05:20:00,15.6,15.6,19.864271173289504 + 03/10 05:30:00,15.6,15.6,19.87081867196361 + 03/10 05:40:00,15.6,15.6,19.877058072319696 + 03/10 05:50:00,15.6,15.6,19.88299056780426 + 03/10 06:00:00,15.6,15.6,19.888639059603375 + 03/10 06:10:00,15.6,15.6,19.893844452908998 + 03/10 06:20:00,15.6,15.6,19.898885533270854 + 03/10 06:30:00,15.6,15.6,19.903711584606318 + 03/10 06:40:00,15.6,15.6,19.908321402186993 + 03/10 06:50:00,15.6,15.6,19.91271089134036 + 03/10 07:00:00,15.6,15.6,19.916400981536964 + 03/10 07:10:00,15.6,15.6,17.896483978293778 + 03/10 07:20:00,15.6,15.6,17.658331180038638 + 03/10 07:30:00,15.6,15.6,17.568167038463707 + 03/10 07:40:00,15.6,15.6,17.49698501130995 + 03/10 07:50:00,15.6,15.6,17.439846108861397 + 03/10 08:00:00,15.6,15.6,17.391585130913087 + 03/10 08:10:00,15.6,15.6,15.895380561370678 + 03/10 08:20:00,15.6,15.6,15.672433220438032 + 03/10 08:30:00,15.6,15.6,15.565790358519257 + 03/10 08:40:00,15.54954954954955,15.54954954954955,15.477247102450436 + 03/10 08:50:00,15.499099099099098,15.499099099099098,15.402243550337689 + 03/10 09:00:00,15.448648648648648,15.448648648648648,15.336161464603127 + 03/10 09:05:00,15.381381381381381,15.381381381381381,15.251271246202574 + 03/10 09:10:00,15.381381381381381,15.381381381381381,15.250786458600912 + 03/10 09:20:00,15.314114114114114,15.314114114114114,15.186126839403738 + 03/10 09:25:00,15.246846846846847,15.246846846846847,15.13390134652613 + 03/10 09:30:00,15.246846846846847,15.246846846846847,15.133890313737777 + 03/10 09:40:00,15.17957957957958,15.17957957957958,15.083520264293022 + 03/10 09:50:00,15.112312312312313,15.112312312312313,15.03833360969601 + 03/10 10:00:00,15.045045045045045,15.045045045045045,14.997210947984998 + 03/10 10:10:00,14.927327327327328,14.927327327327328,14.96084888761865 + 03/10 10:20:00,14.809609609609609,14.809609609609609,14.916903933993633 + 03/10 10:30:00,14.691891891891892,14.691891891891892,14.886518113690009 + 03/10 10:40:00,14.574174174174175,14.574174174174175,14.857862382900129 + 03/10 10:50:00,14.456456456456456,14.456456456456456,14.829413716767029 + 03/10 11:00:00,14.338738738738739,14.338738738738739,14.802207439016538 + 03/10 11:10:00,14.313513513513513,14.313513513513513,14.771228288073683 + 03/10 11:20:00,14.288288288288289,14.288288288288289,14.73685065936421 + 03/10 11:30:00,14.263063063063063,14.263063063063063,14.706795825208852 + 03/10 11:40:00,14.237837837837839,14.237837837837839,14.675686441372154 + 03/10 11:50:00,14.212612612612613,14.212612612612613,14.648007543172352 + 03/10 12:00:00,14.187387387387388,14.187387387387388,14.619796804836609 + 03/10 12:10:00,14.14114114114114,14.14114114114114,14.597962116299462 + 03/10 12:20:00,14.094894894894896,14.094894894894896,14.584246533462793 + 03/10 12:30:00,14.04864864864865,14.04864864864865,14.565863129362234 + 03/10 12:40:00,14.002402402402403,14.002402402402403,14.547918778343068 + 03/10 12:50:00,13.956156156156157,13.956156156156157,14.530471101551749 + 03/10 13:00:00,13.90990990990991,13.90990990990991,14.515796163294502 + 03/10 13:10:00,13.842642642642645,13.842642642642645,14.498107718699757 + 03/10 13:20:00,13.775375375375376,13.775375375375376,14.471924950021956 + 03/10 13:30:00,13.708108108108109,13.708108108108109,14.455025866662208 + 03/10 13:40:00,13.640840840840842,13.640840840840842,14.438053705292456 + 03/10 13:50:00,13.573573573573574,13.573573573573574,14.42227650344728 + 03/10 14:00:00,13.506306306306307,13.506306306306307,14.406220631407742 + 03/10 14:10:00,13.46006006006006,13.46006006006006,14.393452684778243 + 03/10 14:20:00,13.413813813813814,13.413813813813814,14.385535774658619 + 03/10 14:30:00,13.367567567567568,13.367567567567568,14.37782924127231 + 03/10 14:40:00,13.321321321321323,13.321321321321323,14.368393134351335 + 03/10 14:50:00,13.275075075075077,13.275075075075077,14.363052303964402 + 03/10 15:00:00,13.22882882882883,13.22882882882883,14.356094711385563 + 03/10 15:10:00,13.203603603603604,13.203603603603604,14.351297044769455 + 03/10 15:20:00,13.17837837837838,13.17837837837838,14.349279571948277 + 03/10 15:30:00,13.153153153153154,13.153153153153154,14.343768964519017 + 03/10 15:40:00,13.12792792792793,13.12792792792793,14.34129552904345 + 03/10 15:50:00,13.102702702702704,13.102702702702704,14.33807514611015 + 03/10 16:00:00,13.077477477477478,13.077477477477478,14.339992490133812 + 03/10 16:05:00,13.052252252252253,13.052252252252253,16.51575000065895 + 03/10 16:10:00,13.052252252252253,13.052252252252253,16.514939014003475 + 03/10 16:20:00,13.027027027027028,13.027027027027028,16.771444181013508 + 03/10 16:30:00,13.001801801801803,13.001801801801803,16.877232389621804 + 03/10 16:40:00,12.976576576576577,12.976576576576577,16.958807132099083 + 03/10 16:50:00,12.951351351351353,12.951351351351353,17.021001510137738 + 03/10 17:00:00,12.926126126126127,12.926126126126127,17.073370902061613 + 03/10 17:10:00,12.926126126126127,12.926126126126127,17.14348438795266 + 03/10 17:20:00,12.926126126126127,12.926126126126127,17.200107943356679 + 03/10 17:30:00,12.926126126126127,12.926126126126127,17.231349832129209 + 03/10 17:40:00,12.926126126126127,12.926126126126127,17.26001539045127 + 03/10 17:50:00,12.926126126126127,12.926126126126127,17.285937563848969 + 03/10 18:00:00,12.926126126126127,12.926126126126127,17.309666597556168 + 03/10 18:10:00,12.997597597597599,12.997597597597599,17.345792238177937 + 03/10 18:20:00,13.06906906906907,13.06906906906907,17.374146126478445 + 03/10 18:30:00,13.140540540540542,13.140540540540542,17.396362832259507 + 03/10 18:40:00,13.212012012012015,13.212012012012015,17.418590807662218 + 03/10 18:50:00,13.283483483483485,13.283483483483485,17.440391925290919 + 03/10 19:00:00,13.354954954954956,13.354954954954956,17.461246996662366 + 03/10 19:10:00,13.333933933933935,13.333933933933935,17.48016519974873 + 03/10 19:20:00,13.312912912912914,13.312912912912914,17.49698823057872 + 03/10 19:30:00,13.291891891891894,13.291891891891894,17.512398788069569 + 03/10 19:40:00,13.270870870870873,13.270870870870873,17.526446872137194 + 03/10 19:50:00,13.24984984984985,13.24984984984985,17.53937683515952 + 03/10 20:00:00,13.22882882882883,13.22882882882883,17.551394079873466 + 03/10 20:10:00,13.296096096096097,13.296096096096097,17.575698829663268 + 03/10 20:20:00,13.363363363363364,13.363363363363364,17.587311849622205 + 03/10 20:30:00,13.430630630630632,13.430630630630632,17.598096483472138 + 03/10 20:40:00,13.497897897897899,13.497897897897899,17.608512875982876 + 03/10 20:50:00,13.565165165165166,13.565165165165166,17.61850570297666 + 03/10 21:00:00,13.632432432432433,13.632432432432433,17.628161589301777 + 03/10 21:10:00,13.67867867867868,13.67867867867868,17.61545047215776 + 03/10 21:20:00,13.724924924924924,13.724924924924924,17.629533596237189 + 03/10 21:30:00,13.771171171171173,13.771171171171173,17.638818814196175 + 03/10 21:40:00,13.817417417417419,13.817417417417419,17.64777834140284 + 03/10 21:50:00,13.863663663663666,13.863663663663666,17.656402031974367 + 03/10 22:00:00,13.90990990990991,13.90990990990991,17.664719738411553 + 03/10 22:10:00,13.956156156156157,13.956156156156157,17.672015303409247 + 03/10 22:20:00,14.002402402402403,14.002402402402403,17.678805429302316 + 03/10 22:30:00,14.04864864864865,14.04864864864865,17.685495759172015 + 03/10 22:40:00,14.094894894894896,14.094894894894896,17.692026998013568 + 03/10 22:50:00,14.14114114114114,14.14114114114114,17.698405685783237 + 03/10 23:00:00,14.187387387387388,14.187387387387388,17.70475763264373 + 03/10 23:10:00,14.25885885885886,14.25885885885886,19.08653492558656 + 03/10 23:20:00,14.33033033033033,14.33033033033033,19.232744974416894 + 03/10 23:30:00,14.401801801801803,14.401801801801803,19.298331757370425 + 03/10 23:40:00,14.473273273273274,14.473273273273274,19.350281124258208 + 03/10 23:50:00,14.544744744744746,14.544744744744746,19.39268573356136 + 03/10 24:00:00,14.616216216216217,14.616216216216217,19.42867098569212 + 03/11 00:10:00,14.641441441441442,14.641441441441442,19.459779627677617 + 03/11 00:20:00,14.666666666666666,14.666666666666666,19.48753999684766 + 03/11 00:30:00,14.691891891891892,14.691891891891892,19.51214314652295 + 03/11 00:40:00,14.717117117117118,14.717117117117118,19.534360028721367 + 03/11 00:50:00,14.742342342342342,14.742342342342342,19.55445385592936 + 03/11 01:00:00,14.767567567567568,14.767567567567568,19.57272201083166 + 03/11 01:10:00,14.788588588588589,14.788588588588589,19.589239140590768 + 03/11 01:20:00,14.809609609609609,14.809609609609609,19.603836638249964 + 03/11 01:30:00,14.83063063063063,14.83063063063063,19.617406943042398 + 03/11 01:40:00,14.85165165165165,14.85165165165165,19.629975428534267 + 03/11 01:50:00,14.872672672672673,14.872672672672673,19.641784666582095 + 03/11 02:00:00,14.893693693693694,14.893693693693694,19.652933757871105 + 03/11 02:10:00,14.893693693693694,14.893693693693694,19.66364956878955 + 03/11 02:20:00,14.893693693693694,14.893693693693694,19.674091404599879 + 03/11 02:30:00,14.893693693693694,14.893693693693694,19.68411999147772 + 03/11 02:40:00,14.893693693693694,14.893693693693694,19.69377791927583 + 03/11 02:50:00,14.893693693693694,14.893693693693694,19.703007976260218 + 03/11 03:00:00,14.893693693693694,14.893693693693694,19.711819372214167 + 03/11 03:10:00,14.91891891891892,14.91891891891892,19.7202705256798 + 03/11 03:20:00,14.944144144144144,14.944144144144144,19.7286741698924 + 03/11 03:30:00,14.96936936936937,14.96936936936937,19.736856698011019 + 03/11 03:40:00,14.994594594594595,14.994594594594595,19.74502517067704 + 03/11 03:50:00,15.01981981981982,15.01981981981982,19.75302931956322 + 03/11 04:00:00,15.045045045045045,15.045045045045045,19.760788474252423 + 03/11 04:10:00,15.045045045045045,15.045045045045045,19.768447722932945 + 03/11 04:20:00,15.045045045045045,15.045045045045045,19.775641730954815 + 03/11 04:30:00,15.045045045045045,15.045045045045045,19.782717968561678 + 03/11 04:40:00,15.045045045045045,15.045045045045045,19.78956351256099 + 03/11 04:50:00,15.045045045045045,15.045045045045045,19.79622938183802 + 03/11 05:00:00,15.045045045045045,15.045045045045045,19.802821172012764 + 03/11 05:10:00,15.066066066066066,15.066066066066066,19.809647822928356 + 03/11 05:20:00,15.087087087087087,15.087087087087087,19.816570684000064 + 03/11 05:30:00,15.108108108108109,15.108108108108109,19.823354504880194 + 03/11 05:40:00,15.12912912912913,15.12912912912913,19.830017391391157 + 03/11 05:50:00,15.15015015015015,15.15015015015015,19.836513456921606 + 03/11 06:00:00,15.17117117117117,15.17117117117117,19.84292396670163 + 03/11 06:10:00,15.196396396396397,15.196396396396397,19.849008064742585 + 03/11 06:20:00,15.22162162162162,15.22162162162162,19.855172415178406 + 03/11 06:30:00,15.246846846846847,15.246846846846847,19.861482235141744 + 03/11 06:40:00,15.272072072072073,15.272072072072073,19.867884953748104 + 03/11 06:50:00,15.297297297297297,15.297297297297297,19.874517986168095 + 03/11 07:00:00,15.322522522522523,15.322522522522523,19.880919290471529 + 03/11 07:10:00,15.297297297297297,15.297297297297297,19.22034871419818 + 03/11 07:20:00,15.272072072072073,15.272072072072073,19.15473026266787 + 03/11 07:30:00,15.246846846846847,15.246846846846847,19.12945860772493 + 03/11 07:40:00,15.22162162162162,15.22162162162162,19.109778110487068 + 03/11 07:50:00,15.196396396396397,15.196396396396397,19.094007237425499 + 03/11 08:00:00,15.17117117117117,15.17117117117117,19.08055583021918 + 03/11 08:10:00,15.124924924924925,15.124924924924925,17.9876268276685 + 03/11 08:20:00,15.078678678678678,15.078678678678678,17.840735523390739 + 03/11 08:30:00,15.032432432432433,15.032432432432433,17.779006410629497 + 03/11 08:40:00,14.986186186186187,14.986186186186187,17.729067646125615 + 03/11 08:50:00,14.93993993993994,14.93993993993994,17.686865348552318 + 03/11 09:00:00,14.893693693693694,14.893693693693694,17.649089257501353 + 03/11 09:10:00,14.775975975975977,14.775975975975977,17.613844784057237 + 03/11 09:20:00,14.658258258258258,14.658258258258258,17.571718491205475 + 03/11 09:30:00,14.54054054054054,14.54054054054054,17.539735733378288 + 03/11 09:40:00,14.422822822822824,14.422822822822824,17.50949872985261 + 03/11 09:50:00,14.305105105105107,14.305105105105107,17.481721758616904 + 03/11 10:00:00,14.187387387387388,14.187387387387388,17.45669818344609 + 03/11 10:10:00,14.073873873873874,14.073873873873874,17.432396783869007 + 03/11 10:20:00,13.960360360360362,13.960360360360362,17.399701781764784 + 03/11 10:30:00,13.846846846846848,13.846846846846848,17.377463504679029 + 03/11 10:40:00,13.733333333333335,13.733333333333335,17.355989878668369 + 03/11 10:50:00,13.61981981981982,13.61981981981982,17.334657264758137 + 03/11 11:00:00,13.506306306306307,13.506306306306307,17.313014749658135 + 03/11 11:10:00,13.363363363363364,13.363363363363364,17.291102812004305 + 03/11 11:20:00,13.220420420420421,13.220420420420421,17.268866009662835 + 03/11 11:30:00,13.077477477477478,13.077477477477478,17.246292768915024 + 03/11 11:40:00,12.934534534534535,12.934534534534535,17.22383077126616 + 03/11 11:50:00,12.8,12.8,17.202085031660198 + 03/11 12:00:00,12.8,12.8,17.181280485495564 + 03/11 12:10:00,12.8,12.8,17.162418709267599 + 03/11 12:20:00,12.8,12.8,17.144561186917686 + 03/11 12:30:00,12.8,12.8,17.12800019904815 + 03/11 12:40:00,12.8,12.8,17.113035252098756 + 03/11 12:50:00,12.8,12.8,17.100316498051329 + 03/11 13:00:00,12.8,12.8,17.089839157610478 + 03/11 13:10:00,12.8,12.8,17.0810591490544 + 03/11 13:20:00,12.8,12.8,17.075348144518846 + 03/11 13:30:00,12.8,12.8,17.069700236408488 + 03/11 13:40:00,12.8,12.8,17.065276738072439 + 03/11 13:50:00,12.8,12.8,17.060506151730285 + 03/11 14:00:00,12.8,12.8,17.055545198181457 + 03/11 14:10:00,12.8,12.8,17.050675266011035 + 03/11 14:20:00,12.8,12.8,17.045591493379324 + 03/11 14:30:00,12.8,12.8,17.04048534418482 + 03/11 14:40:00,12.8,12.8,17.035460716913688 + 03/11 14:50:00,12.8,12.8,17.0311028752227 + 03/11 15:00:00,12.8,12.8,17.026840794006988 + 03/11 15:10:00,12.8,12.8,17.022878520945278 + 03/11 15:20:00,12.8,12.8,17.019279456442889 + 03/11 15:30:00,12.8,12.8,17.013679903403955 + 03/11 15:40:00,12.8,12.8,17.011181183767904 + 03/11 15:50:00,12.8,12.8,17.010478562031684 + 03/11 16:00:00,12.8,12.8,17.01120268330777 + 03/11 16:10:00,12.8,12.8,17.013530076092719 + 03/11 16:20:00,12.8,12.8,17.014621094775046 + 03/11 16:30:00,12.8,12.8,17.018204705666997 + 03/11 16:40:00,12.8,12.8,17.022042027456217 + 03/11 16:50:00,12.8,12.8,17.02544812614322 + 03/11 17:00:00,12.8,12.8,17.0275125263923 + 03/11 17:10:00,12.8,12.8,17.041117600401049 + 03/11 17:20:00,12.8,12.8,17.044145461907449 + 03/11 17:30:00,12.8,12.8,17.04516090102146 + 03/11 17:40:00,12.8,12.8,17.048927477292659 + 03/11 17:50:00,12.8,12.8,17.047023267155497 + 03/11 18:00:00,12.8,12.8,17.050319762617087 + 03/11 18:10:00,12.8,12.8,18.81968160531617 + 03/11 18:20:00,12.8,12.8,19.03488436801733 + 03/11 18:30:00,12.8,12.8,19.120456718583936 + 03/11 18:40:00,12.8,12.8,19.188826646530538 + 03/11 18:50:00,12.8,12.8,19.243739543122169 + 03/11 19:00:00,12.8,12.8,19.289712180654214 + 03/11 19:10:00,12.8,12.8,19.3416368806146 + 03/11 19:20:00,12.8,12.8,19.37629734711697 + 03/11 19:30:00,12.8,12.8,19.40653985021209 + 03/11 19:40:00,12.8,12.8,19.433567948625386 + 03/11 19:50:00,12.8,12.8,19.458024634549706 + 03/11 20:00:00,12.8,12.8,19.480177729153938 + 03/11 20:10:00,12.8,12.8,19.50065309258226 + 03/11 20:20:00,12.8,12.8,19.519901367905374 + 03/11 20:30:00,12.8,12.8,19.53766649442155 + 03/11 20:40:00,12.8,12.8,19.55424023456901 + 03/11 20:50:00,12.8,12.8,19.56963817324339 + 03/11 21:00:00,12.8,12.8,19.58412177458561 + 03/11 21:10:00,12.8,12.8,19.57543520103991 + 03/11 21:20:00,12.8,12.8,19.58828120753732 + 03/11 21:30:00,12.8,12.8,19.600587778003907 + 03/11 21:40:00,12.833633633633636,12.833633633633636,19.612317760423186 + 03/11 21:50:00,12.87987987987988,12.87987987987988,19.62359411902162 + 03/11 22:00:00,12.926126126126127,12.926126126126127,19.63451789623319 + 03/11 22:10:00,12.976576576576577,12.976576576576577,19.645239859063318 + 03/11 22:20:00,13.027027027027028,13.027027027027028,19.656186849165068 + 03/11 22:30:00,13.077477477477478,13.077477477477478,19.666726137185646 + 03/11 22:40:00,13.127927927927928,13.127927927927928,19.676982499427976 + 03/11 22:50:00,13.17837837837838,13.17837837837838,19.686994793480996 + 03/11 23:00:00,13.22882882882883,13.22882882882883,19.69672180605489 + 03/11 23:10:00,13.24984984984985,13.24984984984985,19.70587637988843 + 03/11 23:20:00,13.270870870870871,13.270870870870871,19.713362725255587 + 03/11 23:30:00,13.291891891891894,13.291891891891894,19.72061799265522 + 03/11 23:40:00,13.312912912912914,13.312912912912914,19.72750327063501 + 03/11 23:50:00,13.333933933933935,13.333933933933935,19.73424500870883 + 03/11 24:00:00,13.354954954954956,13.354954954954956,19.740802647587818 + 03/12 00:10:00,13.380180180180182,13.380180180180182,19.74734550125078 + 03/12 00:20:00,13.405405405405407,13.405405405405407,19.75469944225293 + 03/12 00:30:00,13.430630630630632,13.430630630630632,19.761889294542784 + 03/12 00:40:00,13.455855855855857,13.455855855855857,19.76915857293977 + 03/12 00:50:00,13.481081081081081,13.481081081081081,19.77624497389209 + 03/12 01:00:00,13.506306306306307,13.506306306306307,19.783182625521769 + 03/12 01:10:00,13.527327327327328,13.527327327327328,19.789643538408748 + 03/12 01:20:00,13.548348348348349,13.548348348348349,19.795646043404834 + 03/12 01:30:00,13.56936936936937,13.56936936936937,19.80153480174701 + 03/12 01:40:00,13.590390390390392,13.590390390390392,19.80718887688263 + 03/12 01:50:00,13.611411411411412,13.611411411411412,19.812677370115904 + 03/12 02:00:00,13.632432432432433,13.632432432432433,19.817975116083887 + 03/12 02:10:00,13.657657657657659,13.657657657657659,19.82315944718012 + 03/12 02:20:00,13.682882882882883,13.682882882882883,19.82783033824104 + 03/12 02:30:00,13.708108108108109,13.708108108108109,19.832095483067087 + 03/12 02:40:00,13.733333333333335,13.733333333333335,19.835933765893296 + 03/12 02:50:00,13.758558558558559,13.758558558558559,19.839412899891444 + 03/12 03:00:00,13.783783783783785,13.783783783783785,19.84247663816817 + 03/12 03:10:00,13.804804804804805,13.804804804804805,19.845820205909499 + 03/12 03:20:00,13.825825825825828,13.825825825825828,19.850038302807627 + 03/12 03:30:00,13.846846846846848,13.846846846846848,19.854688040220159 + 03/12 03:40:00,13.867867867867869,13.867867867867869,19.859920380309864 + 03/12 03:50:00,13.88888888888889,13.88888888888889,19.865440574093524 + 03/12 04:00:00,13.90990990990991,13.90990990990991,19.871340267304214 + 03/12 04:10:00,13.90990990990991,13.90990990990991,19.877421642002554 + 03/12 04:20:00,13.90990990990991,13.90990990990991,19.8829559697081 + 03/12 04:30:00,13.90990990990991,13.90990990990991,19.888223092892028 + 03/12 04:40:00,13.90990990990991,13.90990990990991,19.893033703559234 + 03/12 04:50:00,13.90990990990991,13.90990990990991,19.897608092516106 + 03/12 05:00:00,13.90990990990991,13.90990990990991,19.9019955936257 + 03/12 05:10:00,13.88888888888889,13.88888888888889,19.905063160649996 + 03/12 05:20:00,13.867867867867869,13.867867867867869,19.90776462214759 + 03/12 05:30:00,13.846846846846848,13.846846846846848,19.91009908143036 + 03/12 05:40:00,13.825825825825828,13.825825825825828,19.912087866196708 + 03/12 05:50:00,13.804804804804805,13.804804804804805,19.913872605446444 + 03/12 06:00:00,13.783783783783785,13.783783783783785,19.915419197123535 + 03/12 06:10:00,13.783783783783785,13.783783783783785,19.939131181964865 + 03/12 06:20:00,13.783783783783785,13.783783783783785,19.94062579848879 + 03/12 06:30:00,13.783783783783785,13.783783783783785,19.9417746980254 + 03/12 06:40:00,13.783783783783785,13.783783783783785,19.9428302900767 + 03/12 06:50:00,13.783783783783785,13.783783783783785,19.943625380735143 + 03/12 07:00:00,13.783783783783785,13.783783783783785,19.94395662280953 + 03/12 07:10:00,13.783783783783785,13.783783783783785,18.548408169840653 + 03/12 07:20:00,13.783783783783785,13.783783783783785,18.382532323321624 + 03/12 07:30:00,13.783783783783785,13.783783783783785,18.317653781496217 + 03/12 07:40:00,13.783783783783785,13.783783783783785,18.26639587544187 + 03/12 07:50:00,13.783783783783785,13.783783783783785,18.224956140714313 + 03/12 08:00:00,13.783783783783785,13.783783783783785,18.1897590301762 + 03/12 08:10:00,13.737537537537538,13.737537537537538,18.158845919309316 + 03/12 08:20:00,13.691291291291293,13.691291291291293,18.12273457653864 + 03/12 08:30:00,13.645045045045047,13.645045045045047,18.097450412251896 + 03/12 08:40:00,13.5987987987988,13.5987987987988,18.074473432451023 + 03/12 08:50:00,13.552552552552554,13.552552552552554,18.053857884110408 + 03/12 09:00:00,13.506306306306307,13.506306306306307,18.03555861257067 + 03/12 09:10:00,13.645045045045047,13.645045045045047,18.02138167151019 + 03/12 09:20:00,13.783783783783785,13.783783783783785,17.999239033326647 + 03/12 09:30:00,13.922522522522524,13.922522522522524,17.988159948937655 + 03/12 09:40:00,14.061261261261262,14.061261261261262,17.978045520726796 + 03/12 09:50:00,14.200000000000001,14.200000000000001,17.96807102877669 + 03/12 10:00:00,14.338738738738739,14.338738738738739,17.95715906786264 + 03/12 10:10:00,14.292492492492493,14.292492492492493,17.941798268554064 + 03/12 10:20:00,14.246246246246246,14.246246246246246,17.921192702841404 + 03/12 10:30:00,14.2,14.2,17.898825949349637 + 03/12 10:40:00,14.153753753753755,14.153753753753755,17.874460520567717 + 03/12 10:50:00,14.107507507507508,14.107507507507508,17.849384524438123 + 03/12 11:00:00,14.061261261261262,14.061261261261262,17.82386470044196 + 03/12 11:10:00,13.989789789789791,13.989789789789791,17.79895189832868 + 03/12 11:20:00,13.918318318318317,13.918318318318317,17.777526221760895 + 03/12 11:30:00,13.846846846846847,13.846846846846847,17.75609433103052 + 03/12 11:40:00,13.775375375375376,13.775375375375376,17.73550594029048 + 03/12 11:50:00,13.703903903903905,13.703903903903905,17.715825780810044 + 03/12 12:00:00,13.632432432432433,13.632432432432433,17.697412322258285 + 03/12 12:10:00,13.632432432432433,13.632432432432433,17.68050545766299 + 03/12 12:20:00,13.632432432432433,13.632432432432433,17.668784108216998 + 03/12 12:30:00,13.632432432432433,13.632432432432433,17.657588145296896 + 03/12 12:40:00,13.632432432432433,13.632432432432433,17.648017240264818 + 03/12 12:50:00,13.632432432432433,13.632432432432433,17.639353622201705 + 03/12 13:00:00,13.632432432432433,13.632432432432433,17.63168713468267 + 03/12 13:10:00,13.632432432432433,13.632432432432433,17.624954853029768 + 03/12 13:20:00,13.632432432432433,13.632432432432433,17.61707415613243 + 03/12 13:30:00,13.632432432432433,13.632432432432433,17.610065953435865 + 03/12 13:40:00,13.632432432432433,13.632432432432433,17.603207506929384 + 03/12 13:50:00,13.632432432432433,13.632432432432433,17.596788613752009 + 03/12 14:00:00,13.632432432432433,13.632432432432433,17.5905467684668 + 03/12 14:10:00,13.657657657657659,13.657657657657659,17.58492927009474 + 03/12 14:20:00,13.682882882882883,13.682882882882883,17.579147307587428 + 03/12 14:30:00,13.708108108108109,13.708108108108109,17.57391385529384 + 03/12 14:40:00,13.733333333333335,13.733333333333335,17.56912564779707 + 03/12 14:50:00,13.758558558558559,13.758558558558559,17.564953504675449 + 03/12 15:00:00,13.783783783783785,13.783783783783785,17.56147611785371 + 03/12 15:10:00,13.783783783783785,13.783783783783785,18.996278177399174 + 03/12 15:20:00,13.783783783783785,13.783783783783785,19.148812269987574 + 03/12 15:30:00,13.783783783783785,13.783783783783785,19.21257648284498 + 03/12 15:40:00,13.783783783783785,13.783783783783785,19.26269260331961 + 03/12 15:50:00,13.783783783783785,13.783783783783785,19.303679258043006 + 03/12 16:00:00,13.783783783783785,13.783783783783785,19.338831776833965 + 03/12 16:10:00,13.804804804804805,13.804804804804805,19.368494616803994 + 03/12 16:20:00,13.825825825825828,13.825825825825828,19.406950547491009 + 03/12 16:30:00,13.846846846846848,13.846846846846848,19.43461378394063 + 03/12 16:40:00,13.867867867867869,13.867867867867869,19.46025140332424 + 03/12 16:50:00,13.88888888888889,13.88888888888889,19.48358810378973 + 03/12 17:00:00,13.90990990990991,13.90990990990991,19.504723298270397 + 03/12 17:10:00,13.935135135135136,13.935135135135136,19.523908974933137 + 03/12 17:20:00,13.960360360360362,13.960360360360362,19.558228156618577 + 03/12 17:30:00,13.985585585585586,13.985585585585586,19.574274127460787 + 03/12 17:40:00,14.010810810810812,14.010810810810812,19.58957254057199 + 03/12 17:50:00,14.036036036036038,14.036036036036038,19.604785614670065 + 03/12 18:00:00,14.061261261261262,14.061261261261262,19.61994423188101 + 03/12 18:10:00,14.132732732732733,14.132732732732733,19.63564136465554 + 03/12 18:20:00,14.204204204204205,14.204204204204205,19.651878652044869 + 03/12 18:30:00,14.275675675675675,14.275675675675675,19.66805037240241 + 03/12 18:40:00,14.347147147147148,14.347147147147148,19.684261065985674 + 03/12 18:50:00,14.418618618618618,14.418618618618618,19.700040321784337 + 03/12 19:00:00,14.49009009009009,14.49009009009009,19.71510291433321 + 03/12 19:10:00,14.536336336336337,14.536336336336337,19.729017837818238 + 03/12 19:20:00,14.582582582582582,14.582582582582582,19.741591082306763 + 03/12 19:30:00,14.628828828828829,14.628828828828829,19.753290470237628 + 03/12 19:40:00,14.675075075075075,14.675075075075075,19.76407784436931 + 03/12 19:50:00,14.721321321321322,14.721321321321322,19.774286843929184 + 03/12 20:00:00,14.767567567567568,14.767567567567568,19.784019771919497 + 03/12 20:10:00,14.813813813813815,14.813813813813815,19.77037730599924 + 03/12 20:20:00,14.860060060060059,14.860060060060059,19.779093700034893 + 03/12 20:30:00,14.906306306306306,14.906306306306306,19.78742094660312 + 03/12 20:40:00,14.952552552552552,14.952552552552552,19.79543595668204 + 03/12 20:50:00,14.998798798798799,14.998798798798799,19.803247825310654 + 03/12 21:00:00,15.045045045045045,15.045045045045045,19.810821129098099 + 03/12 21:10:00,15.066066066066066,15.066066066066066,19.81862349536773 + 03/12 21:20:00,15.087087087087087,15.087087087087087,19.82614483655366 + 03/12 21:30:00,15.108108108108109,15.108108108108109,19.83333130264975 + 03/12 21:40:00,15.12912912912913,15.12912912912913,19.840342397695708 + 03/12 21:50:00,15.15015015015015,15.15015015015015,19.847114378397817 + 03/12 22:00:00,15.17117117117117,15.17117117117117,19.853668895513168 + 03/12 22:10:00,15.217417417417418,15.217417417417418,19.86046419248445 + 03/12 22:20:00,15.263663663663664,15.263663663663664,19.86712410274252 + 03/12 22:30:00,15.30990990990991,15.30990990990991,19.873864387021656 + 03/12 22:40:00,15.356156156156157,15.356156156156157,19.880601649226848 + 03/12 22:50:00,15.402402402402402,15.402402402402402,19.887323135016318 + 03/12 23:00:00,15.448648648648648,15.448648648648648,19.894020791593399 + 03/12 23:10:00,15.473873873873874,15.473873873873874,19.899857321556106 + 03/12 23:20:00,15.499099099099098,15.499099099099098,19.90559675337362 + 03/12 23:30:00,15.524324324324324,15.524324324324324,19.9112145562588 + 03/12 23:40:00,15.54954954954955,15.54954954954955,19.91667753207824 + 03/12 23:50:00,15.574774774774774,15.574774774774774,19.922003599646673 + 03/12 24:00:00,15.6,15.6,19.927148324881988 + 03/13 00:10:00,15.6,15.6,19.931642262783869 + 03/13 00:20:00,15.6,15.6,19.936114148347117 + 03/13 00:30:00,15.6,15.6,19.940478129197844 + 03/13 00:40:00,15.6,15.6,19.944873783031356 + 03/13 00:50:00,15.6,15.6,19.94919607349939 + 03/13 01:00:00,15.6,15.6,19.95343674566055 + 03/13 01:10:00,15.6,15.6,19.958336106304054 + 03/13 01:20:00,15.6,15.6,19.963161600212083 + 03/13 01:30:00,15.6,15.6,19.967879173330866 + 03/13 01:40:00,15.6,15.6,19.97248214584862 + 03/13 01:50:00,15.6,15.6,19.97688981585959 + 03/13 02:00:00,15.6,15.6,19.981295231872538 + 03/13 02:10:00,15.6,15.6,19.98552401202782 + 03/13 02:20:00,15.6,15.6,19.98967723189063 + 03/13 02:30:00,15.6,15.6,19.993753798083647 + 03/13 02:40:00,15.6,15.6,19.997674654865386 + 03/13 02:50:00,15.6,15.6,20.001601415948728 + 03/13 03:00:00,15.6,15.6,20.00548340240701 + 03/13 03:10:00,15.6,15.6,20.00975648395202 + 03/13 03:20:00,15.6,15.6,20.013973610378416 + 03/13 03:30:00,15.6,15.6,20.01805287761613 + 03/13 03:40:00,15.6,15.6,20.02208666048131 + 03/13 03:50:00,15.6,15.6,20.026092639424573 + 03/13 04:00:00,15.6,15.6,20.030032614018514 + 03/13 04:10:00,15.6,15.6,20.033900884640415 + 03/13 04:20:00,15.6,15.6,20.037648623459356 + 03/13 04:30:00,15.6,15.6,20.041303825371704 + 03/13 04:40:00,15.6,15.6,20.044955180065164 + 03/13 04:50:00,15.6,15.6,20.04854613745831 + 03/13 05:00:00,15.6,15.6,20.052080235710478 + 03/13 05:10:00,15.6,15.6,20.055489768740864 + 03/13 05:20:00,15.6,15.6,20.058787083504819 + 03/13 05:30:00,15.6,15.6,20.06207697412358 + 03/13 05:40:00,15.6,15.6,20.065289765068898 + 03/13 05:50:00,15.6,15.6,20.06841604487231 + 03/13 06:00:00,15.6,15.6,20.071459909545955 + 03/13 06:10:00,15.6,15.6,18.060638266694267 + 03/13 06:20:00,15.6,15.6,17.82701114004374 + 03/13 06:30:00,15.6,15.6,17.740385363440987 + 03/13 06:40:00,15.6,15.6,17.67306145849713 + 03/13 06:50:00,15.6,15.6,17.6204890939009 + 03/13 07:00:00,15.6,15.6,17.576772721781834 + 03/13 07:05:00,15.6,15.6,16.0888148067683 + 03/13 07:10:00,15.6,15.6,16.088717256528317 + 03/13 07:15:00,15.6,15.6,15.869688880442725 + 03/13 07:20:00,15.6,15.6,15.869750076726137 + 03/13 07:30:00,15.6,15.6,15.765386970356572 + 03/13 07:40:00,15.6,15.6,15.679221144747109 + 03/13 07:50:00,15.6,15.6,15.60567785231739 + 03/13 08:00:00,15.6,15.6,15.540432315398708 + 03/13 08:10:00,15.6,15.6,15.454723579942847 + 03/13 08:20:00,15.6,15.6,15.390243514405406 + 03/13 08:30:00,15.6,15.6,15.336090978002817 + 03/13 08:40:00,15.6,15.6,15.283997879089709 + 03/13 08:50:00,15.461261261261262,15.461261261261262,15.233999624123538 + 03/13 09:00:00,15.322522522522523,15.322522522522523,15.186072304115309 + 03/13 09:10:00,15.23003003003003,15.23003003003003,15.14076721876301 + 03/13 09:20:00,15.137537537537538,15.137537537537538,15.087212157217378 + 03/13 09:30:00,15.045045045045045,15.045045045045045,15.046187359673727 + 03/13 09:40:00,14.952552552552552,14.952552552552552,15.007076275803048 + 03/13 09:50:00,14.86006006006006,14.86006006006006,14.969695712305832 + 03/13 10:00:00,14.767567567567568,14.767567567567568,14.933993564232349 + 03/13 10:10:00,14.64984984984985,14.64984984984985,14.898466045660756 + 03/13 10:20:00,14.532132132132132,14.532132132132132,14.861589701690204 + 03/13 10:30:00,14.414414414414415,14.414414414414415,14.831166535422258 + 03/13 10:40:00,14.296696696696696,14.296696696696696,14.800200822037603 + 03/13 10:50:00,14.178978978978979,14.178978978978979,14.769685595706184 + 03/13 11:00:00,14.061261261261262,14.061261261261262,14.740834361869795 + 03/13 11:10:00,13.968768768768769,13.968768768768769,14.71228841068417 + 03/13 11:20:00,13.876276276276276,13.876276276276276,14.696115502591029 + 03/13 11:30:00,13.783783783783785,13.783783783783785,14.668564965010902 + 03/13 11:40:00,13.691291291291293,13.691291291291293,14.644812990654911 + 03/13 11:50:00,13.5987987987988,13.5987987987988,14.62132489591455 + 03/13 12:00:00,13.506306306306307,13.506306306306307,14.597702330631117 + 03/13 12:10:00,13.40960960960961,13.40960960960961,14.577512754581522 + 03/13 12:20:00,13.312912912912913,13.312912912912913,14.548451356465119 + 03/13 12:30:00,13.216216216216216,13.216216216216216,14.531198842140807 + 03/13 12:40:00,13.11951951951952,13.11951951951952,14.514225262328603 + 03/13 12:50:00,13.022822822822823,13.022822822822823,14.498543871882389 + 03/13 13:00:00,12.926126126126127,12.926126126126127,14.483618177779042 + 03/13 13:10:00,12.85885885885886,12.85885885885886,14.469005610205901 + 03/13 13:20:00,12.8,12.8,14.459851440528008 + 03/13 13:30:00,12.8,12.8,14.446450447242578 + 03/13 13:40:00,12.8,12.8,14.436246690579598 + 03/13 13:50:00,12.8,12.8,14.423888209114326 + 03/13 14:00:00,12.8,12.8,14.415736763699253 + 03/13 14:10:00,12.8,12.8,14.406255991873108 + 03/13 14:20:00,12.8,12.8,14.401941500826896 + 03/13 14:30:00,12.8,12.8,14.394939092797149 + 03/13 14:40:00,12.8,12.8,14.386934679350907 + 03/13 14:50:00,12.8,12.8,14.38179230936497 + 03/13 15:00:00,12.8,12.8,14.374504597380647 + 03/13 15:05:00,12.8,12.8,16.534444061079648 + 03/13 15:10:00,12.8,12.8,16.53304706359863 + 03/13 15:20:00,12.8,12.8,16.781187323053705 + 03/13 15:30:00,12.8,12.8,16.87508410133834 + 03/13 15:40:00,12.8,12.8,16.94767120359641 + 03/13 15:50:00,12.8,12.8,17.005372713821364 + 03/13 16:00:00,12.8,12.8,17.050969094918444 + 03/13 16:10:00,12.8,12.8,17.116178290575815 + 03/13 16:20:00,12.8,12.8,17.171306060808378 + 03/13 16:30:00,12.8,12.8,17.202561419087787 + 03/13 16:40:00,12.8,12.8,17.230691144459859 + 03/13 16:50:00,12.8,12.8,17.256856505322916 + 03/13 17:00:00,12.8,12.8,17.281381480696106 + 03/13 17:10:00,12.8,12.8,17.318107447667459 + 03/13 17:20:00,12.8,12.8,17.34648964776244 + 03/13 17:30:00,12.8,12.8,17.368438530853135 + 03/13 17:40:00,12.8,12.8,17.389603930834757 + 03/13 17:50:00,12.8,12.8,17.41022622832142 + 03/13 18:00:00,12.8,12.8,17.430251230652368 + 03/13 18:10:00,12.8,12.8,17.44959034159308 + 03/13 18:20:00,12.8,12.8,17.467816139560346 + 03/13 18:30:00,12.8,12.8,17.484882857269445 + 03/13 18:40:00,12.8,12.8,17.50118643054024 + 03/13 18:50:00,12.8,12.8,17.51992972906585 + 03/13 19:00:00,12.8,12.8,17.53351454862611 + 03/13 19:10:00,12.8,12.8,17.55959885394533 + 03/13 19:20:00,12.8,12.8,17.571212752392098 + 03/13 19:30:00,12.8,12.8,17.581346155741657 + 03/13 19:40:00,12.8,12.8,17.590505594801294 + 03/13 19:50:00,12.8,12.8,17.598720424197837 + 03/13 20:00:00,12.8,12.8,17.606123618442177 + 03/13 20:10:00,12.8,12.8,17.590700097014684 + 03/13 20:20:00,12.8,12.8,17.60165636385979 + 03/13 20:30:00,12.8,12.8,17.60818269368966 + 03/13 20:40:00,12.8,12.8,17.614648717305273 + 03/13 20:50:00,12.8,12.8,17.621078379391756 + 03/13 21:00:00,12.8,12.8,17.627453000701395 + 03/13 21:10:00,12.821021021021022,12.821021021021022,17.63362449566571 + 03/13 21:20:00,12.842042042042042,12.842042042042042,17.641387794498045 + 03/13 21:30:00,12.863063063063063,12.863063063063063,17.64895954821528 + 03/13 21:40:00,12.884084084084084,12.884084084084084,17.65665945328033 + 03/13 21:50:00,12.905105105105106,12.905105105105106,17.6640786679093 + 03/13 22:00:00,12.926126126126127,12.926126126126127,17.671439153104246 + 03/13 22:10:00,12.997597597597599,12.997597597597599,19.042782954955088 + 03/13 22:20:00,13.06906906906907,13.06906906906907,19.187669121204239 + 03/13 22:30:00,13.140540540540542,13.140540540540542,19.252083504067135 + 03/13 22:40:00,13.212012012012015,13.212012012012015,19.30304293604067 + 03/13 22:50:00,13.283483483483485,13.283483483483485,19.344589600495753 + 03/13 23:00:00,13.354954954954956,13.354954954954956,19.379787743395125 + 03/13 23:10:00,13.401201201201202,13.401201201201202,19.410018673125604 + 03/13 23:20:00,13.447447447447449,13.447447447447449,19.43654932452341 + 03/13 23:30:00,13.493693693693695,13.493693693693695,19.460478883360758 + 03/13 23:40:00,13.539939939939942,13.539939939939942,19.482357535771216 + 03/13 23:50:00,13.586186186186187,13.586186186186187,19.502620169833109 + 03/13 24:00:00,13.632432432432433,13.632432432432433,19.521522702058737 + 03/14 00:10:00,13.67867867867868,13.67867867867868,19.539971227066944 + 03/14 00:20:00,13.724924924924924,13.724924924924924,19.557369557800514 + 03/14 00:30:00,13.771171171171173,13.771171171171173,19.573910212275913 + 03/14 00:40:00,13.817417417417419,13.817417417417419,19.589742719568208 + 03/14 00:50:00,13.863663663663666,13.863663663663666,19.604905175882327 + 03/14 01:00:00,13.90990990990991,13.90990990990991,19.6194744338237 + 03/14 01:10:00,13.956156156156157,13.956156156156157,19.63279482716784 + 03/14 01:20:00,14.002402402402403,14.002402402402403,19.64573133456027 + 03/14 01:30:00,14.04864864864865,14.04864864864865,19.6581898146638 + 03/14 01:40:00,14.094894894894896,14.094894894894896,19.67019473934529 + 03/14 01:50:00,14.14114114114114,14.14114114114114,19.681726522204984 + 03/14 02:00:00,14.187387387387388,14.187387387387388,19.692824574729359 + 03/14 02:10:00,14.212612612612613,14.212612612612613,19.70370154119815 + 03/14 02:20:00,14.237837837837838,14.237837837837838,19.714371084204147 + 03/14 02:30:00,14.263063063063063,14.263063063063063,19.724631750454276 + 03/14 02:40:00,14.288288288288289,14.288288288288289,19.73453597779497 + 03/14 02:50:00,14.313513513513513,14.313513513513513,19.74408259685318 + 03/14 03:00:00,14.338738738738739,14.338738738738739,19.753217245022588 + 03/14 03:10:00,14.363963963963965,14.363963963963965,19.761714787464077 + 03/14 03:20:00,14.389189189189189,14.389189189189189,19.770141916784107 + 03/14 03:30:00,14.414414414414415,14.414414414414415,19.778348221626734 + 03/14 03:40:00,14.439639639639639,14.439639639639639,19.786384976499954 + 03/14 03:50:00,14.464864864864865,14.464864864864865,19.79417509704256 + 03/14 04:00:00,14.49009009009009,14.49009009009009,19.801774410147077 + 03/14 04:10:00,14.536336336336337,14.536336336336337,19.809552517945766 + 03/14 04:20:00,14.582582582582582,14.582582582582582,19.816866661460869 + 03/14 04:30:00,14.628828828828829,14.628828828828829,19.824037922787928 + 03/14 04:40:00,14.675075075075075,14.675075075075075,19.83096881249514 + 03/14 04:50:00,14.721321321321322,14.721321321321322,19.837754584148155 + 03/14 05:00:00,14.767567567567568,14.767567567567568,19.844507538360383 + 03/14 05:10:00,14.767567567567568,14.767567567567568,19.85093661143756 + 03/14 05:20:00,14.767567567567568,14.767567567567568,19.85731052460882 + 03/14 05:30:00,14.767567567567568,14.767567567567568,19.863461123183876 + 03/14 05:40:00,14.767567567567568,14.767567567567568,19.869355845603616 + 03/14 05:50:00,14.767567567567568,14.767567567567568,19.87514061176659 + 03/14 06:00:00,14.767567567567568,14.767567567567568,19.88073270201369 + 03/14 06:10:00,14.721321321321322,14.721321321321322,17.88012464960606 + 03/14 06:20:00,14.675075075075075,14.675075075075075,17.648972322302666 + 03/14 06:30:00,14.628828828828829,14.628828828828829,17.56523949132375 + 03/14 06:40:00,14.582582582582582,14.582582582582582,17.500662961225907 + 03/14 06:50:00,14.536336336336337,14.536336336336337,17.450423143884156 + 03/14 07:00:00,14.49009009009009,14.49009009009009,17.409127290433877 + 03/14 07:05:00,14.49009009009009,14.49009009009009,15.9322622922133 + 03/14 07:10:00,14.49009009009009,14.49009009009009,15.931946644664752 + 03/14 07:15:00,14.49009009009009,14.49009009009009,15.715425411822317 + 03/14 07:20:00,14.49009009009009,14.49009009009009,15.715714420314966 + 03/14 07:30:00,14.49009009009009,14.49009009009009,15.614338697100495 + 03/14 07:40:00,14.49009009009009,14.49009009009009,15.531782458782436 + 03/14 07:50:00,14.49009009009009,14.49009009009009,15.462619575301226 + 03/14 08:00:00,14.49009009009009,14.49009009009009,15.402423909091377 + 03/14 08:05:00,14.418618618618618,14.418618618618618,15.323222819281906 + 03/14 08:10:00,14.418618618618618,14.418618618618618,15.322205373642806 + 03/14 08:20:00,14.347147147147148,14.347147147147148,15.26271764145424 + 03/14 08:30:00,14.275675675675675,14.275675675675675,15.216318489245659 + 03/14 08:40:00,14.204204204204205,14.204204204204205,15.171788977371945 + 03/14 08:50:00,14.132732732732734,14.132732732732734,15.129555686692667 + 03/14 09:00:00,14.061261261261262,14.061261261261262,15.088683732238023 + 03/14 09:10:00,13.989789789789791,13.989789789789791,15.049644688715898 + 03/14 09:20:00,13.918318318318317,13.918318318318317,15.000360957864466 + 03/14 09:30:00,13.846846846846847,13.846846846846847,14.962389307299805 + 03/14 09:40:00,13.775375375375376,13.775375375375376,14.925722386116688 + 03/14 09:50:00,13.703903903903905,13.703903903903905,14.891586222879111 + 03/14 10:00:00,13.632432432432433,13.632432432432433,14.861247485738579 + 03/14 10:10:00,13.514714714714716,13.514714714714716,14.834236347247085 + 03/14 10:20:00,13.396996996996997,13.396996996996997,14.802586754150603 + 03/14 10:30:00,13.27927927927928,13.27927927927928,14.778715722684055 + 03/14 10:40:00,13.161561561561563,13.161561561561563,14.753977178182982 + 03/14 10:50:00,13.043843843843846,13.043843843843846,14.73056990779029 + 03/14 11:00:00,12.926126126126127,12.926126126126127,14.705287212923036 + 03/14 11:10:00,12.87987987987988,12.87987987987988,14.680433291497272 + 03/14 11:20:00,12.833633633633636,12.833633633633636,14.666157674421877 + 03/14 11:30:00,12.8,12.8,14.641534063015858 + 03/14 11:40:00,12.8,12.8,14.619906504267306 + 03/14 11:50:00,12.8,12.8,14.598031233205229 + 03/14 12:00:00,12.8,12.8,14.578976287096614 + 03/14 12:10:00,12.8,12.8,14.563256095936796 + 03/14 12:20:00,12.8,12.8,14.533624611695635 + 03/14 12:30:00,12.8,12.8,14.517822294355407 + 03/14 12:40:00,12.8,12.8,14.50078166232417 + 03/14 12:50:00,12.8,12.8,14.488381775710956 + 03/14 13:00:00,12.8,12.8,14.476875068578318 + 03/14 13:10:00,12.8,12.8,14.469408829681946 + 03/14 13:20:00,12.8,12.8,14.468332437758637 + 03/14 13:30:00,12.8,12.8,14.465709245170795 + 03/14 13:40:00,12.8,12.8,14.464812788314566 + 03/14 13:50:00,12.85885885885886,12.85885885885886,14.461461256010067 + 03/14 14:00:00,12.926126126126127,12.926126126126127,14.45957783589021 + 03/14 14:10:00,12.926126126126127,12.926126126126127,14.4531597750933 + 03/14 14:20:00,12.926126126126127,12.926126126126127,14.452211927167726 + 03/14 14:30:00,12.926126126126127,12.926126126126127,14.446084969444316 + 03/14 14:40:00,12.926126126126127,12.926126126126127,14.4397527377235 + 03/14 14:50:00,12.926126126126127,12.926126126126127,14.434678832157488 + 03/14 15:00:00,12.926126126126127,12.926126126126127,14.426346572439656 + 03/14 15:05:00,12.951351351351353,12.951351351351353,16.57106795817969 + 03/14 15:10:00,12.951351351351353,12.951351351351353,16.57056526397995 + 03/14 15:20:00,12.976576576576577,12.976576576576577,16.814559644427687 + 03/14 15:30:00,13.001801801801803,13.001801801801803,16.906350758363766 + 03/14 15:40:00,13.027027027027028,13.027027027027028,16.976392170856145 + 03/14 15:50:00,13.052252252252253,13.052252252252253,17.03022039809209 + 03/14 16:00:00,13.077477477477478,13.077477477477478,17.071166023485419 + 03/14 16:10:00,13.052252252252253,13.052252252252253,17.133993599960165 + 03/14 16:20:00,13.027027027027028,13.027027027027028,17.186303728102666 + 03/14 16:30:00,13.001801801801803,13.001801801801803,17.21541587504949 + 03/14 16:40:00,12.976576576576577,12.976576576576577,17.241981400990093 + 03/14 16:50:00,12.951351351351353,12.951351351351353,17.267530321720899 + 03/14 17:00:00,12.926126126126127,12.926126126126127,17.291983353757158 + 03/14 17:10:00,13.043843843843846,13.043843843843846,17.32894311132744 + 03/14 17:20:00,13.16156156156156,13.16156156156156,17.356533057536568 + 03/14 17:30:00,13.27927927927928,13.27927927927928,17.377880762935939 + 03/14 17:40:00,13.396996996996997,13.396996996996997,17.398184190652555 + 03/14 17:50:00,13.514714714714716,13.514714714714716,17.417772019699876 + 03/14 18:00:00,13.632432432432433,13.632432432432433,17.436617171841797 + 03/14 18:10:00,13.724924924924926,13.724924924924926,17.45537624363992 + 03/14 18:20:00,13.817417417417417,13.817417417417417,17.473717206870039 + 03/14 18:30:00,13.90990990990991,13.90990990990991,17.49132567722041 + 03/14 18:40:00,14.002402402402403,14.002402402402403,17.50837107727873 + 03/14 18:50:00,14.094894894894896,14.094894894894896,17.52479109720543 + 03/14 19:00:00,14.187387387387388,14.187387387387388,17.540342947768744 + 03/14 19:10:00,14.237837837837838,14.237837837837838,17.567605527036368 + 03/14 19:20:00,14.288288288288289,14.288288288288289,17.58042587860112 + 03/14 19:30:00,14.338738738738739,14.338738738738739,17.591901663581579 + 03/14 19:40:00,14.389189189189189,14.389189189189189,17.60230567375812 + 03/14 19:50:00,14.43963963963964,14.43963963963964,17.61199902224196 + 03/14 20:00:00,14.49009009009009,14.49009009009009,17.621041475243346 + 03/14 20:10:00,14.603603603603604,14.603603603603604,17.60657544635397 + 03/14 20:20:00,14.717117117117118,14.717117117117118,17.620754711013306 + 03/14 20:30:00,14.83063063063063,14.83063063063063,17.63051625958318 + 03/14 20:40:00,14.944144144144144,14.944144144144144,17.640591503390298 + 03/14 20:50:00,15.057657657657657,15.057657657657657,17.650605667421325 + 03/14 21:00:00,15.17117117117117,15.17117117117117,17.66045352698106 + 03/14 21:10:00,15.196396396396397,15.196396396396397,17.67028421038971 + 03/14 21:20:00,15.22162162162162,15.22162162162162,17.68007731586968 + 03/14 21:30:00,15.246846846846847,15.246846846846847,17.689637711657526 + 03/14 21:40:00,15.272072072072073,15.272072072072073,17.699024709862138 + 03/14 21:50:00,15.297297297297297,15.297297297297297,17.708174464478224 + 03/14 22:00:00,15.322522522522523,15.322522522522523,17.717101625386819 + 03/14 22:10:00,15.343543543543543,15.343543543543543,19.09555723817752 + 03/14 22:20:00,15.364564564564564,15.364564564564564,19.242276203181079 + 03/14 22:30:00,15.385585585585586,15.385585585585586,19.308397154378829 + 03/14 22:40:00,15.406606606606607,15.406606606606607,19.36065326519833 + 03/14 22:50:00,15.427627627627628,15.427627627627628,19.403083356064934 + 03/14 23:00:00,15.448648648648648,15.448648648648648,19.438900666352866 + 03/14 23:10:00,15.52012012012012,15.52012012012012,19.470714919202068 + 03/14 23:20:00,15.591591591591591,15.591591591591591,19.49899184623691 + 03/14 23:30:00,15.6,15.6,19.52479859811342 + 03/14 23:40:00,15.6,15.6,19.54858914883317 + 03/14 23:50:00,15.6,15.6,19.570825934917275 + 03/14 24:00:00,15.6,15.6,19.591701108841055 + 03/15 00:10:00,15.6,15.6,19.610113864370818 + 03/15 00:20:00,15.6,15.6,19.627444122456589 + 03/15 00:30:00,15.6,15.6,19.64371470656681 + 03/15 00:40:00,15.6,15.6,19.659041979991238 + 03/15 00:50:00,15.6,15.6,19.67343391003763 + 03/15 01:00:00,15.6,15.6,19.687131327150526 + 03/15 01:10:00,15.6,15.6,19.700589957848487 + 03/15 01:20:00,15.6,15.6,19.713218274323994 + 03/15 01:30:00,15.6,15.6,19.724896262730117 + 03/15 01:40:00,15.6,15.6,19.7356440984247 + 03/15 01:50:00,15.6,15.6,19.745584404872809 + 03/15 02:00:00,15.6,15.6,19.75481937770438 + 03/15 02:10:00,15.6,15.6,19.763847475921464 + 03/15 02:20:00,15.6,15.6,19.772464390692386 + 03/15 02:30:00,15.6,15.6,19.78084717563944 + 03/15 02:40:00,15.6,15.6,19.789020580927497 + 03/15 02:50:00,15.6,15.6,19.79712126536814 + 03/15 03:00:00,15.6,15.6,19.805081848091697 + 03/15 03:10:00,15.6,15.6,19.812181621406564 + 03/15 03:20:00,15.6,15.6,19.81922740160661 + 03/15 03:30:00,15.6,15.6,19.826077380268296 + 03/15 03:40:00,15.6,15.6,19.83292321265563 + 03/15 03:50:00,15.6,15.6,19.83963644999764 + 03/15 04:00:00,15.6,15.6,19.846205741328203 + 03/15 04:10:00,15.6,15.6,19.852986297325474 + 03/15 04:20:00,15.6,15.6,19.85950845009654 + 03/15 04:30:00,15.6,15.6,19.865940590228303 + 03/15 04:40:00,15.6,15.6,19.872217620776554 + 03/15 04:50:00,15.6,15.6,19.878332153929205 + 03/15 05:00:00,15.6,15.6,19.88428765973488 + 03/15 05:10:00,15.6,15.6,19.889881999151688 + 03/15 05:20:00,15.6,15.6,19.895641282418219 + 03/15 05:30:00,15.6,15.6,19.90157587716483 + 03/15 05:40:00,15.6,15.6,19.90766864065828 + 03/15 05:50:00,15.6,15.6,19.913876675448056 + 03/15 06:00:00,15.6,15.6,19.920126018846529 + 03/15 06:10:00,15.6,15.6,17.907819536976726 + 03/15 06:20:00,15.6,15.6,17.676074777238858 + 03/15 06:30:00,15.6,15.6,17.592260190491588 + 03/15 06:40:00,15.6,15.6,17.52760923599147 + 03/15 06:50:00,15.6,15.6,17.47757279832158 + 03/15 07:00:00,15.6,15.6,17.436520432044718 + 03/15 07:10:00,15.6,15.6,15.947309365521314 + 03/15 07:20:00,15.6,15.6,15.730222275999278 + 03/15 07:30:00,15.6,15.6,15.62997309396868 + 03/15 07:40:00,15.6,15.6,15.548153240422664 + 03/15 07:50:00,15.6,15.6,15.479899122086844 + 03/15 08:00:00,15.6,15.6,15.420367632122773 + 03/15 08:10:00,15.6,15.6,15.34116931518331 + 03/15 08:20:00,15.6,15.6,15.283013598340764 + 03/15 08:30:00,15.6,15.6,15.23539048108117 + 03/15 08:40:00,15.6,15.6,15.189963233792808 + 03/15 08:50:00,15.6,15.6,15.146777414272837 + 03/15 09:00:00,15.6,15.6,15.10575673996838 + 03/15 09:10:00,15.6,15.6,15.06509368355766 + 03/15 09:20:00,15.6,15.6,15.016018553893172 + 03/15 09:30:00,15.6,15.6,14.979199818703702 + 03/15 09:40:00,15.54954954954955,15.54954954954955,14.94412429929184 + 03/15 09:50:00,15.499099099099098,15.499099099099098,14.91075433817203 + 03/15 10:00:00,15.448648648648648,15.448648648648648,14.87980507979121 + 03/15 10:10:00,15.381381381381381,15.381381381381381,14.851860074362718 + 03/15 10:20:00,15.314114114114114,15.314114114114114,14.819288310354397 + 03/15 10:30:00,15.246846846846847,15.246846846846847,14.793414894978288 + 03/15 10:40:00,15.17957957957958,15.17957957957958,14.766998129011429 + 03/15 10:50:00,15.112312312312313,15.112312312312313,14.741943989355719 + 03/15 11:00:00,15.045045045045045,15.045045045045045,14.716389821793915 + 03/15 11:10:00,14.998798798798799,14.998798798798799,14.690868171260253 + 03/15 11:20:00,14.952552552552552,14.952552552552552,14.676238985935023 + 03/15 11:30:00,14.906306306306306,14.906306306306306,14.650616754593872 + 03/15 11:40:00,14.86006006006006,14.86006006006006,14.627921060794782 + 03/15 11:50:00,14.813813813813815,14.813813813813815,14.604796103351884 + 03/15 12:00:00,14.767567567567568,14.767567567567568,14.583089849351375 + 03/15 12:10:00,14.721321321321322,14.721321321321322,14.564979467943556 + 03/15 12:20:00,14.675075075075075,14.675075075075075,14.535562781332205 + 03/15 12:30:00,14.628828828828829,14.628828828828829,14.519363949895377 + 03/15 12:40:00,14.582582582582582,14.582582582582582,14.50236411145897 + 03/15 12:50:00,14.536336336336337,14.536336336336337,14.48764533348173 + 03/15 13:00:00,14.49009009009009,14.49009009009009,14.472872011402784 + 03/15 13:10:00,14.393393393393394,14.393393393393394,14.458102414792832 + 03/15 13:20:00,14.296696696696696,14.296696696696696,14.447530858941102 + 03/15 13:30:00,14.2,14.2,14.432799601205787 + 03/15 13:40:00,14.103303303303303,14.103303303303303,14.420046923797772 + 03/15 13:50:00,14.006606606606607,14.006606606606607,14.404882838217164 + 03/15 14:00:00,13.90990990990991,13.90990990990991,14.392827950770894 + 03/15 14:10:00,13.88888888888889,13.88888888888889,14.378914185247764 + 03/15 14:20:00,13.867867867867869,13.867867867867869,14.370542815050346 + 03/15 14:30:00,13.846846846846848,13.846846846846848,14.359737742742782 + 03/15 14:40:00,13.825825825825828,13.825825825825828,14.349103033448906 + 03/15 14:50:00,13.804804804804805,13.804804804804805,14.341922329483241 + 03/15 15:00:00,13.783783783783785,13.783783783783785,14.333031816256345 + 03/15 15:05:00,13.758558558558559,13.758558558558559,16.499472396839584 + 03/15 15:10:00,13.758558558558559,13.758558558558559,16.498621737492639 + 03/15 15:20:00,13.733333333333335,13.733333333333335,16.750083380345015 + 03/15 15:30:00,13.708108108108109,13.708108108108109,16.847549885361596 + 03/15 15:40:00,13.682882882882883,13.682882882882883,16.92461310729717 + 03/15 15:50:00,13.657657657657659,13.657657657657659,16.98582964353772 + 03/15 16:00:00,13.632432432432433,13.632432432432433,17.035095386234248 + 03/15 16:10:00,13.632432432432433,13.632432432432433,17.10291547785978 + 03/15 16:20:00,13.632432432432433,13.632432432432433,17.160026212648967 + 03/15 16:30:00,13.632432432432433,13.632432432432433,17.192956671545724 + 03/15 16:40:00,13.632432432432433,13.632432432432433,17.222629397656467 + 03/15 16:50:00,13.632432432432433,13.632432432432433,17.249980582567095 + 03/15 17:00:00,13.632432432432433,13.632432432432433,17.27550781952088 + 03/15 17:10:00,13.632432432432433,13.632432432432433,17.31343127825739 + 03/15 17:20:00,13.632432432432433,13.632432432432433,17.3430116198467 + 03/15 17:30:00,13.632432432432433,13.632432432432433,17.3659710707582 + 03/15 17:40:00,13.632432432432433,13.632432432432433,17.388079726192303 + 03/15 17:50:00,13.632432432432433,13.632432432432433,17.409431244384665 + 03/15 18:00:00,13.632432432432433,13.632432432432433,17.430045288111218 + 03/15 18:10:00,13.657657657657659,13.657657657657659,17.44960559813325 + 03/15 18:20:00,13.682882882882883,13.682882882882883,17.468253184291585 + 03/15 18:30:00,13.708108108108109,13.708108108108109,17.48637842456523 + 03/15 18:40:00,13.733333333333335,13.733333333333335,17.503722563068079 + 03/15 18:50:00,13.758558558558559,13.758558558558559,17.52048838895056 + 03/15 19:00:00,13.783783783783785,13.783783783783785,17.536610392899854 + 03/15 19:10:00,13.83003003003003,13.83003003003003,17.564902048183844 + 03/15 19:20:00,13.876276276276276,13.876276276276276,17.580386377212684 + 03/15 19:30:00,13.922522522522524,13.922522522522524,17.59435459942882 + 03/15 19:40:00,13.968768768768769,13.968768768768769,17.607404904860674 + 03/15 19:50:00,14.015015015015015,14.015015015015015,17.619490967201029 + 03/15 20:00:00,14.061261261261262,14.061261261261262,17.630811192184347 + 03/15 20:10:00,14.178978978978979,14.178978978978979,17.61856178436276 + 03/15 20:20:00,14.296696696696696,14.296696696696696,17.633526781134 + 03/15 20:30:00,14.414414414414415,14.414414414414415,17.64372194035894 + 03/15 20:40:00,14.532132132132132,14.532132132132132,17.653717699038599 + 03/15 20:50:00,14.64984984984985,14.64984984984985,17.66342508391199 + 03/15 21:00:00,14.767567567567568,14.767567567567568,17.672880686284797 + 03/15 21:10:00,14.788588588588589,14.788588588588589,17.683658425766195 + 03/15 21:20:00,14.809609609609609,14.809609609609609,17.693169270556827 + 03/15 21:30:00,14.83063063063063,14.83063063063063,17.702137312344929 + 03/15 21:40:00,14.85165165165165,14.85165165165165,17.710381539142163 + 03/15 21:50:00,14.872672672672673,14.872672672672673,17.71814652327283 + 03/15 22:00:00,14.893693693693694,14.893693693693694,17.72563060820605 + 03/15 22:10:00,14.93993993993994,14.93993993993994,19.105556252902504 + 03/15 22:20:00,14.986186186186187,14.986186186186187,19.250765463611246 + 03/15 22:30:00,15.032432432432433,15.032432432432433,19.31549639569921 + 03/15 22:40:00,15.078678678678678,15.078678678678678,19.366663557697703 + 03/15 22:50:00,15.124924924924925,15.124924924924925,19.40832025572481 + 03/15 23:00:00,15.17117117117117,15.17117117117117,19.443603734386813 + 03/15 23:10:00,15.17117117117117,15.17117117117117,19.47439530708577 + 03/15 23:20:00,15.17117117117117,15.17117117117117,19.501763058669327 + 03/15 23:30:00,15.17117117117117,15.17117117117117,19.526280451041566 + 03/15 23:40:00,15.17117117117117,15.17117117117117,19.548636313434274 + 03/15 23:50:00,15.17117117117117,15.17117117117117,19.569165378045683 + 03/15 24:00:00,15.17117117117117,15.17117117117117,19.588141101610778 + 03/16 00:10:00,15.217417417417418,15.217417417417418,19.60570806644111 + 03/16 00:20:00,15.263663663663664,15.263663663663664,19.622517923044446 + 03/16 00:30:00,15.30990990990991,15.30990990990991,19.638511966697445 + 03/16 00:40:00,15.356156156156157,15.356156156156157,19.653920818077795 + 03/16 00:50:00,15.402402402402402,15.402402402402402,19.668681236634578 + 03/16 01:00:00,15.448648648648648,15.448648648648648,19.68284556501336 + 03/16 01:10:00,15.473873873873874,15.473873873873874,19.695999321514173 + 03/16 01:20:00,15.499099099099098,15.499099099099098,19.708323185156784 + 03/16 01:30:00,15.524324324324324,15.524324324324324,19.720191053610713 + 03/16 01:40:00,15.54954954954955,15.54954954954955,19.73152996811927 + 03/16 01:50:00,15.574774774774774,15.574774774774774,19.742435533388805 + 03/16 02:00:00,15.6,15.6,19.752950101039727 + 03/16 02:10:00,15.6,15.6,19.76409939503108 + 03/16 02:20:00,15.6,15.6,19.775079824535135 + 03/16 02:30:00,15.6,15.6,19.785700507706115 + 03/16 02:40:00,15.6,15.6,19.79601303459218 + 03/16 02:50:00,15.6,15.6,19.806007257334053 + 03/16 03:00:00,15.6,15.6,19.815603832525473 + 03/16 03:10:00,15.6,15.6,19.824570332476588 + 03/16 03:20:00,15.6,15.6,19.833229046228927 + 03/16 03:30:00,15.6,15.6,19.841634757258356 + 03/16 03:40:00,15.6,15.6,19.84979100534619 + 03/16 03:50:00,15.6,15.6,19.857661655092909 + 03/16 04:00:00,15.6,15.6,19.86535372013452 + 03/16 04:10:00,15.6,15.6,19.87384644719939 + 03/16 04:20:00,15.6,15.6,19.88187964293462 + 03/16 04:30:00,15.6,15.6,19.889399342633888 + 03/16 04:40:00,15.6,15.6,19.89637475651318 + 03/16 04:50:00,15.6,15.6,19.902872358172706 + 03/16 05:00:00,15.6,15.6,19.90902591217452 + 03/16 05:10:00,15.6,15.6,19.914421731496185 + 03/16 05:20:00,15.6,15.6,19.919628829941638 + 03/16 05:30:00,15.6,15.6,19.92476189631634 + 03/16 05:40:00,15.6,15.6,19.929783014361683 + 03/16 05:50:00,15.6,15.6,19.934867312451496 + 03/16 06:00:00,15.6,15.6,19.939924425248177 + 03/16 06:10:00,15.6,15.6,17.926438871733646 + 03/16 06:20:00,15.6,15.6,17.692163964605748 + 03/16 06:30:00,15.6,15.6,17.605836729619349 + 03/16 06:40:00,15.6,15.6,17.5387042891324 + 03/16 06:50:00,15.6,15.6,17.48612436583925 + 03/16 07:00:00,15.6,15.6,17.442849966057158 + 03/16 07:10:00,15.6,15.6,15.95482693919689 + 03/16 07:20:00,15.6,15.6,15.737867209161779 + 03/16 07:30:00,15.6,15.6,15.637545058970197 + 03/16 07:40:00,15.6,15.6,15.556046316630378 + 03/16 07:50:00,15.6,15.6,15.488722945429622 + 03/16 08:00:00,15.6,15.6,15.430979435672695 + 03/16 08:10:00,15.6,15.6,15.352497965136026 + 03/16 08:20:00,15.6,15.6,15.297093476378235 + 03/16 08:30:00,15.6,15.6,15.25378040790527 + 03/16 08:40:00,15.6,15.6,15.213863014679788 + 03/16 08:50:00,15.6,15.6,15.17650777615503 + 03/16 09:00:00,15.6,15.6,15.141230522638958 + 03/16 09:10:00,15.6,15.6,15.108254183750283 + 03/16 09:20:00,15.6,15.6,15.066299543124007 + 03/16 09:30:00,15.6,15.6,15.036173905914719 + 03/16 09:40:00,15.6,15.6,15.007485131716921 + 03/16 09:50:00,15.6,15.6,14.980372699708746 + 03/16 10:00:00,15.6,15.6,14.955122317710809 + 03/16 10:10:00,15.528528528528529,15.528528528528529,14.933308041753751 + 03/16 10:20:00,15.457057057057057,15.457057057057057,14.906925182412359 + 03/16 10:30:00,15.385585585585586,15.385585585585586,14.885213223670413 + 03/16 10:40:00,15.314114114114114,15.314114114114114,14.86456427534011 + 03/16 10:50:00,15.242642642642644,15.242642642642644,14.843342344674513 + 03/16 11:00:00,15.17117117117117,15.17117117117117,14.823393770511049 + 03/16 11:10:00,15.15015015015015,15.15015015015015,14.80165157849612 + 03/16 11:20:00,15.12912912912913,15.12912912912913,14.792837737829649 + 03/16 11:30:00,15.108108108108109,15.108108108108109,14.771747497548456 + 03/16 11:40:00,15.087087087087087,15.087087087087087,14.754315828001824 + 03/16 11:50:00,15.066066066066066,15.066066066066066,14.738942639674575 + 03/16 12:00:00,15.045045045045045,15.045045045045045,14.723766678151384 + 03/16 12:10:00,15.01981981981982,15.01981981981982,14.712724501201278 + 03/16 12:20:00,14.994594594594594,14.994594594594594,14.692392489007397 + 03/16 12:30:00,14.96936936936937,14.96936936936937,14.683514950335349 + 03/16 12:40:00,14.944144144144144,14.944144144144144,14.675648074606058 + 03/16 12:50:00,14.91891891891892,14.91891891891892,14.666903922616739 + 03/16 13:00:00,14.893693693693694,14.893693693693694,14.658734570469266 + 03/16 13:10:00,14.893693693693694,14.893693693693694,14.64914981201544 + 03/16 13:20:00,14.893693693693694,14.893693693693694,14.644750612003856 + 03/16 13:30:00,14.893693693693694,14.893693693693694,14.633793359428929 + 03/16 13:40:00,14.893693693693694,14.893693693693694,14.625710145578286 + 03/16 13:50:00,14.893693693693694,14.893693693693694,14.614691818743081 + 03/16 14:00:00,14.893693693693694,14.893693693693694,14.605230956089715 + 03/16 14:10:00,14.91891891891892,14.91891891891892,14.595537093324861 + 03/16 14:20:00,14.944144144144144,14.944144144144144,14.588723675566286 + 03/16 14:30:00,14.96936936936937,14.96936936936937,14.580288774227967 + 03/16 14:40:00,14.994594594594595,14.994594594594595,14.56905036116556 + 03/16 14:50:00,15.01981981981982,15.01981981981982,14.561438900319894 + 03/16 15:00:00,15.045045045045045,15.045045045045045,14.553597764128407 + 03/16 15:05:00,15.066066066066066,15.066066066066066,16.710084664408517 + 03/16 15:10:00,15.066066066066066,15.066066066066066,16.709167153408253 + 03/16 15:20:00,15.087087087087087,15.087087087087087,16.95478920545115 + 03/16 15:30:00,15.108108108108109,15.108108108108109,17.047473331765674 + 03/16 15:40:00,15.12912912912913,15.12912912912913,17.116983847849654 + 03/16 15:50:00,15.15015015015015,15.15015015015015,17.172209221521255 + 03/16 16:00:00,15.17117117117117,15.17117117117117,17.217420843941626 + 03/16 16:10:00,15.17117117117117,15.17117117117117,17.27996930593638 + 03/16 16:20:00,15.17117117117117,15.17117117117117,17.334489047697234 + 03/16 16:30:00,15.17117117117117,15.17117117117117,17.365170424051045 + 03/16 16:40:00,15.17117117117117,15.17117117117117,17.39280458695052 + 03/16 16:50:00,15.17117117117117,15.17117117117117,17.41809373863511 + 03/16 17:00:00,15.17117117117117,15.17117117117117,17.44141263124147 + 03/16 17:10:00,15.196396396396397,15.196396396396397,17.47553344146607 + 03/16 17:20:00,15.22162162162162,15.22162162162162,17.50099567029425 + 03/16 17:30:00,15.246846846846847,15.246846846846847,17.51979401802372 + 03/16 17:40:00,15.272072072072073,15.272072072072073,17.537571279880024 + 03/16 17:50:00,15.297297297297297,15.297297297297297,17.554488705993465 + 03/16 18:00:00,15.322522522522523,15.322522522522523,17.570627924073287 + 03/16 18:10:00,15.343543543543543,15.343543543543543,17.58705272109723 + 03/16 18:20:00,15.364564564564564,15.364564564564564,17.602779845940295 + 03/16 18:30:00,15.385585585585586,15.385585585585586,17.61803268232002 + 03/16 18:40:00,15.406606606606607,15.406606606606607,17.63269049609025 + 03/16 18:50:00,15.427627627627628,15.427627627627628,17.64693080745789 + 03/16 19:00:00,15.448648648648648,15.448648648648648,17.660801043157588 + 03/16 19:10:00,15.448648648648648,15.448648648648648,17.686263115725823 + 03/16 19:20:00,15.448648648648648,15.448648648648648,17.69850127735826 + 03/16 19:30:00,15.448648648648648,15.448648648648648,17.709499665120125 + 03/16 19:40:00,15.448648648648648,15.448648648648648,17.719686717492594 + 03/16 19:50:00,15.448648648648648,15.448648648648648,17.729176466702517 + 03/16 20:00:00,15.448648648648648,15.448648648648648,17.73796957327657 + 03/16 20:10:00,15.499099099099098,15.499099099099098,17.72404118023212 + 03/16 20:20:00,15.54954954954955,15.54954954954955,17.736763843153029 + 03/16 20:30:00,15.6,15.6,17.74477564700115 + 03/16 20:40:00,15.6,15.6,17.752511848776274 + 03/16 20:50:00,15.6,15.6,17.760026817396704 + 03/16 21:00:00,15.6,15.6,17.767332545337074 + 03/16 21:10:00,15.6,15.6,17.774234502411788 + 03/16 21:20:00,15.6,15.6,17.780627605642477 + 03/16 21:30:00,15.6,15.6,17.786730820847589 + 03/16 21:40:00,15.6,15.6,17.792538679141037 + 03/16 21:50:00,15.6,15.6,17.798063781308636 + 03/16 22:00:00,15.6,15.6,17.803334375535994 + 03/16 22:10:00,15.6,15.6,19.178637685543653 + 03/16 22:20:00,15.6,15.6,19.322756862215497 + 03/16 22:30:00,15.6,15.6,19.386916644504077 + 03/16 22:40:00,15.6,15.6,19.43759665189362 + 03/16 22:50:00,15.6,15.6,19.478669102137084 + 03/16 23:00:00,15.6,15.6,19.513297911557716 + 03/16 23:10:00,15.6,15.6,19.541947439766024 + 03/16 23:20:00,15.6,15.6,19.567010004766059 + 03/16 23:30:00,15.6,15.6,19.58937309947184 + 03/16 23:40:00,15.6,15.6,19.609506080463967 + 03/16 23:50:00,15.6,15.6,19.62785099556741 + 03/16 24:00:00,15.6,15.6,19.644619645234458 + 03/17 00:10:00,15.6,15.6,19.659903420748728 + 03/17 00:20:00,15.6,15.6,19.674229547197279 + 03/17 00:30:00,15.6,15.6,19.68765284132156 + 03/17 00:40:00,15.6,15.6,19.700312943173765 + 03/17 00:50:00,15.6,15.6,19.71218215118606 + 03/17 01:00:00,15.6,15.6,19.72348474353399 + 03/17 01:10:00,15.6,15.6,19.735548070016493 + 03/17 01:20:00,15.6,15.6,19.747173411444949 + 03/17 01:30:00,15.6,15.6,19.758307551359846 + 03/17 01:40:00,15.6,15.6,19.768957068964786 + 03/17 01:50:00,15.6,15.6,19.77920723147394 + 03/17 02:00:00,15.6,15.6,19.789107956671559 + 03/17 02:10:00,15.6,15.6,19.79938881286629 + 03/17 02:20:00,15.6,15.6,19.809367371930919 + 03/17 02:30:00,15.6,15.6,19.819048664121796 + 03/17 02:40:00,15.6,15.6,19.82846149940546 + 03/17 02:50:00,15.6,15.6,19.83771986944602 + 03/17 03:00:00,15.6,15.6,19.84676877959575 + 03/17 03:10:00,15.6,15.6,19.85448019430829 + 03/17 03:20:00,15.6,15.6,19.861762199134419 + 03/17 03:30:00,15.6,15.6,19.86869613503164 + 03/17 03:40:00,15.6,15.6,19.875412177968735 + 03/17 03:50:00,15.6,15.6,19.88188293418062 + 03/17 04:00:00,15.6,15.6,19.88812880474769 + 03/17 04:10:00,15.6,15.6,19.893515083737929 + 03/17 04:20:00,15.6,15.6,19.898741752454826 + 03/17 04:30:00,15.6,15.6,19.903999997619239 + 03/17 04:40:00,15.6,15.6,19.909234876159137 + 03/17 04:50:00,15.6,15.6,19.91442614281158 + 03/17 05:00:00,15.6,15.6,19.919569530774614 + 03/17 05:10:00,15.6,15.6,19.925718526737243 + 03/17 05:20:00,15.6,15.6,19.931814361806443 + 03/17 05:30:00,15.6,15.6,19.937899004528075 + 03/17 05:40:00,15.6,15.6,19.943920976983614 + 03/17 05:50:00,15.6,15.6,19.949890383049067 + 03/17 06:00:00,15.6,15.6,19.955761003545406 + 03/17 06:10:00,15.6,15.6,17.947496310039449 + 03/17 06:20:00,15.6,15.6,17.71461071204601 + 03/17 06:30:00,15.6,15.6,17.629026723179547 + 03/17 06:40:00,15.6,15.6,17.56237861302209 + 03/17 06:50:00,15.6,15.6,17.510025910580614 + 03/17 07:00:00,15.6,15.6,17.466706312941079 + 03/17 07:10:00,15.6,15.6,15.980556589443776 + 03/17 07:20:00,15.6,15.6,15.763076755418318 + 03/17 07:30:00,15.6,15.6,15.662023717045054 + 03/17 07:40:00,15.6,15.6,15.579606044456057 + 03/17 07:50:00,15.6,15.6,15.511158158764474 + 03/17 08:00:00,15.6,15.6,15.45186272001872 + 03/17 08:10:00,15.6,15.6,15.37245527098126 + 03/17 08:20:00,15.6,15.6,15.315246757874501 + 03/17 08:30:00,15.6,15.6,15.269358376917074 + 03/17 08:40:00,15.6,15.6,15.22638975329844 + 03/17 08:50:00,15.6,15.6,15.186030152059269 + 03/17 09:00:00,15.6,15.6,15.14797512210807 + 03/17 09:10:00,15.528528528528529,15.528528528528529,15.112893794977606 + 03/17 09:20:00,15.457057057057057,15.457057057057057,15.068018670775663 + 03/17 09:30:00,15.385585585585586,15.385585585585586,15.035012850197257 + 03/17 09:40:00,15.314114114114114,15.314114114114114,15.003536873388816 + 03/17 09:50:00,15.242642642642644,15.242642642642644,14.974407066466709 + 03/17 10:00:00,15.17117117117117,15.17117117117117,14.94788243862682 + 03/17 10:10:00,15.15015015015015,15.15015015015015,14.924340880124701 + 03/17 10:20:00,15.12912912912913,15.12912912912913,14.90188013707428 + 03/17 10:30:00,15.108108108108109,15.108108108108109,14.882321041199577 + 03/17 10:40:00,15.087087087087087,15.087087087087087,14.867296834637296 + 03/17 10:50:00,15.066066066066066,15.066066066066066,14.849221281406678 + 03/17 11:00:00,15.045045045045045,15.045045045045045,14.834286470318487 + 03/17 11:10:00,15.01981981981982,15.01981981981982,14.817639556151182 + 03/17 11:20:00,14.994594594594594,14.994594594594594,14.810872390619679 + 03/17 11:30:00,14.96936936936937,14.96936936936937,14.793667186689403 + 03/17 11:40:00,14.944144144144144,14.944144144144144,14.774967023665774 + 03/17 11:50:00,14.91891891891892,14.91891891891892,14.756584629208965 + 03/17 12:00:00,14.893693693693694,14.893693693693694,14.734162687348407 + 03/17 12:10:00,14.872672672672673,14.872672672672673,14.709546808776196 + 03/17 12:20:00,14.85165165165165,14.85165165165165,14.677711919596204 + 03/17 12:30:00,14.83063063063063,14.83063063063063,14.65204175323792 + 03/17 12:40:00,14.809609609609609,14.809609609609609,14.630337886066148 + 03/17 12:50:00,14.788588588588589,14.788588588588589,14.60784269234107 + 03/17 13:00:00,14.767567567567568,14.767567567567568,14.59188336825574 + 03/17 13:10:00,14.696096096096096,14.696096096096096,14.573374414390586 + 03/17 13:20:00,14.624624624624625,14.624624624624625,14.561793242672275 + 03/17 13:30:00,14.553153153153153,14.553153153153153,14.546429640025945 + 03/17 13:40:00,14.481681681681682,14.481681681681682,14.53246830033634 + 03/17 13:50:00,14.41021021021021,14.41021021021021,14.518405257904873 + 03/17 14:00:00,14.338738738738739,14.338738738738739,14.502456250090115 + 03/17 14:10:00,14.292492492492493,14.292492492492493,14.490857060372564 + 03/17 14:20:00,14.246246246246246,14.246246246246246,14.480420280332451 + 03/17 14:30:00,14.2,14.2,14.469659576445825 + 03/17 14:40:00,14.153753753753755,14.153753753753755,14.458271164383226 + 03/17 14:50:00,14.107507507507508,14.107507507507508,14.447505412567124 + 03/17 15:00:00,14.061261261261262,14.061261261261262,14.439549866579203 + 03/17 15:05:00,14.036036036036036,14.036036036036036,16.60046056059083 + 03/17 15:10:00,14.036036036036036,14.036036036036036,16.599859788563188 + 03/17 15:20:00,14.01081081081081,14.01081081081081,16.846669502078329 + 03/17 15:30:00,13.985585585585586,13.985585585585586,16.941428940920298 + 03/17 15:40:00,13.960360360360362,13.960360360360362,17.011230112517713 + 03/17 15:50:00,13.935135135135136,13.935135135135136,17.066892939561009 + 03/17 16:00:00,13.90990990990991,13.90990990990991,17.11339576345928 + 03/17 16:10:00,13.90990990990991,13.90990990990991,17.17876242974566 + 03/17 16:20:00,13.90990990990991,13.90990990990991,17.232141759777997 + 03/17 16:30:00,13.90990990990991,13.90990990990991,17.263262284033659 + 03/17 16:40:00,13.90990990990991,13.90990990990991,17.291700088437005 + 03/17 16:50:00,13.90990990990991,13.90990990990991,17.318173226546234 + 03/17 17:00:00,13.90990990990991,13.90990990990991,17.343137015590629 + 03/17 17:10:00,13.956156156156157,13.956156156156157,17.380526865365295 + 03/17 17:20:00,14.002402402402403,14.002402402402403,17.40973771674321 + 03/17 17:30:00,14.04864864864865,14.04864864864865,17.432351926256819 + 03/17 17:40:00,14.094894894894896,14.094894894894896,17.454243549518858 + 03/17 17:50:00,14.14114114114114,14.14114114114114,17.47563770312766 + 03/17 18:00:00,14.187387387387388,14.187387387387388,17.49645841926417 + 03/17 18:10:00,14.25885885885886,14.25885885885886,17.515639672071786 + 03/17 18:20:00,14.33033033033033,14.33033033033033,17.53475353346327 + 03/17 18:30:00,14.401801801801803,14.401801801801803,17.553071016461297 + 03/17 18:40:00,14.473273273273274,14.473273273273274,17.570605908003534 + 03/17 18:50:00,14.544744744744746,14.544744744744746,17.58723569086283 + 03/17 19:00:00,14.616216216216217,14.616216216216217,17.603043944923909 + 03/17 19:10:00,14.70870870870871,14.70870870870871,17.632869113561328 + 03/17 19:20:00,14.8012012012012,14.8012012012012,17.648440453650843 + 03/17 19:30:00,14.893693693693694,14.893693693693694,17.662791794747656 + 03/17 19:40:00,14.986186186186187,14.986186186186187,17.676221725457439 + 03/17 19:50:00,15.078678678678678,15.078678678678678,17.689002180469538 + 03/17 20:00:00,15.17117117117117,15.17117117117117,17.701280995306616 + 03/17 20:10:00,15.242642642642644,15.242642642642644,17.689050339439328 + 03/17 20:20:00,15.314114114114114,15.314114114114114,17.703644028813366 + 03/17 20:30:00,15.385585585585586,15.385585585585586,17.713408962048719 + 03/17 20:40:00,15.457057057057057,15.457057057057057,17.722848500078059 + 03/17 20:50:00,15.528528528528529,15.528528528528529,17.73199122682653 + 03/17 21:00:00,15.6,15.6,17.740858359963004 + 03/17 21:10:00,15.6,15.6,17.748273476112304 + 03/17 21:20:00,15.6,15.6,17.755690160782039 + 03/17 21:30:00,15.6,15.6,17.762837670298084 + 03/17 21:40:00,15.6,15.6,17.76975699434363 + 03/17 21:50:00,15.6,15.6,17.776361867547349 + 03/17 22:00:00,15.6,15.6,17.78280287067433 + 03/17 22:10:00,15.6,15.6,19.16745689356076 + 03/17 22:20:00,15.6,15.6,19.314568155079387 + 03/17 22:30:00,15.6,15.6,19.381405483047993 + 03/17 22:40:00,15.6,15.6,19.43467804706803 + 03/17 22:50:00,15.6,15.6,19.478343457593128 + 03/17 23:00:00,15.6,15.6,19.51555842793091 + 03/17 23:10:00,15.6,15.6,19.54752680024511 + 03/17 23:20:00,15.6,15.6,19.576059337457005 + 03/17 23:30:00,15.6,15.6,19.601873928471997 + 03/17 23:40:00,15.6,15.6,19.625618805513456 + 03/17 23:50:00,15.6,15.6,19.647641092455627 + 03/17 24:00:00,15.6,15.6,19.668205359087318 + 03/18 00:10:00,15.6,15.6,19.684395462096135 + 03/18 00:20:00,15.6,15.6,19.699421772387855 + 03/18 00:30:00,15.6,15.6,19.713489252893873 + 03/18 00:40:00,15.6,15.6,19.72675559280762 + 03/18 00:50:00,15.6,15.6,19.73927245340247 + 03/18 01:00:00,15.6,15.6,19.751079432011815 + 03/18 01:10:00,15.6,15.6,19.76408902648545 + 03/18 01:20:00,15.6,15.6,19.776643092956527 + 03/18 01:30:00,15.6,15.6,19.78888070828372 + 03/18 01:40:00,15.6,15.6,19.80075087499776 + 03/18 01:50:00,15.6,15.6,19.81223855888269 + 03/18 02:00:00,15.6,15.6,19.823362959229624 + 03/18 02:10:00,15.6,15.6,19.837683737966388 + 03/18 02:20:00,15.6,15.6,19.85179920074753 + 03/18 02:30:00,15.6,15.6,19.865600266950133 + 03/18 02:40:00,15.6,15.6,19.87911399882228 + 03/18 02:50:00,15.6,15.6,19.89236472073049 + 03/18 03:00:00,15.6,15.6,19.90529196773319 + 03/18 03:10:00,15.6,15.6,19.914493279012278 + 03/18 03:20:00,15.6,15.6,19.92338557712166 + 03/18 03:30:00,15.6,15.6,19.9320047557319 + 03/18 03:40:00,15.6,15.6,19.940352046305568 + 03/18 03:50:00,15.6,15.6,19.94839029141318 + 03/18 04:00:00,15.6,15.6,19.956227526159656 + 03/18 04:10:00,15.6,15.6,19.963464676203004 + 03/18 04:20:00,15.6,15.6,19.97058490234602 + 03/18 04:30:00,15.6,15.6,19.977537150144518 + 03/18 04:40:00,15.6,15.6,19.98436448133613 + 03/18 04:50:00,15.6,15.6,19.991014117541299 + 03/18 05:00:00,15.6,15.6,19.997625615435195 + 03/18 05:10:00,15.6,15.6,20.004042953903224 + 03/18 05:20:00,15.6,15.6,20.010285042789595 + 03/18 05:30:00,15.6,15.6,20.016319426415725 + 03/18 05:40:00,15.6,15.6,20.022132806827423 + 03/18 05:50:00,15.6,15.6,20.027849874902619 + 03/18 06:00:00,15.6,15.6,20.03344176481902 + 03/18 06:10:00,15.6,15.6,19.37577213066995 + 03/18 06:20:00,15.6,15.6,19.313895521568744 + 03/18 06:30:00,15.6,15.6,19.292581213312578 + 03/18 06:40:00,15.6,15.6,19.27738845853198 + 03/18 06:50:00,15.6,15.6,19.266599095774244 + 03/18 07:00:00,15.6,15.6,19.257759269029998 + 03/18 07:10:00,15.6,15.6,18.165284051731797 + 03/18 07:20:00,15.6,15.6,18.018814454747156 + 03/18 07:30:00,15.6,15.6,17.957067694167784 + 03/18 07:40:00,15.6,15.6,17.906764786536667 + 03/18 07:50:00,15.6,15.6,17.864460100317449 + 03/18 08:00:00,15.6,15.6,17.82702575988667 + 03/18 08:10:00,15.6,15.6,17.79307843989682 + 03/18 08:20:00,15.6,15.6,17.752277186101737 + 03/18 08:30:00,15.6,15.6,17.721862959178475 + 03/18 08:40:00,15.6,15.6,17.692836135462334 + 03/18 08:50:00,15.6,15.6,17.665132318341145 + 03/18 09:00:00,15.6,15.6,17.63872070472464 + 03/18 09:10:00,15.6,15.6,17.61047788392385 + 03/18 09:20:00,15.6,15.6,17.57409836584554 + 03/18 09:30:00,15.6,15.6,17.54735799553943 + 03/18 09:40:00,15.6,15.6,17.521316776394099 + 03/18 09:50:00,15.6,15.6,17.4959968086129 + 03/18 10:00:00,15.6,15.6,17.471394089895705 + 03/18 10:10:00,15.6,15.6,17.448648514380307 + 03/18 10:20:00,15.6,15.6,17.426687799988387 + 03/18 10:30:00,15.6,15.6,17.40534837618349 + 03/18 10:40:00,15.6,15.6,17.384676205819404 + 03/18 10:50:00,15.6,15.6,17.36467471490522 + 03/18 11:00:00,15.6,15.6,17.345329069912095 + 03/18 11:10:00,15.6,15.6,17.327235796890905 + 03/18 11:20:00,15.6,15.6,17.310374888055877 + 03/18 11:30:00,15.6,15.6,17.294348626692565 + 03/18 11:40:00,15.6,15.6,17.279262311140707 + 03/18 11:50:00,15.6,15.6,17.265011759627439 + 03/18 12:00:00,15.6,15.6,17.25154729472151 + 03/18 12:10:00,15.6,15.6,17.2397844707666 + 03/18 12:20:00,15.6,15.6,17.228397317817686 + 03/18 12:30:00,15.6,15.6,17.217564754041807 + 03/18 12:40:00,15.6,15.6,17.207211887913 + 03/18 12:50:00,15.6,15.6,17.197416319232589 + 03/18 13:00:00,15.6,15.6,17.188175879905928 + 03/18 13:10:00,15.6,15.6,17.178506015382106 + 03/18 13:20:00,15.6,15.6,17.169826069298009 + 03/18 13:30:00,15.6,15.6,17.16177424626816 + 03/18 13:40:00,15.6,15.6,17.154461770838759 + 03/18 13:50:00,15.6,15.6,17.147779241653898 + 03/18 14:00:00,15.6,15.6,17.141707565666793 + 03/18 14:10:00,15.553753753753754,15.553753753753754,17.137301045177258 + 03/18 14:20:00,15.507507507507507,15.507507507507507,17.13311137663223 + 03/18 14:30:00,15.46126126126126,15.46126126126126,17.12933874958481 + 03/18 14:40:00,15.415015015015016,15.415015015015016,17.125942016526407 + 03/18 14:50:00,15.368768768768769,15.368768768768769,17.121338532154124 + 03/18 15:00:00,15.322522522522523,15.322522522522523,17.11778133192881 + 03/18 15:10:00,15.297297297297297,15.297297297297297,17.116045722450666 + 03/18 15:20:00,15.272072072072073,15.272072072072073,17.115006241155169 + 03/18 15:30:00,15.246846846846847,15.246846846846847,17.114481509883264 + 03/18 15:40:00,15.22162162162162,15.22162162162162,17.112763650544676 + 03/18 15:50:00,15.196396396396397,15.196396396396397,17.112213841295274 + 03/18 16:00:00,15.17117117117117,15.17117117117117,17.113323923423779 + 03/18 16:10:00,15.196396396396397,15.196396396396397,17.12789547018266 + 03/18 16:20:00,15.22162162162162,15.22162162162162,17.13910322573893 + 03/18 16:30:00,15.246846846846847,15.246846846846847,17.14173822436778 + 03/18 16:40:00,15.272072072072073,15.272072072072073,17.144858048054155 + 03/18 16:50:00,15.297297297297297,15.297297297297297,17.146523522109225 + 03/18 17:00:00,15.322522522522523,15.322522522522523,17.150625232257803 + 03/18 17:10:00,15.322522522522523,15.322522522522523,18.938181461753659 + 03/18 17:20:00,15.322522522522523,15.322522522522523,19.153167564402844 + 03/18 17:30:00,15.322522522522523,15.322522522522523,19.239357496423808 + 03/18 17:40:00,15.322522522522523,15.322522522522523,19.307271474215704 + 03/18 17:50:00,15.322522522522523,15.322522522522523,19.36249937848556 + 03/18 18:00:00,15.322522522522523,15.322522522522523,19.409535617959514 + 03/18 18:10:00,15.393993993993995,15.393993993993995,19.464652144856005 + 03/18 18:20:00,15.465465465465466,15.465465465465466,19.503055511317684 + 03/18 18:30:00,15.536936936936936,15.536936936936936,19.537805136150639 + 03/18 18:40:00,15.6,15.6,19.569772547420184 + 03/18 18:50:00,15.6,15.6,19.599294616229913 + 03/18 19:00:00,15.6,15.6,19.626441255639504 + 03/18 19:10:00,15.6,15.6,19.650458406651315 + 03/18 19:20:00,15.6,15.6,19.672363420086925 + 03/18 19:30:00,15.6,15.6,19.692351627544008 + 03/18 19:40:00,15.6,15.6,19.71071962211672 + 03/18 19:50:00,15.6,15.6,19.727631925737378 + 03/18 20:00:00,15.6,15.6,19.743403400074187 + 03/18 20:10:00,15.6,15.6,19.73580590403687 + 03/18 20:20:00,15.6,15.6,19.750017947259705 + 03/18 20:30:00,15.6,15.6,19.763413281783003 + 03/18 20:40:00,15.6,15.6,19.7760453024067 + 03/18 20:50:00,15.6,15.6,19.788018798389925 + 03/18 21:00:00,15.6,15.6,19.79946764435367 + 03/18 21:10:00,15.6,15.6,19.811355979264524 + 03/18 21:20:00,15.6,15.6,19.822850397535647 + 03/18 21:30:00,15.6,15.6,19.834005452097086 + 03/18 21:40:00,15.6,15.6,19.844815514079519 + 03/18 21:50:00,15.6,15.6,19.855452190953906 + 03/18 22:00:00,15.6,15.6,19.865847600438003 + 03/18 22:10:00,15.6,15.6,19.876099155677357 + 03/18 22:20:00,15.6,15.6,19.88627245579556 + 03/18 22:30:00,15.6,15.6,19.89620137605995 + 03/18 22:40:00,15.6,15.6,19.906117664583009 + 03/18 22:50:00,15.6,15.6,19.91591020296602 + 03/18 23:00:00,15.6,15.6,19.925551488494983 + 03/18 23:10:00,15.6,15.6,19.93456198326024 + 03/18 23:20:00,15.6,15.6,19.94302430541645 + 03/18 23:30:00,15.6,15.6,19.95109089941314 + 03/18 23:40:00,15.6,15.6,19.95871303781337 + 03/18 23:50:00,15.6,15.6,19.96592332776451 + 03/18 24:00:00,15.6,15.6,19.972739907807936 + 03/19 00:10:00,15.6,15.6,19.97939960849348 + 03/19 00:20:00,15.6,15.6,19.985940684398167 + 03/19 00:30:00,15.6,15.6,19.99241274976451 + 03/19 00:40:00,15.6,15.6,19.998799603927905 + 03/19 00:50:00,15.6,15.6,20.00508862710307 + 03/19 01:00:00,15.6,15.6,20.01124501102882 + 03/19 01:10:00,15.6,15.6,20.0172608073446 + 03/19 01:20:00,15.6,15.6,20.023228841520007 + 03/19 01:30:00,15.6,15.6,20.029091920985516 + 03/19 01:40:00,15.6,15.6,20.034846673086216 + 03/19 01:50:00,15.6,15.6,20.040494541158233 + 03/19 02:00:00,15.6,15.6,20.045950533255924 + 03/19 02:10:00,15.6,15.6,20.050345897849259 + 03/19 02:20:00,15.6,15.6,20.054582023676013 + 03/19 02:30:00,15.6,15.6,20.058707763427848 + 03/19 02:40:00,15.6,15.6,20.062710186199593 + 03/19 02:50:00,15.6,15.6,20.066526292723294 + 03/19 03:00:00,15.6,15.6,20.07031777415969 + 03/19 03:10:00,15.6,15.6,20.075207040192706 + 03/19 03:20:00,15.6,15.6,20.080287647706507 + 03/19 03:30:00,15.6,15.6,20.085427738200907 + 03/19 03:40:00,15.6,15.6,20.090626138313476 + 03/19 03:50:00,15.6,15.6,20.095902961135985 + 03/19 04:00:00,15.6,15.6,20.101262034081107 + 03/19 04:10:00,15.6,15.6,20.104185289061424 + 03/19 04:20:00,15.6,15.6,20.10694453521446 + 03/19 04:30:00,15.6,15.6,20.109561595109918 + 03/19 04:40:00,15.6,15.6,20.112030488003965 + 03/19 04:50:00,15.6,15.6,20.114519819499188 + 03/19 05:00:00,15.6,15.6,20.117124491257234 + 03/19 05:10:00,15.6,15.6,20.1220657216781 + 03/19 05:20:00,15.6,15.6,20.127070922968398 + 03/19 05:30:00,15.6,15.6,20.13192024653148 + 03/19 05:40:00,15.6,15.6,20.136756864742109 + 03/19 05:50:00,15.6,15.6,20.14146211929459 + 03/19 06:00:00,15.6,15.6,20.146034758044498 + 03/19 06:10:00,15.6,15.6,20.173142650489568 + 03/19 06:20:00,15.6,15.6,20.177368399849507 + 03/19 06:30:00,15.6,15.6,20.18155087582791 + 03/19 06:40:00,15.6,15.6,20.18562864177226 + 03/19 06:50:00,15.6,15.6,20.189437603915726 + 03/19 07:00:00,15.6,15.6,20.19220383040463 + 03/19 07:10:00,15.6,15.6,18.788761285602033 + 03/19 07:20:00,15.6,15.6,18.625560015357505 + 03/19 07:30:00,15.6,15.6,18.561045834212437 + 03/19 07:40:00,15.6,15.6,18.50851766362284 + 03/19 07:50:00,15.6,15.6,18.464269299136615 + 03/19 08:00:00,15.6,15.6,18.42509454597383 + 03/19 08:10:00,15.6,15.6,18.38821476780473 + 03/19 08:20:00,15.6,15.6,18.34415321882229 + 03/19 08:30:00,15.6,15.6,18.3103212337919 + 03/19 08:40:00,15.6,15.6,18.2778786559185 + 03/19 08:50:00,15.6,15.6,18.246766613487727 + 03/19 09:00:00,15.6,15.6,18.216927164995604 + 03/19 09:10:00,15.6,15.6,18.188206276121926 + 03/19 09:20:00,15.6,15.6,18.151920240317609 + 03/19 09:30:00,15.6,15.6,18.12553979509004 + 03/19 09:40:00,15.6,15.6,18.100357973292103 + 03/19 09:50:00,15.6,15.6,18.07625891927836 + 03/19 10:00:00,15.6,15.6,18.053148666844739 + 03/19 10:10:00,15.6,15.6,18.02888489866212 + 03/19 10:20:00,15.6,15.6,18.005889598901587 + 03/19 10:30:00,15.6,15.6,17.983645188352538 + 03/19 10:40:00,15.6,15.6,17.962118145718909 + 03/19 10:50:00,15.6,15.6,17.94138797991087 + 03/19 11:00:00,15.6,15.6,17.92135716709611 + 03/19 11:10:00,15.6,15.6,17.903237718593784 + 03/19 11:20:00,15.557957957957957,15.557957957957957,17.885673102636269 + 03/19 11:30:00,15.46126126126126,15.46126126126126,17.86879304519789 + 03/19 11:40:00,15.364564564564564,15.364564564564564,17.85253834925257 + 03/19 11:50:00,15.267867867867868,15.267867867867868,17.83686840977353 + 03/19 12:00:00,15.17117117117117,15.17117117117117,17.8219859032099 + 03/19 12:10:00,15.124924924924925,15.124924924924925,17.806211753718988 + 03/19 12:20:00,15.078678678678678,15.078678678678678,17.7907715121815 + 03/19 12:30:00,15.032432432432433,15.032432432432433,17.77575792738395 + 03/19 12:40:00,14.986186186186187,14.986186186186187,17.761156659769644 + 03/19 12:50:00,14.93993993993994,14.93993993993994,17.746952415647827 + 03/19 13:00:00,14.893693693693694,14.893693693693694,17.73306289917039 + 03/19 13:10:00,14.8012012012012,14.8012012012012,17.720971571852986 + 03/19 13:20:00,14.70870870870871,14.70870870870871,17.709862853551358 + 03/19 13:30:00,14.616216216216217,14.616216216216217,17.699420398361839 + 03/19 13:40:00,14.523723723723723,14.523723723723723,17.68984415518583 + 03/19 13:50:00,14.431231231231232,14.431231231231232,17.68104164569808 + 03/19 14:00:00,14.338738738738739,14.338738738738739,17.672916098909217 + 03/19 14:10:00,14.292492492492493,14.292492492492493,17.666740095082866 + 03/19 14:20:00,14.246246246246246,14.246246246246246,17.661579367512365 + 03/19 14:30:00,14.2,14.2,17.657486692337434 + 03/19 14:40:00,14.153753753753755,14.153753753753755,17.654229191160064 + 03/19 14:50:00,14.107507507507508,14.107507507507508,17.65190634021541 + 03/19 15:00:00,14.061261261261262,14.061261261261262,17.650335394736435 + 03/19 15:10:00,14.036036036036036,14.036036036036036,19.088532450448388 + 03/19 15:20:00,14.01081081081081,14.01081081081081,19.239465704429674 + 03/19 15:30:00,13.985585585585586,13.985585585585586,19.301897176373055 + 03/19 15:40:00,13.960360360360362,13.960360360360362,19.350168398312783 + 03/19 15:50:00,13.935135135135136,13.935135135135136,19.388374421689588 + 03/19 16:00:00,13.90990990990991,13.90990990990991,19.42003177603128 + 03/19 16:10:00,13.90990990990991,13.90990990990991,19.448317227419677 + 03/19 16:20:00,13.90990990990991,13.90990990990991,19.482523603561007 + 03/19 16:30:00,13.90990990990991,13.90990990990991,19.505738934993077 + 03/19 16:40:00,13.90990990990991,13.90990990990991,19.52739465316138 + 03/19 16:50:00,13.90990990990991,13.90990990990991,19.54797402870797 + 03/19 17:00:00,13.90990990990991,13.90990990990991,19.56770950239009 + 03/19 17:10:00,13.935135135135136,13.935135135135136,19.58690883584895 + 03/19 17:20:00,13.960360360360362,13.960360360360362,19.622979234795439 + 03/19 17:30:00,13.985585585585586,13.985585585585586,19.640716015906869 + 03/19 17:40:00,14.010810810810812,14.010810810810812,19.658188893777259 + 03/19 17:50:00,14.036036036036038,14.036036036036038,19.67551912530306 + 03/19 18:00:00,14.061261261261262,14.061261261261262,19.692835073066964 + 03/19 18:10:00,14.107507507507508,14.107507507507508,19.710033386867605 + 03/19 18:20:00,14.153753753753755,14.153753753753755,19.726874457968589 + 03/19 18:30:00,14.2,14.2,19.743355990002017 + 03/19 18:40:00,14.246246246246246,14.246246246246246,19.759271375451367 + 03/19 18:50:00,14.292492492492493,14.292492492492493,19.774642694208255 + 03/19 19:00:00,14.338738738738739,14.338738738738739,19.789298986819813 + 03/19 19:10:00,14.363963963963965,14.363963963963965,19.80259088752838 + 03/19 19:20:00,14.389189189189189,14.389189189189189,19.814671083733445 + 03/19 19:30:00,14.414414414414415,14.414414414414415,19.82561795441287 + 03/19 19:40:00,14.439639639639639,14.439639639639639,19.835604815316768 + 03/19 19:50:00,14.464864864864865,14.464864864864865,19.844862765499504 + 03/19 20:00:00,14.49009009009009,14.49009009009009,19.853467240491275 + 03/19 20:10:00,14.536336336336337,14.536336336336337,19.839426135505886 + 03/19 20:20:00,14.582582582582582,14.582582582582582,19.847710639199396 + 03/19 20:30:00,14.628828828828829,14.628828828828829,19.855608148446348 + 03/19 20:40:00,14.675075075075075,14.675075075075075,19.86333410465599 + 03/19 20:50:00,14.721321321321322,14.721321321321322,19.870813845562045 + 03/19 21:00:00,14.767567567567568,14.767567567567568,19.878078975264903 + 03/19 21:10:00,14.813813813813815,14.813813813813815,19.884330890190648 + 03/19 21:20:00,14.860060060060059,14.860060060060059,19.890329795363095 + 03/19 21:30:00,14.906306306306306,14.906306306306306,19.896306059626054 + 03/19 21:40:00,14.952552552552552,14.952552552552552,19.90217559941262 + 03/19 21:50:00,14.998798798798799,14.998798798798799,19.907942940830535 + 03/19 22:00:00,15.045045045045045,15.045045045045045,19.913611862498713 + 03/19 22:10:00,15.112312312312313,15.112312312312313,19.919551532281767 + 03/19 22:20:00,15.17957957957958,15.17957957957958,19.925557611299074 + 03/19 22:30:00,15.246846846846847,15.246846846846847,19.93155344019864 + 03/19 22:40:00,15.314114114114114,15.314114114114114,19.93752881159073 + 03/19 22:50:00,15.381381381381381,15.381381381381381,19.94346262171127 + 03/19 23:00:00,15.448648648648648,15.448648648648648,19.949295226179279 + 03/19 23:10:00,15.52012012012012,15.52012012012012,19.95450107013235 + 03/19 23:20:00,15.591591591591591,15.591591591591591,19.959727128055556 + 03/19 23:30:00,15.6,15.6,19.964940862113857 + 03/19 23:40:00,15.6,15.6,19.970138799864736 + 03/19 23:50:00,15.6,15.6,19.975288447114758 + 03/19 24:00:00,15.6,15.6,19.98037473744298 + 03/20 00:10:00,15.6,15.6,19.985965620654537 + 03/20 00:20:00,15.6,15.6,19.991306514704399 + 03/20 00:30:00,15.6,15.6,19.9964555333201 + 03/20 00:40:00,15.6,15.6,20.00139993401669 + 03/20 00:50:00,15.6,15.6,20.006115115512104 + 03/20 01:00:00,15.6,15.6,20.010753069368616 + 03/20 01:10:00,15.6,15.6,20.014409448130935 + 03/20 01:20:00,15.6,15.6,20.01793079274149 + 03/20 01:30:00,15.6,15.6,20.021323230546856 + 03/20 01:40:00,15.6,15.6,20.024512133428915 + 03/20 01:50:00,15.6,15.6,20.027667919368029 + 03/20 02:00:00,15.6,15.6,20.030747925795504 + 03/20 02:10:00,15.6,15.6,20.034635035084734 + 03/20 02:20:00,15.6,15.6,20.038511928631335 + 03/20 02:30:00,15.6,15.6,20.04234341878776 + 03/20 02:40:00,15.6,15.6,20.046219220792758 + 03/20 02:50:00,15.6,15.6,20.050154476916089 + 03/20 03:00:00,15.6,15.6,20.05410208252846 + 03/20 03:10:00,15.6,15.6,20.05795754079319 + 03/20 03:20:00,15.6,15.6,20.06172066126979 + 03/20 03:30:00,15.6,15.6,20.065380104823775 + 03/20 03:40:00,15.6,15.6,20.06902450476408 + 03/20 03:50:00,15.6,15.6,20.072590605215298 + 03/20 04:00:00,15.6,15.6,20.076084322883657 + 03/20 04:10:00,15.6,15.6,20.078791947216744 + 03/20 04:20:00,15.6,15.6,20.08166014883225 + 03/20 04:30:00,15.6,15.6,20.084722612815335 + 03/20 04:40:00,15.6,15.6,20.087951493006466 + 03/20 04:50:00,15.6,15.6,20.091255976450975 + 03/20 05:00:00,15.6,15.6,20.094659773666867 + 03/20 05:10:00,15.6,15.6,20.098813639638317 + 03/20 05:20:00,15.6,15.6,20.10286074834685 + 03/20 05:30:00,15.6,15.6,20.10673485988569 + 03/20 05:40:00,15.6,15.6,20.110388824323996 + 03/20 05:50:00,15.6,15.6,20.113855720847686 + 03/20 06:00:00,15.6,15.6,20.11708458631839 + 03/20 06:10:00,15.6,15.6,18.106338697166966 + 03/20 06:20:00,15.6,15.6,17.873443995061476 + 03/20 06:30:00,15.6,15.6,17.786907057373037 + 03/20 06:40:00,15.6,15.6,17.719292900543896 + 03/20 06:50:00,15.6,15.6,17.665648468347194 + 03/20 07:00:00,15.6,15.6,17.620693598630579 + 03/20 07:10:00,15.6,15.6,16.129646360954465 + 03/20 07:20:00,15.6,15.6,15.908417054762046 + 03/20 07:30:00,15.6,15.6,15.802754788348704 + 03/20 07:40:00,15.6,15.6,15.715191615670193 + 03/20 07:50:00,15.6,15.6,15.641052828581645 + 03/20 08:00:00,15.6,15.6,15.575603751917642 + 03/20 08:10:00,15.6,15.6,15.490493215345161 + 03/20 08:20:00,15.6,15.6,15.42740110177357 + 03/20 08:30:00,15.6,15.6,15.37505517588852 + 03/20 08:40:00,15.6,15.6,15.325279844398012 + 03/20 08:50:00,15.6,15.6,15.277843296849344 + 03/20 09:00:00,15.6,15.6,15.232555483173105 + 03/20 09:10:00,15.6,15.6,15.1889788311457 + 03/20 09:20:00,15.6,15.6,15.136434236060103 + 03/20 09:30:00,15.6,15.6,15.095835949844555 + 03/20 09:40:00,15.457057057057057,15.457057057057057,15.056628455513922 + 03/20 09:50:00,15.314114114114114,15.314114114114114,15.018912124089569 + 03/20 10:00:00,15.17117117117117,15.17117117117117,14.982797543974439 + 03/20 10:10:00,15.032432432432433,15.032432432432433,14.94851400760307 + 03/20 10:20:00,14.893693693693694,14.893693693693694,14.910901602264345 + 03/20 10:30:00,14.754954954954956,14.754954954954956,14.877891417798932 + 03/20 10:40:00,14.616216216216217,14.616216216216217,14.845965427823274 + 03/20 10:50:00,14.477477477477479,14.477477477477479,14.817121819271853 + 03/20 11:00:00,14.338738738738739,14.338738738738739,14.78654418136183 + 03/20 11:10:00,14.221021021021022,14.221021021021022,14.757618784642457 + 03/20 11:20:00,14.103303303303303,14.103303303303303,14.740541799144209 + 03/20 11:30:00,13.985585585585586,13.985585585585586,14.713938734612093 + 03/20 11:40:00,13.867867867867869,13.867867867867869,14.690333389407226 + 03/20 11:50:00,13.750150150150152,13.750150150150152,14.665674041876248 + 03/20 12:00:00,13.632432432432433,13.632432432432433,14.642729006514197 + 03/20 12:10:00,13.611411411411412,13.611411411411412,14.622648047689248 + 03/20 12:20:00,13.590390390390392,13.590390390390392,14.590690863349222 + 03/20 12:30:00,13.56936936936937,13.56936936936937,14.572261281116968 + 03/20 12:40:00,13.548348348348349,13.548348348348349,14.552928879339517 + 03/20 12:50:00,13.527327327327328,13.527327327327328,14.53618514410659 + 03/20 13:00:00,13.506306306306307,13.506306306306307,14.51963272929129 + 03/20 13:10:00,13.481081081081081,13.481081081081081,14.503725993239984 + 03/20 13:20:00,13.455855855855857,13.455855855855857,14.49304323220421 + 03/20 13:30:00,13.430630630630632,13.430630630630632,14.478258600189787 + 03/20 13:40:00,13.405405405405407,13.405405405405407,14.466227209108502 + 03/20 13:50:00,13.380180180180182,13.380180180180182,14.451522937375956 + 03/20 14:00:00,13.354954954954956,13.354954954954956,14.440509674560584 + 03/20 14:10:00,13.30870870870871,13.30870870870871,14.428612895334022 + 03/20 14:20:00,13.262462462462464,13.262462462462464,14.421840971409362 + 03/20 14:30:00,13.216216216216218,13.216216216216218,14.412902603670024 + 03/20 14:40:00,13.169969969969971,13.169969969969971,14.402728201091977 + 03/20 14:50:00,13.123723723723725,13.123723723723725,14.396630107095972 + 03/20 15:00:00,13.077477477477478,13.077477477477478,14.389948085517027 + 03/20 15:05:00,13.077477477477478,13.077477477477478,16.558631407478118 + 03/20 15:10:00,13.077477477477478,13.077477477477478,16.557641591135626 + 03/20 15:20:00,13.077477477477478,13.077477477477478,16.808946342807436 + 03/20 15:30:00,13.077477477477478,13.077477477477478,16.906186592359199 + 03/20 15:40:00,13.077477477477478,13.077477477477478,16.981473516382 + 03/20 15:50:00,13.077477477477478,13.077477477477478,17.04214296015799 + 03/20 16:00:00,13.077477477477478,13.077477477477478,17.092320151423527 + 03/20 16:10:00,13.102702702702704,13.102702702702704,17.15957481513127 + 03/20 16:20:00,13.127927927927928,13.127927927927928,17.21750705318196 + 03/20 16:30:00,13.153153153153154,13.153153153153154,17.251280784848015 + 03/20 16:40:00,13.17837837837838,13.17837837837838,17.281601611646658 + 03/20 16:50:00,13.203603603603604,13.203603603603604,17.309188876165594 + 03/20 17:00:00,13.22882882882883,13.22882882882883,17.33447521396914 + 03/20 17:10:00,13.24984984984985,13.24984984984985,17.370945501320536 + 03/20 17:20:00,13.270870870870871,13.270870870870871,17.39841625977541 + 03/20 17:30:00,13.291891891891894,13.291891891891894,17.4188647667809 + 03/20 17:40:00,13.312912912912914,13.312912912912914,17.438076176397858 + 03/20 17:50:00,13.333933933933935,13.333933933933935,17.456195859919974 + 03/20 18:00:00,13.354954954954956,13.354954954954956,17.4733617820824 + 03/20 18:10:00,13.401201201201202,13.401201201201202,17.489954215584186 + 03/20 18:20:00,13.447447447447449,13.447447447447449,17.50643956449728 + 03/20 18:30:00,13.493693693693695,13.493693693693695,17.522263533672687 + 03/20 18:40:00,13.539939939939942,13.539939939939942,17.53745576304891 + 03/20 18:50:00,13.586186186186187,13.586186186186187,17.551640631903035 + 03/20 19:00:00,13.632432432432433,13.632432432432433,17.56470569982146 + 03/20 19:10:00,13.67867867867868,13.67867867867868,17.58994411657782 + 03/20 19:20:00,13.724924924924924,13.724924924924924,17.602640420614756 + 03/20 19:30:00,13.771171171171173,13.771171171171173,17.61418286292976 + 03/20 19:40:00,13.817417417417419,13.817417417417419,17.62514776072745 + 03/20 19:50:00,13.863663663663666,13.863663663663666,17.635493749152344 + 03/20 20:00:00,13.90990990990991,13.90990990990991,17.645330760836033 + 03/20 20:10:00,13.935135135135136,13.935135135135136,17.631982264400326 + 03/20 20:20:00,13.960360360360362,13.960360360360362,17.644537854277134 + 03/20 20:30:00,13.985585585585586,13.985585585585586,17.65235685220506 + 03/20 20:40:00,14.010810810810812,14.010810810810812,17.65975715520989 + 03/20 20:50:00,14.036036036036038,14.036036036036038,17.66692708999642 + 03/20 21:00:00,14.061261261261262,14.061261261261262,17.673854119060314 + 03/20 21:10:00,14.082282282282283,14.082282282282283,17.680517922651754 + 03/20 21:20:00,14.103303303303303,14.103303303303303,17.686570282962216 + 03/20 21:30:00,14.124324324324324,14.124324324324324,17.692459438279696 + 03/20 21:40:00,14.145345345345346,14.145345345345346,17.698066017184769 + 03/20 21:50:00,14.166366366366367,14.166366366366367,17.703467093545208 + 03/20 22:00:00,14.187387387387388,14.187387387387388,17.70875603935729 + 03/20 22:10:00,14.212612612612613,14.212612612612613,19.087207945006374 + 03/20 22:20:00,14.237837837837838,14.237837837837838,19.23139286893972 + 03/20 22:30:00,14.263063063063063,14.263063063063063,19.294970344758025 + 03/20 22:40:00,14.288288288288289,14.288288288288289,19.344887913243466 + 03/20 22:50:00,14.313513513513513,14.313513513513513,19.38529902649627 + 03/20 23:00:00,14.338738738738739,14.338738738738739,19.41932570534766 + 03/20 23:10:00,14.338738738738739,14.338738738738739,19.44883444028128 + 03/20 23:20:00,14.338738738738739,14.338738738738739,19.47489806706225 + 03/20 23:30:00,14.338738738738739,14.338738738738739,19.49814862209857 + 03/20 23:40:00,14.338738738738739,14.338738738738739,19.51926661308194 + 03/20 23:50:00,14.338738738738739,14.338738738738739,19.538577502319158 + 03/20 24:00:00,14.338738738738739,14.338738738738739,19.55635244307588 + 03/21 00:10:00,14.338738738738739,14.338738738738739,19.572858142068367 + 03/21 00:20:00,14.338738738738739,14.338738738738739,19.588373189510059 + 03/21 00:30:00,14.338738738738739,14.338738738738739,19.602942103364794 + 03/21 00:40:00,14.338738738738739,14.338738738738739,19.616756774530989 + 03/21 00:50:00,14.338738738738739,14.338738738738739,19.62982065763547 + 03/21 01:00:00,14.338738738738739,14.338738738738739,19.642208983053317 + 03/21 01:10:00,14.363963963963965,14.363963963963965,19.654286128171547 + 03/21 01:20:00,14.389189189189189,14.389189189189189,19.66643522621819 + 03/21 01:30:00,14.414414414414415,14.414414414414415,19.67826899815343 + 03/21 01:40:00,14.439639639639639,14.439639639639639,19.689879177732899 + 03/21 01:50:00,14.464864864864865,14.464864864864865,19.701134408780598 + 03/21 02:00:00,14.49009009009009,14.49009009009009,19.711959254351535 + 03/21 02:10:00,14.536336336336337,14.536336336336337,19.721089416772608 + 03/21 02:20:00,14.582582582582582,14.582582582582582,19.72943261944218 + 03/21 02:30:00,14.628828828828829,14.628828828828829,19.737593450966988 + 03/21 02:40:00,14.675075075075075,14.675075075075075,19.74528681811051 + 03/21 02:50:00,14.721321321321322,14.721321321321322,19.75283833923181 + 03/21 03:00:00,14.767567567567568,14.767567567567568,19.760000638067909 + 03/21 03:10:00,14.767567567567568,14.767567567567568,19.768407921685417 + 03/21 03:20:00,14.767567567567568,14.767567567567568,19.77650368146875 + 03/21 03:30:00,14.767567567567568,14.767567567567568,19.784363339176037 + 03/21 03:40:00,14.767567567567568,14.767567567567568,19.79191321451018 + 03/21 03:50:00,14.767567567567568,14.767567567567568,19.799087218547667 + 03/21 04:00:00,14.767567567567568,14.767567567567568,19.806022359648293 + 03/21 04:10:00,14.834834834834835,14.834834834834835,19.813099930136209 + 03/21 04:20:00,14.902102102102102,14.902102102102102,19.82075064224098 + 03/21 04:30:00,14.96936936936937,14.96936936936937,19.828456587463348 + 03/21 04:40:00,15.036636636636637,15.036636636636637,19.836339845916379 + 03/21 04:50:00,15.103903903903904,15.103903903903904,19.84420068672855 + 03/21 05:00:00,15.17117117117117,15.17117117117117,19.852078392293618 + 03/21 05:10:00,15.217417417417418,15.217417417417418,19.858931419999125 + 03/21 05:20:00,15.263663663663664,15.263663663663664,19.865506422665868 + 03/21 05:30:00,15.30990990990991,15.30990990990991,19.8718276045555 + 03/21 05:40:00,15.356156156156157,15.356156156156157,19.877934368092875 + 03/21 05:50:00,15.402402402402402,15.402402402402402,19.883915242151994 + 03/21 06:00:00,15.448648648648648,15.448648648648648,19.889817640773545 + 03/21 06:10:00,15.448648648648648,15.448648648648648,17.8885987700139 + 03/21 06:20:00,15.448648648648648,15.448648648648648,17.65918286179382 + 03/21 06:30:00,15.448648648648648,15.448648648648648,17.576934111911624 + 03/21 06:40:00,15.448648648648648,15.448648648648648,17.513764607676689 + 03/21 06:50:00,15.448648648648648,15.448648648648648,17.464764022097194 + 03/21 07:00:00,15.448648648648648,15.448648648648648,17.42501275966885 + 03/21 07:10:00,15.448648648648648,15.448648648648648,15.946914114722878 + 03/21 07:20:00,15.448648648648648,15.448648648648648,15.73209292655279 + 03/21 07:30:00,15.448648648648648,15.448648648648648,15.633228769432263 + 03/21 07:40:00,15.448648648648648,15.448648648648648,15.55281189695339 + 03/21 07:50:00,15.448648648648648,15.448648648648648,15.486407090321823 + 03/21 08:00:00,15.448648648648648,15.448648648648648,15.429521385168952 + 03/21 08:10:00,15.448648648648648,15.448648648648648,15.354035264676114 + 03/21 08:20:00,15.448648648648648,15.448648648648648,15.302218899205967 + 03/21 08:30:00,15.448648648648648,15.448648648648648,15.262538697393487 + 03/21 08:40:00,15.448648648648648,15.448648648648648,15.226576857487494 + 03/21 08:50:00,15.448648648648648,15.448648648648648,15.193569313944842 + 03/21 09:00:00,15.448648648648648,15.448648648648648,15.163103482358244 + 03/21 09:10:00,15.427627627627628,15.427627627627628,15.134102869392015 + 03/21 09:20:00,15.406606606606607,15.406606606606607,15.096783352979538 + 03/21 09:30:00,15.385585585585586,15.385585585585586,15.071584796303803 + 03/21 09:40:00,15.364564564564564,15.364564564564564,15.047548973675168 + 03/21 09:50:00,15.343543543543543,15.343543543543543,15.023732893222757 + 03/21 10:00:00,15.322522522522523,15.322522522522523,14.99998399508937 + 03/21 10:10:00,15.297297297297297,15.297297297297297,14.976767519086146 + 03/21 10:20:00,15.272072072072073,15.272072072072073,14.951238556284605 + 03/21 10:30:00,15.246846846846847,15.246846846846847,14.92660334047502 + 03/21 10:40:00,15.22162162162162,15.22162162162162,14.903906538069732 + 03/21 10:50:00,15.196396396396397,15.196396396396397,14.881652798355152 + 03/21 11:00:00,15.17117117117117,15.17117117117117,14.861129122907795 + 03/21 11:10:00,15.124924924924925,15.124924924924925,14.840819240640212 + 03/21 11:20:00,15.078678678678678,15.078678678678678,14.829951000084185 + 03/21 11:30:00,15.032432432432433,15.032432432432433,14.812411132414116 + 03/21 11:40:00,14.986186186186187,14.986186186186187,14.793561506386637 + 03/21 11:50:00,14.93993993993994,14.93993993993994,14.777255449781102 + 03/21 12:00:00,14.893693693693694,14.893693693693694,14.763324939496917 + 03/21 12:10:00,14.893693693693694,14.893693693693694,14.749086239561205 + 03/21 12:20:00,14.893693693693694,14.893693693693694,14.730355510826416 + 03/21 12:30:00,14.893693693693694,14.893693693693694,14.720901075564333 + 03/21 12:40:00,14.893693693693694,14.893693693693694,14.712732029042666 + 03/21 12:50:00,14.893693693693694,14.893693693693694,14.705186899461229 + 03/21 13:00:00,14.893693693693694,14.893693693693694,14.697016582010086 + 03/21 13:10:00,14.893693693693694,14.893693693693694,14.69072623694274 + 03/21 13:20:00,14.893693693693694,14.893693693693694,14.685325852756363 + 03/21 13:30:00,14.893693693693694,14.893693693693694,14.679380061938833 + 03/21 13:40:00,14.893693693693694,14.893693693693694,14.670450104761378 + 03/21 13:50:00,14.893693693693694,14.893693693693694,14.664522948272149 + 03/21 14:00:00,14.893693693693694,14.893693693693694,14.657423848718489 + 03/21 14:10:00,14.893693693693694,14.893693693693694,14.649463242262572 + 03/21 14:20:00,14.893693693693694,14.893693693693694,14.646920314645639 + 03/21 14:30:00,14.893693693693694,14.893693693693694,14.638629984993628 + 03/21 14:40:00,14.893693693693694,14.893693693693694,14.633438708436652 + 03/21 14:50:00,14.893693693693694,14.893693693693694,14.62696369690887 + 03/21 15:00:00,14.893693693693694,14.893693693693694,14.621249706020727 + 03/21 15:05:00,14.91891891891892,14.91891891891892,16.76973400614964 + 03/21 15:10:00,14.91891891891892,14.91891891891892,16.768600002654535 + 03/21 15:20:00,14.944144144144144,14.944144144144144,17.013997356841544 + 03/21 15:30:00,14.96936936936937,14.96936936936937,17.113000484834818 + 03/21 15:40:00,14.994594594594595,14.994594594594595,17.188923481648169 + 03/21 15:50:00,15.01981981981982,15.01981981981982,17.247507947454414 + 03/21 16:00:00,15.045045045045045,15.045045045045045,17.295129694052485 + 03/21 16:10:00,15.045045045045045,15.045045045045045,17.362441341856856 + 03/21 16:20:00,15.045045045045045,15.045045045045045,17.41749043908157 + 03/21 16:30:00,15.045045045045045,15.045045045045045,17.448488381015474 + 03/21 16:40:00,15.045045045045045,15.045045045045045,17.475870354656164 + 03/21 16:50:00,15.045045045045045,15.045045045045045,17.500719432823958 + 03/21 17:00:00,15.045045045045045,15.045045045045045,17.523487288387764 + 03/21 17:10:00,15.045045045045045,15.045045045045045,17.5571122909723 + 03/21 17:20:00,15.045045045045045,15.045045045045045,17.58188125064995 + 03/21 17:30:00,15.045045045045045,15.045045045045045,17.600009875791664 + 03/21 17:40:00,15.045045045045045,15.045045045045045,17.616979086052387 + 03/21 17:50:00,15.045045045045045,15.045045045045045,17.632943654034017 + 03/21 18:00:00,15.045045045045045,15.045045045045045,17.64797778134094 + 03/21 18:10:00,15.066066066066066,15.066066066066066,17.660674902120456 + 03/21 18:20:00,15.087087087087087,15.087087087087087,17.672536220248309 + 03/21 18:30:00,15.108108108108109,15.108108108108109,17.6836723365373 + 03/21 18:40:00,15.12912912912913,15.12912912912913,17.694172374595405 + 03/21 18:50:00,15.15015015015015,15.15015015015015,17.704399829806474 + 03/21 19:00:00,15.17117117117117,15.17117117117117,17.71415559920583 + 03/21 19:10:00,15.196396396396397,15.196396396396397,17.737479812575275 + 03/21 19:20:00,15.22162162162162,15.22162162162162,17.747769701007767 + 03/21 19:30:00,15.246846846846847,15.246846846846847,17.75712373748256 + 03/21 19:40:00,15.272072072072073,15.272072072072073,17.765949184440264 + 03/21 19:50:00,15.297297297297297,15.297297297297297,17.774299071708727 + 03/21 20:00:00,15.322522522522523,15.322522522522523,17.78219066759287 + 03/21 20:10:00,15.322522522522523,15.322522522522523,17.7669482409561 + 03/21 20:20:00,15.322522522522523,15.322522522522523,17.778392209034423 + 03/21 20:30:00,15.322522522522523,15.322522522522523,17.785150891090024 + 03/21 20:40:00,15.322522522522523,15.322522522522523,17.791698410513054 + 03/21 20:50:00,15.322522522522523,15.322522522522523,17.797950199545558 + 03/21 21:00:00,15.322522522522523,15.322522522522523,17.80391773400614 + 03/21 21:10:00,15.343543543543543,15.343543543543543,17.811080707651639 + 03/21 21:20:00,15.364564564564564,15.364564564564564,17.817986601260406 + 03/21 21:30:00,15.385585585585586,15.385585585585586,17.824774753696859 + 03/21 21:40:00,15.406606606606607,15.406606606606607,17.831465568914355 + 03/21 21:50:00,15.427627627627628,15.427627627627628,17.838023798616214 + 03/21 22:00:00,15.448648648648648,15.448648648648648,17.844455943229677 + 03/21 22:10:00,15.52012012012012,15.52012012012012,19.21337332650728 + 03/21 22:20:00,15.591591591591591,15.591591591591591,19.356752230012935 + 03/21 22:30:00,15.6,15.6,19.42066382995344 + 03/21 22:40:00,15.6,15.6,19.471354240827649 + 03/21 22:50:00,15.6,15.6,19.512571580536329 + 03/21 23:00:00,15.6,15.6,19.54740609751825 + 03/21 23:10:00,15.6,15.6,19.577193171570735 + 03/21 23:20:00,15.6,15.6,19.603820273233894 + 03/21 23:30:00,15.6,15.6,19.627786388432367 + 03/21 23:40:00,15.6,15.6,19.64963282723508 + 03/21 23:50:00,15.6,15.6,19.66968799380765 + 03/21 24:00:00,15.6,15.6,19.68814948320826 + 03/22 00:10:00,15.6,15.6,19.705433400401966 + 03/22 00:20:00,15.6,15.6,19.721453480959185 + 03/22 00:30:00,15.6,15.6,19.736420847757139 + 03/22 00:40:00,15.6,15.6,19.750432266675217 + 03/22 00:50:00,15.6,15.6,19.763537628031675 + 03/22 01:00:00,15.6,15.6,19.775989391351759 + 03/22 01:10:00,15.6,15.6,19.785196841909895 + 03/22 01:20:00,15.6,15.6,19.793999775960299 + 03/22 01:30:00,15.6,15.6,19.802373865524339 + 03/22 01:40:00,15.6,15.6,19.810332975429309 + 03/22 01:50:00,15.6,15.6,19.817957085608655 + 03/22 02:00:00,15.6,15.6,19.825283024214185 + 03/22 02:10:00,15.6,15.6,19.83809058218217 + 03/22 02:20:00,15.6,15.6,19.85063199323058 + 03/22 02:30:00,15.6,15.6,19.86289099206386 + 03/22 02:40:00,15.6,15.6,19.874893580128679 + 03/22 02:50:00,15.6,15.6,19.886750378290313 + 03/22 03:00:00,15.6,15.6,19.898412113997808 + 03/22 03:10:00,15.6,15.6,19.90575656321383 + 03/22 03:20:00,15.6,15.6,19.91288201766035 + 03/22 03:30:00,15.6,15.6,19.919728613287185 + 03/22 03:40:00,15.6,15.6,19.926472339733665 + 03/22 03:50:00,15.6,15.6,19.93302726783327 + 03/22 04:00:00,15.6,15.6,19.93940008789269 + 03/22 04:10:00,15.6,15.6,19.946533284607324 + 03/22 04:20:00,15.6,15.6,19.953399567066684 + 03/22 04:30:00,15.6,15.6,19.96020050881192 + 03/22 04:40:00,15.6,15.6,19.96686104740631 + 03/22 04:50:00,15.6,15.6,19.973380818709449 + 03/22 05:00:00,15.6,15.6,19.979765768304416 + 03/22 05:10:00,15.6,15.6,19.98508367198988 + 03/22 05:20:00,15.6,15.6,19.990247524294185 + 03/22 05:30:00,15.6,15.6,19.995296225006837 + 03/22 05:40:00,15.6,15.6,20.0001865937709 + 03/22 05:50:00,15.6,15.6,20.004939722157503 + 03/22 06:00:00,15.6,15.6,20.009517182243557 + 03/22 06:10:00,15.6,15.6,18.001814905017839 + 03/22 06:20:00,15.6,15.6,17.768167701840107 + 03/22 06:30:00,15.6,15.6,17.68197298270215 + 03/22 06:40:00,15.6,15.6,17.61505870855498 + 03/22 06:50:00,15.6,15.6,17.562619094209624 + 03/22 07:00:00,15.6,15.6,17.519092588888268 + 03/22 07:10:00,15.6,15.6,16.03460847721057 + 03/22 07:20:00,15.6,15.6,15.817743153912533 + 03/22 07:30:00,15.6,15.6,15.716820429838722 + 03/22 07:40:00,15.6,15.6,15.634465921509579 + 03/22 07:50:00,15.6,15.6,15.56656670446196 + 03/22 08:00:00,15.6,15.6,15.508589485949337 + 03/22 08:10:00,15.6,15.6,15.433703031827632 + 03/22 08:20:00,15.6,15.6,15.382374802067483 + 03/22 08:30:00,15.6,15.6,15.343571906011695 + 03/22 08:40:00,15.6,15.6,15.308608260422743 + 03/22 08:50:00,15.6,15.6,15.27661734819944 + 03/22 09:00:00,15.6,15.6,15.247144071622586 + 03/22 09:10:00,15.6,15.6,15.21805287438134 + 03/22 09:20:00,15.6,15.6,15.179679536010866 + 03/22 09:30:00,15.6,15.6,15.153248592268142 + 03/22 09:40:00,15.6,15.6,15.128103915241326 + 03/22 09:50:00,15.6,15.6,15.104190472673846 + 03/22 10:00:00,15.6,15.6,15.081485712716284 + 03/22 10:10:00,15.6,15.6,15.061271423627816 + 03/22 10:20:00,15.6,15.6,15.040246267520942 + 03/22 10:30:00,15.6,15.6,15.020164935211032 + 03/22 10:40:00,15.6,15.6,15.004226289411843 + 03/22 10:50:00,15.6,15.6,14.986764572425422 + 03/22 11:00:00,15.6,15.6,14.971931511783407 + 03/22 11:10:00,15.6,15.6,14.956557551475069 + 03/22 11:20:00,15.6,15.6,14.951097104989282 + 03/22 11:30:00,15.6,15.6,14.937798553668074 + 03/22 11:40:00,15.6,15.6,14.921198380221023 + 03/22 11:50:00,15.6,15.6,14.90662325379065 + 03/22 12:00:00,15.6,15.6,14.890836042492254 + 03/22 12:10:00,15.6,15.6,14.869698985058202 + 03/22 12:20:00,15.6,15.6,14.841732131968105 + 03/22 12:30:00,15.6,15.6,14.820484122854003 + 03/22 12:40:00,15.6,15.6,14.80142051913413 + 03/22 12:50:00,15.6,15.6,14.782689256376953 + 03/22 13:00:00,15.6,15.6,14.766222687774836 + 03/22 13:10:00,15.6,15.6,14.754687500107624 + 03/22 13:20:00,15.6,15.6,14.747011756472836 + 03/22 13:30:00,15.6,15.6,14.738924957130792 + 03/22 13:40:00,15.6,15.6,14.728837035190557 + 03/22 13:50:00,15.6,15.6,14.722630944048733 + 03/22 14:00:00,15.6,15.6,14.714700535020807 + 03/22 14:10:00,15.6,15.6,14.706640205298648 + 03/22 14:20:00,15.6,15.6,14.702132945132917 + 03/22 14:30:00,15.6,15.6,14.69302083800056 + 03/22 14:40:00,15.6,15.6,14.686359910538809 + 03/22 14:50:00,15.6,15.6,14.677764934278973 + 03/22 15:00:00,15.6,15.6,14.671014499825717 + 03/22 15:10:00,15.6,15.6,16.82228259069548 + 03/22 15:20:00,15.6,15.6,17.06545941836393 + 03/22 15:30:00,15.6,15.6,17.160350479275296 + 03/22 15:40:00,15.6,15.6,17.23255020109824 + 03/22 15:50:00,15.6,15.6,17.286776859261747 + 03/22 16:00:00,15.6,15.6,17.33103359893741 + 03/22 16:10:00,15.6,15.6,17.396883699228814 + 03/22 16:20:00,15.6,15.6,17.451215215486035 + 03/22 16:30:00,15.6,15.6,17.481835047688479 + 03/22 16:40:00,15.6,15.6,17.509218905572557 + 03/22 16:50:00,15.6,15.6,17.534179196868786 + 03/22 17:00:00,15.6,15.6,17.55715903876676 + 03/22 17:10:00,15.6,15.6,17.591132947998845 + 03/22 17:20:00,15.6,15.6,17.616125368950514 + 03/22 17:30:00,15.6,15.6,17.634406446251377 + 03/22 17:40:00,15.6,15.6,17.6515824134943 + 03/22 17:50:00,15.6,15.6,17.667893068393849 + 03/22 18:00:00,15.6,15.6,17.683466656703098 + 03/22 18:10:00,15.6,15.6,17.698948064869734 + 03/22 18:20:00,15.6,15.6,17.713901697285136 + 03/22 18:30:00,15.6,15.6,17.728419595074209 + 03/22 18:40:00,15.6,15.6,17.74245518729455 + 03/22 18:50:00,15.6,15.6,17.756122043462168 + 03/22 19:00:00,15.6,15.6,17.76954277453277 + 03/22 19:10:00,15.6,15.6,17.794942341310958 + 03/22 19:20:00,15.6,15.6,17.80714000791189 + 03/22 19:30:00,15.6,15.6,17.818181854599858 + 03/22 19:40:00,15.6,15.6,17.828454667179764 + 03/22 19:50:00,15.6,15.6,17.838009270198517 + 03/22 20:00:00,15.6,15.6,17.84696314075921 + 03/22 20:10:00,15.6,15.6,17.8322958830969 + 03/22 20:20:00,15.6,15.6,17.843983339124337 + 03/22 20:30:00,15.6,15.6,17.850906046891436 + 03/22 20:40:00,15.6,15.6,17.85753354455867 + 03/22 20:50:00,15.6,15.6,17.863838198751318 + 03/22 21:00:00,15.6,15.6,17.869843372834024 + 03/22 21:10:00,15.6,15.6,17.87614197029678 + 03/22 21:20:00,15.6,15.6,17.88212679458669 + 03/22 21:30:00,15.6,15.6,17.887905461576279 + 03/22 21:40:00,15.6,15.6,17.893454349947225 + 03/22 21:50:00,15.6,15.6,17.898745157870914 + 03/22 22:00:00,15.6,15.6,17.903921142895525 + 03/22 22:10:00,15.6,15.6,19.275691747922765 + 03/22 22:20:00,15.6,15.6,19.41747428424802 + 03/22 22:30:00,15.6,15.6,19.479870546455179 + 03/22 22:40:00,15.6,15.6,19.528928890264618 + 03/22 22:50:00,15.6,15.6,19.56847587427245 + 03/22 23:00:00,15.6,15.6,19.601620849446435 + 03/22 23:10:00,15.6,15.6,19.630751561851669 + 03/22 23:20:00,15.6,15.6,19.656528789889636 + 03/22 23:30:00,15.6,15.6,19.679568560755859 + 03/22 23:40:00,15.6,15.6,19.70063926622965 + 03/22 23:50:00,15.6,15.6,19.720062913756246 + 03/22 24:00:00,15.6,15.6,19.738076934954039 + 03/23 00:10:00,15.6,15.6,19.75344188884556 + 03/23 00:20:00,15.6,15.6,19.767668532431747 + 03/23 00:30:00,15.6,15.6,19.780951026457385 + 03/23 00:40:00,15.6,15.6,19.793435736753378 + 03/23 00:50:00,15.6,15.6,19.80517196904878 + 03/23 01:00:00,15.6,15.6,19.816241113240623 + 03/23 01:10:00,15.6,15.6,19.827552879774055 + 03/23 01:20:00,15.6,15.6,19.838279570920773 + 03/23 01:30:00,15.6,15.6,19.848575353309799 + 03/23 01:40:00,15.6,15.6,19.858411055562347 + 03/23 01:50:00,15.6,15.6,19.86782442632119 + 03/23 02:00:00,15.6,15.6,19.876837671005096 + 03/23 02:10:00,15.6,15.6,19.885837037231238 + 03/23 02:20:00,15.6,15.6,19.894590662113484 + 03/23 02:30:00,15.6,15.6,19.903023207210148 + 03/23 02:40:00,15.6,15.6,19.911153707105489 + 03/23 02:50:00,15.6,15.6,19.91899969737242 + 03/23 03:00:00,15.6,15.6,19.926488726597606 + 03/23 03:10:00,15.6,15.6,19.931974060138317 + 03/23 03:20:00,15.6,15.6,19.937261547499995 + 03/23 03:30:00,15.6,15.6,19.942361326954275 + 03/23 03:40:00,15.6,15.6,19.947290933306279 + 03/23 03:50:00,15.6,15.6,19.9520062830935 + 03/23 04:00:00,15.6,15.6,19.956652201697908 + 03/23 04:10:00,15.6,15.6,19.964310500581829 + 03/23 04:20:00,15.6,15.6,19.971664123710409 + 03/23 04:30:00,15.6,15.6,19.978608198272103 + 03/23 04:40:00,15.6,15.6,19.9851260476844 + 03/23 04:50:00,15.6,15.6,19.991252577770007 + 03/23 05:00:00,15.6,15.6,19.99709980835562 + 03/23 05:10:00,15.6,15.6,20.002033332803284 + 03/23 05:20:00,15.6,15.6,20.00676304679544 + 03/23 05:30:00,15.6,15.6,20.01137308172066 + 03/23 05:40:00,15.6,15.6,20.015817364576774 + 03/23 05:50:00,15.6,15.6,20.020273516899285 + 03/23 06:00:00,15.6,15.6,20.02465800452429 + 03/23 06:10:00,15.6,15.6,18.02019078385503 + 03/23 06:20:00,15.6,15.6,17.788223929317476 + 03/23 06:30:00,15.6,15.6,17.7031621811957 + 03/23 06:40:00,15.6,15.6,17.63725388440896 + 03/23 06:50:00,15.6,15.6,17.58557083084109 + 03/23 07:00:00,15.6,15.6,17.542886294590603 + 03/23 07:10:00,15.6,15.6,16.06075688875341 + 03/23 07:20:00,15.6,15.6,15.844241601703868 + 03/23 07:30:00,15.6,15.6,15.743203324150644 + 03/23 07:40:00,15.6,15.6,15.660377344280598 + 03/23 07:50:00,15.6,15.6,15.591296013640499 + 03/23 08:00:00,15.6,15.6,15.531511611382279 + 03/23 08:10:00,15.6,15.6,15.451744506274509 + 03/23 08:20:00,15.6,15.6,15.39550252340302 + 03/23 08:30:00,15.6,15.6,15.351295880344934 + 03/23 08:40:00,15.6,15.6,15.310737595786849 + 03/23 08:50:00,15.6,15.6,15.27299145202674 + 03/23 09:00:00,15.6,15.6,15.23764696808673 + 03/23 09:10:00,15.6,15.6,15.205431759091138 + 03/23 09:20:00,15.6,15.6,15.164892342974472 + 03/23 09:30:00,15.6,15.6,15.136609713877338 + 03/23 09:40:00,15.6,15.6,15.10943210161917 + 03/23 09:50:00,15.6,15.6,15.082075450660863 + 03/23 10:00:00,15.6,15.6,15.053984650675947 + 03/23 10:10:00,15.507507507507507,15.507507507507507,15.02347861795118 + 03/23 10:20:00,15.415015015015016,15.415015015015016,14.989058066924706 + 03/23 10:30:00,15.322522522522523,15.322522522522523,14.954220549362809 + 03/23 10:40:00,15.23003003003003,15.23003003003003,14.92166739721534 + 03/23 10:50:00,15.137537537537538,15.137537537537538,14.889592515644369 + 03/23 11:00:00,15.045045045045045,15.045045045045045,14.861058501335986 + 03/23 11:10:00,14.952552552552552,14.952552552552552,14.83716983004736 + 03/23 11:20:00,14.86006006006006,14.86006006006006,14.822866959536683 + 03/23 11:30:00,14.767567567567568,14.767567567567568,14.802412888835053 + 03/23 11:40:00,14.675075075075075,14.675075075075075,14.78083781027776 + 03/23 11:50:00,14.582582582582584,14.582582582582584,14.762894872890325 + 03/23 12:00:00,14.49009009009009,14.49009009009009,14.747341758152354 + 03/23 12:10:00,14.49009009009009,14.49009009009009,14.730219060010518 + 03/23 12:20:00,14.49009009009009,14.49009009009009,14.710764930651476 + 03/23 12:30:00,14.49009009009009,14.49009009009009,14.70030488327086 + 03/23 12:40:00,14.49009009009009,14.49009009009009,14.691068960383522 + 03/23 12:50:00,14.49009009009009,14.49009009009009,14.680922048227217 + 03/23 13:00:00,14.49009009009009,14.49009009009009,14.668774554328909 + 03/23 13:10:00,14.464864864864865,14.464864864864865,14.655080562426655 + 03/23 13:20:00,14.439639639639639,14.439639639639639,14.641183367204162 + 03/23 13:30:00,14.414414414414415,14.414414414414415,14.626163987924175 + 03/23 13:40:00,14.389189189189189,14.389189189189189,14.608322484835459 + 03/23 13:50:00,14.363963963963965,14.363963963963965,14.5944490342772 + 03/23 14:00:00,14.338738738738739,14.338738738738739,14.580933698321843 + 03/23 14:10:00,14.246246246246246,14.246246246246246,14.570695148629035 + 03/23 14:20:00,14.153753753753755,14.153753753753755,14.565390360457311 + 03/23 14:30:00,14.061261261261262,14.061261261261262,14.554679491242878 + 03/23 14:40:00,13.96876876876877,13.96876876876877,14.546858354267645 + 03/23 14:50:00,13.876276276276278,13.876276276276278,14.536863695629816 + 03/23 15:00:00,13.783783783783785,13.783783783783785,14.52566430469401 + 03/23 15:05:00,13.758558558558559,13.758558558558559,16.671730751197769 + 03/23 15:10:00,13.758558558558559,13.758558558558559,16.67097250513201 + 03/23 15:20:00,13.733333333333335,13.733333333333335,16.909547029475328 + 03/23 15:30:00,13.708108108108109,13.708108108108109,16.999489968395339 + 03/23 15:40:00,13.682882882882883,13.682882882882883,17.06710116682087 + 03/23 15:50:00,13.657657657657659,13.657657657657659,17.118688707231774 + 03/23 16:00:00,13.632432432432433,13.632432432432433,17.159875717677286 + 03/23 16:10:00,13.611411411411412,13.611411411411412,17.223055012654496 + 03/23 16:20:00,13.590390390390392,13.590390390390392,17.27460789982115 + 03/23 16:30:00,13.56936936936937,13.56936936936937,17.302996304443327 + 03/23 16:40:00,13.548348348348349,13.548348348348349,17.328636025905007 + 03/23 16:50:00,13.527327327327328,13.527327327327328,17.352349022580705 + 03/23 17:00:00,13.506306306306307,13.506306306306307,17.374911254377865 + 03/23 17:10:00,13.527327327327328,13.527327327327328,17.409512688139537 + 03/23 17:20:00,13.548348348348349,13.548348348348349,17.43732597243071 + 03/23 17:30:00,13.56936936936937,13.56936936936937,17.45862818761583 + 03/23 17:40:00,13.590390390390392,13.590390390390392,17.479245457266406 + 03/23 17:50:00,13.611411411411412,13.611411411411412,17.498932548270394 + 03/23 18:00:00,13.632432432432433,13.632432432432433,17.517750846222439 + 03/23 18:10:00,13.703903903903905,13.703903903903905,17.536106845610143 + 03/23 18:20:00,13.775375375375376,13.775375375375376,17.5532099328365 + 03/23 18:30:00,13.846846846846847,13.846846846846847,17.56982146459604 + 03/23 18:40:00,13.918318318318319,13.918318318318319,17.585723718477174 + 03/23 18:50:00,13.989789789789791,13.989789789789791,17.60124233041449 + 03/23 19:00:00,14.061261261261262,14.061261261261262,17.61638165852841 + 03/23 19:10:00,14.061261261261262,14.061261261261262,17.643577334907748 + 03/23 19:20:00,14.061261261261262,14.061261261261262,17.656874912945239 + 03/23 19:30:00,14.061261261261262,14.061261261261262,17.668517168270925 + 03/23 19:40:00,14.061261261261262,14.061261261261262,17.678906013073726 + 03/23 19:50:00,14.061261261261262,14.061261261261262,17.68825800476598 + 03/23 20:00:00,14.061261261261262,14.061261261261262,17.696599184935129 + 03/23 20:10:00,14.082282282282283,14.082282282282283,17.681613277785627 + 03/23 20:20:00,14.103303303303303,14.103303303303303,17.69391211032283 + 03/23 20:30:00,14.124324324324324,14.124324324324324,17.701310700028164 + 03/23 20:40:00,14.145345345345346,14.145345345345346,17.70840083570589 + 03/23 20:50:00,14.166366366366367,14.166366366366367,17.715052134104498 + 03/23 21:00:00,14.187387387387388,14.187387387387388,17.72133090371867 + 03/23 21:10:00,14.237837837837838,14.237837837837838,17.727782294184875 + 03/23 21:20:00,14.288288288288289,14.288288288288289,17.733835518602015 + 03/23 21:30:00,14.338738738738739,14.338738738738739,17.739628536034969 + 03/23 21:40:00,14.389189189189189,14.389189189189189,17.745161353559195 + 03/23 21:50:00,14.43963963963964,14.43963963963964,17.750441925287725 + 03/23 22:00:00,14.49009009009009,14.49009009009009,17.755492325321169 + 03/23 22:10:00,14.49009009009009,14.49009009009009,19.127506722072185 + 03/23 22:20:00,14.49009009009009,14.49009009009009,19.270760613123725 + 03/23 22:30:00,14.49009009009009,14.49009009009009,19.333768199116255 + 03/23 22:40:00,14.49009009009009,14.49009009009009,19.38358419332397 + 03/23 22:50:00,14.49009009009009,14.49009009009009,19.423819162404258 + 03/23 23:00:00,14.49009009009009,14.49009009009009,19.45761608378236 + 03/23 23:10:00,14.49009009009009,14.49009009009009,19.486785694553427 + 03/23 23:20:00,14.49009009009009,14.49009009009009,19.512826991056366 + 03/23 23:30:00,14.49009009009009,14.49009009009009,19.53636105588199 + 03/23 23:40:00,14.49009009009009,14.49009009009009,19.557916446080357 + 03/23 23:50:00,14.49009009009009,14.49009009009009,19.577836244688748 + 03/23 24:00:00,14.49009009009009,14.49009009009009,19.596331271826999 + 03/24 00:10:00,14.536336336336337,14.536336336336337,19.613236922547796 + 03/24 00:20:00,14.582582582582582,14.582582582582582,19.6290113169022 + 03/24 00:30:00,14.628828828828829,14.628828828828829,19.643803034513405 + 03/24 00:40:00,14.675075075075075,14.675075075075075,19.657738975468008 + 03/24 00:50:00,14.721321321321322,14.721321321321322,19.670823156283136 + 03/24 01:00:00,14.767567567567568,14.767567567567568,19.683291018569446 + 03/24 01:10:00,14.813813813813815,14.813813813813815,19.694145418657486 + 03/24 01:20:00,14.860060060060059,14.860060060060059,19.704793934999363 + 03/24 01:30:00,14.906306306306306,14.906306306306306,19.715059775961167 + 03/24 01:40:00,14.952552552552552,14.952552552552552,19.72498255362034 + 03/24 01:50:00,14.998798798798799,14.998798798798799,19.73458735793626 + 03/24 02:00:00,15.045045045045045,15.045045045045045,19.74390338524305 + 03/24 02:10:00,15.066066066066066,15.066066066066066,19.755013437451959 + 03/24 02:20:00,15.087087087087087,15.087087087087087,19.765758924909158 + 03/24 02:30:00,15.108108108108109,15.108108108108109,19.77613307199976 + 03/24 02:40:00,15.12912912912913,15.12912912912913,19.786150354399707 + 03/24 02:50:00,15.15015015015015,15.15015015015015,19.795937965304817 + 03/24 03:00:00,15.17117117117117,15.17117117117117,19.80545273446745 + 03/24 03:10:00,15.196396396396397,15.196396396396397,19.813029278352919 + 03/24 03:20:00,15.22162162162162,15.22162162162162,19.820142194996675 + 03/24 03:30:00,15.246846846846847,15.246846846846847,19.82710931256141 + 03/24 03:40:00,15.272072072072073,15.272072072072073,19.834022302996325 + 03/24 03:50:00,15.297297297297297,15.297297297297297,19.840892214313283 + 03/24 04:00:00,15.322522522522523,15.322522522522523,19.847725614811695 + 03/24 04:10:00,15.297297297297297,15.297297297297297,19.85572134736808 + 03/24 04:20:00,15.272072072072073,15.272072072072073,19.863531620492596 + 03/24 04:30:00,15.246846846846847,15.246846846846847,19.87097924810416 + 03/24 04:40:00,15.22162162162162,15.22162162162162,19.878058485719515 + 03/24 04:50:00,15.196396396396397,15.196396396396397,19.884705345826406 + 03/24 05:00:00,15.17117117117117,15.17117117117117,19.890948197253754 + 03/24 05:10:00,15.217417417417418,15.217417417417418,19.895846001830223 + 03/24 05:20:00,15.263663663663664,15.263663663663664,19.90037419472622 + 03/24 05:30:00,15.30990990990991,15.30990990990991,19.905151229450995 + 03/24 05:40:00,15.356156156156157,15.356156156156157,19.910000181690639 + 03/24 05:50:00,15.402402402402402,15.402402402402402,19.915043915259518 + 03/24 06:00:00,15.448648648648648,15.448648648648648,19.920219447635124 + 03/24 06:10:00,15.473873873873874,15.473873873873874,17.92136251021168 + 03/24 06:20:00,15.499099099099098,15.499099099099098,17.690926974100628 + 03/24 06:30:00,15.524324324324324,15.524324324324324,17.607942833958839 + 03/24 06:40:00,15.54954954954955,15.54954954954955,17.544194437182399 + 03/24 06:50:00,15.574774774774774,15.574774774774774,17.49486431852206 + 03/24 07:00:00,15.6,15.6,17.453876196122207 + 03/24 07:05:00,15.574774774774774,15.574774774774774,15.974807038606447 + 03/24 07:10:00,15.574774774774774,15.574774774774774,15.974789527136434 + 03/24 07:15:00,15.54954954954955,15.54954954954955,15.758537229213755 + 03/24 07:20:00,15.54954954954955,15.54954954954955,15.758605662625465 + 03/24 07:30:00,15.524324324324324,15.524324324324324,15.657496295062597 + 03/24 07:40:00,15.499099099099098,15.499099099099098,15.574973286777106 + 03/24 07:50:00,15.473873873873874,15.473873873873874,15.505285177042934 + 03/24 08:00:00,15.448648648648648,15.448648648648648,15.44406156906177 + 03/24 08:10:00,15.402402402402402,15.402402402402402,15.362942231935174 + 03/24 08:20:00,15.356156156156157,15.356156156156157,15.303328427368195 + 03/24 08:30:00,15.30990990990991,15.30990990990991,15.254468397074568 + 03/24 08:40:00,15.263663663663664,15.263663663663664,15.208166683127626 + 03/24 08:50:00,15.217417417417418,15.217417417417418,15.164356960097086 + 03/24 09:00:00,15.17117117117117,15.17117117117117,15.122926654926156 + 03/24 09:10:00,15.103903903903904,15.103903903903904,15.082941290857022 + 03/24 09:20:00,15.036636636636637,15.036636636636637,15.034685175460533 + 03/24 09:30:00,14.96936936936937,14.96936936936937,14.998713563096022 + 03/24 09:40:00,14.902102102102102,14.902102102102102,14.965314887019157 + 03/24 09:50:00,14.834834834834835,14.834834834834835,14.93579316533455 + 03/24 10:00:00,14.767567567567568,14.767567567567568,14.910706752724608 + 03/24 10:10:00,14.742342342342342,14.742342342342342,14.89230710248582 + 03/24 10:20:00,14.717117117117116,14.717117117117116,14.872285400905266 + 03/24 10:30:00,14.691891891891892,14.691891891891892,14.857143604801147 + 03/24 10:40:00,14.666666666666668,14.666666666666668,14.842742454912237 + 03/24 10:50:00,14.641441441441442,14.641441441441442,14.825821801396371 + 03/24 11:00:00,14.616216216216217,14.616216216216217,14.803472239305276 + 03/24 11:10:00,14.641441441441442,14.641441441441442,14.776229250697087 + 03/24 11:20:00,14.666666666666666,14.666666666666666,14.757373830811373 + 03/24 11:30:00,14.691891891891892,14.691891891891892,14.729150430180948 + 03/24 11:40:00,14.717117117117118,14.717117117117118,14.699988527965376 + 03/24 11:50:00,14.742342342342342,14.742342342342342,14.67239204072516 + 03/24 12:00:00,14.767567567567568,14.767567567567568,14.649762051789035 + 03/24 12:10:00,14.670870870870872,14.670870870870872,14.628218975599527 + 03/24 12:20:00,14.574174174174175,14.574174174174175,14.600212557784545 + 03/24 12:30:00,14.477477477477479,14.477477477477479,14.583460764511063 + 03/24 12:40:00,14.380780780780782,14.380780780780782,14.566812552270484 + 03/24 12:50:00,14.284084084084084,14.284084084084084,14.55471128940328 + 03/24 13:00:00,14.187387387387388,14.187387387387388,14.542292629641736 + 03/24 13:10:00,14.166366366366367,14.166366366366367,14.536425703508519 + 03/24 13:20:00,14.145345345345346,14.145345345345346,14.530913019645033 + 03/24 13:30:00,14.124324324324324,14.124324324324324,14.526752967175924 + 03/24 13:40:00,14.103303303303303,14.103303303303303,14.521586708633376 + 03/24 13:50:00,14.082282282282283,14.082282282282283,14.516315236670322 + 03/24 14:00:00,14.061261261261262,14.061261261261262,14.510934037958718 + 03/24 14:10:00,14.015015015015015,14.015015015015015,14.50083487033793 + 03/24 14:20:00,13.968768768768769,13.968768768768769,14.497324618345188 + 03/24 14:30:00,13.922522522522524,13.922522522522524,14.487386268944356 + 03/24 14:40:00,13.876276276276278,13.876276276276278,14.478433960447589 + 03/24 14:50:00,13.83003003003003,13.83003003003003,14.469720073188757 + 03/24 15:00:00,13.783783783783785,13.783783783783785,14.457914811322813 + 03/24 15:05:00,13.783783783783785,13.783783783783785,16.612258705791168 + 03/24 15:10:00,13.783783783783785,13.783783783783785,16.61180462745673 + 03/24 15:20:00,13.783783783783785,13.783783783783785,16.85452156544535 + 03/24 15:30:00,13.783783783783785,13.783783783783785,16.94507025317009 + 03/24 15:40:00,13.783783783783785,13.783783783783785,17.01427890774621 + 03/24 15:50:00,13.783783783783785,13.783783783783785,17.06784223665953 + 03/24 16:00:00,13.783783783783785,13.783783783783785,17.109525802008777 + 03/24 16:10:00,13.783783783783785,13.783783783783785,17.173150390156633 + 03/24 16:20:00,13.783783783783785,13.783783783783785,17.22759366274642 + 03/24 16:30:00,13.783783783783785,13.783783783783785,17.258610434309309 + 03/24 16:40:00,13.783783783783785,13.783783783783785,17.287092636460288 + 03/24 16:50:00,13.783783783783785,13.783783783783785,17.313554584058595 + 03/24 17:00:00,13.783783783783785,13.783783783783785,17.338366201561237 + 03/24 17:10:00,13.804804804804805,13.804804804804805,17.374284889846324 + 03/24 17:20:00,13.825825825825828,13.825825825825828,17.401299825352468 + 03/24 17:30:00,13.846846846846848,13.846846846846848,17.421712981596515 + 03/24 17:40:00,13.867867867867869,13.867867867867869,17.441213538167074 + 03/24 17:50:00,13.88888888888889,13.88888888888889,17.460055360414839 + 03/24 18:00:00,13.90990990990991,13.90990990990991,17.478274568748288 + 03/24 18:10:00,13.956156156156157,13.956156156156157,17.49576091750826 + 03/24 18:20:00,14.002402402402403,14.002402402402403,17.513199534583025 + 03/24 18:30:00,14.04864864864865,14.04864864864865,17.529896568831228 + 03/24 18:40:00,14.094894894894896,14.094894894894896,17.545915377632406 + 03/24 18:50:00,14.14114114114114,14.14114114114114,17.561236942019087 + 03/24 19:00:00,14.187387387387388,14.187387387387388,17.575971112179969 + 03/24 19:10:00,14.25885885885886,14.25885885885886,17.603592034276319 + 03/24 19:20:00,14.33033033033033,14.33033033033033,17.617171757004486 + 03/24 19:30:00,14.401801801801803,14.401801801801803,17.629868849726856 + 03/24 19:40:00,14.473273273273274,14.473273273273274,17.641909176174989 + 03/24 19:50:00,14.544744744744746,14.544744744744746,17.653540014323015 + 03/24 20:00:00,14.616216216216217,14.616216216216217,17.66487015103347 + 03/24 20:10:00,14.641441441441442,14.641441441441442,17.653090610478644 + 03/24 20:20:00,14.666666666666666,14.666666666666666,17.667887852774049 + 03/24 20:30:00,14.691891891891892,14.691891891891892,17.67752177598586 + 03/24 20:40:00,14.717117117117118,14.717117117117118,17.68649687006308 + 03/24 20:50:00,14.742342342342342,14.742342342342342,17.6948570283256 + 03/24 21:00:00,14.767567567567568,14.767567567567568,17.702669317173745 + 03/24 21:10:00,14.813813813813815,14.813813813813815,17.709702233520529 + 03/24 21:20:00,14.860060060060059,14.860060060060059,17.716426908607429 + 03/24 21:30:00,14.906306306306306,14.906306306306306,17.72311974158101 + 03/24 21:40:00,14.952552552552552,14.952552552552552,17.72973683259666 + 03/24 21:50:00,14.998798798798799,14.998798798798799,17.736288653023629 + 03/24 22:00:00,15.045045045045045,15.045045045045045,17.742901238659824 + 03/24 22:10:00,15.112312312312313,15.112312312312313,19.122715076708258 + 03/24 22:20:00,15.17957957957958,15.17957957957958,19.268225680313074 + 03/24 22:30:00,15.246846846846847,15.246846846846847,19.33332207367969 + 03/24 22:40:00,15.314114114114114,15.314114114114114,19.384958704127059 + 03/24 22:50:00,15.381381381381381,15.381381381381381,19.426940958386078 + 03/24 23:00:00,15.448648648648648,15.448648648648648,19.4624524984388 + 03/24 23:10:00,15.499099099099098,15.499099099099098,19.494099527176429 + 03/24 23:20:00,15.54954954954955,15.54954954954955,19.522373789363816 + 03/24 23:30:00,15.6,15.6,19.547871351705618 + 03/24 23:40:00,15.6,15.6,19.57124720785811 + 03/24 23:50:00,15.6,15.6,19.592841376139906 + 03/24 24:00:00,15.6,15.6,19.612929103805884 + 03/25 00:10:00,15.6,15.6,19.63074189744778 + 03/25 00:20:00,15.6,15.6,19.64774601551922 + 03/25 00:30:00,15.6,15.6,19.663926959135105 + 03/25 00:40:00,15.6,15.6,19.67951072303004 + 03/25 00:50:00,15.6,15.6,19.694453164190184 + 03/25 01:00:00,15.6,15.6,19.70881224402124 + 03/25 01:10:00,15.6,15.6,19.723790230179128 + 03/25 01:20:00,15.6,15.6,19.737881124008728 + 03/25 01:30:00,15.6,15.6,19.75150754943546 + 03/25 01:40:00,15.6,15.6,19.764472962397137 + 03/25 01:50:00,15.6,15.6,19.776979566707767 + 03/25 02:00:00,15.6,15.6,19.788973185799376 + 03/25 02:10:00,15.6,15.6,19.80131004294541 + 03/25 02:20:00,15.6,15.6,19.813346051812368 + 03/25 02:30:00,15.6,15.6,19.824945113214566 + 03/25 02:40:00,15.6,15.6,19.83617381617409 + 03/25 02:50:00,15.6,15.6,19.84702793617292 + 03/25 03:00:00,15.6,15.6,19.857448466136146 + 03/25 03:10:00,15.6,15.6,19.86630394869743 + 03/25 03:20:00,15.6,15.6,19.874806505508024 + 03/25 03:30:00,15.6,15.6,19.88305520562252 + 03/25 03:40:00,15.6,15.6,19.891042446676339 + 03/25 03:50:00,15.6,15.6,19.8987441208495 + 03/25 04:00:00,15.6,15.6,19.906268982192498 + 03/25 04:10:00,15.6,15.6,19.914916391027864 + 03/25 04:20:00,15.6,15.6,19.92340662129927 + 03/25 04:30:00,15.6,15.6,19.931697626016488 + 03/25 04:40:00,15.6,15.6,19.93977164028286 + 03/25 04:50:00,15.6,15.6,19.947649133042736 + 03/25 05:00:00,15.6,15.6,19.955424593247377 + 03/25 05:10:00,15.6,15.6,19.96174000238088 + 03/25 05:20:00,15.6,15.6,19.967926673860839 + 03/25 05:30:00,15.6,15.6,19.97400506341739 + 03/25 05:40:00,15.6,15.6,19.97992362751049 + 03/25 05:50:00,15.6,15.6,19.985845090012047 + 03/25 06:00:00,15.6,15.6,19.991682982249363 + 03/25 06:10:00,15.6,15.6,19.334258132445226 + 03/25 06:20:00,15.6,15.6,19.271407496586805 + 03/25 06:30:00,15.6,15.6,19.248896075751106 + 03/25 06:40:00,15.6,15.6,19.232086759652988 + 03/25 06:50:00,15.6,15.6,19.21923676289478 + 03/25 07:00:00,15.6,15.6,19.208120298250578 + 03/25 07:10:00,15.6,15.6,18.1145436064129 + 03/25 07:20:00,15.6,15.6,17.965404834843814 + 03/25 07:30:00,15.6,15.6,17.90096600701378 + 03/25 07:40:00,15.6,15.6,17.848001530043694 + 03/25 07:50:00,15.6,15.6,17.803033718304 + 03/25 08:00:00,15.6,15.6,17.762916544563397 + 03/25 08:10:00,15.6,15.6,17.727019996358345 + 03/25 08:20:00,15.6,15.6,17.684084154466654 + 03/25 08:30:00,15.6,15.6,17.6512701591287 + 03/25 08:40:00,15.6,15.6,17.6197012087912 + 03/25 08:50:00,15.6,15.6,17.589389580384425 + 03/25 09:00:00,15.6,15.6,17.560327388659684 + 03/25 09:10:00,15.553753753753754,15.553753753753754,17.533007543130745 + 03/25 09:20:00,15.507507507507507,15.507507507507507,17.498353092003016 + 03/25 09:30:00,15.46126126126126,15.46126126126126,17.473755736935144 + 03/25 09:40:00,15.415015015015016,15.415015015015016,17.450438483961805 + 03/25 09:50:00,15.368768768768769,15.368768768768769,17.42824574075253 + 03/25 10:00:00,15.322522522522523,15.322522522522523,17.40715589865267 + 03/25 10:10:00,15.276276276276276,15.276276276276276,17.38644283985724 + 03/25 10:20:00,15.23003003003003,15.23003003003003,17.3664869757041 + 03/25 10:30:00,15.183783783783785,15.183783783783785,17.347292804879588 + 03/25 10:40:00,15.137537537537538,15.137537537537538,17.328810938500224 + 03/25 10:50:00,15.091291291291292,15.091291291291292,17.3110978096801 + 03/25 11:00:00,15.045045045045045,15.045045045045045,17.294136445516494 + 03/25 11:10:00,15.01981981981982,15.01981981981982,17.2767161803403 + 03/25 11:20:00,14.994594594594594,14.994594594594594,17.259341316663133 + 03/25 11:30:00,14.96936936936937,14.96936936936937,17.242450322271688 + 03/25 11:40:00,14.944144144144144,14.944144144144144,17.225965235974554 + 03/25 11:50:00,14.91891891891892,14.91891891891892,17.21009082210774 + 03/25 12:00:00,14.893693693693694,14.893693693693694,17.194839313981029 + 03/25 12:10:00,14.847447447447447,14.847447447447447,17.18077990991404 + 03/25 12:20:00,14.8012012012012,14.8012012012012,17.167050772863793 + 03/25 12:30:00,14.754954954954954,14.754954954954954,17.153849316966317 + 03/25 12:40:00,14.70870870870871,14.70870870870871,17.141126721213778 + 03/25 12:50:00,14.662462462462463,14.662462462462463,17.128946115642746 + 03/25 13:00:00,14.616216216216217,14.616216216216217,17.117299763566437 + 03/25 13:10:00,14.56996996996997,14.56996996996997,17.105722243277034 + 03/25 13:20:00,14.523723723723723,14.523723723723723,17.095654227232527 + 03/25 13:30:00,14.477477477477479,14.477477477477479,17.086078963211997 + 03/25 13:40:00,14.431231231231232,14.431231231231232,17.07716902882859 + 03/25 13:50:00,14.384984984984986,14.384984984984986,17.068749430961167 + 03/25 14:00:00,14.338738738738739,14.338738738738739,17.060851237055915 + 03/25 14:10:00,14.292492492492493,14.292492492492493,17.05507307581688 + 03/25 14:20:00,14.246246246246246,14.246246246246246,17.050234511397244 + 03/25 14:30:00,14.2,14.2,17.046775898648805 + 03/25 14:40:00,14.153753753753755,14.153753753753755,17.04412254116306 + 03/25 14:50:00,14.107507507507508,14.107507507507508,17.04221932932298 + 03/25 15:00:00,14.061261261261262,14.061261261261262,17.0409963190686 + 03/25 15:10:00,14.036036036036036,14.036036036036036,17.03709584898073 + 03/25 15:20:00,14.01081081081081,14.01081081081081,17.03427005911882 + 03/25 15:30:00,13.985585585585586,13.985585585585586,17.032707621597873 + 03/25 15:40:00,13.960360360360362,13.960360360360362,17.031529150765356 + 03/25 15:50:00,13.935135135135136,13.935135135135136,17.030746287769789 + 03/25 16:00:00,13.90990990990991,13.90990990990991,17.02911391568433 + 03/25 16:10:00,13.90990990990991,13.90990990990991,17.042038759060568 + 03/25 16:20:00,13.90990990990991,13.90990990990991,17.05217547437004 + 03/25 16:30:00,13.90990990990991,13.90990990990991,17.05399057536312 + 03/25 16:40:00,13.90990990990991,13.90990990990991,17.056339030886535 + 03/25 16:50:00,13.90990990990991,13.90990990990991,17.05951564106811 + 03/25 17:00:00,13.90990990990991,13.90990990990991,17.06338353519134 + 03/25 17:10:00,13.935135135135136,13.935135135135136,18.8470086986354 + 03/25 17:20:00,13.960360360360362,13.960360360360362,19.06229152406267 + 03/25 17:30:00,13.985585585585586,13.985585585585586,19.148805216497736 + 03/25 17:40:00,14.010810810810812,14.010810810810812,19.217191610036627 + 03/25 17:50:00,14.036036036036038,14.036036036036038,19.272724786545305 + 03/25 18:00:00,14.061261261261262,14.061261261261262,19.31991883902613 + 03/25 18:10:00,14.107507507507508,14.107507507507508,19.37509751698773 + 03/25 18:20:00,14.153753753753755,14.153753753753755,19.41344984195549 + 03/25 18:30:00,14.2,14.2,19.44803785920299 + 03/25 18:40:00,14.246246246246246,14.246246246246246,19.479850108661649 + 03/25 18:50:00,14.292492492492493,14.292492492492493,19.50926371727844 + 03/25 19:00:00,14.338738738738739,14.338738738738739,19.536425757696475 + 03/25 19:10:00,14.41021021021021,14.41021021021021,19.561508667553097 + 03/25 19:20:00,14.481681681681682,14.481681681681682,19.584666102895086 + 03/25 19:30:00,14.553153153153153,14.553153153153153,19.60596040394052 + 03/25 19:40:00,14.624624624624625,14.624624624624625,19.6256943148193 + 03/25 19:50:00,14.696096096096096,14.696096096096096,19.644002958878916 + 03/25 20:00:00,14.767567567567568,14.767567567567568,19.661190076774486 + 03/25 20:10:00,14.788588588588589,14.788588588588589,19.65432232868925 + 03/25 20:20:00,14.809609609609609,14.809609609609609,19.669048774509038 + 03/25 20:30:00,14.83063063063063,14.83063063063063,19.68288794479721 + 03/25 20:40:00,14.85165165165165,14.85165165165165,19.695895903938838 + 03/25 20:50:00,14.872672672672673,14.872672672672673,19.708241865421394 + 03/25 21:00:00,14.893693693693694,14.893693693693694,19.720060685515816 + 03/25 21:10:00,14.965165165165164,14.965165165165164,19.73160280873962 + 03/25 21:20:00,15.036636636636637,15.036636636636637,19.742716905252335 + 03/25 21:30:00,15.108108108108109,15.108108108108109,19.753515676536943 + 03/25 21:40:00,15.17957957957958,15.17957957957958,19.763972256273978 + 03/25 21:50:00,15.251051051051052,15.251051051051052,19.77426874170123 + 03/25 22:00:00,15.322522522522523,15.322522522522523,19.784337057983366 + 03/25 22:10:00,15.393993993993995,15.393993993993995,19.79294047367832 + 03/25 22:20:00,15.465465465465466,15.465465465465466,19.801340328710468 + 03/25 22:30:00,15.536936936936936,15.536936936936936,19.80946711626033 + 03/25 22:40:00,15.6,15.6,19.81752802889032 + 03/25 22:50:00,15.6,15.6,19.825436917946165 + 03/25 23:00:00,15.6,15.6,19.833197696625648 + 03/25 23:10:00,15.6,15.6,19.84290053023036 + 03/25 23:20:00,15.6,15.6,19.852318729729768 + 03/25 23:30:00,15.6,15.6,19.861502164099777 + 03/25 23:40:00,15.6,15.6,19.870437659904704 + 03/25 23:50:00,15.6,15.6,19.87910881191878 + 03/25 24:00:00,15.6,15.6,19.88753817926103 + 03/26 00:10:00,15.6,15.6,19.893979942061749 + 03/26 00:20:00,15.6,15.6,19.90021415835962 + 03/26 00:30:00,15.6,15.6,19.906300148589677 + 03/26 00:40:00,15.6,15.6,19.912200325986498 + 03/26 00:50:00,15.6,15.6,19.917927070261468 + 03/26 01:00:00,15.6,15.6,19.923461668288725 + 03/26 01:10:00,15.6,15.6,19.93005458991166 + 03/26 01:20:00,15.6,15.6,19.936637447534478 + 03/26 01:30:00,15.6,15.6,19.943059426081314 + 03/26 01:40:00,15.6,15.6,19.94935425700118 + 03/26 01:50:00,15.6,15.6,19.95548313057982 + 03/26 02:00:00,15.6,15.6,19.96139010842023 + 03/26 02:10:00,15.6,15.6,19.96676287139192 + 03/26 02:20:00,15.6,15.6,19.97191440095724 + 03/26 02:30:00,15.6,15.6,19.97690804229205 + 03/26 02:40:00,15.6,15.6,19.981726753763213 + 03/26 02:50:00,15.6,15.6,19.986313767653504 + 03/26 03:00:00,15.6,15.6,19.990833545426115 + 03/26 03:10:00,15.6,15.6,19.995983733088968 + 03/26 03:20:00,15.6,15.6,20.00097966577201 + 03/26 03:30:00,15.6,15.6,20.005818921416549 + 03/26 03:40:00,15.6,15.6,20.010448775564926 + 03/26 03:50:00,15.6,15.6,20.014962554221169 + 03/26 04:00:00,15.6,15.6,20.019393732337539 + 03/26 04:10:00,15.6,15.6,20.02317981176804 + 03/26 04:20:00,15.6,15.6,20.026931529970598 + 03/26 04:30:00,15.6,15.6,20.03070654142141 + 03/26 04:40:00,15.6,15.6,20.034501273976607 + 03/26 04:50:00,15.6,15.6,20.038419405931998 + 03/26 05:00:00,15.6,15.6,20.042385055495818 + 03/26 05:10:00,15.6,15.6,20.046290935856026 + 03/26 05:20:00,15.6,15.6,20.050272428172815 + 03/26 05:30:00,15.6,15.6,20.054157311609268 + 03/26 05:40:00,15.6,15.6,20.05813723936511 + 03/26 05:50:00,15.6,15.6,20.06208815546089 + 03/26 06:00:00,15.6,15.6,20.06600504622345 + 03/26 06:10:00,15.6,15.6,20.09163921172355 + 03/26 06:20:00,15.6,15.6,20.094406315146104 + 03/26 06:30:00,15.6,15.6,20.097203203815025 + 03/26 06:40:00,15.6,15.6,20.09975003114093 + 03/26 06:50:00,15.6,15.6,20.101951386896937 + 03/26 07:00:00,15.6,15.6,20.10320205937222 + 03/26 07:10:00,15.6,15.6,18.69741155038223 + 03/26 07:20:00,15.6,15.6,18.531374985630717 + 03/26 07:30:00,15.6,15.6,18.465463882589594 + 03/26 07:40:00,15.6,15.6,18.412215917377489 + 03/26 07:50:00,15.6,15.6,18.367687003929789 + 03/26 08:00:00,15.6,15.6,18.328614724041335 + 03/26 08:10:00,15.6,15.6,18.294284212618149 + 03/26 08:20:00,15.6,15.6,18.253141858536009 + 03/26 08:30:00,15.6,15.6,18.222546961912806 + 03/26 08:40:00,15.6,15.6,18.193519862097973 + 03/26 08:50:00,15.6,15.6,18.165930339847927 + 03/26 09:00:00,15.6,15.6,18.13966754686568 + 03/26 09:10:00,15.6,15.6,18.10983841798803 + 03/26 09:20:00,15.515915915915916,15.515915915915916,18.072323723982067 + 03/26 09:30:00,15.398198198198199,15.398198198198199,18.044320976766593 + 03/26 09:40:00,15.280480480480481,15.280480480480481,18.01711121316229 + 03/26 09:50:00,15.162762762762763,15.162762762762763,17.99056832082489 + 03/26 10:00:00,15.045045045045045,15.045045045045045,17.964615228663438 + 03/26 10:10:00,14.952552552552552,14.952552552552552,17.94099357052471 + 03/26 10:20:00,14.86006006006006,14.86006006006006,17.918073365799559 + 03/26 10:30:00,14.767567567567568,14.767567567567568,17.89590299060373 + 03/26 10:40:00,14.675075075075075,14.675075075075075,17.874385023127478 + 03/26 10:50:00,14.582582582582584,14.582582582582584,17.853731775227275 + 03/26 11:00:00,14.49009009009009,14.49009009009009,17.833855708873494 + 03/26 11:10:00,14.393393393393394,14.393393393393394,17.81582371972737 + 03/26 11:20:00,14.296696696696696,14.296696696696696,17.798055647272819 + 03/26 11:30:00,14.2,14.2,17.781155261567485 + 03/26 11:40:00,14.103303303303303,14.103303303303303,17.76492557126547 + 03/26 11:50:00,14.006606606606607,14.006606606606607,17.74937306694887 + 03/26 12:00:00,13.90990990990991,13.90990990990991,17.73462555440848 + 03/26 12:10:00,13.863663663663666,13.863663663663666,17.720226612032258 + 03/26 12:20:00,13.817417417417417,13.817417417417417,17.707960127786639 + 03/26 12:30:00,13.771171171171173,13.771171171171173,17.696189161093824 + 03/26 12:40:00,13.724924924924926,13.724924924924926,17.68526005980804 + 03/26 12:50:00,13.67867867867868,13.67867867867868,17.67482750776004 + 03/26 13:00:00,13.632432432432433,13.632432432432433,17.664891421232306 + 03/26 13:10:00,13.586186186186187,13.586186186186187,17.655991464591368 + 03/26 13:20:00,13.539939939939942,13.539939939939942,17.646738387857963 + 03/26 13:30:00,13.493693693693695,13.493693693693695,17.63813142386052 + 03/26 13:40:00,13.447447447447449,13.447447447447449,17.630027390592205 + 03/26 13:50:00,13.401201201201202,13.401201201201202,17.622630771296483 + 03/26 14:00:00,13.354954954954956,13.354954954954956,17.61577293004695 + 03/26 14:10:00,13.30870870870871,13.30870870870871,17.609328868843943 + 03/26 14:20:00,13.262462462462464,13.262462462462464,17.60449875634015 + 03/26 14:30:00,13.216216216216218,13.216216216216218,17.59999763660941 + 03/26 14:40:00,13.169969969969971,13.169969969969971,17.59613197652819 + 03/26 14:50:00,13.123723723723725,13.123723723723725,17.5930917595294 + 03/26 15:00:00,13.077477477477478,13.077477477477478,17.59090497038853 + 03/26 15:10:00,13.052252252252253,13.052252252252253,19.027075631981228 + 03/26 15:20:00,13.027027027027028,13.027027027027028,19.1788646735087 + 03/26 15:30:00,13.001801801801803,13.001801801801803,19.242451177387108 + 03/26 15:40:00,12.976576576576577,12.976576576576577,19.291819494468816 + 03/26 15:50:00,12.951351351351353,12.951351351351353,19.33102596044584 + 03/26 16:00:00,12.926126126126127,12.926126126126127,19.363421876293076 + 03/26 16:10:00,12.951351351351353,12.951351351351353,19.391905600483729 + 03/26 16:20:00,12.976576576576577,12.976576576576577,19.426062720764798 + 03/26 16:30:00,13.001801801801803,13.001801801801803,19.449116276159445 + 03/26 16:40:00,13.027027027027028,13.027027027027028,19.470541577135717 + 03/26 16:50:00,13.052252252252253,13.052252252252253,19.49091535859916 + 03/26 17:00:00,13.077477477477478,13.077477477477478,19.51040970911892 + 03/26 17:10:00,13.077477477477478,13.077477477477478,19.52818125939423 + 03/26 17:20:00,13.077477477477478,13.077477477477478,19.563011293826749 + 03/26 17:30:00,13.077477477477478,13.077477477477478,19.57934707371861 + 03/26 17:40:00,13.077477477477478,13.077477477477478,19.59506521122495 + 03/26 17:50:00,13.077477477477478,13.077477477477478,19.610321795900398 + 03/26 18:00:00,13.077477477477478,13.077477477477478,19.625344434627814 + 03/26 18:10:00,13.123723723723725,13.123723723723725,19.640559360562507 + 03/26 18:20:00,13.169969969969971,13.169969969969971,19.65575545215677 + 03/26 18:30:00,13.216216216216218,13.216216216216218,19.67057983526312 + 03/26 18:40:00,13.262462462462464,13.262462462462464,19.68496974702038 + 03/26 18:50:00,13.30870870870871,13.30870870870871,19.699041302236848 + 03/26 19:00:00,13.354954954954956,13.354954954954956,19.712753137333924 + 03/26 19:10:00,13.380180180180182,13.380180180180182,19.72605768830586 + 03/26 19:20:00,13.405405405405407,13.405405405405407,19.738161515138225 + 03/26 19:30:00,13.430630630630632,13.430630630630632,19.749305174194867 + 03/26 19:40:00,13.455855855855857,13.455855855855857,19.759570583977675 + 03/26 19:50:00,13.481081081081081,13.481081081081081,19.769199846429666 + 03/26 20:00:00,13.506306306306307,13.506306306306307,19.778238880330677 + 03/26 20:10:00,13.573573573573574,13.573573573573574,19.763834491676457 + 03/26 20:20:00,13.640840840840842,13.640840840840842,19.771771067234189 + 03/26 20:30:00,13.708108108108109,13.708108108108109,19.779368470910357 + 03/26 20:40:00,13.775375375375376,13.775375375375376,19.786836304878859 + 03/26 20:50:00,13.842642642642645,13.842642642642645,19.79408372319656 + 03/26 21:00:00,13.90990990990991,13.90990990990991,19.80116317501526 + 03/26 21:10:00,13.981381381381383,13.981381381381383,19.808961923855624 + 03/26 21:20:00,14.052852852852853,14.052852852852853,19.816599805619334 + 03/26 21:30:00,14.124324324324326,14.124324324324326,19.82416831713934 + 03/26 21:40:00,14.195795795795796,14.195795795795796,19.831608964446266 + 03/26 21:50:00,14.267267267267269,14.267267267267269,19.838912111690865 + 03/26 22:00:00,14.338738738738739,14.338738738738739,19.84609714186357 + 03/26 22:10:00,14.41021021021021,14.41021021021021,19.851778424887756 + 03/26 22:20:00,14.481681681681682,14.481681681681682,19.857661349814245 + 03/26 22:30:00,14.553153153153153,14.553153153153153,19.863514013443639 + 03/26 22:40:00,14.624624624624625,14.624624624624625,19.869374968100304 + 03/26 22:50:00,14.696096096096096,14.696096096096096,19.875170550980614 + 03/26 23:00:00,14.767567567567568,14.767567567567568,19.880847542459159 + 03/26 23:10:00,14.788588588588589,14.788588588588589,19.886767619115238 + 03/26 23:20:00,14.809609609609609,14.809609609609609,19.89238921460317 + 03/26 23:30:00,14.83063063063063,14.83063063063063,19.897789195719 + 03/26 23:40:00,14.85165165165165,14.85165165165165,19.90292028016132 + 03/26 23:50:00,14.872672672672673,14.872672672672673,19.907826097474488 + 03/26 24:00:00,14.893693693693694,14.893693693693694,19.91252112863902 + 03/27 00:10:00,14.93993993993994,14.93993993993994,19.917491360185104 + 03/27 00:20:00,14.986186186186187,14.986186186186187,19.9222749796039 + 03/27 00:30:00,15.032432432432433,15.032432432432433,19.926989169786965 + 03/27 00:40:00,15.078678678678678,15.078678678678678,19.93163496340354 + 03/27 00:50:00,15.124924924924925,15.124924924924925,19.936137904357147 + 03/27 01:00:00,15.17117117117117,15.17117117117117,19.94073669678768 + 03/27 01:10:00,15.17117117117117,15.17117117117117,19.945081514084124 + 03/27 01:20:00,15.17117117117117,15.17117117117117,19.94931635944363 + 03/27 01:30:00,15.17117117117117,15.17117117117117,19.953390443178458 + 03/27 01:40:00,15.17117117117117,15.17117117117117,19.957228187736275 + 03/27 01:50:00,15.17117117117117,15.17117117117117,19.96098959684859 + 03/27 02:00:00,15.17117117117117,15.17117117117117,19.96463318897388 + 03/27 02:10:00,15.217417417417418,15.217417417417418,19.9683559834769 + 03/27 02:20:00,15.263663663663664,15.263663663663664,19.972077708736568 + 03/27 02:30:00,15.30990990990991,15.30990990990991,19.975769532432137 + 03/27 02:40:00,15.356156156156157,15.356156156156157,19.97952493873199 + 03/27 02:50:00,15.402402402402402,15.402402402402402,19.98335639789963 + 03/27 03:00:00,15.448648648648648,15.448648648648648,19.987213860301126 + 03/27 03:10:00,15.473873873873874,15.473873873873874,19.99099131763887 + 03/27 03:20:00,15.499099099099098,15.499099099099098,19.994743551010115 + 03/27 03:30:00,15.524324324324324,15.524324324324324,19.998416736730808 + 03/27 03:40:00,15.54954954954955,15.54954954954955,20.002112211961476 + 03/27 03:50:00,15.574774774774774,15.574774774774774,20.0057506495248 + 03/27 04:00:00,15.6,15.6,20.0093327968041 + 03/27 04:10:00,15.6,15.6,20.01191443524481 + 03/27 04:20:00,15.6,15.6,20.014417162194485 + 03/27 04:30:00,15.6,15.6,20.01705204614387 + 03/27 04:40:00,15.6,15.6,20.019728985831664 + 03/27 04:50:00,15.6,15.6,20.022449753633166 + 03/27 05:00:00,15.6,15.6,20.02521157684075 + 03/27 05:10:00,15.6,15.6,20.029530825066659 + 03/27 05:20:00,15.6,15.6,20.033654750149766 + 03/27 05:30:00,15.6,15.6,20.037422600631897 + 03/27 05:40:00,15.6,15.6,20.04080935622678 + 03/27 05:50:00,15.6,15.6,20.04384342294588 + 03/27 06:00:00,15.6,15.6,20.046486904010416 + 03/27 06:10:00,15.6,15.6,18.034640858210527 + 03/27 06:20:00,15.6,15.6,17.79944328963802 + 03/27 06:30:00,15.6,15.6,17.71156633585246 + 03/27 06:40:00,15.6,15.6,17.64286053360721 + 03/27 06:50:00,15.6,15.6,17.588251782768795 + 03/27 07:00:00,15.6,15.6,17.542475506701533 + 03/27 07:10:00,15.6,15.6,16.054223112270518 + 03/27 07:20:00,15.6,15.6,15.83579205482926 + 03/27 07:30:00,15.6,15.6,15.733280241385812 + 03/27 07:40:00,15.591591591591591,15.591591591591591,15.649053626576386 + 03/27 07:50:00,15.52012012012012,15.52012012012012,15.578068352531238 + 03/27 08:00:00,15.448648648648648,15.448648648648648,15.51573367027727 + 03/27 08:10:00,15.356156156156157,15.356156156156157,15.43251424204613 + 03/27 08:20:00,15.263663663663664,15.263663663663664,15.37033087098526 + 03/27 08:30:00,15.17117117117117,15.17117117117117,15.3195054937017 + 03/27 08:40:00,15.078678678678678,15.078678678678678,15.27158708106379 + 03/27 08:50:00,14.986186186186187,14.986186186186187,15.226476543554569 + 03/27 09:00:00,14.893693693693694,14.893693693693694,15.183950227029179 + 03/27 09:10:00,14.775975975975977,14.775975975975977,15.14403989882862 + 03/27 09:20:00,14.658258258258258,14.658258258258258,15.094927198309913 + 03/27 09:30:00,14.54054054054054,14.54054054054054,15.057870528796539 + 03/27 09:40:00,14.422822822822824,14.422822822822824,15.022119705036986 + 03/27 09:50:00,14.305105105105107,14.305105105105107,14.987678088851697 + 03/27 10:00:00,14.187387387387388,14.187387387387388,14.954517988910835 + 03/27 10:10:00,14.073873873873874,14.073873873873874,14.92215869981772 + 03/27 10:20:00,13.960360360360362,13.960360360360362,14.88400679194535 + 03/27 10:30:00,13.846846846846848,13.846846846846848,14.850375406665889 + 03/27 10:40:00,13.733333333333335,13.733333333333335,14.81736524419003 + 03/27 10:50:00,13.61981981981982,13.61981981981982,14.786084513065035 + 03/27 11:00:00,13.506306306306307,13.506306306306307,14.757661508634195 + 03/27 11:10:00,13.40960960960961,13.40960960960961,14.732098243802567 + 03/27 11:20:00,13.312912912912913,13.312912912912913,14.716509232392465 + 03/27 11:30:00,13.216216216216216,13.216216216216216,14.695520872966036 + 03/27 11:40:00,13.11951951951952,13.11951951951952,14.675438587055084 + 03/27 11:50:00,13.022822822822823,13.022822822822823,14.653700206530031 + 03/27 12:00:00,12.926126126126127,12.926126126126127,14.634588970225114 + 03/27 12:10:00,12.87987987987988,12.87987987987988,14.615032139859565 + 03/27 12:20:00,12.833633633633636,12.833633633633636,14.587577403562593 + 03/27 12:30:00,12.8,12.8,14.572126486546951 + 03/27 12:40:00,12.8,12.8,14.554629835482233 + 03/27 12:50:00,12.8,12.8,14.541476290335592 + 03/27 13:00:00,12.8,12.8,14.526453375236157 + 03/27 13:10:00,12.8,12.8,14.515646241240708 + 03/27 13:20:00,12.8,12.8,14.508361077981168 + 03/27 13:30:00,12.8,12.8,14.499475244204783 + 03/27 13:40:00,12.8,12.8,14.491953188591046 + 03/27 13:50:00,12.8,12.8,14.483609221619182 + 03/27 14:00:00,12.8,12.8,14.478697525347635 + 03/27 14:10:00,12.8,12.8,14.470980963004756 + 03/27 14:20:00,12.8,12.8,14.469932379116536 + 03/27 14:30:00,12.8,12.8,14.465334195760974 + 03/27 14:40:00,12.8,12.8,14.459942841344262 + 03/27 14:50:00,12.8,12.8,14.457355019509779 + 03/27 15:00:00,12.8,12.8,14.453002738048986 + 03/27 15:05:00,12.8,12.8,16.61060626482617 + 03/27 15:10:00,12.8,12.8,16.60917684495522 + 03/27 15:20:00,12.8,12.8,16.859045238009764 + 03/27 15:30:00,12.8,12.8,16.956148962857314 + 03/27 15:40:00,12.8,12.8,17.030511485920575 + 03/27 15:50:00,12.8,12.8,17.08993750055334 + 03/27 16:00:00,12.8,12.8,17.138531622656154 + 03/27 16:10:00,12.8,12.8,17.20351105494947 + 03/27 16:20:00,12.8,12.8,17.258004016771769 + 03/27 16:30:00,12.8,12.8,17.288706702640299 + 03/27 16:40:00,12.8,12.8,17.315861642713946 + 03/27 16:50:00,12.8,12.8,17.340123482410357 + 03/27 17:00:00,12.8,12.8,17.362109097985387 + 03/27 17:10:00,12.892492492492494,12.892492492492494,17.395625028740754 + 03/27 17:20:00,12.984984984984987,12.984984984984987,17.422973143808734 + 03/27 17:30:00,13.077477477477478,13.077477477477478,17.443363161357384 + 03/27 17:40:00,13.169969969969971,13.169969969969971,17.463051436217485 + 03/27 17:50:00,13.262462462462464,13.262462462462464,17.481621095860075 + 03/27 18:00:00,13.354954954954956,13.354954954954956,17.49925371645992 + 03/27 18:10:00,13.401201201201202,13.401201201201202,17.51458505812649 + 03/27 18:20:00,13.447447447447449,13.447447447447449,17.52866985113886 + 03/27 18:30:00,13.493693693693695,13.493693693693695,17.54197560115491 + 03/27 18:40:00,13.539939939939942,13.539939939939942,17.554479942885526 + 03/27 18:50:00,13.586186186186187,13.586186186186187,17.566565505844936 + 03/27 19:00:00,13.632432432432433,13.632432432432433,17.578177308175954 + 03/27 19:10:00,13.611411411411412,13.611411411411412,17.604779626913598 + 03/27 19:20:00,13.590390390390392,13.590390390390392,17.617392914140795 + 03/27 19:30:00,13.56936936936937,13.56936936936937,17.62893531197391 + 03/27 19:40:00,13.548348348348349,13.548348348348349,17.63950921738406 + 03/27 19:50:00,13.527327327327328,13.527327327327328,17.649325620430774 + 03/27 20:00:00,13.506306306306307,13.506306306306307,17.658451020129264 + 03/27 20:10:00,13.506306306306307,13.506306306306307,17.64376543553069 + 03/27 20:20:00,13.506306306306307,13.506306306306307,17.655604303760126 + 03/27 20:30:00,13.506306306306307,13.506306306306307,17.662887946126994 + 03/27 20:40:00,13.506306306306307,13.506306306306307,17.670062241566258 + 03/27 20:50:00,13.506306306306307,13.506306306306307,17.67714875563824 + 03/27 21:00:00,13.506306306306307,13.506306306306307,17.684136839492394 + 03/27 21:10:00,13.506306306306307,13.506306306306307,17.69060574317561 + 03/27 21:20:00,13.506306306306307,13.506306306306307,17.696641925185916 + 03/27 21:30:00,13.506306306306307,13.506306306306307,17.702289192095294 + 03/27 21:40:00,13.506306306306307,13.506306306306307,17.707511135493946 + 03/27 21:50:00,13.506306306306307,13.506306306306307,17.71230683083893 + 03/27 22:00:00,13.506306306306307,13.506306306306307,17.716836712857846 + 03/27 22:10:00,13.506306306306307,13.506306306306307,19.085069736099155 + 03/27 22:20:00,13.506306306306307,13.506306306306307,19.22821242237808 + 03/27 22:30:00,13.506306306306307,13.506306306306307,19.290930403060668 + 03/27 22:40:00,13.506306306306307,13.506306306306307,19.340273747495649 + 03/27 22:50:00,13.506306306306307,13.506306306306307,19.380096085984463 + 03/27 23:00:00,13.506306306306307,13.506306306306307,19.41349563853455 + 03/27 23:10:00,13.506306306306307,13.506306306306307,19.44166136883576 + 03/27 23:20:00,13.506306306306307,13.506306306306307,19.46717386781372 + 03/27 23:30:00,13.506306306306307,13.506306306306307,19.489873617352488 + 03/27 23:40:00,13.506306306306307,13.506306306306307,19.510615869682299 + 03/27 23:50:00,13.506306306306307,13.506306306306307,19.52957855177153 + 03/27 24:00:00,13.506306306306307,13.506306306306307,19.547059552051878 + 03/28 00:10:00,13.527327327327328,13.527327327327328,19.563769128998744 + 03/28 00:20:00,13.548348348348349,13.548348348348349,19.57943245408918 + 03/28 00:30:00,13.56936936936937,13.56936936936937,19.59453022495783 + 03/28 00:40:00,13.590390390390392,13.590390390390392,19.609130735537499 + 03/28 00:50:00,13.611411411411412,13.611411411411412,19.62330321484067 + 03/28 01:00:00,13.632432432432433,13.632432432432433,19.637076875215184 + 03/28 01:10:00,13.657657657657659,13.657657657657659,19.649904567833337 + 03/28 01:20:00,13.682882882882883,13.682882882882883,19.661948133906504 + 03/28 01:30:00,13.708108108108109,13.708108108108109,19.673342724307916 + 03/28 01:40:00,13.733333333333335,13.733333333333335,19.68402467022614 + 03/28 01:50:00,13.758558558558559,13.758558558558559,19.69406742812697 + 03/28 02:00:00,13.783783783783785,13.783783783783785,19.70351559990335 + 03/28 02:10:00,13.783783783783785,13.783783783783785,19.712935069196975 + 03/28 02:20:00,13.783783783783785,13.783783783783785,19.72159016297467 + 03/28 02:30:00,13.783783783783785,13.783783783783785,19.72968497693546 + 03/28 02:40:00,13.783783783783785,13.783783783783785,19.737193697456399 + 03/28 02:50:00,13.783783783783785,13.783783783783785,19.744220829481578 + 03/28 03:00:00,13.783783783783785,13.783783783783785,19.750724486944216 + 03/28 03:10:00,13.804804804804805,13.804804804804805,19.756349532308989 + 03/28 03:20:00,13.825825825825828,13.825825825825828,19.761945629671734 + 03/28 03:30:00,13.846846846846848,13.846846846846848,19.7675020165427 + 03/28 03:40:00,13.867867867867869,13.867867867867869,19.773057819985185 + 03/28 03:50:00,13.88888888888889,13.88888888888889,19.778517568979625 + 03/28 04:00:00,13.90990990990991,13.90990990990991,19.783966822963146 + 03/28 04:10:00,13.935135135135136,13.935135135135136,19.789554422026514 + 03/28 04:20:00,13.960360360360362,13.960360360360362,19.795038652775529 + 03/28 04:30:00,13.985585585585586,13.985585585585586,19.80047278979402 + 03/28 04:40:00,14.010810810810812,14.010810810810812,19.80578994845364 + 03/28 04:50:00,14.036036036036038,14.036036036036038,19.811027136926293 + 03/28 05:00:00,14.061261261261262,14.061261261261262,19.81625192727338 + 03/28 05:10:00,14.082282282282283,14.082282282282283,19.820875526271395 + 03/28 05:20:00,14.103303303303303,14.103303303303303,19.825754150333887 + 03/28 05:30:00,14.124324324324324,14.124324324324324,19.83052692056046 + 03/28 05:40:00,14.145345345345346,14.145345345345346,19.835183010449126 + 03/28 05:50:00,14.166366366366367,14.166366366366367,19.839850936722454 + 03/28 06:00:00,14.187387387387388,14.187387387387388,19.844388491328965 + 03/28 06:10:00,14.212612612612613,14.212612612612613,17.84976674134519 + 03/28 06:20:00,14.237837837837838,14.237837837837838,17.61883950323593 + 03/28 06:30:00,14.263063063063063,14.263063063063063,17.535096869330716 + 03/28 06:40:00,14.288288288288289,14.288288288288289,17.470403875708628 + 03/28 06:50:00,14.313513513513513,14.313513513513513,17.419756042448485 + 03/28 07:00:00,14.338738738738739,14.338738738738739,17.378244256152479 + 03/28 07:05:00,14.338738738738739,14.338738738738739,15.90509532647846 + 03/28 07:10:00,14.338738738738739,14.338738738738739,15.904960265843736 + 03/28 07:15:00,14.338738738738739,14.338738738738739,15.689382685465642 + 03/28 07:20:00,14.338738738738739,14.338738738738739,15.689540426637864 + 03/28 07:30:00,14.338738738738739,14.338738738738739,15.589011833903462 + 03/28 07:40:00,14.338738738738739,14.338738738738739,15.50746482290993 + 03/28 07:50:00,14.338738738738739,14.338738738738739,15.439627540088829 + 03/28 08:00:00,14.338738738738739,14.338738738738739,15.381200947546756 + 03/28 08:05:00,14.313513513513513,14.313513513513513,15.30532029095379 + 03/28 08:10:00,14.313513513513513,14.313513513513513,15.304910751061355 + 03/28 08:20:00,14.288288288288289,14.288288288288289,15.25027786947709 + 03/28 08:30:00,14.263063063063063,14.263063063063063,15.208260063683385 + 03/28 08:40:00,14.237837837837839,14.237837837837839,15.169220149119348 + 03/28 08:50:00,14.212612612612613,14.212612612612613,15.132939039873259 + 03/28 09:00:00,14.187387387387388,14.187387387387388,15.098843525232857 + 03/28 09:10:00,14.14114114114114,14.14114114114114,15.06323622467514 + 03/28 09:20:00,14.094894894894896,14.094894894894896,15.021166983720754 + 03/28 09:30:00,14.04864864864865,14.04864864864865,14.990375844494876 + 03/28 09:40:00,14.002402402402403,14.002402402402403,14.961573434639803 + 03/28 09:50:00,13.956156156156157,13.956156156156157,14.934264451396832 + 03/28 10:00:00,13.90990990990991,13.90990990990991,14.908542616262189 + 03/28 10:10:00,13.863663663663666,13.863663663663666,14.884829886085442 + 03/28 10:20:00,13.817417417417417,13.817417417417417,14.859177668353425 + 03/28 10:30:00,13.771171171171173,13.771171171171173,14.840015143747117 + 03/28 10:40:00,13.724924924924926,13.724924924924926,14.819672762565295 + 03/28 10:50:00,13.67867867867868,13.67867867867868,14.800216091646828 + 03/28 11:00:00,13.632432432432433,13.632432432432433,14.7816241962693 + 03/28 11:10:00,13.565165165165166,13.565165165165166,14.761197777453248 + 03/28 11:20:00,13.497897897897899,13.497897897897899,14.752457189350219 + 03/28 11:30:00,13.430630630630632,13.430630630630632,14.731579129525219 + 03/28 11:40:00,13.363363363363364,13.363363363363364,14.713347365864488 + 03/28 11:50:00,13.296096096096097,13.296096096096097,14.696074084737033 + 03/28 12:00:00,13.22882882882883,13.22882882882883,14.676532538957316 + 03/28 12:10:00,13.17837837837838,13.17837837837838,14.660809723637533 + 03/28 12:20:00,13.127927927927928,13.127927927927928,14.635703218746829 + 03/28 12:30:00,13.077477477477478,13.077477477477478,14.619490534594535 + 03/28 12:40:00,13.027027027027028,13.027027027027028,14.605883127067607 + 03/28 12:50:00,12.976576576576579,12.976576576576579,14.590303584495612 + 03/28 13:00:00,12.926126126126127,12.926126126126127,14.578364911241497 + 03/28 13:10:00,12.812612612612615,12.812612612612615,14.563652303993818 + 03/28 13:20:00,12.8,12.8,14.555690072596759 + 03/28 13:30:00,12.8,12.8,14.542899257792929 + 03/28 13:40:00,12.8,12.8,14.531245586153825 + 03/28 13:50:00,12.8,12.8,14.520959419556494 + 03/28 14:00:00,12.8,12.8,14.50942195518696 + 03/28 14:10:00,12.8,12.8,14.501900150344352 + 03/28 14:20:00,12.8,12.8,14.495724599582168 + 03/28 14:30:00,12.8,12.8,14.488519524020307 + 03/28 14:40:00,12.8,12.8,14.481876411071289 + 03/28 14:50:00,12.8,12.8,14.473034622265944 + 03/28 15:00:00,12.8,12.8,14.466850167242614 + 03/28 15:05:00,12.8,12.8,16.606782977557928 + 03/28 15:10:00,12.8,12.8,16.60496267295675 + 03/28 15:20:00,12.8,12.8,16.84948567235908 + 03/28 15:30:00,12.8,12.8,16.94394896805563 + 03/28 15:40:00,12.8,12.8,17.014885534076528 + 03/28 15:50:00,12.8,12.8,17.069244888102995 + 03/28 16:00:00,12.8,12.8,17.113639705650088 + 03/28 16:10:00,12.8,12.8,17.177942167210355 + 03/28 16:20:00,12.8,12.8,17.230767954070307 + 03/28 16:30:00,12.8,12.8,17.261055495955927 + 03/28 16:40:00,12.8,12.8,17.2878524116856 + 03/28 16:50:00,12.8,12.8,17.31202914968332 + 03/28 17:00:00,12.8,12.8,17.332545869106274 + 03/28 17:10:00,12.8,12.8,17.36460338551534 + 03/28 17:20:00,12.8,12.8,17.388760585280168 + 03/28 17:30:00,12.8,12.8,17.406120196312778 + 03/28 17:40:00,12.8,12.8,17.42234652159467 + 03/28 17:50:00,12.8,12.8,17.437660742327 + 03/28 18:00:00,12.8,12.8,17.44975551983858 + 03/28 18:10:00,12.8,12.8,17.46467331416578 + 03/28 18:20:00,12.8,12.8,17.477228236289738 + 03/28 18:30:00,12.8,12.8,17.488921354883464 + 03/28 18:40:00,12.8,12.8,17.501249080431458 + 03/28 18:50:00,12.8,12.8,17.513107162546249 + 03/28 19:00:00,12.8,12.8,17.525211330613588 + 03/28 19:10:00,12.8,12.8,17.55021004334541 + 03/28 19:20:00,12.8,12.8,17.562460341174167 + 03/28 19:30:00,12.8,12.8,17.573826802249866 + 03/28 19:40:00,12.8,12.8,17.584608885173588 + 03/28 19:50:00,12.8,12.8,17.594875599798866 + 03/28 20:00:00,12.8,12.8,17.604635557773816 + 03/28 20:10:00,12.8,12.8,17.59180986434748 + 03/28 20:20:00,12.8,12.8,17.605496681921069 + 03/28 20:30:00,12.8,12.8,17.614566562532749 + 03/28 20:40:00,12.8,12.8,17.623445337783246 + 03/28 20:50:00,12.8,12.8,17.632144934308216 + 03/28 21:00:00,12.8,12.8,17.640673668669458 + 03/28 21:10:00,12.8,12.8,17.649047256198388 + 03/28 21:20:00,12.8,12.8,17.65697936180582 + 03/28 21:30:00,12.8,12.8,17.66458600801151 + 03/28 21:40:00,12.8,12.8,17.671890700881276 + 03/28 21:50:00,12.8,12.8,17.678881256802279 + 03/28 22:00:00,12.8,12.8,17.685591467483495 + 03/28 22:10:00,12.821021021021022,12.821021021021022,19.050016667602099 + 03/28 22:20:00,12.842042042042042,12.842042042042042,19.19322084875144 + 03/28 22:30:00,12.863063063063063,12.863063063063063,19.25629869570642 + 03/28 22:40:00,12.884084084084084,12.884084084084084,19.30601809529197 + 03/28 22:50:00,12.905105105105106,12.905105105105106,19.34626299431244 + 03/28 23:00:00,12.926126126126127,12.926126126126127,19.380133629486794 + 03/28 23:10:00,12.976576576576577,12.976576576576577,19.40955494817837 + 03/28 23:20:00,13.027027027027028,13.027027027027028,19.436747979719013 + 03/28 23:30:00,13.077477477477478,13.077477477477478,19.461061296094046 + 03/28 23:40:00,13.127927927927928,13.127927927927928,19.483320438838648 + 03/28 23:50:00,13.17837837837838,13.17837837837838,19.503662304164857 + 03/28 24:00:00,13.22882882882883,13.22882882882883,19.522355269744915 + 03/29 00:10:00,13.275075075075077,13.275075075075077,19.539356838656614 + 03/29 00:20:00,13.321321321321323,13.321321321321323,19.555245571788786 + 03/29 00:30:00,13.367567567567568,13.367567567567568,19.570057929184885 + 03/29 00:40:00,13.413813813813816,13.413813813813816,19.58393599607447 + 03/29 00:50:00,13.46006006006006,13.46006006006006,19.596882149364853 + 03/29 01:00:00,13.506306306306307,13.506306306306307,19.60914484238812 + 03/29 01:10:00,13.527327327327328,13.527327327327328,19.621611944746279 + 03/29 01:20:00,13.548348348348349,13.548348348348349,19.63410288923506 + 03/29 01:30:00,13.56936936936937,13.56936936936937,19.64611585352273 + 03/29 01:40:00,13.590390390390392,13.590390390390392,19.657771390561267 + 03/29 01:50:00,13.611411411411412,13.611411411411412,19.669076311299315 + 03/29 02:00:00,13.632432432432433,13.632432432432433,19.680097478017446 + 03/29 02:10:00,13.611411411411412,13.611411411411412,19.6900342052724 + 03/29 02:20:00,13.590390390390392,13.590390390390392,19.699173138326438 + 03/29 02:30:00,13.56936936936937,13.56936936936937,19.70733081371468 + 03/29 02:40:00,13.548348348348349,13.548348348348349,19.7146372630281 + 03/29 02:50:00,13.527327327327328,13.527327327327328,19.72124508639871 + 03/29 03:00:00,13.506306306306307,13.506306306306307,19.727148270688905 + 03/29 03:10:00,13.506306306306307,13.506306306306307,19.7325007161547 + 03/29 03:20:00,13.506306306306307,13.506306306306307,19.737261608895837 + 03/29 03:30:00,13.506306306306307,13.506306306306307,19.742022895106584 + 03/29 03:40:00,13.506306306306307,13.506306306306307,19.74687345325584 + 03/29 03:50:00,13.506306306306307,13.506306306306307,19.751807561447728 + 03/29 04:00:00,13.506306306306307,13.506306306306307,19.756781995292024 + 03/29 04:10:00,13.527327327327328,13.527327327327328,19.761414730389999 + 03/29 04:20:00,13.548348348348349,13.548348348348349,19.766351891005294 + 03/29 04:30:00,13.56936936936937,13.56936936936937,19.77172974085116 + 03/29 04:40:00,13.590390390390392,13.590390390390392,19.77747581038626 + 03/29 04:50:00,13.611411411411412,13.611411411411412,19.783504164491889 + 03/29 05:00:00,13.632432432432433,13.632432432432433,19.78982360502366 + 03/29 05:10:00,13.657657657657659,13.657657657657659,19.796386405471748 + 03/29 05:20:00,13.682882882882883,13.682882882882883,19.802732207108357 + 03/29 05:30:00,13.708108108108109,13.708108108108109,19.80882394822578 + 03/29 05:40:00,13.733333333333335,13.733333333333335,19.81460770256408 + 03/29 05:50:00,13.758558558558559,13.758558558558559,19.820111743357026 + 03/29 06:00:00,13.783783783783785,13.783783783783785,19.825311148970365 + 03/29 06:10:00,13.783783783783785,13.783783783783785,17.832580189813585 + 03/29 06:20:00,13.783783783783785,13.783783783783785,17.601808859924998 + 03/29 06:30:00,13.783783783783785,13.783783783783785,17.517873235441919 + 03/29 06:40:00,13.783783783783785,13.783783783783785,17.452627503252207 + 03/29 06:50:00,13.783783783783785,13.783783783783785,17.401079749096117 + 03/29 07:00:00,13.783783783783785,13.783783783783785,17.358140219942169 + 03/29 07:05:00,13.758558558558559,13.758558558558559,15.880118658134013 + 03/29 07:10:00,13.758558558558559,13.758558558558559,15.882235058547567 + 03/29 07:15:00,13.733333333333335,13.733333333333335,15.66069263403643 + 03/29 07:20:00,13.733333333333335,13.733333333333335,15.660512131520715 + 03/29 07:30:00,13.708108108108109,13.708108108108109,15.558663995812143 + 03/29 07:40:00,13.682882882882883,13.682882882882883,15.475573163878006 + 03/29 07:50:00,13.657657657657659,13.657657657657659,15.405895522285184 + 03/29 08:00:00,13.632432432432433,13.632432432432433,15.345758135291169 + 03/29 08:05:00,13.586186186186187,13.586186186186187,15.265650110807182 + 03/29 08:10:00,13.586186186186187,13.586186186186187,15.265699865464889 + 03/29 08:20:00,13.539939939939942,13.539939939939942,15.20796990466295 + 03/29 08:30:00,13.493693693693695,13.493693693693695,15.162364794974899 + 03/29 08:40:00,13.447447447447449,13.447447447447449,15.12045389876945 + 03/29 08:50:00,13.401201201201202,13.401201201201202,15.08179717599351 + 03/29 09:00:00,13.354954954954956,13.354954954954956,15.046166512714203 + 03/29 09:10:00,13.30870870870871,13.30870870870871,15.01352839513847 + 03/29 09:20:00,13.262462462462464,13.262462462462464,14.972617104440455 + 03/29 09:30:00,13.216216216216218,13.216216216216218,14.944067812437332 + 03/29 09:40:00,13.169969969969971,13.169969969969971,14.916964252969699 + 03/29 09:50:00,13.123723723723725,13.123723723723725,14.890305605060956 + 03/29 10:00:00,13.077477477477478,13.077477477477478,14.863802839773527 + 03/29 10:10:00,13.006006006006008,13.006006006006008,14.837114292164126 + 03/29 10:20:00,12.934534534534535,12.934534534534535,14.807019225759224 + 03/29 10:30:00,12.863063063063063,12.863063063063063,14.780792066806117 + 03/29 10:40:00,12.8,12.8,14.757077375688369 + 03/29 10:50:00,12.8,12.8,14.732627769414412 + 03/29 11:00:00,12.8,12.8,14.711368561305968 + 03/29 11:10:00,12.8,12.8,14.692471765379095 + 03/29 11:20:00,12.8,12.8,14.684285082282094 + 03/29 11:30:00,12.8,12.8,14.670374201783402 + 03/29 11:40:00,12.8,12.8,14.65522119451409 + 03/29 11:50:00,12.8,12.8,14.641137800430356 + 03/29 12:00:00,12.8,12.8,14.627698891499892 + 03/29 12:10:00,12.8,12.8,14.610860328484114 + 03/29 12:20:00,12.8,12.8,14.586181897906423 + 03/29 12:30:00,12.8,12.8,14.569953400117973 + 03/29 12:40:00,12.8,12.8,14.553175447360708 + 03/29 12:50:00,12.8,12.8,14.538638523177294 + 03/29 13:00:00,12.8,12.8,14.522967077155581 + 03/29 13:10:00,12.8,12.8,14.511462647043615 + 03/29 13:20:00,12.8,12.8,14.500831980803009 + 03/29 13:30:00,12.8,12.8,14.490384250967918 + 03/29 13:40:00,12.8,12.8,14.478157116731746 + 03/29 13:50:00,12.8,12.8,14.465320536065333 + 03/29 14:00:00,12.8,12.8,14.452367930626444 + 03/29 14:10:00,12.8,12.8,14.436074496472399 + 03/29 14:20:00,12.8,12.8,14.425414286723412 + 03/29 14:30:00,12.8,12.8,14.409237187410467 + 03/29 14:40:00,12.8,12.8,14.394062757747644 + 03/29 14:50:00,12.8,12.8,14.381434262082515 + 03/29 15:00:00,12.8,12.8,14.36705694441439 + 03/29 15:05:00,12.8,12.8,16.50621346466715 + 03/29 15:10:00,12.8,12.8,16.504555586244483 + 03/29 15:20:00,12.8,12.8,16.748323435276946 + 03/29 15:30:00,12.8,12.8,16.83856915139946 + 03/29 15:40:00,12.8,12.8,16.908416662129029 + 03/29 15:50:00,12.8,12.8,16.963626803180956 + 03/29 16:00:00,12.8,12.8,17.00799651550833 + 03/29 16:10:00,12.8,12.8,17.072110650196355 + 03/29 16:20:00,12.8,12.8,17.127292302362734 + 03/29 16:30:00,12.8,12.8,17.159199704791708 + 03/29 16:40:00,12.8,12.8,17.188039552174577 + 03/29 16:50:00,12.8,12.8,17.21449756420668 + 03/29 17:00:00,12.8,12.8,17.23897120233874 + 03/29 17:10:00,12.8,12.8,17.274422485541643 + 03/29 17:20:00,12.8,12.8,17.301224617003457 + 03/29 17:30:00,12.8,12.8,17.321329249651727 + 03/29 17:40:00,12.8,12.8,17.340607226271375 + 03/29 17:50:00,12.8,12.8,17.359473827330107 + 03/29 18:00:00,12.8,12.8,17.377991328848606 + 03/29 18:10:00,12.8,12.8,17.396284424129808 + 03/29 18:20:00,12.8,12.8,17.413899596386579 + 03/29 18:30:00,12.8,12.8,17.424535614761866 + 03/29 18:40:00,12.8,12.8,17.443926592336515 + 03/29 18:50:00,12.8,12.8,17.45740859502383 + 03/29 19:00:00,12.8,12.8,17.472701211932763 + 03/29 19:10:00,12.8,12.8,17.499261130570266 + 03/29 19:20:00,12.8,12.8,17.508817151087123 + 03/29 19:30:00,12.8,12.8,17.522686285201169 + 03/29 19:40:00,12.8,12.8,17.532637337213566 + 03/29 19:50:00,12.8,12.8,17.542131804938575 + 03/29 20:00:00,12.8,12.8,17.55158147261656 + 03/29 20:10:00,12.8,12.8,17.53792873240871 + 03/29 20:20:00,12.8,12.8,17.55130255815184 + 03/29 20:30:00,12.8,12.8,17.559989006260385 + 03/29 20:40:00,12.8,12.8,17.568513816918043 + 03/29 20:50:00,12.8,12.8,17.57686087525121 + 03/29 21:00:00,12.8,12.8,17.585054782745546 + 03/29 21:10:00,12.8,12.8,17.593205610832919 + 03/29 21:20:00,12.8,12.8,17.600867649347248 + 03/29 21:30:00,12.8,12.8,17.608549611564145 + 03/29 21:40:00,12.8,12.8,17.616142364072677 + 03/29 21:50:00,12.8,12.8,17.62366370249535 + 03/29 22:00:00,12.8,12.8,17.631222895183258 + 03/29 22:10:00,12.8,12.8,18.998695478332559 + 03/29 22:20:00,12.8,12.8,19.144127459929224 + 03/29 22:30:00,12.8,12.8,19.208867351751125 + 03/29 22:40:00,12.833633633633636,12.833633633633636,19.26001802077013 + 03/29 22:50:00,12.87987987987988,12.87987987987988,19.301590688284294 + 03/29 23:00:00,12.926126126126127,12.926126126126127,19.33667181556678 + 03/29 23:10:00,12.926126126126127,12.926126126126127,19.366407632352244 + 03/29 23:20:00,12.926126126126127,12.926126126126127,19.392865847406818 + 03/29 23:30:00,12.926126126126127,12.926126126126127,19.416123242156094 + 03/29 23:40:00,12.926126126126127,12.926126126126127,19.436982461314459 + 03/29 23:50:00,12.926126126126127,12.926126126126127,19.45571865327587 + 03/29 24:00:00,12.926126126126127,12.926126126126127,19.472523435054993 + 03/30 00:10:00,12.997597597597599,12.997597597597599,19.48844347033863 + 03/30 00:20:00,13.06906906906907,13.06906906906907,19.503155443460114 + 03/30 00:30:00,13.140540540540542,13.140540540540542,19.517326767493246 + 03/30 00:40:00,13.212012012012015,13.212012012012015,19.531042037314866 + 03/30 00:50:00,13.283483483483485,13.283483483483485,19.544495503536628 + 03/30 01:00:00,13.354954954954956,13.354954954954956,19.557539317979236 + 03/30 01:10:00,13.380180180180182,13.380180180180182,19.56989497623338 + 03/30 01:20:00,13.405405405405407,13.405405405405407,19.582492102502209 + 03/30 01:30:00,13.430630630630632,13.430630630630632,19.594397399173418 + 03/30 01:40:00,13.455855855855857,13.455855855855857,19.605782953866588 + 03/30 01:50:00,13.481081081081081,13.481081081081081,19.616419316341959 + 03/30 02:00:00,13.506306306306307,13.506306306306307,19.626512582976806 + 03/30 02:10:00,13.527327327327328,13.527327327327328,19.636378541306958 + 03/30 02:20:00,13.548348348348349,13.548348348348349,19.64567709868897 + 03/30 02:30:00,13.56936936936937,13.56936936936937,19.655017970811075 + 03/30 02:40:00,13.590390390390392,13.590390390390392,19.664191814655749 + 03/30 02:50:00,13.611411411411412,13.611411411411412,19.673312874287935 + 03/30 03:00:00,13.632432432432433,13.632432432432433,19.68228348308627 + 03/30 03:10:00,13.657657657657659,13.657657657657659,19.691086267620258 + 03/30 03:20:00,13.682882882882883,13.682882882882883,19.70023545038176 + 03/30 03:30:00,13.708108108108109,13.708108108108109,19.70913204050896 + 03/30 03:40:00,13.733333333333335,13.733333333333335,19.7178739291033 + 03/30 03:50:00,13.758558558558559,13.758558558558559,19.726289851570628 + 03/30 04:00:00,13.783783783783785,13.783783783783785,19.734497563450675 + 03/30 04:10:00,13.758558558558559,13.758558558558559,19.742348353522105 + 03/30 04:20:00,13.733333333333335,13.733333333333335,19.75008324562541 + 03/30 04:30:00,13.708108108108109,13.708108108108109,19.75719320827579 + 03/30 04:40:00,13.682882882882883,13.682882882882883,19.763672459072063 + 03/30 04:50:00,13.657657657657659,13.657657657657659,19.769563194893637 + 03/30 05:00:00,13.632432432432433,13.632432432432433,19.77500005928964 + 03/30 05:10:00,13.632432432432433,13.632432432432433,19.78005455466298 + 03/30 05:20:00,13.632432432432433,13.632432432432433,19.784477187733235 + 03/30 05:30:00,13.632432432432433,13.632432432432433,19.78888118650014 + 03/30 05:40:00,13.632432432432433,13.632432432432433,19.793170155278948 + 03/30 05:50:00,13.632432432432433,13.632432432432433,19.79759159007426 + 03/30 06:00:00,13.632432432432433,13.632432432432433,19.80203409305554 + 03/30 06:10:00,13.632432432432433,13.632432432432433,17.810263669168746 + 03/30 06:20:00,13.632432432432433,13.632432432432433,17.5777152411214 + 03/30 06:30:00,13.632432432432433,13.632432432432433,17.492729634106384 + 03/30 06:40:00,13.632432432432433,13.632432432432433,17.426826751197578 + 03/30 06:50:00,13.632432432432433,13.632432432432433,17.37526600758149 + 03/30 07:00:00,13.632432432432433,13.632432432432433,17.33221303121389 + 03/30 07:05:00,13.611411411411412,13.611411411411412,15.847322618221086 + 03/30 07:10:00,13.611411411411412,13.611411411411412,15.852274115317336 + 03/30 07:15:00,13.590390390390392,13.590390390390392,15.627441959574995 + 03/30 07:20:00,13.590390390390392,13.590390390390392,15.626242284714749 + 03/30 07:30:00,13.56936936936937,13.56936936936937,15.523947369054439 + 03/30 07:40:00,13.548348348348349,13.548348348348349,15.440978526501774 + 03/30 07:50:00,13.527327327327328,13.527327327327328,15.370886903658626 + 03/30 08:00:00,13.506306306306307,13.506306306306307,15.311104537800619 + 03/30 08:03:19,13.481081081081081,13.481081081081081,15.233868729402845 + 03/30 08:06:40,13.481081081081081,13.481081081081081,15.233385368767113 + 03/30 08:10:00,13.481081081081081,13.481081081081081,15.233403415445194 + 03/30 08:20:00,13.455855855855857,13.455855855855857,15.17786905404177 + 03/30 08:30:00,13.430630630630632,13.430630630630632,15.13559763721394 + 03/30 08:40:00,13.405405405405407,13.405405405405407,15.0967018272164 + 03/30 08:50:00,13.380180180180182,13.380180180180182,15.059721092825403 + 03/30 09:00:00,13.354954954954956,13.354954954954956,15.023876280744851 + 03/30 09:10:00,13.30870870870871,13.30870870870871,14.988579104633646 + 03/30 09:20:00,13.262462462462464,13.262462462462464,14.94369134429362 + 03/30 09:30:00,13.216216216216218,13.216216216216218,14.910166353684101 + 03/30 09:40:00,13.169969969969971,13.169969969969971,14.87776555340787 + 03/30 09:50:00,13.123723723723725,13.123723723723725,14.846420801632233 + 03/30 10:00:00,13.077477477477478,13.077477477477478,14.816097456996856 + 03/30 10:10:00,12.984984984984987,12.984984984984987,14.787230039306673 + 03/30 10:20:00,12.892492492492494,12.892492492492494,14.75561509894444 + 03/30 10:30:00,12.8,12.8,14.729763414104334 + 03/30 10:40:00,12.8,12.8,14.703800284967239 + 03/30 10:50:00,12.8,12.8,14.677142652811828 + 03/30 11:00:00,12.8,12.8,14.653677515302185 + 03/30 11:05:00,12.8,12.8,14.628707395990077 + 03/30 11:10:00,12.8,12.8,14.628261645308479 + 03/30 11:20:00,12.8,12.8,14.61462883760903 + 03/30 11:30:00,12.8,12.8,14.590336589286915 + 03/30 11:40:00,12.8,12.8,14.566375970944522 + 03/30 11:50:00,12.8,12.8,14.544799758757968 + 03/30 12:00:00,12.8,12.8,14.521940867146256 + 03/30 12:10:00,12.8,12.8,14.500974605515993 + 03/30 12:20:00,12.8,12.8,14.47286635598388 + 03/30 12:30:00,12.8,12.8,14.451721767896372 + 03/30 12:40:00,12.8,12.8,14.434803639476217 + 03/30 12:50:00,12.8,12.8,14.415776781200155 + 03/30 13:00:00,12.8,12.8,14.399453516753266 + 03/30 13:05:00,12.8,12.8,14.386750656538318 + 03/30 13:10:00,12.8,12.8,14.382192595204505 + 03/30 13:20:00,12.8,12.8,14.370277233885372 + 03/30 13:30:00,12.8,12.8,14.356784216281972 + 03/30 13:40:00,12.8,12.8,14.343185918841656 + 03/30 13:50:00,12.8,12.8,14.32984080373488 + 03/30 14:00:00,12.8,12.8,14.318444766279376 + 03/30 14:10:00,12.8,12.8,14.311388077995025 + 03/30 14:20:00,12.8,12.8,14.30622669156867 + 03/30 14:30:00,12.8,12.8,14.299463996726823 + 03/30 14:40:00,12.8,12.8,14.295805246252307 + 03/30 14:50:00,12.8,12.8,14.290301278754788 + 03/30 14:52:30,12.8,12.8,14.264860173348435 + 03/30 14:55:00,12.8,12.8,14.282103576905117 + 03/30 14:57:30,12.8,12.8,14.29015684602854 + 03/30 15:00:00,12.8,12.8,14.269643566324625 + 03/30 15:05:00,12.8,12.8,16.42589572993056 + 03/30 15:10:00,12.8,12.8,16.425246558450355 + 03/30 15:20:00,12.8,12.8,16.671569988371773 + 03/30 15:30:00,12.8,12.8,16.76965543242764 + 03/30 15:40:00,12.8,12.8,16.844773032578826 + 03/30 15:50:00,12.8,12.8,16.901509309349615 + 03/30 16:00:00,12.8,12.8,16.946577678832506 + 03/30 16:10:00,12.8,12.8,17.012694494626456 + 03/30 16:20:00,12.8,12.8,17.067478308703366 + 03/30 16:30:00,12.8,12.8,17.09861301315091 + 03/30 16:40:00,12.8,12.8,17.126761080716429 + 03/30 16:50:00,12.8,12.8,17.153198608517003 + 03/30 17:00:00,12.8,12.8,17.178359560907944 + 03/30 17:10:00,12.8,12.8,17.215447869549899 + 03/30 17:20:00,12.8,12.8,17.24399076088963 + 03/30 17:30:00,12.8,12.8,17.266023425430995 + 03/30 17:40:00,12.8,12.8,17.28704579704661 + 03/30 17:50:00,12.8,12.8,17.30740298230075 + 03/30 18:00:00,12.8,12.8,17.327119709038724 + 03/30 18:10:00,12.8,12.8,17.345928520583337 + 03/30 18:20:00,12.8,12.8,17.363843739840605 + 03/30 18:30:00,12.8,12.8,17.38074998824012 + 03/30 18:40:00,12.8,12.8,17.396532908180807 + 03/30 18:50:00,12.8,12.8,17.411361513497739 + 03/30 19:00:00,12.8,12.8,17.42557481833091 + 03/30 19:10:00,12.8,12.8,17.452501491277759 + 03/30 19:20:00,12.8,12.8,17.466496214079024 + 03/30 19:30:00,12.8,12.8,17.479364384824195 + 03/30 19:40:00,12.8,12.8,17.486652641448516 + 03/30 19:50:00,12.8,12.8,17.50075408818365 + 03/30 20:00:00,12.8,12.8,17.510467721726625 + 03/30 20:10:00,12.8,12.8,17.496761082201233 + 03/30 20:20:00,12.8,12.8,17.51240877510633 + 03/30 20:30:00,12.8,12.8,17.519755148089329 + 03/30 20:40:00,12.8,12.8,17.529273875389835 + 03/30 20:50:00,12.8,12.8,17.536167010859648 + 03/30 21:00:00,12.8,12.8,17.543611991106624 + 03/30 21:10:00,12.8,12.8,17.55052239503457 + 03/30 21:20:00,12.8,12.8,17.557119856943755 + 03/30 21:30:00,12.8,12.8,17.56374638851229 + 03/30 21:40:00,12.8,12.8,17.570372725679158 + 03/30 21:50:00,12.8,12.8,17.577036675334129 + 03/30 22:00:00,12.8,12.8,17.583714868643289 + 03/30 22:10:00,12.8,12.8,18.952559337182977 + 03/30 22:20:00,12.8,12.8,19.098052230854234 + 03/30 22:30:00,12.8,12.8,19.162850786102799 + 03/30 22:40:00,12.8,12.8,19.214427421441127 + 03/30 22:50:00,12.8,12.8,19.256514285161225 + 03/30 23:00:00,12.8,12.8,19.292269437532764 + 03/30 23:10:00,12.8,12.8,19.323458940663394 + 03/30 23:20:00,12.8,12.8,19.35184207018336 + 03/30 23:30:00,12.863063063063063,12.863063063063063,19.37756126632058 + 03/30 23:40:00,12.934534534534535,12.934534534534535,19.401239454412566 + 03/30 23:50:00,13.006006006006008,13.006006006006008,19.42316194600746 + 03/30 24:00:00,13.077477477477478,13.077477477477478,19.443527924858654 + 03/31 00:10:00,13.123723723723725,13.123723723723725,19.462996861601597 + 03/31 00:20:00,13.169969969969971,13.169969969969971,19.481352829590038 + 03/31 00:30:00,13.216216216216218,13.216216216216218,19.498634980543217 + 03/31 00:40:00,13.262462462462464,13.262462462462464,19.51497417500667 + 03/31 00:50:00,13.30870870870871,13.30870870870871,19.530386233447666 + 03/31 01:00:00,13.354954954954956,13.354954954954956,19.54512490533664 + 03/31 01:10:00,13.380180180180182,13.380180180180182,19.559239211906136 + 03/31 01:20:00,13.405405405405407,13.405405405405407,19.57385272301564 + 03/31 01:30:00,13.430630630630632,13.430630630630632,19.587710786235968 + 03/31 01:40:00,13.455855855855857,13.455855855855857,19.601097132960804 + 03/31 01:50:00,13.481081081081081,13.481081081081081,19.61389838849111 + 03/31 02:00:00,13.506306306306307,13.506306306306307,19.62623370954304 + 03/31 02:10:00,13.527327327327328,13.527327327327328,19.63790184742957 + 03/31 02:20:00,13.548348348348349,13.548348348348349,19.64800452189157 + 03/31 02:30:00,13.56936936936937,13.56936936936937,19.65762473315343 + 03/31 02:40:00,13.590390390390392,13.590390390390392,19.666536176763164 + 03/31 02:50:00,13.611411411411412,13.611411411411412,19.675093484617649 + 03/31 03:00:00,13.632432432432433,13.632432432432433,19.683169824109667 + 03/31 03:10:00,13.657657657657659,13.657657657657659,19.690528356416999 + 03/31 03:20:00,13.682882882882883,13.682882882882883,19.697866106493835 + 03/31 03:30:00,13.708108108108109,13.708108108108109,19.70534937826049 + 03/31 03:40:00,13.733333333333335,13.733333333333335,19.713077843271735 + 03/31 03:50:00,13.758558558558559,13.758558558558559,19.720908390682415 + 03/31 04:00:00,13.783783783783785,13.783783783783785,19.72882432373808 + 03/31 04:10:00,13.804804804804805,13.804804804804805,19.737810712139074 + 03/31 04:20:00,13.825825825825828,13.825825825825828,19.746978190336024 + 03/31 04:30:00,13.846846846846848,13.846846846846848,19.75592717702652 + 03/31 04:40:00,13.867867867867869,13.867867867867869,19.764668008873124 + 03/31 04:50:00,13.88888888888889,13.88888888888889,19.773142793144147 + 03/31 05:00:00,13.90990990990991,13.90990990990991,19.78132898330527 + 03/31 05:10:00,13.88888888888889,13.88888888888889,19.788158647885095 + 03/31 05:20:00,13.867867867867869,13.867867867867869,19.795256639206614 + 03/31 05:30:00,13.846846846846848,13.846846846846848,19.801947888879647 + 03/31 05:40:00,13.825825825825828,13.825825825825828,19.808358953588006 + 03/31 05:50:00,13.804804804804805,13.804804804804805,19.814357948466286 + 03/31 06:00:00,13.783783783783785,13.783783783783785,19.81990630468762 + 03/31 06:10:00,13.758558558558559,13.758558558558559,17.829618173495008 + 03/31 06:20:00,13.733333333333335,13.733333333333335,17.59665611923709 + 03/31 06:30:00,13.708108108108109,13.708108108108109,17.510005736698206 + 03/31 06:40:00,13.682882882882883,13.682882882882883,17.44161530340844 + 03/31 06:50:00,13.657657657657659,13.657657657657659,17.38695925134879 + 03/31 07:00:00,13.632432432432433,13.632432432432433,17.340703829492069 + 03/31 07:05:00,13.611411411411412,13.611411411411412,15.857819677606829 + 03/31 07:10:00,13.611411411411412,13.611411411411412,15.860383999587559 + 03/31 07:15:00,13.590390390390392,13.590390390390392,15.635896004040566 + 03/31 07:20:00,13.590390390390392,13.590390390390392,15.635412314484974 + 03/31 07:30:00,13.56936936936937,13.56936936936937,15.531443049216423 + 03/31 07:40:00,13.548348348348349,13.548348348348349,15.446994717886007 + 03/31 07:50:00,13.527327327327328,13.527327327327328,15.37667548985631 + 03/31 08:00:00,13.506306306306307,13.506306306306307,15.316815081981116 + 03/31 08:03:19,13.434834834834835,13.434834834834835,15.238626331854779 + 03/31 08:06:40,13.434834834834835,13.434834834834835,15.238056999136811 + 03/31 08:10:00,13.434834834834835,13.434834834834835,15.238161370384282 + 03/31 08:20:00,13.363363363363364,13.363363363363364,15.181313087376808 + 03/31 08:30:00,13.291891891891894,13.291891891891894,15.13728947262695 + 03/31 08:40:00,13.220420420420421,13.220420420420421,15.096732419669732 + 03/31 08:50:00,13.148948948948949,13.148948948948949,15.059111558369749 + 03/31 09:00:00,13.077477477477478,13.077477477477478,15.024074551041789 + 03/31 09:10:00,13.052252252252253,13.052252252252253,14.99234418497125 + 03/31 09:20:00,13.027027027027028,13.027027027027028,14.952199598502 + 03/31 09:30:00,13.001801801801803,13.001801801801803,14.924405747408854 + 03/31 09:40:00,12.976576576576577,12.976576576576577,14.898260795518273 + 03/31 09:50:00,12.951351351351353,12.951351351351353,14.872848332322484 + 03/31 10:00:00,12.926126126126127,12.926126126126127,14.84795554897095 + 03/31 10:10:00,12.87987987987988,12.87987987987988,14.823365465277961 + 03/31 10:20:00,12.833633633633636,12.833633633633636,14.795754626169437 + 03/31 10:25:00,12.8,12.8,14.775103028471488 + 03/31 10:30:00,12.8,12.8,14.774700536843572 + 03/31 10:40:00,12.8,12.8,14.75109355224615 + 03/31 10:45:00,12.8,12.8,14.733051889174309 + 03/31 10:50:00,12.8,12.8,14.731740239721792 + 03/31 11:00:00,12.8,12.8,14.714752332579322 + 03/31 11:10:00,12.85885885885886,12.85885885885886,14.702292282841463 + 03/31 11:20:00,13.06906906906907,13.06906906906907,14.703824251142269 + 03/31 11:30:00,13.27927927927928,13.27927927927928,14.696617077578935 + 03/31 11:40:00,13.48948948948949,13.48948948948949,14.69185102490559 + 03/31 11:50:00,13.699699699699702,13.699699699699702,14.688964706732202 + 03/31 12:00:00,13.90990990990991,13.90990990990991,14.683683267588814 + 03/31 12:10:00,14.027627627627627,14.027627627627627,14.67887682336448 + 03/31 12:20:00,14.145345345345346,14.145345345345346,14.66536671427369 + 03/31 12:30:00,14.263063063063063,14.263063063063063,14.658139960398158 + 03/31 12:40:00,14.380780780780782,14.380780780780782,14.65231267023825 + 03/31 12:50:00,14.498498498498499,14.498498498498499,14.638330467807338 + 03/31 13:00:00,14.616216216216217,14.616216216216217,14.625658102187506 + 03/31 13:10:00,14.641441441441442,14.641441441441442,14.606957007004383 + 03/31 13:20:00,14.666666666666666,14.666666666666666,14.596069446164544 + 03/31 13:30:00,14.691891891891892,14.691891891891892,14.580552706307659 + 03/31 13:40:00,14.717117117117118,14.717117117117118,14.56357942224957 + 03/31 13:50:00,14.742342342342342,14.742342342342342,14.550044767282128 + 03/31 14:00:00,14.767567567567568,14.767567567567568,14.53513390457808 + 03/31 14:10:00,14.696096096096096,14.696096096096096,14.525775829072084 + 03/31 14:20:00,14.624624624624625,14.624624624624625,14.520046538098259 + 03/31 14:30:00,14.553153153153153,14.553153153153153,14.510747478433581 + 03/31 14:40:00,14.481681681681682,14.481681681681682,14.503269062096426 + 03/31 14:50:00,14.41021021021021,14.41021021021021,14.491972682626582 + 03/31 15:00:00,14.338738738738739,14.338738738738739,14.479576679501112 + 03/31 15:05:00,14.246246246246246,14.246246246246246,16.618070978979025 + 03/31 15:10:00,14.246246246246246,14.246246246246246,16.617009637101824 + 03/31 15:20:00,14.153753753753755,14.153753753753755,16.85386504143055 + 03/31 15:30:00,14.061261261261262,14.061261261261262,16.94260529537072 + 03/31 15:40:00,13.96876876876877,13.96876876876877,17.008810754748749 + 03/31 15:50:00,13.876276276276278,13.876276276276278,17.059940373001287 + 03/31 16:00:00,13.783783783783785,13.783783783783785,17.10101125954705 + 03/31 16:10:00,13.737537537537538,13.737537537537538,17.16420233858657 + 03/31 16:20:00,13.691291291291293,13.691291291291293,17.214315242896619 + 03/31 16:30:00,13.645045045045047,13.645045045045047,17.24162293392998 + 03/31 16:40:00,13.5987987987988,13.5987987987988,17.26617243323501 + 03/31 16:50:00,13.552552552552554,13.552552552552554,17.288909048828168 + 03/31 17:00:00,13.506306306306307,13.506306306306307,17.310081642048059 + 03/31 17:10:00,13.527327327327328,13.527327327327328,17.34333370277759 + 03/31 17:20:00,13.548348348348349,13.548348348348349,17.365491043896275 + 03/31 17:30:00,13.56936936936937,13.56936936936937,17.381542916808664 + 03/31 17:40:00,13.590390390390392,13.590390390390392,17.39646326966603 + 03/31 17:50:00,13.611411411411412,13.611411411411412,17.410862512997715 + 03/31 18:00:00,13.632432432432433,13.632432432432433,17.424656459095716 + 03/31 18:10:00,13.67867867867868,13.67867867867868,17.437481503363605 + 03/31 18:20:00,13.724924924924924,13.724924924924924,17.454670025044263 + 03/31 18:30:00,13.771171171171173,13.771171171171173,17.470953231255803 + 03/31 18:40:00,13.817417417417419,13.817417417417419,17.487329954433976 + 03/31 18:50:00,13.863663663663666,13.863663663663666,17.50275611889806 + 03/31 19:00:00,13.90990990990991,13.90990990990991,17.517644958675246 + 03/31 19:10:00,14.006606606606607,14.006606606606607,17.54620164873761 + 03/31 19:20:00,14.103303303303303,14.103303303303303,17.561944806658809 + 03/31 19:30:00,14.2,14.2,17.576595401631879 + 03/31 19:40:00,14.296696696696696,14.296696696696696,17.590547975812613 + 03/31 19:50:00,14.393393393393394,14.393393393393394,17.603791183349647 + 03/31 20:00:00,14.49009009009009,14.49009009009009,17.616539901488097 + 03/31 20:10:00,14.557357357357358,14.557357357357358,17.605766194811868 + 03/31 20:20:00,14.624624624624625,14.624624624624625,17.621938884601137 + 03/31 20:30:00,14.691891891891892,14.691891891891892,17.633202356452299 + 03/31 20:40:00,14.759159159159159,14.759159159159159,17.64411879377655 + 03/31 20:50:00,14.826426426426427,14.826426426426427,17.65464280273305 + 03/31 21:00:00,14.893693693693694,14.893693693693694,17.664820629529247 + 03/31 21:10:00,14.902102102102102,14.902102102102102,17.67451881106798 + 03/31 21:20:00,14.91051051051051,14.91051051051051,17.684011799199025 + 03/31 21:30:00,14.91891891891892,14.91891891891892,17.693082116399319 + 03/31 21:40:00,14.927327327327328,14.927327327327328,17.70173155852046 + 03/31 21:50:00,14.935735735735737,14.935735735735737,17.709938425808475 + 03/31 22:00:00,14.944144144144144,14.944144144144144,17.717875492942665 + 03/31 22:10:00,14.956756756756758,14.956756756756758,19.095399562983518 + 03/31 22:20:00,14.96936936936937,14.96936936936937,19.240810481752705 + 03/31 22:30:00,14.981981981981982,14.981981981981982,19.30575508031057 + 03/31 22:40:00,14.994594594594595,14.994594594594595,19.356741213201326 + 03/31 22:50:00,15.007207207207208,15.007207207207208,19.398105850425748 + 03/31 23:00:00,15.01981981981982,15.01981981981982,19.432974954958536 + 03/31 23:10:00,15.028228228228228,15.028228228228228,19.46315471914427 + 03/31 23:20:00,15.036636636636637,15.036636636636637,19.490144966528516 + 03/31 23:30:00,15.045045045045045,15.045045045045045,19.514403691750727 + 03/31 23:40:00,15.053453453453454,15.053453453453454,19.53666527756411 + 03/31 23:50:00,15.061861861861863,15.061861861861863,19.557200238685739 + 03/31 24:00:00,15.07027027027027,15.07027027027027,19.57626307557745 + 04/01 00:10:00,15.082882882882883,15.082882882882883,19.59393859214423 + 04/01 00:20:00,15.095495495495495,15.095495495495495,19.609803711201328 + 04/01 00:30:00,15.108108108108109,15.108108108108109,19.624308795800716 + 04/01 00:40:00,15.12072072072072,15.12072072072072,19.637518753926736 + 04/01 00:50:00,15.133333333333333,15.133333333333333,19.64961713234874 + 04/01 01:00:00,15.145945945945945,15.145945945945945,19.660733252804265 + 04/01 01:10:00,15.154354354354354,15.154354354354354,19.671021737778039 + 04/01 01:20:00,15.162762762762763,15.162762762762763,19.681480752896847 + 04/01 01:30:00,15.17117117117117,15.17117117117117,19.691640019029074 + 04/01 01:40:00,15.17957957957958,15.17957957957958,19.701682099133664 + 04/01 01:50:00,15.187987987987988,15.187987987987988,19.711333882315019 + 04/01 02:00:00,15.196396396396397,15.196396396396397,19.720679710010786 + 04/01 02:10:00,15.209009009009009,15.209009009009009,19.72970525135832 + 04/01 02:20:00,15.22162162162162,15.22162162162162,19.73806218102951 + 04/01 02:30:00,15.234234234234235,15.234234234234235,19.74619273124992 + 04/01 02:40:00,15.246846846846847,15.246846846846847,19.75395631668137 + 04/01 02:50:00,15.259459459459459,15.259459459459459,19.76161189458124 + 04/01 03:00:00,15.272072072072073,15.272072072072073,19.768901146389824 + 04/01 03:10:00,15.28048048048048,15.28048048048048,19.77615849688584 + 04/01 03:20:00,15.288888888888888,15.288888888888888,19.783124008843374 + 04/01 03:30:00,15.297297297297297,15.297297297297297,19.789884329095277 + 04/01 03:40:00,15.305705705705705,15.305705705705705,19.796430237418237 + 04/01 03:50:00,15.314114114114114,15.314114114114114,19.80273459863734 + 04/01 04:00:00,15.322522522522523,15.322522522522523,19.80890108634423 + 04/01 04:10:00,15.276276276276276,15.276276276276276,19.814831712607455 + 04/01 04:20:00,15.23003003003003,15.23003003003003,19.820676951146056 + 04/01 04:30:00,15.183783783783785,15.183783783783785,19.826261800451058 + 04/01 04:40:00,15.137537537537538,15.137537537537538,19.831591528029546 + 04/01 04:50:00,15.091291291291292,15.091291291291292,19.836649904507188 + 04/01 05:00:00,15.045045045045045,15.045045045045045,19.841526489826657 + 04/01 05:10:00,15.01981981981982,15.01981981981982,19.84462765570939 + 04/01 05:20:00,14.994594594594594,14.994594594594594,19.847731578693784 + 04/01 05:30:00,14.96936936936937,14.96936936936937,19.85076821745514 + 04/01 05:40:00,14.944144144144144,14.944144144144144,19.85369616664994 + 04/01 05:50:00,14.91891891891892,14.91891891891892,19.856753023254819 + 04/01 06:00:00,14.893693693693694,14.893693693693694,19.859850245072449 + 04/01 06:10:00,14.893693693693694,14.893693693693694,19.19966956863096 + 04/01 06:20:00,14.893693693693694,14.893693693693694,19.133465942582285 + 04/01 06:30:00,14.893693693693694,14.893693693693694,19.108295667613054 + 04/01 06:40:00,14.893693693693694,14.893693693693694,19.089095057935844 + 04/01 06:50:00,14.893693693693694,14.893693693693694,19.074051203192029 + 04/01 07:00:00,14.893693693693694,14.893693693693694,19.06159411195131 + 04/01 07:10:00,14.986186186186187,14.986186186186187,17.970557364385504 + 04/01 07:20:00,15.078678678678678,15.078678678678678,17.82635921731348 + 04/01 07:30:00,15.17117117117117,15.17117117117117,17.767850488485857 + 04/01 07:40:00,15.263663663663664,15.263663663663664,17.722155716433556 + 04/01 07:50:00,15.356156156156157,15.356156156156157,17.68522563648602 + 04/01 08:00:00,15.448648648648648,15.448648648648648,17.653816602815455 + 04/01 08:10:00,15.356156156156157,15.356156156156157,17.628646740140704 + 04/01 08:20:00,15.263663663663664,15.263663663663664,17.594672708893996 + 04/01 08:30:00,15.17117117117117,15.17117117117117,17.57074895692096 + 04/01 08:40:00,15.078678678678678,15.078678678678678,17.54751428490515 + 04/01 08:50:00,14.986186186186187,14.986186186186187,17.5257131448196 + 04/01 09:00:00,14.893693693693694,14.893693693693694,17.505315676249844 + 04/01 09:10:00,14.872672672672673,14.872672672672673,17.4845464603201 + 04/01 09:20:00,14.85165165165165,14.85165165165165,17.457760269410284 + 04/01 09:30:00,14.83063063063063,14.83063063063063,17.441266728533308 + 04/01 09:40:00,14.809609609609609,14.809609609609609,17.42623443609121 + 04/01 09:50:00,14.788588588588589,14.788588588588589,17.41189751918069 + 04/01 10:00:00,14.767567567567568,14.767567567567568,17.39804400066922 + 04/01 10:10:00,14.767567567567568,14.767567567567568,17.385228466998034 + 04/01 10:20:00,14.767567567567568,14.767567567567568,17.374713325630919 + 04/01 10:30:00,14.767567567567568,14.767567567567568,17.364758140679784 + 04/01 10:40:00,14.767567567567568,14.767567567567568,17.355351212017898 + 04/01 10:50:00,14.767567567567568,14.767567567567568,17.34552394132888 + 04/01 11:00:00,14.767567567567568,14.767567567567568,17.335094425501877 + 04/01 11:10:00,14.670870870870872,14.670870870870872,17.322649129860105 + 04/01 11:20:00,14.574174174174175,14.574174174174175,17.30877223195345 + 04/01 11:30:00,14.477477477477479,14.477477477477479,17.294079228411549 + 04/01 11:40:00,14.380780780780782,14.380780780780782,17.278548944918716 + 04/01 11:50:00,14.284084084084084,14.284084084084084,17.262360877864695 + 04/01 12:00:00,14.187387387387388,14.187387387387388,17.245575191266533 + 04/01 12:10:00,14.166366366366367,14.166366366366367,17.229025796911875 + 04/01 12:20:00,14.145345345345346,14.145345345345346,17.212814413165384 + 04/01 12:30:00,14.124324324324324,14.124324324324324,17.19674520735728 + 04/01 12:40:00,14.103303303303303,14.103303303303303,17.182012003248429 + 04/01 12:50:00,14.082282282282283,14.082282282282283,17.170189743780769 + 04/01 13:00:00,14.061261261261262,14.061261261261262,17.161740260059977 + 04/01 13:10:00,14.015015015015015,14.015015015015015,17.155486042293455 + 04/01 13:20:00,13.968768768768769,13.968768768768769,17.151373874527719 + 04/01 13:30:00,13.922522522522524,13.922522522522524,17.148857593596884 + 04/01 13:40:00,13.876276276276278,13.876276276276278,17.146881226002816 + 04/01 13:50:00,13.83003003003003,13.83003003003003,17.144082492169014 + 04/01 14:00:00,13.783783783783785,13.783783783783785,17.139929201896576 + 04/01 14:10:00,13.783783783783785,13.783783783783785,17.134877318044695 + 04/01 14:20:00,13.783783783783785,13.783783783783785,17.129160201774846 + 04/01 14:30:00,13.783783783783785,13.783783783783785,17.122822930058825 + 04/01 14:40:00,13.783783783783785,13.783783783783785,17.116621370706235 + 04/01 14:50:00,13.783783783783785,13.783783783783785,17.11152532929218 + 04/01 15:00:00,13.783783783783785,13.783783783783785,17.108105847348474 + 04/01 15:10:00,13.783783783783785,13.783783783783785,17.10682110788086 + 04/01 15:20:00,13.783783783783785,13.783783783783785,17.106203050175016 + 04/01 15:30:00,13.783783783783785,13.783783783783785,17.106641423904248 + 04/01 15:40:00,13.783783783783785,13.783783783783785,17.106443519827985 + 04/01 15:50:00,13.783783783783785,13.783783783783785,17.105983089221085 + 04/01 16:00:00,13.783783783783785,13.783783783783785,17.106923245437586 + 04/01 16:10:00,13.758558558558559,13.758558558558559,17.12009563796033 + 04/01 16:20:00,13.733333333333335,13.733333333333335,17.130058750723557 + 04/01 16:30:00,13.708108108108109,13.708108108108109,17.13060548071406 + 04/01 16:40:00,13.682882882882883,13.682882882882883,17.131224266452635 + 04/01 16:50:00,13.657657657657659,13.657657657657659,17.132178499646323 + 04/01 17:00:00,13.632432432432433,13.632432432432433,17.13360877712502 + 04/01 17:10:00,13.657657657657659,13.657657657657659,18.900797219618498 + 04/01 17:20:00,13.682882882882883,13.682882882882883,19.111337811962416 + 04/01 17:30:00,13.708108108108109,13.708108108108109,19.194392510081447 + 04/01 17:40:00,13.733333333333335,13.733333333333335,19.259310756496729 + 04/01 17:50:00,13.758558558558559,13.758558558558559,19.311135739924326 + 04/01 18:00:00,13.783783783783785,13.783783783783785,19.35405756125389 + 04/01 18:10:00,13.783783783783785,13.783783783783785,19.40394518527142 + 04/01 18:20:00,13.783783783783785,13.783783783783785,19.436845853133624 + 04/01 18:30:00,13.783783783783785,13.783783783783785,19.465830717485749 + 04/01 18:40:00,13.783783783783785,13.783783783783785,19.491901078605328 + 04/01 18:50:00,13.783783783783785,13.783783783783785,19.51554104864561 + 04/01 19:00:00,13.783783783783785,13.783783783783785,19.537280208982776 + 04/01 19:10:00,13.83003003003003,13.83003003003003,19.55763669566432 + 04/01 19:20:00,13.876276276276276,13.876276276276276,19.57767852708499 + 04/01 19:30:00,13.922522522522524,13.922522522522524,19.596271381773187 + 04/01 19:40:00,13.968768768768769,13.968768768768769,19.61379720303927 + 04/01 19:50:00,14.015015015015015,14.015015015015015,19.63005674016098 + 04/01 20:00:00,14.061261261261262,14.061261261261262,19.645310713240638 + 04/01 20:10:00,14.107507507507508,14.107507507507508,19.637646810117585 + 04/01 20:20:00,14.153753753753755,14.153753753753755,19.651097177762155 + 04/01 20:30:00,14.2,14.2,19.663988280109157 + 04/01 20:40:00,14.246246246246246,14.246246246246246,19.67618703709409 + 04/01 20:50:00,14.292492492492493,14.292492492492493,19.687970740139929 + 04/01 21:00:00,14.338738738738739,14.338738738738739,19.69944759875371 + 04/01 21:10:00,14.338738738738739,14.338738738738739,19.70995376117586 + 04/01 21:20:00,14.338738738738739,14.338738738738739,19.71981182729092 + 04/01 21:30:00,14.338738738738739,14.338738738738739,19.729264544294716 + 04/01 21:40:00,14.338738738738739,14.338738738738739,19.738238375633146 + 04/01 21:50:00,14.338738738738739,14.338738738738739,19.746980059489827 + 04/01 22:00:00,14.338738738738739,14.338738738738739,19.75543894969203 + 04/01 22:10:00,14.363963963963965,14.363963963963965,19.764059056849076 + 04/01 22:20:00,14.389189189189189,14.389189189189189,19.772544609859126 + 04/01 22:30:00,14.414414414414415,14.414414414414415,19.780465009075397 + 04/01 22:40:00,14.439639639639639,14.439639639639639,19.788101659750873 + 04/01 22:50:00,14.464864864864865,14.464864864864865,19.79531043279363 + 04/01 23:00:00,14.49009009009009,14.49009009009009,19.80212146333969 + 04/01 23:10:00,14.464864864864865,14.464864864864865,19.808107340008314 + 04/01 23:20:00,14.439639639639639,14.439639639639639,19.813392753931475 + 04/01 23:30:00,14.414414414414415,14.414414414414415,19.818300250916886 + 04/01 23:40:00,14.389189189189189,14.389189189189189,19.822786861329108 + 04/01 23:50:00,14.363963963963965,14.363963963963965,19.826881243107978 + 04/01 24:00:00,14.338738738738739,14.338738738738739,19.830679311182779 + 04/02 00:10:00,14.338738738738739,14.338738738738739,19.834878567597788 + 04/02 00:20:00,14.338738738738739,14.338738738738739,19.839542290540064 + 04/02 00:30:00,14.338738738738739,14.338738738738739,19.84448792583545 + 04/02 00:40:00,14.338738738738739,14.338738738738739,19.84976349718628 + 04/02 00:50:00,14.338738738738739,14.338738738738739,19.85522330496849 + 04/02 01:00:00,14.338738738738739,14.338738738738739,19.860782051442948 + 04/02 01:10:00,14.338738738738739,14.338738738738739,19.86537258624074 + 04/02 01:20:00,14.338738738738739,14.338738738738739,19.869639639575494 + 04/02 01:30:00,14.338738738738739,14.338738738738739,19.873492010845266 + 04/02 01:40:00,14.338738738738739,14.338738738738739,19.876913536683494 + 04/02 01:50:00,14.338738738738739,14.338738738738739,19.879959545159097 + 04/02 02:00:00,14.338738738738739,14.338738738738739,19.882578945660059 + 04/02 02:10:00,14.338738738738739,14.338738738738739,19.884899265264278 + 04/02 02:20:00,14.338738738738739,14.338738738738739,19.8875459953553 + 04/02 02:30:00,14.338738738738739,14.338738738738739,19.890219121213 + 04/02 02:40:00,14.338738738738739,14.338738738738739,19.89304131625428 + 04/02 02:50:00,14.338738738738739,14.338738738738739,19.89580062918174 + 04/02 03:00:00,14.338738738738739,14.338738738738739,19.898634289620455 + 04/02 03:10:00,14.41021021021021,14.41021021021021,19.902375624527978 + 04/02 03:20:00,14.481681681681682,14.481681681681682,19.90648302624652 + 04/02 03:30:00,14.553153153153153,14.553153153153153,19.91085246398889 + 04/02 03:40:00,14.624624624624625,14.624624624624625,19.915446474632995 + 04/02 03:50:00,14.696096096096096,14.696096096096096,19.920266109833237 + 04/02 04:00:00,14.767567567567568,14.767567567567568,19.925294677275077 + 04/02 04:10:00,14.767567567567568,14.767567567567568,19.93039873755105 + 04/02 04:20:00,14.767567567567568,14.767567567567568,19.935229566258778 + 04/02 04:30:00,14.767567567567568,14.767567567567568,19.93977511594425 + 04/02 04:40:00,14.767567567567568,14.767567567567568,19.944002004798109 + 04/02 04:50:00,14.767567567567568,14.767567567567568,19.948057001496218 + 04/02 05:00:00,14.767567567567568,14.767567567567568,19.95190208758042 + 04/02 05:10:00,14.767567567567568,14.767567567567568,19.9551353832081 + 04/02 05:20:00,14.767567567567568,14.767567567567568,19.958333923489798 + 04/02 05:30:00,14.767567567567568,14.767567567567568,19.961496909741667 + 04/02 05:40:00,14.767567567567568,14.767567567567568,19.964805147316253 + 04/02 05:50:00,14.767567567567568,14.767567567567568,19.968167180273356 + 04/02 06:00:00,14.767567567567568,14.767567567567568,19.97157649575422 + 04/02 06:10:00,14.788588588588589,14.788588588588589,19.997606811263276 + 04/02 06:20:00,14.809609609609609,14.809609609609609,20.00068847203261 + 04/02 06:30:00,14.83063063063063,14.83063063063063,20.00325314723753 + 04/02 06:40:00,14.85165165165165,14.85165165165165,20.00502022878852 + 04/02 06:50:00,14.872672672672673,14.872672672672673,20.006118236454165 + 04/02 07:00:00,14.893693693693694,14.893693693693694,20.006710500894785 + 04/02 07:10:00,14.872672672672673,14.872672672672673,18.60983472639757 + 04/02 07:20:00,14.85165165165165,14.85165165165165,18.44501631569244 + 04/02 07:30:00,14.83063063063063,14.83063063063063,18.3810337880466 + 04/02 07:40:00,14.809609609609609,14.809609609609609,18.33097375432277 + 04/02 07:50:00,14.788588588588589,14.788588588588589,18.2909600361088 + 04/02 08:00:00,14.767567567567568,14.767567567567568,18.25789633908542 + 04/02 08:10:00,14.670870870870872,14.670870870870872,18.22972995180599 + 04/02 08:20:00,14.574174174174175,14.574174174174175,18.1964273754093 + 04/02 08:30:00,14.477477477477479,14.477477477477479,18.17435120122851 + 04/02 08:40:00,14.380780780780782,14.380780780780782,18.154124297636188 + 04/02 08:50:00,14.284084084084084,14.284084084084084,18.134548394217054 + 04/02 09:00:00,14.187387387387388,14.187387387387388,18.115447621702925 + 04/02 09:10:00,14.12012012012012,14.12012012012012,18.09715211618762 + 04/02 09:20:00,14.052852852852853,14.052852852852853,18.06891081752027 + 04/02 09:30:00,13.985585585585586,13.985585585585586,18.049660056198627 + 04/02 09:40:00,13.91831831831832,13.91831831831832,18.030323384195108 + 04/02 09:50:00,13.851051051051052,13.851051051051052,18.011009991835409 + 04/02 10:00:00,13.783783783783785,13.783783783783785,17.99150949061095 + 04/02 10:10:00,13.61981981981982,13.61981981981982,17.971381306685477 + 04/02 10:20:00,13.455855855855857,13.455855855855857,17.952360536557309 + 04/02 10:30:00,13.291891891891894,13.291891891891894,17.932803101574927 + 04/02 10:40:00,13.127927927927928,13.127927927927928,17.913337658874025 + 04/02 10:50:00,12.963963963963965,12.963963963963965,17.89448510777998 + 04/02 11:00:00,12.8,12.8,17.876463389730739 + 04/02 11:10:00,12.8,12.8,17.85777211366149 + 04/02 11:20:00,12.8,12.8,17.840557894502564 + 04/02 11:30:00,12.8,12.8,17.82386355766989 + 04/02 11:40:00,12.8,12.8,17.808880148390395 + 04/02 11:50:00,12.8,12.8,17.796643745792158 + 04/02 12:00:00,12.8,12.8,17.78765946173353 + 04/02 12:10:00,12.8,12.8,17.7818712335184 + 04/02 12:20:00,12.8,12.8,17.778538742676898 + 04/02 12:30:00,12.8,12.8,17.777345867222978 + 04/02 12:40:00,12.8,12.8,17.77665976091682 + 04/02 12:50:00,12.8,12.8,17.774055610501788 + 04/02 13:00:00,12.8,12.8,17.76857864216742 + 04/02 13:10:00,12.8,12.8,17.76037958904147 + 04/02 13:20:00,12.8,12.8,17.750187610501209 + 04/02 13:30:00,12.8,12.8,17.738378967826188 + 04/02 13:40:00,12.8,12.8,17.726560992887355 + 04/02 13:50:00,12.8,12.8,17.716643857703035 + 04/02 14:00:00,12.8,12.8,17.70915481582881 + 04/02 14:10:00,12.8,12.8,17.70348323021952 + 04/02 14:20:00,12.8,12.8,17.69940939419954 + 04/02 14:30:00,12.8,12.8,17.69637594457157 + 04/02 14:40:00,12.8,12.8,17.693838869314729 + 04/02 14:50:00,12.8,12.8,17.691463719173027 + 04/02 15:00:00,12.8,12.8,17.688985574735378 + 04/02 15:10:00,12.8,12.8,19.101984030994914 + 04/02 15:20:00,12.8,12.8,19.252168867685545 + 04/02 15:30:00,12.8,12.8,19.314957089440129 + 04/02 15:40:00,12.8,12.8,19.364028432803776 + 04/02 15:50:00,12.8,12.8,19.402625366995506 + 04/02 16:00:00,12.8,12.8,19.433397253970769 + 04/02 16:10:00,12.8,12.8,19.458894440750585 + 04/02 16:20:00,12.8,12.8,19.489412906246146 + 04/02 16:30:00,12.8,12.8,19.50887392641214 + 04/02 16:40:00,12.8,12.8,19.52581677252934 + 04/02 16:50:00,12.8,12.8,19.541462776630906 + 04/02 17:00:00,12.8,12.8,19.55588361934985 + 04/02 17:10:00,12.8,12.8,19.570040506877814 + 04/02 17:20:00,12.8,12.8,19.600953879736914 + 04/02 17:30:00,12.8,12.8,19.6106967457896 + 04/02 17:40:00,12.8,12.8,19.622745257094374 + 04/02 17:50:00,12.8,12.8,19.634554354754927 + 04/02 18:00:00,12.8,12.8,19.644182850430153 + 04/02 18:10:00,12.8,12.8,19.654904341274418 + 04/02 18:20:00,12.8,12.8,19.665803830715399 + 04/02 18:30:00,12.8,12.8,19.67530338020958 + 04/02 18:40:00,12.8,12.8,19.6853190113037 + 04/02 18:50:00,12.8,12.8,19.694713768537456 + 04/02 19:00:00,12.8,12.8,19.70424389684152 + 04/02 19:10:00,12.8,12.8,19.71413880525546 + 04/02 19:20:00,12.8,12.8,19.72427426802125 + 04/02 19:30:00,12.8,12.8,19.73415124188648 + 04/02 19:40:00,12.8,12.8,19.74377390907695 + 04/02 19:50:00,12.8,12.8,19.75316691932939 + 04/02 20:00:00,12.8,12.8,19.762294700892804 + 04/02 20:10:00,12.8,12.8,19.74814198639058 + 04/02 20:20:00,12.8,12.8,19.75556128966529 + 04/02 20:30:00,12.8,12.8,19.762199952471826 + 04/02 20:40:00,12.8,12.8,19.768224393388097 + 04/02 20:50:00,12.8,12.8,19.77363751955493 + 04/02 21:00:00,12.8,12.8,19.77851620116897 + 04/02 21:10:00,12.8,12.8,19.78300004822283 + 04/02 21:20:00,12.8,12.8,19.788115490585878 + 04/02 21:30:00,12.8,12.8,19.792892497704913 + 04/02 21:40:00,12.8,12.8,19.79754463165782 + 04/02 21:50:00,12.8,12.8,19.80186709331094 + 04/02 22:00:00,12.8,12.8,19.80593202256593 + 04/02 22:10:00,12.8,12.8,19.80987068774012 + 04/02 22:20:00,12.8,12.8,19.81214544188264 + 04/02 22:30:00,12.8,12.8,19.814690286180097 + 04/02 22:40:00,12.8,12.8,19.817052869695404 + 04/02 22:50:00,12.8,12.8,19.819596856738227 + 04/02 23:00:00,12.8,12.8,19.82218253562356 + 04/02 23:10:00,12.8,12.8,19.824594760780078 + 04/02 23:20:00,12.8,12.8,19.828234972556375 + 04/02 23:30:00,12.8,12.8,19.831666334077157 + 04/02 23:40:00,12.8,12.8,19.835194881672984 + 04/02 23:50:00,12.8,12.8,19.838522093403605 + 04/02 24:00:00,12.8,12.8,19.84168925738738 + 04/03 00:10:00,12.8,12.8,19.84512713327017 + 04/03 00:20:00,12.8,12.8,19.847755704122389 + 04/03 00:30:00,12.8,12.8,19.850367446477564 + 04/03 00:40:00,12.8,12.8,19.852810921893395 + 04/03 00:50:00,12.8,12.8,19.855132308651773 + 04/03 01:00:00,12.8,12.8,19.857502880572534 + 04/03 01:10:00,12.8,12.8,19.85928356607644 + 04/03 01:20:00,12.8,12.8,19.861008194766769 + 04/03 01:30:00,12.8,12.8,19.862702345046569 + 04/03 01:40:00,12.8,12.8,19.864277875080317 + 04/03 01:50:00,12.8,12.8,19.86589382661019 + 04/03 02:00:00,12.8,12.8,19.867495018529419 + 04/03 02:10:00,12.821021021021022,12.821021021021022,19.86957077336933 + 04/03 02:20:00,12.842042042042042,12.842042042042042,19.871588922363427 + 04/03 02:30:00,12.863063063063063,12.863063063063063,19.873577809022515 + 04/03 02:40:00,12.884084084084084,12.884084084084084,19.875604240600173 + 04/03 02:50:00,12.905105105105106,12.905105105105106,19.87769590637325 + 04/03 03:00:00,12.926126126126127,12.926126126126127,19.87980268815693 + 04/03 03:10:00,12.926126126126127,12.926126126126127,19.88181961960044 + 04/03 03:20:00,12.926126126126127,12.926126126126127,19.883827778287995 + 04/03 03:30:00,12.926126126126127,12.926126126126127,19.88573156101151 + 04/03 03:40:00,12.926126126126127,12.926126126126127,19.88763799233626 + 04/03 03:50:00,12.926126126126127,12.926126126126127,19.889468820442873 + 04/03 04:00:00,12.926126126126127,12.926126126126127,19.89123436537633 + 04/03 04:10:00,13.022822822822823,13.022822822822823,19.89346222258273 + 04/03 04:20:00,13.11951951951952,13.11951951951952,19.895790060583875 + 04/03 04:30:00,13.216216216216216,13.216216216216216,19.898398238151537 + 04/03 04:40:00,13.312912912912914,13.312912912912914,19.901137195773253 + 04/03 04:50:00,13.40960960960961,13.40960960960961,19.90396352997899 + 04/03 05:00:00,13.506306306306307,13.506306306306307,19.90686132276555 + 04/03 05:10:00,13.645045045045047,13.645045045045047,19.909556018729764 + 04/03 05:20:00,13.783783783783785,13.783783783783785,19.909367580513288 + 04/03 05:30:00,13.922522522522524,13.922522522522524,19.909872114851347 + 04/03 05:40:00,14.061261261261262,14.061261261261262,19.909973414475638 + 04/03 05:50:00,14.200000000000001,14.200000000000001,19.910445135283795 + 04/03 06:00:00,14.338738738738739,14.338738738738739,19.911059943745827 + 04/03 06:10:00,14.363963963963965,14.363963963963965,17.915307305174406 + 04/03 06:20:00,14.389189189189189,14.389189189189189,17.679380301090288 + 04/03 06:30:00,14.414414414414415,14.414414414414415,17.592032146488639 + 04/03 06:40:00,14.439639639639639,14.439639639639639,17.5238259380336 + 04/03 06:50:00,14.464864864864865,14.464864864864865,17.470024917887007 + 04/03 07:00:00,14.49009009009009,14.49009009009009,17.42532714928428 + 04/03 07:10:00,14.511111111111111,14.511111111111111,15.950129684689271 + 04/03 07:20:00,14.532132132132132,14.532132132132132,15.735206545921214 + 04/03 07:30:00,14.553153153153153,14.553153153153153,15.636296606706856 + 04/03 07:40:00,14.574174174174175,14.574174174174175,15.556016287404228 + 04/03 07:50:00,14.595195195195196,14.595195195195196,15.489641542686185 + 04/03 08:00:00,14.616216216216217,14.616216216216217,15.432701412101423 + 04/03 08:05:00,14.56996996996997,14.56996996996997,15.359171586259527 + 04/03 08:10:00,14.56996996996997,14.56996996996997,15.357548184833498 + 04/03 08:20:00,14.523723723723723,14.523723723723723,15.303010978191864 + 04/03 08:30:00,14.477477477477479,14.477477477477479,15.263228128545729 + 04/03 08:40:00,14.431231231231232,14.431231231231232,15.22266992672285 + 04/03 08:50:00,14.384984984984986,14.384984984984986,15.185293946385967 + 04/03 09:00:00,14.338738738738739,14.338738738738739,15.15017438891062 + 04/03 09:10:00,14.313513513513513,14.313513513513513,15.118042642429235 + 04/03 09:20:00,14.288288288288289,14.288288288288289,15.07770918286884 + 04/03 09:30:00,14.263063063063063,14.263063063063063,15.049661514521019 + 04/03 09:40:00,14.237837837837839,14.237837837837839,15.023239912366906 + 04/03 09:50:00,14.212612612612613,14.212612612612613,14.997810002697003 + 04/03 10:00:00,14.187387387387388,14.187387387387388,14.973193600965472 + 04/03 10:10:00,14.212612612612613,14.212612612612613,14.948818800389898 + 04/03 10:20:00,14.237837837837838,14.237837837837838,14.921632019823127 + 04/03 10:30:00,14.263063063063063,14.263063063063063,14.898545286504822 + 04/03 10:40:00,14.288288288288289,14.288288288288289,14.8762507745568 + 04/03 10:50:00,14.313513513513513,14.313513513513513,14.854926962751124 + 04/03 11:00:00,14.338738738738739,14.338738738738739,14.834522858844064 + 04/03 11:10:00,14.313513513513513,14.313513513513513,14.816248794717755 + 04/03 11:20:00,14.288288288288289,14.288288288288289,14.80886084887621 + 04/03 11:30:00,14.263063063063063,14.263063063063063,14.793137035907416 + 04/03 11:40:00,14.237837837837839,14.237837837837839,14.778616614837265 + 04/03 11:50:00,14.212612612612613,14.212612612612613,14.76404655636114 + 04/03 12:00:00,14.187387387387388,14.187387387387388,14.74717135596933 + 04/03 12:10:00,14.187387387387388,14.187387387387388,14.728728985481079 + 04/03 12:20:00,14.187387387387388,14.187387387387388,14.702428556387114 + 04/03 12:30:00,14.187387387387388,14.187387387387388,14.682261674512305 + 04/03 12:40:00,14.187387387387389,14.187387387387389,14.66468722527656 + 04/03 12:50:00,14.187387387387388,14.187387387387388,14.64663699354745 + 04/03 13:00:00,14.187387387387388,14.187387387387388,14.630229071923637 + 04/03 13:10:00,14.187387387387388,14.187387387387388,14.617194632545163 + 04/03 13:20:00,14.187387387387388,14.187387387387388,14.607543346440421 + 04/03 13:30:00,14.187387387387388,14.187387387387388,14.598069147864053 + 04/03 13:40:00,14.187387387387389,14.187387387387389,14.586810189072509 + 04/03 13:50:00,14.187387387387388,14.187387387387388,14.579688277841007 + 04/03 14:00:00,14.187387387387388,14.187387387387388,14.573292368024529 + 04/03 14:10:00,14.187387387387388,14.187387387387388,14.565554573517222 + 04/03 14:20:00,14.187387387387388,14.187387387387388,14.563988340532808 + 04/03 14:30:00,14.187387387387388,14.187387387387388,14.556761601632953 + 04/03 14:40:00,14.187387387387389,14.187387387387389,14.552163975632185 + 04/03 14:50:00,14.187387387387388,14.187387387387388,14.547776275624365 + 04/03 15:00:00,14.187387387387388,14.187387387387388,14.540988797935807 + 04/03 15:05:00,14.14114114114114,14.14114114114114,16.681619854071337 + 04/03 15:10:00,14.14114114114114,14.14114114114114,16.679738019468503 + 04/03 15:20:00,14.094894894894896,14.094894894894896,16.922923685972127 + 04/03 15:30:00,14.04864864864865,14.04864864864865,17.01465445802176 + 04/03 15:40:00,14.002402402402403,14.002402402402403,17.083560038010196 + 04/03 15:50:00,13.956156156156157,13.956156156156157,17.136705425872145 + 04/03 16:00:00,13.90990990990991,13.90990990990991,17.177861918974356 + 04/03 16:10:00,13.88888888888889,13.88888888888889,17.239883401114925 + 04/03 16:20:00,13.867867867867869,13.867867867867869,17.293188044154684 + 04/03 16:30:00,13.846846846846848,13.846846846846848,17.322987149939125 + 04/03 16:40:00,13.825825825825828,13.825825825825828,17.349661995700456 + 04/03 16:50:00,13.804804804804805,13.804804804804805,17.373292015798048 + 04/03 17:00:00,13.783783783783785,13.783783783783785,17.394398061797405 + 04/03 17:10:00,13.804804804804805,13.804804804804805,17.42579018800728 + 04/03 17:20:00,13.825825825825828,13.825825825825828,17.44804941543526 + 04/03 17:30:00,13.846846846846848,13.846846846846848,17.46405732080924 + 04/03 17:40:00,13.867867867867869,13.867867867867869,17.479661782840009 + 04/03 17:50:00,13.88888888888889,13.88888888888889,17.495674193716906 + 04/03 18:00:00,13.90990990990991,13.90990990990991,17.512275658682819 + 04/03 18:10:00,13.935135135135136,13.935135135135136,17.52932980841619 + 04/03 18:20:00,13.960360360360362,13.960360360360362,17.54583997177804 + 04/03 18:30:00,13.985585585585586,13.985585585585586,17.56177702971722 + 04/03 18:40:00,14.010810810810812,14.010810810810812,17.576908370418008 + 04/03 18:50:00,14.036036036036038,14.036036036036038,17.5910622615264 + 04/03 19:00:00,14.061261261261262,14.061261261261262,17.604570969002326 + 04/03 19:10:00,14.082282282282283,14.082282282282283,17.631444858173077 + 04/03 19:20:00,14.103303303303303,14.103303303303303,17.645051740298709 + 04/03 19:30:00,14.124324324324324,14.124324324324324,17.657730613878216 + 04/03 19:40:00,14.145345345345346,14.145345345345346,17.669629066049688 + 04/03 19:50:00,14.166366366366367,14.166366366366367,17.68090701168235 + 04/03 20:00:00,14.187387387387388,14.187387387387388,17.691635347123083 + 04/03 20:10:00,14.212612612612613,14.212612612612613,17.678327795111988 + 04/03 20:20:00,14.237837837837838,14.237837837837838,17.69164945916273 + 04/03 20:30:00,14.263063063063063,14.263063063063063,17.699982995021906 + 04/03 20:40:00,14.288288288288289,14.288288288288289,17.707955369829855 + 04/03 20:50:00,14.313513513513513,14.313513513513513,17.7155254026769 + 04/03 21:00:00,14.338738738738739,14.338738738738739,17.72272418764564 + 04/03 21:10:00,14.363963963963965,14.363963963963965,17.72962710612092 + 04/03 21:20:00,14.389189189189189,14.389189189189189,17.736229308071697 + 04/03 21:30:00,14.414414414414415,14.414414414414415,17.742630746519184 + 04/03 21:40:00,14.439639639639639,14.439639639639639,17.748821444224249 + 04/03 21:50:00,14.464864864864865,14.464864864864865,17.754775000115108 + 04/03 22:00:00,14.49009009009009,14.49009009009009,17.7606304737839 + 04/03 22:10:00,14.511111111111111,14.511111111111111,19.12550376647149 + 04/03 22:20:00,14.532132132132132,14.532132132132132,19.2690770746906 + 04/03 22:30:00,14.553153153153153,14.553153153153153,19.332632498312166 + 04/03 22:40:00,14.574174174174175,14.574174174174175,19.382875363991209 + 04/03 22:50:00,14.595195195195196,14.595195195195196,19.42365593210515 + 04/03 23:00:00,14.616216216216217,14.616216216216217,19.458065676703357 + 04/03 23:10:00,14.616216216216217,14.616216216216217,19.48744515667178 + 04/03 23:20:00,14.616216216216217,14.616216216216217,19.513468886582019 + 04/03 23:30:00,14.616216216216217,14.616216216216217,19.53624864369932 + 04/03 23:40:00,14.616216216216217,14.616216216216217,19.556553418121007 + 04/03 23:50:00,14.616216216216217,14.616216216216217,19.574632958627139 + 04/03 24:00:00,14.616216216216217,14.616216216216217,19.590766673530955 + 04/04 00:10:00,14.616216216216217,14.616216216216217,19.605499963884655 + 04/04 00:20:00,14.616216216216217,14.616216216216217,19.618985298554838 + 04/04 00:30:00,14.616216216216217,14.616216216216217,19.631721693518498 + 04/04 00:40:00,14.616216216216217,14.616216216216217,19.643822729296667 + 04/04 00:50:00,14.616216216216217,14.616216216216217,19.65539466598804 + 04/04 01:00:00,14.616216216216217,14.616216216216217,19.66649362534011 + 04/04 01:10:00,14.595195195195196,14.595195195195196,19.676837855235016 + 04/04 01:20:00,14.574174174174175,14.574174174174175,19.68682492517667 + 04/04 01:30:00,14.553153153153153,14.553153153153153,19.696671449474179 + 04/04 01:40:00,14.532132132132132,14.532132132132132,19.706209411928449 + 04/04 01:50:00,14.511111111111111,14.511111111111111,19.7154656004649 + 04/04 02:00:00,14.49009009009009,14.49009009009009,19.72445893194226 + 04/04 02:10:00,14.464864864864865,14.464864864864865,19.733243557822289 + 04/04 02:20:00,14.439639639639639,14.439639639639639,19.741946650635265 + 04/04 02:30:00,14.414414414414415,14.414414414414415,19.750180570177255 + 04/04 02:40:00,14.389189189189189,14.389189189189189,19.75791629455621 + 04/04 02:50:00,14.363963963963965,14.363963963963965,19.76526479297313 + 04/04 03:00:00,14.338738738738739,14.338738738738739,19.772096200933516 + 04/04 03:10:00,14.313513513513513,14.313513513513513,19.778018991815367 + 04/04 03:20:00,14.288288288288289,14.288288288288289,19.78372243903339 + 04/04 03:30:00,14.263063063063063,14.263063063063063,19.789248036233688 + 04/04 03:40:00,14.237837837837839,14.237837837837839,19.794624076025916 + 04/04 03:50:00,14.212612612612613,14.212612612612613,19.799792346135186 + 04/04 04:00:00,14.187387387387388,14.187387387387388,19.804857445296748 + 04/04 04:10:00,14.187387387387388,14.187387387387388,19.811492321601425 + 04/04 04:20:00,14.187387387387388,14.187387387387388,19.817821903941174 + 04/04 04:30:00,14.187387387387388,14.187387387387388,19.824229350880388 + 04/04 04:40:00,14.187387387387389,14.187387387387389,19.830601771188247 + 04/04 04:50:00,14.187387387387388,14.187387387387388,19.83709270458076 + 04/04 05:00:00,14.187387387387388,14.187387387387388,19.843686070637703 + 04/04 05:10:00,14.187387387387388,14.187387387387388,19.849170594532166 + 04/04 05:20:00,14.187387387387388,14.187387387387388,19.855090179518745 + 04/04 05:30:00,14.187387387387388,14.187387387387388,19.861068657780529 + 04/04 05:40:00,14.187387387387389,14.187387387387389,19.86713925471056 + 04/04 05:50:00,14.187387387387388,14.187387387387388,19.873318002247456 + 04/04 06:00:00,14.187387387387388,14.187387387387388,19.879502067547536 + 04/04 06:10:00,14.14114114114114,14.14114114114114,17.890746349454827 + 04/04 06:20:00,14.094894894894896,14.094894894894896,17.661747820569553 + 04/04 06:30:00,14.04864864864865,14.04864864864865,17.57868759916205 + 04/04 06:40:00,14.002402402402403,14.002402402402403,17.513745009647534 + 04/04 06:50:00,13.956156156156157,13.956156156156157,17.46206164704913 + 04/04 07:00:00,13.90990990990991,13.90990990990991,17.41885169045835 + 04/04 07:05:00,13.842642642642645,13.842642642642645,15.9324299700255 + 04/04 07:10:00,13.842642642642645,13.842642642642645,15.939553102132118 + 04/04 07:15:00,13.775375375375376,13.775375375375376,15.711971731120672 + 04/04 07:20:00,13.775375375375376,13.775375375375376,15.710257642669465 + 04/04 07:30:00,13.708108108108109,13.708108108108109,15.60681603067018 + 04/04 07:40:00,13.640840840840842,13.640840840840842,15.522815488487288 + 04/04 07:50:00,13.573573573573574,13.573573573573574,15.45019546269166 + 04/04 08:00:00,13.506306306306307,13.506306306306307,15.386668652399866 + 04/04 08:05:00,13.40960960960961,13.40960960960961,15.302576888867002 + 04/04 08:10:00,13.40960960960961,13.40960960960961,15.302793003652609 + 04/04 08:20:00,13.312912912912913,13.312912912912913,15.241053357823314 + 04/04 08:30:00,13.216216216216216,13.216216216216216,15.191421676304657 + 04/04 08:35:00,13.11951951951952,13.11951951951952,15.146007887531173 + 04/04 08:40:00,13.11951951951952,13.11951951951952,15.145938264881322 + 04/04 08:50:00,13.022822822822823,13.022822822822823,15.102947423535289 + 04/04 09:00:00,12.926126126126127,12.926126126126127,15.063657302435244 + 04/04 09:10:00,12.905105105105106,12.905105105105106,15.027469091681477 + 04/04 09:20:00,12.884084084084084,12.884084084084084,14.983372690236717 + 04/04 09:30:00,12.863063063063063,12.863063063063063,14.95198735965321 + 04/04 09:40:00,12.842042042042042,12.842042042042042,14.922644608715519 + 04/04 09:50:00,12.821021021021022,12.821021021021022,14.894802168321548 + 04/04 10:00:00,12.8,12.8,14.86830099825659 + 04/04 10:10:00,12.8,12.8,14.842789445142645 + 04/04 10:20:00,12.8,12.8,14.814842086628623 + 04/04 10:30:00,12.8,12.8,14.79136493155737 + 04/04 10:40:00,12.8,12.8,14.770911279454506 + 04/04 10:50:00,12.8,12.8,14.749870646718254 + 04/04 11:00:00,12.8,12.8,14.72972889925456 + 04/04 11:10:00,12.8,12.8,14.712638268369432 + 04/04 11:20:00,12.8,12.8,14.7039496067823 + 04/04 11:30:00,12.8,12.8,14.689462374586017 + 04/04 11:40:00,12.8,12.8,14.674775804377985 + 04/04 11:50:00,12.8,12.8,14.659063066211523 + 04/04 12:00:00,12.8,12.8,14.645393273358906 + 04/04 12:10:00,12.8,12.8,14.630560973489699 + 04/04 12:20:00,12.8,12.8,14.605492822848339 + 04/04 12:30:00,12.8,12.8,14.5919995475945 + 04/04 12:40:00,12.8,12.8,14.575036978878906 + 04/04 12:50:00,12.8,12.8,14.56026774699301 + 04/04 13:00:00,12.8,12.8,14.541897124099516 + 04/04 13:10:00,12.8,12.8,14.52394709224223 + 04/04 13:20:00,12.8,12.8,14.508066836587119 + 04/04 13:30:00,12.8,12.8,14.488005224643274 + 04/04 13:40:00,12.8,12.8,14.471125200744332 + 04/04 13:50:00,12.8,12.8,14.454593132234436 + 04/04 14:00:00,12.8,12.8,14.445238594029876 + 04/04 14:10:00,12.8,12.8,14.438274974192336 + 04/04 14:20:00,12.8,12.8,14.437335944961476 + 04/04 14:30:00,12.8,12.8,14.436718603038428 + 04/04 14:40:00,12.8,12.8,14.43396946010617 + 04/04 14:50:00,12.8,12.8,14.43247912903437 + 04/04 15:00:00,12.8,12.8,14.429845938622052 + 04/04 15:10:00,12.8,12.8,16.5682458052585 + 04/04 15:15:00,12.8,12.8,16.825807839803358 + 04/04 15:20:00,12.8,12.8,16.822688126858865 + 04/04 15:30:00,12.8,12.8,16.920416963342519 + 04/04 15:40:00,12.8,12.8,16.993342547562876 + 04/04 15:50:00,12.8,12.8,17.04925196461191 + 04/04 16:00:00,12.8,12.8,17.09684308834437 + 04/04 16:10:00,12.8,12.8,17.162187890191747 + 04/04 16:20:00,12.8,12.8,17.213781682932738 + 04/04 16:30:00,12.8,12.8,17.243687915316209 + 04/04 16:40:00,12.8,12.8,17.27037729837632 + 04/04 16:50:00,12.8,12.8,17.294419265227618 + 04/04 17:00:00,12.8,12.8,17.31617633614505 + 04/04 17:10:00,12.8,12.8,17.349675205175904 + 04/04 17:20:00,12.8,12.8,17.374588282067017 + 04/04 17:30:00,12.8,12.8,17.39260001692884 + 04/04 17:40:00,12.8,12.8,17.409436752589309 + 04/04 17:50:00,12.8,12.8,17.42530245685935 + 04/04 18:00:00,12.8,12.8,17.44030778852856 + 04/04 18:10:00,12.8,12.8,17.45440875748971 + 04/04 18:20:00,12.8,12.8,17.462878014147436 + 04/04 18:30:00,12.8,12.8,17.478601607987213 + 04/04 18:40:00,12.8,12.8,17.486380629656244 + 04/04 18:50:00,12.8,12.8,17.500939094102667 + 04/04 19:00:00,12.8,12.8,17.50849624755978 + 04/04 19:10:00,12.8,12.8,17.5324537652898 + 04/04 19:20:00,12.8,12.8,17.54447110119775 + 04/04 19:30:00,12.8,12.8,17.55490958518697 + 04/04 19:40:00,12.8,12.8,17.56531610876678 + 04/04 19:50:00,12.8,12.8,17.574793582280166 + 04/04 20:00:00,12.8,12.8,17.583731328196657 + 04/04 20:10:00,12.8,12.8,17.571270990549257 + 04/04 20:20:00,12.8,12.8,17.586964467458107 + 04/04 20:30:00,12.8,12.8,17.59640927328331 + 04/04 20:40:00,12.8,12.8,17.606047071023917 + 04/04 20:50:00,12.913513513513515,12.913513513513515,17.615265041849264 + 04/04 21:00:00,13.077477477477478,13.077477477477478,17.62443334621476 + 04/04 21:10:00,13.216216216216216,13.216216216216216,17.632736809706704 + 04/04 21:20:00,13.354954954954956,13.354954954954956,17.641737264817988 + 04/04 21:30:00,13.493693693693695,13.493693693693695,17.65024795917148 + 04/04 21:40:00,13.632432432432433,13.632432432432433,17.658529420054138 + 04/04 21:50:00,13.771171171171173,13.771171171171173,17.666308670681326 + 04/04 22:00:00,13.90990990990991,13.90990990990991,17.673650144515475 + 04/04 22:10:00,13.935135135135136,13.935135135135136,19.03787133427883 + 04/04 22:20:00,13.960360360360362,13.960360360360362,19.183170277359254 + 04/04 22:30:00,13.985585585585586,13.985585585585586,19.247904128641158 + 04/04 22:40:00,14.010810810810812,14.010810810810812,19.29909175930092 + 04/04 22:50:00,14.036036036036038,14.036036036036038,19.340538691187679 + 04/04 23:00:00,14.061261261261262,14.061261261261262,19.37543164798416 + 04/04 23:10:00,14.132732732732733,14.132732732732733,19.404800211029249 + 04/04 23:20:00,14.204204204204205,14.204204204204205,19.43117871164345 + 04/04 23:30:00,14.275675675675675,14.275675675675675,19.45491781144915 + 04/04 23:40:00,14.347147147147148,14.347147147147148,19.476637034359486 + 04/04 23:50:00,14.418618618618618,14.418618618618618,19.496611792309 + 04/04 24:00:00,14.49009009009009,14.49009009009009,19.515042701538588 + 04/05 00:10:00,14.511111111111111,14.511111111111111,19.532985738342864 + 04/05 00:20:00,14.532132132132132,14.532132132132132,19.549646637482057 + 04/05 00:30:00,14.553153153153153,14.553153153153153,19.565284101680445 + 04/05 00:40:00,14.574174174174175,14.574174174174175,19.579982353361826 + 04/05 00:50:00,14.595195195195196,14.595195195195196,19.593805967339514 + 04/05 01:00:00,14.616216216216217,14.616216216216217,19.607002804443345 + 04/05 01:10:00,14.662462462462463,14.662462462462463,19.620245650131534 + 04/05 01:20:00,14.70870870870871,14.70870870870871,19.632748243630887 + 04/05 01:30:00,14.754954954954954,14.754954954954954,19.644820132147449 + 04/05 01:40:00,14.8012012012012,14.8012012012012,19.656389867803804 + 04/05 01:50:00,14.847447447447447,14.847447447447447,19.6676498747712 + 04/05 02:00:00,14.893693693693694,14.893693693693694,19.678656861788196 + 04/05 02:10:00,14.91891891891892,14.91891891891892,19.68793367339257 + 04/05 02:20:00,14.944144144144144,14.944144144144144,19.69743132817294 + 04/05 02:30:00,14.96936936936937,14.96936936936937,19.7066514921314 + 04/05 02:40:00,14.994594594594595,14.994594594594595,19.715737319325517 + 04/05 02:50:00,15.01981981981982,15.01981981981982,19.724642592818669 + 04/05 03:00:00,15.045045045045045,15.045045045045045,19.733295335849129 + 04/05 03:10:00,15.066066066066066,15.066066066066066,19.742192474907097 + 04/05 03:20:00,15.087087087087087,15.087087087087087,19.75070315952682 + 04/05 03:30:00,15.108108108108109,15.108108108108109,19.758877508778065 + 04/05 03:40:00,15.12912912912913,15.12912912912913,19.76686279692302 + 04/05 03:50:00,15.15015015015015,15.15015015015015,19.774617278324116 + 04/05 04:00:00,15.17117117117117,15.17117117117117,19.782158391144788 + 04/05 04:10:00,15.17117117117117,15.17117117117117,19.790999635426414 + 04/05 04:20:00,15.17117117117117,15.17117117117117,19.799497051105207 + 04/05 04:30:00,15.17117117117117,15.17117117117117,19.80783205231731 + 04/05 04:40:00,15.17117117117117,15.17117117117117,19.815940518595459 + 04/05 04:50:00,15.17117117117117,15.17117117117117,19.82382923259624 + 04/05 05:00:00,15.17117117117117,15.17117117117117,19.831507579832555 + 04/05 05:10:00,15.242642642642644,15.242642642642644,19.836622218263928 + 04/05 05:20:00,15.314114114114114,15.314114114114114,19.84059365195903 + 04/05 05:30:00,15.385585585585586,15.385585585585586,19.844457856657994 + 04/05 05:40:00,15.457057057057057,15.457057057057057,19.847932202069364 + 04/05 05:50:00,15.528528528528529,15.528528528528529,19.851335572600566 + 04/05 06:00:00,15.6,15.6,19.85465759974602 + 04/05 06:10:00,15.6,15.6,17.84732630843655 + 04/05 06:20:00,15.6,15.6,17.612112225142096 + 04/05 06:30:00,15.6,15.6,17.52608718453095 + 04/05 06:40:00,15.6,15.6,17.459386581149489 + 04/05 06:50:00,15.6,15.6,17.40725112020886 + 04/05 07:00:00,15.6,15.6,17.364536475351739 + 04/05 07:10:00,15.6,15.6,15.880157046276885 + 04/05 07:20:00,15.6,15.6,15.664605921816218 + 04/05 07:30:00,15.6,15.6,15.565768025457932 + 04/05 07:40:00,15.6,15.6,15.485149081047574 + 04/05 07:50:00,15.6,15.6,15.417806809955513 + 04/05 08:00:00,15.6,15.6,15.358764477081389 + 04/05 08:10:00,15.6,15.6,15.27893952880191 + 04/05 08:20:00,15.6,15.6,15.221267103995134 + 04/05 08:30:00,15.6,15.6,15.174360810660123 + 04/05 08:40:00,15.6,15.6,15.130595824914833 + 04/05 08:50:00,15.6,15.6,15.090744604117893 + 04/05 09:00:00,15.6,15.6,15.055145088880308 + 04/05 09:10:00,15.574774774774774,15.574774774774774,15.02512845783226 + 04/05 09:20:00,15.54954954954955,15.54954954954955,14.987727227457573 + 04/05 09:30:00,15.524324324324324,15.524324324324324,14.963935842746669 + 04/05 09:40:00,15.499099099099098,15.499099099099098,14.942076740801902 + 04/05 09:50:00,15.473873873873874,15.473873873873874,14.920743464777415 + 04/05 10:00:00,15.448648648648648,15.448648648648648,14.899376729204043 + 04/05 10:10:00,15.566366366366367,15.566366366366367,14.877596994997683 + 04/05 10:20:00,15.6,15.6,14.85344985260897 + 04/05 10:30:00,15.6,15.6,14.833674639658895 + 04/05 10:40:00,15.6,15.6,14.814924065014493 + 04/05 10:50:00,15.6,15.6,14.797011751221229 + 04/05 11:00:00,15.6,15.6,14.77545709669361 + 04/05 11:10:00,15.6,15.6,14.750246925583843 + 04/05 11:20:00,15.6,15.6,14.732266215562936 + 04/05 11:30:00,15.6,15.6,14.701770682053539 + 04/05 11:40:00,15.6,15.6,14.673171955484053 + 04/05 11:50:00,15.6,15.6,14.64571765371955 + 04/05 12:00:00,15.6,15.6,14.61971404970537 + 04/05 12:10:00,15.6,15.6,14.59981534609398 + 04/05 12:20:00,15.6,15.6,14.570704057686095 + 04/05 12:30:00,15.6,15.6,14.552991678361396 + 04/05 12:40:00,15.6,15.6,14.537642408292307 + 04/05 12:50:00,15.6,15.6,14.520415429754073 + 04/05 13:00:00,15.6,15.6,14.50600711622764 + 04/05 13:10:00,15.574774774774774,15.574774774774774,14.489819746513599 + 04/05 13:20:00,15.54954954954955,15.54954954954955,14.482549531260207 + 04/05 13:30:00,15.524324324324324,15.524324324324324,14.47067456435247 + 04/05 13:40:00,15.499099099099098,15.499099099099098,14.460057777910418 + 04/05 13:50:00,15.473873873873874,15.473873873873874,14.452064750035838 + 04/05 14:00:00,15.448648648648648,15.448648648648648,14.442236542888372 + 04/05 14:10:00,15.473873873873874,15.473873873873874,14.434197395171204 + 04/05 14:20:00,15.499099099099098,15.499099099099098,14.428610771061385 + 04/05 14:30:00,15.524324324324324,15.524324324324324,14.420417389098065 + 04/05 14:40:00,15.54954954954955,15.54954954954955,14.414634130668855 + 04/05 14:50:00,15.574774774774774,15.574774774774774,14.4072449969689 + 04/05 15:00:00,15.6,15.6,14.40283984294073 + 04/05 15:05:00,15.6,15.6,16.572751979819086 + 04/05 15:10:00,15.6,15.6,16.57185200103996 + 04/05 15:20:00,15.6,15.6,16.822352082992233 + 04/05 15:30:00,15.6,15.6,16.923552271442636 + 04/05 15:40:00,15.6,15.6,17.001760834877474 + 04/05 15:50:00,15.6,15.6,17.06330724532318 + 04/05 16:00:00,15.6,15.6,17.1133052616516 + 04/05 16:10:00,15.6,15.6,17.1834680374725 + 04/05 16:20:00,15.6,15.6,17.24231205174211 + 04/05 16:30:00,15.6,15.6,17.276975734663126 + 04/05 16:40:00,15.6,15.6,17.30785083331223 + 04/05 16:50:00,15.6,15.6,17.335596610751357 + 04/05 17:00:00,15.6,15.6,17.360635292179468 + 04/05 17:10:00,15.6,15.6,17.397726357726748 + 04/05 17:20:00,15.6,15.6,17.42569809331459 + 04/05 17:30:00,15.6,15.6,17.446841718094537 + 04/05 17:40:00,15.6,15.6,17.467110167574057 + 04/05 17:50:00,15.6,15.6,17.486977107477047 + 04/05 18:00:00,15.6,15.6,17.506595586161198 + 04/05 18:10:00,15.6,15.6,17.52497025028141 + 04/05 18:20:00,15.6,15.6,17.54296840395142 + 04/05 18:30:00,15.6,15.6,17.56069328496831 + 04/05 18:40:00,15.6,15.6,17.57798059541152 + 04/05 18:50:00,15.6,15.6,17.594643000106016 + 04/05 19:00:00,15.6,15.6,17.61092703324048 + 04/05 19:10:00,15.6,15.6,17.639552929214334 + 04/05 19:20:00,15.6,15.6,17.655356210688639 + 04/05 19:30:00,15.6,15.6,17.669861967415416 + 04/05 19:40:00,15.6,15.6,17.68356924023687 + 04/05 19:50:00,15.6,15.6,17.696426167415614 + 04/05 20:00:00,15.6,15.6,17.708533934413386 + 04/05 20:10:00,15.6,15.6,17.69942670263955 + 04/05 20:20:00,15.6,15.6,17.717055746550999 + 04/05 20:30:00,15.6,15.6,17.72982558735619 + 04/05 20:40:00,15.6,15.6,17.742220578481509 + 04/05 20:50:00,15.6,15.6,17.754283242866756 + 04/05 21:00:00,15.6,15.6,17.76603531364118 + 04/05 21:10:00,15.6,15.6,17.776805533881704 + 04/05 21:20:00,15.6,15.6,17.787055570089874 + 04/05 21:30:00,15.6,15.6,17.796856771257678 + 04/05 21:40:00,15.6,15.6,17.806180758716687 + 04/05 21:50:00,15.6,15.6,17.81504042865869 + 04/05 22:00:00,15.6,15.6,17.823612688633405 + 04/05 22:10:00,15.6,15.6,19.205568175681337 + 04/05 22:20:00,15.6,15.6,19.35232320280154 + 04/05 22:30:00,15.6,15.6,19.419240492822028 + 04/05 22:40:00,15.6,15.6,19.472727891718845 + 04/05 22:50:00,15.6,15.6,19.516648288981849 + 04/05 23:00:00,15.6,15.6,19.554130969024024 + 04/05 23:10:00,15.6,15.6,19.58671458335978 + 04/05 23:20:00,15.6,15.6,19.61572666445726 + 04/05 23:30:00,15.6,15.6,19.641810447147696 + 04/05 23:40:00,15.6,15.6,19.66563300923843 + 04/05 23:50:00,15.6,15.6,19.687555966459848 + 04/05 24:00:00,15.6,15.6,19.707862659521074 + 04/06 00:10:00,15.6,15.6,19.727728952659058 + 04/06 00:20:00,15.6,15.6,19.746261710927443 + 04/06 00:30:00,15.6,15.6,19.763657771599755 + 04/06 00:40:00,15.6,15.6,19.780068004246176 + 04/06 00:50:00,15.6,15.6,19.795556810331655 + 04/06 01:00:00,15.6,15.6,19.810224124379304 + 04/06 01:10:00,15.6,15.6,19.823355565119909 + 04/06 01:20:00,15.6,15.6,19.83593823114702 + 04/06 01:30:00,15.6,15.6,19.848164024877158 + 04/06 01:40:00,15.6,15.6,19.860016877823015 + 04/06 01:50:00,15.6,15.6,19.871524519998979 + 04/06 02:00:00,15.6,15.6,19.882700153080383 + 04/06 02:10:00,15.6,15.6,19.89257898780229 + 04/06 02:20:00,15.6,15.6,19.902319780843919 + 04/06 02:30:00,15.6,15.6,19.91186115757298 + 04/06 02:40:00,15.6,15.6,19.92121404031466 + 04/06 02:50:00,15.6,15.6,19.93038118059283 + 04/06 03:00:00,15.6,15.6,19.939273244890189 + 04/06 03:10:00,15.6,15.6,19.948857197944098 + 04/06 03:20:00,15.6,15.6,19.95811639114628 + 04/06 03:30:00,15.6,15.6,19.96699178707312 + 04/06 03:40:00,15.6,15.6,19.975483830272105 + 04/06 03:50:00,15.6,15.6,19.98354824384955 + 04/06 04:00:00,15.6,15.6,19.991303084338534 + 04/06 04:10:00,15.6,15.6,19.9990876964213 + 04/06 04:20:00,15.6,15.6,20.006736716490868 + 04/06 04:30:00,15.6,15.6,20.014304177932016 + 04/06 04:40:00,15.6,15.6,20.021768237746067 + 04/06 04:50:00,15.6,15.6,20.029147965908817 + 04/06 05:00:00,15.6,15.6,20.03652229167022 + 04/06 05:10:00,15.6,15.6,20.044520943637545 + 04/06 05:20:00,15.6,15.6,20.052203155680894 + 04/06 05:30:00,15.6,15.6,20.059480695870414 + 04/06 05:40:00,15.6,15.6,20.066301035664965 + 04/06 05:50:00,15.6,15.6,20.072838753451494 + 04/06 06:00:00,15.6,15.6,20.07903374234923 + 04/06 06:10:00,15.6,15.6,18.07020850136287 + 04/06 06:20:00,15.6,15.6,17.838893762798948 + 04/06 06:30:00,15.6,15.6,17.75389188885356 + 04/06 06:40:00,15.6,15.6,17.686907497046584 + 04/06 06:50:00,15.6,15.6,17.633682567845239 + 04/06 07:00:00,15.6,15.6,17.58889824628468 + 04/06 07:10:00,15.6,15.6,16.098080076589925 + 04/06 07:20:00,15.6,15.6,15.876327318685627 + 04/06 07:30:00,15.6,15.6,15.768854759145413 + 04/06 07:40:00,15.6,15.6,15.678305779448588 + 04/06 07:50:00,15.6,15.6,15.600456875116866 + 04/06 08:00:00,15.6,15.6,15.531075097151796 + 04/06 08:10:00,15.6,15.6,15.442883283915599 + 04/06 08:20:00,15.6,15.6,15.377285210811286 + 04/06 08:30:00,15.6,15.6,15.323509631917082 + 04/06 08:40:00,15.6,15.6,15.273169966529569 + 04/06 08:50:00,15.6,15.6,15.225937975248991 + 04/06 09:00:00,15.6,15.6,15.181514509289862 + 04/06 09:10:00,15.6,15.6,15.137650051214794 + 04/06 09:20:00,15.6,15.6,15.084282222248977 + 04/06 09:30:00,15.6,15.6,15.042965250733629 + 04/06 09:40:00,15.6,15.6,15.002822758748824 + 04/06 09:50:00,15.6,15.6,14.963861893117896 + 04/06 10:00:00,15.6,15.6,14.926036923958528 + 04/06 10:10:00,15.528528528528529,15.528528528528529,14.891973135192048 + 04/06 10:20:00,15.457057057057057,15.457057057057057,14.857668443849683 + 04/06 10:30:00,15.385585585585586,15.385585585585586,14.828526287697333 + 04/06 10:40:00,15.314114114114114,15.314114114114114,14.803005060040693 + 04/06 10:50:00,15.242642642642644,15.242642642642644,14.7781012524273 + 04/06 11:00:00,15.17117117117117,15.17117117117117,14.75246697203394 + 04/06 11:10:00,15.103903903903904,15.103903903903904,14.729525038151716 + 04/06 11:20:00,15.036636636636637,15.036636636636637,14.714564064149793 + 04/06 11:30:00,14.96936936936937,14.96936936936937,14.693718699815492 + 04/06 11:40:00,14.902102102102102,14.902102102102102,14.674138214732862 + 04/06 11:50:00,14.834834834834835,14.834834834834835,14.65245030863467 + 04/06 12:00:00,14.767567567567568,14.767567567567568,14.63442436858451 + 04/06 12:10:00,14.721321321321322,14.721321321321322,14.618234804059162 + 04/06 12:20:00,14.675075075075075,14.675075075075075,14.590219230499864 + 04/06 12:30:00,14.628828828828829,14.628828828828829,14.575963172737336 + 04/06 12:40:00,14.582582582582582,14.582582582582582,14.560079078093893 + 04/06 12:50:00,14.536336336336337,14.536336336336337,14.546637044058299 + 04/06 13:00:00,14.49009009009009,14.49009009009009,14.533404859136445 + 04/06 13:10:00,14.464864864864865,14.464864864864865,14.519829264100608 + 04/06 13:20:00,14.439639639639639,14.439639639639639,14.511378709327268 + 04/06 13:30:00,14.414414414414415,14.414414414414415,14.497264214981048 + 04/06 13:40:00,14.389189189189189,14.389189189189189,14.486807168847128 + 04/06 13:50:00,14.363963963963965,14.363963963963965,14.475159114298041 + 04/06 14:00:00,14.338738738738739,14.338738738738739,14.464860702112118 + 04/06 14:10:00,14.313513513513513,14.313513513513513,14.456270388653664 + 04/06 14:20:00,14.288288288288289,14.288288288288289,14.448990690363443 + 04/06 14:30:00,14.263063063063063,14.263063063063063,14.441694760567362 + 04/06 14:40:00,14.237837837837839,14.237837837837839,14.433951964179434 + 04/06 14:50:00,14.212612612612613,14.212612612612613,14.425911339216113 + 04/06 15:00:00,14.187387387387388,14.187387387387388,14.42063534483431 + 04/06 15:05:00,14.187387387387388,14.187387387387388,16.58451893793028 + 04/06 15:10:00,14.187387387387388,14.187387387387388,16.583668380976495 + 04/06 15:20:00,14.187387387387388,14.187387387387388,16.83223157491839 + 04/06 15:30:00,14.187387387387388,14.187387387387388,16.929987211703258 + 04/06 15:40:00,14.187387387387389,14.187387387387389,17.00457175068021 + 04/06 15:50:00,14.187387387387388,14.187387387387388,17.060840165745668 + 04/06 16:00:00,14.187387387387388,14.187387387387388,17.109502581222576 + 04/06 16:10:00,14.187387387387388,14.187387387387388,17.177098741794393 + 04/06 16:20:00,14.187387387387388,14.187387387387388,17.233093551292276 + 04/06 16:30:00,14.187387387387388,14.187387387387388,17.265311617993633 + 04/06 16:40:00,14.187387387387389,14.187387387387389,17.294402060611025 + 04/06 16:50:00,14.187387387387388,14.187387387387388,17.321232612192948 + 04/06 17:00:00,14.187387387387388,14.187387387387388,17.346216593535745 + 04/06 17:10:00,14.212612612612613,14.212612612612613,17.383069345499619 + 04/06 17:20:00,14.237837837837838,14.237837837837838,17.410747221983443 + 04/06 17:30:00,14.263063063063063,14.263063063063063,17.43195080803382 + 04/06 17:40:00,14.288288288288289,14.288288288288289,17.452266858849524 + 04/06 17:50:00,14.313513513513513,14.313513513513513,17.472158866828829 + 04/06 18:00:00,14.338738738738739,14.338738738738739,17.491724273734709 + 04/06 18:10:00,14.431231231231232,14.431231231231232,17.510829924128008 + 04/06 18:20:00,14.523723723723723,14.523723723723723,17.530027078440964 + 04/06 18:30:00,14.616216216216217,14.616216216216217,17.548666938557227 + 04/06 18:40:00,14.70870870870871,14.70870870870871,17.566752763363707 + 04/06 18:50:00,14.8012012012012,14.8012012012012,17.584141831829365 + 04/06 19:00:00,14.893693693693694,14.893693693693694,17.601053430854387 + 04/06 19:10:00,14.93993993993994,14.93993993993994,17.629689285695578 + 04/06 19:20:00,14.986186186186187,14.986186186186187,17.64481604796028 + 04/06 19:30:00,15.032432432432433,15.032432432432433,17.658305815809486 + 04/06 19:40:00,15.078678678678678,15.078678678678678,17.67054844062598 + 04/06 19:50:00,15.124924924924925,15.124924924924925,17.681790683849849 + 04/06 20:00:00,15.17117117117117,15.17117117117117,17.69218006541748 + 04/06 20:10:00,15.267867867867868,15.267867867867868,17.680968657895219 + 04/06 20:20:00,15.364564564564564,15.364564564564564,17.696260717508808 + 04/06 20:30:00,15.46126126126126,15.46126126126126,17.706678531823778 + 04/06 20:40:00,15.557957957957957,15.557957957957957,17.7166842678482 + 04/06 20:50:00,15.6,15.6,17.72636395862998 + 04/06 21:00:00,15.6,15.6,17.735748035679053 + 04/06 21:10:00,15.6,15.6,17.746307279270959 + 04/06 21:20:00,15.6,15.6,17.756900587862189 + 04/06 21:30:00,15.6,15.6,17.767407522800427 + 04/06 21:40:00,15.6,15.6,17.777894616947067 + 04/06 21:50:00,15.6,15.6,17.788293571255676 + 04/06 22:00:00,15.6,15.6,17.79861356990733 + 04/06 22:10:00,15.6,15.6,19.17953090549924 + 04/06 22:20:00,15.6,15.6,19.325716640373387 + 04/06 22:30:00,15.6,15.6,19.391765930592084 + 04/06 22:40:00,15.6,15.6,19.444319841302297 + 04/06 22:50:00,15.6,15.6,19.48703778499838 + 04/06 23:00:00,15.6,15.6,19.523155172637268 + 04/06 23:10:00,15.6,15.6,19.555041296938357 + 04/06 23:20:00,15.6,15.6,19.583500951864197 + 04/06 23:30:00,15.6,15.6,19.60926538983068 + 04/06 23:40:00,15.6,15.6,19.632865711875348 + 04/06 23:50:00,15.6,15.6,19.654690117777677 + 04/06 24:00:00,15.6,15.6,19.67494285799703 + 04/07 00:10:00,15.6,15.6,19.694490096748237 + 04/07 00:20:00,15.6,15.6,19.712958095843228 + 04/07 00:30:00,15.6,15.6,19.730487089790349 + 04/07 00:40:00,15.6,15.6,19.747187017429725 + 04/07 00:50:00,15.6,15.6,19.763056219674949 + 04/07 01:00:00,15.6,15.6,19.778323608013176 + 04/07 01:10:00,15.6,15.6,19.791329297489253 + 04/07 01:20:00,15.6,15.6,19.80372245881821 + 04/07 01:30:00,15.6,15.6,19.815534514736794 + 04/07 01:40:00,15.6,15.6,19.826752179435969 + 04/07 01:50:00,15.6,15.6,19.837501374673363 + 04/07 02:00:00,15.6,15.6,19.847847164637437 + 04/07 02:10:00,15.6,15.6,19.857133464149379 + 04/07 02:20:00,15.6,15.6,19.866075935599228 + 04/07 02:30:00,15.6,15.6,19.874597852272399 + 04/07 02:40:00,15.6,15.6,19.88279653132665 + 04/07 02:50:00,15.6,15.6,19.890779439529085 + 04/07 03:00:00,15.6,15.6,19.898496790965497 + 04/07 03:10:00,15.6,15.6,19.90806328290475 + 04/07 03:20:00,15.6,15.6,19.917331879993339 + 04/07 03:30:00,15.6,15.6,19.92627410700482 + 04/07 03:40:00,15.6,15.6,19.935058130845538 + 04/07 03:50:00,15.6,15.6,19.943614370512415 + 04/07 04:00:00,15.6,15.6,19.951956771960629 + 04/07 04:10:00,15.6,15.6,19.958515168016178 + 04/07 04:20:00,15.6,15.6,19.964782248327056 + 04/07 04:30:00,15.6,15.6,19.971009067445914 + 04/07 04:40:00,15.6,15.6,19.977118270630073 + 04/07 04:50:00,15.6,15.6,19.983121490701824 + 04/07 05:00:00,15.6,15.6,19.989026280183919 + 04/07 05:10:00,15.6,15.6,19.997352828100039 + 04/07 05:20:00,15.6,15.6,20.005646704508864 + 04/07 05:30:00,15.6,15.6,20.013762469634658 + 04/07 05:40:00,15.6,15.6,20.02171444657793 + 04/07 05:50:00,15.6,15.6,20.029485024791187 + 04/07 06:00:00,15.6,15.6,20.037043186226254 + 04/07 06:10:00,15.6,15.6,18.028601788101864 + 04/07 06:20:00,15.6,15.6,17.79728305886456 + 04/07 06:30:00,15.6,15.6,17.712169964702374 + 04/07 06:40:00,15.6,15.6,17.644917607094123 + 04/07 06:50:00,15.6,15.6,17.591191123323634 + 04/07 07:00:00,15.6,15.6,17.546181847578859 + 04/07 07:10:00,15.6,15.6,16.057107309306816 + 04/07 07:15:00,15.6,15.6,15.837513565916929 + 04/07 07:20:00,15.6,15.6,15.836971298615739 + 04/07 07:30:00,15.6,15.6,15.729360186086879 + 04/07 07:40:00,15.6,15.6,15.639545066870462 + 04/07 07:50:00,15.6,15.6,15.562151312501669 + 04/07 08:00:00,15.6,15.6,15.494138290045024 + 04/07 08:10:00,15.6,15.6,15.40678335922112 + 04/07 08:20:00,15.6,15.6,15.34244466519066 + 04/07 08:30:00,15.6,15.6,15.290591444847167 + 04/07 08:40:00,15.54954954954955,15.54954954954955,15.242076693777984 + 04/07 08:50:00,15.36036036036036,15.36036036036036,15.19530228154978 + 04/07 09:00:00,15.17117117117117,15.17117117117117,15.149240033031035 + 04/07 09:10:00,15.007207207207208,15.007207207207208,15.105275927098362 + 04/07 09:20:00,14.843243243243244,14.843243243243244,15.053001301565148 + 04/07 09:30:00,14.67927927927928,14.67927927927928,15.012022759231245 + 04/07 09:40:00,14.515315315315317,14.515315315315317,14.972387770321446 + 04/07 09:50:00,14.35135135135135,14.35135135135135,14.934454881850244 + 04/07 10:00:00,14.187387387387388,14.187387387387388,14.898473517010962 + 04/07 10:10:00,14.094894894894896,14.094894894894896,14.863668057348529 + 04/07 10:20:00,14.002402402402403,14.002402402402403,14.826349706845195 + 04/07 10:30:00,13.90990990990991,13.90990990990991,14.794149761760887 + 04/07 10:40:00,13.817417417417419,13.817417417417419,14.764973619247789 + 04/07 10:50:00,13.724924924924926,13.724924924924926,14.736362649296492 + 04/07 11:00:00,13.632432432432433,13.632432432432433,14.707197010894238 + 04/07 11:10:00,13.565165165165166,13.565165165165166,14.682218047540257 + 04/07 11:20:00,13.497897897897899,13.497897897897899,14.666980883612107 + 04/07 11:30:00,13.430630630630632,13.430630630630632,14.646010369100188 + 04/07 11:40:00,13.363363363363364,13.363363363363364,14.626721896756486 + 04/07 11:50:00,13.296096096096097,13.296096096096097,14.605455097659192 + 04/07 12:00:00,13.22882882882883,13.22882882882883,14.588078648257035 + 04/07 12:10:00,13.132132132132134,13.132132132132134,14.571495159034642 + 04/07 12:20:00,13.035435435435437,13.035435435435437,14.541851479716506 + 04/07 12:30:00,12.93873873873874,12.93873873873874,14.52570372358327 + 04/07 12:40:00,12.842042042042044,12.842042042042044,14.507691630724155 + 04/07 12:50:00,12.8,12.8,14.491833592157175 + 04/07 13:00:00,12.8,12.8,14.476361351516847 + 04/07 13:10:00,12.8,12.8,14.46144015079827 + 04/07 13:20:00,12.8,12.8,14.45385640372952 + 04/07 13:30:00,12.8,12.8,14.440555851270077 + 04/07 13:40:00,12.8,12.8,14.431426090636807 + 04/07 13:50:00,12.8,12.8,14.421411389325942 + 04/07 14:00:00,12.8,12.8,14.412319020376293 + 04/07 14:10:00,12.8,12.8,14.405390189254995 + 04/07 14:20:00,12.8,12.8,14.396233598405872 + 04/07 14:30:00,12.8,12.8,14.387228596752914 + 04/07 14:40:00,12.8,12.8,14.377562226243605 + 04/07 14:50:00,12.8,12.8,14.366985586013183 + 04/07 15:00:00,12.8,12.8,14.359083969454908 + 04/07 15:05:00,12.8,12.8,16.5148828260212 + 04/07 15:10:00,12.8,12.8,16.513152334102214 + 04/07 15:20:00,12.8,12.8,16.759085026877803 + 04/07 15:30:00,12.8,12.8,16.85741084053086 + 04/07 15:40:00,12.8,12.8,16.930620936258575 + 04/07 15:50:00,12.8,12.8,16.986135906890007 + 04/07 16:00:00,12.8,12.8,17.03330722715627 + 04/07 16:10:00,12.8,12.8,17.09832778726221 + 04/07 16:20:00,12.8,12.8,17.151737733080588 + 04/07 16:30:00,12.8,12.8,17.181416939882717 + 04/07 16:40:00,12.8,12.8,17.208104725841204 + 04/07 16:50:00,12.8,12.8,17.232434938602915 + 04/07 17:00:00,12.8,12.8,17.254726752786817 + 04/07 17:10:00,12.8,12.8,17.288593859439499 + 04/07 17:20:00,12.8,12.8,17.316386631519305 + 04/07 17:30:00,12.8,12.8,17.33642157350475 + 04/07 17:40:00,12.8,12.8,17.356434617261568 + 04/07 17:50:00,12.8,12.8,17.375611063261045 + 04/07 18:00:00,12.8,12.8,17.39437387105595 + 04/07 18:10:00,12.8,12.8,17.413480227883566 + 04/07 18:20:00,12.8,12.8,17.432271059010476 + 04/07 18:30:00,12.8,12.8,17.45018362326067 + 04/07 18:40:00,12.8,12.8,17.46775541061752 + 04/07 18:50:00,12.8,12.8,17.484812578330879 + 04/07 19:00:00,12.8,12.8,17.50174465885702 + 04/07 19:10:00,12.984984984984987,12.984984984984987,17.53229688156663 + 04/07 19:20:00,13.16996996996997,13.16996996996997,17.55161982365554 + 04/07 19:30:00,13.354954954954956,13.354954954954956,17.569232748565633 + 04/07 19:40:00,13.539939939939942,13.539939939939942,17.585880319362283 + 04/07 19:50:00,13.724924924924926,13.724924924924926,17.601334655882149 + 04/07 20:00:00,13.90990990990991,13.90990990990991,17.615923669281086 + 04/07 20:10:00,13.935135135135136,13.935135135135136,17.6058827953848 + 04/07 20:20:00,13.960360360360362,13.960360360360362,17.621127461799458 + 04/07 20:30:00,13.985585585585586,13.985585585585586,17.631203340978347 + 04/07 20:40:00,14.010810810810812,14.010810810810812,17.64047195720921 + 04/07 20:50:00,14.036036036036038,14.036036036036038,17.64919715566687 + 04/07 21:00:00,14.061261261261262,14.061261261261262,17.657431562892766 + 04/07 21:10:00,14.107507507507508,14.107507507507508,17.666362082127649 + 04/07 21:20:00,14.153753753753755,14.153753753753755,17.676290958871886 + 04/07 21:30:00,14.2,14.2,17.685718639404607 + 04/07 21:40:00,14.246246246246246,14.246246246246246,17.694976315951455 + 04/07 21:50:00,14.292492492492493,14.292492492492493,17.703725810855756 + 04/07 22:00:00,14.338738738738739,14.338738738738739,17.712276289616609 + 04/07 22:10:00,14.41021021021021,14.41021021021021,19.086868691504475 + 04/07 22:20:00,14.481681681681682,14.481681681681682,19.233122866212196 + 04/07 22:30:00,14.553153153153153,14.553153153153153,19.29896440790937 + 04/07 22:40:00,14.624624624624625,14.624624624624625,19.351497526928868 + 04/07 22:50:00,14.696096096096096,14.696096096096096,19.39450752803715 + 04/07 23:00:00,14.767567567567568,14.767567567567568,19.43107417258536 + 04/07 23:10:00,14.788588588588589,14.788588588588589,19.462777020458014 + 04/07 23:20:00,14.809609609609609,14.809609609609609,19.49058901120799 + 04/07 23:30:00,14.83063063063063,14.83063063063063,19.515490676079808 + 04/07 23:40:00,14.85165165165165,14.85165165165165,19.538113521901456 + 04/07 23:50:00,14.872672672672673,14.872672672672673,19.55889656357827 + 04/07 24:00:00,14.893693693693694,14.893693693693694,19.57813751759518 + 04/08 00:10:00,14.91891891891892,14.91891891891892,19.596101381023276 + 04/08 00:20:00,14.944144144144144,14.944144144144144,19.61294385898974 + 04/08 00:30:00,14.96936936936937,14.96936936936937,19.62885781222655 + 04/08 00:40:00,14.994594594594595,14.994594594594595,19.64400721454549 + 04/08 00:50:00,15.01981981981982,15.01981981981982,19.65843219612971 + 04/08 01:00:00,15.045045045045045,15.045045045045045,19.67221046918312 + 04/08 01:10:00,15.091291291291292,15.091291291291292,19.685485882538719 + 04/08 01:20:00,15.137537537537538,15.137537537537538,19.698100204866006 + 04/08 01:30:00,15.183783783783785,15.183783783783785,19.710339191400725 + 04/08 01:40:00,15.23003003003003,15.23003003003003,19.722136469433914 + 04/08 01:50:00,15.276276276276276,15.276276276276276,19.73356100201629 + 04/08 02:00:00,15.322522522522523,15.322522522522523,19.744633972686363 + 04/08 02:10:00,15.23003003003003,15.23003003003003,19.75455210509149 + 04/08 02:20:00,15.137537537537538,15.137537537537538,19.763863143648999 + 04/08 02:30:00,15.045045045045045,15.045045045045045,19.77244548611248 + 04/08 02:40:00,14.952552552552552,14.952552552552552,19.780290990163075 + 04/08 02:50:00,14.86006006006006,14.86006006006006,19.787461980574006 + 04/08 03:00:00,14.767567567567568,14.767567567567568,19.79392356659137 + 04/08 03:10:00,14.788588588588589,14.788588588588589,19.80049896749372 + 04/08 03:20:00,14.809609609609609,14.809609609609609,19.80730832121511 + 04/08 03:30:00,14.83063063063063,14.83063063063063,19.814075290167965 + 04/08 03:40:00,14.85165165165165,14.85165165165165,19.82094317819016 + 04/08 03:50:00,14.872672672672673,14.872672672672673,19.827721943845586 + 04/08 04:00:00,14.893693693693694,14.893693693693694,19.834477271923324 + 04/08 04:10:00,14.93993993993994,14.93993993993994,19.84083192497194 + 04/08 04:20:00,14.986186186186187,14.986186186186187,19.847190646800799 + 04/08 04:30:00,15.032432432432433,15.032432432432433,19.853544093711976 + 04/08 04:40:00,15.078678678678678,15.078678678678678,19.859846178427149 + 04/08 04:50:00,15.124924924924925,15.124924924924925,19.86609667473164 + 04/08 05:00:00,15.17117117117117,15.17117117117117,19.87236372145983 + 04/08 05:10:00,15.267867867867868,15.267867867867868,19.87962815110971 + 04/08 05:20:00,15.364564564564564,15.364564564564564,19.8869794869484 + 04/08 05:30:00,15.46126126126126,15.46126126126126,19.89435200268415 + 04/08 05:40:00,15.557957957957957,15.557957957957957,19.90169935714161 + 04/08 05:50:00,15.6,15.6,19.909145756236087 + 04/08 06:00:00,15.6,15.6,19.916591501349119 + 04/08 06:10:00,15.6,15.6,19.260364477032206 + 04/08 06:20:00,15.6,15.6,19.196639338121427 + 04/08 06:30:00,15.6,15.6,19.17264298878986 + 04/08 06:40:00,15.6,15.6,19.1536817805991 + 04/08 06:50:00,15.6,15.6,19.13832001083292 + 04/08 07:00:00,15.6,15.6,19.12476872782051 + 04/08 07:10:00,15.38978978978979,15.38978978978979,18.034127695795374 + 04/08 07:20:00,15.17957957957958,15.17957957957958,17.883750697058518 + 04/08 07:30:00,14.96936936936937,14.96936936936937,17.81617074293278 + 04/08 07:40:00,14.759159159159159,14.759159159159159,17.75897335685041 + 04/08 07:50:00,14.548948948948949,14.548948948948949,17.709202798811778 + 04/08 08:00:00,14.338738738738739,14.338738738738739,17.664130956524259 + 04/08 08:10:00,14.246246246246246,14.246246246246246,17.622825117879644 + 04/08 08:20:00,14.153753753753755,14.153753753753755,17.575112069076515 + 04/08 08:30:00,14.061261261261262,14.061261261261262,17.538653426182877 + 04/08 08:40:00,13.96876876876877,13.96876876876877,17.504202298821057 + 04/08 08:50:00,13.876276276276278,13.876276276276278,17.471737354018644 + 04/08 09:00:00,13.783783783783785,13.783783783783785,17.440997587464559 + 04/08 09:10:00,13.640840840840842,13.640840840840842,17.411100182356653 + 04/08 09:20:00,13.497897897897899,13.497897897897899,17.375610808145458 + 04/08 09:30:00,13.354954954954956,13.354954954954956,17.349682640941688 + 04/08 09:40:00,13.212012012012013,13.212012012012013,17.32490441741565 + 04/08 09:50:00,13.06906906906907,13.06906906906907,17.300902058705444 + 04/08 10:00:00,12.926126126126127,12.926126126126127,17.27776148618521 + 04/08 10:10:00,12.85885885885886,12.85885885885886,17.25609334427555 + 04/08 10:20:00,12.8,12.8,17.23268763517597 + 04/08 10:30:00,12.8,12.8,17.210515422707194 + 04/08 10:40:00,12.8,12.8,17.18890967017877 + 04/08 10:50:00,12.8,12.8,17.168343378029968 + 04/08 11:00:00,12.8,12.8,17.148614420599409 + 04/08 11:10:00,12.8,12.8,17.129667567556369 + 04/08 11:20:00,12.8,12.8,17.111868882741086 + 04/08 11:30:00,12.8,12.8,17.09469047299171 + 04/08 11:40:00,12.8,12.8,17.07821227739036 + 04/08 11:50:00,12.8,12.8,17.062380436169535 + 04/08 12:00:00,12.8,12.8,17.047175174340958 + 04/08 12:10:00,12.8,12.8,17.03281749688407 + 04/08 12:20:00,12.8,12.8,17.018806321680484 + 04/08 12:30:00,12.8,12.8,17.005416013673455 + 04/08 12:40:00,12.8,12.8,16.992542909697716 + 04/08 12:50:00,12.8,12.8,16.980266140353863 + 04/08 13:00:00,12.8,12.8,16.968569593089858 + 04/08 13:10:00,12.8,12.8,16.957332002614565 + 04/08 13:20:00,12.8,12.8,16.945544813587707 + 04/08 13:30:00,12.8,12.8,16.934420214139999 + 04/08 13:40:00,12.8,12.8,16.9238985461025 + 04/08 13:50:00,12.8,12.8,16.919636283486694 + 04/08 14:00:00,12.8,12.8,16.905748675006099 + 04/08 14:10:00,12.8,12.8,16.906783628163255 + 04/08 14:20:00,12.8,12.8,16.90170467178095 + 04/08 14:30:00,12.8,12.8,16.901015228495309 + 04/08 14:40:00,12.8,12.8,16.899541791510634 + 04/08 14:50:00,12.8,12.8,16.8979815508364 + 04/08 15:00:00,12.8,12.8,16.896152167081483 + 04/08 15:10:00,12.8,12.8,16.894392587086839 + 04/08 15:20:00,12.8,12.8,16.892488726638818 + 04/08 15:30:00,12.8,12.8,16.88292038245724 + 04/08 15:40:00,12.8,12.8,16.886254702756646 + 04/08 15:50:00,12.8,12.8,16.883706047192719 + 04/08 16:00:00,12.8,12.8,16.885477040942037 + 04/08 16:10:00,12.8,12.8,16.899656552358864 + 04/08 16:20:00,12.8,12.8,16.910318191586506 + 04/08 16:30:00,12.8,12.8,16.910505593096244 + 04/08 16:40:00,12.8,12.8,16.912981169621419 + 04/08 16:50:00,12.8,12.8,16.91626124065328 + 04/08 17:00:00,12.8,12.8,16.920088221307564 + 04/08 17:10:00,12.8,12.8,18.700404510546734 + 04/08 17:20:00,12.8,12.8,18.91634567291159 + 04/08 17:30:00,12.8,12.8,18.99783085114929 + 04/08 17:40:00,12.8,12.8,19.06861738416437 + 04/08 17:50:00,12.8,12.8,19.119339466694286 + 04/08 18:00:00,12.8,12.8,19.16709695971668 + 04/08 18:10:00,12.8,12.8,19.22111106268585 + 04/08 18:20:00,12.8,12.8,19.260345459937054 + 04/08 18:30:00,12.8,12.8,19.295850270738549 + 04/08 18:40:00,12.8,12.8,19.32876851059047 + 04/08 18:50:00,12.8,12.8,19.35935402603994 + 04/08 19:00:00,12.8,12.8,19.388085101367034 + 04/08 19:10:00,12.8,12.8,19.414928736783197 + 04/08 19:20:00,12.8,12.8,19.438265926741044 + 04/08 19:30:00,12.8,12.8,19.459649961180668 + 04/08 19:40:00,12.833633633633636,12.833633633633636,19.47883302325882 + 04/08 19:50:00,12.87987987987988,12.87987987987988,19.496432675565904 + 04/08 20:00:00,12.926126126126127,12.926126126126127,19.512735949496848 + 04/08 20:10:00,13.043843843843846,13.043843843843846,19.505360397035007 + 04/08 20:20:00,13.16156156156156,13.16156156156156,19.52089922783042 + 04/08 20:30:00,13.27927927927928,13.27927927927928,19.535621921964528 + 04/08 20:40:00,13.396996996996997,13.396996996996997,19.549897269179895 + 04/08 20:50:00,13.514714714714716,13.514714714714716,19.56358157088343 + 04/08 21:00:00,13.632432432432433,13.632432432432433,19.576840683780565 + 04/08 21:10:00,13.67867867867868,13.67867867867868,19.589990788266574 + 04/08 21:20:00,13.724924924924924,13.724924924924924,19.602771708244668 + 04/08 21:30:00,13.771171171171173,13.771171171171173,19.614942405620029 + 04/08 21:40:00,13.817417417417419,13.817417417417419,19.626549841658837 + 04/08 21:50:00,13.863663663663666,13.863663663663666,19.637760368614115 + 04/08 22:00:00,13.90990990990991,13.90990990990991,19.648532556345978 + 04/08 22:10:00,14.006606606606607,14.006606606606607,19.659332662749649 + 04/08 22:20:00,14.103303303303303,14.103303303303303,19.670126287192756 + 04/08 22:30:00,14.2,14.2,19.680636130666195 + 04/08 22:40:00,14.296696696696696,14.296696696696696,19.691140953204454 + 04/08 22:50:00,14.393393393393394,14.393393393393394,19.701495608731656 + 04/08 23:00:00,14.49009009009009,14.49009009009009,19.711705007506887 + 04/08 23:10:00,14.536336336336337,14.536336336336337,19.721505272959278 + 04/08 23:20:00,14.582582582582582,14.582582582582582,19.73079391956725 + 04/08 23:30:00,14.628828828828829,14.628828828828829,19.739851133352457 + 04/08 23:40:00,14.675075075075075,14.675075075075075,19.74862356055413 + 04/08 23:50:00,14.721321321321322,14.721321321321322,19.757160135075297 + 04/08 24:00:00,14.767567567567568,14.767567567567568,19.765487467058706 + 04/09 00:10:00,14.834834834834835,14.834834834834835,19.773241509732857 + 04/09 00:20:00,14.902102102102102,14.902102102102102,19.781021072962685 + 04/09 00:30:00,14.96936936936937,14.96936936936937,19.788787720321638 + 04/09 00:40:00,15.036636636636637,15.036636636636637,19.796521005207376 + 04/09 00:50:00,15.103903903903904,15.103903903903904,19.804177574429155 + 04/09 01:00:00,15.17117117117117,15.17117117117117,19.811689738075157 + 04/09 01:10:00,15.196396396396397,15.196396396396397,19.819126897243615 + 04/09 01:20:00,15.22162162162162,15.22162162162162,19.826490307117987 + 04/09 01:30:00,15.246846846846847,15.246846846846847,19.833651140439267 + 04/09 01:40:00,15.272072072072073,15.272072072072073,19.840620858248984 + 04/09 01:50:00,15.297297297297297,15.297297297297297,19.847399927301124 + 04/09 02:00:00,15.322522522522523,15.322522522522523,19.853915450561318 + 04/09 02:10:00,15.322522522522523,15.322522522522523,19.860232352033657 + 04/09 02:20:00,15.322522522522523,15.322522522522523,19.866231810268663 + 04/09 02:30:00,15.322522522522523,15.322522522522523,19.87199341482803 + 04/09 02:40:00,15.322522522522523,15.322522522522523,19.8775017857933 + 04/09 02:50:00,15.322522522522523,15.322522522522523,19.882716818307036 + 04/09 03:00:00,15.322522522522523,15.322522522522523,19.887814222669087 + 04/09 03:10:00,15.415015015015016,15.415015015015016,19.892973863106236 + 04/09 03:20:00,15.507507507507507,15.507507507507507,19.898430424445534 + 04/09 03:30:00,15.6,15.6,19.904050265631136 + 04/09 03:40:00,15.6,15.6,19.909831651002706 + 04/09 03:50:00,15.6,15.6,19.91576621622686 + 04/09 04:00:00,15.6,15.6,19.92184293075046 + 04/09 04:10:00,15.6,15.6,19.928111864868187 + 04/09 04:20:00,15.6,15.6,19.934346767516979 + 04/09 04:30:00,15.6,15.6,19.940445939706476 + 04/09 04:40:00,15.6,15.6,19.946412437521354 + 04/09 04:50:00,15.6,15.6,19.952336888034453 + 04/09 05:00:00,15.6,15.6,19.958158890648208 + 04/09 05:10:00,15.6,15.6,19.96463996521009 + 04/09 05:20:00,15.6,15.6,19.97095685088471 + 04/09 05:30:00,15.6,15.6,19.977108860406525 + 04/09 05:40:00,15.6,15.6,19.983213026935297 + 04/09 05:50:00,15.6,15.6,19.98924910898936 + 04/09 06:00:00,15.6,15.6,19.995189707208718 + 04/09 06:10:00,15.6,15.6,20.02202559463914 + 04/09 06:20:00,15.6,15.6,20.025760303493049 + 04/09 06:30:00,15.6,15.6,20.02860987665665 + 04/09 06:40:00,15.6,15.6,20.02985015399938 + 04/09 06:50:00,15.6,15.6,20.029855950672457 + 04/09 07:00:00,15.6,15.6,20.028576979108679 + 04/09 07:10:00,15.6,15.6,18.616983094388457 + 04/09 07:20:00,15.6,15.6,18.446376477322887 + 04/09 07:30:00,15.6,15.6,18.3752169429891 + 04/09 07:40:00,15.507507507507507,15.507507507507507,18.31636128118086 + 04/09 07:50:00,15.415015015015016,15.415015015015016,18.266518224703526 + 04/09 08:00:00,15.322522522522523,15.322522522522523,18.22268341620759 + 04/09 08:10:00,15.23003003003003,15.23003003003003,18.182717125141317 + 04/09 08:20:00,15.137537537537538,15.137537537537538,18.136723437197078 + 04/09 08:30:00,15.045045045045045,15.045045045045045,18.101933539293378 + 04/09 08:40:00,14.952552552552552,14.952552552552552,18.069116760667315 + 04/09 08:50:00,14.86006006006006,14.86006006006006,18.0380466402765 + 04/09 09:00:00,14.767567567567568,14.767567567567568,18.00850487214647 + 04/09 09:10:00,14.670870870870872,14.670870870870872,17.979869058443918 + 04/09 09:20:00,14.574174174174175,14.574174174174175,17.94368553460562 + 04/09 09:30:00,14.477477477477479,14.477477477477479,17.91726248981435 + 04/09 09:40:00,14.380780780780782,14.380780780780782,17.891829902557914 + 04/09 09:50:00,14.284084084084084,14.284084084084084,17.86724745425186 + 04/09 10:00:00,14.187387387387388,14.187387387387388,17.843421789342857 + 04/09 10:10:00,14.14114114114114,14.14114114114114,17.82144407872988 + 04/09 10:20:00,14.094894894894896,14.094894894894896,17.801282336722577 + 04/09 10:30:00,14.04864864864865,14.04864864864865,17.782112606260445 + 04/09 10:40:00,14.002402402402403,14.002402402402403,17.763945448393419 + 04/09 10:50:00,13.956156156156157,13.956156156156157,17.74677533159974 + 04/09 11:00:00,13.90990990990991,13.90990990990991,17.730504478790427 + 04/09 11:10:00,13.842642642642645,13.842642642642645,17.713733767772454 + 04/09 11:20:00,13.775375375375376,13.775375375375376,17.696936357415603 + 04/09 11:30:00,13.708108108108109,13.708108108108109,17.68056857271804 + 04/09 11:40:00,13.640840840840842,13.640840840840842,17.664488306648594 + 04/09 11:50:00,13.573573573573574,13.573573573573574,17.648777185886297 + 04/09 12:00:00,13.506306306306307,13.506306306306307,17.63364749564041 + 04/09 12:10:00,13.434834834834835,13.434834834834835,17.619573175718945 + 04/09 12:20:00,13.363363363363364,13.363363363363364,17.606878342616253 + 04/09 12:30:00,13.291891891891894,13.291891891891894,17.59480650152447 + 04/09 12:40:00,13.220420420420421,13.220420420420421,17.58356285129897 + 04/09 12:50:00,13.148948948948949,13.148948948948949,17.572922135867086 + 04/09 13:00:00,13.077477477477478,13.077477477477478,17.562829177659219 + 04/09 13:10:00,13.052252252252253,13.052252252252253,17.552937040427815 + 04/09 13:20:00,13.027027027027028,13.027027027027028,17.54437669211708 + 04/09 13:30:00,13.001801801801803,13.001801801801803,17.535876482168974 + 04/09 13:40:00,12.976576576576577,12.976576576576577,17.52772615033588 + 04/09 13:50:00,12.951351351351353,12.951351351351353,17.519652083424299 + 04/09 14:00:00,12.926126126126127,12.926126126126127,17.511068018631084 + 04/09 14:10:00,12.87987987987988,12.87987987987988,17.50350756381309 + 04/09 14:20:00,12.833633633633636,12.833633633633636,17.496702498744424 + 04/09 14:30:00,12.8,12.8,17.492007133415183 + 04/09 14:40:00,12.8,12.8,17.488588661992379 + 04/09 14:50:00,12.8,12.8,17.486500853196128 + 04/09 15:00:00,12.8,12.8,17.485348589316044 + 04/09 15:10:00,12.8,12.8,18.921255923564876 + 04/09 15:20:00,12.8,12.8,19.073024247338674 + 04/09 15:30:00,12.8,12.8,19.135975460193 + 04/09 15:40:00,12.8,12.8,19.184442337054123 + 04/09 15:50:00,12.8,12.8,19.222999697181224 + 04/09 16:00:00,12.8,12.8,19.255093105966816 + 04/09 16:10:00,12.8,12.8,19.282766976604063 + 04/09 16:20:00,12.8,12.8,19.31761734615681 + 04/09 16:30:00,12.8,12.8,19.341083045462214 + 04/09 16:40:00,12.8,12.8,19.36300839300554 + 04/09 16:50:00,12.8,12.8,19.383595725337636 + 04/09 17:00:00,12.8,12.8,19.40312765587907 + 04/09 17:10:00,12.8,12.8,19.422115822509107 + 04/09 17:20:00,12.8,12.8,19.45898229853686 + 04/09 17:30:00,12.8,12.8,19.477575876068465 + 04/09 17:40:00,12.8,12.8,19.49603160777792 + 04/09 17:50:00,12.8,12.8,19.51427009186878 + 04/09 18:00:00,12.8,12.8,19.532501345739229 + 04/09 18:10:00,12.963963963963965,12.963963963963965,19.55102115027959 + 04/09 18:20:00,13.127927927927928,13.127927927927928,19.569867631904683 + 04/09 18:30:00,13.291891891891894,13.291891891891894,19.58861593278459 + 04/09 18:40:00,13.455855855855857,13.455855855855857,19.607125219418813 + 04/09 18:50:00,13.61981981981982,13.61981981981982,19.625338560795386 + 04/09 19:00:00,13.783783783783785,13.783783783783785,19.643367049001758 + 04/09 19:10:00,13.922522522522524,13.922522522522524,19.660926616680557 + 04/09 19:20:00,14.061261261261262,14.061261261261262,19.67731269181477 + 04/09 19:30:00,14.2,14.2,19.692719652753284 + 04/09 19:40:00,14.338738738738739,14.338738738738739,19.70702988015004 + 04/09 19:50:00,14.477477477477479,14.477477477477479,19.72054582875142 + 04/09 20:00:00,14.616216216216217,14.616216216216217,19.733329513587209 + 04/09 20:10:00,14.641441441441442,14.641441441441442,19.7225050976258 + 04/09 20:20:00,14.666666666666666,14.666666666666666,19.733663415880487 + 04/09 20:30:00,14.691891891891892,14.691891891891892,19.744064202707614 + 04/09 20:40:00,14.717117117117118,14.717117117117118,19.75397118046101 + 04/09 20:50:00,14.742342342342342,14.742342342342342,19.763337817677475 + 04/09 21:00:00,14.767567567567568,14.767567567567568,19.772234101843194 + 04/09 21:10:00,14.834834834834835,14.834834834834835,19.780868236606943 + 04/09 21:20:00,14.902102102102102,14.902102102102102,19.789431912999789 + 04/09 21:30:00,14.96936936936937,14.96936936936937,19.797873213620748 + 04/09 21:40:00,15.036636636636637,15.036636636636637,19.806220540185675 + 04/09 21:50:00,15.103903903903904,15.103903903903904,19.814431857635705 + 04/09 22:00:00,15.17117117117117,15.17117117117117,19.822473663755546 + 04/09 22:10:00,15.15015015015015,15.15015015015015,19.829959875104977 + 04/09 22:20:00,15.12912912912913,15.12912912912913,19.836790045796886 + 04/09 22:30:00,15.108108108108109,15.108108108108109,19.843216792357219 + 04/09 22:40:00,15.087087087087087,15.087087087087087,19.84912925231176 + 04/09 22:50:00,15.066066066066066,15.066066066066066,19.854665840036739 + 04/09 23:00:00,15.045045045045045,15.045045045045045,19.85982125348009 + 04/09 23:10:00,15.066066066066066,15.066066066066066,19.8648637709099 + 04/09 23:20:00,15.087087087087087,15.087087087087087,19.86974925070649 + 04/09 23:30:00,15.108108108108109,15.108108108108109,19.874539986137195 + 04/09 23:40:00,15.12912912912913,15.12912912912913,19.87924264215114 + 04/09 23:50:00,15.15015015015015,15.15015015015015,19.883853097318906 + 04/09 24:00:00,15.17117117117117,15.17117117117117,19.888364741304888 + 04/10 00:10:00,15.17117117117117,15.17117117117117,19.892797609253245 + 04/10 00:20:00,15.17117117117117,15.17117117117117,19.897302248443059 + 04/10 00:30:00,15.17117117117117,15.17117117117117,19.90171652897541 + 04/10 00:40:00,15.17117117117117,15.17117117117117,19.906101409269657 + 04/10 00:50:00,15.17117117117117,15.17117117117117,19.910340678681064 + 04/10 01:00:00,15.17117117117117,15.17117117117117,19.914565117801656 + 04/10 01:10:00,15.242642642642644,15.242642642642644,19.917485290501788 + 04/10 01:20:00,15.314114114114114,15.314114114114114,19.92061627831378 + 04/10 01:30:00,15.385585585585586,15.385585585585586,19.92392261073662 + 04/10 01:40:00,15.457057057057057,15.457057057057057,19.927365777243716 + 04/10 01:50:00,15.528528528528529,15.528528528528529,19.931072620282117 + 04/10 02:00:00,15.6,15.6,19.93509253683406 + 04/10 02:10:00,15.574774774774774,15.574774774774774,19.941054886778294 + 04/10 02:20:00,15.54954954954955,15.54954954954955,19.94689631762447 + 04/10 02:30:00,15.524324324324324,15.524324324324324,19.95241125276008 + 04/10 02:40:00,15.499099099099098,15.499099099099098,19.957594321003499 + 04/10 02:50:00,15.473873873873874,15.473873873873874,19.962479730212409 + 04/10 03:00:00,15.448648648648648,15.448648648648648,19.96704491915778 + 04/10 03:10:00,15.52012012012012,15.52012012012012,19.971373222801945 + 04/10 03:20:00,15.591591591591591,15.591591591591591,19.97583289705613 + 04/10 03:30:00,15.6,15.6,19.98027596091672 + 04/10 03:40:00,15.6,15.6,19.984888807569776 + 04/10 03:50:00,15.6,15.6,19.989519960342745 + 04/10 04:00:00,15.6,15.6,19.994181056341938 + 04/10 04:10:00,15.6,15.6,19.998779540432577 + 04/10 04:20:00,15.6,15.6,20.003105039108683 + 04/10 04:30:00,15.6,15.6,20.00731827181995 + 04/10 04:40:00,15.6,15.6,20.011341445822226 + 04/10 04:50:00,15.6,15.6,20.015173995103877 + 04/10 05:00:00,15.6,15.6,20.018839567419325 + 04/10 05:10:00,15.6,15.6,20.02228587056482 + 04/10 05:20:00,15.6,15.6,20.025541527129645 + 04/10 05:30:00,15.6,15.6,20.028725933306384 + 04/10 05:40:00,15.6,15.6,20.031789858842069 + 04/10 05:50:00,15.6,15.6,20.034797229233634 + 04/10 06:00:00,15.6,15.6,20.037690779475626 + 04/10 06:10:00,15.6,15.6,18.031718029373374 + 04/10 06:20:00,15.6,15.6,17.797941215113469 + 04/10 06:30:00,15.6,15.6,17.709934011354599 + 04/10 06:40:00,15.6,15.6,17.64020407269345 + 04/10 06:50:00,15.6,15.6,17.584231801533023 + 04/10 07:00:00,15.6,15.6,17.536888900842706 + 04/10 07:10:00,15.6,15.6,16.04384732909836 + 04/10 07:20:00,15.6,15.6,15.819323152910166 + 04/10 07:30:00,15.46126126126126,15.46126126126126,15.710148842972928 + 04/10 07:40:00,15.322522522522523,15.322522522522523,15.618946868078794 + 04/10 07:50:00,15.183783783783785,15.183783783783785,15.540970710935654 + 04/10 08:00:00,15.045045045045045,15.045045045045045,15.47151534750908 + 04/10 08:10:00,14.902102102102102,14.902102102102102,15.384452996023829 + 04/10 08:20:00,14.759159159159159,14.759159159159159,15.316263464490012 + 04/10 08:30:00,14.616216216216217,14.616216216216217,15.25927498601548 + 04/10 08:40:00,14.473273273273274,14.473273273273274,15.2047954623862 + 04/10 08:50:00,14.33033033033033,14.33033033033033,15.153559598155653 + 04/10 09:00:00,14.187387387387388,14.187387387387388,15.105031056335323 + 04/10 09:10:00,14.073873873873874,14.073873873873874,15.058714587832088 + 04/10 09:20:00,13.960360360360362,13.960360360360362,15.005423463278774 + 04/10 09:30:00,13.846846846846848,13.846846846846848,14.964520839583827 + 04/10 09:40:00,13.733333333333335,13.733333333333335,14.925547619954643 + 04/10 09:50:00,13.61981981981982,13.61981981981982,14.88813844267166 + 04/10 10:00:00,13.506306306306307,13.506306306306307,14.852254670461072 + 04/10 10:10:00,13.434834834834835,13.434834834834835,14.816822971148972 + 04/10 10:20:00,13.363363363363364,13.363363363363364,14.780108668720097 + 04/10 10:30:00,13.291891891891894,13.291891891891894,14.74792615116621 + 04/10 10:40:00,13.220420420420421,13.220420420420421,14.716867791900239 + 04/10 10:50:00,13.148948948948949,13.148948948948949,14.686799967245264 + 04/10 11:00:00,13.077477477477478,13.077477477477478,14.657698002405298 + 04/10 11:10:00,13.006006006006008,13.006006006006008,14.630126437949775 + 04/10 11:20:00,12.934534534534535,12.934534534534535,14.614309201892537 + 04/10 11:30:00,12.863063063063063,12.863063063063063,14.589939643041552 + 04/10 11:40:00,12.8,12.8,14.566828910631858 + 04/10 11:50:00,12.8,12.8,14.544887599025744 + 04/10 12:00:00,12.8,12.8,14.524722909688233 + 04/10 12:10:00,12.8,12.8,14.506040901964689 + 04/10 12:20:00,12.8,12.8,14.477190566058452 + 04/10 12:30:00,12.8,12.8,14.457584698636064 + 04/10 12:40:00,12.8,12.8,14.440946277195974 + 04/10 12:50:00,12.8,12.8,14.421875739229624 + 04/10 13:00:00,12.8,12.8,14.40701936348494 + 04/10 13:10:00,12.8,12.8,14.390384257581509 + 04/10 13:20:00,12.8,12.8,14.380318851345985 + 04/10 13:30:00,12.8,12.8,14.367458755883203 + 04/10 13:40:00,12.8,12.8,14.353456976219745 + 04/10 13:50:00,12.8,12.8,14.343672099417791 + 04/10 14:00:00,12.8,12.8,14.331542909192617 + 04/10 14:10:00,12.8,12.8,14.321798268861113 + 04/10 14:20:00,12.8,12.8,14.316775905265498 + 04/10 14:30:00,12.8,12.8,14.306410791720945 + 04/10 14:40:00,12.8,12.8,14.299621441670224 + 04/10 14:50:00,12.8,12.8,14.292918602418164 + 04/10 15:00:00,12.8,12.8,14.285584036671393 + 04/10 15:05:00,12.8,12.8,16.444225250863029 + 04/10 15:10:00,12.8,12.8,16.443147656164077 + 04/10 15:20:00,12.8,12.8,16.68295567491791 + 04/10 15:30:00,12.8,12.8,16.78377766134548 + 04/10 15:40:00,12.8,12.8,16.856235412032569 + 04/10 15:50:00,12.8,12.8,16.9151058186364 + 04/10 16:00:00,12.8,12.8,16.962143367080736 + 04/10 16:10:00,12.8,12.8,17.027710190408287 + 04/10 16:20:00,12.8,12.8,17.084139026245727 + 04/10 16:30:00,12.8,12.8,17.116925644653976 + 04/10 16:40:00,12.8,12.8,17.146791069653799 + 04/10 16:50:00,12.8,12.8,17.174688864255484 + 04/10 17:00:00,12.8,12.8,17.201068571749884 + 04/10 17:10:00,12.8,12.8,17.239413308548718 + 04/10 17:20:00,12.8,12.8,17.269170421984588 + 04/10 17:30:00,12.8,12.8,17.292411642065877 + 04/10 17:40:00,12.8,12.8,17.31478293190232 + 04/10 17:50:00,12.8,12.8,17.336651721278139 + 04/10 18:00:00,12.8,12.8,17.358066686374678 + 04/10 18:10:00,12.8,12.8,17.378126223179867 + 04/10 18:20:00,12.8,12.8,17.399087021590863 + 04/10 18:30:00,12.8,12.8,17.41926311234779 + 04/10 18:40:00,12.8,12.8,17.43905606041929 + 04/10 18:50:00,12.938738738738739,12.938738738738739,17.4580033776235 + 04/10 19:00:00,13.077477477477478,13.077477477477478,17.476539121373919 + 04/10 19:10:00,13.123723723723725,13.123723723723725,17.507242296271316 + 04/10 19:20:00,13.169969969969971,13.169969969969971,17.524260839437589 + 04/10 19:30:00,13.216216216216218,13.216216216216218,17.539664034182118 + 04/10 19:40:00,13.262462462462464,13.262462462462464,17.55375988726527 + 04/10 19:50:00,13.30870870870871,13.30870870870871,17.5666982755232 + 04/10 20:00:00,13.354954954954956,13.354954954954956,17.578673798736575 + 04/10 20:10:00,13.380180180180182,13.380180180180182,17.5672078719493 + 04/10 20:20:00,13.405405405405407,13.405405405405407,17.582016573054984 + 04/10 20:30:00,13.430630630630632,13.430630630630632,17.59173127699436 + 04/10 20:40:00,13.455855855855857,13.455855855855857,17.60088705888254 + 04/10 20:50:00,13.481081081081081,13.481081081081081,17.609470265916604 + 04/10 21:00:00,13.506306306306307,13.506306306306307,17.617652008379517 + 04/10 21:10:00,13.645045045045047,13.645045045045047,17.625957404957086 + 04/10 21:20:00,13.783783783783785,13.783783783783785,17.63547920214984 + 04/10 21:30:00,13.922522522522524,13.922522522522524,17.64479119004581 + 04/10 21:40:00,14.061261261261262,14.061261261261262,17.654175111689978 + 04/10 21:50:00,14.200000000000001,14.200000000000001,17.663291257883196 + 04/10 22:00:00,14.338738738738739,14.338738738738739,17.67239820353101 + 04/10 22:10:00,14.41021021021021,14.41021021021021,19.04785009267293 + 04/10 22:20:00,14.481681681681682,14.481681681681682,19.19500644222249 + 04/10 22:30:00,14.553153153153153,14.553153153153153,19.261601660478349 + 04/10 22:40:00,14.624624624624625,14.624624624624625,19.314374678019065 + 04/10 22:50:00,14.696096096096096,14.696096096096096,19.357548601922283 + 04/10 23:00:00,14.767567567567568,14.767567567567568,19.394250103461216 + 04/10 23:10:00,14.767567567567568,14.767567567567568,19.426228059430949 + 04/10 23:20:00,14.767567567567568,14.767567567567568,19.454623735923098 + 04/10 23:30:00,14.767567567567568,14.767567567567568,19.480036236090329 + 04/10 23:40:00,14.767567567567568,14.767567567567568,19.503172331097955 + 04/10 23:50:00,14.767567567567568,14.767567567567568,19.524387105044427 + 04/10 24:00:00,14.767567567567568,14.767567567567568,19.54397787920524 + 04/11 00:10:00,14.813813813813815,14.813813813813815,19.562181229255378 + 04/11 00:20:00,14.860060060060059,14.860060060060059,19.579121002884038 + 04/11 00:30:00,14.906306306306306,14.906306306306306,19.595187512724079 + 04/11 00:40:00,14.952552552552552,14.952552552552552,19.610496354123329 + 04/11 00:50:00,14.998798798798799,14.998798798798799,19.625132980612553 + 04/11 01:00:00,15.045045045045045,15.045045045045045,19.6391726048481 + 04/11 01:10:00,15.045045045045045,15.045045045045045,19.651882207628654 + 04/11 01:20:00,15.045045045045045,15.045045045045045,19.6641226910122 + 04/11 01:30:00,15.045045045045045,15.045045045045045,19.675911222943058 + 04/11 01:40:00,15.045045045045045,15.045045045045045,19.687251277558685 + 04/11 01:50:00,15.045045045045045,15.045045045045045,19.698149605632396 + 04/11 02:00:00,15.045045045045045,15.045045045045045,19.708627038763934 + 04/11 02:10:00,15.045045045045045,15.045045045045045,19.71780794592813 + 04/11 02:20:00,15.045045045045045,15.045045045045045,19.72662457498636 + 04/11 02:30:00,15.045045045045045,15.045045045045045,19.73517901118221 + 04/11 02:40:00,15.045045045045045,15.045045045045045,19.743476179051798 + 04/11 02:50:00,15.045045045045045,15.045045045045045,19.751617263059197 + 04/11 03:00:00,15.045045045045045,15.045045045045045,19.759679150291153 + 04/11 03:10:00,15.045045045045045,15.045045045045045,19.770994545547756 + 04/11 03:20:00,15.045045045045045,15.045045045045045,19.781863265216303 + 04/11 03:30:00,15.045045045045045,15.045045045045045,19.79205660882442 + 04/11 03:40:00,15.045045045045045,15.045045045045045,19.80171350765757 + 04/11 03:50:00,15.045045045045045,15.045045045045045,19.81081818148238 + 04/11 04:00:00,15.045045045045045,15.045045045045045,19.819550666821696 + 04/11 04:10:00,15.091291291291292,15.091291291291292,19.82603615913244 + 04/11 04:20:00,15.137537537537538,15.137537537537538,19.832165266178757 + 04/11 04:30:00,15.183783783783785,15.183783783783785,19.838261624108463 + 04/11 04:40:00,15.23003003003003,15.23003003003003,19.844232282073987 + 04/11 04:50:00,15.276276276276276,15.276276276276276,19.85017792816383 + 04/11 05:00:00,15.322522522522523,15.322522522522523,19.8561708313973 + 04/11 05:10:00,15.322522522522523,15.322522522522523,19.86194353159075 + 04/11 05:20:00,15.322522522522523,15.322522522522523,19.867910864755708 + 04/11 05:30:00,15.322522522522523,15.322522522522523,19.87376339940085 + 04/11 05:40:00,15.322522522522523,15.322522522522523,19.879529794862898 + 04/11 05:50:00,15.322522522522523,15.322522522522523,19.885272452530299 + 04/11 06:00:00,15.322522522522523,15.322522522522523,19.890897785898308 + 04/11 06:10:00,15.297297297297297,15.297297297297297,17.884202774022847 + 04/11 06:20:00,15.272072072072073,15.272072072072073,17.65058127848671 + 04/11 06:30:00,15.246846846846847,15.246846846846847,17.56353274821002 + 04/11 06:40:00,15.22162162162162,15.22162162162162,17.49515708603552 + 04/11 06:50:00,15.196396396396397,15.196396396396397,17.44096143029071 + 04/11 07:00:00,15.17117117117117,15.17117117117117,17.395514863512945 + 04/11 07:05:00,14.93993993993994,14.93993993993994,15.914050343525581 + 04/11 07:10:00,14.93993993993994,14.93993993993994,15.91324229053881 + 04/11 07:15:00,14.70870870870871,14.70870870870871,15.695491868783137 + 04/11 07:20:00,14.70870870870871,14.70870870870871,15.695606095020278 + 04/11 07:25:00,14.477477477477479,14.477477477477479,15.590183408543025 + 04/11 07:30:00,14.477477477477479,14.477477477477479,15.590553631112872 + 04/11 07:40:00,14.246246246246248,14.246246246246248,15.499606750235353 + 04/11 07:50:00,14.015015015015015,14.015015015015015,15.422548664849265 + 04/11 08:00:00,13.783783783783785,13.783783783783785,15.353139957228276 + 04/11 08:05:00,13.691291291291293,13.691291291291293,15.264407558094007 + 04/11 08:10:00,13.691291291291293,13.691291291291293,15.264080661120085 + 04/11 08:20:00,13.5987987987988,13.5987987987988,15.196153762902469 + 04/11 08:30:00,13.506306306306307,13.506306306306307,15.141117298580122 + 04/11 08:40:00,13.413813813813816,13.413813813813816,15.089479495266732 + 04/11 08:50:00,13.32132132132132,13.32132132132132,15.041380141285451 + 04/11 09:00:00,13.22882882882883,13.22882882882883,14.99624180378711 + 04/11 09:10:00,13.132132132132134,13.132132132132134,14.953145211140646 + 04/11 09:20:00,13.035435435435437,13.035435435435437,14.901361946220606 + 04/11 09:30:00,12.93873873873874,12.93873873873874,14.861946426012583 + 04/11 09:40:00,12.842042042042044,12.842042042042044,14.824043270249812 + 04/11 09:50:00,12.8,12.8,14.78758558698184 + 04/11 10:00:00,12.8,12.8,14.752489954504187 + 04/11 10:10:00,12.8,12.8,14.718912140416759 + 04/11 10:20:00,12.8,12.8,14.68468477871768 + 04/11 10:30:00,12.8,12.8,14.65519994125896 + 04/11 10:40:00,12.8,12.8,14.627199574745518 + 04/11 10:50:00,12.8,12.8,14.601542711462243 + 04/11 11:00:00,12.8,12.8,14.577694791373 + 04/11 11:10:00,12.8,12.8,14.551179031634302 + 04/11 11:20:00,12.8,12.8,14.539151357132044 + 04/11 11:30:00,12.8,12.8,14.51775356929264 + 04/11 11:40:00,12.8,12.8,14.495634336998006 + 04/11 11:50:00,12.8,12.8,14.476507648341418 + 04/11 12:00:00,12.8,12.8,14.457805667303008 + 04/11 12:10:00,12.8,12.8,14.437824537663474 + 04/11 12:20:00,12.8,12.8,14.412370604596689 + 04/11 12:30:00,12.8,12.8,14.396048028473996 + 04/11 12:40:00,12.8,12.8,14.381337962016455 + 04/11 12:50:00,12.8,12.8,14.368398940585927 + 04/11 13:00:00,12.8,12.8,14.354272169352795 + 04/11 13:10:00,12.8,12.8,14.344344636877615 + 04/11 13:20:00,12.8,12.8,14.334772197321327 + 04/11 13:30:00,12.8,12.8,14.324577283247454 + 04/11 13:40:00,12.8,12.8,14.2948096739857 + 04/11 13:50:00,12.8,12.8,14.293181475231947 + 04/11 14:00:00,12.8,12.8,14.27930395690892 + 04/11 14:10:00,12.8,12.8,14.270821830086469 + 04/11 14:20:00,12.8,12.8,14.266181147244224 + 04/11 14:30:00,12.8,12.8,14.25950171439644 + 04/11 14:40:00,12.8,12.8,14.251062933435252 + 04/11 14:50:00,12.8,12.8,14.246639206387244 + 04/11 15:00:00,12.8,12.8,14.242663394073123 + 04/11 15:05:00,12.8,12.8,16.396029180623946 + 04/11 15:10:00,12.8,12.8,16.394872573779478 + 04/11 15:20:00,12.8,12.8,16.64608455814445 + 04/11 15:30:00,12.8,12.8,16.744650423514704 + 04/11 15:40:00,12.8,12.8,16.81691825220647 + 04/11 15:50:00,12.8,12.8,16.875250397503025 + 04/11 16:00:00,12.8,12.8,16.92351228088829 + 04/11 16:10:00,12.8,12.8,16.99040435498315 + 04/11 16:20:00,12.8,12.8,17.04412114874059 + 04/11 16:30:00,12.8,12.8,17.0753471697696 + 04/11 16:40:00,12.8,12.8,17.10387512781894 + 04/11 16:50:00,12.8,12.8,17.13019611549548 + 04/11 17:00:00,12.8,12.8,17.154681865276005 + 04/11 17:10:00,12.8,12.8,17.191085070257679 + 04/11 17:20:00,12.8,12.8,17.219274893281466 + 04/11 17:30:00,12.8,12.8,17.24116072884739 + 04/11 17:40:00,12.8,12.8,17.262513417837054 + 04/11 17:50:00,12.8,12.8,17.275776862888337 + 04/11 18:00:00,12.8,12.8,17.301414337521956 + 04/11 18:10:00,12.8,12.8,17.320505577463267 + 04/11 18:20:00,12.8,12.8,17.339723258057267 + 04/11 18:30:00,12.8,12.8,17.36122915057629 + 04/11 18:40:00,12.8,12.8,17.381536211266778 + 04/11 18:50:00,12.8,12.8,17.40190234212543 + 04/11 19:00:00,12.8,12.8,17.42140368519751 + 04/11 19:10:00,12.8,12.8,17.452631709941806 + 04/11 19:20:00,12.8,12.8,17.469976339464226 + 04/11 19:30:00,12.8,12.8,17.485673971122006 + 04/11 19:40:00,12.8,12.8,17.499960365635716 + 04/11 19:50:00,12.8,12.8,17.51305643118261 + 04/11 20:00:00,12.8,12.8,17.525058035462889 + 04/11 20:10:00,12.8,12.8,17.513807244004295 + 04/11 20:20:00,12.8,12.8,17.52967340171239 + 04/11 20:30:00,12.8,12.8,17.54014910970105 + 04/11 20:40:00,12.8,12.8,17.550103324326395 + 04/11 20:50:00,12.8,12.8,17.559404111718356 + 04/11 21:00:00,12.8,12.8,17.56814972202404 + 04/11 21:10:00,12.963963963963965,12.963963963963965,17.577048357474827 + 04/11 21:20:00,13.127927927927928,13.127927927927928,17.586066191593834 + 04/11 21:30:00,13.291891891891894,13.291891891891894,17.595060081965518 + 04/11 21:40:00,13.455855855855857,13.455855855855857,17.604108957294046 + 04/11 21:50:00,13.61981981981982,13.61981981981982,17.61307478342797 + 04/11 22:00:00,13.783783783783785,13.783783783783785,17.62194877019926 + 04/11 22:10:00,13.876276276276276,13.876276276276276,18.99725404573767 + 04/11 22:20:00,13.968768768768769,13.968768768768769,19.145818159959036 + 04/11 22:30:00,14.061261261261262,14.061261261261262,19.213301010867935 + 04/11 22:40:00,14.153753753753755,14.153753753753755,19.267467031406164 + 04/11 22:50:00,14.246246246246248,14.246246246246248,19.311808174327 + 04/11 23:00:00,14.338738738738739,14.338738738738739,19.349553347709919 + 04/11 23:10:00,14.338738738738739,14.338738738738739,19.382178529611875 + 04/11 23:20:00,14.338738738738739,14.338738738738739,19.411004454586676 + 04/11 23:30:00,14.338738738738739,14.338738738738739,19.436860624333634 + 04/11 23:40:00,14.338738738738739,14.338738738738739,19.460264063581787 + 04/11 23:50:00,14.338738738738739,14.338738738738739,19.48168060371323 + 04/11 24:00:00,14.338738738738739,14.338738738738739,19.50135092258372 + 04/12 00:10:00,14.338738738738739,14.338738738738739,19.519715440500677 + 04/12 00:20:00,14.338738738738739,14.338738738738739,19.536680255429937 + 04/12 00:30:00,14.338738738738739,14.338738738738739,19.552585749342549 + 04/12 00:40:00,14.338738738738739,14.338738738738739,19.567523258124976 + 04/12 00:50:00,14.338738738738739,14.338738738738739,19.581570824895367 + 04/12 01:00:00,14.338738738738739,14.338738738738739,19.594978583714974 + 04/12 01:10:00,14.384984984984986,14.384984984984986,19.60797316258877 + 04/12 01:20:00,14.431231231231232,14.431231231231232,19.62044347312138 + 04/12 01:30:00,14.477477477477479,14.477477477477479,19.632537755869444 + 04/12 01:40:00,14.523723723723723,14.523723723723723,19.64421547861057 + 04/12 01:50:00,14.56996996996997,14.56996996996997,19.65560227910085 + 04/12 02:00:00,14.616216216216217,14.616216216216217,19.666736385757596 + 04/12 02:10:00,14.616216216216217,14.616216216216217,19.677163473627947 + 04/12 02:20:00,14.616216216216217,14.616216216216217,19.687445102668055 + 04/12 02:30:00,14.616216216216217,14.616216216216217,19.697339674521886 + 04/12 02:40:00,14.616216216216217,14.616216216216217,19.70692457237151 + 04/12 02:50:00,14.616216216216217,14.616216216216217,19.716253501645395 + 04/12 03:00:00,14.616216216216217,14.616216216216217,19.725276769367559 + 04/12 03:10:00,14.595195195195196,14.595195195195196,19.73393680248666 + 04/12 03:20:00,14.574174174174175,14.574174174174175,19.74206392587091 + 04/12 03:30:00,14.553153153153153,14.553153153153153,19.74977418402717 + 04/12 03:40:00,14.532132132132132,14.532132132132132,19.7572042197164 + 04/12 03:50:00,14.511111111111111,14.511111111111111,19.76434142952784 + 04/12 04:00:00,14.49009009009009,14.49009009009009,19.771212698339516 + 04/12 04:10:00,14.511111111111111,14.511111111111111,19.777923057551726 + 04/12 04:20:00,14.532132132132132,14.532132132132132,19.78462226436647 + 04/12 04:30:00,14.553153153153153,14.553153153153153,19.791321315072407 + 04/12 04:40:00,14.574174174174175,14.574174174174175,19.798000686454374 + 04/12 04:50:00,14.595195195195196,14.595195195195196,19.804587002247275 + 04/12 05:00:00,14.616216216216217,14.616216216216217,19.811072684095686 + 04/12 05:10:00,14.616216216216217,14.616216216216217,19.816915361182035 + 04/12 05:20:00,14.616216216216217,14.616216216216217,19.822650886450153 + 04/12 05:30:00,14.616216216216217,14.616216216216217,19.82825459336067 + 04/12 05:40:00,14.616216216216217,14.616216216216217,19.833713102250728 + 04/12 05:50:00,14.616216216216217,14.616216216216217,19.83905696731015 + 04/12 06:00:00,14.616216216216217,14.616216216216217,19.844356286220426 + 04/12 06:10:00,14.523723723723723,14.523723723723723,17.84120446957597 + 04/12 06:20:00,14.431231231231232,14.431231231231232,17.608687689451558 + 04/12 06:30:00,14.338738738738739,14.338738738738739,17.522229138642176 + 04/12 06:40:00,14.246246246246246,14.246246246246246,17.453545883744455 + 04/12 06:50:00,14.153753753753755,14.153753753753755,17.39808247627585 + 04/12 07:00:00,14.061261261261262,14.061261261261262,17.35084418955138 + 04/12 07:05:00,13.968768768768769,13.968768768768769,15.86482332094955 + 04/12 07:10:00,13.968768768768769,13.968768768768769,15.86400076368041 + 04/12 07:15:00,13.876276276276276,13.876276276276276,15.64427038367646 + 04/12 07:20:00,13.876276276276276,13.876276276276276,15.644157362850548 + 04/12 07:30:00,13.783783783783785,13.783783783783785,15.537127471790486 + 04/12 07:40:00,13.691291291291293,13.691291291291293,15.449943883347605 + 04/12 07:50:00,13.5987987987988,13.5987987987988,15.37615576855044 + 04/12 08:00:00,13.506306306306307,13.506306306306307,15.311801423071154 + 04/12 08:05:00,13.481081081081081,13.481081081081081,15.229787726663858 + 04/12 08:10:00,13.481081081081081,13.481081081081081,15.228872295242934 + 04/12 08:20:00,13.455855855855857,13.455855855855857,15.166285963837522 + 04/12 08:30:00,13.430630630630632,13.430630630630632,15.117255317556069 + 04/12 08:40:00,13.405405405405407,13.405405405405407,15.071111709317226 + 04/12 08:50:00,13.380180180180182,13.380180180180182,15.028292062136714 + 04/12 09:00:00,13.354954954954956,13.354954954954956,14.98776228847072 + 04/12 09:10:00,13.216216216216218,13.216216216216218,14.948710823507522 + 04/12 09:20:00,13.077477477477478,13.077477477477478,14.90087870321901 + 04/12 09:30:00,12.93873873873874,12.93873873873874,14.864303383592885 + 04/12 09:40:00,12.8,12.8,14.828686395573142 + 04/12 09:50:00,12.8,12.8,14.794258510573484 + 04/12 10:00:00,12.8,12.8,14.76120328168388 + 04/12 10:10:00,12.8,12.8,14.729724610817954 + 04/12 10:20:00,12.8,12.8,14.69486323942251 + 04/12 10:30:00,12.8,12.8,14.664804369222326 + 04/12 10:40:00,12.8,12.8,14.635793199306152 + 04/12 10:50:00,12.8,12.8,14.608118043182252 + 04/12 11:00:00,12.8,12.8,14.585913298686066 + 04/12 11:10:00,12.8,12.8,14.5634589585564 + 04/12 11:20:00,12.8,12.8,14.549658782600336 + 04/12 11:30:00,12.8,12.8,14.52950284833522 + 04/12 11:40:00,12.8,12.8,14.509577622790275 + 04/12 11:50:00,12.8,12.8,14.488192137356212 + 04/12 12:00:00,12.8,12.8,14.469792557251678 + 04/12 12:10:00,12.8,12.8,14.45161277530528 + 04/12 12:20:00,12.8,12.8,14.421834426622466 + 04/12 12:30:00,12.8,12.8,14.38784659606098 + 04/12 12:40:00,12.8,12.8,14.378292733423319 + 04/12 12:50:00,12.8,12.8,14.35843174467634 + 04/12 13:00:00,12.8,12.8,14.346976776883617 + 04/12 13:10:00,12.8,12.8,14.333426770529256 + 04/12 13:20:00,12.8,12.8,14.326952364459239 + 04/12 13:30:00,12.8,12.8,14.314917652441578 + 04/12 13:40:00,12.8,12.8,14.306449785289507 + 04/12 13:50:00,12.8,12.8,14.2968848026481 + 04/12 14:00:00,12.8,12.8,14.286566376990145 + 04/12 14:10:00,12.8,12.8,14.278858617314935 + 04/12 14:20:00,12.8,12.8,14.271755151951494 + 04/12 14:30:00,12.8,12.8,14.263916796422402 + 04/12 14:40:00,12.8,12.8,14.257390579282843 + 04/12 14:50:00,12.8,12.8,14.2494437134105 + 04/12 15:00:00,12.8,12.8,14.246034649557498 + 04/12 15:05:00,12.8,12.8,16.396648245881754 + 04/12 15:10:00,12.8,12.8,16.395923209588557 + 04/12 15:20:00,12.8,12.8,16.644772767197748 + 04/12 15:30:00,12.8,12.8,16.743676014203368 + 04/12 15:40:00,12.8,12.8,16.81902150423168 + 04/12 15:50:00,12.8,12.8,16.856015374466684 + 04/12 16:00:00,12.8,12.8,16.91170866031159 + 04/12 16:10:00,12.8,12.8,16.971360938069247 + 04/12 16:20:00,12.8,12.8,17.028444904017616 + 04/12 16:30:00,12.8,12.8,17.05845641278712 + 04/12 16:40:00,12.8,12.8,17.085633560372469 + 04/12 16:50:00,12.8,12.8,17.111327257003464 + 04/12 17:00:00,12.8,12.8,17.136073997437938 + 04/12 17:10:00,12.8,12.8,17.17321491902787 + 04/12 17:20:00,12.8,12.8,17.20313182036997 + 04/12 17:30:00,12.8,12.8,17.22757543594466 + 04/12 17:40:00,12.8,12.8,17.251724676861707 + 04/12 17:50:00,12.8,12.8,17.275270220803845 + 04/12 18:00:00,12.8,12.8,17.298124350040838 + 04/12 18:10:00,12.8,12.8,17.319985268708828 + 04/12 18:20:00,12.8,12.8,17.34090146716883 + 04/12 18:30:00,12.8,12.8,17.362573496142603 + 04/12 18:40:00,12.8,12.8,17.381593121331567 + 04/12 18:50:00,12.8,12.8,17.400315164611486 + 04/12 19:00:00,12.8,12.8,17.418085251121818 + 04/12 19:10:00,12.8,12.8,17.448712535494076 + 04/12 19:20:00,12.8,12.8,17.464394044039979 + 04/12 19:30:00,12.8,12.8,17.479036951388286 + 04/12 19:40:00,12.8,12.8,17.49234387562405 + 04/12 19:50:00,12.8,12.8,17.50475314949866 + 04/12 20:00:00,12.8,12.8,17.516349717400006 + 04/12 20:10:00,12.871471471471472,12.871471471471472,17.50470696253283 + 04/12 20:20:00,12.942942942942944,12.942942942942944,17.521480138979887 + 04/12 20:30:00,13.014414414414415,13.014414414414415,17.53304063821784 + 04/12 20:40:00,13.085885885885887,13.085885885885887,17.544352796264155 + 04/12 20:50:00,13.157357357357359,13.157357357357359,17.554966136888319 + 04/12 21:00:00,13.22882882882883,13.22882882882883,17.565146605155534 + 04/12 21:10:00,13.296096096096097,13.296096096096097,17.57463042721074 + 04/12 21:20:00,13.363363363363364,13.363363363363364,17.584160627583374 + 04/12 21:30:00,13.430630630630632,13.430630630630632,17.593305751748738 + 04/12 21:40:00,13.497897897897899,13.497897897897899,17.602256429199888 + 04/12 21:50:00,13.565165165165166,13.565165165165166,17.610919896825956 + 04/12 22:00:00,13.632432432432433,13.632432432432433,17.619429782317654 + 04/12 22:10:00,13.611411411411412,13.611411411411412,18.99308873343773 + 04/12 22:20:00,13.590390390390392,13.590390390390392,19.138521578755595 + 04/12 22:30:00,13.56936936936937,13.56936936936937,19.202989118645499 + 04/12 22:40:00,13.548348348348349,13.548348348348349,19.253592585992839 + 04/12 22:50:00,13.527327327327328,13.527327327327328,19.294507574858995 + 04/12 23:00:00,13.506306306306307,13.506306306306307,19.32882440666169 + 04/12 23:10:00,13.552552552552554,13.552552552552554,19.358841900292206 + 04/12 23:20:00,13.5987987987988,13.5987987987988,19.38647046727344 + 04/12 23:30:00,13.645045045045047,13.645045045045047,19.41125340026628 + 04/12 23:40:00,13.691291291291293,13.691291291291293,19.43414538712745 + 04/12 23:50:00,13.737537537537538,13.737537537537538,19.45526045546053 + 04/12 24:00:00,13.783783783783785,13.783783783783785,19.474903359668649 + 04/13 00:10:00,13.804804804804805,13.804804804804805,19.49303841884168 + 04/13 00:20:00,13.825825825825828,13.825825825825828,19.51006725158254 + 04/13 00:30:00,13.846846846846848,13.846846846846848,19.526138987665364 + 04/13 00:40:00,13.867867867867869,13.867867867867869,19.541418633308966 + 04/13 00:50:00,13.88888888888889,13.88888888888889,19.555941132437917 + 04/13 01:00:00,13.90990990990991,13.90990990990991,19.569802847634585 + 04/13 01:10:00,13.981381381381383,13.981381381381383,19.583356595724614 + 04/13 01:20:00,14.052852852852853,14.052852852852853,19.596863766154763 + 04/13 01:30:00,14.124324324324326,14.124324324324326,19.610040117410585 + 04/13 01:40:00,14.195795795795796,14.195795795795796,19.62293796029661 + 04/13 01:50:00,14.267267267267269,14.267267267267269,19.635529925134369 + 04/13 02:00:00,14.338738738738739,14.338738738738739,19.647750967190686 + 04/13 02:10:00,14.338738738738739,14.338738738738739,19.65894340261776 + 04/13 02:20:00,14.338738738738739,14.338738738738739,19.669614059789926 + 04/13 02:30:00,14.338738738738739,14.338738738738739,19.67986200864843 + 04/13 02:40:00,14.338738738738739,14.338738738738739,19.689645870878566 + 04/13 02:50:00,14.338738738738739,14.338738738738739,19.6990664137601 + 04/13 03:00:00,14.338738738738739,14.338738738738739,19.708070087246399 + 04/13 03:10:00,14.363963963963965,14.363963963963965,19.71712481231487 + 04/13 03:20:00,14.389189189189189,14.389189189189189,19.7257102569501 + 04/13 03:30:00,14.414414414414415,14.414414414414415,19.734063757773883 + 04/13 03:40:00,14.439639639639639,14.439639639639639,19.74214428915359 + 04/13 03:50:00,14.464864864864865,14.464864864864865,19.749963569845329 + 04/13 04:00:00,14.49009009009009,14.49009009009009,19.757626629310744 + 04/13 04:10:00,14.536336336336337,14.536336336336337,19.76431822243861 + 04/13 04:20:00,14.582582582582582,14.582582582582582,19.771154604784188 + 04/13 04:30:00,14.628828828828829,14.628828828828829,19.777982034163885 + 04/13 04:40:00,14.675075075075075,14.675075075075075,19.784830509190269 + 04/13 04:50:00,14.721321321321322,14.721321321321322,19.791678893131466 + 04/13 05:00:00,14.767567567567568,14.767567567567568,19.79871511618952 + 04/13 05:10:00,14.767567567567568,14.767567567567568,19.806864253333865 + 04/13 05:20:00,14.767567567567568,14.767567567567568,19.815055998103177 + 04/13 05:30:00,14.767567567567568,14.767567567567568,19.8229145146766 + 04/13 05:40:00,14.767567567567568,14.767567567567568,19.8303845918541 + 04/13 05:50:00,14.767567567567568,14.767567567567568,19.83757263918673 + 04/13 06:00:00,14.767567567567568,14.767567567567568,19.844373038028388 + 04/13 06:10:00,14.813813813813815,14.813813813813815,17.843358098101203 + 04/13 06:20:00,14.860060060060059,14.860060060060059,17.611689539970678 + 04/13 06:30:00,14.906306306306306,14.906306306306306,17.526369334175106 + 04/13 06:40:00,14.952552552552552,14.952552552552552,17.459399370533036 + 04/13 06:50:00,14.998798798798799,14.998798798798799,17.40641487739396 + 04/13 07:00:00,15.045045045045045,15.045045045045045,17.361800220891014 + 04/13 07:05:00,14.902102102102102,14.902102102102102,15.881879231698847 + 04/13 07:10:00,14.902102102102102,14.902102102102102,15.880817689090295 + 04/13 07:15:00,14.759159159159159,14.759159159159159,15.664821593503858 + 04/13 07:20:00,14.759159159159159,14.759159159159159,15.664561667873603 + 04/13 07:30:00,14.616216216216217,14.616216216216217,15.558634551419683 + 04/13 07:40:00,14.473273273273274,14.473273273273274,15.472357566048404 + 04/13 07:50:00,14.33033033033033,14.33033033033033,15.398889652622561 + 04/13 08:00:00,14.187387387387388,14.187387387387388,15.334752490514159 + 04/13 08:03:19,14.073873873873874,14.073873873873874,15.253130987337113 + 04/13 08:06:40,14.073873873873874,14.073873873873874,15.251343904513505 + 04/13 08:10:00,14.073873873873874,14.073873873873874,15.252377722330179 + 04/13 08:20:00,13.960360360360362,13.960360360360362,15.187664813656202 + 04/13 08:30:00,13.846846846846848,13.846846846846848,15.13751367614949 + 04/13 08:40:00,13.733333333333335,13.733333333333335,15.089950281124688 + 04/13 08:50:00,13.61981981981982,13.61981981981982,15.045932761552102 + 04/13 09:00:00,13.506306306306307,13.506306306306307,15.004203087394684 + 04/13 09:10:00,13.388588588588588,13.388588588588588,14.964295445939879 + 04/13 09:20:00,13.270870870870871,13.270870870870871,14.916207179700214 + 04/13 09:30:00,13.153153153153154,13.153153153153154,14.88015208938656 + 04/13 09:40:00,13.035435435435435,13.035435435435435,14.845457481905136 + 04/13 09:50:00,12.917717717717718,12.917717717717718,14.81171997756898 + 04/13 10:00:00,12.8,12.8,14.778768281365052 + 04/13 10:10:00,12.8,12.8,14.746263467569161 + 04/13 10:20:00,12.8,12.8,14.71064688171548 + 04/13 10:30:00,12.8,12.8,14.67882016203672 + 04/13 10:40:00,12.8,12.8,14.647588645695459 + 04/13 10:50:00,12.8,12.8,14.618370152421445 + 04/13 11:00:00,12.8,12.8,14.591455320448521 + 04/13 11:10:00,12.8,12.8,14.562786495842083 + 04/13 11:20:00,12.8,12.8,14.549890763692082 + 04/13 11:30:00,12.8,12.8,14.527751188153842 + 04/13 11:40:00,12.8,12.8,14.49616963057684 + 04/13 11:50:00,12.8,12.8,14.480278077640886 + 04/13 12:00:00,12.8,12.8,14.459343330943897 + 04/13 12:10:00,12.8,12.8,14.439766668449748 + 04/13 12:20:00,12.8,12.8,14.399072821437727 + 04/13 12:30:00,12.8,12.8,14.389883917519536 + 04/13 12:40:00,12.8,12.8,14.370386615737014 + 04/13 12:50:00,12.8,12.8,14.345616392444347 + 04/13 13:00:00,12.8,12.8,14.343759456760889 + 04/13 13:10:00,12.8,12.8,14.334954706041528 + 04/13 13:20:00,12.8,12.8,14.336961258403323 + 04/13 13:30:00,12.8,12.8,14.3166867162661 + 04/13 13:40:00,12.8,12.8,14.32632994165403 + 04/13 13:50:00,12.8,12.8,14.31681952004836 + 04/13 14:00:00,12.8,12.8,14.3160984429817 + 04/13 14:10:00,12.8,12.8,14.309702740235366 + 04/13 14:20:00,12.8,12.8,14.304809069366736 + 04/13 14:30:00,12.8,12.8,14.277972364754295 + 04/13 14:40:00,12.8,12.8,14.277571948827815 + 04/13 14:50:00,12.8,12.8,14.263174359567405 + 04/13 15:00:00,12.8,12.8,14.258401940185636 + 04/13 15:10:00,12.8,12.8,16.40513675112643 + 04/13 15:20:00,12.8,12.8,16.651256686227645 + 04/13 15:30:00,12.8,12.8,16.744729045984245 + 04/13 15:40:00,12.8,12.8,16.81547871999264 + 04/13 15:50:00,12.8,12.8,16.855038901038986 + 04/13 16:00:00,12.8,12.8,16.90997670949707 + 04/13 16:10:00,12.8,12.8,16.973625051088975 + 04/13 16:20:00,12.8,12.8,17.03310639121991 + 04/13 16:30:00,12.8,12.8,17.067560240151435 + 04/13 16:40:00,12.8,12.8,17.098792074265238 + 04/13 16:50:00,12.8,12.8,17.126844314818237 + 04/13 17:00:00,12.8,12.8,17.151969135678905 + 04/13 17:10:00,12.8,12.8,17.188478079845248 + 04/13 17:20:00,12.8,12.8,17.216304113486975 + 04/13 17:30:00,12.8,12.8,17.237868488576127 + 04/13 17:40:00,12.8,12.8,17.259078205527787 + 04/13 17:50:00,12.8,12.8,17.280359142825945 + 04/13 18:00:00,12.8,12.8,17.301738995191138 + 04/13 18:10:00,12.8,12.8,17.32318809102117 + 04/13 18:20:00,12.8,12.8,17.344298624661467 + 04/13 18:30:00,12.8,12.8,17.369020513398988 + 04/13 18:40:00,12.8,12.8,17.38724612485848 + 04/13 18:50:00,12.8,12.8,17.406072263287233 + 04/13 19:00:00,12.8,12.8,17.423464867822223 + 04/13 19:10:00,12.846246246246248,12.846246246246248,17.453486039718066 + 04/13 19:20:00,12.892492492492494,12.892492492492494,17.471813028832963 + 04/13 19:30:00,12.938738738738739,12.938738738738739,17.4884077849929 + 04/13 19:40:00,12.984984984984987,12.984984984984987,17.50386279481429 + 04/13 19:50:00,13.031231231231232,13.031231231231232,17.518077693049365 + 04/13 20:00:00,13.077477477477478,13.077477477477478,17.531159633339173 + 04/13 20:10:00,13.123723723723725,13.123723723723725,17.521063329014898 + 04/13 20:20:00,13.169969969969971,13.169969969969971,17.536736914043478 + 04/13 20:30:00,13.216216216216218,13.216216216216218,17.547370169123924 + 04/13 20:40:00,13.262462462462464,13.262462462462464,17.55739157111234 + 04/13 20:50:00,13.30870870870871,13.30870870870871,17.566879329787704 + 04/13 21:00:00,13.354954954954956,13.354954954954956,17.575996088826437 + 04/13 21:10:00,13.401201201201202,13.401201201201202,17.58451009700886 + 04/13 21:20:00,13.447447447447449,13.447447447447449,17.592885743036999 + 04/13 21:30:00,13.493693693693695,13.493693693693695,17.60102763602495 + 04/13 21:40:00,13.539939939939942,13.539939939939942,17.609034710520797 + 04/13 21:50:00,13.586186186186187,13.586186186186187,17.616812886827764 + 04/13 22:00:00,13.632432432432433,13.632432432432433,17.624411412889264 + 04/13 22:10:00,13.611411411411412,13.611411411411412,18.997900577630849 + 04/13 22:20:00,13.590390390390392,13.590390390390392,19.143566332751499 + 04/13 22:30:00,13.56936936936937,13.56936936936937,19.208237007350236 + 04/13 22:40:00,13.548348348348349,13.548348348348349,19.259272675266624 + 04/13 22:50:00,13.527327327327328,13.527327327327328,19.30045387490139 + 04/13 23:00:00,13.506306306306307,13.506306306306307,19.33497691577064 + 04/13 23:10:00,13.598798798798799,13.598798798798799,19.364892373892717 + 04/13 23:20:00,13.691291291291292,13.691291291291292,19.39267817639435 + 04/13 23:30:00,13.783783783783785,13.783783783783785,19.417810707872439 + 04/13 23:40:00,13.876276276276276,13.876276276276276,19.441130984429298 + 04/13 23:50:00,13.968768768768769,13.968768768768769,19.462758955385615 + 04/13 24:00:00,14.061261261261262,14.061261261261262,19.48291399726912 + 04/14 00:10:00,14.107507507507508,14.107507507507508,19.502122564445135 + 04/14 00:20:00,14.153753753753755,14.153753753753755,19.51950394963888 + 04/14 00:30:00,14.2,14.2,19.535924324614684 + 04/14 00:40:00,14.246246246246246,14.246246246246246,19.55131169244307 + 04/14 00:50:00,14.292492492492493,14.292492492492493,19.56588622262983 + 04/14 01:00:00,14.338738738738739,14.338738738738739,19.57988379163664 + 04/14 01:10:00,14.363963963963965,14.363963963963965,19.59369633892214 + 04/14 01:20:00,14.389189189189189,14.389189189189189,19.607278365089955 + 04/14 01:30:00,14.414414414414415,14.414414414414415,19.620303298250236 + 04/14 01:40:00,14.439639639639639,14.439639639639639,19.632840072129747 + 04/14 01:50:00,14.464864864864865,14.464864864864865,19.644914087302415 + 04/14 02:00:00,14.49009009009009,14.49009009009009,19.65658644615453 + 04/14 02:10:00,14.511111111111111,14.511111111111111,19.666275380657777 + 04/14 02:20:00,14.532132132132132,14.532132132132132,19.675548951817136 + 04/14 02:30:00,14.553153153153153,14.553153153153153,19.684565851740755 + 04/14 02:40:00,14.574174174174175,14.574174174174175,19.693352858963548 + 04/14 02:50:00,14.595195195195196,14.595195195195196,19.702092149765034 + 04/14 03:00:00,14.616216216216217,14.616216216216217,19.710874539092534 + 04/14 03:10:00,14.616216216216217,14.616216216216217,19.720904916668738 + 04/14 03:20:00,14.616216216216217,14.616216216216217,19.73091548460002 + 04/14 03:30:00,14.616216216216217,14.616216216216217,19.740550375054313 + 04/14 03:40:00,14.616216216216217,14.616216216216217,19.749962500851095 + 04/14 03:50:00,14.616216216216217,14.616216216216217,19.75901481901353 + 04/14 04:00:00,14.616216216216217,14.616216216216217,19.767715452575819 + 04/14 04:10:00,14.662462462462463,14.662462462462463,19.776113804990737 + 04/14 04:20:00,14.70870870870871,14.70870870870871,19.78399493448831 + 04/14 04:30:00,14.754954954954954,14.754954954954954,19.791749763693077 + 04/14 04:40:00,14.8012012012012,14.8012012012012,19.79927835019987 + 04/14 04:50:00,14.847447447447447,14.847447447447447,19.806635540496705 + 04/14 05:00:00,14.893693693693694,14.893693693693694,19.81383477271639 + 04/14 05:10:00,14.93993993993994,14.93993993993994,19.821433435920758 + 04/14 05:20:00,14.986186186186187,14.986186186186187,19.82869184233588 + 04/14 05:30:00,15.032432432432433,15.032432432432433,19.835614796002536 + 04/14 05:40:00,15.078678678678678,15.078678678678678,19.84229380633633 + 04/14 05:50:00,15.124924924924925,15.124924924924925,19.84879508441358 + 04/14 06:00:00,15.17117117117117,15.17117117117117,19.85512840678266 + 04/14 06:10:00,15.15015015015015,15.15015015015015,17.84951431129797 + 04/14 06:20:00,15.12912912912913,15.12912912912913,17.617210457948184 + 04/14 06:30:00,15.108108108108109,15.108108108108109,17.531449217407788 + 04/14 06:40:00,15.087087087087087,15.087087087087087,17.464464934341913 + 04/14 06:50:00,15.066066066066066,15.066066066066066,17.41178464193828 + 04/14 07:00:00,15.045045045045045,15.045045045045045,17.367847792022454 + 04/14 07:05:00,14.881081081081082,14.881081081081082,15.887399978884292 + 04/14 07:10:00,14.881081081081082,14.881081081081082,15.885647444443862 + 04/14 07:15:00,14.717117117117116,14.717117117117116,15.669049207811688 + 04/14 07:20:00,14.717117117117116,14.717117117117116,15.66902693432043 + 04/14 07:25:00,14.553153153153153,14.553153153153153,15.564818822888629 + 04/14 07:30:00,14.553153153153153,14.553153153153153,15.56520504948217 + 04/14 07:40:00,14.389189189189189,14.389189189189189,15.474126743610177 + 04/14 07:50:00,14.225225225225226,14.225225225225226,15.39957836204172 + 04/14 08:00:00,14.061261261261262,14.061261261261262,15.333679868668446 + 04/14 08:05:00,13.922522522522522,13.922522522522522,15.249067028760527 + 04/14 08:10:00,13.922522522522522,13.922522522522522,15.248590106755831 + 04/14 08:20:00,13.783783783783785,13.783783783783785,15.182287599033286 + 04/14 08:30:00,13.645045045045047,13.645045045045047,15.127861924596607 + 04/14 08:40:00,13.506306306306307,13.506306306306307,15.076336647045997 + 04/14 08:50:00,13.367567567567568,13.367567567567568,15.027996750273817 + 04/14 09:00:00,13.22882882882883,13.22882882882883,14.982119253918077 + 04/14 09:10:00,13.157357357357359,13.157357357357359,14.938608387272316 + 04/14 09:20:00,13.085885885885887,13.085885885885887,14.88806890767641 + 04/14 09:30:00,13.014414414414415,13.014414414414415,14.850001990565369 + 04/14 09:40:00,12.942942942942946,12.942942942942946,14.813917526467544 + 04/14 09:50:00,12.871471471471472,12.871471471471472,14.779415614275699 + 04/14 10:00:00,12.8,12.8,14.746444585102314 + 04/14 10:10:00,12.8,12.8,14.714700402193797 + 04/14 10:20:00,12.8,12.8,14.681211517467777 + 04/14 10:30:00,12.8,12.8,14.652109210880305 + 04/14 10:40:00,12.8,12.8,14.623937772053035 + 04/14 10:50:00,12.8,12.8,14.597512629522117 + 04/14 11:00:00,12.8,12.8,14.572857677181992 + 04/14 11:10:00,12.8,12.8,14.545825668207455 + 04/14 11:20:00,12.8,12.8,14.530850716842524 + 04/14 11:30:00,12.8,12.8,14.51117206459301 + 04/14 11:40:00,12.8,12.8,14.487523514809372 + 04/14 11:50:00,12.8,12.8,14.468444955762129 + 04/14 12:00:00,12.8,12.8,14.45017088534746 + 04/14 12:10:00,12.8,12.8,14.429921041960914 + 04/14 12:20:00,12.8,12.8,14.387912463735799 + 04/14 12:30:00,12.8,12.8,14.379148043324847 + 04/14 12:40:00,12.8,12.8,14.357836358138125 + 04/14 12:50:00,12.8,12.8,14.329249528624335 + 04/14 13:00:00,12.8,12.8,14.32222386368542 + 04/14 13:10:00,12.8,12.8,14.305796448926455 + 04/14 13:20:00,12.8,12.8,14.299645390148092 + 04/14 13:30:00,12.8,12.8,14.288767193293112 + 04/14 13:40:00,12.8,12.8,14.280401888523326 + 04/14 13:50:00,12.8,12.8,14.269165885311404 + 04/14 14:00:00,12.8,12.8,14.261373967597147 + 04/14 14:10:00,12.8,12.8,14.253163406172812 + 04/14 14:20:00,12.8,12.8,14.248158769845528 + 04/14 14:30:00,12.8,12.8,14.242250978011129 + 04/14 14:40:00,12.8,12.8,14.235088665762986 + 04/14 14:50:00,12.8,12.8,14.229139518749625 + 04/14 15:00:00,12.8,12.8,14.22534938616829 + 04/14 15:10:00,12.8,12.8,16.375364581627605 + 04/14 15:20:00,12.8,12.8,16.62524278235307 + 04/14 15:30:00,12.8,12.8,16.723256202984254 + 04/14 15:40:00,12.8,12.8,16.798449392983593 + 04/14 15:50:00,12.8,12.8,16.854680466419567 + 04/14 16:00:00,12.8,12.8,16.903050342943418 + 04/14 16:10:00,12.8,12.8,16.971628052837376 + 04/14 16:20:00,12.8,12.8,17.028097515217167 + 04/14 16:30:00,12.8,12.8,17.060483777146759 + 04/14 16:40:00,12.8,12.8,17.08919146780062 + 04/14 16:50:00,12.8,12.8,17.11526968748897 + 04/14 17:00:00,12.8,12.8,17.13926985016718 + 04/14 17:10:00,12.8,12.8,17.17433296095682 + 04/14 17:20:00,12.8,12.8,17.20150932981958 + 04/14 17:30:00,12.8,12.8,17.222852386974436 + 04/14 17:40:00,12.8,12.8,17.244048764618847 + 04/14 17:50:00,12.8,12.8,17.26531058385989 + 04/14 18:00:00,12.8,12.8,17.286663350125584 + 04/14 18:10:00,12.8,12.8,17.3082395301891 + 04/14 18:20:00,12.8,12.8,17.326640605023106 + 04/14 18:30:00,12.8,12.8,17.347031009345718 + 04/14 18:40:00,12.8,12.8,17.36640045082221 + 04/14 18:50:00,12.8,12.8,17.38569283771057 + 04/14 19:00:00,12.8,12.8,17.404374056163414 + 04/14 19:10:00,12.8,12.8,17.43519076212045 + 04/14 19:20:00,12.8,12.8,17.45284470576612 + 04/14 19:30:00,12.8,12.8,17.468826354285157 + 04/14 19:40:00,12.8,12.8,17.48352548076159 + 04/14 19:50:00,12.8,12.8,17.496901536066898 + 04/14 20:00:00,12.8,12.8,17.509158642943484 + 04/14 20:10:00,12.846246246246248,12.846246246246248,17.498129577053399 + 04/14 20:20:00,12.892492492492494,12.892492492492494,17.514371869149998 + 04/14 20:30:00,12.938738738738739,12.938738738738739,17.525459838619687 + 04/14 20:40:00,12.984984984984987,12.984984984984987,17.53606502026691 + 04/14 20:50:00,13.031231231231232,13.031231231231232,17.54616803856036 + 04/14 21:00:00,13.077477477477478,13.077477477477478,17.55585968722905 + 04/14 21:10:00,13.195195195195196,13.195195195195196,17.565135993549359 + 04/14 21:20:00,13.312912912912913,13.312912912912913,17.573809890377093 + 04/14 21:30:00,13.430630630630632,13.430630630630632,17.58243605294702 + 04/14 21:40:00,13.548348348348349,13.548348348348349,17.59091920521625 + 04/14 21:50:00,13.666066066066067,13.666066066066067,17.599345078918458 + 04/14 22:00:00,13.783783783783785,13.783783783783785,17.60764031984796 + 04/14 22:10:00,13.804804804804805,13.804804804804805,18.982893495247994 + 04/14 22:20:00,13.825825825825828,13.825825825825828,19.13007620885347 + 04/14 22:30:00,13.846846846846848,13.846846846846848,19.196077866367454 + 04/14 22:40:00,13.867867867867869,13.867867867867869,19.248402585694874 + 04/14 22:50:00,13.88888888888889,13.88888888888889,19.29096298064699 + 04/14 23:00:00,13.90990990990991,13.90990990990991,19.326904549011148 + 04/14 23:10:00,13.981381381381383,13.981381381381383,19.35859417908352 + 04/14 23:20:00,14.052852852852853,14.052852852852853,19.38627600110987 + 04/14 23:30:00,14.124324324324326,14.124324324324326,19.411292684217636 + 04/14 23:40:00,14.195795795795796,14.195795795795796,19.434170227225019 + 04/14 23:50:00,14.267267267267269,14.267267267267269,19.455404738987576 + 04/14 24:00:00,14.338738738738739,14.338738738738739,19.47524967959926 + 04/15 00:10:00,14.363963963963965,14.363963963963965,19.493340518374333 + 04/15 00:20:00,14.389189189189189,14.389189189189189,19.510832607433259 + 04/15 00:30:00,14.414414414414415,14.414414414414415,19.527382321517213 + 04/15 00:40:00,14.439639639639639,14.439639639639639,19.543263972656026 + 04/15 00:50:00,14.464864864864865,14.464864864864865,19.558376426466326 + 04/15 01:00:00,14.49009009009009,14.49009009009009,19.572796587481319 + 04/15 01:10:00,14.557357357357358,14.557357357357358,19.58755632519645 + 04/15 01:20:00,14.624624624624625,14.624624624624625,19.601473464836073 + 04/15 01:30:00,14.691891891891892,14.691891891891892,19.61500949893911 + 04/15 01:40:00,14.759159159159159,14.759159159159159,19.62806575176235 + 04/15 01:50:00,14.826426426426427,14.826426426426427,19.64076858954011 + 04/15 02:00:00,14.893693693693694,14.893693693693694,19.65314905563462 + 04/15 02:10:00,14.826426426426427,14.826426426426427,19.663260641877817 + 04/15 02:20:00,14.759159159159159,14.759159159159159,19.67302612329825 + 04/15 02:30:00,14.691891891891892,14.691891891891892,19.682242067839696 + 04/15 02:40:00,14.624624624624625,14.624624624624625,19.690954307021227 + 04/15 02:50:00,14.557357357357358,14.557357357357358,19.6991861377267 + 04/15 03:00:00,14.49009009009009,14.49009009009009,19.7068897964334 + 04/15 03:10:00,14.582582582582584,14.582582582582584,19.71591699265769 + 04/15 03:20:00,14.675075075075075,14.675075075075075,19.725113821941585 + 04/15 03:30:00,14.767567567567568,14.767567567567568,19.734367355213896 + 04/15 03:40:00,14.86006006006006,14.86006006006006,19.743745731196137 + 04/15 03:50:00,14.952552552552552,14.952552552552552,19.753113221605895 + 04/15 04:00:00,15.045045045045045,15.045045045045045,19.762543720381314 + 04/15 04:10:00,15.066066066066066,15.066066066066066,19.769761431621718 + 04/15 04:20:00,15.087087087087087,15.087087087087087,19.777229247650089 + 04/15 04:30:00,15.108108108108109,15.108108108108109,19.78457949387525 + 04/15 04:40:00,15.12912912912913,15.12912912912913,19.79187023970284 + 04/15 04:50:00,15.15015015015015,15.15015015015015,19.79898554597208 + 04/15 05:00:00,15.17117117117117,15.17117117117117,19.806072616788648 + 04/15 05:10:00,15.17117117117117,15.17117117117117,19.812909012362675 + 04/15 05:20:00,15.17117117117117,15.17117117117117,19.81936903014641 + 04/15 05:30:00,15.17117117117117,15.17117117117117,19.8256369199004 + 04/15 05:40:00,15.17117117117117,15.17117117117117,19.83164579734916 + 04/15 05:50:00,15.17117117117117,15.17117117117117,19.83765137888366 + 04/15 06:00:00,15.17117117117117,15.17117117117117,19.84372447691711 + 04/15 06:10:00,15.078678678678678,15.078678678678678,19.187182682604207 + 04/15 06:20:00,14.986186186186187,14.986186186186187,19.12365297595123 + 04/15 06:30:00,14.893693693693694,14.893693693693694,19.099624804992929 + 04/15 06:40:00,14.801201201201203,14.801201201201203,19.08044303598703 + 04/15 06:50:00,14.70870870870871,14.70870870870871,19.064807472869825 + 04/15 07:00:00,14.616216216216217,14.616216216216217,19.05094723723901 + 04/15 07:10:00,14.431231231231232,14.431231231231232,17.95833760644819 + 04/15 07:20:00,14.246246246246246,14.246246246246246,17.808067520765957 + 04/15 07:30:00,14.061261261261262,14.061261261261262,17.74142629891497 + 04/15 07:40:00,13.876276276276278,13.876276276276278,17.685658888019075 + 04/15 07:50:00,13.691291291291292,13.691291291291292,17.637572472490239 + 04/15 08:00:00,13.506306306306307,13.506306306306307,17.594202347261473 + 04/15 08:10:00,13.40960960960961,13.40960960960961,17.554322832977474 + 04/15 08:20:00,13.312912912912913,13.312912912912913,17.506209767374526 + 04/15 08:30:00,13.216216216216216,13.216216216216216,17.469237316495638 + 04/15 08:40:00,13.11951951951952,13.11951951951952,17.433900755464085 + 04/15 08:50:00,13.022822822822823,13.022822822822823,17.400484545790989 + 04/15 09:00:00,12.926126126126127,12.926126126126127,17.36875128549645 + 04/15 09:10:00,12.812612612612615,12.812612612612615,17.338168925471039 + 04/15 09:20:00,12.8,12.8,17.301777035202766 + 04/15 09:30:00,12.8,12.8,17.274972424728433 + 04/15 09:40:00,12.8,12.8,17.249293810956936 + 04/15 09:50:00,12.8,12.8,17.224369857668536 + 04/15 10:00:00,12.8,12.8,17.20025738879692 + 04/15 10:10:00,12.8,12.8,17.176979508208736 + 04/15 10:20:00,12.8,12.8,17.154933706031444 + 04/15 10:30:00,12.8,12.8,17.133528323534955 + 04/15 10:40:00,12.8,12.8,17.113919301018908 + 04/15 10:50:00,12.8,12.8,17.09450628269353 + 04/15 11:00:00,12.8,12.8,17.076095035145234 + 04/15 11:10:00,12.8,12.8,17.05845677760449 + 04/15 11:20:00,12.8,12.8,17.041487760802263 + 04/15 11:30:00,12.8,12.8,17.025116529433136 + 04/15 11:40:00,12.8,12.8,17.009345827634275 + 04/15 11:50:00,12.8,12.8,16.994219579422876 + 04/15 12:00:00,12.8,12.8,16.97970930962177 + 04/15 12:10:00,12.8,12.8,16.965813290971619 + 04/15 12:20:00,12.8,12.8,16.952899709811559 + 04/15 12:30:00,12.8,12.8,16.94101338523569 + 04/15 12:40:00,12.8,12.8,16.93013870888998 + 04/15 12:50:00,12.8,12.8,16.92025313609503 + 04/15 13:00:00,12.8,12.8,16.911279023334577 + 04/15 13:10:00,12.8,12.8,16.902928456716816 + 04/15 13:20:00,12.8,12.8,16.895188168084397 + 04/15 13:30:00,12.8,12.8,16.8880181947905 + 04/15 13:40:00,12.8,12.8,16.881334589632677 + 04/15 13:50:00,12.8,12.8,16.87523606072011 + 04/15 14:00:00,12.8,12.8,16.86967124922546 + 04/15 14:10:00,12.8,12.8,16.865180955131007 + 04/15 14:20:00,12.8,12.8,16.86124141834926 + 04/15 14:30:00,12.8,12.8,16.857663266630014 + 04/15 14:40:00,12.8,12.8,16.85465216106492 + 04/15 14:50:00,12.8,12.8,16.8523846439318 + 04/15 15:00:00,12.8,12.8,16.850901061924416 + 04/15 15:10:00,12.8,12.8,16.849775849745627 + 04/15 15:20:00,12.8,12.8,16.849196886840504 + 04/15 15:30:00,12.8,12.8,16.84913617824713 + 04/15 15:40:00,12.8,12.8,16.849463209754079 + 04/15 15:50:00,12.8,12.8,16.850100305428268 + 04/15 16:00:00,12.8,12.8,16.85098863670204 + 04/15 16:10:00,12.8,12.8,16.866063517337066 + 04/15 16:20:00,12.8,12.8,16.87829927706239 + 04/15 16:30:00,12.8,12.8,16.88167959440939 + 04/15 16:40:00,12.8,12.8,16.885455193381874 + 04/15 16:50:00,12.8,12.8,16.889941266932998 + 04/15 17:00:00,12.8,12.8,16.895123142973067 + 04/15 17:10:00,12.8,12.8,18.671115969279243 + 04/15 17:20:00,12.8,12.8,18.88796746982545 + 04/15 17:30:00,12.8,12.8,18.975595813898225 + 04/15 17:40:00,12.8,12.8,19.044904781913315 + 04/15 17:50:00,12.8,12.8,19.101499910251456 + 04/15 18:00:00,12.8,12.8,19.14991738533816 + 04/15 18:10:00,12.8,12.8,19.205736377178316 + 04/15 18:20:00,12.8,12.8,19.244728378616249 + 04/15 18:30:00,12.8,12.8,19.27983251376699 + 04/15 18:40:00,12.8,12.8,19.311905571980718 + 04/15 18:50:00,12.8,12.8,19.34130281447493 + 04/15 19:00:00,12.8,12.8,19.368272371985719 + 04/15 19:10:00,12.8,12.8,19.395390391048847 + 04/15 19:20:00,12.8,12.8,19.41747302189129 + 04/15 19:30:00,12.8,12.8,19.438611362117407 + 04/15 19:40:00,12.8,12.8,19.45770907344354 + 04/15 19:50:00,12.8,12.8,19.47562322174432 + 04/15 20:00:00,12.8,12.8,19.492517670616054 + 04/15 20:10:00,12.8,12.8,19.486068037090094 + 04/15 20:20:00,12.842042042042042,12.842042042042042,19.502158330751568 + 04/15 20:30:00,12.93873873873874,12.93873873873874,19.51736496877713 + 04/15 20:40:00,13.035435435435437,13.035435435435437,19.531981809083736 + 04/15 20:50:00,13.132132132132134,13.132132132132134,19.545908062487677 + 04/15 21:00:00,13.22882882882883,13.22882882882883,19.559309393550838 + 04/15 21:10:00,13.22882882882883,13.22882882882883,19.571637487201348 + 04/15 21:20:00,13.22882882882883,13.22882882882883,19.58269845703951 + 04/15 21:30:00,13.22882882882883,13.22882882882883,19.59310992925669 + 04/15 21:40:00,13.22882882882883,13.22882882882883,19.602739550953328 + 04/15 21:50:00,13.22882882882883,13.22882882882883,19.61192982665814 + 04/15 22:00:00,13.22882882882883,13.22882882882883,19.62063970684431 + 04/15 22:10:00,13.22882882882883,13.22882882882883,19.629164186551294 + 04/15 22:20:00,13.22882882882883,13.22882882882883,19.638939754704667 + 04/15 22:30:00,13.22882882882883,13.22882882882883,19.648195918356877 + 04/15 22:40:00,13.22882882882883,13.22882882882883,19.657559146789084 + 04/15 22:50:00,13.22882882882883,13.22882882882883,19.666612229391516 + 04/15 23:00:00,13.22882882882883,13.22882882882883,19.675424777397639 + 04/15 23:10:00,13.275075075075077,13.275075075075077,19.684254190563686 + 04/15 23:20:00,13.321321321321323,13.321321321321323,19.691605345271399 + 04/15 23:30:00,13.367567567567568,13.367567567567568,19.698977841926724 + 04/15 23:40:00,13.413813813813816,13.413813813813816,19.706027417083413 + 04/15 23:50:00,13.46006006006006,13.46006006006006,19.713001241355447 + 04/15 24:00:00,13.506306306306307,13.506306306306307,19.71985826286038 + 04/16 00:10:00,13.573573573573574,13.573573573573574,19.725923796891679 + 04/16 00:20:00,13.640840840840842,13.640840840840842,19.73220346897179 + 04/16 00:30:00,13.708108108108109,13.708108108108109,19.738482707619068 + 04/16 00:40:00,13.775375375375376,13.775375375375376,19.744791378441226 + 04/16 00:50:00,13.842642642642645,13.842642642642645,19.751082243778258 + 04/16 01:00:00,13.90990990990991,13.90990990990991,19.757445646499638 + 04/16 01:10:00,13.863663663663666,13.863663663663666,19.76495152836931 + 04/16 01:20:00,13.817417417417417,13.817417417417417,19.772362876436245 + 04/16 01:30:00,13.771171171171173,13.771171171171173,19.778831520114204 + 04/16 01:40:00,13.724924924924926,13.724924924924926,19.784486108549645 + 04/16 01:50:00,13.67867867867868,13.67867867867868,19.789353822342997 + 04/16 02:00:00,13.632432432432433,13.632432432432433,19.793381528321868 + 04/16 02:10:00,13.724924924924926,13.724924924924926,19.796729733495494 + 04/16 02:20:00,13.817417417417417,13.817417417417417,19.799402417165106 + 04/16 02:30:00,13.90990990990991,13.90990990990991,19.802499277435378 + 04/16 02:40:00,14.002402402402403,14.002402402402403,19.80580341963313 + 04/16 02:50:00,14.094894894894896,14.094894894894896,19.809399480331949 + 04/16 03:00:00,14.187387387387388,14.187387387387388,19.813373010869069 + 04/16 03:10:00,14.212612612612613,14.212612612612613,19.817714091897068 + 04/16 03:20:00,14.237837837837838,14.237837837837838,19.82219995954926 + 04/16 03:30:00,14.263063063063063,14.263063063063063,19.826796225929763 + 04/16 03:40:00,14.288288288288289,14.288288288288289,19.831406892544334 + 04/16 03:50:00,14.313513513513513,14.313513513513513,19.836097139519116 + 04/16 04:00:00,14.338738738738739,14.338738738738739,19.840871918661109 + 04/16 04:10:00,14.41021021021021,14.41021021021021,19.845212120447706 + 04/16 04:20:00,14.481681681681682,14.481681681681682,19.84975285739117 + 04/16 04:30:00,14.553153153153153,14.553153153153153,19.85452759663854 + 04/16 04:40:00,14.624624624624625,14.624624624624625,19.85955125741456 + 04/16 04:50:00,14.696096096096096,14.696096096096096,19.864919714937494 + 04/16 05:00:00,14.767567567567568,14.767567567567568,19.870633808223137 + 04/16 05:10:00,14.767567567567568,14.767567567567568,19.877916070080205 + 04/16 05:20:00,14.767567567567568,14.767567567567568,19.88500203194244 + 04/16 05:30:00,14.767567567567568,14.767567567567568,19.891488751641768 + 04/16 05:40:00,14.767567567567568,14.767567567567568,19.897593005290369 + 04/16 05:50:00,14.767567567567568,14.767567567567568,19.903232409163534 + 04/16 06:00:00,14.767567567567568,14.767567567567568,19.90846680145564 + 04/16 06:10:00,14.767567567567568,14.767567567567568,19.935157265808259 + 04/16 06:20:00,14.767567567567568,14.767567567567568,19.939069902682495 + 04/16 06:30:00,14.767567567567568,14.767567567567568,19.942044292732015 + 04/16 06:40:00,14.767567567567568,14.767567567567568,19.94445748715956 + 04/16 06:50:00,14.767567567567568,14.767567567567568,19.946198914410226 + 04/16 07:00:00,14.767567567567568,14.767567567567568,19.94701404445624 + 04/16 07:10:00,14.557357357357358,14.557357357357358,18.54323443904713 + 04/16 07:20:00,14.347147147147148,14.347147147147148,18.375488545913535 + 04/16 07:30:00,14.136936936936938,14.136936936936938,18.306472316778945 + 04/16 07:40:00,13.926726726726728,13.926726726726728,18.249313751151683 + 04/16 07:50:00,13.716516516516517,13.716516516516517,18.200416733908658 + 04/16 08:00:00,13.506306306306307,13.506306306306307,18.156619242614178 + 04/16 08:10:00,13.388588588588588,13.388588588588588,18.116529582874685 + 04/16 08:20:00,13.270870870870871,13.270870870870871,18.07019759344778 + 04/16 08:30:00,13.153153153153154,13.153153153153154,18.035005354263384 + 04/16 08:40:00,13.035435435435435,13.035435435435435,18.001786023094593 + 04/16 08:50:00,12.917717717717718,12.917717717717718,17.970361134922823 + 04/16 09:00:00,12.8,12.8,17.940482279830044 + 04/16 09:10:00,12.8,12.8,17.912145935653418 + 04/16 09:20:00,12.8,12.8,17.876687383300003 + 04/16 09:30:00,12.8,12.8,17.85109785185608 + 04/16 09:40:00,12.8,12.8,17.82666816685344 + 04/16 09:50:00,12.8,12.8,17.80325640102983 + 04/16 10:00:00,12.8,12.8,17.78075160032598 + 04/16 10:10:00,12.8,12.8,17.758701046978289 + 04/16 10:20:00,12.8,12.8,17.736590498670816 + 04/16 10:30:00,12.8,12.8,17.71464837993296 + 04/16 10:40:00,12.8,12.8,17.692681465717368 + 04/16 10:50:00,12.8,12.8,17.67375290328155 + 04/16 11:00:00,12.8,12.8,17.654023143948309 + 04/16 11:10:00,12.8,12.8,17.635788095380833 + 04/16 11:20:00,12.8,12.8,17.61830428332084 + 04/16 11:30:00,12.8,12.8,17.601958430588448 + 04/16 11:40:00,12.8,12.8,17.586682963392595 + 04/16 11:50:00,12.8,12.8,17.572321845488028 + 04/16 12:00:00,12.8,12.8,17.558984359381808 + 04/16 12:10:00,12.8,12.8,17.546968767147648 + 04/16 12:20:00,12.8,12.8,17.53523377276847 + 04/16 12:30:00,12.8,12.8,17.523650832000049 + 04/16 12:40:00,12.8,12.8,17.5123618467188 + 04/16 12:50:00,12.8,12.8,17.501500663437374 + 04/16 13:00:00,12.8,12.8,17.491083571634634 + 04/16 13:10:00,12.8,12.8,17.480684909532625 + 04/16 13:20:00,12.8,12.8,17.47124167612847 + 04/16 13:30:00,12.8,12.8,17.46274058747686 + 04/16 13:40:00,12.8,12.8,17.455351914530416 + 04/16 13:50:00,12.8,12.8,17.44916102815525 + 04/16 14:00:00,12.8,12.8,17.44402823952208 + 04/16 14:10:00,12.8,12.8,17.440423758630645 + 04/16 14:20:00,12.8,12.8,17.437917320584526 + 04/16 14:30:00,12.8,12.8,17.436284808838395 + 04/16 14:40:00,12.8,12.8,17.43531706201369 + 04/16 14:50:00,12.8,12.8,17.43501539858095 + 04/16 15:00:00,12.8,12.8,17.435211340916625 + 04/16 15:10:00,12.8,12.8,18.865374893926324 + 04/16 15:20:00,12.8,12.8,19.01946843379741 + 04/16 15:30:00,12.8,12.8,19.084417551146627 + 04/16 15:40:00,12.8,12.8,19.135107565563368 + 04/16 15:50:00,12.8,12.8,19.175995446767627 + 04/16 16:00:00,12.8,12.8,19.21039126201032 + 04/16 16:10:00,12.8,12.8,19.240874637957057 + 04/16 16:20:00,12.8,12.8,19.276919738653374 + 04/16 16:30:00,12.8,12.8,19.30177207678126 + 04/16 16:40:00,12.8,12.8,19.324601906475146 + 04/16 16:50:00,12.8,12.8,19.345823166878096 + 04/16 17:00:00,12.8,12.8,19.365573635769349 + 04/16 17:10:00,12.8,12.8,19.37539160490856 + 04/16 17:20:00,12.8,12.8,19.415953611828376 + 04/16 17:30:00,12.8,12.8,19.430491406021227 + 04/16 17:40:00,12.8,12.8,19.44861542507063 + 04/16 17:50:00,12.8,12.8,19.46465894232839 + 04/16 18:00:00,12.8,12.8,19.480381031990384 + 04/16 18:10:00,12.8,12.8,19.49630635161739 + 04/16 18:20:00,12.8,12.8,19.512087286771544 + 04/16 18:30:00,12.8,12.8,19.527924738229637 + 04/16 18:40:00,12.8,12.8,19.543616979621569 + 04/16 18:50:00,12.8,12.8,19.558920986550218 + 04/16 19:00:00,12.8,12.8,19.573723361268859 + 04/16 19:10:00,12.8,12.8,19.59191735443379 + 04/16 19:20:00,12.8,12.8,19.602443380223428 + 04/16 19:30:00,12.8,12.8,19.613848774114325 + 04/16 19:40:00,12.8,12.8,19.623362007128649 + 04/16 19:50:00,12.8,12.8,19.63271412092311 + 04/16 20:00:00,12.8,12.8,19.64193943223805 + 04/16 20:10:00,12.8,12.8,19.62856658343531 + 04/16 20:20:00,12.8,12.8,19.640543418554598 + 04/16 20:30:00,12.8,12.8,19.651456831913778 + 04/16 20:40:00,12.8,12.8,19.662390488828945 + 04/16 20:50:00,12.8,12.8,19.6725443082786 + 04/16 21:00:00,12.8,12.8,19.682090846052384 + 04/16 21:10:00,12.8,12.8,19.691359108857556 + 04/16 21:20:00,12.842042042042042,12.842042042042042,19.69890266151391 + 04/16 21:30:00,12.93873873873874,12.93873873873874,19.706347765531207 + 04/16 21:40:00,13.035435435435437,13.035435435435437,19.713407689553138 + 04/16 21:50:00,13.132132132132134,13.132132132132134,19.720446012577456 + 04/16 22:00:00,13.22882882882883,13.22882882882883,19.7274563729921 + 04/16 22:10:00,13.32132132132132,13.32132132132132,19.73390240467453 + 04/16 22:20:00,13.413813813813816,13.413813813813816,19.741931113617633 + 04/16 22:30:00,13.506306306306307,13.506306306306307,19.74974196966027 + 04/16 22:40:00,13.5987987987988,13.5987987987988,19.75771332749321 + 04/16 22:50:00,13.691291291291293,13.691291291291293,19.765451737936524 + 04/16 23:00:00,13.783783783783785,13.783783783783785,19.773017427038316 + 04/16 23:10:00,13.83003003003003,13.83003003003003,19.780743059306148 + 04/16 23:20:00,13.876276276276276,13.876276276276276,19.787139772473887 + 04/16 23:30:00,13.922522522522524,13.922522522522524,19.793544563427024 + 04/16 23:40:00,13.968768768768769,13.968768768768769,19.79962265510832 + 04/16 23:50:00,14.015015015015015,14.015015015015015,19.805691100151276 + 04/16 24:00:00,14.061261261261262,14.061261261261262,19.811723332689309 + 04/17 00:10:00,14.061261261261262,14.061261261261262,19.817561006420396 + 04/17 00:20:00,14.061261261261262,14.061261261261262,19.82301823412009 + 04/17 00:30:00,14.061261261261262,14.061261261261262,19.82816343398991 + 04/17 00:40:00,14.061261261261262,14.061261261261262,19.832988230058029 + 04/17 00:50:00,14.061261261261262,14.061261261261262,19.83744117947534 + 04/17 01:00:00,14.061261261261262,14.061261261261262,19.84178936066761 + 04/17 01:10:00,14.107507507507508,14.107507507507508,19.845809562224557 + 04/17 01:20:00,14.153753753753755,14.153753753753755,19.84985057686217 + 04/17 01:30:00,14.2,14.2,19.85390731438646 + 04/17 01:40:00,14.246246246246246,14.246246246246246,19.857927166816496 + 04/17 01:50:00,14.292492492492493,14.292492492492493,19.862045556874258 + 04/17 02:00:00,14.338738738738739,14.338738738738739,19.86620198733953 + 04/17 02:10:00,14.338738738738739,14.338738738738739,19.8699015334673 + 04/17 02:20:00,14.338738738738739,14.338738738738739,19.873812963089173 + 04/17 02:30:00,14.338738738738739,14.338738738738739,19.877495827624274 + 04/17 02:40:00,14.338738738738739,14.338738738738739,19.881112987852167 + 04/17 02:50:00,14.338738738738739,14.338738738738739,19.884593808334139 + 04/17 03:00:00,14.338738738738739,14.338738738738739,19.88790484299464 + 04/17 03:10:00,14.363963963963965,14.363963963963965,19.891804667328825 + 04/17 03:20:00,14.389189189189189,14.389189189189189,19.895166980130619 + 04/17 03:30:00,14.414414414414415,14.414414414414415,19.898456857221054 + 04/17 03:40:00,14.439639639639639,14.439639639639639,19.9016731907997 + 04/17 03:50:00,14.464864864864865,14.464864864864865,19.904881174851725 + 04/17 04:00:00,14.49009009009009,14.49009009009009,19.908090835077087 + 04/17 04:10:00,14.464864864864865,14.464864864864865,19.910810532753744 + 04/17 04:20:00,14.439639639639639,14.439639639639639,19.913746156919428 + 04/17 04:30:00,14.414414414414415,14.414414414414415,19.916671759118207 + 04/17 04:40:00,14.389189189189189,14.389189189189189,19.919585700398288 + 04/17 04:50:00,14.363963963963965,14.363963963963965,19.922380647904693 + 04/17 05:00:00,14.338738738738739,14.338738738738739,19.92505313229233 + 04/17 05:10:00,14.41021021021021,14.41021021021021,19.927660843467569 + 04/17 05:20:00,14.481681681681682,14.481681681681682,19.930643975948 + 04/17 05:30:00,14.553153153153153,14.553153153153153,19.933814907078206 + 04/17 05:40:00,14.624624624624625,14.624624624624625,19.937204146013863 + 04/17 05:50:00,14.696096096096096,14.696096096096096,19.940733471811865 + 04/17 06:00:00,14.767567567567568,14.767567567567568,19.944301666416494 + 04/17 06:10:00,14.696096096096096,14.696096096096096,17.93960733850558 + 04/17 06:20:00,14.624624624624625,14.624624624624625,17.705013056853497 + 04/17 06:30:00,14.553153153153153,14.553153153153153,17.616536291012797 + 04/17 06:40:00,14.481681681681682,14.481681681681682,17.546806179088735 + 04/17 06:50:00,14.41021021021021,14.41021021021021,17.49105824133671 + 04/17 07:00:00,14.338738738738739,14.338738738738739,17.44393415425597 + 04/17 07:05:00,14.221021021021022,14.221021021021022,15.960109049637259 + 04/17 07:10:00,14.221021021021022,14.221021021021022,15.959462507962718 + 04/17 07:15:00,14.103303303303303,14.103303303303303,15.736493688201819 + 04/17 07:20:00,14.103303303303303,14.103303303303303,15.736754039544622 + 04/17 07:25:00,13.985585585585586,13.985585585585586,15.627496181512786 + 04/17 07:30:00,13.985585585585586,13.985585585585586,15.62759388234952 + 04/17 07:40:00,13.867867867867869,13.867867867867869,15.53445338308003 + 04/17 07:50:00,13.750150150150152,13.750150150150152,15.45559588513012 + 04/17 08:00:00,13.632432432432433,13.632432432432433,15.385659886059833 + 04/17 08:05:00,13.539939939939942,13.539939939939942,15.299240174356703 + 04/17 08:10:00,13.539939939939942,13.539939939939942,15.29822211574174 + 04/17 08:20:00,13.447447447447449,13.447447447447449,15.23178885502431 + 04/17 08:30:00,13.354954954954956,13.354954954954956,15.179310048529202 + 04/17 08:40:00,13.262462462462464,13.262462462462464,15.129599881955207 + 04/17 08:50:00,13.169969969969971,13.169969969969971,15.083715778927127 + 04/17 09:00:00,13.077477477477478,13.077477477477478,15.040914783638526 + 04/17 09:10:00,12.95975975975976,12.95975975975976,15.000715345476254 + 04/17 09:20:00,12.842042042042042,12.842042042042042,14.95068007791798 + 04/17 09:30:00,12.8,12.8,14.913163296240298 + 04/17 09:40:00,12.8,12.8,14.876924554247275 + 04/17 09:50:00,12.8,12.8,14.841704398205384 + 04/17 10:00:00,12.8,12.8,14.807154224862016 + 04/17 10:10:00,12.8,12.8,14.773091644429524 + 04/17 10:20:00,12.8,12.8,14.737136515637582 + 04/17 10:30:00,12.8,12.8,14.705226943529086 + 04/17 10:40:00,12.8,12.8,14.674292617709014 + 04/17 10:50:00,12.8,12.8,14.646829110555692 + 04/17 11:00:00,12.8,12.8,14.619784197982673 + 04/17 11:10:00,12.8,12.8,14.59486285010408 + 04/17 11:20:00,12.8,12.8,14.580785310851525 + 04/17 11:30:00,12.8,12.8,14.558451287247302 + 04/17 11:40:00,12.8,12.8,14.536978827762088 + 04/17 11:50:00,12.8,12.8,14.516137431633423 + 04/17 12:00:00,12.8,12.8,14.495712032573172 + 04/17 12:10:00,12.8,12.8,14.476084187854453 + 04/17 12:20:00,12.8,12.8,14.44867687026191 + 04/17 12:30:00,12.8,12.8,14.430047970797949 + 04/17 12:40:00,12.8,12.8,14.41153873802271 + 04/17 12:50:00,12.8,12.8,14.396162725348525 + 04/17 13:00:00,12.8,12.8,14.378532821862171 + 04/17 13:10:00,12.8,12.8,14.365285217909424 + 04/17 13:20:00,12.8,12.8,14.354007177702725 + 04/17 13:30:00,12.8,12.8,14.340205957255666 + 04/17 13:40:00,12.8,12.8,14.328220967450149 + 04/17 13:50:00,12.8,12.8,14.31347134812658 + 04/17 14:00:00,12.8,12.8,14.302270350461365 + 04/17 14:10:00,12.8,12.8,14.29041220478283 + 04/17 14:20:00,12.8,12.8,14.282075751343993 + 04/17 14:30:00,12.8,12.8,14.273539078189094 + 04/17 14:40:00,12.8,12.8,14.264509792803344 + 04/17 14:50:00,12.8,12.8,14.256557422301864 + 04/17 15:00:00,12.8,12.8,14.251276889097383 + 04/17 15:05:00,12.8,12.8,16.398299337511884 + 04/17 15:10:00,12.8,12.8,16.39773251700152 + 04/17 15:15:00,12.8,12.8,16.646080936874406 + 04/17 15:20:00,12.8,12.8,16.6463986448389 + 04/17 15:30:00,12.8,12.8,16.741778539471306 + 04/17 15:40:00,12.8,12.8,16.814698865392594 + 04/17 15:50:00,12.8,12.8,16.869136028910178 + 04/17 16:00:00,12.8,12.8,16.914684107810844 + 04/17 16:10:00,12.8,12.8,16.98021119479385 + 04/17 16:20:00,12.8,12.8,17.034587631462814 + 04/17 16:30:00,12.8,12.8,17.065683191060683 + 04/17 16:40:00,12.8,12.8,17.093828842480727 + 04/17 16:50:00,12.8,12.8,17.11987093800023 + 04/17 17:00:00,12.8,12.8,17.144217534991669 + 04/17 17:10:00,12.8,12.8,17.18040903340505 + 04/17 17:20:00,12.8,12.8,17.20797319910026 + 04/17 17:30:00,12.8,12.8,17.228948988449738 + 04/17 17:40:00,12.8,12.8,17.24918250491249 + 04/17 17:50:00,12.8,12.8,17.26923096791964 + 04/17 18:00:00,12.8,12.8,17.289138422861055 + 04/17 18:10:00,12.8,12.8,17.308515880075598 + 04/17 18:20:00,12.8,12.8,17.32787610252737 + 04/17 18:30:00,12.8,12.8,17.34676013682077 + 04/17 18:40:00,12.8,12.8,17.364818856481837 + 04/17 18:50:00,12.8,12.8,17.381857679251199 + 04/17 19:00:00,12.8,12.8,17.39788326200576 + 04/17 19:10:00,12.8,12.8,17.426384685172708 + 04/17 19:20:00,12.8,12.8,17.442143767428776 + 04/17 19:30:00,12.8,12.8,17.454617084810854 + 04/17 19:40:00,12.8,12.8,17.46891499158766 + 04/17 19:50:00,12.8,12.8,17.481828897651213 + 04/17 20:00:00,12.8,12.8,17.494464241960594 + 04/17 20:10:00,12.8,12.8,17.484009594621694 + 04/17 20:20:00,12.8,12.8,17.499233013543518 + 04/17 20:30:00,12.8,12.8,17.509623651062854 + 04/17 20:40:00,12.842042042042042,12.842042042042042,17.51966725856559 + 04/17 20:50:00,12.95975975975976,12.95975975975976,17.529516185302897 + 04/17 21:00:00,13.077477477477478,13.077477477477478,17.53914443830381 + 04/17 21:10:00,13.077477477477478,13.077477477477478,17.54715680169818 + 04/17 21:20:00,13.077477477477478,13.077477477477478,17.554396262356293 + 04/17 21:30:00,13.077477477477478,13.077477477477478,17.560865226570436 + 04/17 21:40:00,13.077477477477478,13.077477477477478,17.566580679957548 + 04/17 21:50:00,13.077477477477478,13.077477477477478,17.57158441121596 + 04/17 22:00:00,13.077477477477478,13.077477477477478,17.57614441836102 + 04/17 22:10:00,13.148948948948949,13.148948948948949,18.947635243501688 + 04/17 22:20:00,13.220420420420421,13.220420420420421,19.093070884969259 + 04/17 22:30:00,13.291891891891894,13.291891891891894,19.157345119236369 + 04/17 22:40:00,13.363363363363364,13.363363363363364,19.208373458110665 + 04/17 22:50:00,13.434834834834835,13.434834834834835,19.24982947500104 + 04/17 23:00:00,13.506306306306307,13.506306306306307,19.284878174514114 + 04/17 23:10:00,13.527327327327328,13.527327327327328,19.31586090107244 + 04/17 23:20:00,13.548348348348349,13.548348348348349,19.343202038865639 + 04/17 23:30:00,13.56936936936937,13.56936936936937,19.367810104607544 + 04/17 23:40:00,13.590390390390392,13.590390390390392,19.39035672384121 + 04/17 23:50:00,13.611411411411412,13.611411411411412,19.41112927208247 + 04/17 24:00:00,13.632432432432433,13.632432432432433,19.43041485694682 + 04/18 00:10:00,13.67867867867868,13.67867867867868,19.448022680458619 + 04/18 00:20:00,13.724924924924924,13.724924924924924,19.46435538089915 + 04/18 00:30:00,13.771171171171173,13.771171171171173,19.480177199899765 + 04/18 00:40:00,13.817417417417419,13.817417417417419,19.495487593035994 + 04/18 00:50:00,13.863663663663666,13.863663663663666,19.510425254888696 + 04/18 01:00:00,13.90990990990991,13.90990990990991,19.525132781809437 + 04/18 01:10:00,13.956156156156157,13.956156156156157,19.53864693792209 + 04/18 01:20:00,14.002402402402403,14.002402402402403,19.552119452201177 + 04/18 01:30:00,14.04864864864865,14.04864864864865,19.565121613478895 + 04/18 01:40:00,14.094894894894896,14.094894894894896,19.577706534836364 + 04/18 01:50:00,14.14114114114114,14.14114114114114,19.58985191106383 + 04/18 02:00:00,14.187387387387388,14.187387387387388,19.60159706093308 + 04/18 02:10:00,14.14114114114114,14.14114114114114,19.614373292982376 + 04/18 02:20:00,14.094894894894896,14.094894894894896,19.626248888927294 + 04/18 02:30:00,14.04864864864865,14.04864864864865,19.637301323690975 + 04/18 02:40:00,14.002402402402403,14.002402402402403,19.647546674312708 + 04/18 02:50:00,13.956156156156157,13.956156156156157,19.657115539793638 + 04/18 03:00:00,13.90990990990991,13.90990990990991,19.66599333083279 + 04/18 03:10:00,13.956156156156157,13.956156156156157,19.673383416891985 + 04/18 03:20:00,14.002402402402403,14.002402402402403,19.680724711888339 + 04/18 03:30:00,14.04864864864865,14.04864864864865,19.688077886950347 + 04/18 03:40:00,14.094894894894896,14.094894894894896,19.695492902431579 + 04/18 03:50:00,14.14114114114114,14.14114114114114,19.702890789937216 + 04/18 04:00:00,14.187387387387388,14.187387387387388,19.710426289800574 + 04/18 04:10:00,14.237837837837838,14.237837837837838,19.719549394045928 + 04/18 04:20:00,14.288288288288289,14.288288288288289,19.728079790114007 + 04/18 04:30:00,14.338738738738739,14.338738738738739,19.736152710277929 + 04/18 04:40:00,14.389189189189189,14.389189189189189,19.74369053411663 + 04/18 04:50:00,14.43963963963964,14.43963963963964,19.75084871826855 + 04/18 05:00:00,14.49009009009009,14.49009009009009,19.75770727720088 + 04/18 05:10:00,14.536336336336337,14.536336336336337,19.763700838196244 + 04/18 05:20:00,14.582582582582582,14.582582582582582,19.770196895899919 + 04/18 05:30:00,14.628828828828829,14.628828828828829,19.77683796247223 + 04/18 05:40:00,14.675075075075075,14.675075075075075,19.78358695664737 + 04/18 05:50:00,14.721321321321322,14.721321321321322,19.79058027715221 + 04/18 06:00:00,14.767567567567568,14.767567567567568,19.797613454178526 + 04/18 06:10:00,14.767567567567568,14.767567567567568,17.797619971547726 + 04/18 06:20:00,14.767567567567568,14.767567567567568,17.56561013915134 + 04/18 06:30:00,14.767567567567568,14.767567567567568,17.480849219406424 + 04/18 06:40:00,14.767567567567568,14.767567567567568,17.41504765018192 + 04/18 06:50:00,14.767567567567568,14.767567567567568,17.363089260559535 + 04/18 07:00:00,14.767567567567568,14.767567567567568,17.319999021605406 + 04/18 07:05:00,14.511111111111111,14.511111111111111,15.841934535193208 + 04/18 07:10:00,14.511111111111111,14.511111111111111,15.840953906011365 + 04/18 07:15:00,14.254654654654655,14.254654654654655,15.625334215135533 + 04/18 07:20:00,14.254654654654655,14.254654654654655,15.62531840186374 + 04/18 07:30:00,13.998198198198198,13.998198198198198,15.521255783199882 + 04/18 07:40:00,13.741741741741743,13.741741741741743,15.436203922004666 + 04/18 07:50:00,13.485285285285287,13.485285285285287,15.363571037496124 + 04/18 08:00:00,13.22882882882883,13.22882882882883,15.299158643678029 + 04/18 08:03:19,13.111111111111113,13.111111111111113,15.21536994364092 + 04/18 08:06:40,13.111111111111113,13.111111111111113,15.214934467032297 + 04/18 08:10:00,13.111111111111113,13.111111111111113,15.2150142464593 + 04/18 08:20:00,12.993393393393394,12.993393393393394,15.151859107382823 + 04/18 08:30:00,12.875675675675677,12.875675675675677,15.101490558777808 + 04/18 08:40:00,12.8,12.8,15.054268521132738 + 04/18 08:50:00,12.8,12.8,15.0096024029868 + 04/18 09:00:00,12.8,12.8,14.966652312751242 + 04/18 09:10:00,12.8,12.8,14.925415090658266 + 04/18 09:20:00,12.8,12.8,14.875798364503412 + 04/18 09:30:00,12.8,12.8,14.83821008245609 + 04/18 09:40:00,12.8,12.8,14.802293234308318 + 04/18 09:50:00,12.8,12.8,14.768259588716932 + 04/18 10:00:00,12.8,12.8,14.736161080227939 + 04/18 10:10:00,12.8,12.8,14.705876973327735 + 04/18 10:20:00,12.8,12.8,14.678606905703134 + 04/18 10:30:00,12.8,12.8,14.654222754429036 + 04/18 10:40:00,12.8,12.8,14.63208495854105 + 04/18 10:50:00,12.8,12.8,14.60924874225179 + 04/18 11:00:00,12.8,12.8,14.587029841827274 + 04/18 11:10:00,12.8,12.8,14.565419864313867 + 04/18 11:20:00,12.8,12.8,14.549527632194478 + 04/18 11:30:00,12.8,12.8,14.525747673955625 + 04/18 11:40:00,12.8,12.8,14.502971194222905 + 04/18 11:50:00,12.8,12.8,14.479328235597569 + 04/18 12:00:00,12.8,12.8,14.458129715999196 + 04/18 12:10:00,12.8,12.8,14.439774878662579 + 04/18 12:20:00,12.8,12.8,14.411109426704956 + 04/18 12:30:00,12.8,12.8,14.393304867665492 + 04/18 12:40:00,12.8,12.8,14.378415864212533 + 04/18 12:50:00,12.8,12.8,14.33963416176259 + 04/18 13:00:00,12.8,12.8,14.322614919162268 + 04/18 13:10:00,12.8,12.8,14.422990417386883 + 04/18 13:20:00,12.8,12.8,14.345054343419174 + 04/18 13:30:00,12.8,12.8,14.336345017637547 + 04/18 13:40:00,12.8,12.8,14.332975413945372 + 04/18 13:50:00,12.8,12.8,14.312051803581449 + 04/18 14:00:00,12.8,12.8,14.321239021576563 + 04/18 14:10:00,12.8,12.8,14.31287368289069 + 04/18 14:20:00,12.8,12.8,14.318933012676995 + 04/18 14:30:00,12.8,12.8,14.315901392811652 + 04/18 14:40:00,12.8,12.8,14.315868573411804 + 04/18 14:50:00,12.8,12.8,14.317126481088558 + 04/18 15:00:00,12.8,12.8,14.315826764409316 + 04/18 15:05:00,12.8,12.8,16.472440251294605 + 04/18 15:10:00,12.8,12.8,16.47081739706941 + 04/18 15:20:00,12.8,12.8,16.723785134338074 + 04/18 15:30:00,12.8,12.8,16.822236427238115 + 04/18 15:40:00,12.8,12.8,16.89696172669823 + 04/18 15:50:00,12.8,12.8,16.956352637163059 + 04/18 16:00:00,12.8,12.8,17.004462566308186 + 04/18 16:10:00,12.8,12.8,17.069367280925154 + 04/18 16:20:00,12.8,12.8,17.12261447155745 + 04/18 16:30:00,12.8,12.8,17.15234738468868 + 04/18 16:40:00,12.8,12.8,17.178575535709819 + 04/18 16:50:00,12.8,12.8,17.202323039079734 + 04/18 17:00:00,12.8,12.8,17.224044247654488 + 04/18 17:10:00,12.8,12.8,17.25745170857094 + 04/18 17:20:00,12.8,12.8,17.282565136624947 + 04/18 17:30:00,12.8,12.8,17.30109669797586 + 04/18 17:40:00,12.8,12.8,17.318765915605725 + 04/18 17:50:00,12.8,12.8,17.33579722751366 + 04/18 18:00:00,12.8,12.8,17.352280283401048 + 04/18 18:10:00,12.8,12.8,17.368575904868665 + 04/18 18:20:00,12.8,12.8,17.381503970886397 + 04/18 18:30:00,12.8,12.8,17.39437759461437 + 04/18 18:40:00,12.8,12.8,17.406633924613108 + 04/18 18:50:00,12.8,12.8,17.41871074381045 + 04/18 19:00:00,12.8,12.8,17.430410338827149 + 04/18 19:10:00,12.8,12.8,17.4548845909235 + 04/18 19:20:00,12.8,12.8,17.47194840120298 + 04/18 19:30:00,12.8,12.8,17.48760046206948 + 04/18 19:40:00,12.8,12.8,17.503016065449367 + 04/18 19:50:00,12.8,12.8,17.517363257523614 + 04/18 20:00:00,12.8,12.8,17.530873357716403 + 04/18 20:10:00,12.8,12.8,17.52114731029233 + 04/18 20:20:00,12.8,12.8,17.53529569426997 + 04/18 20:30:00,12.863063063063063,12.863063063063063,17.544814874728734 + 04/18 20:40:00,12.934534534534535,12.934534534534535,17.55365034866223 + 04/18 20:50:00,13.006006006006008,13.006006006006008,17.56232421921476 + 04/18 21:00:00,13.077477477477478,13.077477477477478,17.57075596804148 + 04/18 21:10:00,13.102702702702704,13.102702702702704,17.578442156479207 + 04/18 21:20:00,13.127927927927928,13.127927927927928,17.58399940933323 + 04/18 21:30:00,13.153153153153154,13.153153153153154,17.589418205827874 + 04/18 21:40:00,13.17837837837838,13.17837837837838,17.594388349925496 + 04/18 21:50:00,13.203603603603604,13.203603603603604,17.5992237618267 + 04/18 22:00:00,13.22882882882883,13.22882882882883,17.60387743193214 + 04/18 22:10:00,13.24984984984985,13.24984984984985,18.97285962281874 + 04/18 22:20:00,13.270870870870871,13.270870870870871,19.11822174456534 + 04/18 22:30:00,13.291891891891894,13.291891891891894,19.182480647664524 + 04/18 22:40:00,13.312912912912914,13.312912912912914,19.233488254413424 + 04/18 22:50:00,13.333933933933935,13.333933933933935,19.274666861456486 + 04/18 23:00:00,13.354954954954956,13.354954954954956,19.309275986050048 + 04/18 23:10:00,13.380180180180182,13.380180180180182,19.339105105270844 + 04/18 23:20:00,13.405405405405407,13.405405405405407,19.36587406558977 + 04/18 23:30:00,13.430630630630632,13.430630630630632,19.38991159796383 + 04/18 23:40:00,13.455855855855857,13.455855855855857,19.41165392232481 + 04/18 23:50:00,13.481081081081081,13.481081081081081,19.431680666428098 + 04/18 24:00:00,13.506306306306307,13.506306306306307,19.45017617230336 + 04/19 00:10:00,13.573573573573574,13.573573573573574,19.46805067315922 + 04/19 00:20:00,13.640840840840842,13.640840840840842,19.48584647697756 + 04/19 00:30:00,13.708108108108109,13.708108108108109,19.502626899897714 + 04/19 00:40:00,13.775375375375376,13.775375375375376,19.518776135302468 + 04/19 00:50:00,13.842642642642645,13.842642642642645,19.53413352749438 + 04/19 01:00:00,13.90990990990991,13.90990990990991,19.548921627800526 + 04/19 01:10:00,13.90990990990991,13.90990990990991,19.56257412853605 + 04/19 01:20:00,13.90990990990991,13.90990990990991,19.575353851306539 + 04/19 01:30:00,13.90990990990991,13.90990990990991,19.587531695360839 + 04/19 01:40:00,13.90990990990991,13.90990990990991,19.59904009879217 + 04/19 01:50:00,13.90990990990991,13.90990990990991,19.610052276945568 + 04/19 02:00:00,13.90990990990991,13.90990990990991,19.62066887319878 + 04/19 02:10:00,13.90990990990991,13.90990990990991,19.631354194245128 + 04/19 02:20:00,13.90990990990991,13.90990990990991,19.64086814148265 + 04/19 02:30:00,13.90990990990991,13.90990990990991,19.6499837065148 + 04/19 02:40:00,13.90990990990991,13.90990990990991,19.65853570957781 + 04/19 02:50:00,13.90990990990991,13.90990990990991,19.66685096979291 + 04/19 03:00:00,13.90990990990991,13.90990990990991,19.674885367166959 + 04/19 03:10:00,13.935135135135136,13.935135135135136,19.681953972796188 + 04/19 03:20:00,13.960360360360362,13.960360360360362,19.689575083150758 + 04/19 03:30:00,13.985585585585586,13.985585585585586,19.69696544306632 + 04/19 03:40:00,14.010810810810812,14.010810810810812,19.70446306575127 + 04/19 03:50:00,14.036036036036038,14.036036036036038,19.7117838060043 + 04/19 04:00:00,14.061261261261262,14.061261261261262,19.71894429783062 + 04/19 04:10:00,14.061261261261262,14.061261261261262,19.726580020676847 + 04/19 04:20:00,14.061261261261262,14.061261261261262,19.733592776327045 + 04/19 04:30:00,14.061261261261262,14.061261261261262,19.740476166611459 + 04/19 04:40:00,14.061261261261262,14.061261261261262,19.747047731925308 + 04/19 04:50:00,14.061261261261262,14.061261261261262,19.753410784534727 + 04/19 05:00:00,14.061261261261262,14.061261261261262,19.759581823134796 + 04/19 05:10:00,14.082282282282283,14.082282282282283,19.76522307030164 + 04/19 05:20:00,14.103303303303303,14.103303303303303,19.770497922774586 + 04/19 05:30:00,14.124324324324324,14.124324324324324,19.775685192802646 + 04/19 05:40:00,14.145345345345346,14.145345345345346,19.780699484916604 + 04/19 05:50:00,14.166366366366367,14.166366366366367,19.785618210991218 + 04/19 06:00:00,14.187387387387388,14.187387387387388,19.7903983790504 + 04/19 06:10:00,14.166366366366367,14.166366366366367,17.792430046502706 + 04/19 06:20:00,14.145345345345346,14.145345345345346,17.559762489684137 + 04/19 06:30:00,14.124324324324324,14.124324324324324,17.47463532001207 + 04/19 06:40:00,14.103303303303303,14.103303303303303,17.408606693421278 + 04/19 06:50:00,14.082282282282283,14.082282282282283,17.356347543387913 + 04/19 07:00:00,14.061261261261262,14.061261261261262,17.31288595091821 + 04/19 07:05:00,14.015015015015015,14.015015015015015,15.83572671703405 + 04/19 07:10:00,14.015015015015015,14.015015015015015,15.8355529018216 + 04/19 07:15:00,13.968768768768769,13.968768768768769,15.617309571204285 + 04/19 07:20:00,13.968768768768769,13.968768768768769,15.617496422814709 + 04/19 07:30:00,13.922522522522524,13.922522522522524,15.51454949221948 + 04/19 07:40:00,13.876276276276278,13.876276276276278,15.430433257813029 + 04/19 07:50:00,13.83003003003003,13.83003003003003,15.360241618336202 + 04/19 08:00:00,13.783783783783785,13.783783783783785,15.299661316364344 + 04/19 08:05:00,13.691291291291293,13.691291291291293,15.221309826256859 + 04/19 08:10:00,13.691291291291293,13.691291291291293,15.2208753190748 + 04/19 08:20:00,13.5987987987988,13.5987987987988,15.163958708408812 + 04/19 08:30:00,13.506306306306307,13.506306306306307,15.119729385947167 + 04/19 08:40:00,13.413813813813816,13.413813813813816,15.077983638804828 + 04/19 08:50:00,13.32132132132132,13.32132132132132,15.03779001860541 + 04/19 09:00:00,13.22882882882883,13.22882882882883,14.998186481790578 + 04/19 09:10:00,13.132132132132134,13.132132132132134,14.958714626543545 + 04/19 09:20:00,13.035435435435437,13.035435435435437,14.910486264642861 + 04/19 09:30:00,12.93873873873874,12.93873873873874,14.873034284280342 + 04/19 09:40:00,12.842042042042044,12.842042042042044,14.834908260427227 + 04/19 09:50:00,12.8,12.8,14.79879991159844 + 04/19 10:00:00,12.8,12.8,14.764462577733259 + 04/19 10:10:00,12.8,12.8,14.732105247064795 + 04/19 10:20:00,12.8,12.8,14.697601346308116 + 04/19 10:30:00,12.8,12.8,14.667585342921987 + 04/19 10:40:00,12.8,12.8,14.638573439953927 + 04/19 10:50:00,12.8,12.8,14.610629850237308 + 04/19 11:00:00,12.8,12.8,14.5838168279822 + 04/19 11:10:00,12.8,12.8,14.55905247591015 + 04/19 11:20:00,12.8,12.8,14.545531391751302 + 04/19 11:30:00,12.8,12.8,14.522197643952767 + 04/19 11:40:00,12.8,12.8,14.499234850060596 + 04/19 11:50:00,12.8,12.8,14.480412811776937 + 04/19 12:00:00,12.8,12.8,14.46337161104804 + 04/19 12:10:00,12.8,12.8,14.44646904595562 + 04/19 12:20:00,12.8,12.8,14.424942122903844 + 04/19 12:25:00,12.8,12.8,14.4143478340871 + 04/19 12:30:00,12.8,12.8,14.413943252145895 + 04/19 12:40:00,12.8,12.8,14.40261432562467 + 04/19 12:45:00,12.8,12.8,14.398523762375483 + 04/19 12:50:00,12.8,12.8,14.393318230890783 + 04/19 13:00:00,12.8,12.8,14.382143519807084 + 04/19 13:10:00,12.8,12.8,14.375337741459083 + 04/19 13:20:00,12.8,12.8,14.368207192344955 + 04/19 13:30:00,12.8,12.8,14.359111988885197 + 04/19 13:40:00,12.8,12.8,14.351079600621793 + 04/19 13:50:00,12.8,12.8,14.33872520226037 + 04/19 14:00:00,12.8,12.8,14.33066844739026 + 04/19 14:10:00,12.8,12.8,14.316067558813442 + 04/19 14:20:00,12.8,12.8,14.305928054601278 + 04/19 14:30:00,12.8,12.8,14.293518234923964 + 04/19 14:40:00,12.8,12.8,14.28201131352386 + 04/19 14:50:00,12.8,12.8,14.274183311828964 + 04/19 15:00:00,12.8,12.8,14.272886846305293 + 04/19 15:10:00,12.8,12.8,16.422613806162685 + 04/19 15:15:00,12.8,12.8,16.681738873258064 + 04/19 15:20:00,12.8,12.8,16.680749062116278 + 04/19 15:30:00,12.8,12.8,16.788128088845356 + 04/19 15:40:00,12.8,12.8,16.87235660940585 + 04/19 15:50:00,12.8,12.8,16.920346130454605 + 04/19 16:00:00,12.8,12.8,16.976636477046683 + 04/19 16:10:00,12.8,12.8,17.038016355782799 + 04/19 16:20:00,12.8,12.8,17.09224670945484 + 04/19 16:30:00,12.8,12.8,17.118848633316419 + 04/19 16:40:00,12.8,12.8,17.141787137864449 + 04/19 16:50:00,12.8,12.8,17.163676723767403 + 04/19 17:00:00,12.8,12.8,17.18542008914047 + 04/19 17:10:00,12.8,12.8,17.220478107153839 + 04/19 17:20:00,12.8,12.8,17.238645146643216 + 04/19 17:30:00,12.8,12.8,17.26478664625837 + 04/19 17:40:00,12.8,12.8,17.282776169184538 + 04/19 17:50:00,12.8,12.8,17.29662838280676 + 04/19 18:00:00,12.8,12.8,17.319010295268208 + 04/19 18:10:00,12.8,12.8,17.32976232171162 + 04/19 18:20:00,12.8,12.8,17.351594863255046 + 04/19 18:30:00,12.8,12.8,17.3678633685435 + 04/19 18:40:00,12.8,12.8,17.386439004013476 + 04/19 18:50:00,12.8,12.8,17.40393078203683 + 04/19 19:00:00,12.8,12.8,17.42114364410473 + 04/19 19:10:00,12.8,12.8,17.451483767606125 + 04/19 19:20:00,12.8,12.8,17.469672533724326 + 04/19 19:30:00,12.8,12.8,17.487150866992225 + 04/19 19:40:00,12.8,12.8,17.504074977949288 + 04/19 19:50:00,12.833633633633636,12.833633633633636,17.520360955263777 + 04/19 20:00:00,12.926126126126127,12.926126126126127,17.536096375203884 + 04/19 20:10:00,12.997597597597599,12.997597597597599,17.52885353701115 + 04/19 20:20:00,13.06906906906907,13.06906906906907,17.54749457240495 + 04/19 20:30:00,13.140540540540542,13.140540540540542,17.575423724006535 + 04/19 20:40:00,13.212012012012015,13.212012012012015,17.58567776209923 + 04/19 20:50:00,13.283483483483485,13.283483483483485,17.598456739125017 + 04/19 21:00:00,13.354954954954956,13.354954954954956,17.60765712483539 + 04/19 21:10:00,13.401201201201202,13.401201201201202,17.616582859473146 + 04/19 21:20:00,13.447447447447449,13.447447447447449,17.62542961235213 + 04/19 21:30:00,13.493693693693695,13.493693693693695,17.63385228356439 + 04/19 21:40:00,13.539939939939942,13.539939939939942,17.64188664683264 + 04/19 21:50:00,13.586186186186187,13.586186186186187,17.649593052380163 + 04/19 22:00:00,13.632432432432433,13.632432432432433,17.657139732459194 + 04/19 22:10:00,13.703903903903905,13.703903903903905,19.02322231081876 + 04/19 22:20:00,13.775375375375376,13.775375375375376,19.16849329833054 + 04/19 22:30:00,13.846846846846847,13.846846846846847,19.233433002762767 + 04/19 22:40:00,13.918318318318319,13.918318318318319,19.28493931511812 + 04/19 22:50:00,13.989789789789791,13.989789789789791,19.32697524517613 + 04/19 23:00:00,14.061261261261262,14.061261261261262,19.362607787296676 + 04/19 23:10:00,14.061261261261262,14.061261261261262,19.393900172901696 + 04/19 23:20:00,14.061261261261262,14.061261261261262,19.422011904855773 + 04/19 23:30:00,14.061261261261262,14.061261261261262,19.44718736893356 + 04/19 23:40:00,14.061261261261262,14.061261261261262,19.470180530355337 + 04/19 23:50:00,14.061261261261262,14.061261261261262,19.491257912472553 + 04/19 24:00:00,14.061261261261262,14.061261261261262,19.510708703406278 + 04/20 00:10:00,14.061261261261262,14.061261261261262,19.528412462077 + 04/20 00:20:00,14.061261261261262,14.061261261261262,19.54483383178343 + 04/20 00:30:00,14.061261261261262,14.061261261261262,19.560186981698274 + 04/20 00:40:00,14.061261261261262,14.061261261261262,19.574638153494889 + 04/20 00:50:00,14.061261261261262,14.061261261261262,19.588252985337698 + 04/20 01:00:00,14.061261261261262,14.061261261261262,19.601125000459505 + 04/20 01:10:00,14.082282282282283,14.082282282282283,19.613241952459128 + 04/20 01:20:00,14.103303303303303,14.103303303303303,19.624525361319756 + 04/20 01:30:00,14.124324324324324,14.124324324324324,19.63548739015209 + 04/20 01:40:00,14.145345345345346,14.145345345345346,19.646029059857 + 04/20 01:50:00,14.166366366366367,14.166366366366367,19.65626167710861 + 04/20 02:00:00,14.187387387387388,14.187387387387388,19.66619529836168 + 04/20 02:10:00,14.237837837837838,14.237837837837838,19.67622497923403 + 04/20 02:20:00,14.288288288288289,14.288288288288289,19.68606291521444 + 04/20 02:30:00,14.338738738738739,14.338738738738739,19.695689192317088 + 04/20 02:40:00,14.389189189189189,14.389189189189189,19.705096830763006 + 04/20 02:50:00,14.43963963963964,14.43963963963964,19.714306411327909 + 04/20 03:00:00,14.49009009009009,14.49009009009009,19.72323473144149 + 04/20 03:10:00,14.49009009009009,14.49009009009009,19.731897611205768 + 04/20 03:20:00,14.49009009009009,14.49009009009009,19.740331860507906 + 04/20 03:30:00,14.49009009009009,14.49009009009009,19.748466238877439 + 04/20 03:40:00,14.49009009009009,14.49009009009009,19.756321353239416 + 04/20 03:50:00,14.49009009009009,14.49009009009009,19.763839646452764 + 04/20 04:00:00,14.49009009009009,14.49009009009009,19.771131287865836 + 04/20 04:10:00,14.511111111111111,14.511111111111111,19.7784798369939 + 04/20 04:20:00,14.532132132132132,14.532132132132132,19.785856266880026 + 04/20 04:30:00,14.553153153153153,14.553153153153153,19.793025782321018 + 04/20 04:40:00,14.574174174174175,14.574174174174175,19.800011578702738 + 04/20 04:50:00,14.595195195195196,14.595195195195196,19.80677173852494 + 04/20 05:00:00,14.616216216216217,14.616216216216217,19.81339431669891 + 04/20 05:10:00,14.616216216216217,14.616216216216217,19.819320220555075 + 04/20 05:20:00,14.616216216216217,14.616216216216217,19.82507794700328 + 04/20 05:30:00,14.616216216216217,14.616216216216217,19.830674385935507 + 04/20 05:40:00,14.616216216216217,14.616216216216217,19.836068453654819 + 04/20 05:50:00,14.616216216216217,14.616216216216217,19.841423879624189 + 04/20 06:00:00,14.616216216216217,14.616216216216217,19.846658854898619 + 04/20 06:10:00,14.56996996996997,14.56996996996997,17.84935351091628 + 04/20 06:20:00,14.523723723723723,14.523723723723723,17.61671021909 + 04/20 06:30:00,14.477477477477479,14.477477477477479,17.530675160473185 + 04/20 06:40:00,14.431231231231232,14.431231231231232,17.463086293790818 + 04/20 06:50:00,14.384984984984986,14.384984984984986,17.409275584514015 + 04/20 07:00:00,14.338738738738739,14.338738738738739,17.363979690554634 + 04/20 07:05:00,14.292492492492493,14.292492492492493,15.885808355740928 + 04/20 07:10:00,14.292492492492493,14.292492492492493,15.885594080770736 + 04/20 07:15:00,14.246246246246246,14.246246246246246,15.666010696627842 + 04/20 07:20:00,14.246246246246246,14.246246246246246,15.666181804253155 + 04/20 07:30:00,14.2,14.2,15.561488393343908 + 04/20 07:40:00,14.153753753753755,14.153753753753755,15.475799478929608 + 04/20 07:50:00,14.107507507507508,14.107507507507508,15.404344187342464 + 04/20 08:00:00,14.061261261261262,14.061261261261262,15.343053999703536 + 04/20 08:05:00,13.968768768768769,13.968768768768769,15.264525010305063 + 04/20 08:10:00,13.968768768768769,13.968768768768769,15.263760666063933 + 04/20 08:20:00,13.876276276276276,13.876276276276276,15.206829126098937 + 04/20 08:30:00,13.783783783783785,13.783783783783785,15.163880978652328 + 04/20 08:40:00,13.691291291291293,13.691291291291293,15.123410097908799 + 04/20 08:50:00,13.5987987987988,13.5987987987988,15.084207444413755 + 04/20 09:00:00,13.506306306306307,13.506306306306307,15.044823224913614 + 04/20 09:10:00,13.40960960960961,13.40960960960961,15.00527620075526 + 04/20 09:20:00,13.312912912912913,13.312912912912913,14.953566257014977 + 04/20 09:30:00,13.216216216216216,13.216216216216216,14.912135133429006 + 04/20 09:40:00,13.11951951951952,13.11951951951952,14.871135954454916 + 04/20 09:50:00,13.022822822822823,13.022822822822823,14.832090915334947 + 04/20 10:00:00,12.926126126126127,12.926126126126127,14.795339793357807 + 04/20 10:10:00,12.85885885885886,12.85885885885886,14.760617322100784 + 04/20 10:20:00,12.8,12.8,14.724639654351897 + 04/20 10:30:00,12.8,12.8,14.693373146923936 + 04/20 10:40:00,12.8,12.8,14.66355061252272 + 04/20 10:50:00,12.8,12.8,14.635389600024724 + 04/20 11:00:00,12.8,12.8,14.608958500248587 + 04/20 11:10:00,12.8,12.8,14.58581295385033 + 04/20 11:20:00,12.8,12.8,14.5735861546025 + 04/20 11:30:00,12.8,12.8,14.54976857738838 + 04/20 11:40:00,12.8,12.8,14.530178741257102 + 04/20 11:50:00,12.8,12.8,14.513169468152567 + 04/20 12:00:00,12.8,12.8,14.49579866670072 + 04/20 12:10:00,12.8,12.8,14.48285781658053 + 04/20 12:20:00,12.8,12.8,14.465258306246023 + 04/20 12:30:00,12.8,12.8,14.455931215197618 + 04/20 12:40:00,12.8,12.8,14.450646961372817 + 04/20 12:50:00,12.8,12.8,14.443133035680982 + 04/20 13:00:00,12.8,12.8,14.43389521036362 + 04/20 13:10:00,12.8,12.8,14.425005244457914 + 04/20 13:20:00,12.8,12.8,14.416425424252357 + 04/20 13:30:00,12.8,12.8,14.406691404604317 + 04/20 13:40:00,12.8,12.8,14.395706711818632 + 04/20 13:50:00,12.8,12.8,14.384355116104434 + 04/20 14:00:00,12.8,12.8,14.375808706830016 + 04/20 14:10:00,12.8,12.8,14.365521152017119 + 04/20 14:20:00,12.8,12.8,14.359862325638586 + 04/20 14:30:00,12.8,12.8,14.35250666207796 + 04/20 14:40:00,12.8,12.8,14.343081024393449 + 04/20 14:50:00,12.8,12.8,14.337907583885043 + 04/20 15:00:00,12.8,12.8,14.335118268014288 + 04/20 15:05:00,12.8,12.8,16.480782909749327 + 04/20 15:10:00,12.8,12.8,16.47973245555647 + 04/20 15:20:00,12.8,12.8,16.73052915558212 + 04/20 15:30:00,12.8,12.8,16.830332339813038 + 04/20 15:40:00,12.8,12.8,16.90708118545576 + 04/20 15:50:00,12.8,12.8,16.96539991616729 + 04/20 16:00:00,12.8,12.8,17.01554188848378 + 04/20 16:10:00,12.8,12.8,17.08516413971214 + 04/20 16:20:00,12.8,12.8,17.14015678739204 + 04/20 16:30:00,12.8,12.8,17.173728762852514 + 04/20 16:40:00,12.8,12.8,17.20357289967528 + 04/20 16:50:00,12.8,12.8,17.23108975323034 + 04/20 17:00:00,12.8,12.8,17.256125758905705 + 04/20 17:10:00,12.8,12.8,17.291824208804756 + 04/20 17:20:00,12.8,12.8,17.31875558261477 + 04/20 17:30:00,12.8,12.8,17.338852634523169 + 04/20 17:40:00,12.8,12.8,17.35769385815879 + 04/20 17:50:00,12.8,12.8,17.375280574408106 + 04/20 18:00:00,12.8,12.8,17.391684595083534 + 04/20 18:10:00,12.8,12.8,17.406986446982964 + 04/20 18:20:00,12.8,12.8,17.421552195780309 + 04/20 18:30:00,12.8,12.8,17.43537381803532 + 04/20 18:40:00,12.8,12.8,17.448571399883684 + 04/20 18:50:00,12.8,12.8,17.461186583763696 + 04/20 19:00:00,12.8,12.8,17.47328212638861 + 04/20 19:10:00,12.8,12.8,17.498772292329705 + 04/20 19:20:00,12.8,12.8,17.512346609667959 + 04/20 19:30:00,12.8,12.8,17.525374421956454 + 04/20 19:40:00,12.892492492492494,12.892492492492494,17.53800231817532 + 04/20 19:50:00,12.984984984984987,12.984984984984987,17.550126900837325 + 04/20 20:00:00,13.077477477477478,13.077477477477478,17.56173252333549 + 04/20 20:10:00,13.123723723723725,13.123723723723725,17.55034281007661 + 04/20 20:20:00,13.169969969969971,13.169969969969971,17.56614202758933 + 04/20 20:30:00,13.216216216216218,13.216216216216218,17.57691417915492 + 04/20 20:40:00,13.262462462462464,13.262462462462464,17.587258974502157 + 04/20 20:50:00,13.30870870870871,13.30870870870871,17.597059773909416 + 04/20 21:00:00,13.354954954954956,13.354954954954956,17.60638501443116 + 04/20 21:10:00,13.354954954954956,13.354954954954956,17.615399996307795 + 04/20 21:20:00,13.354954954954956,13.354954954954956,17.62372816230349 + 04/20 21:30:00,13.354954954954956,13.354954954954956,17.63165074701179 + 04/20 21:40:00,13.354954954954956,13.354954954954956,17.639186325994733 + 04/20 21:50:00,13.354954954954956,13.354954954954956,17.646360347655916 + 04/20 22:00:00,13.354954954954956,13.354954954954956,17.65320892163856 + 04/20 22:10:00,13.380180180180182,13.380180180180182,19.02063038097949 + 04/20 22:20:00,13.405405405405407,13.405405405405407,19.165297581940196 + 04/20 22:30:00,13.430630630630632,13.430630630630632,19.229334363717034 + 04/20 22:40:00,13.455855855855857,13.455855855855857,19.279938914650669 + 04/20 22:50:00,13.481081081081081,13.481081081081081,19.320851860671174 + 04/20 23:00:00,13.506306306306307,13.506306306306307,19.35525321371562 + 04/20 23:10:00,13.506306306306307,13.506306306306307,19.384104452832689 + 04/20 23:20:00,13.506306306306307,13.506306306306307,19.40944749373349 + 04/20 23:30:00,13.506306306306307,13.506306306306307,19.43183755784593 + 04/20 23:40:00,13.506306306306307,13.506306306306307,19.452079053421984 + 04/20 23:50:00,13.506306306306307,13.506306306306307,19.470528922298159 + 04/20 24:00:00,13.506306306306307,13.506306306306307,19.487345877682679 + 04/21 00:10:00,13.552552552552554,13.552552552552554,19.503406465425998 + 04/21 00:20:00,13.5987987987988,13.5987987987988,19.518715516895086 + 04/21 00:30:00,13.645045045045047,13.645045045045047,19.53356074323395 + 04/21 00:40:00,13.691291291291293,13.691291291291293,19.548029440182959 + 04/21 00:50:00,13.737537537537538,13.737537537537538,19.56209201374761 + 04/21 01:00:00,13.783783783783785,13.783783783783785,19.57601692889982 + 04/21 01:10:00,13.83003003003003,13.83003003003003,19.589234290589965 + 04/21 01:20:00,13.876276276276276,13.876276276276276,19.602138848961144 + 04/21 01:30:00,13.922522522522524,13.922522522522524,19.61458723431832 + 04/21 01:40:00,13.968768768768769,13.968768768768769,19.626571221390308 + 04/21 01:50:00,14.015015015015015,14.015015015015015,19.638154745486984 + 04/21 02:00:00,14.061261261261262,14.061261261261262,19.649395038281545 + 04/21 02:10:00,14.082282282282283,14.082282282282283,19.660697258406456 + 04/21 02:20:00,14.103303303303303,14.103303303303303,19.671572024359155 + 04/21 02:30:00,14.124324324324324,14.124324324324324,19.68196121383569 + 04/21 02:40:00,14.145345345345346,14.145345345345346,19.691900500587125 + 04/21 02:50:00,14.166366366366367,14.166366366366367,19.70151526201505 + 04/21 03:00:00,14.187387387387388,14.187387387387388,19.7107726672347 + 04/21 03:10:00,14.187387387387388,14.187387387387388,19.719321084776955 + 04/21 03:20:00,14.187387387387388,14.187387387387388,19.72727743422101 + 04/21 03:30:00,14.187387387387388,14.187387387387388,19.73454465393657 + 04/21 03:40:00,14.187387387387389,14.187387387387389,19.74130048798834 + 04/21 03:50:00,14.187387387387388,14.187387387387388,19.74744977519714 + 04/21 04:00:00,14.187387387387388,14.187387387387388,19.753122640021034 + 04/21 04:10:00,14.187387387387388,14.187387387387388,19.75871180435183 + 04/21 04:20:00,14.187387387387388,14.187387387387388,19.764250387078854 + 04/21 04:30:00,14.187387387387388,14.187387387387388,19.770082152429496 + 04/21 04:40:00,14.187387387387389,14.187387387387389,19.776216672351347 + 04/21 04:50:00,14.187387387387388,14.187387387387388,19.782543336146384 + 04/21 05:00:00,14.187387387387388,14.187387387387388,19.78903024629097 + 04/21 05:10:00,14.212612612612613,14.212612612612613,19.795615482250278 + 04/21 05:20:00,14.237837837837838,14.237837837837838,19.802412353490739 + 04/21 05:30:00,14.263063063063063,14.263063063063063,19.809102454551416 + 04/21 05:40:00,14.288288288288289,14.288288288288289,19.81568740595673 + 04/21 05:50:00,14.313513513513513,14.313513513513513,19.82208477713104 + 04/21 06:00:00,14.338738738738739,14.338738738738739,19.828265524356465 + 04/21 06:10:00,14.338738738738739,14.338738738738739,17.83447775643469 + 04/21 06:20:00,14.338738738738739,14.338738738738739,17.602909521478009 + 04/21 06:30:00,14.338738738738739,14.338738738738739,17.517775106915779 + 04/21 06:40:00,14.338738738738739,14.338738738738739,17.451061040853366 + 04/21 06:50:00,14.338738738738739,14.338738738738739,17.397999943673587 + 04/21 07:00:00,14.338738738738739,14.338738738738739,17.353442230003503 + 04/21 07:05:00,14.292492492492493,14.292492492492493,15.877142440545935 + 04/21 07:10:00,14.292492492492493,14.292492492492493,15.876671676735784 + 04/21 07:15:00,14.246246246246246,14.246246246246246,15.659038363996041 + 04/21 07:20:00,14.246246246246246,14.246246246246246,15.659061985757607 + 04/21 07:30:00,14.2,14.2,15.555365927753997 + 04/21 07:40:00,14.153753753753755,14.153753753753755,15.471503255083143 + 04/21 07:50:00,14.107507507507508,14.107507507507508,15.401634816001517 + 04/21 08:00:00,14.061261261261262,14.061261261261262,15.337766943104493 + 04/21 08:05:00,14.015015015015015,14.015015015015015,15.257186194472947 + 04/21 08:10:00,14.015015015015015,14.015015015015015,15.257507870180435 + 04/21 08:20:00,13.968768768768769,13.968768768768769,15.199567581145596 + 04/21 08:30:00,13.922522522522524,13.922522522522524,15.15450476321966 + 04/21 08:40:00,13.876276276276278,13.876276276276278,15.11322256048785 + 04/21 08:50:00,13.83003003003003,13.83003003003003,15.07511898378472 + 04/21 09:00:00,13.783783783783785,13.783783783783785,15.039907949522025 + 04/21 09:10:00,13.712312312312314,13.712312312312314,15.006621908959277 + 04/21 09:20:00,13.640840840840842,13.640840840840842,14.9647601593647 + 04/21 09:30:00,13.56936936936937,13.56936936936937,14.934967900996574 + 04/21 09:40:00,13.497897897897899,13.497897897897899,14.906738612578657 + 04/21 09:50:00,13.426426426426428,13.426426426426428,14.879843261724775 + 04/21 10:00:00,13.354954954954956,13.354954954954956,14.854110122133545 + 04/21 10:10:00,13.30870870870871,13.30870870870871,14.829855203955934 + 04/21 10:20:00,13.262462462462464,13.262462462462464,14.803222222013943 + 04/21 10:30:00,13.216216216216218,13.216216216216218,14.78102029691687 + 04/21 10:40:00,13.169969969969971,13.169969969969971,14.759861988225915 + 04/21 10:50:00,13.123723723723725,13.123723723723725,14.73979014682753 + 04/21 11:00:00,13.077477477477478,13.077477477477478,14.72081514526199 + 04/21 11:10:00,13.031231231231232,13.031231231231232,14.704113862790188 + 04/21 11:20:00,12.984984984984987,12.984984984984987,14.697399510938285 + 04/21 11:25:00,12.938738738738739,12.938738738738739,14.680118257066022 + 04/21 11:30:00,12.938738738738739,12.938738738738739,14.679544019389559 + 04/21 11:40:00,12.892492492492494,12.892492492492494,14.663353056796828 + 04/21 11:50:00,12.846246246246248,12.846246246246248,14.64833002447251 + 04/21 12:00:00,12.8,12.8,14.631093924334623 + 04/21 12:10:00,12.8,12.8,14.615142608684986 + 04/21 12:20:00,12.8,12.8,14.591500300588973 + 04/21 12:30:00,12.8,12.8,14.574527273011834 + 04/21 12:40:00,12.8,12.8,14.560263127965646 + 04/21 12:45:00,12.8,12.8,14.547581354681832 + 04/21 12:50:00,12.8,12.8,14.547167262111705 + 04/21 13:00:00,12.8,12.8,14.53249435580015 + 04/21 13:10:00,12.8,12.8,14.521554629788453 + 04/21 13:20:00,12.8,12.8,14.511213911529307 + 04/21 13:30:00,12.8,12.8,14.501080150957139 + 04/21 13:40:00,12.8,12.8,14.490955535127578 + 04/21 13:50:00,12.8,12.8,14.479320306605269 + 04/21 14:00:00,12.8,12.8,14.470279392878445 + 04/21 14:10:00,12.8,12.8,14.45973381524661 + 04/21 14:20:00,12.8,12.8,14.453347907008949 + 04/21 14:30:00,12.8,12.8,14.44531193098847 + 04/21 14:40:00,12.8,12.8,14.435867684278766 + 04/21 14:50:00,12.8,12.8,14.428995821303185 + 04/21 15:00:00,12.8,12.8,14.425011430173653 + 04/21 15:05:00,12.8,12.8,16.57206387177174 + 04/21 15:10:00,12.8,12.8,16.568952713593313 + 04/21 15:20:00,12.8,12.8,16.821452165562769 + 04/21 15:30:00,12.8,12.8,16.923860705899118 + 04/21 15:40:00,12.8,12.8,17.001772190708658 + 04/21 15:50:00,12.8,12.8,17.060409891949033 + 04/21 16:00:00,12.8,12.8,17.108396873756609 + 04/21 16:10:00,12.8,12.8,17.17479024074038 + 04/21 16:20:00,12.8,12.8,17.228436340052605 + 04/21 16:30:00,12.8,12.8,17.25776633555586 + 04/21 16:40:00,12.8,12.8,17.283505119848586 + 04/21 16:50:00,12.8,12.8,17.30702179674162 + 04/21 17:00:00,12.8,12.8,17.327630838843647 + 04/21 17:10:00,12.8,12.8,17.359598015235365 + 04/21 17:20:00,12.8,12.8,17.383079112179997 + 04/21 17:30:00,12.8,12.8,17.40005004603039 + 04/21 17:40:00,12.8,12.8,17.41608735472902 + 04/21 17:50:00,12.8,12.8,17.43128535727662 + 04/21 18:00:00,12.8,12.8,17.445745786709624 + 04/21 18:10:00,12.8,12.8,17.45991194784633 + 04/21 18:20:00,12.8,12.8,17.47361636536506 + 04/21 18:30:00,12.8,12.8,17.486930552341098 + 04/21 18:40:00,12.8,12.8,17.4998236667608 + 04/21 18:50:00,12.8,12.8,17.512176270999065 + 04/21 19:00:00,12.8,12.8,17.52397845340134 + 04/21 19:10:00,12.8,12.8,17.54882511396984 + 04/21 19:20:00,12.8,12.8,17.561419032467194 + 04/21 19:30:00,12.863063063063063,12.863063063063063,17.573270571683339 + 04/21 19:40:00,12.934534534534535,12.934534534534535,17.584338998802776 + 04/21 19:50:00,13.006006006006008,13.006006006006008,17.593437399039126 + 04/21 20:00:00,13.077477477477478,13.077477477477478,17.602086523485867 + 04/21 20:10:00,13.102702702702704,13.102702702702704,17.587926884318106 + 04/21 20:20:00,13.127927927927928,13.127927927927928,17.602142740249894 + 04/21 20:30:00,13.153153153153154,13.153153153153154,17.611353427783265 + 04/21 20:40:00,13.17837837837838,13.17837837837838,17.620371797474364 + 04/21 20:50:00,13.203603603603604,13.203603603603604,17.628837722190825 + 04/21 21:00:00,13.22882882882883,13.22882882882883,17.63687845243688 + 04/21 21:10:00,13.22882882882883,13.22882882882883,17.644410759147424 + 04/21 21:20:00,13.22882882882883,13.22882882882883,17.650987453564363 + 04/21 21:30:00,13.22882882882883,13.22882882882883,17.657296598031559 + 04/21 21:40:00,13.22882882882883,13.22882882882883,17.663214579033235 + 04/21 21:50:00,13.22882882882883,13.22882882882883,17.66883640292769 + 04/21 22:00:00,13.22882882882883,13.22882882882883,17.674299078232534 + 04/21 22:10:00,13.22882882882883,13.22882882882883,19.03561672383662 + 04/21 22:20:00,13.22882882882883,13.22882882882883,19.178259602205796 + 04/21 22:30:00,13.22882882882883,13.22882882882883,19.240572679368019 + 04/21 22:40:00,13.22882882882883,13.22882882882883,19.289399617857766 + 04/21 22:50:00,13.22882882882883,13.22882882882883,19.32873192296569 + 04/21 23:00:00,13.22882882882883,13.22882882882883,19.36164449050335 + 04/21 23:10:00,13.275075075075077,13.275075075075077,19.389703729962244 + 04/21 23:20:00,13.321321321321323,13.321321321321323,19.414587789810157 + 04/21 23:30:00,13.367567567567568,13.367567567567568,19.436678113618546 + 04/21 23:40:00,13.413813813813816,13.413813813813816,19.45695084082861 + 04/21 23:50:00,13.46006006006006,13.46006006006006,19.475663312179557 + 04/21 24:00:00,13.506306306306307,13.506306306306307,19.493015307702277 + 04/22 00:10:00,13.527327327327328,13.527327327327328,19.509642906784238 + 04/22 00:20:00,13.548348348348349,13.548348348348349,19.525197762537908 + 04/22 00:30:00,13.56936936936937,13.56936936936937,19.53984979496923 + 04/22 00:40:00,13.590390390390392,13.590390390390392,19.553760229517679 + 04/22 00:50:00,13.611411411411412,13.611411411411412,19.56696257989811 + 04/22 01:00:00,13.632432432432433,13.632432432432433,19.579520087736666 + 04/22 01:10:00,13.657657657657659,13.657657657657659,19.591225239333164 + 04/22 01:20:00,13.682882882882883,13.682882882882883,19.602291969253448 + 04/22 01:30:00,13.708108108108109,13.708108108108109,19.612944375249893 + 04/22 01:40:00,13.733333333333335,13.733333333333335,19.62314468148764 + 04/22 01:50:00,13.758558558558559,13.758558558558559,19.632944275161397 + 04/22 02:00:00,13.783783783783785,13.783783783783785,19.642362942950095 + 04/22 02:10:00,13.758558558558559,13.758558558558559,19.651418956887154 + 04/22 02:20:00,13.733333333333335,13.733333333333335,19.660993369251295 + 04/22 02:30:00,13.708108108108109,13.708108108108109,19.670138736812949 + 04/22 02:40:00,13.682882882882883,13.682882882882883,19.679006678214149 + 04/22 02:50:00,13.657657657657659,13.657657657657659,19.687458014746619 + 04/22 03:00:00,13.632432432432433,13.632432432432433,19.695440001638166 + 04/22 03:10:00,13.632432432432433,13.632432432432433,19.703454047362994 + 04/22 03:20:00,13.632432432432433,13.632432432432433,19.71072746816777 + 04/22 03:30:00,13.632432432432433,13.632432432432433,19.71781965238855 + 04/22 03:40:00,13.632432432432433,13.632432432432433,19.724614577181243 + 04/22 03:50:00,13.632432432432433,13.632432432432433,19.731173560637065 + 04/22 04:00:00,13.632432432432433,13.632432432432433,19.737587847307485 + 04/22 04:10:00,13.657657657657659,13.657657657657659,19.743278019743465 + 04/22 04:20:00,13.682882882882883,13.682882882882883,19.748855041085514 + 04/22 04:30:00,13.708108108108109,13.708108108108109,19.75433238342169 + 04/22 04:40:00,13.733333333333335,13.733333333333335,19.759695536308305 + 04/22 04:50:00,13.758558558558559,13.758558558558559,19.764952584290577 + 04/22 05:00:00,13.783783783783785,13.783783783783785,19.77018118483489 + 04/22 05:10:00,13.804804804804805,13.804804804804805,19.775771822299807 + 04/22 05:20:00,13.825825825825828,13.825825825825828,19.78133191288862 + 04/22 05:30:00,13.846846846846848,13.846846846846848,19.78675841237067 + 04/22 05:40:00,13.867867867867869,13.867867867867869,19.792016926460357 + 04/22 05:50:00,13.88888888888889,13.88888888888889,19.797245429587375 + 04/22 06:00:00,13.90990990990991,13.90990990990991,19.802361196210748 + 04/22 06:10:00,13.90990990990991,13.90990990990991,19.147769965178328 + 04/22 06:20:00,13.90990990990991,13.90990990990991,19.08171083472742 + 04/22 06:30:00,13.90990990990991,13.90990990990991,19.056131614191444 + 04/22 06:40:00,13.90990990990991,13.90990990990991,19.036342296346584 + 04/22 06:50:00,13.90990990990991,13.90990990990991,19.020621437507747 + 04/22 07:00:00,13.90990990990991,13.90990990990991,19.007357926364297 + 04/22 07:10:00,13.88888888888889,13.88888888888889,17.92311239672292 + 04/22 07:20:00,13.867867867867869,13.867867867867869,17.775838419868934 + 04/22 07:30:00,13.846846846846848,13.846846846846848,17.71349542014739 + 04/22 07:40:00,13.825825825825828,13.825825825825828,17.663316697714366 + 04/22 07:50:00,13.804804804804805,13.804804804804805,17.62199912524013 + 04/22 08:00:00,13.783783783783785,13.783783783783785,17.586492657151337 + 04/22 08:10:00,13.758558558558559,13.758558558558559,17.554760112691743 + 04/22 08:20:00,13.733333333333335,13.733333333333335,17.517464115061086 + 04/22 08:30:00,13.708108108108109,13.708108108108109,17.491253267568547 + 04/22 08:40:00,13.682882882882883,13.682882882882883,17.467003891344949 + 04/22 08:50:00,13.657657657657659,13.657657657657659,17.444427136637559 + 04/22 09:00:00,13.632432432432433,13.632432432432433,17.423328559763687 + 04/22 09:10:00,13.565165165165166,13.565165165165166,17.40358366707126 + 04/22 09:20:00,13.497897897897899,13.497897897897899,17.375169979732406 + 04/22 09:30:00,13.430630630630632,13.430630630630632,17.35621468299496 + 04/22 09:40:00,13.363363363363364,13.363363363363364,17.33797264267932 + 04/22 09:50:00,13.296096096096097,13.296096096096097,17.32064596031911 + 04/22 10:00:00,13.22882882882883,13.22882882882883,17.304212450698289 + 04/22 10:10:00,13.203603603603604,13.203603603603604,17.288696022073599 + 04/22 10:20:00,13.17837837837838,13.17837837837838,17.274649661003538 + 04/22 10:30:00,13.153153153153154,13.153153153153154,17.261324534379598 + 04/22 10:40:00,13.12792792792793,13.12792792792793,17.24861755072349 + 04/22 10:50:00,13.102702702702704,13.102702702702704,17.236112330486553 + 04/22 11:00:00,13.077477477477478,13.077477477477478,17.223690453711947 + 04/22 11:10:00,13.031231231231232,13.031231231231232,17.211338301316326 + 04/22 11:20:00,12.984984984984987,12.984984984984987,17.199458021640404 + 04/22 11:30:00,12.938738738738739,12.938738738738739,17.187590544653227 + 04/22 11:40:00,12.892492492492494,12.892492492492494,17.176130430938394 + 04/22 11:50:00,12.846246246246248,12.846246246246248,17.164102283584336 + 04/22 12:00:00,12.8,12.8,17.15380393309772 + 04/22 12:10:00,12.8,12.8,17.144465495543789 + 04/22 12:20:00,12.8,12.8,17.136205412827026 + 04/22 12:30:00,12.8,12.8,17.12872269387623 + 04/22 12:40:00,12.8,12.8,17.121781226594285 + 04/22 12:50:00,12.8,12.8,17.11509700989021 + 04/22 13:00:00,12.8,12.8,17.10853458165394 + 04/22 13:10:00,12.821021021021022,12.821021021021022,17.102276269665766 + 04/22 13:20:00,12.842042042042042,12.842042042042042,17.096315191910635 + 04/22 13:30:00,12.863063063063063,12.863063063063063,17.09069538659882 + 04/22 13:40:00,12.884084084084084,12.884084084084084,17.085588440810903 + 04/22 13:50:00,12.905105105105106,12.905105105105106,17.081219121149336 + 04/22 14:00:00,12.926126126126127,12.926126126126127,17.077630804484039 + 04/22 14:10:00,12.85885885885886,12.85885885885886,17.074266751538639 + 04/22 14:20:00,12.8,12.8,17.07097795317695 + 04/22 14:30:00,12.8,12.8,17.067597854641656 + 04/22 14:40:00,12.8,12.8,17.06407255679968 + 04/22 14:50:00,12.8,12.8,17.060384142654845 + 04/22 15:00:00,12.8,12.8,17.056551870689046 + 04/22 15:10:00,12.8,12.8,17.05310666575899 + 04/22 15:20:00,12.8,12.8,17.05011570843305 + 04/22 15:30:00,12.8,12.8,17.04757098750524 + 04/22 15:40:00,12.8,12.8,17.04553462731705 + 04/22 15:50:00,12.8,12.8,17.044071939610185 + 04/22 16:00:00,12.8,12.8,17.043163832342104 + 04/22 16:10:00,12.8,12.8,17.05531488496907 + 04/22 16:20:00,12.8,12.8,17.064381840930638 + 04/22 16:30:00,12.8,12.8,17.064456082620326 + 04/22 16:40:00,12.8,12.8,17.06459544071914 + 04/22 16:50:00,12.8,12.8,17.064916225915469 + 04/22 17:00:00,12.8,12.8,17.0653868109391 + 04/22 17:10:00,12.8,12.8,18.8208276832017 + 04/22 17:20:00,12.842042042042042,12.842042042042042,19.03260602386085 + 04/22 17:30:00,12.93873873873874,12.93873873873874,19.122622414987185 + 04/22 17:40:00,13.035435435435437,13.035435435435437,19.185132116286625 + 04/22 17:50:00,13.132132132132134,13.132132132132134,19.236515517170383 + 04/22 18:00:00,13.22882882882883,13.22882882882883,19.277766798771997 + 04/22 18:10:00,13.17837837837838,13.17837837837838,19.32666328245359 + 04/22 18:20:00,13.127927927927928,13.127927927927928,19.359560251461596 + 04/22 18:30:00,13.077477477477478,13.077477477477478,19.38866880674946 + 04/22 18:40:00,13.027027027027028,13.027027027027028,19.414981808069308 + 04/22 18:50:00,12.976576576576579,12.976576576576579,19.438767468347345 + 04/22 19:00:00,12.926126126126127,12.926126126126127,19.460292429711325 + 04/22 19:10:00,12.976576576576577,12.976576576576577,19.480738422666673 + 04/22 19:20:00,13.027027027027028,13.027027027027028,19.50060184779578 + 04/22 19:30:00,13.077477477477478,13.077477477477478,19.519358480979564 + 04/22 19:40:00,13.127927927927928,13.127927927927928,19.53700869086153 + 04/22 19:50:00,13.17837837837838,13.17837837837838,19.55346399320688 + 04/22 20:00:00,13.22882882882883,13.22882882882883,19.568951152986018 + 04/22 20:10:00,13.22882882882883,13.22882882882883,19.56091954230538 + 04/22 20:20:00,13.22882882882883,13.22882882882883,19.574462384256184 + 04/22 20:30:00,13.22882882882883,13.22882882882883,19.587037346538037 + 04/22 20:40:00,13.22882882882883,13.22882882882883,19.598977633936806 + 04/22 20:50:00,13.22882882882883,13.22882882882883,19.61008558595133 + 04/22 21:00:00,13.22882882882883,13.22882882882883,19.620724425728903 + 04/22 21:10:00,13.296096096096097,13.296096096096097,19.630876969457444 + 04/22 21:20:00,13.363363363363364,13.363363363363364,19.641448679345119 + 04/22 21:30:00,13.430630630630632,13.430630630630632,19.651640898066448 + 04/22 21:40:00,13.497897897897899,13.497897897897899,19.661629883156324 + 04/22 21:50:00,13.565165165165166,13.565165165165166,19.671410658685507 + 04/22 22:00:00,13.632432432432433,13.632432432432433,19.680937650048756 + 04/22 22:10:00,13.657657657657659,13.657657657657659,19.689631226848254 + 04/22 22:20:00,13.682882882882883,13.682882882882883,19.698197790869455 + 04/22 22:30:00,13.708108108108109,13.708108108108109,19.7063463044784 + 04/22 22:40:00,13.733333333333335,13.733333333333335,19.71432772742893 + 04/22 22:50:00,13.758558558558559,13.758558558558559,19.72202758110779 + 04/22 23:00:00,13.783783783783785,13.783783783783785,19.72946463856895 + 04/22 23:10:00,13.758558558558559,13.758558558558559,19.736944876287784 + 04/22 23:20:00,13.733333333333335,13.733333333333335,19.7431224910005 + 04/22 23:30:00,13.708108108108109,13.708108108108109,19.74903174231014 + 04/22 23:40:00,13.682882882882883,13.682882882882883,19.754434497146137 + 04/22 23:50:00,13.657657657657659,13.657657657657659,19.759564621756995 + 04/22 24:00:00,13.632432432432433,13.632432432432433,19.764435375081346 + 04/23 00:10:00,13.632432432432433,13.632432432432433,19.76930508286763 + 04/23 00:20:00,13.632432432432433,13.632432432432433,19.775182993186446 + 04/23 00:30:00,13.632432432432433,13.632432432432433,19.780915898692855 + 04/23 00:40:00,13.632432432432433,13.632432432432433,19.786733592865425 + 04/23 00:50:00,13.632432432432433,13.632432432432433,19.792376922187846 + 04/23 01:00:00,13.632432432432433,13.632432432432433,19.79783846742481 + 04/23 01:10:00,13.657657657657659,13.657657657657659,19.80285382701023 + 04/23 01:20:00,13.682882882882883,13.682882882882883,19.806702683659965 + 04/23 01:30:00,13.708108108108109,13.708108108108109,19.810619688128026 + 04/23 01:40:00,13.733333333333335,13.733333333333335,19.814270171207605 + 04/23 01:50:00,13.758558558558559,13.758558558558559,19.817945908694495 + 04/23 02:00:00,13.783783783783785,13.783783783783785,19.821530760738 + 04/23 02:10:00,13.804804804804805,13.804804804804805,19.82531301491126 + 04/23 02:20:00,13.825825825825828,13.825825825825828,19.829135920337934 + 04/23 02:30:00,13.846846846846848,13.846846846846848,19.83290142950863 + 04/23 02:40:00,13.867867867867869,13.867867867867869,19.836629614289625 + 04/23 02:50:00,13.88888888888889,13.88888888888889,19.840210652574059 + 04/23 03:00:00,13.90990990990991,13.90990990990991,19.843797286670524 + 04/23 03:10:00,13.90990990990991,13.90990990990991,19.84708230982058 + 04/23 03:20:00,13.90990990990991,13.90990990990991,19.85060801299306 + 04/23 03:30:00,13.90990990990991,13.90990990990991,19.854028182295396 + 04/23 03:40:00,13.90990990990991,13.90990990990991,19.857357207515024 + 04/23 03:50:00,13.90990990990991,13.90990990990991,19.860592668064596 + 04/23 04:00:00,13.90990990990991,13.90990990990991,19.863762122548914 + 04/23 04:10:00,13.90990990990991,13.90990990990991,19.866672475821408 + 04/23 04:20:00,13.90990990990991,13.90990990990991,19.869495238158878 + 04/23 04:30:00,13.90990990990991,13.90990990990991,19.87219879849445 + 04/23 04:40:00,13.90990990990991,13.90990990990991,19.8747982620055 + 04/23 04:50:00,13.90990990990991,13.90990990990991,19.87739091868818 + 04/23 05:00:00,13.90990990990991,13.90990990990991,19.87991620743982 + 04/23 05:10:00,13.90990990990991,13.90990990990991,19.883183599847884 + 04/23 05:20:00,13.90990990990991,13.90990990990991,19.886361014001289 + 04/23 05:30:00,13.90990990990991,13.90990990990991,19.889386686954027 + 04/23 05:40:00,13.90990990990991,13.90990990990991,19.89242716377811 + 04/23 05:50:00,13.90990990990991,13.90990990990991,19.895397634299614 + 04/23 06:00:00,13.90990990990991,13.90990990990991,19.898302269753694 + 04/23 06:10:00,13.90990990990991,13.90990990990991,19.92266283128798 + 04/23 06:20:00,13.90990990990991,13.90990990990991,19.924054527959087 + 04/23 06:30:00,13.90990990990991,13.90990990990991,19.925027280004647 + 04/23 06:40:00,13.90990990990991,13.90990990990991,19.925574386707934 + 04/23 06:50:00,13.90990990990991,13.90990990990991,19.925612469647608 + 04/23 07:00:00,13.90990990990991,13.90990990990991,19.925163032170788 + 04/23 07:10:00,13.88888888888889,13.88888888888889,18.531497200832534 + 04/23 07:20:00,13.867867867867869,13.867867867867869,18.365213797939249 + 04/23 07:30:00,13.846846846846848,13.846846846846848,18.299628095323138 + 04/23 07:40:00,13.825825825825828,13.825825825825828,18.24782607204284 + 04/23 07:50:00,13.804804804804805,13.804804804804805,18.206414815133095 + 04/23 08:00:00,13.783783783783785,13.783783783783785,18.172235446160369 + 04/23 08:10:00,13.758558558558559,13.758558558558559,18.143734906463739 + 04/23 08:20:00,13.733333333333335,13.733333333333335,18.109360722636358 + 04/23 08:30:00,13.708108108108109,13.708108108108109,18.086667861403055 + 04/23 08:40:00,13.682882882882883,13.682882882882883,18.065876244414917 + 04/23 08:50:00,13.657657657657659,13.657657657657659,18.0458458676 + 04/23 09:00:00,13.632432432432433,13.632432432432433,18.02619771961025 + 04/23 09:10:00,13.632432432432433,13.632432432432433,18.006855414129718 + 04/23 09:20:00,13.632432432432433,13.632432432432433,17.979134493171693 + 04/23 09:30:00,13.632432432432433,13.632432432432433,17.960297523264559 + 04/23 09:40:00,13.632432432432433,13.632432432432433,17.942036958604697 + 04/23 09:50:00,13.632432432432433,13.632432432432433,17.924619658600098 + 04/23 10:00:00,13.632432432432433,13.632432432432433,17.908247674231196 + 04/23 10:10:00,13.586186186186187,13.586186186186187,17.89253391119689 + 04/23 10:20:00,13.539939939939942,13.539939939939942,17.878451602487514 + 04/23 10:30:00,13.493693693693695,13.493693693693695,17.86169504163405 + 04/23 10:40:00,13.447447447447449,13.447447447447449,17.8477416046233 + 04/23 10:50:00,13.401201201201202,13.401201201201202,17.833418968174319 + 04/23 11:00:00,13.354954954954956,13.354954954954956,17.81960404800806 + 04/23 11:10:00,13.262462462462464,13.262462462462464,17.805506158233884 + 04/23 11:20:00,13.169969969969971,13.169969969969971,17.79120740224934 + 04/23 11:30:00,13.077477477477478,13.077477477477478,17.7767999114746 + 04/23 11:40:00,12.984984984984987,12.984984984984987,17.76205022286146 + 04/23 11:50:00,12.892492492492494,12.892492492492494,17.746539134282913 + 04/23 12:00:00,12.8,12.8,17.730427441991347 + 04/23 12:10:00,12.8,12.8,17.713947417811356 + 04/23 12:20:00,12.8,12.8,17.697038899006054 + 04/23 12:30:00,12.8,12.8,17.679902182170605 + 04/23 12:40:00,12.8,12.8,17.663278728421937 + 04/23 12:50:00,12.8,12.8,17.64811140368807 + 04/23 13:00:00,12.8,12.8,17.63462675540748 + 04/23 13:10:00,12.8,12.8,17.622957958578824 + 04/23 13:20:00,12.8,12.8,17.612718517330419 + 04/23 13:30:00,12.8,12.8,17.60359730347066 + 04/23 13:40:00,12.8,12.8,17.59586234234427 + 04/23 13:50:00,12.8,12.8,17.589829712870438 + 04/23 14:00:00,12.8,12.8,17.585406721238138 + 04/23 14:10:00,12.8,12.8,17.582405077913596 + 04/23 14:20:00,12.8,12.8,17.580066041465746 + 04/23 14:30:00,12.8,12.8,17.578744085976248 + 04/23 14:40:00,12.8,12.8,17.577572801563087 + 04/23 14:50:00,12.8,12.8,17.575941705067668 + 04/23 15:00:00,12.8,12.8,17.57348609610163 + 04/23 15:10:00,12.8,12.8,18.988540756644868 + 04/23 15:20:00,12.8,12.8,19.138545611459933 + 04/23 15:30:00,12.8,12.8,19.199334292073208 + 04/23 15:40:00,12.8,12.8,19.244533795041439 + 04/23 15:50:00,12.8,12.8,19.282218604078869 + 04/23 16:00:00,12.8,12.8,19.310825860804714 + 04/23 16:10:00,12.8,12.8,19.33785871434482 + 04/23 16:20:00,12.8,12.8,19.369052517172258 + 04/23 16:30:00,12.8,12.8,19.389701133412104 + 04/23 16:40:00,12.8,12.8,19.408266390886426 + 04/23 16:50:00,12.8,12.8,19.425504026070024 + 04/23 17:00:00,12.8,12.8,19.44187932330678 + 04/23 17:10:00,12.8,12.8,19.457944503564219 + 04/23 17:20:00,12.8,12.8,19.488649446089498 + 04/23 17:30:00,12.8,12.8,19.505864511666386 + 04/23 17:40:00,12.8,12.8,19.520569563617586 + 04/23 17:50:00,12.8,12.8,19.53531512229685 + 04/23 18:00:00,12.8,12.8,19.55096538806618 + 04/23 18:10:00,12.8,12.8,19.566762694072325 + 04/23 18:20:00,12.8,12.8,19.583635049392563 + 04/23 18:30:00,12.8,12.8,19.59988769349703 + 04/23 18:40:00,12.8,12.8,19.6154964931415 + 04/23 18:50:00,12.8,12.8,19.63007240127466 + 04/23 19:00:00,12.926126126126127,12.926126126126127,19.643593105610714 + 04/23 19:10:00,12.976576576576577,12.976576576576577,19.65597907760028 + 04/23 19:20:00,13.027027027027028,13.027027027027028,19.667543668753756 + 04/23 19:30:00,13.077477477477478,13.077477477477478,19.67829482112053 + 04/23 19:40:00,13.127927927927928,13.127927927927928,19.68816879403926 + 04/23 19:50:00,13.17837837837838,13.17837837837838,19.69733946650256 + 04/23 20:00:00,13.22882882882883,13.22882882882883,19.705816201317778 + 04/23 20:10:00,13.22882882882883,13.22882882882883,19.692156330776308 + 04/23 20:20:00,13.22882882882883,13.22882882882883,19.701588472240567 + 04/23 20:30:00,13.22882882882883,13.22882882882883,19.71032867266503 + 04/23 20:40:00,13.22882882882883,13.22882882882883,19.718917692184787 + 04/23 20:50:00,13.22882882882883,13.22882882882883,19.72703219242328 + 04/23 21:00:00,13.22882882882883,13.22882882882883,19.734774253746364 + 04/23 21:10:00,13.367567567567568,13.367567567567568,19.741682181203858 + 04/23 21:20:00,13.506306306306307,13.506306306306307,19.744958630702486 + 04/23 21:30:00,13.645045045045047,13.645045045045047,19.74879524288163 + 04/23 21:40:00,13.783783783783785,13.783783783783785,19.75248064321124 + 04/23 21:50:00,13.922522522522524,13.922522522522524,19.756355536832375 + 04/23 22:00:00,14.061261261261262,14.061261261261262,19.760407078761927 + 04/23 22:10:00,14.061261261261262,14.061261261261262,19.765376329798575 + 04/23 22:20:00,14.061261261261262,14.061261261261262,19.771524373711146 + 04/23 22:30:00,14.061261261261262,14.061261261261262,19.777501139796248 + 04/23 22:40:00,14.061261261261262,14.061261261261262,19.783528577877538 + 04/23 22:50:00,14.061261261261262,14.061261261261262,19.789264367386154 + 04/23 23:00:00,14.061261261261262,14.061261261261262,19.794660337018074 + 04/23 23:10:00,14.061261261261262,14.061261261261262,19.799808335150634 + 04/23 23:20:00,14.061261261261262,14.061261261261262,19.805207332561819 + 04/23 23:30:00,14.061261261261262,14.061261261261262,19.810414339026495 + 04/23 23:40:00,14.061261261261262,14.061261261261262,19.815557566457927 + 04/23 23:50:00,14.061261261261262,14.061261261261262,19.820493216327067 + 04/23 24:00:00,14.061261261261262,14.061261261261262,19.82522554106128 + 04/24 00:10:00,14.082282282282283,14.082282282282283,19.829776593925254 + 04/24 00:20:00,14.103303303303303,14.103303303303303,19.833415955236658 + 04/24 00:30:00,14.124324324324324,14.124324324324324,19.83694380652391 + 04/24 00:40:00,14.145345345345346,14.145345345345346,19.840200961662853 + 04/24 00:50:00,14.166366366366367,14.166366366366367,19.843312669668828 + 04/24 01:00:00,14.187387387387388,14.187387387387388,19.846478606221653 + 04/24 01:10:00,14.187387387387388,14.187387387387388,19.849319024091089 + 04/24 01:20:00,14.187387387387388,14.187387387387388,19.852383132477205 + 04/24 01:30:00,14.187387387387388,14.187387387387388,19.8553860867181 + 04/24 01:40:00,14.187387387387389,14.187387387387389,19.858303923495308 + 04/24 01:50:00,14.187387387387388,14.187387387387388,19.861214148690157 + 04/24 02:00:00,14.187387387387388,14.187387387387388,19.864060004007685 + 04/24 02:10:00,14.212612612612613,14.212612612612613,19.867733399440256 + 04/24 02:20:00,14.237837837837838,14.237837837837838,19.871410943483228 + 04/24 02:30:00,14.263063063063063,14.263063063063063,19.87514442923065 + 04/24 02:40:00,14.288288288288289,14.288288288288289,19.879007725268655 + 04/24 02:50:00,14.313513513513513,14.313513513513513,19.88302688145422 + 04/24 03:00:00,14.338738738738739,14.338738738738739,19.88714716568968 + 04/24 03:10:00,14.384984984984986,14.384984984984986,19.891669582392493 + 04/24 03:20:00,14.431231231231232,14.431231231231232,19.896049203422348 + 04/24 03:30:00,14.477477477477479,14.477477477477479,19.9007710230916 + 04/24 03:40:00,14.523723723723723,14.523723723723723,19.905793815701615 + 04/24 03:50:00,14.56996996996997,14.56996996996997,19.911155699612963 + 04/24 04:00:00,14.616216216216217,14.616216216216217,19.9168140869488 + 04/24 04:10:00,14.616216216216217,14.616216216216217,19.92225482296938 + 04/24 04:20:00,14.616216216216217,14.616216216216217,19.927454926208655 + 04/24 04:30:00,14.616216216216217,14.616216216216217,19.931926394427398 + 04/24 04:40:00,14.616216216216217,14.616216216216217,19.935665579516728 + 04/24 04:50:00,14.616216216216217,14.616216216216217,19.938596554397983 + 04/24 05:00:00,14.616216216216217,14.616216216216217,19.94082880558024 + 04/24 05:10:00,14.641441441441442,14.641441441441442,19.94217573148414 + 04/24 05:20:00,14.666666666666666,14.666666666666666,19.9432865080379 + 04/24 05:30:00,14.691891891891892,14.691891891891892,19.944512373742837 + 04/24 05:40:00,14.717117117117118,14.717117117117118,19.945844153088218 + 04/24 05:50:00,14.742342342342342,14.742342342342342,19.947354834026194 + 04/24 06:00:00,14.767567567567568,14.767567567567568,19.948962136515286 + 04/24 06:10:00,14.767567567567568,14.767567567567568,17.953571314206316 + 04/24 06:20:00,14.767567567567568,14.767567567567568,17.71703589673956 + 04/24 06:30:00,14.767567567567568,14.767567567567568,17.627127202051775 + 04/24 06:40:00,14.767567567567568,14.767567567567568,17.55621931226143 + 04/24 06:50:00,14.767567567567568,14.767567567567568,17.49974103855189 + 04/24 07:00:00,14.767567567567568,14.767567567567568,17.45248372695263 + 04/24 07:10:00,14.696096096096096,14.696096096096096,15.972455354264945 + 04/24 07:20:00,14.624624624624625,14.624624624624625,15.752514434660578 + 04/24 07:30:00,14.553153153153153,14.553153153153153,15.648035858350087 + 04/24 07:40:00,14.481681681681682,14.481681681681682,15.561698131513785 + 04/24 07:50:00,14.41021021021021,14.41021021021021,15.488955368911178 + 04/24 08:00:00,14.338738738738739,14.338738738738739,15.425449056609955 + 04/24 08:05:00,14.363963963963965,14.363963963963965,15.342331470749868 + 04/24 08:10:00,14.363963963963965,14.363963963963965,15.342718148557058 + 04/24 08:20:00,14.389189189189189,14.389189189189189,15.281889973504875 + 04/24 08:30:00,14.414414414414415,14.414414414414415,15.23247527676323 + 04/24 08:40:00,14.439639639639639,14.439639639639639,15.187178028974432 + 04/24 08:50:00,14.464864864864865,14.464864864864865,15.144791916215374 + 04/24 09:00:00,14.49009009009009,14.49009009009009,15.105023624567283 + 04/24 09:10:00,14.393393393393394,14.393393393393394,15.067481894599922 + 04/24 09:20:00,14.296696696696696,14.296696696696696,15.022310319213628 + 04/24 09:30:00,14.2,14.2,14.98876471232609 + 04/24 09:40:00,14.103303303303303,14.103303303303303,14.956845231126915 + 04/24 09:50:00,14.006606606606607,14.006606606606607,14.926812762135608 + 04/24 10:00:00,13.90990990990991,13.90990990990991,14.898883808232754 + 04/24 10:10:00,13.842642642642645,13.842642642642645,14.872190848314024 + 04/24 10:20:00,13.775375375375376,13.775375375375376,14.846924330623836 + 04/24 10:30:00,13.708108108108109,13.708108108108109,14.82663638125818 + 04/24 10:40:00,13.640840840840842,13.640840840840842,14.807047745114668 + 04/24 10:50:00,13.573573573573574,13.573573573573574,14.785677363542592 + 04/24 11:00:00,13.506306306306307,13.506306306306307,14.76197378358404 + 04/24 11:10:00,13.481081081081081,13.481081081081081,14.736187321321909 + 04/24 11:20:00,13.455855855855857,13.455855855855857,14.71399520103026 + 04/24 11:30:00,13.430630630630632,13.430630630630632,14.68118156583494 + 04/24 11:40:00,13.405405405405407,13.405405405405407,14.648062151912221 + 04/24 11:50:00,13.380180180180182,13.380180180180182,14.617559115249423 + 04/24 12:00:00,13.354954954954956,13.354954954954956,14.590104190145738 + 04/24 12:10:00,13.354954954954956,13.354954954954956,14.566825342320869 + 04/24 12:20:00,13.354954954954956,13.354954954954956,14.539904876557495 + 04/24 12:30:00,13.354954954954956,13.354954954954956,14.526466639155986 + 04/24 12:40:00,13.354954954954956,13.354954954954956,14.514362762911765 + 04/24 12:50:00,13.354954954954956,13.354954954954956,14.503020242580261 + 04/24 13:00:00,13.354954954954956,13.354954954954956,14.496229617622447 + 04/24 13:10:00,13.354954954954956,13.354954954954956,14.487226764642389 + 04/24 13:20:00,13.354954954954956,13.354954954954956,14.483211404533704 + 04/24 13:30:00,13.354954954954956,13.354954954954956,14.476570143014389 + 04/24 13:40:00,13.354954954954956,13.354954954954956,14.467801990626347 + 04/24 13:50:00,13.354954954954956,13.354954954954956,14.46061692710719 + 04/24 14:00:00,13.354954954954956,13.354954954954956,14.45024325564895 + 04/24 14:10:00,13.30870870870871,13.30870870870871,14.438800305342794 + 04/24 14:20:00,13.262462462462464,13.262462462462464,14.43214183022056 + 04/24 14:30:00,13.216216216216218,13.216216216216218,14.418934599491856 + 04/24 14:40:00,13.169969969969971,13.169969969969971,14.406943742692319 + 04/24 14:50:00,13.123723723723725,13.123723723723725,14.396781275072002 + 04/24 15:00:00,13.077477477477478,13.077477477477478,14.3851514717936 + 04/24 15:05:00,13.052252252252253,13.052252252252253,16.53211073869883 + 04/24 15:10:00,13.052252252252253,13.052252252252253,16.53118313780357 + 04/24 15:20:00,13.027027027027028,13.027027027027028,16.77683694689873 + 04/24 15:30:00,13.001801801801803,13.001801801801803,16.870573035250755 + 04/24 15:40:00,12.976576576576577,12.976576576576577,16.93934610568788 + 04/24 15:50:00,12.951351351351353,12.951351351351353,16.9950984264218 + 04/24 16:00:00,12.926126126126127,12.926126126126127,17.041532981917709 + 04/24 16:10:00,12.905105105105106,12.905105105105106,17.10758489429395 + 04/24 16:20:00,12.884084084084084,12.884084084084084,17.160904436444178 + 04/24 16:30:00,12.863063063063063,12.863063063063063,17.189570815818365 + 04/24 16:40:00,12.842042042042042,12.842042042042042,17.216408107158075 + 04/24 16:50:00,12.821021021021022,12.821021021021022,17.240725498377289 + 04/24 17:00:00,12.8,12.8,17.26263048513738 + 04/24 17:10:00,12.821021021021022,12.821021021021022,17.29602513665839 + 04/24 17:20:00,12.842042042042042,12.842042042042042,17.322720424031208 + 04/24 17:30:00,12.863063063063063,12.863063063063063,17.34260773372982 + 04/24 17:40:00,12.884084084084084,12.884084084084084,17.3621744412129 + 04/24 17:50:00,12.905105105105106,12.905105105105106,17.38128364729514 + 04/24 18:00:00,12.926126126126127,12.926126126126127,17.40005082403502 + 04/24 18:10:00,13.022822822822823,13.022822822822823,17.4190094074589 + 04/24 18:20:00,13.11951951951952,13.11951951951952,17.436153711756459 + 04/24 18:30:00,13.216216216216216,13.216216216216216,17.453249446830296 + 04/24 18:40:00,13.312912912912914,13.312912912912914,17.469941327100256 + 04/24 18:50:00,13.40960960960961,13.40960960960961,17.486451674428638 + 04/24 19:00:00,13.506306306306307,13.506306306306307,17.502681827741406 + 04/24 19:10:00,13.598798798798799,13.598798798798799,17.531285489782815 + 04/24 19:20:00,13.691291291291292,13.691291291291292,17.54693715042349 + 04/24 19:30:00,13.783783783783785,13.783783783783785,17.561523749948674 + 04/24 19:40:00,13.876276276276276,13.876276276276276,17.575186152053484 + 04/24 19:50:00,13.968768768768769,13.968768768768769,17.5878038570192 + 04/24 20:00:00,14.061261261261262,14.061261261261262,17.599550145008956 + 04/24 20:10:00,14.178978978978979,14.178978978978979,17.588895640900895 + 04/24 20:20:00,14.296696696696696,14.296696696696696,17.605491338737214 + 04/24 20:30:00,14.414414414414415,14.414414414414415,17.617044726546604 + 04/24 20:40:00,14.532132132132132,14.532132132132132,17.628302948426769 + 04/24 20:50:00,14.64984984984985,14.64984984984985,17.63911755022646 + 04/24 21:00:00,14.767567567567568,14.767567567567568,17.64958248288195 + 04/24 21:10:00,14.788588588588589,14.788588588588589,17.659800101797364 + 04/24 21:20:00,14.809609609609609,14.809609609609609,17.671206868916984 + 04/24 21:30:00,14.83063063063063,14.83063063063063,17.6821903617519 + 04/24 21:40:00,14.85165165165165,14.85165165165165,17.693039611768609 + 04/24 21:50:00,14.872672672672673,14.872672672672673,17.703363238780896 + 04/24 22:00:00,14.893693693693694,14.893693693693694,17.71332727793971 + 04/24 22:10:00,14.91891891891892,14.91891891891892,19.0878537945532 + 04/24 22:20:00,14.944144144144144,14.944144144144144,19.23356853570522 + 04/24 22:30:00,14.96936936936937,14.96936936936937,19.298883076695156 + 04/24 22:40:00,14.994594594594595,14.994594594594595,19.35047778938696 + 04/24 22:50:00,15.01981981981982,15.01981981981982,19.392491976934669 + 04/24 23:00:00,15.045045045045045,15.045045045045045,19.428016545581614 + 04/24 23:10:00,15.01981981981982,15.01981981981982,19.458891398865967 + 04/24 23:20:00,14.994594594594594,14.994594594594594,19.48620021728229 + 04/24 23:30:00,14.96936936936937,14.96936936936937,19.510585782052389 + 04/24 23:40:00,14.944144144144144,14.944144144144144,19.532739030612804 + 04/24 23:50:00,14.91891891891892,14.91891891891892,19.55301307842474 + 04/24 24:00:00,14.893693693693694,14.893693693693694,19.57169351059441 + 04/25 00:10:00,14.91891891891892,14.91891891891892,19.589627000011434 + 04/25 00:20:00,14.944144144144144,14.944144144144144,19.606463774528767 + 04/25 00:30:00,14.96936936936937,14.96936936936937,19.622460901201444 + 04/25 00:40:00,14.994594594594595,14.994594594594595,19.63776369788894 + 04/25 00:50:00,15.01981981981982,15.01981981981982,19.6524148314973 + 04/25 01:00:00,15.045045045045045,15.045045045045045,19.66648300663784 + 04/25 01:10:00,15.066066066066066,15.066066066066066,19.678270322290755 + 04/25 01:20:00,15.087087087087087,15.087087087087087,19.689600583122436 + 04/25 01:30:00,15.108108108108109,15.108108108108109,19.700596397221959 + 04/25 01:40:00,15.12912912912913,15.12912912912913,19.71123107769917 + 04/25 01:50:00,15.15015015015015,15.15015015015015,19.72152063290472 + 04/25 02:00:00,15.17117117117117,15.17117117117117,19.73147361378586 + 04/25 02:10:00,15.217417417417418,15.217417417417418,19.742589951706653 + 04/25 02:20:00,15.263663663663664,15.263663663663664,19.753566426447298 + 04/25 02:30:00,15.30990990990991,15.30990990990991,19.764291885314749 + 04/25 02:40:00,15.356156156156157,15.356156156156157,19.774783923256824 + 04/25 02:50:00,15.402402402402402,15.402402402402402,19.78504184216376 + 04/25 03:00:00,15.448648648648648,15.448648648648648,19.794981184880759 + 04/25 03:10:00,15.473873873873874,15.473873873873874,19.804363978685417 + 04/25 03:20:00,15.499099099099098,15.499099099099098,19.813277271203757 + 04/25 03:30:00,15.524324324324324,15.524324324324324,19.821885694986685 + 04/25 03:40:00,15.54954954954955,15.54954954954955,19.83015031498413 + 04/25 03:50:00,15.574774774774774,15.574774774774774,19.83808156456805 + 04/25 04:00:00,15.6,15.6,19.84580693125531 + 04/25 04:10:00,15.6,15.6,19.852721120194404 + 04/25 04:20:00,15.6,15.6,19.859639845705244 + 04/25 04:30:00,15.6,15.6,19.86642911665954 + 04/25 04:40:00,15.6,15.6,19.873104292719199 + 04/25 04:50:00,15.6,15.6,19.879647545808639 + 04/25 05:00:00,15.6,15.6,19.88612921963771 + 04/25 05:10:00,15.6,15.6,19.893668383041669 + 04/25 05:20:00,15.6,15.6,19.900778602369607 + 04/25 05:30:00,15.6,15.6,19.907518524955778 + 04/25 05:40:00,15.6,15.6,19.91381076014461 + 04/25 05:50:00,15.6,15.6,19.919865699501348 + 04/25 06:00:00,15.6,15.6,19.925632336798889 + 04/25 06:10:00,15.6,15.6,17.922826849272448 + 04/25 06:20:00,15.6,15.6,17.689397766917016 + 04/25 06:30:00,15.6,15.6,17.602807863819295 + 04/25 06:40:00,15.6,15.6,17.534957459004866 + 04/25 06:50:00,15.6,15.6,17.48111404961446 + 04/25 07:00:00,15.6,15.6,17.435919514836959 + 04/25 07:10:00,15.6,15.6,15.950719247936079 + 04/25 07:20:00,15.515915915915916,15.515915915915916,15.729580898852266 + 04/25 07:30:00,15.398198198198199,15.398198198198199,15.623381009455635 + 04/25 07:40:00,15.280480480480481,15.280480480480481,15.534562127406455 + 04/25 07:50:00,15.162762762762763,15.162762762762763,15.458778458717849 + 04/25 08:00:00,15.045045045045045,15.045045045045045,15.391706238721247 + 04/25 08:05:00,15.01981981981982,15.01981981981982,15.307440346848317 + 04/25 08:10:00,15.01981981981982,15.01981981981982,15.306958943739863 + 04/25 08:20:00,14.994594594594594,14.994594594594594,15.243409701149077 + 04/25 08:30:00,14.96936936936937,14.96936936936937,15.19252471612289 + 04/25 08:40:00,14.944144144144144,14.944144144144144,15.144901965123827 + 04/25 08:50:00,14.91891891891892,14.91891891891892,15.100999670948763 + 04/25 09:00:00,14.893693693693694,14.893693693693694,15.060290572871699 + 04/25 09:10:00,14.8012012012012,14.8012012012012,15.021177856826084 + 04/25 09:20:00,14.70870870870871,14.70870870870871,14.9736565786628 + 04/25 09:30:00,14.616216216216217,14.616216216216217,14.938501698147926 + 04/25 09:40:00,14.523723723723723,14.523723723723723,14.904900691435684 + 04/25 09:50:00,14.431231231231232,14.431231231231232,14.872446984718021 + 04/25 10:00:00,14.338738738738739,14.338738738738739,14.840995152808289 + 04/25 10:10:00,14.292492492492493,14.292492492492493,14.811796251851984 + 04/25 10:20:00,14.246246246246246,14.246246246246246,14.7790444787276 + 04/25 10:30:00,14.2,14.2,14.750955891754593 + 04/25 10:40:00,14.153753753753755,14.153753753753755,14.723817193584344 + 04/25 10:50:00,14.107507507507508,14.107507507507508,14.697826367827913 + 04/25 11:00:00,14.061261261261262,14.061261261261262,14.672835186923498 + 04/25 11:10:00,14.015015015015015,14.015015015015015,14.647839363558653 + 04/25 11:20:00,13.968768768768769,13.968768768768769,14.631926215796009 + 04/25 11:30:00,13.922522522522524,13.922522522522524,14.60753908585635 + 04/25 11:40:00,13.876276276276278,13.876276276276278,14.58481578457224 + 04/25 11:50:00,13.83003003003003,13.83003003003003,14.564601328176721 + 04/25 12:00:00,13.783783783783785,13.783783783783785,14.543998900966577 + 04/25 12:10:00,13.737537537537538,13.737537537537538,14.527303713018636 + 04/25 12:20:00,13.691291291291293,13.691291291291293,14.506475484460746 + 04/25 12:30:00,13.645045045045047,13.645045045045047,14.493200623321198 + 04/25 12:40:00,13.5987987987988,13.5987987987988,14.48332060075586 + 04/25 12:50:00,13.552552552552554,13.552552552552554,14.470129111476246 + 04/25 13:00:00,13.506306306306307,13.506306306306307,14.45363674065008 + 04/25 13:10:00,13.481081081081081,13.481081081081081,14.438105904847414 + 04/25 13:20:00,13.455855855855857,13.455855855855857,14.423954968733675 + 04/25 13:30:00,13.430630630630632,13.430630630630632,14.408322884259765 + 04/25 13:40:00,13.405405405405407,13.405405405405407,14.393113328104736 + 04/25 13:50:00,13.380180180180182,13.380180180180182,14.377766656352064 + 04/25 14:00:00,13.354954954954956,13.354954954954956,14.367475278070448 + 04/25 14:10:00,13.380180180180182,13.380180180180182,14.358083306226467 + 04/25 14:20:00,13.405405405405407,13.405405405405407,14.351914317238128 + 04/25 14:30:00,13.430630630630632,13.430630630630632,14.3457283004463 + 04/25 14:40:00,13.455855855855857,13.455855855855857,14.339052263646537 + 04/25 14:50:00,13.481081081081081,13.481081081081081,14.334114878316298 + 04/25 15:00:00,13.506306306306307,13.506306306306307,14.332197642080539 + 04/25 15:05:00,13.527327327327328,13.527327327327328,16.491589762543126 + 04/25 15:10:00,13.527327327327328,13.527327327327328,16.491593140304837 + 04/25 15:20:00,13.548348348348349,13.548348348348349,16.742341248473538 + 04/25 15:30:00,13.56936936936937,13.56936936936937,16.840996805434778 + 04/25 15:40:00,13.590390390390392,13.590390390390392,16.917137030323379 + 04/25 15:50:00,13.611411411411412,13.611411411411412,16.97526695953209 + 04/25 16:00:00,13.632432432432433,13.632432432432433,17.021603776106347 + 04/25 16:10:00,13.67867867867868,13.67867867867868,17.089007628967573 + 04/25 16:20:00,13.724924924924924,13.724924924924924,17.146993139939224 + 04/25 16:30:00,13.771171171171173,13.771171171171173,17.180755530806587 + 04/25 16:40:00,13.817417417417419,13.817417417417419,17.211595389486726 + 04/25 16:50:00,13.863663663663666,13.863663663663666,17.24000154583493 + 04/25 17:00:00,13.90990990990991,13.90990990990991,17.266512734620865 + 04/25 17:10:00,13.935135135135136,13.935135135135136,17.303983599972768 + 04/25 17:20:00,13.960360360360362,13.960360360360362,17.332118049030869 + 04/25 17:30:00,13.985585585585586,13.985585585585586,17.353702546982768 + 04/25 17:40:00,14.010810810810812,14.010810810810812,17.37434637466193 + 04/25 17:50:00,14.036036036036038,14.036036036036038,17.3944903612956 + 04/25 18:00:00,14.061261261261262,14.061261261261262,17.414160593541227 + 04/25 18:10:00,14.132732732732733,14.132732732732733,17.434030445802159 + 04/25 18:20:00,14.204204204204205,14.204204204204205,17.453836377710965 + 04/25 18:30:00,14.275675675675675,14.275675675675675,17.47323060446222 + 04/25 18:40:00,14.347147147147148,14.347147147147148,17.49201179763665 + 04/25 18:50:00,14.418618618618618,14.418618618618618,17.510306635492648 + 04/25 19:00:00,14.49009009009009,14.49009009009009,17.5280117760852 + 04/25 19:10:00,14.557357357357358,14.557357357357358,17.55671906198782 + 04/25 19:20:00,14.624624624624625,14.624624624624625,17.572590412709887 + 04/25 19:30:00,14.691891891891892,14.691891891891892,17.587427763581425 + 04/25 19:40:00,14.759159159159159,14.759159159159159,17.601385788839225 + 04/25 19:50:00,14.826426426426427,14.826426426426427,17.614342203448616 + 04/25 20:00:00,14.893693693693694,14.893693693693694,17.626346130427529 + 04/25 20:10:00,14.965165165165164,14.965165165165164,17.616059456104009 + 04/25 20:20:00,15.036636636636637,15.036636636636637,17.632182191438355 + 04/25 20:30:00,15.108108108108109,15.108108108108109,17.643297113338055 + 04/25 20:40:00,15.17957957957958,15.17957957957958,17.653895206579585 + 04/25 20:50:00,15.251051051051052,15.251051051051052,17.664054524822423 + 04/25 21:00:00,15.322522522522523,15.322522522522523,17.67381971841225 + 04/25 21:10:00,15.368768768768769,15.368768768768769,17.684290087687218 + 04/25 21:20:00,15.415015015015016,15.415015015015016,17.69436913941119 + 04/25 21:30:00,15.46126126126126,15.46126126126126,17.70409133182841 + 04/25 21:40:00,15.507507507507507,15.507507507507507,17.713489892650349 + 04/25 21:50:00,15.553753753753754,15.553753753753754,17.722571297560675 + 04/25 22:00:00,15.6,15.6,17.731370544171314 + 04/25 22:10:00,15.6,15.6,19.11032905828115 + 04/25 22:20:00,15.6,15.6,19.25629642320549 + 04/25 22:30:00,15.6,15.6,19.32188104152593 + 04/25 22:40:00,15.6,15.6,19.373978954213376 + 04/25 22:50:00,15.6,15.6,19.416155500394006 + 04/25 23:00:00,15.6,15.6,19.451858632825969 + 04/25 23:10:00,15.6,15.6,19.483439460903204 + 04/25 23:20:00,15.6,15.6,19.511753592231338 + 04/25 23:30:00,15.6,15.6,19.53748263926088 + 04/25 23:40:00,15.6,15.6,19.561169422697718 + 04/25 23:50:00,15.6,15.6,19.58317195196831 + 04/25 24:00:00,15.6,15.6,19.603683161628799 + 04/26 00:10:00,15.6,15.6,19.623497858342547 + 04/26 00:20:00,15.6,15.6,19.642298212616358 + 04/26 00:30:00,15.6,15.6,19.66028180744058 + 04/26 00:40:00,15.6,15.6,19.67747626031414 + 04/26 00:50:00,15.6,15.6,19.69389768093105 + 04/26 01:00:00,15.6,15.6,19.70979045165577 + 04/26 01:10:00,15.6,15.6,19.723781236817879 + 04/26 01:20:00,15.6,15.6,19.737278020750137 + 04/26 01:30:00,15.6,15.6,19.750281380838879 + 04/26 01:40:00,15.6,15.6,19.762779050973124 + 04/26 01:50:00,15.6,15.6,19.77487837761432 + 04/26 02:00:00,15.6,15.6,19.78662934021662 + 04/26 02:10:00,15.6,15.6,19.798805213616697 + 04/26 02:20:00,15.6,15.6,19.810524917770637 + 04/26 02:30:00,15.6,15.6,19.821806287294615 + 04/26 02:40:00,15.6,15.6,19.832663518000769 + 04/26 02:50:00,15.6,15.6,19.84323034922527 + 04/26 03:00:00,15.6,15.6,19.853462031389158 + 04/26 03:10:00,15.6,15.6,19.863259465046697 + 04/26 03:20:00,15.6,15.6,19.872740334555677 + 04/26 03:30:00,15.6,15.6,19.881806801732698 + 04/26 03:40:00,15.6,15.6,19.890630890905613 + 04/26 03:50:00,15.6,15.6,19.89917279119467 + 04/26 04:00:00,15.6,15.6,19.907447364436277 + 04/26 04:10:00,15.6,15.6,19.91622068737877 + 04/26 04:20:00,15.6,15.6,19.924829499398017 + 04/26 04:30:00,15.6,15.6,19.93351043723877 + 04/26 04:40:00,15.6,15.6,19.942168162218505 + 04/26 04:50:00,15.6,15.6,19.950786658918735 + 04/26 05:00:00,15.6,15.6,19.95936478213228 + 04/26 05:10:00,15.6,15.6,19.967964819092275 + 04/26 05:20:00,15.6,15.6,19.97637598117216 + 04/26 05:30:00,15.6,15.6,19.98454891075599 + 04/26 05:40:00,15.6,15.6,19.992447344032443 + 04/26 05:50:00,15.6,15.6,20.000086852627044 + 04/26 06:00:00,15.6,15.6,20.007224719139815 + 04/26 06:10:00,15.6,15.6,17.998947805084418 + 04/26 06:20:00,15.6,15.6,17.766167631593654 + 04/26 06:30:00,15.6,15.6,17.678779048089898 + 04/26 06:40:00,15.6,15.6,17.609780398999488 + 04/26 06:50:00,15.6,15.6,17.555014483002404 + 04/26 07:00:00,15.6,15.6,17.50892062989191 + 04/26 07:05:00,15.6,15.6,16.019001245895227 + 04/26 07:10:00,15.6,15.6,16.018735882572263 + 04/26 07:15:00,15.6,15.6,15.795868557585779 + 04/26 07:20:00,15.6,15.6,15.795878006906463 + 04/26 07:30:00,15.6,15.6,15.686239912578067 + 04/26 07:40:00,15.6,15.6,15.594164144673892 + 04/26 07:50:00,15.6,15.6,15.515053662153998 + 04/26 08:00:00,15.6,15.6,15.44504330179003 + 04/26 08:10:00,15.6,15.6,15.356093989031678 + 04/26 08:20:00,15.6,15.6,15.290274675483947 + 04/26 08:30:00,15.6,15.6,15.236400317053502 + 04/26 08:40:00,15.6,15.6,15.186165637789435 + 04/26 08:50:00,15.461261261261262,15.461261261261262,15.139245356023788 + 04/26 09:00:00,15.322522522522523,15.322522522522523,15.095448396797645 + 04/26 09:10:00,15.276276276276276,15.276276276276276,15.055747807718387 + 04/26 09:20:00,15.23003003003003,15.23003003003003,15.008171858785414 + 04/26 09:30:00,15.183783783783785,15.183783783783785,14.973911138227138 + 04/26 09:40:00,15.137537537537538,15.137537537537538,14.94175339284984 + 04/26 09:50:00,15.091291291291292,15.091291291291292,14.910783191720798 + 04/26 10:00:00,15.045045045045045,15.045045045045045,14.880530267108432 + 04/26 10:10:00,14.973573573573575,14.973573573573575,14.84980924090566 + 04/26 10:20:00,14.902102102102102,14.902102102102102,14.815302442755048 + 04/26 10:30:00,14.83063063063063,14.83063063063063,14.784697581236192 + 04/26 10:40:00,14.759159159159159,14.759159159159159,14.755205467162169 + 04/26 10:50:00,14.687687687687689,14.687687687687689,14.728296435517834 + 04/26 11:00:00,14.616216216216217,14.616216216216217,14.70452467548049 + 04/26 11:10:00,14.523723723723723,14.523723723723723,14.683771497211952 + 04/26 11:20:00,14.431231231231232,14.431231231231232,14.675588798999956 + 04/26 11:30:00,14.338738738738739,14.338738738738739,14.660463794306928 + 04/26 11:40:00,14.246246246246246,14.246246246246246,14.646384886383713 + 04/26 11:50:00,14.153753753753755,14.153753753753755,14.629991056019938 + 04/26 12:00:00,14.061261261261262,14.061261261261262,14.614454352939385 + 04/26 12:10:00,14.082282282282283,14.082282282282283,14.599920788573991 + 04/26 12:20:00,14.103303303303303,14.103303303303303,14.575911011355288 + 04/26 12:30:00,14.124324324324324,14.124324324324324,14.561763413432513 + 04/26 12:40:00,14.145345345345346,14.145345345345346,14.550058228854427 + 04/26 12:50:00,14.166366366366367,14.166366366366367,14.535514935530756 + 04/26 13:00:00,14.187387387387388,14.187387387387388,14.52494810567108 + 04/26 13:10:00,14.187387387387388,14.187387387387388,14.51346444666569 + 04/26 13:20:00,14.187387387387388,14.187387387387388,14.505236820385573 + 04/26 13:30:00,14.187387387387388,14.187387387387388,14.49578413636306 + 04/26 13:40:00,14.187387387387389,14.187387387387389,14.483986694913572 + 04/26 13:50:00,14.187387387387388,14.187387387387388,14.475315716286268 + 04/26 14:00:00,14.187387387387388,14.187387387387388,14.468222664935056 + 04/26 14:10:00,14.187387387387388,14.187387387387388,14.459027422886605 + 04/26 14:20:00,14.187387387387388,14.187387387387388,14.458543081487545 + 04/26 14:30:00,14.187387387387388,14.187387387387388,14.454876051041849 + 04/26 14:40:00,14.187387387387389,14.187387387387389,14.448911869725821 + 04/26 14:50:00,14.187387387387388,14.187387387387388,14.444450012686277 + 04/26 15:00:00,14.187387387387388,14.187387387387388,14.438374706285789 + 04/26 15:05:00,14.166366366366367,14.166366366366367,16.597644710468765 + 04/26 15:10:00,14.166366366366367,14.166366366366367,16.596684688389386 + 04/26 15:20:00,14.145345345345346,14.145345345345346,16.842380605500368 + 04/26 15:30:00,14.124324324324324,14.124324324324324,16.93534270121262 + 04/26 15:40:00,14.103303303303303,14.103303303303303,17.004548884530374 + 04/26 15:50:00,14.082282282282283,14.082282282282283,17.05666076182233 + 04/26 16:00:00,14.061261261261262,14.061261261261262,17.101113588408727 + 04/26 16:10:00,14.061261261261262,14.061261261261262,17.16523728363762 + 04/26 16:20:00,14.061261261261262,14.061261261261262,17.21773266464485 + 04/26 16:30:00,14.061261261261262,14.061261261261262,17.24680139157261 + 04/26 16:40:00,14.061261261261262,14.061261261261262,17.27289475248367 + 04/26 16:50:00,14.061261261261262,14.061261261261262,17.29681366636394 + 04/26 17:00:00,14.061261261261262,14.061261261261262,17.31903078116723 + 04/26 17:10:00,14.082282282282283,14.082282282282283,17.352860282170778 + 04/26 17:20:00,14.103303303303303,14.103303303303303,17.37858658353584 + 04/26 17:30:00,14.124324324324324,14.124324324324324,17.39807988227616 + 04/26 17:40:00,14.145345345345346,14.145345345345346,17.417222261579107 + 04/26 17:50:00,14.166366366366367,14.166366366366367,17.436202118991344 + 04/26 18:00:00,14.187387387387388,14.187387387387388,17.45503288724453 + 04/26 18:10:00,14.237837837837838,14.237837837837838,17.47307227363253 + 04/26 18:20:00,14.288288288288289,14.288288288288289,17.490448124708516 + 04/26 18:30:00,14.338738738738739,14.338738738738739,17.507439392839929 + 04/26 18:40:00,14.389189189189189,14.389189189189189,17.524033214302304 + 04/26 18:50:00,14.43963963963964,14.43963963963964,17.540182227220034 + 04/26 19:00:00,14.49009009009009,14.49009009009009,17.555936318250997 + 04/26 19:10:00,14.64984984984985,14.64984984984985,17.585458328770707 + 04/26 19:20:00,14.809609609609609,14.809609609609609,17.60298320691978 + 04/26 19:30:00,14.96936936936937,14.96936936936937,17.619430566447144 + 04/26 19:40:00,15.12912912912913,15.12912912912913,17.63515486049395 + 04/26 19:50:00,15.288888888888888,15.288888888888888,17.649836869077867 + 04/26 20:00:00,15.448648648648648,15.448648648648648,17.66358281299398 + 04/26 20:10:00,15.473873873873874,15.473873873873874,17.65437324584814 + 04/26 20:20:00,15.499099099099098,15.499099099099098,17.671597561492754 + 04/26 20:30:00,15.524324324324324,15.524324324324324,17.683576018840428 + 04/26 20:40:00,15.54954954954955,15.54954954954955,17.69482789655873 + 04/26 20:50:00,15.574774774774774,15.574774774774774,17.70548308525293 + 04/26 21:00:00,15.6,15.6,17.715559749897694 + 04/26 21:10:00,15.6,15.6,17.725323606645874 + 04/26 21:20:00,15.6,15.6,17.734614357116887 + 04/26 21:30:00,15.6,15.6,17.743641890245436 + 04/26 21:40:00,15.6,15.6,17.752417025739839 + 04/26 21:50:00,15.6,15.6,17.76094015232837 + 04/26 22:00:00,15.6,15.6,17.769374548816715 + 04/26 22:10:00,15.6,15.6,19.148598801075143 + 04/26 22:20:00,15.6,15.6,19.295341568832538 + 04/26 22:30:00,15.6,15.6,19.362010141239005 + 04/26 22:40:00,15.6,15.6,19.415177713186066 + 04/26 22:50:00,15.6,15.6,19.45873335155783 + 04/26 23:00:00,15.6,15.6,19.49583203412794 + 04/26 23:10:00,15.6,15.6,19.52854022670549 + 04/26 23:20:00,15.6,15.6,19.557706391467116 + 04/26 23:30:00,15.6,15.6,19.584016388975177 + 04/26 23:40:00,15.6,15.6,19.608135177635974 + 04/26 23:50:00,15.6,15.6,19.630430027145907 + 04/26 24:00:00,15.6,15.6,19.65118194488157 + 04/27 00:10:00,15.6,15.6,19.66936913738442 + 04/27 00:20:00,15.6,15.6,19.686426675273105 + 04/27 00:30:00,15.6,15.6,19.70254982789418 + 04/27 00:40:00,15.6,15.6,19.717905131851006 + 04/27 00:50:00,15.6,15.6,19.732486707456937 + 04/27 01:00:00,15.6,15.6,19.746483881630235 + 04/27 01:10:00,15.6,15.6,19.760129349464937 + 04/27 01:20:00,15.6,15.6,19.77315099063023 + 04/27 01:30:00,15.6,15.6,19.785695765576305 + 04/27 01:40:00,15.6,15.6,19.797719992702996 + 04/27 01:50:00,15.6,15.6,19.80926601608481 + 04/27 02:00:00,15.6,15.6,19.82035941445487 + 04/27 02:10:00,15.6,15.6,19.830948669263817 + 04/27 02:20:00,15.6,15.6,19.841236966467294 + 04/27 02:30:00,15.6,15.6,19.851154835562374 + 04/27 02:40:00,15.6,15.6,19.86072843960911 + 04/27 02:50:00,15.6,15.6,19.8699813786862 + 04/27 03:00:00,15.6,15.6,19.878844633858316 + 04/27 03:10:00,15.6,15.6,19.88750415037928 + 04/27 03:20:00,15.6,15.6,19.895911116257385 + 04/27 03:30:00,15.6,15.6,19.904066066822098 + 04/27 03:40:00,15.6,15.6,19.911982695011738 + 04/27 03:50:00,15.6,15.6,19.91960720705682 + 04/27 04:00:00,15.6,15.6,19.927043233214734 + 04/27 04:10:00,15.6,15.6,19.93401198003377 + 04/27 04:20:00,15.6,15.6,19.940842913394787 + 04/27 04:30:00,15.6,15.6,19.947562911989015 + 04/27 04:40:00,15.6,15.6,19.95413722213572 + 04/27 04:50:00,15.6,15.6,19.960587689590679 + 04/27 05:00:00,15.6,15.6,19.966995920315165 + 04/27 05:10:00,15.6,15.6,19.9737350433429 + 04/27 05:20:00,15.6,15.6,19.980377893719735 + 04/27 05:30:00,15.6,15.6,19.98688794264827 + 04/27 05:40:00,15.6,15.6,19.993217940304793 + 04/27 05:50:00,15.6,15.6,19.99952104883016 + 04/27 06:00:00,15.6,15.6,20.00549405926107 + 04/27 06:10:00,15.6,15.6,17.99830415392108 + 04/27 06:20:00,15.6,15.6,17.76549449805462 + 04/27 06:30:00,15.6,15.6,17.678853784184328 + 04/27 06:40:00,15.6,15.6,17.610556206072788 + 04/27 06:50:00,15.6,15.6,17.55594453980752 + 04/27 07:00:00,15.6,15.6,17.5097904268429 + 04/27 07:10:00,15.6,15.6,16.020334921166659 + 04/27 07:20:00,15.6,15.6,15.79845500560216 + 04/27 07:30:00,15.6,15.6,15.691338366638174 + 04/27 07:40:00,15.6,15.6,15.6015172425902 + 04/27 07:50:00,15.6,15.6,15.524591860334703 + 04/27 08:00:00,15.6,15.6,15.45623706273006 + 04/27 08:10:00,15.46126126126126,15.46126126126126,15.368318580793695 + 04/27 08:20:00,15.322522522522523,15.322522522522523,15.30305778253319 + 04/27 08:30:00,15.183783783783783,15.183783783783783,15.249482955919167 + 04/27 08:40:00,15.045045045045045,15.045045045045045,15.199219267336665 + 04/27 08:50:00,14.906306306306306,14.906306306306306,15.151884842010812 + 04/27 09:00:00,14.767567567567568,14.767567567567568,15.10717164298419 + 04/27 09:10:00,14.64984984984985,14.64984984984985,15.065381000925003 + 04/27 09:20:00,14.532132132132132,14.532132132132132,15.01458518552015 + 04/27 09:30:00,14.414414414414415,14.414414414414415,14.976226530804576 + 04/27 09:40:00,14.296696696696696,14.296696696696696,14.939466959594903 + 04/27 09:50:00,14.178978978978979,14.178978978978979,14.90430438094795 + 04/27 10:00:00,14.061261261261262,14.061261261261262,14.87065800902305 + 04/27 10:10:00,13.968768768768769,13.968768768768769,14.837915523827905 + 04/27 10:20:00,13.876276276276276,13.876276276276276,14.802922114515458 + 04/27 10:30:00,13.783783783783785,13.783783783783785,14.772522666675793 + 04/27 10:40:00,13.691291291291293,13.691291291291293,14.74318981085394 + 04/27 10:50:00,13.5987987987988,13.5987987987988,14.71493570153765 + 04/27 11:00:00,13.506306306306307,13.506306306306307,14.687697280327337 + 04/27 11:10:00,13.481081081081081,13.481081081081081,14.66189044313356 + 04/27 11:20:00,13.455855855855857,13.455855855855857,14.64655663659766 + 04/27 11:30:00,13.430630630630632,13.430630630630632,14.6234923229868 + 04/27 11:40:00,13.405405405405407,13.405405405405407,14.601485905500715 + 04/27 11:50:00,13.380180180180182,13.380180180180182,14.578816814140277 + 04/27 12:00:00,13.354954954954956,13.354954954954956,14.558559406217553 + 04/27 12:10:00,13.283483483483485,13.283483483483485,14.540496250551064 + 04/27 12:20:00,13.212012012012013,13.212012012012013,14.514328923951592 + 04/27 12:30:00,13.140540540540542,13.140540540540542,14.49807139925368 + 04/27 12:40:00,13.06906906906907,13.06906906906907,14.48473478002497 + 04/27 12:50:00,12.997597597597599,12.997597597597599,14.468152482090107 + 04/27 13:00:00,12.926126126126127,12.926126126126127,14.454925989118144 + 04/27 13:10:00,12.87987987987988,12.87987987987988,14.441488948157485 + 04/27 13:20:00,12.833633633633636,12.833633633633636,14.431887028474229 + 04/27 13:30:00,12.8,12.8,14.421464814892847 + 04/27 13:40:00,12.8,12.8,14.409173520624466 + 04/27 13:50:00,12.8,12.8,14.398809848313034 + 04/27 14:00:00,12.8,12.8,14.38997693212025 + 04/27 14:10:00,12.8,12.8,14.378322333141734 + 04/27 14:20:00,12.8,12.8,14.373605282922452 + 04/27 14:30:00,12.8,12.8,14.366227596250126 + 04/27 14:40:00,12.8,12.8,14.356486670230627 + 04/27 14:50:00,12.8,12.8,14.350804054643936 + 04/27 15:00:00,12.8,12.8,14.346628922245439 + 04/27 15:05:00,12.8,12.8,16.503932798096753 + 04/27 15:10:00,12.8,12.8,16.50311997444647 + 04/27 15:20:00,12.8,12.8,16.75208856383493 + 04/27 15:30:00,12.8,12.8,16.84868616723454 + 04/27 15:40:00,12.8,12.8,16.921799212884669 + 04/27 15:50:00,12.8,12.8,16.97613846640148 + 04/27 16:00:00,12.8,12.8,17.02239177004671 + 04/27 16:10:00,12.8,12.8,17.088285558784138 + 04/27 16:20:00,12.8,12.8,17.142591404456139 + 04/27 16:30:00,12.8,12.8,17.17324818582477 + 04/27 16:40:00,12.8,12.8,17.20093413452707 + 04/27 16:50:00,12.8,12.8,17.226580156860849 + 04/27 17:00:00,12.8,12.8,17.250576391835034 + 04/27 17:10:00,12.8,12.8,17.286597237985526 + 04/27 17:20:00,12.8,12.8,17.314202074974554 + 04/27 17:30:00,12.8,12.8,17.3353857722692 + 04/27 17:40:00,12.8,12.8,17.35576258347875 + 04/27 17:50:00,12.8,12.8,17.375558158689218 + 04/27 18:00:00,12.8,12.8,17.39480294419519 + 04/27 18:10:00,12.8,12.8,17.413812351635604 + 04/27 18:20:00,12.884084084084086,12.884084084084086,17.433282700501314 + 04/27 18:30:00,13.001801801801804,13.001801801801804,17.45223126171058 + 04/27 18:40:00,13.119519519519521,13.119519519519521,17.47069833301714 + 04/27 18:50:00,13.237237237237239,13.237237237237239,17.48843229572366 + 04/27 19:00:00,13.354954954954956,13.354954954954956,17.505566326893964 + 04/27 19:10:00,13.493693693693695,13.493693693693695,17.53523142371873 + 04/27 19:20:00,13.632432432432435,13.632432432432435,17.55315502532305 + 04/27 19:30:00,13.771171171171173,13.771171171171173,17.570074486176116 + 04/27 19:40:00,13.90990990990991,13.90990990990991,17.586253444696454 + 04/27 19:50:00,14.04864864864865,14.04864864864865,17.601362473334669 + 04/27 20:00:00,14.187387387387388,14.187387387387388,17.615471804188105 + 04/27 20:10:00,14.237837837837838,14.237837837837838,17.606472853066348 + 04/27 20:20:00,14.288288288288289,14.288288288288289,17.623530445419186 + 04/27 20:30:00,14.338738738738739,14.338738738738739,17.63537329826925 + 04/27 20:40:00,14.389189189189189,14.389189189189189,17.646485811449617 + 04/27 20:50:00,14.43963963963964,14.43963963963964,17.656985042809578 + 04/27 21:00:00,14.49009009009009,14.49009009009009,17.666941581780649 + 04/27 21:10:00,14.536336336336337,14.536336336336337,17.67642174467259 + 04/27 21:20:00,14.582582582582582,14.582582582582582,17.684893422313399 + 04/27 21:30:00,14.628828828828829,14.628828828828829,17.693057467557435 + 04/27 21:40:00,14.675075075075075,14.675075075075075,17.700835772446707 + 04/27 21:50:00,14.721321321321322,14.721321321321322,17.708374390960228 + 04/27 22:00:00,14.767567567567568,14.767567567567568,17.7156949347535 + 04/27 22:10:00,14.86006006006006,14.86006006006006,19.09172293265198 + 04/27 22:20:00,14.952552552552552,14.952552552552552,19.238150146610886 + 04/27 22:30:00,15.045045045045045,15.045045045045045,19.304327732823979 + 04/27 22:40:00,15.137537537537538,15.137537537537538,19.357087026058236 + 04/27 22:50:00,15.23003003003003,15.23003003003003,19.400259504194936 + 04/27 23:00:00,15.322522522522523,15.322522522522523,19.437042245730664 + 04/27 23:10:00,15.276276276276276,15.276276276276276,19.468893924375239 + 04/27 23:20:00,15.23003003003003,15.23003003003003,19.497114671329265 + 04/27 23:30:00,15.183783783783785,15.183783783783785,19.52228649798043 + 04/27 23:40:00,15.137537537537538,15.137537537537538,19.544962231171234 + 04/27 23:50:00,15.091291291291292,15.091291291291292,19.565552153796604 + 04/27 24:00:00,15.045045045045045,15.045045045045045,19.584298757278277 + 04/28 00:10:00,15.066066066066066,15.066066066066066,19.600977126911287 + 04/28 00:20:00,15.087087087087087,15.087087087087087,19.616511568670846 + 04/28 00:30:00,15.108108108108109,15.108108108108109,19.631202505802894 + 04/28 00:40:00,15.12912912912913,15.12912912912913,19.645155867174528 + 04/28 00:50:00,15.15015015015015,15.15015015015015,19.65839632222185 + 04/28 01:00:00,15.17117117117117,15.17117117117117,19.671144256347529 + 04/28 01:10:00,15.17117117117117,15.17117117117117,19.684410673146418 + 04/28 01:20:00,15.17117117117117,15.17117117117117,19.69721856675112 + 04/28 01:30:00,15.17117117117117,15.17117117117117,19.709487707419805 + 04/28 01:40:00,15.17117117117117,15.17117117117117,19.721216497961018 + 04/28 01:50:00,15.17117117117117,15.17117117117117,19.732496932162939 + 04/28 02:00:00,15.17117117117117,15.17117117117117,19.743385388153035 + 04/28 02:10:00,15.196396396396397,15.196396396396397,19.75318105409798 + 04/28 02:20:00,15.22162162162162,15.22162162162162,19.76257217149127 + 04/28 02:30:00,15.246846846846847,15.246846846846847,19.771673339839656 + 04/28 02:40:00,15.272072072072073,15.272072072072073,19.780482790251413 + 04/28 02:50:00,15.297297297297297,15.297297297297297,19.789133900771696 + 04/28 03:00:00,15.322522522522523,15.322522522522523,19.797568133626034 + 04/28 03:10:00,15.415015015015016,15.415015015015016,19.806117054733769 + 04/28 03:20:00,15.507507507507507,15.507507507507507,19.81474165930567 + 04/28 03:30:00,15.6,15.6,19.823286023504037 + 04/28 03:40:00,15.6,15.6,19.8319551028981 + 04/28 03:50:00,15.6,15.6,19.840599880628294 + 04/28 04:00:00,15.6,15.6,19.84919957957203 + 04/28 04:10:00,15.6,15.6,19.858030103528934 + 04/28 04:20:00,15.6,15.6,19.866508381915389 + 04/28 04:30:00,15.6,15.6,19.874728443484075 + 04/28 04:40:00,15.6,15.6,19.882617157487006 + 04/28 04:50:00,15.6,15.6,19.89018152994509 + 04/28 05:00:00,15.6,15.6,19.897447969681193 + 04/28 05:10:00,15.6,15.6,19.903811507859169 + 04/28 05:20:00,15.6,15.6,19.909952910936285 + 04/28 05:30:00,15.6,15.6,19.915986454363908 + 04/28 05:40:00,15.6,15.6,19.92187238850795 + 04/28 05:50:00,15.6,15.6,19.92764433393773 + 04/28 06:00:00,15.6,15.6,19.93304070613116 + 04/28 06:10:00,15.6,15.6,17.925248326946997 + 04/28 06:20:00,15.6,15.6,17.691731235950319 + 04/28 06:30:00,15.6,15.6,17.604387623754758 + 04/28 06:40:00,15.457057057057057,15.457057057057057,17.535397702548936 + 04/28 06:50:00,15.314114114114114,15.314114114114114,17.48016551143072 + 04/28 07:00:00,15.17117117117117,15.17117117117117,17.433345052897328 + 04/28 07:05:00,15.007207207207208,15.007207207207208,15.946900259083769 + 04/28 07:10:00,15.007207207207208,15.007207207207208,15.946147494999444 + 04/28 07:15:00,14.843243243243244,14.843243243243244,15.72500054097765 + 04/28 07:20:00,14.843243243243244,14.843243243243244,15.725168770215359 + 04/28 07:25:00,14.67927927927928,14.67927927927928,15.617665749629495 + 04/28 07:30:00,14.67927927927928,14.67927927927928,15.617859328445715 + 04/28 07:40:00,14.515315315315317,14.515315315315317,15.52590740367897 + 04/28 07:50:00,14.35135135135135,14.35135135135135,15.448520506953092 + 04/28 08:00:00,14.187387387387388,14.187387387387388,15.37983578306267 + 04/28 08:05:00,14.073873873873874,14.073873873873874,15.292766166575556 + 04/28 08:10:00,14.073873873873874,14.073873873873874,15.291875018171507 + 04/28 08:20:00,13.960360360360362,13.960360360360362,15.224763700219949 + 04/28 08:30:00,13.846846846846848,13.846846846846848,15.171377064624418 + 04/28 08:40:00,13.733333333333335,13.733333333333335,15.120874334965477 + 04/28 08:50:00,13.61981981981982,13.61981981981982,15.073941885819382 + 04/28 09:00:00,13.506306306306307,13.506306306306307,15.029745276080745 + 04/28 09:10:00,13.506306306306307,13.506306306306307,14.989442262909174 + 04/28 09:20:00,13.506306306306307,13.506306306306307,14.939926647320699 + 04/28 09:30:00,13.506306306306307,13.506306306306307,14.903429138208136 + 04/28 09:40:00,13.506306306306307,13.506306306306307,14.868943338822906 + 04/28 09:50:00,13.506306306306307,13.506306306306307,14.836514318747989 + 04/28 10:00:00,13.506306306306307,13.506306306306307,14.8059487601177 + 04/28 10:10:00,13.46006006006006,13.46006006006006,14.776317137514525 + 04/28 10:20:00,13.413813813813814,13.413813813813814,14.744826659691447 + 04/28 10:30:00,13.367567567567568,13.367567567567568,14.717761627389102 + 04/28 10:40:00,13.321321321321323,13.321321321321323,14.691762255785104 + 04/28 10:50:00,13.275075075075077,13.275075075075077,14.666941169197406 + 04/28 11:00:00,13.22882882882883,13.22882882882883,14.643388699452793 + 04/28 11:10:00,13.064864864864866,13.064864864864866,14.619870277929755 + 04/28 11:20:00,12.900900900900903,12.900900900900903,14.60682307257734 + 04/28 11:30:00,12.8,12.8,14.585485473260614 + 04/28 11:40:00,12.8,12.8,14.564763720920102 + 04/28 11:50:00,12.8,12.8,14.544020236527837 + 04/28 12:00:00,12.8,12.8,14.521375525300784 + 04/28 12:10:00,12.8,12.8,14.502938146444454 + 04/28 12:20:00,12.8,12.8,14.477896427238278 + 04/28 12:30:00,12.8,12.8,14.460197755088764 + 04/28 12:40:00,12.8,12.8,14.446900258805215 + 04/28 12:50:00,12.8,12.8,14.43234191794282 + 04/28 13:00:00,12.8,12.8,14.418311360345735 + 04/28 13:10:00,12.8,12.8,14.406125141912542 + 04/28 13:20:00,12.8,12.8,14.392068866824399 + 04/28 13:30:00,12.8,12.8,14.378003107999844 + 04/28 13:40:00,12.8,12.8,14.363595887552892 + 04/28 13:50:00,12.8,12.8,14.348218447146614 + 04/28 14:00:00,12.8,12.8,14.340603048714352 + 04/28 14:10:00,12.8,12.8,14.323665961482354 + 04/28 14:20:00,12.8,12.8,14.322328512902424 + 04/28 14:30:00,12.8,12.8,14.314516765893984 + 04/28 14:40:00,12.8,12.8,14.308981357107978 + 04/28 14:50:00,12.8,12.8,14.30288847141653 + 04/28 15:00:00,12.8,12.8,14.299398657300632 + 04/28 15:05:00,12.8,12.8,16.454382087018528 + 04/28 15:10:00,12.8,12.8,16.45289554916053 + 04/28 15:20:00,12.8,12.8,16.700809851806257 + 04/28 15:30:00,12.8,12.8,16.798771711295197 + 04/28 15:40:00,12.8,12.8,16.872858907964909 + 04/28 15:50:00,12.8,12.8,16.93158841740768 + 04/28 16:00:00,12.8,12.8,16.977479476054137 + 04/28 16:10:00,12.8,12.8,17.045040670791694 + 04/28 16:20:00,12.8,12.8,17.097044225280997 + 04/28 16:30:00,12.8,12.8,17.131825266418809 + 04/28 16:40:00,12.8,12.8,17.156794339468754 + 04/28 16:50:00,12.8,12.8,17.18375222884061 + 04/28 17:00:00,12.8,12.8,17.207599737518636 + 04/28 17:10:00,12.8,12.8,17.243305417877047 + 04/28 17:20:00,12.8,12.8,17.270802711999246 + 04/28 17:30:00,12.8,12.8,17.291638829130365 + 04/28 17:40:00,12.8,12.8,17.3117693301627 + 04/28 17:50:00,12.8,12.8,17.33137021718942 + 04/28 18:00:00,12.8,12.8,17.35045650936161 + 04/28 18:10:00,12.8,12.8,17.369464372043099 + 04/28 18:20:00,12.8,12.8,17.388207324513894 + 04/28 18:30:00,12.8,12.8,17.406249597579657 + 04/28 18:40:00,12.8,12.8,17.42364252884375 + 04/28 18:50:00,12.8,12.8,17.440176052896307 + 04/28 19:00:00,12.8,12.8,17.455968343898687 + 04/28 19:10:00,12.8,12.8,17.484517617896594 + 04/28 19:20:00,12.8,12.8,17.50214059375274 + 04/28 19:30:00,12.8,12.8,17.519016352526035 + 04/28 19:40:00,12.892492492492494,12.892492492492494,17.535415077406307 + 04/28 19:50:00,12.984984984984987,12.984984984984987,17.550836070086075 + 04/28 20:00:00,13.077477477477478,13.077477477477478,17.565408123174295 + 04/28 20:10:00,13.148948948948949,13.148948948948949,17.556858803643974 + 04/28 20:20:00,13.220420420420421,13.220420420420421,17.573376852576258 + 04/28 20:30:00,13.291891891891894,13.291891891891894,17.584881289590468 + 04/28 20:40:00,13.363363363363364,13.363363363363364,17.595644456890189 + 04/28 20:50:00,13.434834834834835,13.434834834834835,17.605957116474955 + 04/28 21:00:00,13.506306306306307,13.506306306306307,17.615841828576789 + 04/28 21:10:00,13.552552552552554,13.552552552552554,17.625001374759714 + 04/28 21:20:00,13.5987987987988,13.5987987987988,17.6338522433238 + 04/28 21:30:00,13.645045045045047,13.645045045045047,17.642356638157407 + 04/28 21:40:00,13.691291291291293,13.691291291291293,17.650455615702574 + 04/28 21:50:00,13.737537537537538,13.737537537537538,17.65824258092882 + 04/28 22:00:00,13.783783783783785,13.783783783783785,17.665871385046214 + 04/28 22:10:00,13.783783783783785,13.783783783783785,19.03706329034419 + 04/28 22:20:00,13.783783783783785,13.783783783783785,19.18264909707791 + 04/28 22:30:00,13.783783783783785,13.783783783783785,19.247401617908968 + 04/28 22:40:00,13.783783783783785,13.783783783783785,19.29859846128462 + 04/28 22:50:00,13.783783783783785,13.783783783783785,19.340065456135286 + 04/28 23:00:00,13.783783783783785,13.783783783783785,19.37497503755688 + 04/28 23:10:00,13.783783783783785,13.783783783783785,19.40471493582337 + 04/28 23:20:00,13.783783783783785,13.783783783783785,19.43098389392665 + 04/28 23:30:00,13.783783783783785,13.783783783783785,19.454491633949759 + 04/28 23:40:00,13.783783783783785,13.783783783783785,19.47591042269627 + 04/28 23:50:00,13.783783783783785,13.783783783783785,19.495594592772194 + 04/28 24:00:00,13.783783783783785,13.783783783783785,19.513814525971836 + 04/29 00:10:00,13.83003003003003,13.83003003003003,19.531970524795569 + 04/29 00:20:00,13.876276276276276,13.876276276276276,19.549141921998144 + 04/29 00:30:00,13.922522522522524,13.922522522522524,19.565453913111804 + 04/29 00:40:00,13.968768768768769,13.968768768768769,19.58106683537814 + 04/29 00:50:00,14.015015015015015,14.015015015015015,19.596012513984478 + 04/29 01:00:00,14.061261261261262,14.061261261261262,19.610363250151349 + 04/29 01:10:00,14.107507507507508,14.107507507507508,19.62356474614763 + 04/29 01:20:00,14.153753753753755,14.153753753753755,19.635866957278286 + 04/29 01:30:00,14.2,14.2,19.647752856625535 + 04/29 01:40:00,14.246246246246246,14.246246246246246,19.659110764030488 + 04/29 01:50:00,14.292492492492493,14.292492492492493,19.670067225510047 + 04/29 02:00:00,14.338738738738739,14.338738738738739,19.68064553561204 + 04/29 02:10:00,14.363963963963965,14.363963963963965,19.69067116516905 + 04/29 02:20:00,14.389189189189189,14.389189189189189,19.70076490040809 + 04/29 02:30:00,14.414414414414415,14.414414414414415,19.71057891873167 + 04/29 02:40:00,14.439639639639639,14.439639639639639,19.720199610357139 + 04/29 02:50:00,14.464864864864865,14.464864864864865,19.729561978593848 + 04/29 03:00:00,14.49009009009009,14.49009009009009,19.73858621823827 + 04/29 03:10:00,14.511111111111111,14.511111111111111,19.746740239199576 + 04/29 03:20:00,14.532132132132132,14.532132132132132,19.75488592369057 + 04/29 03:30:00,14.553153153153153,14.553153153153153,19.762849573725178 + 04/29 03:40:00,14.574174174174175,14.574174174174175,19.770675999951157 + 04/29 03:50:00,14.595195195195196,14.595195195195196,19.77826917366077 + 04/29 04:00:00,14.616216216216217,14.616216216216217,19.78569975807735 + 04/29 04:10:00,14.616216216216217,14.616216216216217,19.79430866458545 + 04/29 04:20:00,14.616216216216217,14.616216216216217,19.8024119130012 + 04/29 04:30:00,14.616216216216217,14.616216216216217,19.81013058497816 + 04/29 04:40:00,14.616216216216217,14.616216216216217,19.81738679340834 + 04/29 04:50:00,14.616216216216217,14.616216216216217,19.82428090468887 + 04/29 05:00:00,14.616216216216217,14.616216216216217,19.830932763354569 + 04/29 05:10:00,14.56996996996997,14.56996996996997,19.83628915756767 + 04/29 05:20:00,14.523723723723723,14.523723723723723,19.84157671934825 + 04/29 05:30:00,14.477477477477479,14.477477477477479,19.84655965070198 + 04/29 05:40:00,14.431231231231232,14.431231231231232,19.851251787298695 + 04/29 05:50:00,14.384984984984986,14.384984984984986,19.855780314071756 + 04/29 06:00:00,14.338738738738739,14.338738738738739,19.859828792960788 + 04/29 06:10:00,14.338738738738739,14.338738738738739,19.20167980465973 + 04/29 06:20:00,14.338738738738739,14.338738738738739,19.133256411650398 + 04/29 06:30:00,14.338738738738739,14.338738738738739,19.104688452562784 + 04/29 06:40:00,14.338738738738739,14.338738738738739,19.08201505046984 + 04/29 06:50:00,14.338738738738739,14.338738738738739,19.063451396261926 + 04/29 07:00:00,14.338738738738739,14.338738738738739,19.047269437460299 + 04/29 07:10:00,14.313513513513513,14.313513513513513,17.957802204698955 + 04/29 07:20:00,14.288288288288289,14.288288288288289,17.808867110342228 + 04/29 07:30:00,14.263063063063063,14.263063063063063,17.745061600508067 + 04/29 07:40:00,14.237837837837839,14.237837837837839,17.693799416773474 + 04/29 07:50:00,14.212612612612613,14.212612612612613,17.652063379201004 + 04/29 08:00:00,14.187387387387388,14.187387387387388,17.61692495871533 + 04/29 08:10:00,14.166366366366367,14.166366366366367,17.58580038430126 + 04/29 08:20:00,14.145345345345346,14.145345345345346,17.549124146035099 + 04/29 08:30:00,14.124324324324324,14.124324324324324,17.524490826105934 + 04/29 08:40:00,14.103303303303303,14.103303303303303,17.501886352997077 + 04/29 08:50:00,14.082282282282283,14.082282282282283,17.480373518829447 + 04/29 09:00:00,14.061261261261262,14.061261261261262,17.459344783108283 + 04/29 09:10:00,14.036036036036036,14.036036036036036,17.438448140231864 + 04/29 09:20:00,14.01081081081081,14.01081081081081,17.409155662071276 + 04/29 09:30:00,13.985585585585586,13.985585585585586,17.388856430947468 + 04/29 09:40:00,13.960360360360362,13.960360360360362,17.368602058645977 + 04/29 09:50:00,13.935135135135136,13.935135135135136,17.34795982965658 + 04/29 10:00:00,13.90990990990991,13.90990990990991,17.326751193997603 + 04/29 10:10:00,13.817417417417419,13.817417417417419,17.305379888760709 + 04/29 10:20:00,13.724924924924926,13.724924924924926,17.2834632317212 + 04/29 10:30:00,13.632432432432435,13.632432432432435,17.261070261161373 + 04/29 10:40:00,13.539939939939942,13.539939939939942,17.239170514424779 + 04/29 10:50:00,13.447447447447449,13.447447447447449,17.219244892403866 + 04/29 11:00:00,13.354954954954956,13.354954954954956,17.201774939299843 + 04/29 11:10:00,13.237237237237239,13.237237237237239,17.18601512063109 + 04/29 11:20:00,13.119519519519521,13.119519519519521,17.173286234954359 + 04/29 11:30:00,13.001801801801804,13.001801801801804,17.161744819684548 + 04/29 11:40:00,12.884084084084086,12.884084084084086,17.15188241835854 + 04/29 11:50:00,12.8,12.8,17.14403635977508 + 04/29 12:00:00,12.8,12.8,17.138437180661847 + 04/29 12:10:00,12.8,12.8,17.135199104253233 + 04/29 12:20:00,12.8,12.8,17.130917217041675 + 04/29 12:30:00,12.8,12.8,17.128370877922909 + 04/29 12:40:00,12.8,12.8,17.12585215561171 + 04/29 12:50:00,12.8,12.8,17.122276298571838 + 04/29 13:00:00,12.8,12.8,17.116910427162137 + 04/29 13:10:00,12.8,12.8,17.11002047001418 + 04/29 13:20:00,12.8,12.8,17.105075743516755 + 04/29 13:30:00,12.8,12.8,17.09932561556158 + 04/29 13:40:00,12.8,12.8,17.093541082761079 + 04/29 13:50:00,12.8,12.8,17.087217929835487 + 04/29 14:00:00,12.8,12.8,17.08054644505577 + 04/29 14:10:00,12.8,12.8,17.07365034637741 + 04/29 14:20:00,12.8,12.8,17.064660127295427 + 04/29 14:30:00,12.8,12.8,17.055580357583325 + 04/29 14:40:00,12.8,12.8,17.046338752238805 + 04/29 14:50:00,12.8,12.8,17.037757478044257 + 04/29 15:00:00,12.8,12.8,17.029952020883927 + 04/29 15:10:00,12.8,12.8,17.023049811672246 + 04/29 15:20:00,12.8,12.8,17.016107329784107 + 04/29 15:30:00,12.8,12.8,17.01006574633112 + 04/29 15:40:00,12.8,12.8,17.004982770960216 + 04/29 15:50:00,12.8,12.8,17.00126675318977 + 04/29 16:00:00,12.8,12.8,16.99885882609204 + 04/29 16:10:00,12.8,12.8,17.010414024698844 + 04/29 16:20:00,12.8,12.8,17.020721650308628 + 04/29 16:30:00,12.8,12.8,17.022135977815684 + 04/29 16:40:00,12.8,12.8,17.024266437779308 + 04/29 16:50:00,12.8,12.8,17.026989476424956 + 04/29 17:00:00,12.8,12.8,17.030407188034837 + 04/29 17:10:00,12.8,12.8,18.791210133103744 + 04/29 17:20:00,12.8,12.8,19.004609711106246 + 04/29 17:30:00,12.8,12.8,19.090164078167196 + 04/29 17:40:00,12.8,12.8,19.15741891016316 + 04/29 17:50:00,12.8,12.8,19.211323903913006 + 04/29 18:00:00,12.8,12.8,19.256164399602548 + 04/29 18:10:00,12.8,12.8,19.307335481191104 + 04/29 18:20:00,12.8,12.8,19.342112926739799 + 04/29 18:30:00,12.8,12.8,19.37278261537461 + 04/29 18:40:00,12.8,12.8,19.400540976227469 + 04/29 18:50:00,12.8,12.8,19.425795725107514 + 04/29 19:00:00,12.8,12.8,19.448911951577828 + 04/29 19:10:00,12.8,12.8,19.470712363887264 + 04/29 19:20:00,12.884084084084086,12.884084084084086,19.49136399795448 + 04/29 19:30:00,13.001801801801804,13.001801801801804,19.51114703502158 + 04/29 19:40:00,13.119519519519521,13.119519519519521,19.529850113865959 + 04/29 19:50:00,13.237237237237239,13.237237237237239,19.547357646094519 + 04/29 20:00:00,13.354954954954956,13.354954954954956,19.56383674509514 + 04/29 20:10:00,13.380180180180182,13.380180180180182,19.55717108965564 + 04/29 20:20:00,13.405405405405407,13.405405405405407,19.572896339451348 + 04/29 20:30:00,13.430630630630632,13.430630630630632,19.587976748839073 + 04/29 20:40:00,13.455855855855857,13.455855855855857,19.60263206753118 + 04/29 20:50:00,13.481081081081081,13.481081081081081,19.616781118337245 + 04/29 21:00:00,13.506306306306307,13.506306306306307,19.63056500031218 + 04/29 21:10:00,13.552552552552554,13.552552552552554,19.64394901988821 + 04/29 21:20:00,13.5987987987988,13.5987987987988,19.655777844595538 + 04/29 21:30:00,13.645045045045047,13.645045045045047,19.667157159284103 + 04/29 21:40:00,13.691291291291293,13.691291291291293,19.677756578693886 + 04/29 21:50:00,13.737537537537538,13.737537537537538,19.68800171019877 + 04/29 22:00:00,13.783783783783785,13.783783783783785,19.697815929472197 + 04/29 22:10:00,13.783783783783785,13.783783783783785,19.70753001640005 + 04/29 22:20:00,13.783783783783785,13.783783783783785,19.716778003034116 + 04/29 22:30:00,13.783783783783785,13.783783783783785,19.72494151583763 + 04/29 22:40:00,13.783783783783785,13.783783783783785,19.73234808440612 + 04/29 22:50:00,13.783783783783785,13.783783783783785,19.738844381454194 + 04/29 23:00:00,13.783783783783785,13.783783783783785,19.74459996457311 + 04/29 23:10:00,13.851051051051052,13.851051051051052,19.749711882533768 + 04/29 23:20:00,13.91831831831832,13.91831831831832,19.753834239239685 + 04/29 23:30:00,13.985585585585586,13.985585585585586,19.758633096684059 + 04/29 23:40:00,14.052852852852853,14.052852852852853,19.76380747166786 + 04/29 23:50:00,14.12012012012012,14.12012012012012,19.76964744523275 + 04/29 24:00:00,14.187387387387388,14.187387387387388,19.77597050269531 + 04/30 00:10:00,14.237837837837838,14.237837837837838,19.782830407292587 + 04/30 00:20:00,14.288288288288289,14.288288288288289,19.79032694634424 + 04/30 00:30:00,14.338738738738739,14.338738738738739,19.79761860625034 + 04/30 00:40:00,14.389189189189189,14.389189189189189,19.804730298961318 + 04/30 00:50:00,14.43963963963964,14.43963963963964,19.811481983807416 + 04/30 01:00:00,14.49009009009009,14.49009009009009,19.81786416356841 + 04/30 01:10:00,14.536336336336337,14.536336336336337,19.823408747720799 + 04/30 01:20:00,14.582582582582582,14.582582582582582,19.828691731604417 + 04/30 01:30:00,14.628828828828829,14.628828828828829,19.833786258991205 + 04/30 01:40:00,14.675075075075075,14.675075075075075,19.83869541437725 + 04/30 01:50:00,14.721321321321322,14.721321321321322,19.84346068292465 + 04/30 02:00:00,14.767567567567568,14.767567567567568,19.848009556693829 + 04/30 02:10:00,14.767567567567568,14.767567567567568,19.851743780503964 + 04/30 02:20:00,14.767567567567568,14.767567567567568,19.855554138386137 + 04/30 02:30:00,14.767567567567568,14.767567567567568,19.859289091387759 + 04/30 02:40:00,14.767567567567568,14.767567567567568,19.862996349476597 + 04/30 02:50:00,14.767567567567568,14.767567567567568,19.86654321048665 + 04/30 03:00:00,14.767567567567568,14.767567567567568,19.87007795948332 + 04/30 03:10:00,14.767567567567568,14.767567567567568,19.874077411184996 + 04/30 03:20:00,14.767567567567568,14.767567567567568,19.877990241070984 + 04/30 03:30:00,14.767567567567568,14.767567567567568,19.88181661353077 + 04/30 03:40:00,14.767567567567568,14.767567567567568,19.885496293616307 + 04/30 03:50:00,14.767567567567568,14.767567567567568,19.889112624910824 + 04/30 04:00:00,14.767567567567568,14.767567567567568,19.892690692120515 + 04/30 04:10:00,14.767567567567568,14.767567567567568,19.89619027117525 + 04/30 04:20:00,14.767567567567568,14.767567567567568,19.899613470391914 + 04/30 04:30:00,14.767567567567568,14.767567567567568,19.90292578297936 + 04/30 04:40:00,14.767567567567568,14.767567567567568,19.906138434010097 + 04/30 04:50:00,14.767567567567568,14.767567567567568,19.909347946008898 + 04/30 05:00:00,14.767567567567568,14.767567567567568,19.91249063607754 + 04/30 05:10:00,14.767567567567568,14.767567567567568,19.91580799828178 + 04/30 05:20:00,14.767567567567568,14.767567567567568,19.919044725220407 + 04/30 05:30:00,14.767567567567568,14.767567567567568,19.922140986235929 + 04/30 05:40:00,14.767567567567568,14.767567567567568,19.925264225564907 + 04/30 05:50:00,14.767567567567568,14.767567567567568,19.928326743720967 + 04/30 06:00:00,14.767567567567568,14.767567567567568,19.93112905610665 + 04/30 06:10:00,14.767567567567568,14.767567567567568,19.955341620108887 + 04/30 06:20:00,14.767567567567568,14.767567567567568,19.956655825612005 + 04/30 06:30:00,14.767567567567568,14.767567567567568,19.957726726735034 + 04/30 06:40:00,14.767567567567568,14.767567567567568,19.958496955643846 + 04/30 06:50:00,14.767567567567568,14.767567567567568,19.958900683223385 + 04/30 07:00:00,14.767567567567568,14.767567567567568,19.9589324393022 + 04/30 07:10:00,14.742342342342342,14.742342342342342,18.561505874779905 + 04/30 07:20:00,14.717117117117116,14.717117117117116,18.395201190535347 + 04/30 07:30:00,14.691891891891892,14.691891891891892,18.32977892422771 + 04/30 07:40:00,14.666666666666668,14.666666666666668,18.2779895252347 + 04/30 07:50:00,14.641441441441442,14.641441441441442,18.235969370030074 + 04/30 08:00:00,14.616216216216217,14.616216216216217,18.200355503517338 + 04/30 08:10:00,14.595195195195196,14.595195195195196,18.170474581453428 + 04/30 08:20:00,14.574174174174175,14.574174174174175,18.133951449330956 + 04/30 08:30:00,14.553153153153153,14.553153153153153,18.108567332427314 + 04/30 08:40:00,14.532132132132132,14.532132132132132,18.085060016132755 + 04/30 08:50:00,14.511111111111111,14.511111111111111,18.06342620118979 + 04/30 09:00:00,14.49009009009009,14.49009009009009,18.04344645505081 + 04/30 09:10:00,14.372372372372372,14.372372372372372,18.02361566161376 + 04/30 09:20:00,14.254654654654655,14.254654654654655,17.99773465523115 + 04/30 09:30:00,14.136936936936938,14.136936936936938,17.981404220129066 + 04/30 09:40:00,14.01921921921922,14.01921921921922,17.965919725296975 + 04/30 09:50:00,13.901501501501502,13.901501501501502,17.95042180778172 + 04/30 10:00:00,13.783783783783785,13.783783783783785,17.934685064770368 + 04/30 10:10:00,13.712312312312314,13.712312312312314,17.91929159231962 + 04/30 10:20:00,13.640840840840842,13.640840840840842,17.90336569704779 + 04/30 10:30:00,13.56936936936937,13.56936936936937,17.887599897120933 + 04/30 10:40:00,13.497897897897899,13.497897897897899,17.87188008070993 + 04/30 10:50:00,13.426426426426428,13.426426426426428,17.856514932251629 + 04/30 11:00:00,13.354954954954956,13.354954954954956,17.84137437218404 + 04/30 11:10:00,13.283483483483485,13.283483483483485,17.82601632334752 + 04/30 11:20:00,13.212012012012013,13.212012012012013,17.811063327988174 + 04/30 11:30:00,13.140540540540542,13.140540540540542,17.79627187160065 + 04/30 11:40:00,13.06906906906907,13.06906906906907,17.78220440834324 + 04/30 11:50:00,12.997597597597599,12.997597597597599,17.769620691091239 + 04/30 12:00:00,12.926126126126127,12.926126126126127,17.75904365533649 + 04/30 12:10:00,12.87987987987988,12.87987987987988,17.75042283126077 + 04/30 12:20:00,12.833633633633636,12.833633633633636,17.74334439153266 + 04/30 12:30:00,12.8,12.8,17.737554765309647 + 04/30 12:40:00,12.8,12.8,17.732013512491958 + 04/30 12:50:00,12.8,12.8,17.725080828928264 + 04/30 13:00:00,12.8,12.8,17.716170590603384 + 04/30 13:10:00,12.8,12.8,17.705705797706988 + 04/30 13:20:00,12.8,12.8,17.69467595238717 + 04/30 13:30:00,12.8,12.8,17.680278060603479 + 04/30 13:40:00,12.8,12.8,17.66689322972112 + 04/30 13:50:00,12.8,12.8,17.654427653487198 + 04/30 14:00:00,12.8,12.8,17.643851752426227 + 04/30 14:10:00,12.8,12.8,17.634904327205164 + 04/30 14:20:00,12.8,12.8,17.62730574231888 + 04/30 14:30:00,12.8,12.8,17.620760588974954 + 04/30 14:40:00,12.8,12.8,17.615224700376264 + 04/30 14:50:00,12.8,12.8,17.611084422664129 + 04/30 15:00:00,12.8,12.8,17.60825351670799 + 04/30 15:10:00,12.8,12.8,19.02346432064261 + 04/30 15:20:00,12.8,12.8,19.175928357946256 + 04/30 15:30:00,12.8,12.8,19.240414222851564 + 04/30 15:40:00,12.8,12.8,19.294232646340008 + 04/30 15:50:00,12.8,12.8,19.333699238333226 + 04/30 16:00:00,12.8,12.8,19.367439521532725 + 04/30 16:10:00,12.8,12.8,19.396201366360914 + 04/30 16:20:00,12.8,12.8,19.431937879643234 + 04/30 16:30:00,12.8,12.8,19.45649695865385 + 04/30 16:40:00,12.8,12.8,19.479475686980753 + 04/30 16:50:00,12.8,12.8,19.501136553419724 + 04/30 17:00:00,12.8,12.8,19.521770595088733 + 04/30 17:10:00,12.846246246246248,12.846246246246248,19.54120816873361 + 04/30 17:20:00,12.892492492492494,12.892492492492494,19.576047093732009 + 04/30 17:30:00,12.938738738738739,12.938738738738739,19.592770356304159 + 04/30 17:40:00,12.984984984984987,12.984984984984987,19.608343288447779 + 04/30 17:50:00,13.031231231231232,13.031231231231232,19.622651165225116 + 04/30 18:00:00,13.077477477477478,13.077477477477478,19.63571424354438 + 04/30 18:10:00,13.123723723723725,13.123723723723725,19.64787805058172 + 04/30 18:20:00,13.169969969969971,13.169969969969971,19.66001168712267 + 04/30 18:30:00,13.216216216216218,13.216216216216218,19.671386209131837 + 04/30 18:40:00,13.262462462462464,13.262462462462464,19.682262478416044 + 04/30 18:50:00,13.30870870870871,13.30870870870871,19.69263694095298 + 04/30 19:00:00,13.354954954954956,13.354954954954956,19.702601370222479 + 04/30 19:10:00,13.401201201201202,13.401201201201202,19.712677405212806 + 04/30 19:20:00,13.447447447447449,13.447447447447449,19.723289862141514 + 04/30 19:30:00,13.493693693693695,13.493693693693695,19.733602774219905 + 04/30 19:40:00,13.539939939939942,13.539939939939942,19.743675413869643 + 04/30 19:50:00,13.586186186186187,13.586186186186187,19.753315726031098 + 04/30 20:00:00,13.632432432432433,13.632432432432433,19.762516116464526 + 04/30 20:10:00,13.657657657657659,13.657657657657659,19.748553129957583 + 04/30 20:20:00,13.682882882882883,13.682882882882883,19.755839759178689 + 04/30 20:30:00,13.708108108108109,13.708108108108109,19.762773857374837 + 04/30 20:40:00,13.733333333333335,13.733333333333335,19.769330388234 + 04/30 20:50:00,13.758558558558559,13.758558558558559,19.77563528825178 + 04/30 21:00:00,13.783783783783785,13.783783783783785,19.781686295888677 + 04/30 21:10:00,13.792192192192193,13.792192192192193,19.787555570690175 + 04/30 21:20:00,13.800600600600602,13.800600600600602,19.79302441779306 + 04/30 21:30:00,13.80900900900901,13.80900900900901,19.79837234794905 + 04/30 21:40:00,13.817417417417419,13.817417417417419,19.803505180762163 + 04/30 21:50:00,13.825825825825826,13.825825825825826,19.808456029730558 + 04/30 22:00:00,13.834234234234235,13.834234234234235,19.813240191220499 + 04/30 22:10:00,13.83843843843844,13.83843843843844,19.817798259818983 + 04/30 22:20:00,13.842642642642643,13.842642642642643,19.822322142496814 + 04/30 22:30:00,13.846846846846848,13.846846846846848,19.82671128859885 + 04/30 22:40:00,13.851051051051052,13.851051051051052,19.830963685722936 + 04/30 22:50:00,13.855255255255257,13.855255255255257,19.83507093258379 + 04/30 23:00:00,13.85945945945946,13.85945945945946,19.838954251621148 + 04/30 23:10:00,13.867867867867869,13.867867867867869,19.842765694956396 + 04/30 23:20:00,13.876276276276276,13.876276276276276,19.84641720627316 + 04/30 23:30:00,13.884684684684686,13.884684684684686,19.850028518133688 + 04/30 23:40:00,13.893093093093095,13.893093093093095,19.853510126732315 + 04/30 23:50:00,13.901501501501503,13.901501501501503,19.856899827705285 + 04/30 24:00:00,13.90990990990991,13.90990990990991,19.860191465743683 + 05/01 00:10:00,13.914114114114116,13.914114114114116,19.863487672877878 + 05/01 00:20:00,13.918318318318319,13.918318318318319,19.86668999647554 + 05/01 00:30:00,13.922522522522524,13.922522522522524,19.86977775494155 + 05/01 00:40:00,13.926726726726728,13.926726726726728,19.872774850877894 + 05/01 00:50:00,13.93093093093093,13.93093093093093,19.87558509778074 + 05/01 01:00:00,13.935135135135136,13.935135135135136,19.878406805359956 + 05/01 01:10:00,13.943543543543543,13.943543543543543,19.88117775386925 + 05/01 01:20:00,13.951951951951952,13.951951951951952,19.88384486507612 + 05/01 01:30:00,13.960360360360362,13.960360360360362,19.886476181191598 + 05/01 01:40:00,13.96876876876877,13.96876876876877,19.888974995437807 + 05/01 01:50:00,13.977177177177178,13.977177177177178,19.891513781679387 + 05/01 02:00:00,13.985585585585586,13.985585585585586,19.894038188632224 + 05/01 02:10:00,13.989789789789791,13.989789789789791,19.89654213756101 + 05/01 02:20:00,13.993993993993995,13.993993993993995,19.899046980763779 + 05/01 02:30:00,13.998198198198198,13.998198198198198,19.901428494189064 + 05/01 02:40:00,14.002402402402403,14.002402402402403,19.90378275350362 + 05/01 02:50:00,14.006606606606607,14.006606606606607,19.90611503563753 + 05/01 03:00:00,14.010810810810812,14.010810810810812,19.90838813504025 + 05/01 03:10:00,14.01921921921922,14.01921921921922,19.910595005353 + 05/01 03:20:00,14.027627627627627,14.027627627627627,19.912654992081884 + 05/01 03:30:00,14.036036036036036,14.036036036036036,19.914664424262207 + 05/01 03:40:00,14.044444444444445,14.044444444444445,19.916699327029659 + 05/01 03:50:00,14.052852852852853,14.052852852852853,19.91871652822642 + 05/01 04:00:00,14.061261261261262,14.061261261261262,19.92071504850966 + 05/01 04:10:00,14.061261261261262,14.061261261261262,19.92302567026153 + 05/01 04:20:00,14.061261261261262,14.061261261261262,19.925339257725505 + 05/01 04:30:00,14.061261261261262,14.061261261261262,19.927686986400006 + 05/01 04:40:00,14.061261261261262,14.061261261261262,19.930009143220194 + 05/01 04:50:00,14.061261261261262,14.061261261261262,19.932273505073753 + 05/01 05:00:00,14.061261261261262,14.061261261261262,19.934482932889705 + 05/01 05:10:00,14.061261261261262,14.061261261261262,19.93619404731308 + 05/01 05:20:00,14.061261261261262,14.061261261261262,19.93795893691211 + 05/01 05:30:00,14.061261261261262,14.061261261261262,19.93969417152266 + 05/01 05:40:00,14.061261261261262,14.061261261261262,19.941396842624074 + 05/01 05:50:00,14.061261261261262,14.061261261261262,19.94306643583859 + 05/01 06:00:00,14.061261261261262,14.061261261261262,19.944357736052763 + 05/01 06:10:00,14.107507507507508,14.107507507507508,17.954858326259428 + 05/01 06:20:00,14.153753753753755,14.153753753753755,17.718472364302714 + 05/01 06:30:00,14.2,14.2,17.628473948975786 + 05/01 06:40:00,14.246246246246246,14.246246246246246,17.557262709523437 + 05/01 06:50:00,14.292492492492493,14.292492492492493,17.50029042705601 + 05/01 07:00:00,14.338738738738739,14.338738738738739,17.45261351535034 + 05/01 07:10:00,14.292492492492493,14.292492492492493,15.976366822554008 + 05/01 07:20:00,14.246246246246246,14.246246246246246,15.752286374150432 + 05/01 07:30:00,14.2,14.2,15.645979406915267 + 05/01 07:40:00,14.153753753753755,14.153753753753755,15.558555227465414 + 05/01 07:50:00,14.107507507507508,14.107507507507508,15.48550715213084 + 05/01 08:00:00,14.061261261261262,14.061261261261262,15.421983337267966 + 05/01 08:05:00,14.036036036036036,14.036036036036036,15.339279954194336 + 05/01 08:10:00,14.036036036036036,14.036036036036036,15.33927965242899 + 05/01 08:20:00,14.01081081081081,14.01081081081081,15.279133075209299 + 05/01 08:30:00,13.985585585585586,13.985585585585586,15.231229371108004 + 05/01 08:40:00,13.960360360360362,13.960360360360362,15.187109999015004 + 05/01 08:50:00,13.935135135135136,13.935135135135136,15.146130599520344 + 05/01 09:00:00,13.90990990990991,13.90990990990991,15.108009180624324 + 05/01 09:10:00,13.90990990990991,13.90990990990991,15.072422576724069 + 05/01 09:20:00,13.90990990990991,13.90990990990991,15.028514497183333 + 05/01 09:30:00,13.90990990990991,13.90990990990991,14.996899051474517 + 05/01 09:40:00,13.90990990990991,13.90990990990991,14.967180515657195 + 05/01 09:50:00,13.90990990990991,13.90990990990991,14.93913416104614 + 05/01 10:00:00,13.90990990990991,13.90990990990991,14.912718044311968 + 05/01 10:10:00,13.863663663663666,13.863663663663666,14.888602060395036 + 05/01 10:20:00,13.817417417417417,13.817417417417417,14.862242991342323 + 05/01 10:30:00,13.771171171171173,13.771171171171173,14.840438815249794 + 05/01 10:40:00,13.724924924924926,13.724924924924926,14.819519234839584 + 05/01 10:50:00,13.67867867867868,13.67867867867868,14.799160247344796 + 05/01 11:00:00,13.632432432432433,13.632432432432433,14.779264561004988 + 05/01 11:10:00,13.586186186186187,13.586186186186187,14.75866554404161 + 05/01 11:20:00,13.539939939939942,13.539939939939942,14.747981933814803 + 05/01 11:30:00,13.493693693693695,13.493693693693695,14.727998434679423 + 05/01 11:40:00,13.447447447447449,13.447447447447449,14.708338848937922 + 05/01 11:50:00,13.401201201201202,13.401201201201202,14.689633434454742 + 05/01 12:00:00,13.354954954954956,13.354954954954956,14.671853873469436 + 05/01 12:10:00,13.30870870870871,13.30870870870871,14.654969932458619 + 05/01 12:20:00,13.262462462462464,13.262462462462464,14.62926360044138 + 05/01 12:30:00,13.216216216216218,13.216216216216218,14.61381548248189 + 05/01 12:40:00,13.169969969969971,13.169969969969971,14.600117472633239 + 05/01 12:50:00,13.123723723723725,13.123723723723725,14.58453203392274 + 05/01 13:00:00,13.077477477477478,13.077477477477478,14.564679190021574 + 05/01 13:10:00,12.984984984984987,12.984984984984987,14.546527643144679 + 05/01 13:15:00,12.892492492492494,12.892492492492494,14.530387870913457 + 05/01 13:20:00,12.892492492492494,12.892492492492494,14.529864453747722 + 05/01 13:30:00,12.8,12.8,14.508325148537159 + 05/01 13:35:00,12.8,12.8,14.492503492551304 + 05/01 13:40:00,12.8,12.8,14.488845970137822 + 05/01 13:50:00,12.8,12.8,14.468140297269552 + 05/01 13:55:00,12.8,12.8,14.456273867640498 + 05/01 14:00:00,12.8,12.8,14.452178136590293 + 05/01 14:10:00,12.8,12.8,14.439139088516493 + 05/01 14:20:00,12.8,12.8,14.428366933434104 + 05/01 14:30:00,12.8,12.8,14.417023739153687 + 05/01 14:40:00,12.8,12.8,14.408157434391987 + 05/01 14:50:00,12.8,12.8,14.398000031742587 + 05/01 15:00:00,12.8,12.8,14.391095034843382 + 05/01 15:05:00,12.8,12.8,16.537228107502377 + 05/01 15:10:00,12.8,12.8,16.534686481186438 + 05/01 15:20:00,12.8,12.8,16.781260787527484 + 05/01 15:30:00,12.8,12.8,16.878346126696746 + 05/01 15:40:00,12.8,12.8,16.951269191480557 + 05/01 15:50:00,12.8,12.8,17.007851597034695 + 05/01 16:00:00,12.8,12.8,17.052671962286003 + 05/01 16:10:00,12.8,12.8,17.112943903672197 + 05/01 16:20:00,12.8,12.8,17.166524583125978 + 05/01 16:30:00,12.8,12.8,17.19199250152722 + 05/01 16:40:00,12.8,12.8,17.21532180870773 + 05/01 16:50:00,12.8,12.8,17.236739423059917 + 05/01 17:00:00,12.8,12.8,17.25769216287595 + 05/01 17:10:00,12.8,12.8,17.291715744688206 + 05/01 17:20:00,12.8,12.8,17.319604453420199 + 05/01 17:30:00,12.8,12.8,17.34105930114191 + 05/01 17:40:00,12.8,12.8,17.361966291215095 + 05/01 17:50:00,12.8,12.8,17.381905980661178 + 05/01 18:00:00,12.8,12.8,17.400987592747087 + 05/01 18:10:00,12.8,12.8,17.41918883590208 + 05/01 18:20:00,12.8,12.8,17.43681628704036 + 05/01 18:30:00,12.8,12.8,17.4536891613968 + 05/01 18:40:00,12.8,12.8,17.46984411723432 + 05/01 18:50:00,12.8,12.8,17.485139520311717 + 05/01 19:00:00,12.8,12.8,17.49964813454109 + 05/01 19:10:00,12.8,12.8,17.526720329366826 + 05/01 19:20:00,12.842042042042042,12.842042042042042,17.541896795683923 + 05/01 19:30:00,12.93873873873874,12.93873873873874,17.556720049490605 + 05/01 19:40:00,13.035435435435437,13.035435435435437,17.571203853245629 + 05/01 19:50:00,13.132132132132134,13.132132132132134,17.5849775904706 + 05/01 20:00:00,13.22882882882883,13.22882882882883,17.598047556023503 + 05/01 20:10:00,13.275075075075077,13.275075075075077,17.588095290396895 + 05/01 20:20:00,13.321321321321323,13.321321321321323,17.604701166669046 + 05/01 20:30:00,13.367567567567568,13.367567567567568,17.61615137221616 + 05/01 20:40:00,13.413813813813816,13.413813813813816,17.625858496842999 + 05/01 20:50:00,13.46006006006006,13.46006006006006,17.63566881215494 + 05/01 21:00:00,13.506306306306307,13.506306306306307,17.644859672107264 + 05/01 21:10:00,13.527327327327328,13.527327327327328,17.653788402257957 + 05/01 21:20:00,13.548348348348349,13.548348348348349,17.662249700161945 + 05/01 21:30:00,13.56936936936937,13.56936936936937,17.670389799832266 + 05/01 21:40:00,13.590390390390392,13.590390390390392,17.67821725651693 + 05/01 21:50:00,13.611411411411412,13.611411411411412,17.68573506016331 + 05/01 22:00:00,13.632432432432433,13.632432432432433,17.693095168819377 + 05/01 22:10:00,13.657657657657659,13.657657657657659,19.055412235231253 + 05/01 22:20:00,13.682882882882883,13.682882882882883,19.20240825344781 + 05/01 22:30:00,13.708108108108109,13.708108108108109,19.26614499234592 + 05/01 22:40:00,13.733333333333335,13.733333333333335,19.31681526143488 + 05/01 22:50:00,13.758558558558559,13.758558558558559,19.357133774456103 + 05/01 23:00:00,13.783783783783785,13.783783783783785,19.39083926812111 + 05/01 23:10:00,13.804804804804805,13.804804804804805,19.419507702983496 + 05/01 23:20:00,13.825825825825828,13.825825825825828,19.444643997119518 + 05/01 23:30:00,13.846846846846848,13.846846846846848,19.467034066791624 + 05/01 23:40:00,13.867867867867869,13.867867867867869,19.487385892975987 + 05/01 23:50:00,13.88888888888889,13.88888888888889,19.505887703260418 + 05/01 24:00:00,13.90990990990991,13.90990990990991,19.523183713980005 + 05/02 00:10:00,13.90990990990991,13.90990990990991,19.539508865715975 + 05/02 00:20:00,13.90990990990991,13.90990990990991,19.55470507830248 + 05/02 00:30:00,13.90990990990991,13.90990990990991,19.56895539309863 + 05/02 00:40:00,13.90990990990991,13.90990990990991,19.58236976137765 + 05/02 00:50:00,13.90990990990991,13.90990990990991,19.59499914828745 + 05/02 01:00:00,13.90990990990991,13.90990990990991,19.606926554014526 + 05/02 01:10:00,13.90990990990991,13.90990990990991,19.61786138336724 + 05/02 01:20:00,13.90990990990991,13.90990990990991,19.62830215764476 + 05/02 01:30:00,13.90990990990991,13.90990990990991,19.638412258951946 + 05/02 01:40:00,13.90990990990991,13.90990990990991,19.64817013396414 + 05/02 01:50:00,13.90990990990991,13.90990990990991,19.657599750325955 + 05/02 02:00:00,13.90990990990991,13.90990990990991,19.666708386798555 + 05/02 02:10:00,13.90990990990991,13.90990990990991,19.675448185738199 + 05/02 02:20:00,13.90990990990991,13.90990990990991,19.683988215779715 + 05/02 02:30:00,13.90990990990991,13.90990990990991,19.692262385457103 + 05/02 02:40:00,13.90990990990991,13.90990990990991,19.70028048799793 + 05/02 02:50:00,13.90990990990991,13.90990990990991,19.70805623099966 + 05/02 03:00:00,13.90990990990991,13.90990990990991,19.71550805939208 + 05/02 03:10:00,13.956156156156157,13.956156156156157,19.723119382114495 + 05/02 03:20:00,14.002402402402403,14.002402402402403,19.729803216793113 + 05/02 03:30:00,14.04864864864865,14.04864864864865,19.736439642141627 + 05/02 03:40:00,14.094894894894896,14.094894894894896,19.742831088154106 + 05/02 03:50:00,14.14114114114114,14.14114114114114,19.749126874291446 + 05/02 04:00:00,14.187387387387388,14.187387387387388,19.755415427278686 + 05/02 04:10:00,14.187387387387388,14.187387387387388,19.76077885079812 + 05/02 04:20:00,14.187387387387388,14.187387387387388,19.766629476357914 + 05/02 04:30:00,14.187387387387388,14.187387387387388,19.772320567796368 + 05/02 04:40:00,14.187387387387389,14.187387387387389,19.77794667494401 + 05/02 04:50:00,14.187387387387388,14.187387387387388,19.783364557071534 + 05/02 05:00:00,14.187387387387388,14.187387387387388,19.78864786775064 + 05/02 05:10:00,14.166366366366367,14.166366366366367,19.79424825768384 + 05/02 05:20:00,14.145345345345346,14.145345345345346,19.799926913313905 + 05/02 05:30:00,14.124324324324324,14.124324324324324,19.80538438984532 + 05/02 05:40:00,14.103303303303303,14.103303303303303,19.810629071021589 + 05/02 05:50:00,14.082282282282283,14.082282282282283,19.81578631273559 + 05/02 06:00:00,14.061261261261262,14.061261261261262,19.8205263328508 + 05/02 06:10:00,14.107507507507508,14.107507507507508,17.83143381580061 + 05/02 06:20:00,14.153753753753755,14.153753753753755,17.598644060532818 + 05/02 06:30:00,14.2,14.2,17.512865264052576 + 05/02 06:40:00,14.246246246246246,14.246246246246246,17.445958039785447 + 05/02 06:50:00,14.292492492492493,14.292492492492493,17.39361636203121 + 05/02 07:00:00,14.338738738738739,14.338738738738739,17.350590134837068 + 05/02 07:05:00,14.246246246246246,14.246246246246246,15.868945622794787 + 05/02 07:10:00,14.246246246246246,14.246246246246246,15.871437850548679 + 05/02 07:15:00,14.153753753753755,14.153753753753755,15.649001813318807 + 05/02 07:20:00,14.153753753753755,14.153753753753755,15.648438193217097 + 05/02 07:30:00,14.061261261261262,14.061261261261262,15.545439142312896 + 05/02 07:40:00,13.96876876876877,13.96876876876877,15.460962771865866 + 05/02 07:50:00,13.876276276276278,13.876276276276278,15.389444909440174 + 05/02 08:00:00,13.783783783783785,13.783783783783785,15.326987272347973 + 05/02 08:05:00,13.737537537537538,13.737537537537538,15.245727405242626 + 05/02 08:10:00,13.737537537537538,13.737537537537538,15.245813856166361 + 05/02 08:20:00,13.691291291291293,13.691291291291293,15.186822456361203 + 05/02 08:30:00,13.645045045045047,13.645045045045047,15.139997017331693 + 05/02 08:40:00,13.5987987987988,13.5987987987988,15.096792741792985 + 05/02 08:50:00,13.552552552552554,13.552552552552554,15.05657270280936 + 05/02 09:00:00,13.506306306306307,13.506306306306307,15.019084687691294 + 05/02 09:10:00,13.434834834834835,13.434834834834835,14.9836626134085 + 05/02 09:20:00,13.363363363363364,13.363363363363364,14.939356600346367 + 05/02 09:30:00,13.291891891891894,13.291891891891894,14.90676211198198 + 05/02 09:40:00,13.220420420420421,13.220420420420421,14.8752635996768 + 05/02 09:50:00,13.148948948948949,13.148948948948949,14.844244272007705 + 05/02 10:00:00,13.077477477477478,13.077477477477478,14.813538183669028 + 05/02 10:05:00,13.006006006006008,13.006006006006008,14.78582757030165 + 05/02 10:10:00,13.006006006006008,13.006006006006008,14.78303908406411 + 05/02 10:20:00,12.934534534534535,12.934534534534535,14.7496187008803 + 05/02 10:30:00,12.863063063063063,12.863063063063063,14.720839629263253 + 05/02 10:40:00,12.8,12.8,14.691926372429739 + 05/02 10:50:00,12.8,12.8,14.664446074882842 + 05/02 11:00:00,12.8,12.8,14.638189233370872 + 05/02 11:10:00,12.8,12.8,14.612990681329192 + 05/02 11:20:00,12.8,12.8,14.598233580390108 + 05/02 11:30:00,12.8,12.8,14.574563794485668 + 05/02 11:40:00,12.8,12.8,14.551778255906365 + 05/02 11:50:00,12.8,12.8,14.5312995093553 + 05/02 12:00:00,12.8,12.8,14.513106497401357 + 05/02 12:10:00,12.8,12.8,14.496677765330553 + 05/02 12:20:00,12.8,12.8,14.469922916066493 + 05/02 12:30:00,12.8,12.8,14.455683259594352 + 05/02 12:40:00,12.8,12.8,14.443242646668196 + 05/02 12:50:00,12.8,12.8,14.429450545950348 + 05/02 13:00:00,12.8,12.8,14.419492214444949 + 05/02 13:10:00,12.8,12.8,14.408743282576732 + 05/02 13:20:00,12.8,12.8,14.403064299159516 + 05/02 13:30:00,12.8,12.8,14.396565665684728 + 05/02 13:40:00,12.8,12.8,14.387933709076132 + 05/02 13:50:00,12.8,12.8,14.381970140746099 + 05/02 14:00:00,12.8,12.8,14.377142370808235 + 05/02 14:10:00,12.8,12.8,14.368832945129311 + 05/02 14:20:00,12.8,12.8,14.366802192795042 + 05/02 14:30:00,12.8,12.8,14.361543850334487 + 05/02 14:40:00,12.8,12.8,14.353151169993926 + 05/02 14:50:00,12.8,12.8,14.348092374711757 + 05/02 15:00:00,12.8,12.8,14.344239028950535 + 05/02 15:05:00,12.8,12.8,16.490291131109389 + 05/02 15:10:00,12.8,12.8,16.487863637649349 + 05/02 15:20:00,12.8,12.8,16.73903752110488 + 05/02 15:30:00,12.8,12.8,16.839345830445603 + 05/02 15:40:00,12.8,12.8,16.915919021738476 + 05/02 15:50:00,12.8,12.8,16.975185133812226 + 05/02 16:00:00,12.8,12.8,17.024295522497547 + 05/02 16:10:00,12.8,12.8,17.093583073408149 + 05/02 16:20:00,12.8,12.8,17.150888634831828 + 05/02 16:30:00,12.8,12.8,17.1838855257245 + 05/02 16:40:00,12.8,12.8,17.21270688167926 + 05/02 16:50:00,12.8,12.8,17.23818230189331 + 05/02 17:00:00,12.8,12.8,17.260438500903484 + 05/02 17:10:00,12.8,12.8,17.292664143704188 + 05/02 17:20:00,12.8,12.8,17.317903319269058 + 05/02 17:30:00,12.8,12.8,17.33661334324549 + 05/02 17:40:00,12.8,12.8,17.35511196533536 + 05/02 17:50:00,12.8,12.8,17.373077893662889 + 05/02 18:00:00,12.8,12.8,17.390604136141496 + 05/02 18:10:00,12.8,12.8,17.40788899613566 + 05/02 18:20:00,12.8,12.8,17.425248020728608 + 05/02 18:30:00,12.8,12.8,17.442135161652567 + 05/02 18:40:00,12.8,12.8,17.458702983805318 + 05/02 18:50:00,12.8,12.8,17.474736187792144 + 05/02 19:00:00,12.8,12.8,17.490210754104007 + 05/02 19:10:00,12.8,12.8,17.516967527589864 + 05/02 19:20:00,12.8,12.8,17.53237239641868 + 05/02 19:30:00,12.8,12.8,17.54571805587887 + 05/02 19:40:00,12.8,12.8,17.558608789116094 + 05/02 19:50:00,12.8,12.8,17.57036964993825 + 05/02 20:00:00,12.8,12.8,17.581121490510357 + 05/02 20:10:00,12.846246246246248,12.846246246246248,17.568660842121106 + 05/02 20:20:00,12.892492492492494,12.892492492492494,17.58239574633899 + 05/02 20:30:00,12.938738738738739,12.938738738738739,17.591144056410337 + 05/02 20:40:00,12.984984984984987,12.984984984984987,17.59941354565005 + 05/02 20:50:00,13.031231231231232,13.031231231231232,17.60720743072946 + 05/02 21:00:00,13.077477477477478,13.077477477477478,17.614604085844208 + 05/02 21:10:00,13.123723723723725,13.123723723723725,17.621704534936833 + 05/02 21:20:00,13.169969969969971,13.169969969969971,17.62954336355478 + 05/02 21:30:00,13.216216216216218,13.216216216216218,17.63695874464715 + 05/02 21:40:00,13.262462462462464,13.262462462462464,17.642896292191514 + 05/02 21:50:00,13.30870870870871,13.30870870870871,17.648967174885045 + 05/02 22:00:00,13.354954954954956,13.354954954954956,17.65454803547964 + 05/02 22:10:00,13.354954954954956,13.354954954954956,19.015841054590508 + 05/02 22:20:00,13.354954954954956,13.354954954954956,19.162315308400886 + 05/02 22:30:00,13.354954954954956,13.354954954954956,19.22509931907551 + 05/02 22:40:00,13.354954954954956,13.354954954954956,19.275271866985365 + 05/02 22:50:00,13.354954954954956,13.354954954954956,19.31520095344624 + 05/02 23:00:00,13.354954954954956,13.354954954954956,19.34879043776261 + 05/02 23:10:00,13.354954954954956,13.354954954954956,19.37749200013471 + 05/02 23:20:00,13.354954954954956,13.354954954954956,19.402660989433437 + 05/02 23:30:00,13.354954954954956,13.354954954954956,19.42529180441062 + 05/02 23:40:00,13.354954954954956,13.354954954954956,19.445870903365106 + 05/02 23:50:00,13.354954954954956,13.354954954954956,19.46471819134338 + 05/02 24:00:00,13.354954954954956,13.354954954954956,19.48203062793195 + 05/03 00:10:00,13.354954954954956,13.354954954954956,19.49865939432732 + 05/03 00:20:00,13.354954954954956,13.354954954954956,19.514218657350523 + 05/03 00:30:00,13.354954954954956,13.354954954954956,19.528843572908749 + 05/03 00:40:00,13.354954954954956,13.354954954954956,19.542646558058807 + 05/03 00:50:00,13.354954954954956,13.354954954954956,19.55563564430196 + 05/03 01:00:00,13.354954954954956,13.354954954954956,19.568043232409229 + 05/03 01:10:00,13.380180180180182,13.380180180180182,19.579719967420009 + 05/03 01:20:00,13.405405405405407,13.405405405405407,19.59042199619843 + 05/03 01:30:00,13.430630630630632,13.430630630630632,19.60094007353555 + 05/03 01:40:00,13.455855855855857,13.455855855855857,19.61109222830275 + 05/03 01:50:00,13.481081081081081,13.481081081081081,19.621109406910056 + 05/03 02:00:00,13.506306306306307,13.506306306306307,19.630990840418869 + 05/03 02:10:00,13.552552552552554,13.552552552552554,19.641083346060815 + 05/03 02:20:00,13.5987987987988,13.5987987987988,19.650868168351246 + 05/03 02:30:00,13.645045045045047,13.645045045045047,19.660433628002957 + 05/03 02:40:00,13.691291291291293,13.691291291291293,19.669708231931126 + 05/03 02:50:00,13.737537537537538,13.737537537537538,19.678744586444304 + 05/03 03:00:00,13.783783783783785,13.783783783783785,19.687535151334218 + 05/03 03:10:00,13.83003003003003,13.83003003003003,19.69550259817913 + 05/03 03:20:00,13.876276276276276,13.876276276276276,19.703850258345264 + 05/03 03:30:00,13.922522522522524,13.922522522522524,19.711970273055269 + 05/03 03:40:00,13.968768768768769,13.968768768768769,19.72017677340624 + 05/03 03:50:00,14.015015015015015,14.015015015015015,19.728245807185535 + 05/03 04:00:00,14.061261261261262,14.061261261261262,19.73617481450181 + 05/03 04:10:00,14.061261261261262,14.061261261261262,19.744345126426308 + 05/03 04:20:00,14.061261261261262,14.061261261261262,19.75215703938015 + 05/03 04:30:00,14.061261261261262,14.061261261261262,19.759791838470169 + 05/03 04:40:00,14.061261261261262,14.061261261261262,19.767166639603649 + 05/03 04:50:00,14.061261261261262,14.061261261261262,19.77429749266111 + 05/03 05:00:00,14.061261261261262,14.061261261261262,19.781202805983374 + 05/03 05:10:00,14.061261261261262,14.061261261261262,19.787720714239595 + 05/03 05:20:00,14.061261261261262,14.061261261261262,19.79377699719077 + 05/03 05:30:00,14.061261261261262,14.061261261261262,19.799306586257999 + 05/03 05:40:00,14.061261261261262,14.061261261261262,19.804245226419 + 05/03 05:50:00,14.061261261261262,14.061261261261262,19.808699979574077 + 05/03 06:00:00,14.061261261261262,14.061261261261262,19.812332429642504 + 05/03 06:10:00,14.061261261261262,14.061261261261262,17.819173231031337 + 05/03 06:20:00,14.061261261261262,14.061261261261262,17.584740252887067 + 05/03 06:30:00,14.061261261261262,14.061261261261262,17.49759170835666 + 05/03 06:40:00,14.061261261261262,14.061261261261262,17.429711785243329 + 05/03 06:50:00,14.061261261261262,14.061261261261262,17.375756093898553 + 05/03 07:00:00,14.061261261261262,14.061261261261262,17.330665192623394 + 05/03 07:05:00,14.036036036036036,14.036036036036036,15.843827855145019 + 05/03 07:10:00,14.036036036036036,14.036036036036036,15.848880256501677 + 05/03 07:15:00,14.01081081081081,14.01081081081081,15.62195497217597 + 05/03 07:20:00,14.01081081081081,14.01081081081081,15.620725095088213 + 05/03 07:30:00,13.985585585585586,13.985585585585586,15.516149129409069 + 05/03 07:40:00,13.960360360360362,13.960360360360362,15.430629538099469 + 05/03 07:50:00,13.935135135135136,13.935135135135136,15.356968448747575 + 05/03 08:00:00,13.90990990990991,13.90990990990991,15.292133936474493 + 05/03 08:05:00,13.796396396396398,13.796396396396398,15.205950464252549 + 05/03 08:10:00,13.796396396396398,13.796396396396398,15.206117277768423 + 05/03 08:20:00,13.682882882882883,13.682882882882883,15.141271467308267 + 05/03 08:30:00,13.56936936936937,13.56936936936937,15.087257638643582 + 05/03 08:40:00,13.455855855855857,13.455855855855857,15.03657542726913 + 05/03 08:50:00,13.342342342342344,13.342342342342344,14.99035453308458 + 05/03 09:00:00,13.22882882882883,13.22882882882883,14.948924448598883 + 05/03 09:10:00,13.132132132132134,13.132132132132134,14.913075602790844 + 05/03 09:20:00,13.035435435435437,13.035435435435437,14.871870760892222 + 05/03 09:30:00,12.93873873873874,12.93873873873874,14.845734907270778 + 05/03 09:35:00,12.842042042042044,12.842042042042044,14.823954584406203 + 05/03 09:40:00,12.842042042042044,12.842042042042044,14.822857334736933 + 05/03 09:50:00,12.8,12.8,14.799036760417119 + 05/03 10:00:00,12.8,12.8,14.774710911489926 + 05/03 10:10:00,12.8,12.8,14.748201380910082 + 05/03 10:20:00,12.8,12.8,14.717106639630267 + 05/03 10:30:00,12.8,12.8,14.688506434998394 + 05/03 10:40:00,12.8,12.8,14.659870662503339 + 05/03 10:50:00,12.8,12.8,14.63241034078958 + 05/03 11:00:00,12.8,12.8,14.606660531705725 + 05/03 11:10:00,12.8,12.8,14.582841894026969 + 05/03 11:20:00,12.8,12.8,14.570223135516987 + 05/03 11:30:00,12.8,12.8,14.549470806283452 + 05/03 11:40:00,12.8,12.8,14.52988366383416 + 05/03 11:50:00,12.8,12.8,14.512567105040759 + 05/03 12:00:00,12.8,12.8,14.496608536445816 + 05/03 12:10:00,12.8,12.8,14.481604083077869 + 05/03 12:20:00,12.8,12.8,14.455334300552904 + 05/03 12:30:00,12.8,12.8,14.442365427999599 + 05/03 12:40:00,12.8,12.8,14.428760134089716 + 05/03 12:50:00,12.8,12.8,14.414135377786686 + 05/03 13:00:00,12.8,12.8,14.401322603636484 + 05/03 13:10:00,12.8,12.8,14.385563694025303 + 05/03 13:20:00,12.8,12.8,14.376160969847595 + 05/03 13:30:00,12.8,12.8,14.364782376594706 + 05/03 13:40:00,12.8,12.8,14.351088862151109 + 05/03 13:50:00,12.8,12.8,14.341051562964916 + 05/03 14:00:00,12.8,12.8,14.331114091407227 + 05/03 14:10:00,12.8,12.8,14.317996582829137 + 05/03 14:20:00,12.8,12.8,14.31023753835095 + 05/03 14:30:00,12.8,12.8,14.298042991259406 + 05/03 14:40:00,12.8,12.8,14.28404363233564 + 05/03 14:50:00,12.8,12.8,14.274028935317335 + 05/03 15:00:00,12.8,12.8,14.265881701315749 + 05/03 15:05:00,12.8,12.8,16.412876924463654 + 05/03 15:10:00,12.8,12.8,16.40931586140316 + 05/03 15:15:00,12.8,12.8,16.666174163807903 + 05/03 15:20:00,12.8,12.8,16.664188519090808 + 05/03 15:30:00,12.8,12.8,16.764477108533727 + 05/03 15:40:00,12.8,12.8,16.840163502664855 + 05/03 15:50:00,12.8,12.8,16.898853154542406 + 05/03 16:00:00,12.8,12.8,16.949300884540798 + 05/03 16:10:00,12.8,12.8,17.01872469289104 + 05/03 16:20:00,12.8,12.8,17.07693825398765 + 05/03 16:30:00,12.8,12.8,17.111505727071614 + 05/03 16:40:00,12.8,12.8,17.14246764442604 + 05/03 16:50:00,12.8,12.8,17.170263673812238 + 05/03 17:00:00,12.8,12.8,17.195254886646447 + 05/03 17:10:00,12.8,12.8,17.226423557662437 + 05/03 17:20:00,12.8,12.8,17.255915701465058 + 05/03 17:30:00,12.8,12.8,17.274626294811428 + 05/03 17:40:00,12.8,12.8,17.294628374826734 + 05/03 17:50:00,12.8,12.8,17.313875319830268 + 05/03 18:00:00,12.8,12.8,17.333315213773678 + 05/03 18:10:00,12.8,12.8,17.353132709424 + 05/03 18:20:00,12.8,12.8,17.371979686206659 + 05/03 18:30:00,12.8,12.8,17.389676020011966 + 05/03 18:40:00,12.8,12.8,17.406625224508504 + 05/03 18:50:00,12.8,12.8,17.422400385125316 + 05/03 19:00:00,12.8,12.8,17.437007880275819 + 05/03 19:10:00,12.821021021021022,12.821021021021022,17.463802574592117 + 05/03 19:20:00,12.842042042042042,12.842042042042042,17.480003747636397 + 05/03 19:30:00,12.863063063063063,12.863063063063063,17.495472056939378 + 05/03 19:40:00,12.884084084084084,12.884084084084084,17.510736819720387 + 05/03 19:50:00,12.905105105105106,12.905105105105106,17.525220192090147 + 05/03 20:00:00,12.926126126126127,12.926126126126127,17.5390284963376 + 05/03 20:10:00,12.951351351351353,12.951351351351353,17.52977029531582 + 05/03 20:20:00,12.976576576576577,12.976576576576577,17.545456293131829 + 05/03 20:30:00,13.001801801801803,13.001801801801803,17.55576549941419 + 05/03 20:40:00,13.027027027027028,13.027027027027028,17.565092109651034 + 05/03 20:50:00,13.052252252252253,13.052252252252253,17.57368621631194 + 05/03 21:00:00,13.077477477477478,13.077477477477478,17.58157588854091 + 05/03 21:10:00,13.052252252252253,13.052252252252253,17.58876299117424 + 05/03 21:20:00,13.027027027027028,13.027027027027028,17.595209825952574 + 05/03 21:30:00,13.001801801801803,13.001801801801803,17.601172630125889 + 05/03 21:40:00,12.976576576576577,12.976576576576577,17.606638382168975 + 05/03 21:50:00,12.951351351351353,12.951351351351353,17.61165168095391 + 05/03 22:00:00,12.926126126126127,12.926126126126127,17.616268066537616 + 05/03 22:10:00,12.951351351351353,12.951351351351353,18.97831762087587 + 05/03 22:20:00,12.976576576576577,12.976576576576577,19.122254872620876 + 05/03 22:30:00,13.001801801801803,13.001801801801803,19.185718395921243 + 05/03 22:40:00,13.027027027027028,13.027027027027028,19.23614144970569 + 05/03 22:50:00,13.052252252252253,13.052252252252253,19.277241473201408 + 05/03 23:00:00,13.077477477477478,13.077477477477478,19.31212562226401 + 05/03 23:10:00,13.102702702702704,13.102702702702704,19.342717900833227 + 05/03 23:20:00,13.127927927927928,13.127927927927928,19.36984220856735 + 05/03 23:30:00,13.153153153153154,13.153153153153154,19.39417699718346 + 05/03 23:40:00,13.17837837837838,13.17837837837838,19.41637264813674 + 05/03 23:50:00,13.203603603603604,13.203603603603604,19.436680864753268 + 05/03 24:00:00,13.22882882882883,13.22882882882883,19.455391162286298 + 05/04 00:10:00,13.296096096096097,13.296096096096097,19.47198705650591 + 05/04 00:20:00,13.363363363363364,13.363363363363364,19.48687320951456 + 05/04 00:30:00,13.430630630630632,13.430630630630632,19.501630446177349 + 05/04 00:40:00,13.497897897897899,13.497897897897899,19.51629778117706 + 05/04 00:50:00,13.565165165165166,13.565165165165166,19.530907539454569 + 05/04 01:00:00,13.632432432432433,13.632432432432433,19.54554436745795 + 05/04 01:10:00,13.703903903903905,13.703903903903905,19.561669981830513 + 05/04 01:20:00,13.775375375375376,13.775375375375376,19.577463978381805 + 05/04 01:30:00,13.846846846846847,13.846846846846847,19.592782467905076 + 05/04 01:40:00,13.918318318318319,13.918318318318319,19.607553877986296 + 05/04 01:50:00,13.989789789789791,13.989789789789791,19.621788221301924 + 05/04 02:00:00,14.061261261261262,14.061261261261262,19.635525881283067 + 05/04 02:10:00,14.082282282282283,14.082282282282283,19.6480480801606 + 05/04 02:20:00,14.103303303303303,14.103303303303303,19.66041310842672 + 05/04 02:30:00,14.124324324324324,14.124324324324324,19.672184201739208 + 05/04 02:40:00,14.145345345345346,14.145345345345346,19.683480201726164 + 05/04 02:50:00,14.166366366366367,14.166366366366367,19.69425974445022 + 05/04 03:00:00,14.187387387387388,14.187387387387388,19.70448257548714 + 05/04 03:10:00,14.212612612612613,14.212612612612613,19.714589938878466 + 05/04 03:20:00,14.237837837837838,14.237837837837838,19.72394996678816 + 05/04 03:30:00,14.263063063063063,14.263063063063063,19.732933533611708 + 05/04 03:40:00,14.288288288288289,14.288288288288289,19.741489973913695 + 05/04 03:50:00,14.313513513513513,14.313513513513513,19.749686550507659 + 05/04 04:00:00,14.338738738738739,14.338738738738739,19.757646714064025 + 05/04 04:10:00,14.363963963963965,14.363963963963965,19.764853139333629 + 05/04 04:20:00,14.389189189189189,14.389189189189189,19.771667753742056 + 05/04 04:30:00,14.414414414414415,14.414414414414415,19.778050627684917 + 05/04 04:40:00,14.439639639639639,14.439639639639639,19.783975028952776 + 05/04 04:50:00,14.464864864864865,14.464864864864865,19.78948461397613 + 05/04 05:00:00,14.49009009009009,14.49009009009009,19.794686735941786 + 05/04 05:10:00,14.464864864864865,14.464864864864865,19.800021845212194 + 05/04 05:20:00,14.439639639639639,14.439639639639639,19.80551963334035 + 05/04 05:30:00,14.414414414414415,14.414414414414415,19.810915544282737 + 05/04 05:40:00,14.389189189189189,14.389189189189189,19.816257590218336 + 05/04 05:50:00,14.363963963963965,14.363963963963965,19.82160792959852 + 05/04 06:00:00,14.338738738738739,14.338738738738739,19.826448147541329 + 05/04 06:10:00,14.338738738738739,14.338738738738739,17.832288385755818 + 05/04 06:20:00,14.338738738738739,14.338738738738739,17.59845538836013 + 05/04 06:30:00,14.338738738738739,14.338738738738739,17.511542756848013 + 05/04 06:40:00,14.338738738738739,14.338738738738739,17.44330163771458 + 05/04 06:50:00,14.338738738738739,14.338738738738739,17.38896426174519 + 05/04 07:00:00,14.338738738738739,14.338738738738739,17.34313476693882 + 05/04 07:05:00,14.267267267267269,14.267267267267269,15.865676020776382 + 05/04 07:10:00,14.267267267267269,14.267267267267269,15.865935634131635 + 05/04 07:15:00,14.195795795795796,14.195795795795796,15.644661812281246 + 05/04 07:20:00,14.195795795795796,14.195795795795796,15.64477658559415 + 05/04 07:30:00,14.124324324324326,14.124324324324326,15.539008378858775 + 05/04 07:40:00,14.052852852852853,14.052852852852853,15.451010554820075 + 05/04 07:50:00,13.981381381381383,13.981381381381383,15.376268635704705 + 05/04 08:00:00,13.90990990990991,13.90990990990991,15.3104338865059 + 05/04 08:03:19,13.771171171171173,13.771171171171173,15.224134881172175 + 05/04 08:06:40,13.771171171171173,13.771171171171173,15.224231297317355 + 05/04 08:10:00,13.771171171171173,13.771171171171173,15.223846398651063 + 05/04 08:20:00,13.632432432432433,13.632432432432433,15.15949637498994 + 05/04 08:30:00,13.493693693693695,13.493693693693695,15.107136613728514 + 05/04 08:40:00,13.354954954954956,13.354954954954956,15.058107314948613 + 05/04 08:50:00,13.216216216216218,13.216216216216218,15.011716404967118 + 05/04 09:00:00,13.077477477477478,13.077477477477478,14.967815878333035 + 05/04 09:10:00,12.95975975975976,12.95975975975976,14.926176997394851 + 05/04 09:20:00,12.842042042042042,12.842042042042042,14.875868446862242 + 05/04 09:25:00,12.8,12.8,14.838341187028214 + 05/04 09:30:00,12.8,12.8,14.838111265714283 + 05/04 09:40:00,12.8,12.8,14.801183540939804 + 05/04 09:45:00,12.8,12.8,14.768672086387033 + 05/04 09:50:00,12.8,12.8,14.76742105890073 + 05/04 10:00:00,12.8,12.8,14.735414890146265 + 05/04 10:10:00,12.8,12.8,14.70658585714097 + 05/04 10:20:00,12.8,12.8,14.675662514679687 + 05/04 10:30:00,12.8,12.8,14.65007105601068 + 05/04 10:40:00,12.8,12.8,14.62560597985233 + 05/04 10:50:00,12.8,12.8,14.601071415579796 + 05/04 11:00:00,12.8,12.8,14.576209918179523 + 05/04 11:10:00,12.8,12.8,14.551217852272698 + 05/04 11:20:00,12.8,12.8,14.536058762272245 + 05/04 11:30:00,12.8,12.8,14.511675132746662 + 05/04 11:40:00,12.8,12.8,14.489046568125478 + 05/04 11:50:00,12.8,12.8,14.471008126169103 + 05/04 12:00:00,12.8,12.8,14.458003293680492 + 05/04 12:10:00,12.8,12.8,14.44906672170436 + 05/04 12:20:00,12.8,12.8,14.431391011494558 + 05/04 12:30:00,12.8,12.8,14.427446169417733 + 05/04 12:40:00,12.8,12.8,14.425233900654908 + 05/04 12:50:00,12.8,12.8,14.419267054021669 + 05/04 13:00:00,12.8,12.8,14.414584335668982 + 05/04 13:10:00,12.8,12.8,14.406964225528885 + 05/04 13:20:00,12.8,12.8,14.401743863123392 + 05/04 13:30:00,12.8,12.8,14.39403815689209 + 05/04 13:40:00,12.8,12.8,14.382893987732445 + 05/04 13:50:00,12.8,12.8,14.3719504466614 + 05/04 14:00:00,12.8,12.8,14.36090198386766 + 05/04 14:10:00,12.8,12.8,14.345354424757084 + 05/04 14:20:00,12.8,12.8,14.33522320882 + 05/04 14:30:00,12.8,12.8,14.322320868393009 + 05/04 14:40:00,12.8,12.8,14.30731869693419 + 05/04 14:50:00,12.8,12.8,14.295579994334718 + 05/04 15:00:00,12.8,12.8,14.286445229023688 + 05/04 15:05:00,12.8,12.8,16.42900144163525 + 05/04 15:10:00,12.8,12.8,16.427142060122827 + 05/04 15:20:00,12.8,12.8,16.67358769426442 + 05/04 15:30:00,12.8,12.8,16.76912435705913 + 05/04 15:40:00,12.8,12.8,16.841561794626189 + 05/04 15:50:00,12.8,12.8,16.898503654197229 + 05/04 16:00:00,12.8,12.8,16.943847795045398 + 05/04 16:10:00,12.8,12.8,17.010754683089034 + 05/04 16:20:00,12.8,12.8,17.06697259066493 + 05/04 16:30:00,12.8,12.8,17.099714891521189 + 05/04 16:40:00,12.8,12.8,17.12923586661781 + 05/04 16:50:00,12.8,12.8,17.15635572376167 + 05/04 17:00:00,12.8,12.8,17.181404644682304 + 05/04 17:10:00,12.8,12.8,17.21764282629408 + 05/04 17:20:00,12.8,12.8,17.24546987205356 + 05/04 17:30:00,12.8,12.8,17.266680974564577 + 05/04 17:40:00,12.8,12.8,17.286894883606054 + 05/04 17:50:00,12.8,12.8,17.306266585879336 + 05/04 18:00:00,12.8,12.8,17.324871799959156 + 05/04 18:10:00,12.8,12.8,17.343428345424714 + 05/04 18:20:00,12.8,12.8,17.361675336075267 + 05/04 18:30:00,12.8,12.8,17.379814342547527 + 05/04 18:40:00,12.8,12.8,17.396304312091304 + 05/04 18:50:00,12.8,12.8,17.413795435685445 + 05/04 19:00:00,12.8,12.8,17.43047389761267 + 05/04 19:10:00,12.8,12.8,17.459874635531589 + 05/04 19:20:00,12.8,12.8,17.47637519387561 + 05/04 19:30:00,12.8,12.8,17.492234819087196 + 05/04 19:40:00,12.8,12.8,17.50732286234324 + 05/04 19:50:00,12.833633633633636,12.833633633633636,17.521479856889408 + 05/04 20:00:00,12.926126126126127,12.926126126126127,17.53465883901394 + 05/04 20:10:00,12.926126126126127,12.926126126126127,17.524304709814606 + 05/04 20:20:00,12.926126126126127,12.926126126126127,17.540331294436525 + 05/04 20:30:00,12.926126126126127,12.926126126126127,17.55107240904405 + 05/04 20:40:00,12.926126126126127,12.926126126126127,17.561024281306108 + 05/04 20:50:00,12.926126126126127,12.926126126126127,17.570326113704323 + 05/04 21:00:00,12.926126126126127,12.926126126126127,17.579059302293787 + 05/04 21:10:00,12.997597597597599,12.997597597597599,17.58757126799911 + 05/04 21:20:00,13.06906906906907,13.06906906906907,17.594029187060504 + 05/04 21:30:00,13.140540540540542,13.140540540540542,17.60030997416314 + 05/04 21:40:00,13.212012012012015,13.212012012012015,17.60614028003318 + 05/04 21:50:00,13.283483483483485,13.283483483483485,17.611811384731163 + 05/04 22:00:00,13.354954954954956,13.354954954954956,17.617271619318154 + 05/04 22:10:00,13.401201201201202,13.401201201201202,18.98409493894668 + 05/04 22:20:00,13.447447447447449,13.447447447447449,19.12959568880749 + 05/04 22:30:00,13.493693693693695,13.493693693693695,19.194442711511856 + 05/04 22:40:00,13.539939939939942,13.539939939939942,19.246281716361865 + 05/04 22:50:00,13.586186186186187,13.586186186186187,19.288530925077397 + 05/04 23:00:00,13.632432432432433,13.632432432432433,19.324411505319213 + 05/04 23:10:00,13.657657657657659,13.657657657657659,19.355802704768334 + 05/04 23:20:00,13.682882882882883,13.682882882882883,19.38419414088932 + 05/04 23:30:00,13.708108108108109,13.708108108108109,19.409763365446929 + 05/04 23:40:00,13.733333333333335,13.733333333333335,19.433134844710499 + 05/04 23:50:00,13.758558558558559,13.758558558558559,19.454609235465037 + 05/04 24:00:00,13.783783783783785,13.783783783783785,19.47441733377023 + 05/05 00:10:00,13.783783783783785,13.783783783783785,19.492595899922994 + 05/05 00:20:00,13.783783783783785,13.783783783783785,19.509291091990034 + 05/05 00:30:00,13.783783783783785,13.783783783783785,19.524991406774264 + 05/05 00:40:00,13.783783783783785,13.783783783783785,19.539713673474667 + 05/05 00:50:00,13.783783783783785,13.783783783783785,19.553471369676019 + 05/05 01:00:00,13.783783783783785,13.783783783783785,19.56677673578811 + 05/05 01:10:00,13.83003003003003,13.83003003003003,19.579643841771369 + 05/05 01:20:00,13.876276276276276,13.876276276276276,19.59217948281411 + 05/05 01:30:00,13.922522522522524,13.922522522522524,19.604389149176315 + 05/05 01:40:00,13.968768768768769,13.968768768768769,19.6162800638392 + 05/05 01:50:00,14.015015015015015,14.015015015015015,19.62791902451333 + 05/05 02:00:00,14.061261261261262,14.061261261261262,19.6393435396816 + 05/05 02:10:00,14.061261261261262,14.061261261261262,19.65053141041099 + 05/05 02:20:00,14.061261261261262,14.061261261261262,19.661287289138629 + 05/05 02:30:00,14.061261261261262,14.061261261261262,19.67156707082162 + 05/05 02:40:00,14.061261261261262,14.061261261261262,19.681387675421705 + 05/05 02:50:00,14.061261261261262,14.061261261261262,19.69087899689396 + 05/05 03:00:00,14.061261261261262,14.061261261261262,19.70000511575116 + 05/05 03:10:00,14.132732732732733,14.132732732732733,19.70900039991429 + 05/05 03:20:00,14.204204204204205,14.204204204204205,19.71712615963414 + 05/05 03:30:00,14.275675675675675,14.275675675675675,19.725020177106918 + 05/05 03:40:00,14.347147147147148,14.347147147147148,19.73269974353945 + 05/05 03:50:00,14.418618618618618,14.418618618618618,19.74025570332949 + 05/05 04:00:00,14.49009009009009,14.49009009009009,19.74769145911728 + 05/05 04:10:00,14.49009009009009,14.49009009009009,19.754797387194058 + 05/05 04:20:00,14.49009009009009,14.49009009009009,19.76207127009564 + 05/05 04:30:00,14.49009009009009,14.49009009009009,19.769235334768689 + 05/05 04:40:00,14.49009009009009,14.49009009009009,19.7763281911408 + 05/05 04:50:00,14.49009009009009,14.49009009009009,19.78321788736751 + 05/05 05:00:00,14.49009009009009,14.49009009009009,19.789903994568893 + 05/05 05:10:00,14.49009009009009,14.49009009009009,19.79623634929815 + 05/05 05:20:00,14.49009009009009,14.49009009009009,19.802421561603216 + 05/05 05:30:00,14.49009009009009,14.49009009009009,19.808189131712234 + 05/05 05:40:00,14.49009009009009,14.49009009009009,19.81356680322217 + 05/05 05:50:00,14.49009009009009,14.49009009009009,19.81844207398524 + 05/05 06:00:00,14.49009009009009,14.49009009009009,19.822544746768928 + 05/05 06:10:00,14.418618618618618,14.418618618618618,17.82363691126761 + 05/05 06:20:00,14.347147147147148,14.347147147147148,17.58950012527922 + 05/05 06:30:00,14.275675675675675,14.275675675675675,17.50245903235228 + 05/05 06:40:00,14.204204204204205,14.204204204204205,17.434279414444434 + 05/05 06:50:00,14.132732732732734,14.132732732732734,17.379933570082927 + 05/05 07:00:00,14.061261261261262,14.061261261261262,17.333991828914777 + 05/05 07:05:00,13.922522522522522,13.922522522522522,15.85609843842219 + 05/05 07:10:00,13.922522522522522,13.922522522522522,15.855076336271243 + 05/05 07:15:00,13.783783783783785,13.783783783783785,15.635109361462665 + 05/05 07:20:00,13.783783783783785,13.783783783783785,15.635228736178217 + 05/05 07:30:00,13.645045045045047,13.645045045045047,15.526793018351074 + 05/05 07:40:00,13.506306306306307,13.506306306306307,15.437668410539234 + 05/05 07:50:00,13.367567567567568,13.367567567567568,15.361999102646584 + 05/05 08:00:00,13.22882882882883,13.22882882882883,15.292365532391152 + 05/05 08:05:00,13.111111111111113,13.111111111111113,15.204342801293708 + 05/05 08:10:00,13.111111111111113,13.111111111111113,15.204830199031037 + 05/05 08:20:00,12.993393393393394,12.993393393393394,15.139406440074268 + 05/05 08:30:00,12.875675675675677,12.875675675675677,15.086295258525436 + 05/05 08:40:00,12.8,12.8,15.037072142807152 + 05/05 08:50:00,12.8,12.8,14.991635952604799 + 05/05 09:00:00,12.8,12.8,14.950036617565648 + 05/05 09:10:00,12.8,12.8,14.911950761240045 + 05/05 09:15:00,12.8,12.8,14.867118190125116 + 05/05 09:20:00,12.8,12.8,14.866846364543003 + 05/05 09:30:00,12.8,12.8,14.833902548630391 + 05/05 09:40:00,12.8,12.8,14.803220663349008 + 05/05 09:50:00,12.8,12.8,14.772579930782193 + 05/05 10:00:00,12.8,12.8,14.741644511405904 + 05/05 10:10:00,12.8,12.8,14.710464085447223 + 05/05 10:20:00,12.8,12.8,14.675781439233559 + 05/05 10:30:00,12.8,12.8,14.644780301534939 + 05/05 10:40:00,12.8,12.8,14.61466212618637 + 05/05 10:50:00,12.8,12.8,14.586235327252855 + 05/05 11:00:00,12.8,12.8,14.559786606519787 + 05/05 11:10:00,12.8,12.8,14.535244874857398 + 05/05 11:20:00,12.8,12.8,14.521885426804735 + 05/05 11:30:00,12.8,12.8,14.50021333259573 + 05/05 11:40:00,12.8,12.8,14.479618515842303 + 05/05 11:50:00,12.8,12.8,14.460451467581447 + 05/05 12:00:00,12.8,12.8,14.443432203638294 + 05/05 12:10:00,12.8,12.8,14.427905435138639 + 05/05 12:20:00,12.8,12.8,14.403958432898032 + 05/05 12:30:00,12.8,12.8,14.38808621108285 + 05/05 12:40:00,12.8,12.8,14.376087235420569 + 05/05 12:50:00,12.8,12.8,14.362173075126796 + 05/05 13:00:00,12.8,12.8,14.348448592237375 + 05/05 13:10:00,12.8,12.8,14.336612883280102 + 05/05 13:20:00,12.8,12.8,14.324635026292617 + 05/05 13:30:00,12.8,12.8,14.31202815322579 + 05/05 13:40:00,12.8,12.8,14.300016288310064 + 05/05 13:50:00,12.8,12.8,14.285798142662723 + 05/05 14:00:00,12.8,12.8,14.275459667347043 + 05/05 14:10:00,12.8,12.8,14.265967889311162 + 05/05 14:20:00,12.8,12.8,14.25850703389905 + 05/05 14:30:00,12.8,12.8,14.25109294981861 + 05/05 14:40:00,12.8,12.8,14.244758624367807 + 05/05 14:50:00,12.8,12.8,14.236172815255064 + 05/05 15:00:00,12.8,12.8,14.23125631469775 + 05/05 15:05:00,12.8,12.8,16.3815356455446 + 05/05 15:10:00,12.8,12.8,16.379078107477797 + 05/05 15:20:00,12.8,12.8,16.627980587503779 + 05/05 15:30:00,12.8,12.8,16.726916679690896 + 05/05 15:40:00,12.8,12.8,16.801794403732168 + 05/05 15:50:00,12.8,12.8,16.860809976648203 + 05/05 16:00:00,12.8,12.8,16.90864900732475 + 05/05 16:10:00,12.8,12.8,16.972366790899139 + 05/05 16:20:00,12.8,12.8,17.027205507898566 + 05/05 16:30:00,12.8,12.8,17.058223016290609 + 05/05 16:40:00,12.8,12.8,17.08600557901883 + 05/05 16:50:00,12.8,12.8,17.111742483370596 + 05/05 17:00:00,12.8,12.8,17.1359424435842 + 05/05 17:10:00,12.8,12.8,17.172111639031454 + 05/05 17:20:00,12.8,12.8,17.199972915061136 + 05/05 17:30:00,12.8,12.8,17.221202278410695 + 05/05 17:40:00,12.8,12.8,17.24161148388019 + 05/05 17:50:00,12.8,12.8,17.26158009046064 + 05/05 18:00:00,12.8,12.8,17.28125808181518 + 05/05 18:10:00,12.8,12.8,17.300502541320687 + 05/05 18:20:00,12.8,12.8,17.319447720997859 + 05/05 18:30:00,12.8,12.8,17.33779862709022 + 05/05 18:40:00,12.8,12.8,17.35556594012471 + 05/05 18:50:00,12.8,12.8,17.37263453084527 + 05/05 19:00:00,12.8,12.8,17.38907285413046 + 05/05 19:10:00,12.8,12.8,17.418121081121244 + 05/05 19:20:00,12.8,12.8,17.434802848327047 + 05/05 19:30:00,12.8,12.8,17.44815971170834 + 05/05 19:40:00,12.8,12.8,17.464026303552175 + 05/05 19:50:00,12.8,12.8,17.478359383098029 + 05/05 20:00:00,12.8,12.8,17.49235806711601 + 05/05 20:10:00,12.8,12.8,17.48270797037392 + 05/05 20:20:00,12.8,12.8,17.499584357869965 + 05/05 20:30:00,12.8,12.8,17.511243124281198 + 05/05 20:40:00,12.8,12.8,17.52232841638594 + 05/05 20:50:00,12.8,12.8,17.532785733996336 + 05/05 21:00:00,12.8,12.8,17.54262842999518 + 05/05 21:10:00,12.8,12.8,17.552217386495437 + 05/05 21:20:00,12.8,12.8,17.561056074763046 + 05/05 21:30:00,12.8,12.8,17.569693171461365 + 05/05 21:40:00,12.833633633633636,12.833633633633636,17.57805484663021 + 05/05 21:50:00,12.87987987987988,12.87987987987988,17.58618490500455 + 05/05 22:00:00,12.926126126126127,12.926126126126127,17.59421532887864 + 05/05 22:10:00,12.976576576576577,12.976576576576577,18.961631846817498 + 05/05 22:20:00,13.027027027027028,13.027027027027028,19.107216797222656 + 05/05 22:30:00,13.077477477477478,13.077477477477478,19.172144280105756 + 05/05 22:40:00,13.127927927927928,13.127927927927928,19.22352447179104 + 05/05 22:50:00,13.17837837837838,13.17837837837838,19.265445397530855 + 05/05 23:00:00,13.22882882882883,13.22882882882883,19.30098302618956 + 05/05 23:10:00,13.275075075075077,13.275075075075077,19.331595775059684 + 05/05 23:20:00,13.321321321321323,13.321321321321323,19.358796351627946 + 05/05 23:30:00,13.367567567567568,13.367567567567568,19.38315112168348 + 05/05 23:40:00,13.413813813813816,13.413813813813816,19.40535146370098 + 05/05 23:50:00,13.46006006006006,13.46006006006006,19.425737011463576 + 05/05 24:00:00,13.506306306306307,13.506306306306307,19.444589290427076 + 05/06 00:10:00,13.506306306306307,13.506306306306307,19.462121124762299 + 05/06 00:20:00,13.506306306306307,13.506306306306307,19.479377708715217 + 05/06 00:30:00,13.506306306306307,13.506306306306307,19.49558562020524 + 05/06 00:40:00,13.506306306306307,13.506306306306307,19.511125003585805 + 05/06 00:50:00,13.506306306306307,13.506306306306307,19.52585940576165 + 05/06 01:00:00,13.506306306306307,13.506306306306307,19.53990694680514 + 05/06 01:10:00,13.527327327327328,13.527327327327328,19.553261800118049 + 05/06 01:20:00,13.548348348348349,13.548348348348349,19.566947177154398 + 05/06 01:30:00,13.56936936936937,13.56936936936937,19.580095541178829 + 05/06 01:40:00,13.590390390390392,13.590390390390392,19.59288420288122 + 05/06 01:50:00,13.611411411411412,13.611411411411412,19.60517595294038 + 05/06 02:00:00,13.632432432432433,13.632432432432433,19.61702696200308 + 05/06 02:10:00,13.67867867867868,13.67867867867868,19.628782342378636 + 05/06 02:20:00,13.724924924924924,13.724924924924924,19.640152612116883 + 05/06 02:30:00,13.771171171171173,13.771171171171173,19.651253011949245 + 05/06 02:40:00,13.817417417417419,13.817417417417419,19.662052598135064 + 05/06 02:50:00,13.863663663663666,13.863663663663666,19.672603710354033 + 05/06 03:00:00,13.90990990990991,13.90990990990991,19.682822822183906 + 05/06 03:10:00,13.88888888888889,13.88888888888889,19.69257006761609 + 05/06 03:20:00,13.867867867867869,13.867867867867869,19.7017577115151 + 05/06 03:30:00,13.846846846846848,13.846846846846848,19.71034126154497 + 05/06 03:40:00,13.825825825825828,13.825825825825828,19.71837575934808 + 05/06 03:50:00,13.804804804804805,13.804804804804805,19.725836828586009 + 05/06 04:00:00,13.783783783783785,13.783783783783785,19.73286315386064 + 05/06 04:10:00,13.83003003003003,13.83003003003003,19.739536650549757 + 05/06 04:20:00,13.876276276276276,13.876276276276276,19.745073503770667 + 05/06 04:30:00,13.922522522522524,13.922522522522524,19.750663630804053 + 05/06 04:40:00,13.968768768768769,13.968768768768769,19.756044526718996 + 05/06 04:50:00,14.015015015015015,14.015015015015015,19.76158480185494 + 05/06 05:00:00,14.061261261261262,14.061261261261262,19.76717625582231 + 05/06 05:10:00,13.943543543543545,13.943543543543545,19.772366549989039 + 05/06 05:20:00,13.825825825825826,13.825825825825826,19.778191957786587 + 05/06 05:30:00,13.708108108108109,13.708108108108109,19.78362434513492 + 05/06 05:40:00,13.590390390390392,13.590390390390392,19.788756664208365 + 05/06 05:50:00,13.472672672672673,13.472672672672673,19.793120253450544 + 05/06 06:00:00,13.354954954954956,13.354954954954956,19.79612923052246 + 05/06 06:10:00,13.354954954954956,13.354954954954956,19.138445336644474 + 05/06 06:20:00,13.354954954954956,13.354954954954956,19.07017075970981 + 05/06 06:30:00,13.354954954954956,13.354954954954956,19.042106121845067 + 05/06 06:40:00,13.354954954954956,13.354954954954956,19.019716736079294 + 05/06 06:50:00,13.354954954954956,13.354954954954956,19.000969120317739 + 05/06 07:00:00,13.354954954954956,13.354954954954956,18.984149201257794 + 05/06 07:10:00,13.237237237237239,13.237237237237239,17.895603494357159 + 05/06 07:20:00,13.119519519519521,13.119519519519521,17.7429149644249 + 05/06 07:30:00,13.001801801801804,13.001801801801804,17.673996692335785 + 05/06 07:40:00,12.884084084084086,12.884084084084086,17.61651873354909 + 05/06 07:50:00,12.8,12.8,17.567692070913386 + 05/06 08:00:00,12.8,12.8,17.524851495909087 + 05/06 08:10:00,12.8,12.8,17.486360274777814 + 05/06 08:20:00,12.8,12.8,17.44223038676173 + 05/06 08:30:00,12.8,12.8,17.409382494029335 + 05/06 08:40:00,12.8,12.8,17.378497472755613 + 05/06 08:50:00,12.8,12.8,17.349194854000545 + 05/06 09:00:00,12.8,12.8,17.321202301775 + 05/06 09:10:00,12.8,12.8,17.292000373905727 + 05/06 09:20:00,12.8,12.8,17.25643012171585 + 05/06 09:30:00,12.8,12.8,17.230226710426807 + 05/06 09:40:00,12.8,12.8,17.205370159376366 + 05/06 09:50:00,12.8,12.8,17.181480124651924 + 05/06 10:00:00,12.8,12.8,17.158577879211739 + 05/06 10:10:00,12.8,12.8,17.136988766700868 + 05/06 10:20:00,12.8,12.8,17.116307392586735 + 05/06 10:30:00,12.8,12.8,17.096455462963307 + 05/06 10:40:00,12.8,12.8,17.079497040133466 + 05/06 10:50:00,12.8,12.8,17.060227297425738 + 05/06 11:00:00,12.8,12.8,17.044851416633578 + 05/06 11:10:00,12.8,12.8,17.03032769174934 + 05/06 11:20:00,12.8,12.8,17.01760004663504 + 05/06 11:30:00,12.8,12.8,17.00606636976322 + 05/06 11:40:00,12.8,12.8,16.99534269475729 + 05/06 11:50:00,12.8,12.8,16.985032475892316 + 05/06 12:00:00,12.8,12.8,16.974924263203037 + 05/06 12:10:00,12.8,12.8,16.965982605799306 + 05/06 12:20:00,12.8,12.8,16.95487267059737 + 05/06 12:30:00,12.8,12.8,16.945764464213327 + 05/06 12:40:00,12.8,12.8,16.936482803105429 + 05/06 12:50:00,12.8,12.8,16.92841606934641 + 05/06 13:00:00,12.8,12.8,16.91879025928046 + 05/06 13:10:00,12.8,12.8,16.911509569724627 + 05/06 13:20:00,12.8,12.8,16.9023292511712 + 05/06 13:30:00,12.8,12.8,16.895611842869259 + 05/06 13:40:00,12.8,12.8,16.887295082116677 + 05/06 13:50:00,12.8,12.8,16.882058370585456 + 05/06 14:00:00,12.8,12.8,16.875681494680025 + 05/06 14:10:00,12.8,12.8,16.872174201609576 + 05/06 14:20:00,12.8,12.8,16.86726355776166 + 05/06 14:30:00,12.8,12.8,16.864246097293177 + 05/06 14:40:00,12.8,12.8,16.862159172970899 + 05/06 14:50:00,12.8,12.8,16.85837794263771 + 05/06 14:55:00,12.8,12.8,16.85742276519833 + 05/06 15:00:00,12.8,12.8,16.856684433858406 + 05/06 15:10:00,12.8,12.8,16.852439689803718 + 05/06 15:20:00,12.8,12.8,16.849716884458564 + 05/06 15:30:00,12.8,12.8,16.847615393367879 + 05/06 15:40:00,12.8,12.8,16.843342938055078 + 05/06 15:45:00,12.8,12.8,16.842875246702339 + 05/06 15:50:00,12.8,12.8,16.8422919583571 + 05/06 16:00:00,12.8,12.8,16.839863340171776 + 05/06 16:10:00,12.8,12.8,16.85330103803034 + 05/06 16:20:00,12.8,12.8,16.864488658247674 + 05/06 16:30:00,12.8,12.8,16.867071170433893 + 05/06 16:40:00,12.8,12.8,16.8708046957277 + 05/06 16:50:00,12.8,12.8,16.875331600884079 + 05/06 17:00:00,12.8,12.8,16.88073313982193 + 05/06 17:10:00,12.8,12.8,18.644406158486907 + 05/06 17:20:00,12.8,12.8,18.860573112384768 + 05/06 17:30:00,12.8,12.8,18.94726355630761 + 05/06 17:40:00,12.8,12.8,19.015217089226434 + 05/06 17:50:00,12.8,12.8,19.069920858942579 + 05/06 18:00:00,12.8,12.8,19.115964794609697 + 05/06 18:10:00,12.8,12.8,19.168936690055408 + 05/06 18:20:00,12.8,12.8,19.205165916456779 + 05/06 18:30:00,12.8,12.8,19.23764224955999 + 05/06 18:40:00,12.8,12.8,19.267485484196567 + 05/06 18:50:00,12.8,12.8,19.29515058266802 + 05/06 19:00:00,12.8,12.8,19.32082928113264 + 05/06 19:10:00,12.8,12.8,19.345488676468045 + 05/06 19:20:00,12.8,12.8,19.369151802276428 + 05/06 19:30:00,12.8,12.8,19.391878699769749 + 05/06 19:40:00,12.8,12.8,19.413463834499156 + 05/06 19:50:00,12.8,12.8,19.433668503314434 + 05/06 20:00:00,12.8,12.8,19.45263291121962 + 05/06 20:10:00,12.8,12.8,19.44810808888623 + 05/06 20:20:00,12.8,12.8,19.464489462925259 + 05/06 20:30:00,12.8,12.8,19.479875578697877 + 05/06 20:40:00,12.8,12.8,19.494254855198205 + 05/06 20:50:00,12.8,12.8,19.50782968107508 + 05/06 21:00:00,12.8,12.8,19.520754846719855 + 05/06 21:10:00,12.8,12.8,19.533024850870477 + 05/06 21:20:00,12.8,12.8,19.543701027933044 + 05/06 21:30:00,12.8,12.8,19.554052125046277 + 05/06 21:40:00,12.8,12.8,19.563829944802096 + 05/06 21:50:00,12.8,12.8,19.57340261335429 + 05/06 22:00:00,12.8,12.8,19.58268154217221 + 05/06 22:10:00,12.8,12.8,19.591739394877075 + 05/06 22:20:00,12.8,12.8,19.60093561567592 + 05/06 22:30:00,12.8,12.8,19.6096749613463 + 05/06 22:40:00,12.8,12.8,19.618285230524376 + 05/06 22:50:00,12.8,12.8,19.626594641752904 + 05/06 23:00:00,12.8,12.8,19.634638704340376 + 05/06 23:10:00,12.821021021021022,12.821021021021022,19.642511318520147 + 05/06 23:20:00,12.842042042042042,12.842042042042042,19.649972497047778 + 05/06 23:30:00,12.863063063063063,12.863063063063063,19.65724601822145 + 05/06 23:40:00,12.884084084084084,12.884084084084084,19.664301719071316 + 05/06 23:50:00,12.905105105105106,12.905105105105106,19.671150910731645 + 05/06 24:00:00,12.926126126126127,12.926126126126127,19.677808330946207 + 05/07 00:10:00,12.951351351351353,12.951351351351353,19.684540999820166 + 05/07 00:20:00,12.976576576576577,12.976576576576577,19.691488853025129 + 05/07 00:30:00,13.001801801801803,13.001801801801803,19.69842211640787 + 05/07 00:40:00,13.027027027027028,13.027027027027028,19.705384347243105 + 05/07 00:50:00,13.052252252252253,13.052252252252253,19.712295126412508 + 05/07 01:00:00,13.077477477477478,13.077477477477478,19.719127703617393 + 05/07 01:10:00,13.123723723723725,13.123723723723725,19.7254285352209 + 05/07 01:20:00,13.169969969969971,13.169969969969971,19.730990795799028 + 05/07 01:30:00,13.216216216216218,13.216216216216218,19.736673425069797 + 05/07 01:40:00,13.262462462462464,13.262462462462464,19.742263952326384 + 05/07 01:50:00,13.30870870870871,13.30870870870871,19.747924275261309 + 05/07 02:00:00,13.354954954954956,13.354954954954956,19.75352398066268 + 05/07 02:10:00,13.426426426426428,13.426426426426428,19.759343685051346 + 05/07 02:20:00,13.497897897897899,13.497897897897899,19.765527207889297 + 05/07 02:30:00,13.56936936936937,13.56936936936937,19.77161508048318 + 05/07 02:40:00,13.640840840840842,13.640840840840842,19.77774504942098 + 05/07 02:50:00,13.712312312312314,13.712312312312314,19.783684186924004 + 05/07 03:00:00,13.783783783783785,13.783783783783785,19.789615137924927 + 05/07 03:10:00,13.804804804804805,13.804804804804805,19.79557814622381 + 05/07 03:20:00,13.825825825825828,13.825825825825828,19.802644679078499 + 05/07 03:30:00,13.846846846846848,13.846846846846848,19.80943272666884 + 05/07 03:40:00,13.867867867867869,13.867867867867869,19.816234987624914 + 05/07 03:50:00,13.88888888888889,13.88888888888889,19.82278005556191 + 05/07 04:00:00,13.90990990990991,13.90990990990991,19.829135211028967 + 05/07 04:10:00,13.935135135135136,13.935135135135136,19.835326605820606 + 05/07 04:20:00,13.960360360360362,13.960360360360362,19.84024599847759 + 05/07 04:30:00,13.985585585585586,13.985585585585586,19.844999664050726 + 05/07 04:40:00,14.010810810810812,14.010810810810812,19.8493499376197 + 05/07 04:50:00,14.036036036036038,14.036036036036038,19.853700750230368 + 05/07 05:00:00,14.061261261261262,14.061261261261262,19.857992604426174 + 05/07 05:10:00,14.061261261261262,14.061261261261262,19.86193341179385 + 05/07 05:20:00,14.061261261261262,14.061261261261262,19.86669025687672 + 05/07 05:30:00,14.061261261261262,14.061261261261262,19.87130356371154 + 05/07 05:40:00,14.061261261261262,14.061261261261262,19.876115862296826 + 05/07 05:50:00,14.061261261261262,14.061261261261262,19.88043408109649 + 05/07 06:00:00,14.061261261261262,14.061261261261262,19.88367340268013 + 05/07 06:10:00,13.943543543543545,13.943543543543545,19.90833296452203 + 05/07 06:20:00,13.825825825825826,13.825825825825826,19.909612618961316 + 05/07 06:30:00,13.708108108108109,13.708108108108109,19.909685753212125 + 05/07 06:40:00,13.590390390390392,13.590390390390392,19.908224811082716 + 05/07 06:50:00,13.472672672672673,13.472672672672673,19.905212860130989 + 05/07 07:00:00,13.354954954954956,13.354954954954956,19.900605709434918 + 05/07 07:10:00,13.262462462462464,13.262462462462464,18.500696559096416 + 05/07 07:20:00,13.169969969969971,13.169969969969971,18.327725833814193 + 05/07 07:30:00,13.077477477477478,13.077477477477478,18.25418723537881 + 05/07 07:40:00,12.984984984984987,12.984984984984987,18.193674963723426 + 05/07 07:50:00,12.892492492492494,12.892492492492494,18.143043751383908 + 05/07 08:00:00,12.8,12.8,18.099288632084247 + 05/07 08:10:00,12.8,12.8,18.06018584787011 + 05/07 08:20:00,12.8,12.8,18.01714094289294 + 05/07 08:30:00,12.8,12.8,17.98558200216382 + 05/07 08:40:00,12.8,12.8,17.95646965075531 + 05/07 08:50:00,12.8,12.8,17.926128480922324 + 05/07 09:00:00,12.8,12.8,17.898222054780744 + 05/07 09:10:00,12.8,12.8,17.871411343970857 + 05/07 09:20:00,12.8,12.8,17.837415745946424 + 05/07 09:30:00,12.8,12.8,17.813137466049655 + 05/07 09:40:00,12.8,12.8,17.790415529737304 + 05/07 09:50:00,12.8,12.8,17.76975578381106 + 05/07 10:00:00,12.8,12.8,17.75135415668431 + 05/07 10:10:00,12.8,12.8,17.734946730822239 + 05/07 10:20:00,12.8,12.8,17.720207253537255 + 05/07 10:30:00,12.8,12.8,17.706786094216569 + 05/07 10:40:00,12.8,12.8,17.693811865535936 + 05/07 10:50:00,12.8,12.8,17.680347611448484 + 05/07 11:00:00,12.8,12.8,17.665927941666355 + 05/07 11:10:00,12.8,12.8,17.650439707188946 + 05/07 11:20:00,12.8,12.8,17.634958040994819 + 05/07 11:30:00,12.8,12.8,17.61991713078833 + 05/07 11:40:00,12.8,12.8,17.605858885178397 + 05/07 11:50:00,12.8,12.8,17.593487817030398 + 05/07 12:00:00,12.8,12.8,17.583100737003769 + 05/07 12:10:00,12.8,12.8,17.574911422681656 + 05/07 12:20:00,12.8,12.8,17.567955004724504 + 05/07 12:30:00,12.8,12.8,17.561904200852099 + 05/07 12:40:00,12.8,12.8,17.55717741505755 + 05/07 12:50:00,12.8,12.8,17.55444445953742 + 05/07 13:00:00,12.8,12.8,17.55380379284069 + 05/07 13:10:00,12.8,12.8,17.557473208908406 + 05/07 13:20:00,12.8,12.8,17.56397344790584 + 05/07 13:30:00,12.8,12.8,17.573196279895997 + 05/07 13:40:00,12.8,12.8,17.58416117649075 + 05/07 13:50:00,12.959759759759761,12.959759759759761,17.595224579596854 + 05/07 14:00:00,13.354954954954956,13.354954954954956,17.605612478406579 + 05/07 14:10:00,13.216216216216218,13.216216216216218,17.61209125600036 + 05/07 14:20:00,13.077477477477478,13.077477477477478,17.618037085777183 + 05/07 14:30:00,12.93873873873874,12.93873873873874,17.62092203423656 + 05/07 14:40:00,12.8,12.8,17.621987284764445 + 05/07 14:50:00,12.8,12.8,17.621062200426598 + 05/07 15:00:00,12.8,12.8,17.618450149142537 + 05/07 15:10:00,12.8,12.8,19.03169498504325 + 05/07 15:20:00,12.8,12.8,19.182904460046396 + 05/07 15:30:00,12.8,12.8,19.244330910987153 + 05/07 15:40:00,12.8,12.8,19.292301764329303 + 05/07 15:50:00,12.8,12.8,19.3292519005212 + 05/07 16:00:00,12.8,12.8,19.35968795796687 + 05/07 16:10:00,12.8,12.8,19.38479081368516 + 05/07 16:20:00,12.8,12.8,19.414513649507705 + 05/07 16:30:00,12.8,12.8,19.430686076344548 + 05/07 16:40:00,12.8,12.8,19.445343071740255 + 05/07 16:50:00,12.8,12.8,19.458404955300407 + 05/07 17:00:00,12.8,12.8,19.47070611309542 + 05/07 17:10:00,12.8,12.8,19.48061476149387 + 05/07 17:20:00,12.8,12.8,19.512626905341468 + 05/07 17:30:00,12.8,12.8,19.524774725585006 + 05/07 17:40:00,12.8,12.8,19.538231656683068 + 05/07 17:50:00,12.8,12.8,19.550769505426986 + 05/07 18:00:00,12.8,12.8,19.562945917424238 + 05/07 18:10:00,12.8,12.8,19.57522427585658 + 05/07 18:20:00,12.8,12.8,19.58727693518225 + 05/07 18:30:00,12.8,12.8,19.599274796524666 + 05/07 18:40:00,12.8,12.8,19.610887356801379 + 05/07 18:50:00,12.8,12.8,19.622358703395379 + 05/07 19:00:00,12.8,12.8,19.634361057082925 + 05/07 19:10:00,12.8,12.8,19.64507210925697 + 05/07 19:20:00,12.8,12.8,19.65664251834462 + 05/07 19:30:00,12.8,12.8,19.667564642253624 + 05/07 19:40:00,12.8,12.8,19.676189780652945 + 05/07 19:50:00,12.8,12.8,19.686004664109129 + 05/07 20:00:00,12.8,12.8,19.694689774852184 + 05/07 20:10:00,12.8,12.8,19.680874763476465 + 05/07 20:20:00,12.8,12.8,19.68879303487887 + 05/07 20:30:00,12.8,12.8,19.696704828646355 + 05/07 20:40:00,12.8,12.8,19.704625575581259 + 05/07 20:50:00,12.8,12.8,19.712577528919078 + 05/07 21:00:00,12.8,12.8,19.720994217285676 + 05/07 21:10:00,12.8,12.8,19.728182546383477 + 05/07 21:20:00,12.8,12.8,19.73524076223917 + 05/07 21:30:00,12.8,12.8,19.74188251182468 + 05/07 21:40:00,12.8,12.8,19.748296227019929 + 05/07 21:50:00,12.8,12.8,19.754460896203267 + 05/07 22:00:00,12.8,12.8,19.76037026834141 + 05/07 22:10:00,12.892492492492494,12.892492492492494,19.766265187541316 + 05/07 22:20:00,12.984984984984987,12.984984984984987,19.77253026008925 + 05/07 22:30:00,13.077477477477478,13.077477477477478,19.778986691027066 + 05/07 22:40:00,13.169969969969971,13.169969969969971,19.785675106653863 + 05/07 22:50:00,13.262462462462464,13.262462462462464,19.792525527652438 + 05/07 23:00:00,13.354954954954956,13.354954954954956,19.79946433962038 + 05/07 23:10:00,13.380180180180182,13.380180180180182,19.80643915335076 + 05/07 23:20:00,13.405405405405407,13.405405405405407,19.8132124668776 + 05/07 23:30:00,13.430630630630632,13.430630630630632,19.819628353512966 + 05/07 23:40:00,13.455855855855857,13.455855855855857,19.82567647577909 + 05/07 23:50:00,13.481081081081081,13.481081081081081,19.83135729710722 + 05/07 24:00:00,13.506306306306307,13.506306306306307,19.836707175626104 + 05/08 00:10:00,13.527327327327328,13.527327327327328,19.841355694198169 + 05/08 00:20:00,13.548348348348349,13.548348348348349,19.846289207432958 + 05/08 00:30:00,13.56936936936937,13.56936936936937,19.850974102286125 + 05/08 00:40:00,13.590390390390392,13.590390390390392,19.855605386972678 + 05/08 00:50:00,13.611411411411412,13.611411411411412,19.859959695778369 + 05/08 01:00:00,13.632432432432433,13.632432432432433,19.864274996522579 + 05/08 01:10:00,13.657657657657659,13.657657657657659,19.86907996214102 + 05/08 01:20:00,13.682882882882883,13.682882882882883,19.873813274807579 + 05/08 01:30:00,13.708108108108109,13.708108108108109,19.87842964839039 + 05/08 01:40:00,13.733333333333335,13.733333333333335,19.8828534765572 + 05/08 01:50:00,13.758558558558559,13.758558558558559,19.887223983934399 + 05/08 02:00:00,13.783783783783785,13.783783783783785,19.891524154417277 + 05/08 02:10:00,13.804804804804805,13.804804804804805,19.895281244718079 + 05/08 02:20:00,13.825825825825828,13.825825825825828,19.89851625837565 + 05/08 02:30:00,13.846846846846848,13.846846846846848,19.90164214101709 + 05/08 02:40:00,13.867867867867869,13.867867867867869,19.904652549865014 + 05/08 02:50:00,13.88888888888889,13.88888888888889,19.907682965586245 + 05/08 03:00:00,13.90990990990991,13.90990990990991,19.9106891979835 + 05/08 03:10:00,13.88888888888889,13.88888888888889,19.91354467265031 + 05/08 03:20:00,13.867867867867869,13.867867867867869,19.91664023223039 + 05/08 03:30:00,13.846846846846848,13.846846846846848,19.919248372907647 + 05/08 03:40:00,13.825825825825828,13.825825825825828,19.921588809573089 + 05/08 03:50:00,13.804804804804805,13.804804804804805,19.92343920502409 + 05/08 04:00:00,13.783783783783785,13.783783783783785,19.924883659764718 + 05/08 04:10:00,13.783783783783785,13.783783783783785,19.92603497542911 + 05/08 04:20:00,13.783783783783785,13.783783783783785,19.926405925232815 + 05/08 04:30:00,13.783783783783785,13.783783783783785,19.927253635457747 + 05/08 04:40:00,13.783783783783785,13.783783783783785,19.928319164315928 + 05/08 04:50:00,13.783783783783785,13.783783783783785,19.929804244600498 + 05/08 05:00:00,13.783783783783785,13.783783783783785,19.93165262843617 + 05/08 05:10:00,13.804804804804805,13.804804804804805,19.934096834789636 + 05/08 05:20:00,13.825825825825828,13.825825825825828,19.93721316692518 + 05/08 05:30:00,13.846846846846848,13.846846846846848,19.94013471516116 + 05/08 05:40:00,13.867867867867869,13.867867867867869,19.94297663638288 + 05/08 05:50:00,13.88888888888889,13.88888888888889,19.94545120963358 + 05/08 06:00:00,13.90990990990991,13.90990990990991,19.947400204274595 + 05/08 06:10:00,13.88888888888889,13.88888888888889,17.95879808315921 + 05/08 06:20:00,13.867867867867869,13.867867867867869,17.72522566869066 + 05/08 06:30:00,13.846846846846848,13.846846846846848,17.637394346633778 + 05/08 06:40:00,13.825825825825828,13.825825825825828,17.5638446403403 + 05/08 06:50:00,13.804804804804805,13.804804804804805,17.50587349688171 + 05/08 07:00:00,13.783783783783785,13.783783783783785,17.45556050615311 + 05/08 07:10:00,13.737537537537538,13.737537537537538,15.979018193209904 + 05/08 07:20:00,13.691291291291293,13.691291291291293,15.739777630496187 + 05/08 07:30:00,13.645045045045047,13.645045045045047,15.630129296484626 + 05/08 07:40:00,13.5987987987988,13.5987987987988,15.53743601384079 + 05/08 07:50:00,13.552552552552554,13.552552552552554,15.46118008799086 + 05/08 08:00:00,13.506306306306307,13.506306306306307,15.393713493440627 + 05/08 08:05:00,13.363363363363364,13.363363363363364,15.305261233625047 + 05/08 08:10:00,13.363363363363364,13.363363363363364,15.30529013299497 + 05/08 08:20:00,13.220420420420421,13.220420420420421,15.238419419224485 + 05/08 08:30:00,13.077477477477478,13.077477477477478,15.182705893608306 + 05/08 08:40:00,12.934534534534535,12.934534534534535,15.130037927871476 + 05/08 08:50:00,12.8,12.8,15.080320405715782 + 05/08 09:00:00,12.8,12.8,15.033548343522748 + 05/08 09:10:00,12.8,12.8,14.989676366040266 + 05/08 09:20:00,12.8,12.8,14.937695153657785 + 05/08 09:30:00,12.8,12.8,14.898257841625713 + 05/08 09:40:00,12.8,12.8,14.861001517144807 + 05/08 09:50:00,12.8,12.8,14.825912344331094 + 05/08 10:00:00,12.8,12.8,14.793040355724293 + 05/08 10:10:00,12.8,12.8,14.762393468728315 + 05/08 10:20:00,12.8,12.8,14.730279853721095 + 05/08 10:30:00,12.8,12.8,14.703518346631473 + 05/08 10:40:00,12.8,12.8,14.678027814580233 + 05/08 10:50:00,12.8,12.8,14.652892171059606 + 05/08 11:00:00,12.8,12.8,14.627757635116487 + 05/08 11:10:00,12.8,12.8,14.602768311691856 + 05/08 11:20:00,12.8,12.8,14.587543033883256 + 05/08 11:30:00,12.8,12.8,14.562999935692956 + 05/08 11:40:00,12.8,12.8,14.539372367368259 + 05/08 11:50:00,12.8,12.8,14.518167675168426 + 05/08 12:00:00,12.8,12.8,14.499568664625962 + 05/08 12:10:00,12.8,12.8,14.48297210358621 + 05/08 12:20:00,12.8,12.8,14.458572617272127 + 05/08 12:30:00,12.8,12.8,14.445136718595958 + 05/08 12:40:00,12.8,12.8,14.432512398187262 + 05/08 12:50:00,12.8,12.8,14.420700483429176 + 05/08 13:00:00,12.8,12.8,14.408395574100803 + 05/08 13:10:00,12.8,12.8,14.392532242443599 + 05/08 13:20:00,12.8,12.8,14.382370037657742 + 05/08 13:30:00,12.8,12.8,14.36923951282609 + 05/08 13:40:00,12.8,12.8,14.353215509399375 + 05/08 13:50:00,12.8,12.8,14.341104854043083 + 05/08 14:00:00,12.8,12.8,14.329946035999358 + 05/08 14:10:00,12.8,12.8,14.317065282413207 + 05/08 14:20:00,12.8,12.8,14.311073519495708 + 05/08 14:30:00,12.8,12.8,14.302315603851799 + 05/08 14:40:00,12.8,12.8,14.29077994001834 + 05/08 14:50:00,12.8,12.8,14.282766876762189 + 05/08 15:00:00,12.8,12.8,14.275747557324085 + 05/08 15:05:00,12.8,12.8,16.422794905620518 + 05/08 15:10:00,12.8,12.8,16.41943432336303 + 05/08 15:20:00,12.8,12.8,16.669841560814868 + 05/08 15:30:00,12.8,12.8,16.76896146741324 + 05/08 15:40:00,12.8,12.8,16.84374462740129 + 05/08 15:45:00,12.8,12.8,16.905870896792917 + 05/08 15:50:00,12.8,12.8,16.904847665355818 + 05/08 16:00:00,12.8,12.8,16.95156565454581 + 05/08 16:05:00,12.8,12.8,17.02170116679244 + 05/08 16:10:00,12.8,12.8,17.021211693469053 + 05/08 16:20:00,12.8,12.8,17.077762525249449 + 05/08 16:25:00,12.8,12.8,17.112610946665538 + 05/08 16:30:00,12.8,12.8,17.112307456390718 + 05/08 16:40:00,12.8,12.8,17.140060183521773 + 05/08 16:45:00,12.8,12.8,17.168557909250916 + 05/08 16:50:00,12.8,12.8,17.16817497825334 + 05/08 17:00:00,12.8,12.8,17.19047286601451 + 05/08 17:10:00,12.8,12.8,17.226339011668914 + 05/08 17:20:00,12.8,12.8,17.25437175502688 + 05/08 17:30:00,12.8,12.8,17.2727509166684 + 05/08 17:40:00,12.8,12.8,17.292435451208278 + 05/08 17:50:00,12.8,12.8,17.312170786597649 + 05/08 18:00:00,12.8,12.8,17.33026563662463 + 05/08 18:10:00,12.8,12.8,17.350188335098279 + 05/08 18:20:00,12.8,12.8,17.367775571834078 + 05/08 18:30:00,12.8,12.8,17.38626782202223 + 05/08 18:40:00,12.8,12.8,17.404732609917507 + 05/08 18:50:00,12.8,12.8,17.420695060659324 + 05/08 19:00:00,12.8,12.8,17.436828732568679 + 05/08 19:10:00,12.8,12.8,17.464725971310704 + 05/08 19:20:00,12.8,12.8,17.480706824576538 + 05/08 19:30:00,12.8,12.8,17.49420496152733 + 05/08 19:40:00,12.8,12.8,17.508623736238364 + 05/08 19:50:00,12.8,12.8,17.519836958332186 + 05/08 20:00:00,12.8,12.8,17.53059102334715 + 05/08 20:10:00,12.8,12.8,17.517883143991975 + 05/08 20:20:00,12.8,12.8,17.53237841992052 + 05/08 20:30:00,12.8,12.8,17.542022186260448 + 05/08 20:40:00,12.8,12.8,17.551405476738034 + 05/08 20:50:00,12.833633633633636,12.833633633633636,17.560393501290439 + 05/08 21:00:00,12.926126126126127,12.926126126126127,17.56906556602531 + 05/08 21:10:00,12.951351351351353,12.951351351351353,17.577411916136627 + 05/08 21:20:00,12.976576576576577,12.976576576576577,17.585351404441729 + 05/08 21:30:00,13.001801801801803,13.001801801801803,17.59302657491196 + 05/08 21:40:00,13.027027027027028,13.027027027027028,17.60042417095947 + 05/08 21:50:00,13.052252252252253,13.052252252252253,17.60753565035346 + 05/08 22:00:00,13.077477477477478,13.077477477477478,17.614507070251613 + 05/08 22:10:00,13.148948948948949,13.148948948948949,18.98035470660669 + 05/08 22:20:00,13.220420420420421,13.220420420420421,19.126504695761417 + 05/08 22:30:00,13.291891891891894,13.291891891891894,19.191957926844269 + 05/08 22:40:00,13.363363363363364,13.363363363363364,19.24413216475734 + 05/08 22:50:00,13.434834834834835,13.434834834834835,19.2867644570872 + 05/08 23:00:00,13.506306306306307,13.506306306306307,19.32299332784184 + 05/08 23:10:00,13.552552552552554,13.552552552552554,19.35439898526601 + 05/08 23:20:00,13.5987987987988,13.5987987987988,19.38329503869664 + 05/08 23:30:00,13.645045045045047,13.645045045045047,19.40923979305824 + 05/08 23:40:00,13.691291291291293,13.691291291291293,19.433135821895829 + 05/08 23:50:00,13.737537537537538,13.737537537537538,19.45514189880802 + 05/08 24:00:00,13.783783783783785,13.783783783783785,19.475575249681336 + 05/09 00:10:00,13.783783783783785,13.783783783783785,19.494516408695163 + 05/09 00:20:00,13.783783783783785,13.783783783783785,19.511801881633646 + 05/09 00:30:00,13.783783783783785,13.783783783783785,19.528157921415614 + 05/09 00:40:00,13.783783783783785,13.783783783783785,19.543587842591437 + 05/09 00:50:00,13.783783783783785,13.783783783783785,19.558292013494488 + 05/09 01:00:00,13.783783783783785,13.783783783783785,19.57233939402582 + 05/09 01:10:00,13.804804804804805,13.804804804804805,19.58606868140114 + 05/09 01:20:00,13.825825825825828,13.825825825825828,19.599119395129369 + 05/09 01:30:00,13.846846846846848,13.846846846846848,19.611554019017217 + 05/09 01:40:00,13.867867867867869,13.867867867867869,19.623360247235597 + 05/09 01:50:00,13.88888888888889,13.88888888888889,19.63458251396098 + 05/09 02:00:00,13.90990990990991,13.90990990990991,19.645252882439715 + 05/09 02:10:00,13.935135135135136,13.935135135135136,19.655584055653106 + 05/09 02:20:00,13.960360360360362,13.960360360360362,19.665218457746417 + 05/09 02:30:00,13.985585585585586,13.985585585585586,19.674587579232257 + 05/09 02:40:00,14.010810810810812,14.010810810810812,19.683621367331669 + 05/09 02:50:00,14.036036036036038,14.036036036036038,19.69245526212179 + 05/09 03:00:00,14.061261261261262,14.061261261261262,19.701007144492939 + 05/09 03:10:00,14.061261261261262,14.061261261261262,19.708901872586425 + 05/09 03:20:00,14.061261261261262,14.061261261261262,19.71647209048709 + 05/09 03:30:00,14.061261261261262,14.061261261261262,19.72361715478088 + 05/09 03:40:00,14.061261261261262,14.061261261261262,19.73029697400446 + 05/09 03:50:00,14.061261261261262,14.061261261261262,19.73655036738742 + 05/09 04:00:00,14.061261261261262,14.061261261261262,19.742495827483727 + 05/09 04:10:00,14.061261261261262,14.061261261261262,19.748265768133174 + 05/09 04:20:00,14.061261261261262,14.061261261261262,19.754017823149956 + 05/09 04:30:00,14.061261261261262,14.061261261261262,19.759876862895668 + 05/09 04:40:00,14.061261261261262,14.061261261261262,19.765866957660639 + 05/09 04:50:00,14.061261261261262,14.061261261261262,19.771922348226548 + 05/09 05:00:00,14.061261261261262,14.061261261261262,19.778095257378604 + 05/09 05:10:00,14.082282282282283,14.082282282282283,19.78404275204586 + 05/09 05:20:00,14.103303303303303,14.103303303303303,19.79002203244863 + 05/09 05:30:00,14.124324324324324,14.124324324324324,19.795936832729873 + 05/09 05:40:00,14.145345345345346,14.145345345345346,19.801744328129407 + 05/09 05:50:00,14.166366366366367,14.166366366366367,19.80724882328087 + 05/09 06:00:00,14.187387387387388,14.187387387387388,19.811970713226225 + 05/09 06:10:00,14.212612612612613,14.212612612612613,17.814887775118323 + 05/09 06:20:00,14.237837837837838,14.237837837837838,17.581045452515054 + 05/09 06:30:00,14.263063063063063,14.263063063063063,17.494560740940626 + 05/09 06:40:00,14.288288288288289,14.288288288288289,17.426555834281879 + 05/09 06:50:00,14.313513513513513,14.313513513513513,17.372517943072404 + 05/09 07:00:00,14.338738738738739,14.338738738738739,17.32702612396166 + 05/09 07:05:00,14.267267267267269,14.267267267267269,15.84601846573375 + 05/09 07:10:00,14.267267267267269,14.267267267267269,15.846314865113392 + 05/09 07:15:00,14.195795795795796,14.195795795795796,15.625529561860251 + 05/09 07:20:00,14.195795795795796,14.195795795795796,15.625515680240288 + 05/09 07:30:00,14.124324324324326,14.124324324324326,15.520363670273607 + 05/09 07:40:00,14.052852852852853,14.052852852852853,15.433102963454563 + 05/09 07:50:00,13.981381381381383,13.981381381381383,15.35890011345139 + 05/09 08:00:00,13.90990990990991,13.90990990990991,15.293440228007729 + 05/09 08:05:00,13.796396396396398,13.796396396396398,15.205875220210288 + 05/09 08:10:00,13.796396396396398,13.796396396396398,15.206734652860757 + 05/09 08:20:00,13.682882882882883,13.682882882882883,15.1424327263722 + 05/09 08:30:00,13.56936936936937,13.56936936936937,15.087737409558509 + 05/09 08:40:00,13.455855855855857,13.455855855855857,15.03647434778834 + 05/09 08:50:00,13.342342342342344,13.342342342342344,14.98752910284973 + 05/09 09:00:00,13.22882882882883,13.22882882882883,14.941211200172697 + 05/09 09:10:00,13.17837837837838,13.17837837837838,14.897368321625408 + 05/09 09:20:00,13.127927927927928,13.127927927927928,14.842630085913104 + 05/09 09:30:00,13.077477477477478,13.077477477477478,14.800444667981923 + 05/09 09:40:00,13.027027027027028,13.027027027027028,14.759555214900868 + 05/09 09:50:00,12.976576576576579,12.976576576576579,14.720113291034112 + 05/09 10:00:00,12.926126126126127,12.926126126126127,14.681827479792709 + 05/09 10:10:00,12.87987987987988,12.87987987987988,14.64430711718968 + 05/09 10:20:00,12.833633633633636,12.833633633633636,14.613027763178993 + 05/09 10:30:00,12.8,12.8,14.585566709365855 + 05/09 10:40:00,12.8,12.8,14.560079533372157 + 05/09 10:50:00,12.8,12.8,14.535118079892103 + 05/09 11:00:00,12.8,12.8,14.511051107100175 + 05/09 11:10:00,12.8,12.8,14.488507268563208 + 05/09 11:20:00,12.8,12.8,14.477777528512333 + 05/09 11:30:00,12.8,12.8,14.458366306090215 + 05/09 11:40:00,12.8,12.8,14.440136758582057 + 05/09 11:50:00,12.8,12.8,14.423038715608195 + 05/09 12:00:00,12.8,12.8,14.406978160545938 + 05/09 12:10:00,12.8,12.8,14.391673660371478 + 05/09 12:20:00,12.8,12.8,14.368048209356509 + 05/09 12:30:00,12.8,12.8,14.354667358300734 + 05/09 12:40:00,12.8,12.8,14.338212690947176 + 05/09 12:50:00,12.8,12.8,14.325513868148205 + 05/09 13:00:00,12.8,12.8,14.312615687475619 + 05/09 13:10:00,12.8,12.8,14.299518322364922 + 05/09 13:20:00,12.8,12.8,14.29020556236542 + 05/09 13:30:00,12.8,12.8,14.277167072720859 + 05/09 13:40:00,12.8,12.8,14.264872489192165 + 05/09 13:50:00,12.8,12.8,14.255766033046639 + 05/09 14:00:00,12.8,12.8,14.245801888009139 + 05/09 14:10:00,12.8,12.8,14.23675169136086 + 05/09 14:20:00,12.8,12.8,14.2353414468855 + 05/09 14:30:00,12.8,12.8,14.229222919786082 + 05/09 14:40:00,12.8,12.8,14.223457078623124 + 05/09 14:50:00,12.8,12.8,14.21992569925576 + 05/09 15:00:00,12.8,12.8,14.21647357415826 + 05/09 15:05:00,12.8,12.8,16.37565294824288 + 05/09 15:10:00,12.8,12.8,16.375333985180875 + 05/09 15:20:00,12.8,12.8,16.626478419135926 + 05/09 15:30:00,12.8,12.8,16.723268875548429 + 05/09 15:40:00,12.8,12.8,16.79695411642942 + 05/09 15:50:00,12.8,12.8,16.85186700700957 + 05/09 16:00:00,12.8,12.8,16.898566869085479 + 05/09 16:10:00,12.8,12.8,16.96564395239779 + 05/09 16:20:00,12.8,12.8,17.02208751396428 + 05/09 16:30:00,12.8,12.8,17.0551807376397 + 05/09 16:40:00,12.8,12.8,17.085660686441395 + 05/09 16:50:00,12.8,12.8,17.114249808368453 + 05/09 17:00:00,12.8,12.8,17.141259231972819 + 05/09 17:10:00,12.846246246246248,12.846246246246248,17.17966755847266 + 05/09 17:20:00,12.892492492492494,12.892492492492494,17.208303551831155 + 05/09 17:30:00,12.938738738738739,12.938738738738739,17.230305445636973 + 05/09 17:40:00,12.984984984984987,12.984984984984987,17.25123778385111 + 05/09 17:50:00,13.031231231231232,13.031231231231232,17.271693152276045 + 05/09 18:00:00,13.077477477477478,13.077477477477478,17.29162406570654 + 05/09 18:10:00,13.169969969969971,13.169969969969971,17.311441086469814 + 05/09 18:20:00,13.262462462462463,13.262462462462463,17.33189154994941 + 05/09 18:30:00,13.354954954954956,13.354954954954956,17.351932705203504 + 05/09 18:40:00,13.447447447447449,13.447447447447449,17.37163361326229 + 05/09 18:50:00,13.539939939939942,13.539939939939942,17.39072567398485 + 05/09 19:00:00,13.632432432432433,13.632432432432433,17.409217077205967 + 05/09 19:10:00,13.724924924924926,13.724924924924926,17.440328053532718 + 05/09 19:20:00,13.817417417417417,13.817417417417417,17.458745626107239 + 05/09 19:30:00,13.90990990990991,13.90990990990991,17.47627215862058 + 05/09 19:40:00,14.002402402402403,14.002402402402403,17.493283513288554 + 05/09 19:50:00,14.094894894894896,14.094894894894896,17.509348101117579 + 05/09 20:00:00,14.187387387387388,14.187387387387388,17.52442935627414 + 05/09 20:10:00,14.284084084084084,14.284084084084084,17.515673092995646 + 05/09 20:20:00,14.38078078078078,14.38078078078078,17.533313682347648 + 05/09 20:30:00,14.477477477477479,14.477477477477479,17.54584263271924 + 05/09 20:40:00,14.574174174174175,14.574174174174175,17.557811507475507 + 05/09 20:50:00,14.670870870870872,14.670870870870872,17.56929690933324 + 05/09 21:00:00,14.767567567567568,14.767567567567568,17.58036447868661 + 05/09 21:10:00,14.86006006006006,14.86006006006006,17.591527243145835 + 05/09 21:20:00,14.952552552552552,14.952552552552552,17.602784940269286 + 05/09 21:30:00,15.045045045045045,15.045045045045045,17.613765319590326 + 05/09 21:40:00,15.137537537537538,15.137537537537538,17.62458562708714 + 05/09 21:50:00,15.23003003003003,15.23003003003003,17.63513255396754 + 05/09 22:00:00,15.322522522522523,15.322522522522523,17.64543080971197 + 05/09 22:10:00,15.276276276276276,15.276276276276276,19.0298557316643 + 05/09 22:20:00,15.23003003003003,15.23003003003003,19.17784941825204 + 05/09 22:30:00,15.183783783783785,15.183783783783785,19.244539287832298 + 05/09 22:40:00,15.137537537537538,15.137537537537538,19.297117523591355 + 05/09 22:50:00,15.091291291291292,15.091291291291292,19.339636445890503 + 05/09 23:00:00,15.045045045045045,15.045045045045045,19.37535979583699 + 05/09 23:10:00,15.091291291291292,15.091291291291292,19.406442744662514 + 05/09 23:20:00,15.137537537537538,15.137537537537538,19.434196079046577 + 05/09 23:30:00,15.183783783783785,15.183783783783785,19.45936246027434 + 05/09 23:40:00,15.23003003003003,15.23003003003003,19.48249396050512 + 05/09 23:50:00,15.276276276276276,15.276276276276276,19.50394410662014 + 05/09 24:00:00,15.322522522522523,15.322522522522523,19.523899374343605 + 05/10 00:10:00,15.343543543543543,15.343543543543543,19.543302342133097 + 05/10 00:20:00,15.364564564564564,15.364564564564564,19.56163793411563 + 05/10 00:30:00,15.385585585585586,15.385585585585586,19.578993559691065 + 05/10 00:40:00,15.406606606606607,15.406606606606607,19.595489149144084 + 05/10 00:50:00,15.427627627627628,15.427627627627628,19.611129422854373 + 05/10 01:00:00,15.448648648648648,15.448648648648648,19.626152901153107 + 05/10 01:10:00,15.448648648648648,15.448648648648648,19.639713527922905 + 05/10 01:20:00,15.448648648648648,15.448648648648648,19.652656713654474 + 05/10 01:30:00,15.448648648648648,15.448648648648648,19.66504924783434 + 05/10 01:40:00,15.448648648648648,15.448648648648648,19.67686596744314 + 05/10 01:50:00,15.448648648648648,15.448648648648648,19.688239146402304 + 05/10 02:00:00,15.448648648648648,15.448648648648648,19.69922609519167 + 05/10 02:10:00,15.473873873873874,15.473873873873874,19.71069564738179 + 05/10 02:20:00,15.499099099099098,15.499099099099098,19.721807094562715 + 05/10 02:30:00,15.524324324324324,15.524324324324324,19.73257946534922 + 05/10 02:40:00,15.54954954954955,15.54954954954955,19.74303728701851 + 05/10 02:50:00,15.574774774774774,15.574774774774774,19.75329656637315 + 05/10 03:00:00,15.6,15.6,19.76330589866103 + 05/10 03:10:00,15.6,15.6,19.772833325734266 + 05/10 03:20:00,15.6,15.6,19.782317334072628 + 05/10 03:30:00,15.6,15.6,19.79160625580708 + 05/10 03:40:00,15.6,15.6,19.80090964078459 + 05/10 03:50:00,15.6,15.6,19.8100985729136 + 05/10 04:00:00,15.6,15.6,19.819165519436575 + 05/10 04:10:00,15.6,15.6,19.82699252986287 + 05/10 04:20:00,15.6,15.6,19.834283914693118 + 05/10 04:30:00,15.6,15.6,19.84122032669927 + 05/10 04:40:00,15.6,15.6,19.84770780218783 + 05/10 04:50:00,15.6,15.6,19.853785772989004 + 05/10 05:00:00,15.6,15.6,19.859490366469666 + 05/10 05:10:00,15.6,15.6,19.866188212100587 + 05/10 05:20:00,15.6,15.6,19.87257314157246 + 05/10 05:30:00,15.6,15.6,19.878671029255338 + 05/10 05:40:00,15.6,15.6,19.884471642214828 + 05/10 05:50:00,15.6,15.6,19.889610380236844 + 05/10 06:00:00,15.6,15.6,19.893610979729407 + 05/10 06:10:00,15.6,15.6,17.876284120243004 + 05/10 06:20:00,15.6,15.6,17.639384058451964 + 05/10 06:30:00,15.6,15.6,17.5503694359949 + 05/10 06:40:00,15.6,15.6,17.480141655921547 + 05/10 06:50:00,15.6,15.6,17.423669014741536 + 05/10 07:00:00,15.6,15.6,17.375773453669983 + 05/10 07:10:00,15.6,15.6,15.880049194702677 + 05/10 07:20:00,15.6,15.6,15.656268594458905 + 05/10 07:30:00,15.536936936936936,15.536936936936936,15.548784366047738 + 05/10 07:40:00,15.465465465465466,15.465465465465466,15.459613597346508 + 05/10 07:50:00,15.393993993993995,15.393993993993995,15.384618346874787 + 05/10 08:00:00,15.322522522522523,15.322522522522523,15.319481535369962 + 05/10 08:05:00,15.204804804804806,15.204804804804806,15.234992164365768 + 05/10 08:10:00,15.204804804804806,15.204804804804806,15.23444761967034 + 05/10 08:20:00,15.087087087087087,15.087087087087087,15.170661875088716 + 05/10 08:30:00,14.96936936936937,14.96936936936937,15.11929737620817 + 05/10 08:40:00,14.851651651651653,14.851651651651653,15.070616022977298 + 05/10 08:50:00,14.733933933933934,14.733933933933934,15.024658915423496 + 05/10 09:00:00,14.616216216216217,14.616216216216217,14.980770896681359 + 05/10 09:10:00,14.544744744744746,14.544744744744746,14.939132490041365 + 05/10 09:20:00,14.473273273273274,14.473273273273274,14.888982984435592 + 05/10 09:30:00,14.401801801801803,14.401801801801803,14.851017786842438 + 05/10 09:40:00,14.33033033033033,14.33033033033033,14.814745875400389 + 05/10 09:50:00,14.25885885885886,14.25885885885886,14.780300417452354 + 05/10 10:00:00,14.187387387387388,14.187387387387388,14.747741301586207 + 05/10 10:10:00,14.12012012012012,14.12012012012012,14.717094132073289 + 05/10 10:20:00,14.052852852852853,14.052852852852853,14.685615524299444 + 05/10 10:30:00,13.985585585585586,13.985585585585586,14.658900662161969 + 05/10 10:40:00,13.91831831831832,13.91831831831832,14.633503303890372 + 05/10 10:50:00,13.851051051051052,13.851051051051052,14.609105889146095 + 05/10 11:00:00,13.783783783783785,13.783783783783785,14.58568707370352 + 05/10 11:10:00,13.758558558558559,13.758558558558559,14.563122750839112 + 05/10 11:20:00,13.733333333333335,13.733333333333335,14.551178294686047 + 05/10 11:30:00,13.708108108108109,13.708108108108109,14.530422877537128 + 05/10 11:40:00,13.682882882882883,13.682882882882883,14.510556019196367 + 05/10 11:50:00,13.657657657657659,13.657657657657659,14.49182529298708 + 05/10 12:00:00,13.632432432432433,13.632432432432433,14.474088768271596 + 05/10 12:10:00,13.539939939939942,13.539939939939942,14.456932842091172 + 05/10 12:20:00,13.447447447447449,13.447447447447449,14.431988970998724 + 05/10 12:30:00,13.354954954954956,13.354954954954956,14.417461172741423 + 05/10 12:40:00,13.262462462462464,13.262462462462464,14.400248466240847 + 05/10 12:50:00,13.169969969969971,13.169969969969971,14.385966073368408 + 05/10 13:00:00,13.077477477477478,13.077477477477478,14.37263351472331 + 05/10 13:10:00,13.052252252252253,13.052252252252253,14.357345748759526 + 05/10 13:20:00,13.027027027027028,13.027027027027028,14.349030046330343 + 05/10 13:30:00,13.001801801801803,13.001801801801803,14.337090886414304 + 05/10 13:40:00,12.976576576576577,12.976576576576577,14.324299382549894 + 05/10 13:50:00,12.951351351351353,12.951351351351353,14.3146688535787 + 05/10 14:00:00,12.926126126126127,12.926126126126127,14.304715635020841 + 05/10 14:10:00,12.87987987987988,12.87987987987988,14.29539527101362 + 05/10 14:20:00,12.833633633633636,12.833633633633636,14.292299244176056 + 05/10 14:30:00,12.8,12.8,14.286664793409848 + 05/10 14:40:00,12.8,12.8,14.279896185453282 + 05/10 14:50:00,12.8,12.8,14.276762799552316 + 05/10 15:00:00,12.8,12.8,14.274621799973714 + 05/10 15:05:00,12.8,12.8,16.433038776944899 + 05/10 15:10:00,12.8,12.8,16.432219982348714 + 05/10 15:20:00,12.8,12.8,16.68266901845131 + 05/10 15:30:00,12.8,12.8,16.78033688944573 + 05/10 15:40:00,12.8,12.8,16.854284443203434 + 05/10 15:50:00,12.8,12.8,16.91094658027545 + 05/10 16:00:00,12.8,12.8,16.95643939636776 + 05/10 16:10:00,12.8,12.8,17.02290419492795 + 05/10 16:20:00,12.8,12.8,17.076354911479048 + 05/10 16:30:00,12.8,12.8,17.106218592587334 + 05/10 16:40:00,12.8,12.8,17.13292261832016 + 05/10 16:50:00,12.8,12.8,17.157643204692915 + 05/10 17:00:00,12.8,12.8,17.180737115326765 + 05/10 17:10:00,12.8,12.8,17.2157408352996 + 05/10 17:20:00,12.8,12.8,17.24231340605146 + 05/10 17:30:00,12.8,12.8,17.26237298143328 + 05/10 17:40:00,12.8,12.8,17.281751096725818 + 05/10 17:50:00,12.8,12.8,17.300710346401837 + 05/10 18:00:00,12.8,12.8,17.319303074797696 + 05/10 18:10:00,12.846246246246248,12.846246246246248,17.33755618254735 + 05/10 18:20:00,12.892492492492494,12.892492492492494,17.355981632820418 + 05/10 18:30:00,12.938738738738739,12.938738738738739,17.373911725162448 + 05/10 18:40:00,12.984984984984987,12.984984984984987,17.391422212984847 + 05/10 18:50:00,13.031231231231232,13.031231231231232,17.40842174121152 + 05/10 19:00:00,13.077477477477478,13.077477477477478,17.424972976769039 + 05/10 19:10:00,13.216216216216216,13.216216216216216,17.45461137479338 + 05/10 19:20:00,13.354954954954956,13.354954954954956,17.47373672323088 + 05/10 19:30:00,13.493693693693695,13.493693693693695,17.491869365647724 + 05/10 19:40:00,13.632432432432433,13.632432432432433,17.50970369929984 + 05/10 19:50:00,13.771171171171173,13.771171171171173,17.52638239414366 + 05/10 20:00:00,13.90990990990991,13.90990990990991,17.542020880502528 + 05/10 20:10:00,13.981381381381383,13.981381381381383,17.53411384255517 + 05/10 20:20:00,14.052852852852853,14.052852852852853,17.55238265719053 + 05/10 20:30:00,14.124324324324326,14.124324324324326,17.565374171014125 + 05/10 20:40:00,14.195795795795796,14.195795795795796,17.577649651697006 + 05/10 20:50:00,14.267267267267269,14.267267267267269,17.58931777343085 + 05/10 21:00:00,14.338738738738739,14.338738738738739,17.600462849114526 + 05/10 21:10:00,14.41021021021021,14.41021021021021,17.610757190451069 + 05/10 21:20:00,14.481681681681682,14.481681681681682,17.62032416966664 + 05/10 21:30:00,14.553153153153153,14.553153153153153,17.62960161896882 + 05/10 21:40:00,14.624624624624625,14.624624624624625,17.638517771162 + 05/10 21:50:00,14.696096096096096,14.696096096096096,17.64715513889546 + 05/10 22:00:00,14.767567567567568,14.767567567567568,17.65566328177017 + 05/10 22:10:00,14.813813813813815,14.813813813813815,19.03721367069035 + 05/10 22:20:00,14.860060060060059,14.860060060060059,19.184573106255983 + 05/10 22:30:00,14.906306306306306,14.906306306306306,19.251027149531489 + 05/10 22:40:00,14.952552552552552,14.952552552552552,19.303717301969927 + 05/10 22:50:00,14.998798798798799,14.998798798798799,19.346746456997218 + 05/10 23:00:00,15.045045045045045,15.045045045045045,19.383268270452864 + 05/10 23:10:00,15.091291291291292,15.091291291291292,19.41564339581508 + 05/10 23:20:00,15.137537537537538,15.137537537537538,19.444394760399697 + 05/10 23:30:00,15.183783783783785,15.183783783783785,19.470320538839688 + 05/10 23:40:00,15.23003003003003,15.23003003003003,19.494067041971804 + 05/10 23:50:00,15.276276276276276,15.276276276276276,19.516024400851003 + 05/10 24:00:00,15.322522522522523,15.322522522522523,19.536469526222584 + 05/11 00:10:00,15.368768768768769,15.368768768768769,19.555342947419285 + 05/11 00:20:00,15.415015015015016,15.415015015015016,19.573112495505229 + 05/11 00:30:00,15.46126126126126,15.46126126126126,19.58995493030126 + 05/11 00:40:00,15.507507507507507,15.507507507507507,19.606036059399849 + 05/11 00:50:00,15.553753753753754,15.553753753753754,19.621390278351023 + 05/11 01:00:00,15.6,15.6,19.636093596427583 + 05/11 01:10:00,15.6,15.6,19.65065658348292 + 05/11 01:20:00,15.6,15.6,19.66452413141999 + 05/11 01:30:00,15.6,15.6,19.677820256147183 + 05/11 01:40:00,15.6,15.6,19.690518883137579 + 05/11 01:50:00,15.6,15.6,19.702672408622158 + 05/11 02:00:00,15.6,15.6,19.71431927549176 + 05/11 02:10:00,15.6,15.6,19.725425526033477 + 05/11 02:20:00,15.6,15.6,19.736321996761455 + 05/11 02:30:00,15.6,15.6,19.746850624043398 + 05/11 02:40:00,15.6,15.6,19.75706767010266 + 05/11 02:50:00,15.6,15.6,19.76696481061769 + 05/11 03:00:00,15.6,15.6,19.77646821094228 + 05/11 03:10:00,15.6,15.6,19.78586931257036 + 05/11 03:20:00,15.6,15.6,19.795108246573734 + 05/11 03:30:00,15.6,15.6,19.804175633104806 + 05/11 03:40:00,15.6,15.6,19.81309039593981 + 05/11 03:50:00,15.6,15.6,19.82179018819325 + 05/11 04:00:00,15.6,15.6,19.83035531050276 + 05/11 04:10:00,15.6,15.6,19.83825414819066 + 05/11 04:20:00,15.6,15.6,19.845883451283269 + 05/11 04:30:00,15.6,15.6,19.853414504041788 + 05/11 04:40:00,15.6,15.6,19.86075915397787 + 05/11 04:50:00,15.6,15.6,19.86798601258043 + 05/11 05:00:00,15.6,15.6,19.875180435388939 + 05/11 05:10:00,15.6,15.6,19.883231295903849 + 05/11 05:20:00,15.6,15.6,19.891224436055297 + 05/11 05:30:00,15.6,15.6,19.89900370725737 + 05/11 05:40:00,15.6,15.6,19.90655619690684 + 05/11 05:50:00,15.6,15.6,19.91359437025472 + 05/11 06:00:00,15.6,15.6,19.919421120717879 + 05/11 06:10:00,15.6,15.6,17.908069116106409 + 05/11 06:20:00,15.6,15.6,17.67282834154669 + 05/11 06:30:00,15.6,15.6,17.584087729307 + 05/11 06:40:00,15.6,15.6,17.51301239716128 + 05/11 06:50:00,15.6,15.6,17.45490873019875 + 05/11 07:00:00,15.6,15.6,17.40479976028136 + 05/11 07:05:00,15.528528528528529,15.528528528528529,15.911413833235866 + 05/11 07:10:00,15.528528528528529,15.528528528528529,15.911191414409858 + 05/11 07:15:00,15.457057057057057,15.457057057057057,15.686190672628366 + 05/11 07:20:00,15.457057057057057,15.457057057057057,15.686153136995058 + 05/11 07:25:00,15.385585585585586,15.385585585585586,15.576592303412414 + 05/11 07:30:00,15.385585585585586,15.385585585585586,15.576670172351234 + 05/11 07:40:00,15.314114114114114,15.314114114114114,15.483888855778578 + 05/11 07:50:00,15.242642642642644,15.242642642642644,15.406344828976792 + 05/11 08:00:00,15.17117117117117,15.17117117117117,15.338475380461264 + 05/11 08:05:00,15.057657657657657,15.057657657657657,15.25326726111068 + 05/11 08:10:00,15.057657657657657,15.057657657657657,15.251828697387622 + 05/11 08:20:00,14.944144144144144,14.944144144144144,15.186091247443738 + 05/11 08:30:00,14.83063063063063,14.83063063063063,15.135081599439701 + 05/11 08:40:00,14.717117117117118,14.717117117117118,15.086686353828024 + 05/11 08:50:00,14.603603603603604,14.603603603603604,15.04212506888529 + 05/11 09:00:00,14.49009009009009,14.49009009009009,15.00016738015415 + 05/11 09:10:00,14.372372372372372,14.372372372372372,14.960685916076825 + 05/11 09:20:00,14.254654654654655,14.254654654654655,14.914109875616074 + 05/11 09:30:00,14.136936936936938,14.136936936936938,14.880027874064528 + 05/11 09:40:00,14.01921921921922,14.01921921921922,14.847981027070258 + 05/11 09:50:00,13.901501501501502,13.901501501501502,14.81773656469955 + 05/11 10:00:00,13.783783783783785,13.783783783783785,14.789360155819845 + 05/11 10:10:00,13.666066066066067,13.666066066066067,14.763936601540154 + 05/11 10:20:00,13.548348348348349,13.548348348348349,14.73284305925039 + 05/11 10:30:00,13.430630630630632,13.430630630630632,14.707098513534195 + 05/11 10:40:00,13.312912912912914,13.312912912912914,14.68302719334732 + 05/11 10:50:00,13.195195195195196,13.195195195195196,14.66221489881733 + 05/11 11:00:00,13.077477477477478,13.077477477477478,14.64466966145393 + 05/11 11:10:00,12.95975975975976,12.95975975975976,14.629154168792639 + 05/11 11:20:00,12.842042042042042,12.842042042042042,14.62107835839027 + 05/11 11:30:00,12.8,12.8,14.60517624248839 + 05/11 11:40:00,12.8,12.8,14.58906331747407 + 05/11 11:50:00,12.8,12.8,14.571774891314688 + 05/11 12:00:00,12.8,12.8,14.55242546405272 + 05/11 12:10:00,12.8,12.8,14.531780963335044 + 05/11 12:20:00,12.8,12.8,14.504969532810412 + 05/11 12:30:00,12.8,12.8,14.488592002005142 + 05/11 12:40:00,12.8,12.8,14.471947063351419 + 05/11 12:50:00,12.8,12.8,14.454147221203085 + 05/11 13:00:00,12.8,12.8,14.439783883018727 + 05/11 13:10:00,12.8,12.8,14.424093511259784 + 05/11 13:20:00,12.8,12.8,14.41292049401931 + 05/11 13:30:00,12.8,12.8,14.400253141575874 + 05/11 13:40:00,12.8,12.8,14.386187630139006 + 05/11 13:50:00,12.8,12.8,14.37479627337619 + 05/11 14:00:00,12.8,12.8,14.366569913925256 + 05/11 14:10:00,12.8,12.8,14.357695563934044 + 05/11 14:20:00,12.8,12.8,14.354591745174464 + 05/11 14:30:00,12.8,12.8,14.350455436247412 + 05/11 14:40:00,12.8,12.8,14.345423241158807 + 05/11 14:50:00,12.8,12.8,14.33953605037737 + 05/11 15:00:00,12.8,12.8,14.335006490485876 + 05/11 15:05:00,12.8,12.8,16.490461544834227 + 05/11 15:10:00,12.8,12.8,16.488771211224653 + 05/11 15:20:00,12.8,12.8,16.734493265147699 + 05/11 15:30:00,12.8,12.8,16.832154972849489 + 05/11 15:40:00,12.8,12.8,16.90528348395849 + 05/11 15:50:00,12.8,12.8,16.962349072200995 + 05/11 16:00:00,12.8,12.8,17.007918635089273 + 05/11 16:10:00,12.8,12.8,17.07065232337209 + 05/11 16:20:00,12.8,12.8,17.122065904418404 + 05/11 16:30:00,12.8,12.8,17.149695596595924 + 05/11 16:40:00,12.8,12.8,17.17407958808365 + 05/11 16:50:00,12.8,12.8,17.19656589246366 + 05/11 17:00:00,12.8,12.8,17.217541469940018 + 05/11 17:10:00,12.8,12.8,17.250528146239487 + 05/11 17:20:00,12.8,12.8,17.274391138427725 + 05/11 17:30:00,12.8,12.8,17.29224482201044 + 05/11 17:40:00,12.8,12.8,17.309484237357798 + 05/11 17:50:00,12.8,12.8,17.326809151645489 + 05/11 18:00:00,12.8,12.8,17.344203653581834 + 05/11 18:10:00,12.8,12.8,17.361634256514429 + 05/11 18:20:00,12.8,12.8,17.380128516135895 + 05/11 18:30:00,12.8,12.8,17.39811978620446 + 05/11 18:40:00,12.8,12.8,17.41561183651322 + 05/11 18:50:00,12.833633633633636,12.833633633633636,17.43209022101138 + 05/11 19:00:00,12.926126126126127,12.926126126126127,17.447523049419269 + 05/11 19:10:00,12.997597597597599,12.997597597597599,17.475356668455477 + 05/11 19:20:00,13.06906906906907,13.06906906906907,17.490734719100407 + 05/11 19:30:00,13.140540540540542,13.140540540540542,17.50545467189329 + 05/11 19:40:00,13.212012012012015,13.212012012012015,17.520040754900064 + 05/11 19:50:00,13.283483483483485,13.283483483483485,17.534114660948729 + 05/11 20:00:00,13.354954954954956,13.354954954954956,17.547491864026655 + 05/11 20:10:00,13.426426426426428,13.426426426426428,17.537516994186633 + 05/11 20:20:00,13.497897897897899,13.497897897897899,17.553825613397956 + 05/11 20:30:00,13.56936936936937,13.56936936936937,17.565244111809738 + 05/11 20:40:00,13.640840840840842,13.640840840840842,17.576239272979139 + 05/11 20:50:00,13.712312312312314,13.712312312312314,17.58688251236963 + 05/11 21:00:00,13.783783783783785,13.783783783783785,17.597201806496835 + 05/11 21:10:00,13.804804804804805,13.804804804804805,17.607003328599544 + 05/11 21:20:00,13.825825825825828,13.825825825825828,17.617124906742654 + 05/11 21:30:00,13.846846846846848,13.846846846846848,17.626654558006338 + 05/11 21:40:00,13.867867867867869,13.867867867867869,17.63573371735242 + 05/11 21:50:00,13.88888888888889,13.88888888888889,17.644325168567137 + 05/11 22:00:00,13.90990990990991,13.90990990990991,17.65250358461522 + 05/11 22:10:00,13.935135135135136,13.935135135135136,19.02586665617334 + 05/11 22:20:00,13.960360360360362,13.960360360360362,19.171579093093294 + 05/11 22:30:00,13.985585585585586,13.985585585585586,19.236594489696875 + 05/11 22:40:00,14.010810810810812,14.010810810810812,19.288112752990185 + 05/11 22:50:00,14.036036036036038,14.036036036036038,19.329953688566179 + 05/11 23:00:00,14.061261261261262,14.061261261261262,19.365281306587016 + 05/11 23:10:00,14.061261261261262,14.061261261261262,19.39514941319908 + 05/11 23:20:00,14.061261261261262,14.061261261261262,19.421120935105447 + 05/11 23:30:00,14.061261261261262,14.061261261261262,19.444473773555417 + 05/11 23:40:00,14.061261261261262,14.061261261261262,19.46564092015475 + 05/11 23:50:00,14.061261261261262,14.061261261261262,19.485179885911117 + 05/11 24:00:00,14.061261261261262,14.061261261261262,19.50340828632239 + 05/12 00:10:00,14.082282282282283,14.082282282282283,19.52153431610299 + 05/12 00:20:00,14.103303303303303,14.103303303303303,19.538931705430345 + 05/12 00:30:00,14.124324324324324,14.124324324324324,19.555512098327406 + 05/12 00:40:00,14.145345345345346,14.145345345345346,19.571381169456953 + 05/12 00:50:00,14.166366366366367,14.166366366366367,19.586488350376727 + 05/12 01:00:00,14.187387387387388,14.187387387387388,19.60105133891175 + 05/12 01:10:00,14.212612612612613,14.212612612612613,19.61503335052146 + 05/12 01:20:00,14.237837837837838,14.237837837837838,19.628978267754275 + 05/12 01:30:00,14.263063063063063,14.263063063063063,19.642330600424239 + 05/12 01:40:00,14.288288288288289,14.288288288288289,19.655194288523675 + 05/12 01:50:00,14.313513513513513,14.313513513513513,19.667532244202826 + 05/12 02:00:00,14.338738738738739,14.338738738738739,19.67940308364994 + 05/12 02:10:00,14.41021021021021,14.41021021021021,19.69131030882433 + 05/12 02:20:00,14.481681681681682,14.481681681681682,19.70246281699736 + 05/12 02:30:00,14.553153153153153,14.553153153153153,19.713044544970896 + 05/12 02:40:00,14.624624624624625,14.624624624624625,19.72317211618992 + 05/12 02:50:00,14.696096096096096,14.696096096096096,19.73306902917594 + 05/12 03:00:00,14.767567567567568,14.767567567567568,19.742737107855505 + 05/12 03:10:00,14.813813813813815,14.813813813813815,19.75144263738027 + 05/12 03:20:00,14.860060060060059,14.860060060060059,19.760070289953995 + 05/12 03:30:00,14.906306306306306,14.906306306306306,19.768488563169958 + 05/12 03:40:00,14.952552552552552,14.952552552552552,19.77689987095421 + 05/12 03:50:00,14.998798798798799,14.998798798798799,19.785188234905318 + 05/12 04:00:00,15.045045045045045,15.045045045045045,19.7933513835605 + 05/12 04:10:00,15.066066066066066,15.066066066066066,19.800546846072927 + 05/12 04:20:00,15.087087087087087,15.087087087087087,19.807303644942374 + 05/12 04:30:00,15.108108108108109,15.108108108108109,19.81400803705101 + 05/12 04:40:00,15.12912912912913,15.12912912912913,19.82055621609775 + 05/12 04:50:00,15.15015015015015,15.15015015015015,19.827036032829239 + 05/12 05:00:00,15.17117117117117,15.17117117117117,19.83357167967169 + 05/12 05:10:00,15.196396396396397,15.196396396396397,19.840919648340955 + 05/12 05:20:00,15.22162162162162,15.22162162162162,19.848298610981496 + 05/12 05:30:00,15.246846846846847,15.246846846846847,19.855410373769364 + 05/12 05:40:00,15.272072072072073,15.272072072072073,19.862219696479344 + 05/12 05:50:00,15.297297297297297,15.297297297297297,19.868242846879043 + 05/12 06:00:00,15.322522522522523,15.322522522522523,19.87288630456132 + 05/12 06:10:00,15.297297297297297,15.297297297297297,17.866323651709299 + 05/12 06:20:00,15.272072072072073,15.272072072072073,17.63140527827658 + 05/12 06:30:00,15.246846846846847,15.246846846846847,17.543257554451765 + 05/12 06:40:00,15.22162162162162,15.22162162162162,17.473381494089403 + 05/12 06:50:00,15.196396396396397,15.196396396396397,17.416931865274134 + 05/12 07:00:00,15.17117117117117,15.17117117117117,17.369027181557994 + 05/12 07:05:00,15.032432432432433,15.032432432432433,15.883653270950769 + 05/12 07:10:00,15.032432432432433,15.032432432432433,15.883108787771655 + 05/12 07:15:00,14.893693693693694,14.893693693693694,15.662003696554545 + 05/12 07:20:00,14.893693693693694,14.893693693693694,15.662067596021372 + 05/12 07:30:00,14.754954954954956,14.754954954954956,15.554885835053158 + 05/12 07:40:00,14.616216216216217,14.616216216216217,15.466611438299016 + 05/12 07:50:00,14.477477477477479,14.477477477477479,15.391511575864002 + 05/12 08:00:00,14.338738738738739,14.338738738738739,15.325252884419582 + 05/12 08:05:00,14.267267267267269,14.267267267267269,15.24106665928008 + 05/12 08:10:00,14.267267267267269,14.267267267267269,15.240069539255929 + 05/12 08:20:00,14.195795795795796,14.195795795795796,15.17560934057663 + 05/12 08:30:00,14.124324324324326,14.124324324324326,15.124617181585167 + 05/12 08:40:00,14.052852852852853,14.052852852852853,15.076207212077133 + 05/12 08:50:00,13.981381381381383,13.981381381381383,15.03138037020015 + 05/12 09:00:00,13.90990990990991,13.90990990990991,14.989385786093413 + 05/12 09:10:00,13.771171171171173,13.771171171171173,14.948409770439512 + 05/12 09:20:00,13.632432432432433,13.632432432432433,14.89794068794522 + 05/12 09:30:00,13.493693693693695,13.493693693693695,14.859158889536437 + 05/12 09:40:00,13.354954954954956,13.354954954954956,14.821858772251867 + 05/12 09:50:00,13.216216216216218,13.216216216216218,14.787135911407664 + 05/12 10:00:00,13.077477477477478,13.077477477477478,14.755323109963938 + 05/12 10:10:00,13.031231231231232,13.031231231231232,14.727128991777026 + 05/12 10:20:00,12.984984984984987,12.984984984984987,14.697864183334229 + 05/12 10:30:00,12.938738738738739,12.938738738738739,14.675002461422292 + 05/12 10:40:00,12.892492492492494,12.892492492492494,14.653688043984222 + 05/12 10:50:00,12.846246246246248,12.846246246246248,14.632445495557427 + 05/12 11:00:00,12.8,12.8,14.610571591413846 + 05/12 11:10:00,12.8,12.8,14.587966168778158 + 05/12 11:20:00,12.8,12.8,14.57493598814537 + 05/12 11:30:00,12.8,12.8,14.551882262978995 + 05/12 11:40:00,12.8,12.8,14.529132413163424 + 05/12 11:50:00,12.8,12.8,14.50750470010357 + 05/12 12:00:00,12.8,12.8,14.487297469292639 + 05/12 12:10:00,12.8,12.8,14.468366587912837 + 05/12 12:20:00,12.8,12.8,14.43940534455436 + 05/12 12:30:00,12.8,12.8,14.42180038804137 + 05/12 12:40:00,12.8,12.8,14.40577737376024 + 05/12 12:50:00,12.8,12.8,14.389337271824049 + 05/12 13:00:00,12.8,12.8,14.37419072708637 + 05/12 13:10:00,12.8,12.8,14.362616530233059 + 05/12 13:20:00,12.8,12.8,14.355626962510377 + 05/12 13:30:00,12.8,12.8,14.348009887535648 + 05/12 13:40:00,12.8,12.8,14.342326782604156 + 05/12 13:50:00,12.8,12.8,14.333479528802645 + 05/12 14:00:00,12.8,12.8,14.325582761010777 + 05/12 14:10:00,12.8,12.8,14.318402334289953 + 05/12 14:20:00,12.8,12.8,14.309377467020618 + 05/12 14:30:00,12.8,12.8,14.298745134362435 + 05/12 14:40:00,12.8,12.8,14.289279365148025 + 05/12 14:50:00,12.8,12.8,14.27939510944306 + 05/12 15:00:00,12.8,12.8,14.269482920506423 + 05/12 15:05:00,12.8,12.8,16.422959727804586 + 05/12 15:10:00,12.8,12.8,16.421359522300358 + 05/12 15:20:00,12.8,12.8,16.66972616069992 + 05/12 15:30:00,12.8,12.8,16.765059145303604 + 05/12 15:40:00,12.8,12.8,16.83668849706314 + 05/12 15:50:00,12.8,12.8,16.893956282298079 + 05/12 16:00:00,12.8,12.8,16.941058523476678 + 05/12 16:10:00,12.8,12.8,17.007398274772958 + 05/12 16:20:00,12.8,12.8,17.061773582047313 + 05/12 16:30:00,12.8,12.8,17.092813324699454 + 05/12 16:40:00,12.8,12.8,17.118882452521946 + 05/12 16:50:00,12.8,12.8,17.146168271337083 + 05/12 17:00:00,12.8,12.8,17.168359327016267 + 05/12 17:10:00,12.8,12.8,17.205314462588779 + 05/12 17:20:00,12.8,12.8,17.23503378775735 + 05/12 17:30:00,12.8,12.8,17.257706491008244 + 05/12 17:40:00,12.8,12.8,17.280302677998998 + 05/12 17:50:00,12.8,12.8,17.301482064519847 + 05/12 18:00:00,12.8,12.8,17.32165505351797 + 05/12 18:10:00,12.8,12.8,17.340759656791179 + 05/12 18:20:00,12.8,12.8,17.35778257926821 + 05/12 18:30:00,12.8,12.8,17.37412888194181 + 05/12 18:40:00,12.8,12.8,17.38978650228588 + 05/12 18:50:00,12.8,12.8,17.405175649923934 + 05/12 19:00:00,12.8,12.8,17.42041405254994 + 05/12 19:10:00,12.8,12.8,17.448671083207416 + 05/12 19:20:00,12.8,12.8,17.46414252248018 + 05/12 19:30:00,12.8,12.8,17.47903938580119 + 05/12 19:40:00,12.8,12.8,17.49346830375738 + 05/12 19:50:00,12.85885885885886,12.85885885885886,17.507056284647314 + 05/12 20:00:00,12.926126126126127,12.926126126126127,17.519696532345987 + 05/12 20:10:00,12.997597597597599,12.997597597597599,17.50873505782787 + 05/12 20:20:00,13.06906906906907,13.06906906906907,17.525050503425026 + 05/12 20:30:00,13.140540540540542,13.140540540540542,17.536234030992497 + 05/12 20:40:00,13.212012012012015,13.212012012012015,17.54704317928397 + 05/12 20:50:00,13.283483483483485,13.283483483483485,17.55733783563407 + 05/12 21:00:00,13.354954954954956,13.354954954954956,17.56713899199282 + 05/12 21:10:00,13.401201201201202,13.401201201201202,17.576760735224345 + 05/12 21:20:00,13.447447447447449,13.447447447447449,17.585510817898166 + 05/12 21:30:00,13.493693693693695,13.493693693693695,17.59395595107138 + 05/12 21:40:00,13.539939939939942,13.539939939939942,17.602088455684773 + 05/12 21:50:00,13.586186186186187,13.586186186186187,17.61000666710318 + 05/12 22:00:00,13.632432432432433,13.632432432432433,17.61780902993004 + 05/12 22:10:00,13.75015015015015,13.75015015015015,18.99297970142988 + 05/12 22:20:00,13.867867867867869,13.867867867867869,19.14092540260628 + 05/12 22:30:00,13.985585585585586,13.985585585585586,19.20786748560376 + 05/12 22:40:00,14.103303303303303,14.103303303303303,19.26159857050417 + 05/12 22:50:00,14.221021021021022,14.221021021021022,19.30576381971977 + 05/12 23:00:00,14.338738738738739,14.338738738738739,19.343510983370594 + 05/12 23:10:00,14.41021021021021,14.41021021021021,19.37675359164523 + 05/12 23:20:00,14.481681681681682,14.481681681681682,19.406724150410399 + 05/12 23:30:00,14.553153153153153,14.553153153153153,19.43381344124985 + 05/12 23:40:00,14.624624624624625,14.624624624624625,19.45876711697549 + 05/12 23:50:00,14.696096096096096,14.696096096096096,19.48185321038229 + 05/12 24:00:00,14.767567567567568,14.767567567567568,19.503360127210838 + 05/13 00:10:00,14.767567567567568,14.767567567567568,19.52397415117764 + 05/13 00:20:00,14.767567567567568,14.767567567567568,19.543385740637544 + 05/13 00:30:00,14.767567567567568,14.767567567567568,19.561587723682107 + 05/13 00:40:00,14.767567567567568,14.767567567567568,19.578778150835995 + 05/13 00:50:00,14.767567567567568,14.767567567567568,19.5950001261404 + 05/13 01:00:00,14.767567567567568,14.767567567567568,19.61036686263013 + 05/13 01:10:00,14.788588588588589,14.788588588588589,19.623871059612918 + 05/13 01:20:00,14.809609609609609,14.809609609609609,19.636245407226207 + 05/13 01:30:00,14.83063063063063,14.83063063063063,19.648169451254437 + 05/13 01:40:00,14.85165165165165,14.85165165165165,19.659507485286466 + 05/13 01:50:00,14.872672672672673,14.872672672672673,19.67044666605482 + 05/13 02:00:00,14.893693693693694,14.893693693693694,19.681024066094446 + 05/13 02:10:00,14.893693693693694,14.893693693693694,19.691862916392343 + 05/13 02:20:00,14.893693693693694,14.893693693693694,19.702391808057326 + 05/13 02:30:00,14.893693693693694,14.893693693693694,19.71253066059019 + 05/13 02:40:00,14.893693693693694,14.893693693693694,19.722292155810356 + 05/13 02:50:00,14.893693693693694,14.893693693693694,19.731706765152077 + 05/13 03:00:00,14.893693693693694,14.893693693693694,19.740710364209279 + 05/13 03:10:00,14.872672672672673,14.872672672672673,19.748902290983318 + 05/13 03:20:00,14.85165165165165,14.85165165165165,19.75683607389269 + 05/13 03:30:00,14.83063063063063,14.83063063063063,19.764481004715539 + 05/13 03:40:00,14.809609609609609,14.809609609609609,19.771860927807077 + 05/13 03:50:00,14.788588588588589,14.788588588588589,19.778919067723938 + 05/13 04:00:00,14.767567567567568,14.767567567567568,19.785761635091263 + 05/13 04:10:00,14.767567567567568,14.767567567567568,19.792734788634065 + 05/13 04:20:00,14.767567567567568,14.767567567567568,19.798851604919329 + 05/13 04:30:00,14.767567567567568,14.767567567567568,19.804710322733088 + 05/13 04:40:00,14.767567567567568,14.767567567567568,19.810127240984149 + 05/13 04:50:00,14.767567567567568,14.767567567567568,19.815316090629154 + 05/13 05:00:00,14.767567567567568,14.767567567567568,19.820384823376153 + 05/13 05:10:00,14.834834834834835,14.834834834834835,19.82551879380058 + 05/13 05:20:00,14.902102102102102,14.902102102102102,19.832235437882255 + 05/13 05:30:00,14.96936936936937,14.96936936936937,19.839130625435979 + 05/13 05:40:00,15.036636636636637,15.036636636636637,19.846533668277968 + 05/13 05:50:00,15.103903903903904,15.103903903903904,19.853723319213967 + 05/13 06:00:00,15.17117117117117,15.17117117117117,19.859993929511494 + 05/13 06:10:00,15.103903903903904,15.103903903903904,19.201469824765004 + 05/13 06:20:00,15.036636636636637,15.036636636636637,19.13480483550922 + 05/13 06:30:00,14.96936936936937,14.96936936936937,19.107698471902404 + 05/13 06:40:00,14.902102102102102,14.902102102102102,19.085633599460967 + 05/13 06:50:00,14.834834834834835,14.834834834834835,19.066808157459755 + 05/13 07:00:00,14.767567567567568,14.767567567567568,19.049519278378939 + 05/13 07:10:00,14.603603603603604,14.603603603603604,17.956135288377664 + 05/13 07:20:00,14.439639639639639,14.439639639639639,17.80190599536141 + 05/13 07:30:00,14.275675675675675,14.275675675675675,17.730952167063835 + 05/13 07:40:00,14.111711711711714,14.111711711711714,17.670591114894447 + 05/13 07:50:00,13.947747747747748,13.947747747747748,17.618296024877166 + 05/13 08:00:00,13.783783783783785,13.783783783783785,17.571481734387313 + 05/13 08:10:00,13.666066066066067,13.666066066066067,17.52843994260173 + 05/13 08:20:00,13.548348348348349,13.548348348348349,17.483239628166897 + 05/13 08:30:00,13.430630630630632,13.430630630630632,17.449166577320736 + 05/13 08:40:00,13.312912912912914,13.312912912912914,17.41773378077673 + 05/13 08:50:00,13.195195195195196,13.195195195195196,17.388010893269639 + 05/13 09:00:00,13.077477477477478,13.077477477477478,17.359927747186896 + 05/13 09:10:00,12.984984984984987,12.984984984984987,17.333671733743978 + 05/13 09:20:00,12.892492492492494,12.892492492492494,17.294379087412744 + 05/13 09:30:00,12.8,12.8,17.26532377704606 + 05/13 09:40:00,12.8,12.8,17.23647987516186 + 05/13 09:50:00,12.8,12.8,17.208859965450406 + 05/13 10:00:00,12.8,12.8,17.18215762545462 + 05/13 10:10:00,12.8,12.8,17.156318961158325 + 05/13 10:20:00,12.8,12.8,17.13506295371316 + 05/13 10:30:00,12.8,12.8,17.114413442769789 + 05/13 10:40:00,12.8,12.8,17.095123765242854 + 05/13 10:50:00,12.8,12.8,17.07654831069729 + 05/13 11:00:00,12.8,12.8,17.058793814893855 + 05/13 11:10:00,12.8,12.8,17.042029865602694 + 05/13 11:20:00,12.8,12.8,17.026589337369566 + 05/13 11:30:00,12.8,12.8,17.011992756182516 + 05/13 11:40:00,12.8,12.8,16.998225357367013 + 05/13 11:50:00,12.8,12.8,16.98518872201248 + 05/13 12:00:00,12.8,12.8,16.972858028110065 + 05/13 12:10:00,12.8,12.8,16.960908711174218 + 05/13 12:20:00,12.8,12.8,16.94832505506035 + 05/13 12:30:00,12.8,12.8,16.935880673849927 + 05/13 12:40:00,12.8,12.8,16.923450041174278 + 05/13 12:50:00,12.8,12.8,16.914198702081206 + 05/13 13:00:00,12.8,12.8,16.89927609195142 + 05/13 13:10:00,12.8,12.8,16.892359620785365 + 05/13 13:20:00,12.8,12.8,16.88220007076789 + 05/13 13:30:00,12.8,12.8,16.87482032181105 + 05/13 13:40:00,12.8,12.8,16.867549931177789 + 05/13 13:50:00,12.8,12.8,16.861055743189579 + 05/13 14:00:00,12.8,12.8,16.85524659396398 + 05/13 14:10:00,12.8,12.8,16.850031686304314 + 05/13 14:20:00,12.8,12.8,16.845652364495526 + 05/13 14:30:00,12.8,12.8,16.842056239258807 + 05/13 14:40:00,12.8,12.8,16.839172511874759 + 05/13 14:50:00,12.8,12.8,16.836952563678133 + 05/13 15:00:00,12.8,12.8,16.83531087577591 + 05/13 15:10:00,12.8,12.8,16.83447686667903 + 05/13 15:20:00,12.8,12.8,16.83404494535328 + 05/13 15:30:00,12.8,12.8,16.833796432520207 + 05/13 15:40:00,12.8,12.8,16.833885055890769 + 05/13 15:50:00,12.8,12.8,16.834403230500095 + 05/13 16:00:00,12.8,12.8,16.835391962935455 + 05/13 16:10:00,12.8,12.8,16.85004166834018 + 05/13 16:20:00,12.8,12.8,16.86152211310782 + 05/13 16:30:00,12.8,12.8,16.864484217973048 + 05/13 16:40:00,12.8,12.8,16.86785309940604 + 05/13 16:50:00,12.8,12.8,16.871857901458467 + 05/13 17:00:00,12.8,12.8,16.86410343557685 + 05/13 17:10:00,12.8,12.8,18.65027061383915 + 05/13 17:20:00,12.8,12.8,18.86454999413236 + 05/13 17:30:00,12.8,12.8,18.953426885473364 + 05/13 17:40:00,12.8,12.8,19.021995882916749 + 05/13 17:50:00,12.8,12.8,19.077604973939743 + 05/13 18:00:00,12.8,12.8,19.12477536353371 + 05/13 18:10:00,12.8,12.8,19.179381374071647 + 05/13 18:20:00,12.8,12.8,19.217185939721177 + 05/13 18:30:00,12.8,12.8,19.25131561553388 + 05/13 18:40:00,12.8,12.8,19.282693720958844 + 05/13 18:50:00,12.8,12.8,19.309729925380915 + 05/13 19:00:00,12.8,12.8,19.336628031720257 + 05/13 19:10:00,12.8,12.8,19.3616514885969 + 05/13 19:20:00,12.8,12.8,19.38647872831193 + 05/13 19:30:00,12.8,12.8,19.409953749545207 + 05/13 19:40:00,12.8,12.8,19.432338249207086 + 05/13 19:50:00,12.8,12.8,19.453141012933416 + 05/13 20:00:00,12.8,12.8,19.472570432054359 + 05/13 20:10:00,12.837837837837839,12.837837837837839,19.468769498360208 + 05/13 20:20:00,13.027027027027028,13.027027027027028,19.486402918168488 + 05/13 20:30:00,13.216216216216218,13.216216216216218,19.503129119630473 + 05/13 20:40:00,13.405405405405407,13.405405405405407,19.51902203306525 + 05/13 20:50:00,13.594594594594597,13.594594594594597,19.53421566099923 + 05/13 21:00:00,13.783783783783785,13.783783783783785,19.548912978351788 + 05/13 21:10:00,13.851051051051052,13.851051051051052,19.562333789325103 + 05/13 21:20:00,13.91831831831832,13.91831831831832,19.576170104405809 + 05/13 21:30:00,13.985585585585586,13.985585585585586,19.58933545921744 + 05/13 21:40:00,14.052852852852853,14.052852852852853,19.60212561090544 + 05/13 21:50:00,14.12012012012012,14.12012012012012,19.61446359881561 + 05/13 22:00:00,14.187387387387388,14.187387387387388,19.6263408587664 + 05/13 22:10:00,14.237837837837838,14.237837837837838,19.63833783365032 + 05/13 22:20:00,14.288288288288289,14.288288288288289,19.64984581556748 + 05/13 22:30:00,14.338738738738739,14.338738738738739,19.660948895551436 + 05/13 22:40:00,14.389189189189189,14.389189189189189,19.671815831297118 + 05/13 22:50:00,14.43963963963964,14.43963963963964,19.682460052170794 + 05/13 23:00:00,14.49009009009009,14.49009009009009,19.692881626060954 + 05/13 23:10:00,14.49009009009009,14.49009009009009,19.702376668757667 + 05/13 23:20:00,14.49009009009009,14.49009009009009,19.711443920981183 + 05/13 23:30:00,14.49009009009009,14.49009009009009,19.72018968556824 + 05/13 23:40:00,14.49009009009009,14.49009009009009,19.72861245024937 + 05/13 23:50:00,14.49009009009009,14.49009009009009,19.736686978316589 + 05/13 24:00:00,14.49009009009009,14.49009009009009,19.744488905901997 + 05/14 00:10:00,14.511111111111111,14.511111111111111,19.752124449099584 + 05/14 00:20:00,14.532132132132132,14.532132132132132,19.759413004432579 + 05/14 00:30:00,14.553153153153153,14.553153153153153,19.766647593784936 + 05/14 00:40:00,14.574174174174175,14.574174174174175,19.77366865107133 + 05/14 00:50:00,14.595195195195196,14.595195195195196,19.7805582299199 + 05/14 01:00:00,14.616216216216217,14.616216216216217,19.787291156035523 + 05/14 01:10:00,14.595195195195196,14.595195195195196,19.793644576219309 + 05/14 01:20:00,14.574174174174175,14.574174174174175,19.80014885287902 + 05/14 01:30:00,14.553153153153153,14.553153153153153,19.80651949275766 + 05/14 01:40:00,14.532132132132132,14.532132132132132,19.81283135124563 + 05/14 01:50:00,14.511111111111111,14.511111111111111,19.818975738750689 + 05/14 02:00:00,14.49009009009009,14.49009009009009,19.82492768082218 + 05/14 02:10:00,14.557357357357358,14.557357357357358,19.83129454988719 + 05/14 02:20:00,14.624624624624625,14.624624624624625,19.837635350497935 + 05/14 02:30:00,14.691891891891892,14.691891891891892,19.844022114811808 + 05/14 02:40:00,14.759159159159159,14.759159159159159,19.850409235057833 + 05/14 02:50:00,14.826426426426427,14.826426426426427,19.85674547666025 + 05/14 03:00:00,14.893693693693694,14.893693693693694,19.863150994674777 + 05/14 03:10:00,14.872672672672673,14.872672672672673,19.869067633377847 + 05/14 03:20:00,14.85165165165165,14.85165165165165,19.874706024570938 + 05/14 03:30:00,14.83063063063063,14.83063063063063,19.880052485690567 + 05/14 03:40:00,14.809609609609609,14.809609609609609,19.885036367308098 + 05/14 03:50:00,14.788588588588589,14.788588588588589,19.88977738726641 + 05/14 04:00:00,14.767567567567568,14.767567567567568,19.89432720885547 + 05/14 04:10:00,14.788588588588589,14.788588588588589,19.8991340067978 + 05/14 04:20:00,14.809609609609609,14.809609609609609,19.90377202587522 + 05/14 04:30:00,14.83063063063063,14.83063063063063,19.908301919780827 + 05/14 04:40:00,14.85165165165165,14.85165165165165,19.91273133330007 + 05/14 04:50:00,14.872672672672673,14.872672672672673,19.917178297444747 + 05/14 05:00:00,14.893693693693694,14.893693693693694,19.92157850617633 + 05/14 05:10:00,14.93993993993994,14.93993993993994,19.924804022105798 + 05/14 05:20:00,14.986186186186187,14.986186186186187,19.928041617580058 + 05/14 05:30:00,15.032432432432433,15.032432432432433,19.93119711038542 + 05/14 05:40:00,15.078678678678678,15.078678678678678,19.934445870341816 + 05/14 05:50:00,15.124924924924925,15.124924924924925,19.937255454634859 + 05/14 06:00:00,15.17117117117117,15.17117117117117,19.939102085291265 + 05/14 06:10:00,15.103903903903904,15.103903903903904,19.964928880226155 + 05/14 06:20:00,15.036636636636637,15.036636636636637,19.96723806185277 + 05/14 06:30:00,14.96936936936937,14.96936936936937,19.968526005488788 + 05/14 06:40:00,14.902102102102102,14.902102102102102,19.968596902121896 + 05/14 06:50:00,14.834834834834835,14.834834834834835,19.96729718738175 + 05/14 07:00:00,14.767567567567568,14.767567567567568,19.96456477356285 + 05/14 07:10:00,14.670870870870872,14.670870870870872,18.556416779026699 + 05/14 07:20:00,14.574174174174175,14.574174174174175,18.38253345791074 + 05/14 07:30:00,14.477477477477479,14.477477477477479,18.30876736767373 + 05/14 07:40:00,14.380780780780782,14.380780780780782,18.248237963543607 + 05/14 07:50:00,14.284084084084084,14.284084084084084,18.19753836717387 + 05/14 08:00:00,14.187387387387388,14.187387387387388,18.153498203380914 + 05/14 08:10:00,14.04864864864865,14.04864864864865,18.114621163425324 + 05/14 08:20:00,13.90990990990991,13.90990990990991,18.070777805306237 + 05/14 08:30:00,13.771171171171173,13.771171171171173,18.038170879364217 + 05/14 08:40:00,13.632432432432435,13.632432432432435,18.00759445359955 + 05/14 08:50:00,13.493693693693695,13.493693693693695,17.97856320200955 + 05/14 09:00:00,13.354954954954956,13.354954954954956,17.950821618056894 + 05/14 09:10:00,13.237237237237239,13.237237237237239,17.92452179658265 + 05/14 09:20:00,13.119519519519521,13.119519519519521,17.89037094829288 + 05/14 09:30:00,13.001801801801804,13.001801801801804,17.865927622821695 + 05/14 09:40:00,12.884084084084086,12.884084084084086,17.84258499377922 + 05/14 09:50:00,12.8,12.8,17.820554795006708 + 05/14 10:00:00,12.8,12.8,17.799799016187295 + 05/14 10:10:00,12.8,12.8,17.780269826041946 + 05/14 10:20:00,12.8,12.8,17.76055955679891 + 05/14 10:30:00,12.8,12.8,17.741810324323258 + 05/14 10:40:00,12.8,12.8,17.723303580821385 + 05/14 10:50:00,12.8,12.8,17.705004133935529 + 05/14 11:00:00,12.8,12.8,17.686613832443088 + 05/14 11:10:00,12.8,12.8,17.668545362712338 + 05/14 11:20:00,12.8,12.8,17.650188753535369 + 05/14 11:30:00,12.8,12.8,17.632318725723438 + 05/14 11:40:00,12.8,12.8,17.615850243811914 + 05/14 11:50:00,12.8,12.8,17.60236940322451 + 05/14 12:00:00,12.8,12.8,17.592441251131019 + 05/14 12:10:00,12.8,12.8,17.58583644476538 + 05/14 12:20:00,12.8,12.8,17.586152065424565 + 05/14 12:30:00,12.8,12.8,17.586711588140248 + 05/14 12:40:00,12.8,12.8,17.589829775349519 + 05/14 12:50:00,12.8,12.8,17.59224511108915 + 05/14 13:00:00,12.8,12.8,17.59395852795347 + 05/14 13:10:00,12.8,12.8,17.5945364387022 + 05/14 13:20:00,12.8,12.8,17.594160905545548 + 05/14 13:30:00,12.8,12.8,17.592900787433984 + 05/14 13:40:00,12.8,12.8,17.591067401918303 + 05/14 13:50:00,12.8,12.8,17.588892987565705 + 05/14 14:00:00,12.8,12.8,17.586471741401064 + 05/14 14:10:00,12.8,12.8,17.584062550621593 + 05/14 14:20:00,12.8,12.8,17.581645093898297 + 05/14 14:30:00,12.8,12.8,17.579438718088 + 05/14 14:40:00,12.8,12.8,17.571594152266667 + 05/14 14:50:00,12.8,12.8,17.572446592943316 + 05/14 15:00:00,12.8,12.8,17.56189312953056 + 05/14 15:10:00,12.8,12.8,18.99147565768773 + 05/14 15:20:00,12.8,12.8,19.140584297363799 + 05/14 15:30:00,12.8,12.8,19.20431843646823 + 05/14 15:40:00,12.8,12.8,19.2523949758776 + 05/14 15:50:00,12.8,12.8,19.28899875326943 + 05/14 16:00:00,12.8,12.8,19.31811057934217 + 05/14 16:10:00,12.8,12.8,19.34147699522267 + 05/14 16:20:00,12.8,12.8,19.369707305038376 + 05/14 16:30:00,12.8,12.8,19.386260735987606 + 05/14 16:40:00,12.8,12.8,19.40106617414485 + 05/14 16:50:00,12.8,12.8,19.415685551739754 + 05/14 17:00:00,12.8,12.8,19.430572439561446 + 05/14 17:10:00,12.8,12.8,19.44584880858495 + 05/14 17:20:00,12.8,12.8,19.478476736078489 + 05/14 17:30:00,12.8,12.8,19.487997634523859 + 05/14 17:40:00,12.8,12.8,19.505329476709848 + 05/14 17:50:00,12.8,12.8,19.5117299208503 + 05/14 18:00:00,12.8,12.8,19.528345550405676 + 05/14 18:10:00,12.8,12.8,19.534097046028437 + 05/14 18:20:00,12.8,12.8,19.55065616259202 + 05/14 18:30:00,12.8,12.8,19.561549592341348 + 05/14 18:40:00,12.8,12.8,19.57338836790791 + 05/14 18:50:00,12.8,12.8,19.58584286115019 + 05/14 19:00:00,12.8,12.8,19.59792337044521 + 05/14 19:10:00,12.8,12.8,19.609984737592609 + 05/14 19:20:00,12.8,12.8,19.621911119420248 + 05/14 19:30:00,12.8,12.8,19.633776613958415 + 05/14 19:40:00,12.8,12.8,19.645606202622397 + 05/14 19:50:00,12.833633633633636,12.833633633633636,19.657129384352328 + 05/14 20:00:00,12.926126126126127,12.926126126126127,19.668090565457164 + 05/14 20:10:00,12.997597597597599,12.997597597597599,19.65642728452689 + 05/14 20:20:00,13.06906906906907,13.06906906906907,19.66788689658392 + 05/14 20:30:00,13.140540540540542,13.140540540540542,19.67880729362282 + 05/14 20:40:00,13.212012012012015,13.212012012012015,19.689673399178877 + 05/14 20:50:00,13.283483483483485,13.283483483483485,19.70018311772999 + 05/14 21:00:00,13.354954954954956,13.354954954954956,19.71041310302989 + 05/14 21:10:00,13.426426426426428,13.426426426426428,19.7200054084539 + 05/14 21:20:00,13.497897897897899,13.497897897897899,19.728770759038658 + 05/14 21:30:00,13.56936936936937,13.56936936936937,19.737301246350687 + 05/14 21:40:00,13.640840840840842,13.640840840840842,19.74543796193147 + 05/14 21:50:00,13.712312312312314,13.712312312312314,19.753290188046785 + 05/14 22:00:00,13.783783783783785,13.783783783783785,19.760880893905598 + 05/14 22:10:00,13.851051051051052,13.851051051051052,19.768302292878354 + 05/14 22:20:00,13.91831831831832,13.91831831831832,19.775913197748218 + 05/14 22:30:00,13.985585585585586,13.985585585585586,19.783353527629087 + 05/14 22:40:00,14.052852852852853,14.052852852852853,19.790721090266353 + 05/14 22:50:00,14.12012012012012,14.12012012012012,19.79795221941351 + 05/14 23:00:00,14.187387387387388,14.187387387387388,19.805004943731825 + 05/14 23:10:00,14.237837837837838,14.237837837837838,19.812249127574277 + 05/14 23:20:00,14.288288288288289,14.288288288288289,19.81943625046015 + 05/14 23:30:00,14.338738738738739,14.338738738738739,19.82643001686464 + 05/14 23:40:00,14.389189189189189,14.389189189189189,19.833266646715587 + 05/14 23:50:00,14.43963963963964,14.43963963963964,19.839916248281967 + 05/14 24:00:00,14.49009009009009,14.49009009009009,19.846383587467444 + 05/15 00:10:00,14.511111111111111,14.511111111111111,19.852199954800108 + 05/15 00:20:00,14.532132132132132,14.532132132132132,19.857633617070357 + 05/15 00:30:00,14.553153153153153,14.553153153153153,19.86287135783197 + 05/15 00:40:00,14.574174174174175,14.574174174174175,19.867890438464348 + 05/15 00:50:00,14.595195195195196,14.595195195195196,19.872661286035993 + 05/15 01:00:00,14.616216216216217,14.616216216216217,19.877396949074709 + 05/15 01:10:00,14.641441441441442,14.641441441441442,19.882319835176334 + 05/15 01:20:00,14.666666666666666,14.666666666666666,19.88705965700302 + 05/15 01:30:00,14.691891891891892,14.691891891891892,19.89173342125204 + 05/15 01:40:00,14.717117117117118,14.717117117117118,19.896247140519767 + 05/15 01:50:00,14.742342342342342,14.742342342342342,19.900788550530114 + 05/15 02:00:00,14.767567567567568,14.767567567567568,19.905309600144954 + 05/15 02:10:00,14.788588588588589,14.788588588588589,19.90926903084108 + 05/15 02:20:00,14.809609609609609,14.809609609609609,19.91322473828072 + 05/15 02:30:00,14.83063063063063,14.83063063063063,19.917020358268954 + 05/15 02:40:00,14.85165165165165,14.85165165165165,19.920763704539213 + 05/15 02:50:00,14.872672672672673,14.872672672672673,19.92445288539384 + 05/15 03:00:00,14.893693693693694,14.893693693693694,19.92805017779629 + 05/15 03:10:00,14.893693693693694,14.893693693693694,19.931709370981179 + 05/15 03:20:00,14.893693693693694,14.893693693693694,19.935206262404419 + 05/15 03:30:00,14.893693693693694,14.893693693693694,19.938568190134217 + 05/15 03:40:00,14.893693693693694,14.893693693693694,19.941886691871536 + 05/15 03:50:00,14.893693693693694,14.893693693693694,19.945110188304434 + 05/15 04:00:00,14.893693693693694,14.893693693693694,19.948246872694438 + 05/15 04:10:00,14.91891891891892,14.91891891891892,19.951414644209814 + 05/15 04:20:00,14.944144144144144,14.944144144144144,19.954456827436343 + 05/15 04:30:00,14.96936936936937,14.96936936936937,19.957556392328287 + 05/15 04:40:00,14.994594594594595,14.994594594594595,19.960623568439865 + 05/15 04:50:00,15.01981981981982,15.01981981981982,19.96366021956183 + 05/15 05:00:00,15.045045045045045,15.045045045045045,19.96666700133074 + 05/15 05:10:00,15.01981981981982,15.01981981981982,19.968669373558386 + 05/15 05:20:00,14.994594594594594,14.994594594594594,19.97050437056803 + 05/15 05:30:00,14.96936936936937,14.96936936936937,19.971988322348709 + 05/15 05:40:00,14.944144144144144,14.944144144144144,19.97311207236249 + 05/15 05:50:00,14.91891891891892,14.91891891891892,19.973755453693227 + 05/15 06:00:00,14.893693693693694,14.893693693693694,19.973722289482489 + 05/15 06:10:00,14.826426426426427,14.826426426426427,17.9712870215689 + 05/15 06:20:00,14.759159159159159,14.759159159159159,17.734159522714337 + 05/15 06:30:00,14.691891891891892,14.691891891891892,17.64387080750366 + 05/15 06:40:00,14.624624624624625,14.624624624624625,17.57238898784706 + 05/15 06:50:00,14.557357357357358,14.557357357357358,17.51449895065255 + 05/15 07:00:00,14.49009009009009,14.49009009009009,17.46506013661094 + 05/15 07:10:00,14.418618618618618,14.418618618618618,15.979572771833386 + 05/15 07:20:00,14.347147147147148,14.347147147147148,15.756340124124577 + 05/15 07:30:00,14.275675675675675,14.275675675675675,15.64850890698864 + 05/15 07:40:00,14.204204204204205,14.204204204204205,15.55907207307278 + 05/15 07:50:00,14.132732732732734,14.132732732732734,15.483813117537207 + 05/15 08:00:00,14.061261261261262,14.061261261261262,15.418450440065334 + 05/15 08:05:00,13.872072072072072,13.872072072072072,15.33681974625949 + 05/15 08:10:00,13.872072072072072,13.872072072072072,15.335685265123676 + 05/15 08:20:00,13.682882882882883,13.682882882882883,15.273334556968364 + 05/15 08:30:00,13.493693693693695,13.493693693693695,15.224467908013013 + 05/15 08:40:00,13.304504504504506,13.304504504504506,15.177302096460379 + 05/15 08:50:00,13.115315315315316,13.115315315315316,15.132044647811464 + 05/15 09:00:00,12.926126126126127,12.926126126126127,15.087422158695544 + 05/15 09:10:00,12.8,12.8,15.043199922191647 + 05/15 09:20:00,12.8,12.8,14.988940035309529 + 05/15 09:30:00,12.8,12.8,14.945736758145334 + 05/15 09:40:00,12.8,12.8,14.9034090713067 + 05/15 09:50:00,12.8,12.8,14.862603306147724 + 05/15 10:00:00,12.8,12.8,14.82350152945262 + 05/15 10:10:00,12.8,12.8,14.78622899255766 + 05/15 10:20:00,12.8,12.8,14.748533472182475 + 05/15 10:30:00,12.8,12.8,14.717573954101566 + 05/15 10:40:00,12.8,12.8,14.687611698802245 + 05/15 10:50:00,12.8,12.8,14.65976418392491 + 05/15 11:00:00,12.8,12.8,14.633224434721573 + 05/15 11:10:00,12.8,12.8,14.608083967491702 + 05/15 11:20:00,12.8,12.8,14.593871522064554 + 05/15 11:30:00,12.8,12.8,14.571194520961447 + 05/15 11:40:00,12.8,12.8,14.549420697047916 + 05/15 11:50:00,12.8,12.8,14.528726879269929 + 05/15 12:00:00,12.8,12.8,14.509012586286282 + 05/15 12:10:00,12.8,12.8,14.490476564476527 + 05/15 12:20:00,12.8,12.8,14.462846062294667 + 05/15 12:30:00,12.8,12.8,14.44519080055427 + 05/15 12:40:00,12.8,12.8,14.428147838772496 + 05/15 12:50:00,12.8,12.8,14.411706369520225 + 05/15 13:00:00,12.8,12.8,14.396817978355472 + 05/15 13:10:00,12.8,12.8,14.383084114453207 + 05/15 13:20:00,12.8,12.8,14.370180619235118 + 05/15 13:30:00,12.8,12.8,14.356385165136999 + 05/15 13:40:00,12.8,12.8,14.344175408608374 + 05/15 13:50:00,12.8,12.8,14.332149489978578 + 05/15 14:00:00,12.8,12.8,14.319853340491662 + 05/15 14:10:00,12.8,12.8,14.310431334210579 + 05/15 14:20:00,12.8,12.8,14.304422390047254 + 05/15 14:30:00,12.8,12.8,14.29410709674268 + 05/15 14:40:00,12.8,12.8,14.286814105301274 + 05/15 14:50:00,12.8,12.8,14.280562866471327 + 05/15 15:00:00,12.8,12.8,14.272032839498893 + 05/15 15:05:00,12.8,12.8,16.415636875892969 + 05/15 15:10:00,12.8,12.8,16.41496788927995 + 05/15 15:20:00,12.8,12.8,16.66271477345017 + 05/15 15:30:00,12.8,12.8,16.758138806914727 + 05/15 15:40:00,12.8,12.8,16.828407684271228 + 05/15 15:50:00,12.8,12.8,16.88381283445467 + 05/15 16:00:00,12.8,12.8,16.930111148084437 + 05/15 16:10:00,12.8,12.8,16.995926364917854 + 05/15 16:20:00,12.8,12.8,17.050013473260859 + 05/15 16:30:00,12.8,12.8,17.08046976265042 + 05/15 16:40:00,12.8,12.8,17.10757049031113 + 05/15 16:50:00,12.8,12.8,17.132446503443505 + 05/15 17:00:00,12.8,12.8,17.155595735622577 + 05/15 17:10:00,12.8,12.8,17.190422644356443 + 05/15 17:20:00,12.8,12.8,17.217016007311004 + 05/15 17:30:00,12.8,12.8,17.237151109790078 + 05/15 17:40:00,12.8,12.8,17.256494779267827 + 05/15 17:50:00,12.8,12.8,17.27519681386364 + 05/15 18:00:00,12.8,12.8,17.293311616492326 + 05/15 18:10:00,12.8,12.8,17.311089556764665 + 05/15 18:20:00,12.8,12.8,17.328156679224123 + 05/15 18:30:00,12.8,12.8,17.344733616182418 + 05/15 18:40:00,12.8,12.8,17.36082363689693 + 05/15 18:50:00,12.8,12.8,17.376330478321188 + 05/15 19:00:00,12.8,12.8,17.375874333106976 + 05/15 19:10:00,12.8,12.8,17.411957990092068 + 05/15 19:20:00,12.8,12.8,17.423220226191405 + 05/15 19:30:00,12.8,12.8,17.441096140464045 + 05/15 19:40:00,12.8,12.8,17.456646173644498 + 05/15 19:50:00,12.8,12.8,17.471804854122476 + 05/15 20:00:00,12.8,12.8,17.48627004597482 + 05/15 20:10:00,12.8,12.8,17.477418447199299 + 05/15 20:20:00,12.8,12.8,17.494566279566855 + 05/15 20:30:00,12.8,12.8,17.506598125160698 + 05/15 20:40:00,12.8,12.8,17.517764931897596 + 05/15 20:50:00,12.8,12.8,17.528347073194433 + 05/15 21:00:00,12.8,12.8,17.53828700994991 + 05/15 21:10:00,12.8,12.8,17.547808307083053 + 05/15 21:20:00,12.8,12.8,17.55735109968199 + 05/15 21:30:00,12.8,12.8,17.56642330392739 + 05/15 21:40:00,12.8,12.8,17.575147654694154 + 05/15 21:50:00,12.8,12.8,17.58341224434175 + 05/15 22:00:00,12.8,12.8,17.591403260160086 + 05/15 22:10:00,12.8,12.8,18.964047358103686 + 05/15 22:20:00,12.8,12.8,19.110651858992655 + 05/15 22:30:00,12.8,12.8,19.175912227814647 + 05/15 22:40:00,12.8,12.8,19.227469721186858 + 05/15 22:50:00,12.8,12.8,19.26918628240567 + 05/15 23:00:00,12.8,12.8,19.304238053835254 + 05/15 23:10:00,12.8,12.8,19.334550777767605 + 05/15 23:20:00,12.8,12.8,19.36087537981843 + 05/15 23:30:00,12.863063063063063,12.863063063063063,19.384716804535687 + 05/15 23:40:00,12.934534534534535,12.934534534534535,19.406596947962144 + 05/15 23:50:00,13.006006006006008,13.006006006006008,19.426965182522659 + 05/15 24:00:00,13.077477477477478,13.077477477477478,19.446046378381266 + 05/16 00:10:00,13.216216216216216,13.216216216216216,19.4644884892881 + 05/16 00:20:00,13.354954954954956,13.354954954954956,19.482461877745427 + 05/16 00:30:00,13.493693693693695,13.493693693693695,19.499665802615565 + 05/16 00:40:00,13.632432432432433,13.632432432432433,19.516339886654 + 05/16 00:50:00,13.771171171171173,13.771171171171173,19.532439346067809 + 05/16 01:00:00,13.90990990990991,13.90990990990991,19.548069164140935 + 05/16 01:10:00,13.863663663663666,13.863663663663666,19.561824943613169 + 05/16 01:20:00,13.817417417417417,13.817417417417417,19.575636616539517 + 05/16 01:30:00,13.771171171171173,13.771171171171173,19.588742060991064 + 05/16 01:40:00,13.724924924924926,13.724924924924926,19.601337128643448 + 05/16 01:50:00,13.67867867867868,13.67867867867868,19.613264296424594 + 05/16 02:00:00,13.632432432432433,13.632432432432433,19.624596277668734 + 05/16 02:10:00,13.724924924924926,13.724924924924926,19.6355708446156 + 05/16 02:20:00,13.817417417417417,13.817417417417417,19.645741075384679 + 05/16 02:30:00,13.90990990990991,13.90990990990991,19.655993627085274 + 05/16 02:40:00,14.002402402402403,14.002402402402403,19.666093245555517 + 05/16 02:50:00,14.094894894894896,14.094894894894896,19.676256410865969 + 05/16 03:00:00,14.187387387387388,14.187387387387388,19.686421384213398 + 05/16 03:10:00,14.12012012012012,14.12012012012012,19.69795612353807 + 05/16 03:20:00,14.052852852852853,14.052852852852853,19.70841878308339 + 05/16 03:30:00,13.985585585585586,13.985585585585586,19.717783155555624 + 05/16 03:40:00,13.91831831831832,13.91831831831832,19.726068424404926 + 05/16 03:50:00,13.851051051051052,13.851051051051052,19.733361868809518 + 05/16 04:00:00,13.783783783783785,13.783783783783785,19.73986395166787 + 05/16 04:10:00,13.83003003003003,13.83003003003003,19.74522740831114 + 05/16 04:20:00,13.876276276276276,13.876276276276276,19.750998289738207 + 05/16 04:30:00,13.922522522522524,13.922522522522524,19.75678802652079 + 05/16 04:40:00,13.968768768768769,13.968768768768769,19.76274159312247 + 05/16 04:50:00,14.015015015015015,14.015015015015015,19.76874070723291 + 05/16 05:00:00,14.061261261261262,14.061261261261262,19.774843623977835 + 05/16 05:10:00,14.082282282282283,14.082282282282283,19.781596228415766 + 05/16 05:20:00,14.103303303303303,14.103303303303303,19.78772297035379 + 05/16 05:30:00,14.124324324324324,14.124324324324324,19.793691764039595 + 05/16 05:40:00,14.145345345345346,14.145345345345346,19.799326818933733 + 05/16 05:50:00,14.166366366366367,14.166366366366367,19.80449286926892 + 05/16 06:00:00,14.187387387387388,14.187387387387388,19.808469032881438 + 05/16 06:10:00,14.12012012012012,14.12012012012012,17.80505880092025 + 05/16 06:20:00,14.052852852852853,14.052852852852853,17.568811046484706 + 05/16 06:30:00,13.985585585585586,13.985585585585586,17.480102391883979 + 05/16 06:40:00,13.91831831831832,13.91831831831832,17.409451184619877 + 05/16 06:50:00,13.851051051051052,13.851051051051052,17.352109964296735 + 05/16 07:00:00,13.783783783783785,13.783783783783785,17.3029753884643 + 05/16 07:05:00,13.666066066066067,13.666066066066067,15.822220880240057 + 05/16 07:10:00,13.666066066066067,13.666066066066067,15.819742217906676 + 05/16 07:15:00,13.548348348348349,13.548348348348349,15.602907847164577 + 05/16 07:20:00,13.548348348348349,13.548348348348349,15.602674729998818 + 05/16 07:30:00,13.430630630630632,13.430630630630632,15.493293941746776 + 05/16 07:40:00,13.312912912912914,13.312912912912914,15.406800520544346 + 05/16 07:50:00,13.195195195195196,13.195195195195196,15.334300667890308 + 05/16 08:00:00,13.077477477477478,13.077477477477478,15.267256854043457 + 05/16 08:03:19,13.006006006006008,13.006006006006008,15.178078475049859 + 05/16 08:06:40,13.006006006006008,13.006006006006008,15.17970518978692 + 05/16 08:10:00,13.006006006006008,13.006006006006008,15.178629490798432 + 05/16 08:20:00,12.934534534534535,12.934534534534535,15.112970959231627 + 05/16 08:30:00,12.863063063063063,12.863063063063063,15.059537535256114 + 05/16 08:40:00,12.8,12.8,15.010310596042025 + 05/16 08:50:00,12.8,12.8,14.9612842137736 + 05/16 09:00:00,12.8,12.8,14.91371553856854 + 05/16 09:10:00,12.8,12.8,14.868018387493362 + 05/16 09:20:00,12.8,12.8,14.821654580185168 + 05/16 09:30:00,12.8,12.8,14.787369071325177 + 05/16 09:40:00,12.8,12.8,14.755733762121935 + 05/16 09:50:00,12.8,12.8,14.72510990602619 + 05/16 10:00:00,12.8,12.8,14.69574152908282 + 05/16 10:10:00,12.8,12.8,14.665968137752092 + 05/16 10:20:00,12.8,12.8,14.633217581510709 + 05/16 10:30:00,12.8,12.8,14.604761720743517 + 05/16 10:40:00,12.8,12.8,14.577621931669722 + 05/16 10:50:00,12.8,12.8,14.552216740163525 + 05/16 10:55:00,12.8,12.8,14.529785515090494 + 05/16 11:00:00,12.8,12.8,14.52936588707422 + 05/16 11:10:00,12.8,12.8,14.50672849971053 + 05/16 11:20:00,12.8,12.8,14.49614956099831 + 05/16 11:30:00,12.8,12.8,14.477163390495079 + 05/16 11:40:00,12.8,12.8,14.45916552287818 + 05/16 11:50:00,12.8,12.8,14.441758116434834 + 05/16 12:00:00,12.8,12.8,14.424571426654764 + 05/16 12:10:00,12.8,12.8,14.408453411925154 + 05/16 12:15:00,12.8,12.8,14.385402430031194 + 05/16 12:20:00,12.8,12.8,14.383007867555479 + 05/16 12:30:00,12.8,12.8,14.369382020503501 + 05/16 12:40:00,12.8,12.8,14.35483925518692 + 05/16 12:50:00,12.8,12.8,14.341430074064896 + 05/16 13:00:00,12.8,12.8,14.325498273242197 + 05/16 13:10:00,12.8,12.8,14.31326974127873 + 05/16 13:20:00,12.8,12.8,14.304846849075382 + 05/16 13:30:00,12.8,12.8,14.293165736961364 + 05/16 13:40:00,12.8,12.8,14.28230714112135 + 05/16 13:50:00,12.8,12.8,14.273232998927443 + 05/16 14:00:00,12.8,12.8,14.260122726314844 + 05/16 14:10:00,12.8,12.8,14.250096926359526 + 05/16 14:20:00,12.8,12.8,14.243093312698285 + 05/16 14:30:00,12.8,12.8,14.22798944650444 + 05/16 14:35:00,12.8,12.8,14.21913806468098 + 05/16 14:40:00,12.8,12.8,14.218399178665657 + 05/16 14:50:00,12.8,12.8,14.20827726855857 + 05/16 15:00:00,12.8,12.8,14.196267946723044 + 05/16 15:05:00,12.8,12.8,16.33764478349183 + 05/16 15:10:00,12.8,12.8,16.337023751784338 + 05/16 15:20:00,12.8,12.8,16.582888110590749 + 05/16 15:30:00,12.8,12.8,16.676843020180337 + 05/16 15:40:00,12.8,12.8,16.747580752653599 + 05/16 15:50:00,12.8,12.8,16.80213140969364 + 05/16 16:00:00,12.8,12.8,16.84973912379725 + 05/16 16:10:00,12.8,12.8,16.918010002307307 + 05/16 16:20:00,12.8,12.8,16.97541862895975 + 05/16 16:30:00,12.8,12.8,17.009426876719937 + 05/16 16:40:00,12.8,12.8,17.040169699857584 + 05/16 16:50:00,12.8,12.8,17.06842233755134 + 05/16 17:00:00,12.8,12.8,17.09454548731272 + 05/16 17:10:00,12.8,12.8,17.132007425826616 + 05/16 17:20:00,12.8,12.8,17.160668269732793 + 05/16 17:30:00,12.8,12.8,17.182566033084638 + 05/16 17:40:00,12.8,12.8,17.203204061674659 + 05/16 17:50:00,12.8,12.8,17.222761714855865 + 05/16 18:00:00,12.8,12.8,17.241332787995764 + 05/16 18:10:00,12.8,12.8,17.258656319784543 + 05/16 18:20:00,12.8,12.8,17.275417580911005 + 05/16 18:30:00,12.8,12.8,17.291644369546096 + 05/16 18:40:00,12.8,12.8,17.307376906167833 + 05/16 18:50:00,12.8,12.8,17.322746415613623 + 05/16 19:00:00,12.8,12.8,17.33774619858105 + 05/16 19:10:00,12.8,12.8,17.366078911959705 + 05/16 19:20:00,12.8,12.8,17.38210179753917 + 05/16 19:30:00,12.8,12.8,17.397748734284318 + 05/16 19:40:00,12.8,12.8,17.413266707398035 + 05/16 19:50:00,12.8,12.8,17.428234544548319 + 05/16 20:00:00,12.8,12.8,17.442438984135685 + 05/16 20:10:00,12.8,12.8,17.433209046499028 + 05/16 20:20:00,12.8,12.8,17.449975042055426 + 05/16 20:30:00,12.8,12.8,17.461008658584804 + 05/16 20:40:00,12.8,12.8,17.47225078927169 + 05/16 20:50:00,12.8,12.8,17.48267066249696 + 05/16 21:00:00,12.8,12.8,17.492755470927226 + 05/16 21:10:00,12.8,12.8,17.502291637390536 + 05/16 21:20:00,12.8,12.8,17.510629338113753 + 05/16 21:30:00,12.8,12.8,17.518635059702836 + 05/16 21:40:00,12.8,12.8,17.526235533833487 + 05/16 21:50:00,12.8,12.8,17.533541183014149 + 05/16 22:00:00,12.8,12.8,17.5405597163728 + 05/16 22:10:00,12.8,12.8,18.91107139940906 + 05/16 22:20:00,12.8,12.8,19.05727752449161 + 05/16 22:30:00,12.8,12.8,19.122377837480298 + 05/16 22:40:00,12.8,12.8,19.17412821179817 + 05/16 22:50:00,12.8,12.8,19.216241233011858 + 05/16 23:00:00,12.8,12.8,19.251913127958284 + 05/16 23:10:00,12.8,12.8,19.283151714827917 + 05/16 23:20:00,12.8,12.8,19.311223288268839 + 05/16 23:30:00,12.863063063063063,12.863063063063063,19.336622946142414 + 05/16 23:40:00,12.934534534534535,12.934534534534535,19.359901129366905 + 05/16 23:50:00,13.006006006006008,13.006006006006008,19.381423897877249 + 05/16 24:00:00,13.077477477477478,13.077477477477478,19.401226100964089 + 05/17 00:10:00,13.123723723723725,13.123723723723725,19.420045561241698 + 05/17 00:20:00,13.169969969969971,13.169969969969971,19.437282808687308 + 05/17 00:30:00,13.216216216216218,13.216216216216218,19.453725699899957 + 05/17 00:40:00,13.262462462462464,13.262462462462464,19.469407875889915 + 05/17 00:50:00,13.30870870870871,13.30870870870871,19.484380932845889 + 05/17 01:00:00,13.354954954954956,13.354954954954956,19.49897837238158 + 05/17 01:10:00,13.354954954954956,13.354954954954956,19.512158835762305 + 05/17 01:20:00,13.354954954954956,13.354954954954956,19.524498737015894 + 05/17 01:30:00,13.354954954954956,13.354954954954956,19.536063993553275 + 05/17 01:40:00,13.354954954954956,13.354954954954956,19.54691552301295 + 05/17 01:50:00,13.354954954954956,13.354954954954956,19.557266696345136 + 05/17 02:00:00,13.354954954954956,13.354954954954956,19.567153987631977 + 05/17 02:10:00,13.447447447447449,13.447447447447449,19.577085680064795 + 05/17 02:20:00,13.539939939939942,13.539939939939942,19.587543526868218 + 05/17 02:30:00,13.632432432432435,13.632432432432435,19.597777720802186 + 05/17 02:40:00,13.724924924924926,13.724924924924926,19.608034340641696 + 05/17 02:50:00,13.817417417417419,13.817417417417419,19.618290748022419 + 05/17 03:00:00,13.90990990990991,13.90990990990991,19.628392811762219 + 05/17 03:10:00,13.935135135135136,13.935135135135136,19.638260725356444 + 05/17 03:20:00,13.960360360360362,13.960360360360362,19.648056679373857 + 05/17 03:30:00,13.985585585585586,13.985585585585586,19.657464146004846 + 05/17 03:40:00,14.010810810810812,14.010810810810812,19.666702515977837 + 05/17 03:50:00,14.036036036036038,14.036036036036038,19.6756466501169 + 05/17 04:00:00,14.061261261261262,14.061261261261262,19.684317927445915 + 05/17 04:10:00,14.036036036036036,14.036036036036036,19.692165740719017 + 05/17 04:20:00,14.01081081081081,14.01081081081081,19.69948506637794 + 05/17 04:30:00,13.985585585585586,13.985585585585586,19.70652542567517 + 05/17 04:40:00,13.960360360360362,13.960360360360362,19.71321510939011 + 05/17 04:50:00,13.935135135135136,13.935135135135136,19.719599300999734 + 05/17 05:00:00,13.90990990990991,13.90990990990991,19.72570872711595 + 05/17 05:10:00,13.90990990990991,13.90990990990991,19.732246727042857 + 05/17 05:20:00,13.90990990990991,13.90990990990991,19.73863387444456 + 05/17 05:30:00,13.90990990990991,13.90990990990991,19.744809710074045 + 05/17 05:40:00,13.90990990990991,13.90990990990991,19.750773171186748 + 05/17 05:50:00,13.90990990990991,13.90990990990991,19.756110606550608 + 05/17 06:00:00,13.90990990990991,13.90990990990991,19.760451745509369 + 05/17 06:10:00,13.88888888888889,13.88888888888889,17.7544482716759 + 05/17 06:20:00,13.867867867867869,13.867867867867869,17.518971292685224 + 05/17 06:30:00,13.846846846846848,13.846846846846848,17.431429261937077 + 05/17 06:40:00,13.825825825825828,13.825825825825828,17.36314660700424 + 05/17 06:50:00,13.804804804804805,13.804804804804805,17.30886484761318 + 05/17 07:00:00,13.783783783783785,13.783783783783785,17.263677048712134 + 05/17 07:05:00,13.691291291291293,13.691291291291293,15.783088534824673 + 05/17 07:10:00,13.691291291291293,13.691291291291293,15.782544408389656 + 05/17 07:15:00,13.5987987987988,13.5987987987988,15.564152143707414 + 05/17 07:20:00,13.5987987987988,13.5987987987988,15.56428982238699 + 05/17 07:30:00,13.506306306306307,13.506306306306307,15.460484558633274 + 05/17 07:40:00,13.413813813813816,13.413813813813816,15.375745735104497 + 05/17 07:50:00,13.32132132132132,13.32132132132132,15.30426482127251 + 05/17 08:00:00,13.22882882882883,13.22882882882883,15.241681939632408 + 05/17 08:03:19,13.111111111111113,13.111111111111113,15.16311019673093 + 05/17 08:06:40,13.111111111111113,13.111111111111113,15.160258302364067 + 05/17 08:10:00,13.111111111111113,13.111111111111113,15.162115597021219 + 05/17 08:20:00,12.993393393393394,12.993393393393394,15.099979515231974 + 05/17 08:30:00,12.875675675675677,12.875675675675677,15.05356154452381 + 05/17 08:40:00,12.8,12.8,15.008513330017366 + 05/17 08:50:00,12.8,12.8,14.96636992680803 + 05/17 09:00:00,12.8,12.8,14.925739476818619 + 05/17 09:10:00,12.8,12.8,14.886426106312604 + 05/17 09:20:00,12.8,12.8,14.835259374901503 + 05/17 09:30:00,12.8,12.8,14.795580641694185 + 05/17 09:40:00,12.8,12.8,14.756814635234078 + 05/17 09:50:00,12.8,12.8,14.720144141082749 + 05/17 10:00:00,12.8,12.8,14.68570908792161 + 05/17 10:10:00,12.8,12.8,14.653047043302005 + 05/17 10:20:00,12.8,12.8,14.618649787732045 + 05/17 10:30:00,12.8,12.8,14.589057914954815 + 05/17 10:40:00,12.8,12.8,14.560779808374364 + 05/17 10:50:00,12.8,12.8,14.533666918896803 + 05/17 11:00:00,12.8,12.8,14.50765906752908 + 05/17 11:10:00,12.8,12.8,14.482626033010334 + 05/17 11:20:00,12.8,12.8,14.46855765388715 + 05/17 11:30:00,12.8,12.8,14.446383038187694 + 05/17 11:40:00,12.8,12.8,14.425298925809502 + 05/17 11:50:00,12.8,12.8,14.405436898362142 + 05/17 12:00:00,12.8,12.8,14.386633155068172 + 05/17 12:10:00,12.8,12.8,14.368796479739219 + 05/17 12:20:00,12.8,12.8,14.341872088976569 + 05/17 12:30:00,12.8,12.8,14.324817461442949 + 05/17 12:40:00,12.8,12.8,14.309610144622928 + 05/17 12:50:00,12.8,12.8,14.295994322757464 + 05/17 13:00:00,12.8,12.8,14.281443584578386 + 05/17 13:10:00,12.8,12.8,14.268240266443963 + 05/17 13:20:00,12.8,12.8,14.262297597003986 + 05/17 13:30:00,12.8,12.8,14.252903695277507 + 05/17 13:40:00,12.8,12.8,14.246219281843868 + 05/17 13:50:00,12.8,12.8,14.242517345384864 + 05/17 14:00:00,12.8,12.8,14.238150722316812 + 05/17 14:10:00,12.8,12.8,14.235516727438583 + 05/17 14:20:00,12.8,12.8,14.237809180861543 + 05/17 14:30:00,12.8,12.8,14.235427460232267 + 05/17 14:40:00,12.8,12.8,14.231793322719654 + 05/17 14:50:00,12.8,12.8,14.227354460665464 + 05/17 15:00:00,12.8,12.8,14.224082387279122 + 05/17 15:05:00,12.8,12.8,16.36579975743302 + 05/17 15:10:00,12.8,12.8,16.36484868523426 + 05/17 15:20:00,12.8,12.8,16.611164382465863 + 05/17 15:30:00,12.8,12.8,16.705227911186264 + 05/17 15:40:00,12.8,12.8,16.776784785592576 + 05/17 15:50:00,12.8,12.8,16.83361001442688 + 05/17 16:00:00,12.8,12.8,16.87893528140032 + 05/17 16:10:00,12.8,12.8,16.94687075624386 + 05/17 16:20:00,12.8,12.8,17.004344018066904 + 05/17 16:30:00,12.8,12.8,17.038082506266265 + 05/17 16:40:00,12.8,12.8,17.068205928846895 + 05/17 16:50:00,12.8,12.8,17.095134111881469 + 05/17 17:00:00,12.8,12.8,17.119235868870264 + 05/17 17:10:00,12.8,12.8,17.15369055915984 + 05/17 17:15:00,12.8,12.8,17.179590755550888 + 05/17 17:20:00,12.8,12.8,17.179440838376477 + 05/17 17:30:00,12.8,12.8,17.197903158256396 + 05/17 17:40:00,12.8,12.8,17.215871007254486 + 05/17 17:50:00,12.8,12.8,17.233347087606444 + 05/17 18:00:00,12.8,12.8,17.250557354909554 + 05/17 18:10:00,12.8,12.8,17.268325782352926 + 05/17 18:20:00,12.8,12.8,17.285768545231098 + 05/17 18:30:00,12.8,12.8,17.302774066530306 + 05/17 18:40:00,12.8,12.8,17.319332985831389 + 05/17 18:50:00,12.8,12.8,17.33534373403489 + 05/17 19:00:00,12.8,12.8,17.35086038750644 + 05/17 19:10:00,12.8,12.8,17.378767855986586 + 05/17 19:20:00,12.8,12.8,17.39414521025419 + 05/17 19:30:00,12.8,12.8,17.409167107057873 + 05/17 19:40:00,12.8,12.8,17.424203134470774 + 05/17 19:50:00,12.8,12.8,17.438690429458207 + 05/17 20:00:00,12.8,12.8,17.452408914536357 + 05/17 20:10:00,12.8,12.8,17.442652463765385 + 05/17 20:20:00,12.8,12.8,17.458718501209146 + 05/17 20:30:00,12.8,12.8,17.46944913886099 + 05/17 20:40:00,12.8,12.8,17.479410907739067 + 05/17 20:50:00,12.8,12.8,17.4887497986616 + 05/17 21:00:00,12.8,12.8,17.497530790976599 + 05/17 21:10:00,12.8,12.8,17.506362307873166 + 05/17 21:20:00,12.8,12.8,17.5150262361336 + 05/17 21:30:00,12.8,12.8,17.52322315605751 + 05/17 21:40:00,12.8,12.8,17.531690001999828 + 05/17 21:50:00,12.8,12.8,17.540008577087993 + 05/17 22:00:00,12.8,12.8,17.548451449930697 + 05/17 22:10:00,12.8,12.8,18.9191802146354 + 05/17 22:20:00,12.8,12.8,19.0661422297716 + 05/17 22:30:00,12.8,12.8,19.13189134313263 + 05/17 22:40:00,12.833633633633636,12.833633633633636,19.184060510231356 + 05/17 22:50:00,12.87987987987988,12.87987987987988,19.226559299259106 + 05/17 23:00:00,12.926126126126127,12.926126126126127,19.26254643506837 + 05/17 23:10:00,12.926126126126127,12.926126126126127,19.29377401258114 + 05/17 23:20:00,12.926126126126127,12.926126126126127,19.321840288191266 + 05/17 23:30:00,12.926126126126127,12.926126126126127,19.346903442088168 + 05/17 23:40:00,12.926126126126127,12.926126126126127,19.36975252327218 + 05/17 23:50:00,12.926126126126127,12.926126126126127,19.390665575406694 + 05/17 24:00:00,12.926126126126127,12.926126126126127,19.40979519295775 + 05/18 00:10:00,13.022822822822823,13.022822822822823,19.427988191330255 + 05/18 00:20:00,13.11951951951952,13.11951951951952,19.444699986138173 + 05/18 00:30:00,13.216216216216216,13.216216216216216,19.46073191065676 + 05/18 00:40:00,13.312912912912914,13.312912912912914,19.47623974283676 + 05/18 00:50:00,13.40960960960961,13.40960960960961,19.49103514488464 + 05/18 01:00:00,13.506306306306307,13.506306306306307,19.505492096037288 + 05/18 01:10:00,13.506306306306307,13.506306306306307,19.51896487100408 + 05/18 01:20:00,13.506306306306307,13.506306306306307,19.532392432047478 + 05/18 01:30:00,13.506306306306307,13.506306306306307,19.545209052297915 + 05/18 01:40:00,13.506306306306307,13.506306306306307,19.55754373414921 + 05/18 01:50:00,13.506306306306307,13.506306306306307,19.56921230723488 + 05/18 02:00:00,13.506306306306307,13.506306306306307,19.580525024824948 + 05/18 02:10:00,13.527327327327328,13.527327327327328,19.591460967444669 + 05/18 02:20:00,13.548348348348349,13.548348348348349,19.60257370611287 + 05/18 02:30:00,13.56936936936937,13.56936936936937,19.6132045558124 + 05/18 02:40:00,13.590390390390392,13.590390390390392,19.623512616720409 + 05/18 02:50:00,13.611411411411412,13.611411411411412,19.633416697424456 + 05/18 03:00:00,13.632432432432433,13.632432432432433,19.642874652733384 + 05/18 03:10:00,13.67867867867868,13.67867867867868,19.652173487700894 + 05/18 03:20:00,13.724924924924924,13.724924924924924,19.660766173351598 + 05/18 03:30:00,13.771171171171173,13.771171171171173,19.669332338934546 + 05/18 03:40:00,13.817417417417419,13.817417417417419,19.677536342601689 + 05/18 03:50:00,13.863663663663666,13.863663663663666,19.685626315826626 + 05/18 04:00:00,13.90990990990991,13.90990990990991,19.69352096369863 + 05/18 04:10:00,13.90990990990991,13.90990990990991,19.70091379535164 + 05/18 04:20:00,13.90990990990991,13.90990990990991,19.70818052988414 + 05/18 04:30:00,13.90990990990991,13.90990990990991,19.71531673867063 + 05/18 04:40:00,13.90990990990991,13.90990990990991,19.722314903965456 + 05/18 04:50:00,13.90990990990991,13.90990990990991,19.72919928375117 + 05/18 05:00:00,13.90990990990991,13.90990990990991,19.73605912077018 + 05/18 05:10:00,13.956156156156157,13.956156156156157,19.74376372498978 + 05/18 05:20:00,14.002402402402403,14.002402402402403,19.75182631024621 + 05/18 05:30:00,14.04864864864865,14.04864864864865,19.759735918384068 + 05/18 05:40:00,14.094894894894896,14.094894894894896,19.767384890483599 + 05/18 05:50:00,14.14114114114114,14.14114114114114,19.77436169307686 + 05/18 06:00:00,14.187387387387388,14.187387387387388,19.780228861828438 + 05/18 06:10:00,14.073873873873874,14.073873873873874,17.780417788124184 + 05/18 06:20:00,13.960360360360362,13.960360360360362,17.5453471045942 + 05/18 06:30:00,13.846846846846848,13.846846846846848,17.456715865894635 + 05/18 06:40:00,13.733333333333335,13.733333333333335,17.385933108326165 + 05/18 06:50:00,13.61981981981982,13.61981981981982,17.32837318753218 + 05/18 07:00:00,13.506306306306307,13.506306306306307,17.27905416589036 + 05/18 07:05:00,13.342342342342342,13.342342342342342,15.79608560177064 + 05/18 07:10:00,13.342342342342342,13.342342342342342,15.795481253773089 + 05/18 07:15:00,13.17837837837838,13.17837837837838,15.572852089808772 + 05/18 07:20:00,13.17837837837838,13.17837837837838,15.572821178458727 + 05/18 07:30:00,13.014414414414415,13.014414414414415,15.463165614743656 + 05/18 07:40:00,12.850450450450453,12.850450450450453,15.372376337047929 + 05/18 07:50:00,12.8,12.8,15.294913032580402 + 05/18 08:00:00,12.8,12.8,15.226691872151906 + 05/18 08:03:19,12.8,12.8,15.142848806330856 + 05/18 08:06:40,12.8,12.8,15.140515084594814 + 05/18 08:10:00,12.8,12.8,15.141999609129556 + 05/18 08:20:00,12.8,12.8,15.07618470000326 + 05/18 08:30:00,12.8,12.8,15.026380488392242 + 05/18 08:40:00,12.8,12.8,14.976096080875803 + 05/18 08:50:00,12.8,12.8,14.930019540790284 + 05/18 09:00:00,12.8,12.8,14.886362255139949 + 05/18 09:10:00,12.8,12.8,14.84565075529664 + 05/18 09:20:00,12.8,12.8,14.796892611615503 + 05/18 09:30:00,12.8,12.8,14.760625605295273 + 05/18 09:40:00,12.8,12.8,14.726423138448653 + 05/18 09:50:00,12.8,12.8,14.69399276943283 + 05/18 10:00:00,12.8,12.8,14.66326585557698 + 05/18 10:10:00,12.8,12.8,14.633884897085276 + 05/18 10:20:00,12.8,12.8,14.602386336345493 + 05/18 10:25:00,12.8,12.8,14.576673251191478 + 05/18 10:30:00,12.8,12.8,14.576306799052994 + 05/18 10:40:00,12.8,12.8,14.549983623853028 + 05/18 10:50:00,12.8,12.8,14.525526169899282 + 05/18 11:00:00,12.8,12.8,14.501686204509252 + 05/18 11:10:00,12.8,12.8,14.479066278739392 + 05/18 11:20:00,12.8,12.8,14.466811651331924 + 05/18 11:30:00,12.8,12.8,14.445574559380157 + 05/18 11:40:00,12.8,12.8,14.424907334427996 + 05/18 11:50:00,12.8,12.8,14.408005556896708 + 05/18 12:00:00,12.8,12.8,14.386363448637527 + 05/18 12:10:00,12.8,12.8,14.368993283011655 + 05/18 12:20:00,12.8,12.8,14.344792825561403 + 05/18 12:30:00,12.8,12.8,14.326631466271073 + 05/18 12:40:00,12.8,12.8,14.312790015765785 + 05/18 12:50:00,12.8,12.8,14.303101566928744 + 05/18 13:00:00,12.8,12.8,14.289561739127916 + 05/18 13:10:00,12.8,12.8,14.277514322828475 + 05/18 13:20:00,12.8,12.8,14.27290578624614 + 05/18 13:30:00,12.8,12.8,14.262244049069662 + 05/18 13:40:00,12.8,12.8,14.252107368757555 + 05/18 13:50:00,12.8,12.8,14.243048161620669 + 05/18 14:00:00,12.8,12.8,14.235720536946602 + 05/18 14:10:00,12.8,12.8,14.225670715369 + 05/18 14:20:00,12.8,12.8,14.220056551514935 + 05/18 14:30:00,12.8,12.8,14.212384259547932 + 05/18 14:40:00,12.8,12.8,14.205363745718059 + 05/18 14:50:00,12.8,12.8,14.1970497488303 + 05/18 15:00:00,12.8,12.8,14.191233827722306 + 05/18 15:05:00,12.8,12.8,16.339302596533679 + 05/18 15:10:00,12.8,12.8,16.33846178433055 + 05/18 15:20:00,12.8,12.8,16.58575657550569 + 05/18 15:30:00,12.8,12.8,16.683494455737095 + 05/18 15:40:00,12.8,12.8,16.757993498196166 + 05/18 15:50:00,12.8,12.8,16.816089965286744 + 05/18 16:00:00,12.8,12.8,16.86336063072462 + 05/18 16:10:00,12.8,12.8,16.927841235725678 + 05/18 16:20:00,12.8,12.8,16.9804439060226 + 05/18 16:30:00,12.8,12.8,17.010418219130324 + 05/18 16:40:00,12.8,12.8,17.037172847869326 + 05/18 16:50:00,12.8,12.8,17.061807824407205 + 05/18 17:00:00,12.8,12.8,17.084772209008699 + 05/18 17:10:00,12.8,12.8,17.119606199626337 + 05/18 17:15:00,12.8,12.8,17.146526054842697 + 05/18 17:20:00,12.8,12.8,17.146441292418936 + 05/18 17:30:00,12.8,12.8,17.166338597623374 + 05/18 17:40:00,12.8,12.8,17.185984174325509 + 05/18 17:50:00,12.8,12.8,17.205654406238425 + 05/18 18:00:00,12.8,12.8,17.22533275534263 + 05/18 18:10:00,12.8,12.8,17.245139050246715 + 05/18 18:20:00,12.8,12.8,17.2646346769635 + 05/18 18:30:00,12.8,12.8,17.283531412203997 + 05/18 18:40:00,12.8,12.8,17.301530565580657 + 05/18 18:50:00,12.8,12.8,17.318334318908847 + 05/18 19:00:00,12.8,12.8,17.33392677574611 + 05/18 19:10:00,12.8,12.8,17.361611925091954 + 05/18 19:20:00,12.8,12.8,17.37654469879958 + 05/18 19:30:00,12.8,12.8,17.39099352814821 + 05/18 19:40:00,12.8,12.8,17.405386218721746 + 05/18 19:50:00,12.8,12.8,17.419357935367068 + 05/18 20:00:00,12.8,12.8,17.43268054070597 + 05/18 20:10:00,12.8,12.8,17.4230707799496 + 05/18 20:20:00,12.8,12.8,17.439483843811485 + 05/18 20:30:00,12.8,12.8,17.450691660056849 + 05/18 20:40:00,12.8,12.8,17.461227790622148 + 05/18 20:50:00,12.8,12.8,17.470905311296453 + 05/18 21:00:00,12.8,12.8,17.480209947151275 + 05/18 21:10:00,12.8,12.8,17.488493910860855 + 05/18 21:20:00,12.8,12.8,17.496445608214228 + 05/18 21:30:00,12.8,12.8,17.5041696216529 + 05/18 21:40:00,12.8,12.8,17.511750992543463 + 05/18 21:50:00,12.8,12.8,17.51915440267951 + 05/18 22:00:00,12.8,12.8,17.526394381353354 + 05/18 22:10:00,12.8,12.8,18.895322188923104 + 05/18 22:20:00,12.8,12.8,19.040981687442775 + 05/18 22:30:00,12.8,12.8,19.10524659569294 + 05/18 22:40:00,12.8,12.8,19.155906358153155 + 05/18 22:50:00,12.8,12.8,19.196728813018699 + 05/18 23:00:00,12.8,12.8,19.23092378100636 + 05/18 23:10:00,12.8,12.8,19.260447361389884 + 05/18 23:20:00,12.8,12.8,19.28691059974372 + 05/18 23:30:00,12.8,12.8,19.310866976878644 + 05/18 23:40:00,12.8,12.8,19.332825715303593 + 05/18 23:50:00,12.8,12.8,19.35311368294063 + 05/18 24:00:00,12.8,12.8,19.371943264117499 + 05/19 00:10:00,12.846246246246248,12.846246246246248,19.38941894100759 + 05/19 00:20:00,12.892492492492494,12.892492492492494,19.407247669098667 + 05/19 00:30:00,12.938738738738739,12.938738738738739,19.424014153654939 + 05/19 00:40:00,12.984984984984987,12.984984984984987,19.440163491281298 + 05/19 00:50:00,13.031231231231232,13.031231231231232,19.455403173161309 + 05/19 01:00:00,13.077477477477478,13.077477477477478,19.470033914390379 + 05/19 01:10:00,13.123723723723725,13.123723723723725,19.48486349159473 + 05/19 01:20:00,13.169969969969971,13.169969969969971,19.49808957959989 + 05/19 01:30:00,13.216216216216218,13.216216216216218,19.51092301031747 + 05/19 01:40:00,13.262462462462464,13.262462462462464,19.523087685807725 + 05/19 01:50:00,13.30870870870871,13.30870870870871,19.534939333618508 + 05/19 02:00:00,13.354954954954956,13.354954954954956,19.546498325215855 + 05/19 02:10:00,13.380180180180182,13.380180180180182,19.55669164071115 + 05/19 02:20:00,13.405405405405407,13.405405405405407,19.56696355302399 + 05/19 02:30:00,13.430630630630632,13.430630630630632,19.57679527208198 + 05/19 02:40:00,13.455855855855857,13.455855855855857,19.586337009737613 + 05/19 02:50:00,13.481081081081081,13.481081081081081,19.595610930162228 + 05/19 03:00:00,13.506306306306307,13.506306306306307,19.604610354674827 + 05/19 03:10:00,13.573573573573574,13.573573573573574,19.613942996522029 + 05/19 03:20:00,13.640840840840842,13.640840840840842,19.6229034549616 + 05/19 03:30:00,13.708108108108109,13.708108108108109,19.631659129826838 + 05/19 03:40:00,13.775375375375376,13.775375375375376,19.64032099232398 + 05/19 03:50:00,13.842642642642645,13.842642642642645,19.648844424284989 + 05/19 04:00:00,13.90990990990991,13.90990990990991,19.657204371146287 + 05/19 04:10:00,13.90990990990991,13.90990990990991,19.665382515289808 + 05/19 04:20:00,13.90990990990991,13.90990990990991,19.67319559191317 + 05/19 04:30:00,13.90990990990991,13.90990990990991,19.680812118588859 + 05/19 04:40:00,13.90990990990991,13.90990990990991,19.68815997432207 + 05/19 04:50:00,13.90990990990991,13.90990990990991,19.69524648561562 + 05/19 05:00:00,13.90990990990991,13.90990990990991,19.702087858757037 + 05/19 05:10:00,13.935135135135136,13.935135135135136,19.70868711200928 + 05/19 05:20:00,13.960360360360362,13.960360360360362,19.71522272591245 + 05/19 05:30:00,13.985585585585586,13.985585585585586,19.721789352384243 + 05/19 05:40:00,14.010810810810812,14.010810810810812,19.72817164103342 + 05/19 05:50:00,14.036036036036038,14.036036036036038,19.73398737323793 + 05/19 06:00:00,14.061261261261262,14.061261261261262,19.738706049699365 + 05/19 06:10:00,13.943543543543545,13.943543543543545,17.744069636346539 + 05/19 06:20:00,13.825825825825826,13.825825825825826,17.510723351997365 + 05/19 06:30:00,13.708108108108109,13.708108108108109,17.424306143204349 + 05/19 06:40:00,13.590390390390392,13.590390390390392,17.35587748010309 + 05/19 06:50:00,13.472672672672673,13.472672672672673,17.30070673163946 + 05/19 07:00:00,13.354954954954956,13.354954954954956,17.253943326345096 + 05/19 07:05:00,13.283483483483485,13.283483483483485,15.772839823502947 + 05/19 07:10:00,13.283483483483485,13.283483483483485,15.773186144861356 + 05/19 07:15:00,13.212012012012013,13.212012012012013,15.547204404940512 + 05/19 07:20:00,13.212012012012013,13.212012012012013,15.547624525261269 + 05/19 07:30:00,13.140540540540542,13.140540540540542,15.43977188905992 + 05/19 07:40:00,13.06906906906907,13.06906906906907,15.35003403819171 + 05/19 07:50:00,12.997597597597599,12.997597597597599,15.27437249154654 + 05/19 08:00:00,12.926126126126127,12.926126126126127,15.208578762624989 + 05/19 08:03:19,12.8,12.8,15.124743659759409 + 05/19 08:06:40,12.8,12.8,15.124121165798304 + 05/19 08:10:00,12.8,12.8,15.124240905226119 + 05/19 08:20:00,12.8,12.8,15.06151715052201 + 05/19 08:30:00,12.8,12.8,15.011469612403746 + 05/19 08:40:00,12.8,12.8,14.964789458766248 + 05/19 08:50:00,12.8,12.8,14.920704855417533 + 05/19 09:00:00,12.8,12.8,14.87878750018319 + 05/19 09:10:00,12.8,12.8,14.839291582304125 + 05/19 09:15:00,12.8,12.8,14.791779355221133 + 05/19 09:20:00,12.8,12.8,14.791555407333286 + 05/19 09:30:00,12.8,12.8,14.755087721187563 + 05/19 09:40:00,12.8,12.8,14.72074950483063 + 05/19 09:50:00,12.8,12.8,14.68764826075375 + 05/19 10:00:00,12.8,12.8,14.655882439795642 + 05/19 10:10:00,12.8,12.8,14.625044534737694 + 05/19 10:20:00,12.8,12.8,14.59172487647905 + 05/19 10:30:00,12.8,12.8,14.56278299274532 + 05/19 10:40:00,12.8,12.8,14.534909292143724 + 05/19 10:50:00,12.8,12.8,14.508267459105685 + 05/19 11:00:00,12.8,12.8,14.48299123612534 + 05/19 11:10:00,12.8,12.8,14.458987343096045 + 05/19 11:20:00,12.8,12.8,14.446087172713469 + 05/19 11:30:00,12.8,12.8,14.425075110068809 + 05/19 11:40:00,12.8,12.8,14.405199123963439 + 05/19 11:50:00,12.8,12.8,14.386554815886218 + 05/19 12:00:00,12.8,12.8,14.368943334476527 + 05/19 12:10:00,12.8,12.8,14.352386259363989 + 05/19 12:20:00,12.8,12.8,14.326829021583917 + 05/19 12:30:00,12.8,12.8,14.311325758280777 + 05/19 12:40:00,12.8,12.8,14.296451086383846 + 05/19 12:50:00,12.8,12.8,14.284313522398774 + 05/19 13:00:00,12.8,12.8,14.26968993979772 + 05/19 13:10:00,12.8,12.8,14.258893512930314 + 05/19 13:20:00,12.8,12.8,14.249508476085847 + 05/19 13:30:00,12.8,12.8,14.236646588877827 + 05/19 13:40:00,12.8,12.8,14.226874011530687 + 05/19 13:50:00,12.8,12.8,14.21587333386941 + 05/19 14:00:00,12.8,12.8,14.204656760217367 + 05/19 14:10:00,12.8,12.8,14.19663410760838 + 05/19 14:20:00,12.8,12.8,14.191410305952099 + 05/19 14:30:00,12.8,12.8,14.181458339912329 + 05/19 14:40:00,12.8,12.8,14.175059461398451 + 05/19 14:50:00,12.8,12.8,14.170685049898083 + 05/19 15:00:00,12.8,12.8,14.162071210819308 + 05/19 15:05:00,12.8,12.8,16.31082013844652 + 05/19 15:10:00,12.8,12.8,16.309601513838236 + 05/19 15:20:00,12.8,12.8,16.560668415225125 + 05/19 15:30:00,12.8,12.8,16.659454217094493 + 05/19 15:40:00,12.8,12.8,16.732786091295769 + 05/19 15:50:00,12.8,12.8,16.79120221669532 + 05/19 16:00:00,12.8,12.8,16.83990641965099 + 05/19 16:10:00,12.8,12.8,16.908344718157676 + 05/19 16:20:00,12.8,12.8,16.96450704525912 + 05/19 16:30:00,12.8,12.8,16.99668959176303 + 05/19 16:40:00,12.8,12.8,17.02510439048627 + 05/19 16:50:00,12.8,12.8,17.05083616105245 + 05/19 17:00:00,12.8,12.8,17.074428273684494 + 05/19 17:10:00,12.8,12.8,17.108449549254268 + 05/19 17:15:00,12.8,12.8,17.13491964146853 + 05/19 17:20:00,12.8,12.8,17.134609052386837 + 05/19 17:30:00,12.8,12.8,17.153819690807624 + 05/19 17:40:00,12.8,12.8,17.17316712378323 + 05/19 17:50:00,12.8,12.8,17.19252317388249 + 05/19 18:00:00,12.8,12.8,17.212218199192649 + 05/19 18:10:00,12.8,12.8,17.23229924922624 + 05/19 18:20:00,12.8,12.8,17.251743737133379 + 05/19 18:30:00,12.8,12.8,17.270477337060844 + 05/19 18:40:00,12.8,12.8,17.28808977850864 + 05/19 18:50:00,12.8,12.8,17.304416146625515 + 05/19 19:00:00,12.8,12.8,17.319558485862538 + 05/19 19:10:00,12.8,12.8,17.347326516236796 + 05/19 19:20:00,12.8,12.8,17.3625199138677 + 05/19 19:30:00,12.8,12.8,17.37751088741192 + 05/19 19:40:00,12.8,12.8,17.39273184925046 + 05/19 19:50:00,12.8,12.8,17.40769042124145 + 05/19 20:00:00,12.8,12.8,17.42215567188688 + 05/19 20:10:00,12.8,12.8,17.404820447113548 + 05/19 20:20:00,12.8,12.8,17.426782047554526 + 05/19 20:30:00,12.8,12.8,17.432102173190019 + 05/19 20:40:00,12.8,12.8,17.44759952570083 + 05/19 20:50:00,12.8,12.8,17.45385746317927 + 05/19 21:00:00,12.8,12.8,17.464606069809628 + 05/19 21:10:00,12.8,12.8,17.47365246389651 + 05/19 21:20:00,12.8,12.8,17.484135888156 + 05/19 21:30:00,12.8,12.8,17.494091321104344 + 05/19 21:40:00,12.8,12.8,17.503732533083516 + 05/19 21:50:00,12.8,12.8,17.512817987697419 + 05/19 22:00:00,12.8,12.8,17.521698569036734 + 05/19 22:10:00,12.8,12.8,18.89507510008278 + 05/19 22:20:00,12.8,12.8,19.04431957570104 + 05/19 22:30:00,12.8,12.8,19.11191825174854 + 05/19 22:40:00,12.8,12.8,19.166046565032326 + 05/19 22:50:00,12.85885885885886,12.85885885885886,19.210336418978398 + 05/19 23:00:00,12.926126126126127,12.926126126126127,19.248009887868834 + 05/19 23:10:00,12.951351351351353,12.951351351351353,19.280819725732383 + 05/19 23:20:00,12.976576576576577,12.976576576576577,19.309084520316135 + 05/19 23:30:00,13.001801801801803,13.001801801801803,19.334548851915913 + 05/19 23:40:00,13.027027027027028,13.027027027027028,19.357656651664219 + 05/19 23:50:00,13.052252252252253,13.052252252252253,19.378983572367916 + 05/19 24:00:00,13.077477477477478,13.077477477477478,19.398773012656233 + 05/20 00:10:00,13.123723723723725,13.123723723723725,19.41706580371583 + 05/20 00:20:00,13.169969969969971,13.169969969969971,19.434913944269004 + 05/20 00:30:00,13.216216216216218,13.216216216216218,19.451791646168716 + 05/20 00:40:00,13.262462462462464,13.262462462462464,19.46797518002024 + 05/20 00:50:00,13.30870870870871,13.30870870870871,19.483370440505224 + 05/20 01:00:00,13.354954954954956,13.354954954954956,19.498080132438117 + 05/20 01:10:00,13.401201201201202,13.401201201201202,19.512280175091328 + 05/20 01:20:00,13.447447447447449,13.447447447447449,19.525153478873585 + 05/20 01:30:00,13.493693693693695,13.493693693693695,19.5377284389811 + 05/20 01:40:00,13.539939939939942,13.539939939939942,19.549780625955145 + 05/20 01:50:00,13.586186186186187,13.586186186186187,19.561508769384166 + 05/20 02:00:00,13.632432432432433,13.632432432432433,19.57293876515638 + 05/20 02:10:00,13.657657657657659,13.657657657657659,19.583729908306386 + 05/20 02:20:00,13.682882882882883,13.682882882882883,19.59498429607541 + 05/20 02:30:00,13.708108108108109,13.708108108108109,19.605882949103696 + 05/20 02:40:00,13.733333333333335,13.733333333333335,19.616691922178114 + 05/20 02:50:00,13.758558558558559,13.758558558558559,19.627147594663755 + 05/20 03:00:00,13.783783783783785,13.783783783783785,19.637214585124189 + 05/20 03:10:00,13.783783783783785,13.783783783783785,19.647430899009085 + 05/20 03:20:00,13.783783783783785,13.783783783783785,19.657139646326756 + 05/20 03:30:00,13.783783783783785,13.783783783783785,19.666626356547306 + 05/20 03:40:00,13.783783783783785,13.783783783783785,19.6758585888078 + 05/20 03:50:00,13.783783783783785,13.783783783783785,19.68483772017703 + 05/20 04:00:00,13.783783783783785,13.783783783783785,19.693659875674848 + 05/20 04:10:00,13.783783783783785,13.783783783783785,19.70151772046512 + 05/20 04:20:00,13.783783783783785,13.783783783783785,19.70920368385199 + 05/20 04:30:00,13.783783783783785,13.783783783783785,19.716722796417444 + 05/20 04:40:00,13.783783783783785,13.783783783783785,19.72406499443975 + 05/20 04:50:00,13.783783783783785,13.783783783783785,19.73129104094087 + 05/20 05:00:00,13.783783783783785,13.783783783783785,19.73862277599253 + 05/20 05:10:00,13.737537537537538,13.737537537537538,19.746560046210676 + 05/20 05:20:00,13.691291291291293,13.691291291291293,19.75442179513134 + 05/20 05:30:00,13.645045045045047,13.645045045045047,19.761680672201419 + 05/20 05:40:00,13.5987987987988,13.5987987987988,19.768096590217355 + 05/20 05:50:00,13.552552552552554,13.552552552552554,19.773409960977785 + 05/20 06:00:00,13.506306306306307,13.506306306306307,19.777322349325755 + 05/20 06:10:00,13.506306306306307,13.506306306306307,19.120292493555369 + 05/20 06:20:00,13.506306306306307,13.506306306306307,19.051388540218768 + 05/20 06:30:00,13.506306306306307,13.506306306306307,19.022795460652458 + 05/20 06:40:00,13.506306306306307,13.506306306306307,18.99995812882927 + 05/20 06:50:00,13.506306306306307,13.506306306306307,18.981224234290346 + 05/20 07:00:00,13.506306306306307,13.506306306306307,18.964800469583076 + 05/20 07:10:00,13.40960960960961,13.40960960960961,17.874225607216247 + 05/20 07:20:00,13.312912912912913,13.312912912912913,17.721866304140158 + 05/20 07:30:00,13.216216216216216,13.216216216216216,17.65359359046073 + 05/20 07:40:00,13.11951951951952,13.11951951951952,17.596797260747168 + 05/20 07:50:00,13.022822822822823,13.022822822822823,17.548318090795676 + 05/20 08:00:00,12.926126126126127,12.926126126126127,17.50517637485595 + 05/20 08:10:00,12.8,12.8,17.466570423997675 + 05/20 08:20:00,12.8,12.8,17.422467018421906 + 05/20 08:30:00,12.8,12.8,17.389390337903906 + 05/20 08:40:00,12.8,12.8,17.358213068773709 + 05/20 08:50:00,12.8,12.8,17.328588788989906 + 05/20 09:00:00,12.8,12.8,17.300310840784577 + 05/20 09:10:00,12.8,12.8,17.273316338526194 + 05/20 09:20:00,12.8,12.8,17.239085023115757 + 05/20 09:30:00,12.8,12.8,17.214378000024074 + 05/20 09:40:00,12.8,12.8,17.190838732611135 + 05/20 09:50:00,12.8,12.8,17.168273202797665 + 05/20 10:00:00,12.8,12.8,17.146712769938636 + 05/20 10:10:00,12.8,12.8,17.126170070883295 + 05/20 10:20:00,12.8,12.8,17.106379058151455 + 05/20 10:30:00,12.8,12.8,17.087311301169277 + 05/20 10:40:00,12.8,12.8,17.06893724083105 + 05/20 10:50:00,12.8,12.8,17.05135407998394 + 05/20 11:00:00,12.8,12.8,17.034577422774924 + 05/20 11:10:00,12.8,12.8,17.018500331232319 + 05/20 11:20:00,12.8,12.8,17.00329519775312 + 05/20 11:30:00,12.8,12.8,16.98880890213142 + 05/20 11:40:00,12.8,12.8,16.975025034458296 + 05/20 11:50:00,12.8,12.8,16.961835928901228 + 05/20 12:00:00,12.8,12.8,16.949186625205664 + 05/20 12:10:00,12.8,12.8,16.93706881526656 + 05/20 12:20:00,12.8,12.8,16.925197427927374 + 05/20 12:30:00,12.8,12.8,16.912559017005195 + 05/20 12:40:00,12.8,12.8,16.902213041371433 + 05/20 12:50:00,12.8,12.8,16.89194254296023 + 05/20 13:00:00,12.8,12.8,16.88311743762879 + 05/20 13:10:00,12.8,12.8,16.876140001960768 + 05/20 13:20:00,12.8,12.8,16.86964647708924 + 05/20 13:30:00,12.8,12.8,16.86334601469523 + 05/20 13:40:00,12.8,12.8,16.857560795044287 + 05/20 13:50:00,12.8,12.8,16.852760434482634 + 05/20 14:00:00,12.8,12.8,16.848528365834598 + 05/20 14:10:00,12.8,12.8,16.843873119955256 + 05/20 14:20:00,12.8,12.8,16.841529118940707 + 05/20 14:30:00,12.8,12.8,16.841407276671725 + 05/20 14:40:00,12.8,12.8,16.841972140679819 + 05/20 14:50:00,12.8,12.8,16.841231694604799 + 05/20 15:00:00,12.8,12.8,16.838532344369854 + 05/20 15:10:00,12.8,12.8,16.83422294530766 + 05/20 15:20:00,12.8,12.8,16.829636456316274 + 05/20 15:30:00,12.8,12.8,16.825063590396053 + 05/20 15:40:00,12.8,12.8,16.822029295563028 + 05/20 15:50:00,12.8,12.8,16.822127677169435 + 05/20 16:00:00,12.8,12.8,16.825693771965974 + 05/20 16:10:00,12.8,12.8,16.844968050948226 + 05/20 16:20:00,12.8,12.8,16.86173848534016 + 05/20 16:30:00,12.8,12.8,16.87020222094863 + 05/20 16:40:00,12.8,12.8,16.866307410019439 + 05/20 16:50:00,12.8,12.8,16.881242450982208 + 05/20 17:00:00,12.8,12.8,16.874928526563399 + 05/20 17:10:00,12.8,12.8,18.65334644621622 + 05/20 17:20:00,12.8,12.8,18.869206268562104 + 05/20 17:30:00,12.8,12.8,18.959721217767564 + 05/20 17:40:00,12.8,12.8,19.029595780876045 + 05/20 17:50:00,12.8,12.8,19.085476202635048 + 05/20 18:00:00,12.8,12.8,19.131816827254437 + 05/20 18:10:00,12.8,12.8,19.186082729234934 + 05/20 18:20:00,12.8,12.8,19.224032073835557 + 05/20 18:30:00,12.8,12.8,19.258749499652 + 05/20 18:40:00,12.8,12.8,19.291191074749457 + 05/20 18:50:00,12.8,12.8,19.321525374115937 + 05/20 19:00:00,12.8,12.8,19.34988762731689 + 05/20 19:10:00,12.821021021021022,12.821021021021022,19.37492097035547 + 05/20 19:20:00,12.842042042042042,12.842042042042042,19.39799582898932 + 05/20 19:30:00,12.863063063063063,12.863063063063063,19.419389926761079 + 05/20 19:40:00,12.884084084084084,12.884084084084084,19.447991652162277 + 05/20 19:50:00,12.905105105105106,12.905105105105106,19.464753233292478 + 05/20 20:00:00,12.926126126126127,12.926126126126127,19.482484946813054 + 05/20 20:10:00,12.926126126126127,12.926126126126127,19.474941773301685 + 05/20 20:20:00,12.926126126126127,12.926126126126127,19.487622277353095 + 05/20 20:30:00,12.926126126126127,12.926126126126127,19.499683021705189 + 05/20 20:40:00,12.926126126126127,12.926126126126127,19.510764301239669 + 05/20 20:50:00,12.926126126126127,12.926126126126127,19.52122958724397 + 05/20 21:00:00,12.926126126126127,12.926126126126127,19.53117455221578 + 05/20 21:10:00,12.926126126126127,12.926126126126127,19.541062269362166 + 05/20 21:20:00,12.926126126126127,12.926126126126127,19.55172632261289 + 05/20 21:30:00,12.926126126126127,12.926126126126127,19.561775470425365 + 05/20 21:40:00,12.926126126126127,12.926126126126127,19.571525380735119 + 05/20 21:50:00,12.926126126126127,12.926126126126127,19.58088065903833 + 05/20 22:00:00,12.926126126126127,12.926126126126127,19.58984174371961 + 05/20 22:10:00,12.997597597597599,12.997597597597599,19.5986869056729 + 05/20 22:20:00,13.06906906906907,13.06906906906907,19.605813716256145 + 05/20 22:30:00,13.140540540540542,13.140540540540542,19.612981069980945 + 05/20 22:40:00,13.212012012012015,13.212012012012015,19.619990914047408 + 05/20 22:50:00,13.283483483483485,13.283483483483485,19.627093297276696 + 05/20 23:00:00,13.354954954954956,13.354954954954956,19.63421017490926 + 05/20 23:10:00,13.380180180180182,13.380180180180182,19.640390383386383 + 05/20 23:20:00,13.405405405405407,13.405405405405407,19.648195075921558 + 05/20 23:30:00,13.430630630630632,13.430630630630632,19.655610265245554 + 05/20 23:40:00,13.455855855855857,13.455855855855857,19.663093287008218 + 05/20 23:50:00,13.481081081081081,13.481081081081081,19.670216856138958 + 05/20 24:00:00,13.506306306306307,13.506306306306307,19.67707129248006 + 05/21 00:10:00,13.552552552552554,13.552552552552554,19.6846714606345 + 05/21 00:20:00,13.5987987987988,13.5987987987988,19.691975270637259 + 05/21 00:30:00,13.645045045045047,13.645045045045047,19.699376784882359 + 05/21 00:40:00,13.691291291291293,13.691291291291293,19.706780051770463 + 05/21 00:50:00,13.737537537537538,13.737537537537538,19.71421779476925 + 05/21 01:00:00,13.783783783783785,13.783783783783785,19.721635473443017 + 05/21 01:10:00,13.804804804804805,13.804804804804805,19.72894771808172 + 05/21 01:20:00,13.825825825825828,13.825825825825828,19.7360742791323 + 05/21 01:30:00,13.846846846846848,13.846846846846848,19.742831410459894 + 05/21 01:40:00,13.867867867867869,13.867867867867869,19.749228876251288 + 05/21 01:50:00,13.88888888888889,13.88888888888889,19.7552699583832 + 05/21 02:00:00,13.90990990990991,13.90990990990991,19.76092204781463 + 05/21 02:10:00,13.935135135135136,13.935135135135136,19.76653670631473 + 05/21 02:20:00,13.960360360360362,13.960360360360362,19.772081464155055 + 05/21 02:30:00,13.985585585585586,13.985585585585586,19.777698595880904 + 05/21 02:40:00,14.010810810810812,14.010810810810812,19.78339409639886 + 05/21 02:50:00,14.036036036036038,14.036036036036038,19.789090773595988 + 05/21 03:00:00,14.061261261261262,14.061261261261262,19.79492427105209 + 05/21 03:10:00,14.061261261261262,14.061261261261262,19.799813829144758 + 05/21 03:20:00,14.061261261261262,14.061261261261262,19.804833459520915 + 05/21 03:30:00,14.061261261261262,14.061261261261262,19.809565443523164 + 05/21 03:40:00,14.061261261261262,14.061261261261262,19.81401025924673 + 05/21 03:50:00,14.061261261261262,14.061261261261262,19.818209022156503 + 05/21 04:00:00,14.061261261261262,14.061261261261262,19.822171452692094 + 05/21 04:10:00,14.061261261261262,14.061261261261262,19.826385463868666 + 05/21 04:20:00,14.061261261261262,14.061261261261262,19.830328316522566 + 05/21 04:30:00,14.061261261261262,14.061261261261262,19.834387998796353 + 05/21 04:40:00,14.061261261261262,14.061261261261262,19.83848138063864 + 05/21 04:50:00,14.061261261261262,14.061261261261262,19.842806393789205 + 05/21 05:00:00,14.061261261261262,14.061261261261262,19.84726809682624 + 05/21 05:10:00,14.061261261261262,14.061261261261262,19.85181805701722 + 05/21 05:20:00,14.061261261261262,14.061261261261262,19.856383569641598 + 05/21 05:30:00,14.061261261261262,14.061261261261262,19.860867501801477 + 05/21 05:40:00,14.061261261261262,14.061261261261262,19.865230482771929 + 05/21 05:50:00,14.061261261261262,14.061261261261262,19.868950540723529 + 05/21 06:00:00,14.061261261261262,14.061261261261262,19.871686133147564 + 05/21 06:10:00,14.036036036036036,14.036036036036036,19.896069826703064 + 05/21 06:20:00,14.01081081081081,14.01081081081081,19.897553523191435 + 05/21 06:30:00,13.985585585585586,13.985585585585586,19.898301232127574 + 05/21 06:40:00,13.960360360360362,13.960360360360362,19.898073385152715 + 05/21 06:50:00,13.935135135135136,13.935135135135136,19.896781867163324 + 05/21 07:00:00,13.90990990990991,13.90990990990991,19.89436161149207 + 05/21 07:10:00,13.842642642642645,13.842642642642645,18.495064295163297 + 05/21 07:20:00,13.775375375375376,13.775375375375376,18.324342137675374 + 05/21 07:30:00,13.708108108108109,13.708108108108109,18.253376266073265 + 05/21 07:40:00,13.640840840840842,13.640840840840842,18.195415619039424 + 05/21 07:50:00,13.573573573573574,13.573573573573574,18.147343103026743 + 05/21 08:00:00,13.506306306306307,13.506306306306307,18.106309079283557 + 05/21 08:10:00,13.434834834834835,13.434834834834835,18.070500335203186 + 05/21 08:20:00,13.363363363363364,13.363363363363364,18.03055164430768 + 05/21 08:30:00,13.291891891891894,13.291891891891894,18.00225811982554 + 05/21 08:40:00,13.220420420420421,13.220420420420421,17.976394394059594 + 05/21 08:50:00,13.148948948948949,13.148948948948949,17.951961123819538 + 05/21 09:00:00,13.077477477477478,13.077477477477478,17.92851557573368 + 05/21 09:10:00,13.006006006006008,13.006006006006008,17.906026899737144 + 05/21 09:20:00,12.934534534534535,12.934534534534535,17.87551432578574 + 05/21 09:30:00,12.863063063063063,12.863063063063063,17.851548931668068 + 05/21 09:40:00,12.8,12.8,17.830848688600527 + 05/21 09:50:00,12.8,12.8,17.80992198503835 + 05/21 10:00:00,12.8,12.8,17.78944738190707 + 05/21 10:10:00,12.8,12.8,17.76896011242461 + 05/21 10:20:00,12.8,12.8,17.748300155814407 + 05/21 10:30:00,12.8,12.8,17.72746869295237 + 05/21 10:40:00,12.8,12.8,17.707033347853597 + 05/21 10:50:00,12.8,12.8,17.68816951196359 + 05/21 11:00:00,12.8,12.8,17.671165612187033 + 05/21 11:10:00,12.8,12.8,17.655484225123609 + 05/21 11:20:00,12.8,12.8,17.64094752828228 + 05/21 11:30:00,12.8,12.8,17.627369832827033 + 05/21 11:40:00,12.8,12.8,17.614473320458577 + 05/21 11:50:00,12.8,12.8,17.602028657535695 + 05/21 12:00:00,12.8,12.8,17.590169949531146 + 05/21 12:10:00,12.8,12.8,17.57942514962556 + 05/21 12:20:00,12.8,12.8,17.569407875411856 + 05/21 12:30:00,12.8,12.8,17.56024454098958 + 05/21 12:40:00,12.8,12.8,17.551832156927646 + 05/21 12:50:00,12.8,12.8,17.543935841334745 + 05/21 13:00:00,12.8,12.8,17.5363888789677 + 05/21 13:10:00,12.8,12.8,17.529826812393734 + 05/21 13:20:00,12.8,12.8,17.523629412899287 + 05/21 13:30:00,12.8,12.8,17.51770660964195 + 05/21 13:40:00,12.8,12.8,17.51192125471862 + 05/21 13:50:00,12.8,12.8,17.50588831877596 + 05/21 14:00:00,12.8,12.8,17.49945289601257 + 05/21 14:10:00,12.8,12.8,17.492325759573434 + 05/21 14:20:00,12.8,12.8,17.48508130454709 + 05/21 14:30:00,12.8,12.8,17.477755417690675 + 05/21 14:40:00,12.8,12.8,17.471185285871749 + 05/21 14:50:00,12.8,12.8,17.466828309970738 + 05/21 15:00:00,12.8,12.8,17.464927483492404 + 05/21 15:10:00,12.8,12.8,18.884224507358497 + 05/21 15:20:00,12.8,12.8,19.039587455421065 + 05/21 15:30:00,12.8,12.8,19.106711922780265 + 05/21 15:40:00,12.8,12.8,19.15999700637743 + 05/21 15:50:00,12.8,12.8,19.20198195966922 + 05/21 16:00:00,12.8,12.8,19.236024541957474 + 05/21 16:10:00,12.8,12.8,19.264175063468117 + 05/21 16:20:00,12.8,12.8,19.2972231053796 + 05/21 16:30:00,12.8,12.8,19.318587503312796 + 05/21 16:40:00,12.8,12.8,19.33771828313671 + 05/21 16:50:00,12.8,12.8,19.355309358318725 + 05/21 17:00:00,12.8,12.8,19.371702463852264 + 05/21 17:10:00,12.8,12.8,19.388031630998979 + 05/21 17:20:00,12.8,12.8,19.421072201642205 + 05/21 17:30:00,12.8,12.8,19.43618589632394 + 05/21 17:40:00,12.8,12.8,19.450984674318105 + 05/21 17:50:00,12.8,12.8,19.465600503272808 + 05/21 18:00:00,12.8,12.8,19.480259829081399 + 05/21 18:10:00,12.8,12.8,19.494992469888446 + 05/21 18:20:00,12.8,12.8,19.50554022160628 + 05/21 18:30:00,12.8,12.8,19.522512603537117 + 05/21 18:40:00,12.8,12.8,19.535730676414148 + 05/21 18:50:00,12.8,12.8,19.549409063420705 + 05/21 19:00:00,12.8,12.8,19.563600090754574 + 05/21 19:10:00,12.8,12.8,19.57717535077677 + 05/21 19:20:00,12.8,12.8,19.591397462020315 + 05/21 19:30:00,12.8,12.8,19.604945107028987 + 05/21 19:40:00,12.8,12.8,19.61810233466673 + 05/21 19:50:00,12.8,12.8,19.630700251103478 + 05/21 20:00:00,12.8,12.8,19.6424734312339 + 05/21 20:10:00,12.8,12.8,19.631207781418078 + 05/21 20:20:00,12.8,12.8,19.640495974279938 + 05/21 20:30:00,12.8,12.8,19.649251038184624 + 05/21 20:40:00,12.8,12.8,19.657447550600016 + 05/21 20:50:00,12.8,12.8,19.665308188458537 + 05/21 21:00:00,12.8,12.8,19.67285770363544 + 05/21 21:10:00,12.8,12.8,19.679913966193696 + 05/21 21:20:00,12.8,12.8,19.687625167907318 + 05/21 21:30:00,12.8,12.8,19.694755335171839 + 05/21 21:40:00,12.8,12.8,19.701559286422169 + 05/21 21:50:00,12.8,12.8,19.707811638644743 + 05/21 22:00:00,12.8,12.8,19.713614467485799 + 05/21 22:10:00,12.821021021021022,12.821021021021022,19.719167193903667 + 05/21 22:20:00,12.842042042042042,12.842042042042042,19.724101245762279 + 05/21 22:30:00,12.863063063063063,12.863063063063063,19.728984895361188 + 05/21 22:40:00,12.884084084084084,12.884084084084084,19.7336894213062 + 05/21 22:50:00,12.905105105105106,12.905105105105106,19.73828865536641 + 05/21 23:00:00,12.926126126126127,12.926126126126127,19.742805264226765 + 05/21 23:10:00,12.926126126126127,12.926126126126127,19.747052584144734 + 05/21 23:20:00,12.926126126126127,12.926126126126127,19.751250945537053 + 05/21 23:30:00,12.926126126126127,12.926126126126127,19.755418359054088 + 05/21 23:40:00,12.926126126126127,12.926126126126127,19.759614725660023 + 05/21 23:50:00,12.926126126126127,12.926126126126127,19.76377979408063 + 05/21 24:00:00,12.926126126126127,12.926126126126127,19.767886233906798 + 05/22 00:10:00,12.951351351351353,12.951351351351353,19.77209068539836 + 05/22 00:20:00,12.976576576576577,12.976576576576577,19.775888954403599 + 05/22 00:30:00,13.001801801801803,13.001801801801803,19.77948802324578 + 05/22 00:40:00,13.027027027027028,13.027027027027028,19.78283813346432 + 05/22 00:50:00,13.052252252252253,13.052252252252253,19.785906191094456 + 05/22 01:00:00,13.077477477477478,13.077477477477478,19.788894049057065 + 05/22 01:10:00,13.123723723723725,13.123723723723725,19.79160951257998 + 05/22 01:20:00,13.169969969969971,13.169969969969971,19.794631935923439 + 05/22 01:30:00,13.216216216216218,13.216216216216218,19.797718104378018 + 05/22 01:40:00,13.262462462462464,13.262462462462464,19.80086008661433 + 05/22 01:50:00,13.30870870870871,13.30870870870871,19.804136251322693 + 05/22 02:00:00,13.354954954954956,13.354954954954956,19.80748556021797 + 05/22 02:10:00,13.401201201201202,13.401201201201202,19.81160301445103 + 05/22 02:20:00,13.447447447447449,13.447447447447449,19.81530531955743 + 05/22 02:30:00,13.493693693693695,13.493693693693695,19.819141540859396 + 05/22 02:40:00,13.539939939939942,13.539939939939942,19.82305821525482 + 05/22 02:50:00,13.586186186186187,13.586186186186187,19.82718707480234 + 05/22 03:00:00,13.632432432432433,13.632432432432433,19.83141742369254 + 05/22 03:10:00,13.657657657657659,13.657657657657659,19.834698161187064 + 05/22 03:20:00,13.682882882882883,13.682882882882883,19.838090455850784 + 05/22 03:30:00,13.708108108108109,13.708108108108109,19.841102089050286 + 05/22 03:40:00,13.733333333333335,13.733333333333335,19.84391729475079 + 05/22 03:50:00,13.758558558558559,13.758558558558559,19.84639632354116 + 05/22 04:00:00,13.783783783783785,13.783783783783785,19.84857462410079 + 05/22 04:10:00,13.783783783783785,13.783783783783785,19.8509416889029 + 05/22 04:20:00,13.783783783783785,13.783783783783785,19.8533033510311 + 05/22 04:30:00,13.783783783783785,13.783783783783785,19.855832604563497 + 05/22 04:40:00,13.783783783783785,13.783783783783785,19.85848084023375 + 05/22 04:50:00,13.783783783783785,13.783783783783785,19.861226196553699 + 05/22 05:00:00,13.783783783783785,13.783783783783785,19.864056799758907 + 05/22 05:10:00,13.804804804804805,13.804804804804805,19.86717041318423 + 05/22 05:20:00,13.825825825825828,13.825825825825828,19.870790153214185 + 05/22 05:30:00,13.846846846846848,13.846846846846848,19.874237993161374 + 05/22 05:40:00,13.867867867867869,13.867867867867869,19.87747855090233 + 05/22 05:50:00,13.88888888888889,13.88888888888889,19.88011034625538 + 05/22 06:00:00,13.90990990990991,13.90990990990991,19.882033037556938 + 05/22 06:10:00,13.88888888888889,13.88888888888889,17.892188471129388 + 05/22 06:20:00,13.867867867867869,13.867867867867869,17.654787189288184 + 05/22 06:30:00,13.846846846846848,13.846846846846848,17.563359575806499 + 05/22 06:40:00,13.825825825825828,13.825825825825828,17.491729188952257 + 05/22 06:50:00,13.804804804804805,13.804804804804805,17.433999892948159 + 05/22 07:00:00,13.783783783783785,13.783783783783785,17.385429137324075 + 05/22 07:10:00,13.712312312312314,13.712312312312314,15.90830352010802 + 05/22 07:20:00,13.640840840840842,13.640840840840842,15.669876947770789 + 05/22 07:30:00,13.56936936936937,13.56936936936937,15.561321872075425 + 05/22 07:40:00,13.497897897897899,13.497897897897899,15.469570635388577 + 05/22 07:50:00,13.426426426426428,13.426426426426428,15.39409592991654 + 05/22 08:00:00,13.354954954954956,13.354954954954956,15.327258749379342 + 05/22 08:05:00,13.283483483483485,13.283483483483485,15.239807170850473 + 05/22 08:10:00,13.283483483483485,13.283483483483485,15.239833002473694 + 05/22 08:20:00,13.212012012012013,13.212012012012013,15.173927168515214 + 05/22 08:30:00,13.140540540540542,13.140540540540542,15.119139697905116 + 05/22 08:40:00,13.06906906906907,13.06906906906907,15.067446770673975 + 05/22 08:50:00,12.997597597597599,12.997597597597599,15.019215773372414 + 05/22 09:00:00,12.926126126126127,12.926126126126127,14.974558376264908 + 05/22 09:10:00,12.833633633633636,12.833633633633636,14.933340436816354 + 05/22 09:20:00,12.8,12.8,14.88442315140795 + 05/22 09:30:00,12.8,12.8,14.848343406816199 + 05/22 09:40:00,12.8,12.8,14.814346945774395 + 05/22 09:50:00,12.8,12.8,14.781667594363816 + 05/22 10:00:00,12.8,12.8,14.750038073025245 + 05/22 10:10:00,12.8,12.8,14.71934599594259 + 05/22 10:20:00,12.8,12.8,14.685983182219549 + 05/22 10:30:00,12.8,12.8,14.6568535253278 + 05/22 10:40:00,12.8,12.8,14.628593728041283 + 05/22 10:50:00,12.8,12.8,14.601295376035612 + 05/22 11:00:00,12.8,12.8,14.575028793596902 + 05/22 11:10:00,12.8,12.8,14.549855059213098 + 05/22 11:20:00,12.8,12.8,14.535343802032532 + 05/22 11:30:00,12.8,12.8,14.512365628026157 + 05/22 11:40:00,12.8,12.8,14.490143226291782 + 05/22 11:50:00,12.8,12.8,14.468866624890488 + 05/22 12:00:00,12.8,12.8,14.448419445216232 + 05/22 12:10:00,12.8,12.8,14.428652148723767 + 05/22 12:20:00,12.8,12.8,14.400057831093138 + 05/22 12:30:00,12.8,12.8,14.381690895635778 + 05/22 12:40:00,12.8,12.8,14.364502456232025 + 05/22 12:50:00,12.8,12.8,14.34885711341102 + 05/22 13:00:00,12.8,12.8,14.334914386075587 + 05/22 13:10:00,12.8,12.8,14.32309537779599 + 05/22 13:20:00,12.8,12.8,14.317035713554711 + 05/22 13:30:00,12.8,12.8,14.308505690857233 + 05/22 13:40:00,12.8,12.8,14.298444339011949 + 05/22 13:50:00,12.8,12.8,14.293290098202658 + 05/22 14:00:00,12.8,12.8,14.291637062340972 + 05/22 14:10:00,12.8,12.8,14.289784276598429 + 05/22 14:20:00,12.8,12.8,14.294222643199414 + 05/22 14:30:00,12.8,12.8,14.297893447377362 + 05/22 14:40:00,12.8,12.8,14.300462053375427 + 05/22 14:50:00,12.8,12.8,14.297918240313427 + 05/22 15:00:00,12.8,12.8,14.294158081341824 + 05/22 15:05:00,12.8,12.8,16.440223405958549 + 05/22 15:10:00,12.8,12.8,16.438016783595928 + 05/22 15:20:00,12.8,12.8,16.681320874841036 + 05/22 15:30:00,12.8,12.8,16.771978991353384 + 05/22 15:40:00,12.8,12.8,16.839397881255019 + 05/22 15:50:00,12.8,12.8,16.893051854325198 + 05/22 16:00:00,12.8,12.8,16.938507725152119 + 05/22 16:10:00,12.8,12.8,17.005678616448589 + 05/22 16:20:00,12.8,12.8,17.062725142927446 + 05/22 16:30:00,12.8,12.8,17.100334504200526 + 05/22 16:40:00,12.8,12.8,17.136342769068706 + 05/22 16:50:00,12.8,12.8,17.17034388583688 + 05/22 17:00:00,12.8,12.8,17.202362541271584 + 05/22 17:10:00,12.8,12.8,17.244574402607968 + 05/22 17:20:00,12.8,12.8,17.27732714707672 + 05/22 17:30:00,12.8,12.8,17.302595614725996 + 05/22 17:40:00,12.8,12.8,17.326200894801 + 05/22 17:50:00,12.8,12.8,17.347987717919894 + 05/22 18:00:00,12.8,12.8,17.368744274837384 + 05/22 18:10:00,12.8,12.8,17.38776364706984 + 05/22 18:20:00,12.8,12.8,17.40590009198175 + 05/22 18:30:00,12.8,12.8,17.42318604649264 + 05/22 18:40:00,12.8,12.8,17.439427478528928 + 05/22 18:50:00,12.8,12.8,17.45383776989935 + 05/22 19:00:00,12.8,12.8,17.465483979036564 + 05/22 19:10:00,12.846246246246248,12.846246246246248,17.489337117643165 + 05/22 19:20:00,12.892492492492494,12.892492492492494,17.50165729514361 + 05/22 19:30:00,12.938738738738739,12.938738738738739,17.51321702860406 + 05/22 19:40:00,12.984984984984987,12.984984984984987,17.524901027555335 + 05/22 19:50:00,13.031231231231232,13.031231231231232,17.536492175381484 + 05/22 20:00:00,13.077477477477478,13.077477477477478,17.547666531015535 + 05/22 20:10:00,13.077477477477478,13.077477477477478,17.536257709719814 + 05/22 20:20:00,13.077477477477478,13.077477477477478,17.551463231982067 + 05/22 20:30:00,13.077477477477478,13.077477477477478,17.561477168395237 + 05/22 20:40:00,13.077477477477478,13.077477477477478,17.570822163904404 + 05/22 20:50:00,13.077477477477478,13.077477477477478,17.57946474487285 + 05/22 21:00:00,13.077477477477478,13.077477477477478,17.587495212158755 + 05/22 21:10:00,13.123723723723725,13.123723723723725,17.59528468481542 + 05/22 21:20:00,13.169969969969971,13.169969969969971,17.60284125829974 + 05/22 21:30:00,13.216216216216218,13.216216216216218,17.610813195313523 + 05/22 21:40:00,13.262462462462464,13.262462462462464,17.619094770932365 + 05/22 21:50:00,13.30870870870871,13.30870870870871,17.627692324743359 + 05/22 22:00:00,13.354954954954956,13.354954954954956,17.636647402029607 + 05/22 22:10:00,13.380180180180182,13.380180180180182,19.001899868626994 + 05/22 22:20:00,13.405405405405407,13.405405405405407,19.1480792298975 + 05/22 22:30:00,13.430630630630632,13.430630630630632,19.21351884182838 + 05/22 22:40:00,13.455855855855857,13.455855855855857,19.265161433948469 + 05/22 22:50:00,13.481081081081081,13.481081081081081,19.307028936715903 + 05/22 23:00:00,13.506306306306307,13.506306306306307,19.342233655678045 + 05/22 23:10:00,13.506306306306307,13.506306306306307,19.372796501582739 + 05/22 23:20:00,13.506306306306307,13.506306306306307,19.400353704784558 + 05/22 23:30:00,13.506306306306307,13.506306306306307,19.424913429058866 + 05/22 23:40:00,13.506306306306307,13.506306306306307,19.447331498036175 + 05/22 23:50:00,13.506306306306307,13.506306306306307,19.467839334264469 + 05/22 24:00:00,13.506306306306307,13.506306306306307,19.48675210855783 + 05/23 00:10:00,13.552552552552554,13.552552552552554,19.504092844330736 + 05/23 00:20:00,13.5987987987988,13.5987987987988,19.520853514195875 + 05/23 00:30:00,13.645045045045047,13.645045045045047,19.536970156908866 + 05/23 00:40:00,13.691291291291293,13.691291291291293,19.5523944459125 + 05/23 00:50:00,13.737537537537538,13.737537537537538,19.567334253950219 + 05/23 01:00:00,13.783783783783785,13.783783783783785,19.581697900484448 + 05/23 01:10:00,13.804804804804805,13.804804804804805,19.595685418065945 + 05/23 01:20:00,13.825825825825828,13.825825825825828,19.60829407423907 + 05/23 01:30:00,13.846846846846848,13.846846846846848,19.620461018880854 + 05/23 01:40:00,13.867867867867869,13.867867867867869,19.63194543243861 + 05/23 01:50:00,13.88888888888889,13.88888888888889,19.642992960058387 + 05/23 02:00:00,13.90990990990991,13.90990990990991,19.653618782413227 + 05/23 02:10:00,13.90990990990991,13.90990990990991,19.66417425451742 + 05/23 02:20:00,13.90990990990991,13.90990990990991,19.67474737560279 + 05/23 02:30:00,13.90990990990991,13.90990990990991,19.684893468422375 + 05/23 02:40:00,13.90990990990991,13.90990990990991,19.694721081723857 + 05/23 02:50:00,13.90990990990991,13.90990990990991,19.704167940384776 + 05/23 03:00:00,13.90990990990991,13.90990990990991,19.713175101280457 + 05/23 03:10:00,13.90990990990991,13.90990990990991,19.72076450485371 + 05/23 03:20:00,13.90990990990991,13.90990990990991,19.728118147672473 + 05/23 03:30:00,13.90990990990991,13.90990990990991,19.735271546933118 + 05/23 03:40:00,13.90990990990991,13.90990990990991,19.74223951609012 + 05/23 03:50:00,13.90990990990991,13.90990990990991,19.748968534036366 + 05/23 04:00:00,13.90990990990991,13.90990990990991,19.755566751328968 + 05/23 04:10:00,13.88888888888889,13.88888888888889,19.762623896093097 + 05/23 04:20:00,13.867867867867869,13.867867867867869,19.769411651738559 + 05/23 04:30:00,13.846846846846848,13.846846846846848,19.77539223155924 + 05/23 04:40:00,13.825825825825828,13.825825825825828,19.780651862066216 + 05/23 04:50:00,13.804804804804805,13.804804804804805,19.78519193450755 + 05/23 05:00:00,13.783783783783785,13.783783783783785,19.789135299991039 + 05/23 05:10:00,13.783783783783785,13.783783783783785,19.79285580646672 + 05/23 05:20:00,13.783783783783785,13.783783783783785,19.79635842468078 + 05/23 05:30:00,13.783783783783785,13.783783783783785,19.800327221653377 + 05/23 05:40:00,13.783783783783785,13.783783783783785,19.804401693279404 + 05/23 05:50:00,13.783783783783785,13.783783783783785,19.80847727312864 + 05/23 06:00:00,13.783783783783785,13.783783783783785,19.812268627489578 + 05/23 06:10:00,13.737537537537538,13.737537537537538,17.820068725456374 + 05/23 06:20:00,13.691291291291293,13.691291291291293,17.586651248520338 + 05/23 06:30:00,13.645045045045047,13.645045045045047,17.49989317876135 + 05/23 06:40:00,13.5987987987988,13.5987987987988,17.431712987865333 + 05/23 06:50:00,13.552552552552554,13.552552552552554,17.373591571098438 + 05/23 07:00:00,13.506306306306307,13.506306306306307,17.326540289185585 + 05/23 07:05:00,13.46006006006006,13.46006006006006,15.83488303020998 + 05/23 07:10:00,13.46006006006006,13.46006006006006,15.841309753042836 + 05/23 07:15:00,13.413813813813814,13.413813813813814,15.612052615425898 + 05/23 07:20:00,13.413813813813814,13.413813813813814,15.610259306654868 + 05/23 07:30:00,13.367567567567568,13.367567567567568,15.505098034673106 + 05/23 07:40:00,13.321321321321323,13.321321321321323,15.419751315407574 + 05/23 07:50:00,13.275075075075077,13.275075075075077,15.346413551763899 + 05/23 08:00:00,13.22882882882883,13.22882882882883,15.28252391249462 + 05/23 08:05:00,13.157357357357359,13.157357357357359,15.198398469171189 + 05/23 08:10:00,13.157357357357359,13.157357357357359,15.198607588250692 + 05/23 08:20:00,13.085885885885887,13.085885885885887,15.136715137273259 + 05/23 08:30:00,13.014414414414415,13.014414414414415,15.086749959551048 + 05/23 08:40:00,12.942942942942946,12.942942942942946,15.040307720096921 + 05/23 08:50:00,12.871471471471472,12.871471471471472,14.997139482612594 + 05/23 09:00:00,12.8,12.8,14.957208713221315 + 05/23 09:10:00,12.8,12.8,14.920857307964571 + 05/23 09:20:00,12.8,12.8,14.876882450802376 + 05/23 09:30:00,12.8,12.8,14.845946997933684 + 05/23 09:40:00,12.8,12.8,14.817272676859006 + 05/23 09:50:00,12.8,12.8,14.789781524720326 + 05/23 10:00:00,12.8,12.8,14.763096311591239 + 05/23 10:10:00,12.8,12.8,14.736161535237019 + 05/23 10:20:00,12.8,12.8,14.705828107209595 + 05/23 10:30:00,12.8,12.8,14.67900168250514 + 05/23 10:40:00,12.8,12.8,14.652558710299369 + 05/23 10:50:00,12.8,12.8,14.626915501664087 + 05/23 11:00:00,12.8,12.8,14.602259053349325 + 05/23 11:10:00,12.8,12.8,14.578780604986635 + 05/23 11:20:00,12.8,12.8,14.566068212544093 + 05/23 11:30:00,12.8,12.8,14.544861067265533 + 05/23 11:40:00,12.8,12.8,14.524059828767891 + 05/23 11:50:00,12.8,12.8,14.503071688871487 + 05/23 12:00:00,12.8,12.8,14.481501360619382 + 05/23 12:10:00,12.8,12.8,14.460059279502515 + 05/23 12:20:00,12.8,12.8,14.428650711139336 + 05/23 12:30:00,12.8,12.8,14.406750904483623 + 05/23 12:40:00,12.8,12.8,14.38598010355523 + 05/23 12:50:00,12.8,12.8,14.367316382187577 + 05/23 13:00:00,12.8,12.8,14.351190290461283 + 05/23 13:10:00,12.8,12.8,14.339208149226183 + 05/23 13:20:00,12.8,12.8,14.333509754282267 + 05/23 13:30:00,12.8,12.8,14.325418207897958 + 05/23 13:40:00,12.8,12.8,14.316769144280654 + 05/23 13:50:00,12.8,12.8,14.313687179590679 + 05/23 14:00:00,12.8,12.8,14.31367857624582 + 05/23 14:10:00,12.8,12.8,14.31156542549621 + 05/23 14:20:00,12.8,12.8,14.316777265502437 + 05/23 14:30:00,12.8,12.8,14.319667358090433 + 05/23 14:40:00,12.8,12.8,14.320345941006185 + 05/23 14:50:00,12.8,12.8,14.318776453141764 + 05/23 15:00:00,12.8,12.8,14.316680431095252 + 05/23 15:05:00,12.8,12.8,16.468460283892538 + 05/23 15:10:00,12.8,12.8,16.465261192176919 + 05/23 15:15:00,12.8,12.8,16.71857462307991 + 05/23 15:20:00,12.8,12.8,16.71681949208999 + 05/23 15:30:00,12.8,12.8,16.815445838674468 + 05/23 15:40:00,12.8,12.8,16.888576987784476 + 05/23 15:45:00,12.8,12.8,16.947811822384375 + 05/23 15:50:00,12.8,12.8,16.946871782368704 + 05/23 16:00:00,12.8,12.8,16.99068926182532 + 05/23 16:05:00,12.8,12.8,17.052609810175608 + 05/23 16:10:00,12.8,12.8,17.052248525251174 + 05/23 16:20:00,12.8,12.8,17.09926572230382 + 05/23 16:30:00,12.8,12.8,17.12476393481512 + 05/23 16:40:00,12.8,12.8,17.146057292984087 + 05/23 16:50:00,12.8,12.8,17.167085244445784 + 05/23 17:00:00,12.8,12.8,17.18598385203226 + 05/23 17:10:00,12.8,12.8,17.22042602019217 + 05/23 17:20:00,12.8,12.8,17.2465557331993 + 05/23 17:30:00,12.8,12.8,17.267051898516415 + 05/23 17:40:00,12.8,12.8,17.276929374585806 + 05/23 17:50:00,12.8,12.8,17.301754700166915 + 05/23 18:00:00,12.8,12.8,17.311342692345805 + 05/23 18:10:00,12.8,12.8,17.33038834725652 + 05/23 18:20:00,12.8,12.8,17.350187263124857 + 05/23 18:30:00,12.8,12.8,17.368375505421029 + 05/23 18:40:00,12.8,12.8,17.384016952430785 + 05/23 18:50:00,12.8,12.8,17.40046697615974 + 05/23 19:00:00,12.8,12.8,17.415487114095254 + 05/23 19:10:00,12.8,12.8,17.443454829180494 + 05/23 19:20:00,12.8,12.8,17.459140387266517 + 05/23 19:30:00,12.8,12.8,17.473992990109289 + 05/23 19:40:00,12.8,12.8,17.488660083375689 + 05/23 19:50:00,12.8,12.8,17.502914427631099 + 05/23 20:00:00,12.8,12.8,17.51648518013522 + 05/23 20:10:00,12.8,12.8,17.506623214073053 + 05/23 20:20:00,12.8,12.8,17.522704238708199 + 05/23 20:30:00,12.8,12.8,17.533258639914388 + 05/23 20:40:00,12.8,12.8,17.5427250613716 + 05/23 20:50:00,12.8,12.8,17.55133046124524 + 05/23 21:00:00,12.8,12.8,17.559166669168204 + 05/23 21:10:00,12.8,12.8,17.566519643161504 + 05/23 21:20:00,12.8,12.8,17.57598119023574 + 05/23 21:30:00,12.8,12.8,17.584875849300027 + 05/23 21:40:00,12.833633633633636,12.833633633633636,17.59381224580479 + 05/23 21:50:00,12.87987987987988,12.87987987987988,17.602256100132956 + 05/23 22:00:00,12.926126126126127,12.926126126126127,17.610341947149906 + 05/23 22:10:00,12.951351351351353,12.951351351351353,18.97628068656359 + 05/23 22:20:00,12.976576576576577,12.976576576576577,19.119130045872365 + 05/23 22:30:00,13.001801801801803,13.001801801801803,19.181843281798448 + 05/23 22:40:00,13.027027027027028,13.027027027027028,19.231110546105208 + 05/23 22:50:00,13.052252252252253,13.052252252252253,19.271190574126714 + 05/23 23:00:00,13.077477477477478,13.077477477477478,19.305105689456008 + 05/23 23:10:00,13.077477477477478,13.077477477477478,19.33436735759397 + 05/23 23:20:00,13.077477477477478,13.077477477477478,19.3614376384507 + 05/23 23:30:00,13.077477477477478,13.077477477477478,19.385616744602204 + 05/23 23:40:00,13.077477477477478,13.077477477477478,19.407716096622914 + 05/23 23:50:00,13.077477477477478,13.077477477477478,19.427865675871457 + 05/23 24:00:00,13.077477477477478,13.077477477477478,19.446179929315226 + 05/24 00:10:00,13.148948948948949,13.148948948948949,19.46365061046956 + 05/24 00:20:00,13.220420420420421,13.220420420420421,19.47926998329177 + 05/24 00:30:00,13.291891891891894,13.291891891891894,19.49455000193216 + 05/24 00:40:00,13.363363363363364,13.363363363363364,19.509130990522519 + 05/24 00:50:00,13.434834834834835,13.434834834834835,19.523239223542569 + 05/24 01:00:00,13.506306306306307,13.506306306306307,19.537054980500906 + 05/24 01:10:00,13.506306306306307,13.506306306306307,19.550247468632035 + 05/24 01:20:00,13.506306306306307,13.506306306306307,19.564922006704756 + 05/24 01:30:00,13.506306306306307,13.506306306306307,19.578062026017329 + 05/24 01:40:00,13.506306306306307,13.506306306306307,19.59042009721213 + 05/24 01:50:00,13.506306306306307,13.506306306306307,19.601615054872238 + 05/24 02:00:00,13.506306306306307,13.506306306306307,19.611842038057838 + 05/24 02:10:00,13.506306306306307,13.506306306306307,19.621655555112019 + 05/24 02:20:00,13.506306306306307,13.506306306306307,19.62961425567585 + 05/24 02:30:00,13.506306306306307,13.506306306306307,19.637483337808648 + 05/24 02:40:00,13.506306306306307,13.506306306306307,19.64496952570464 + 05/24 02:50:00,13.506306306306307,13.506306306306307,19.652502834199525 + 05/24 03:00:00,13.506306306306307,13.506306306306307,19.65996130662364 + 05/24 03:10:00,13.527327327327328,13.527327327327328,19.667157030640316 + 05/24 03:20:00,13.548348348348349,13.548348348348349,19.674903401030165 + 05/24 03:30:00,13.56936936936937,13.56936936936937,19.682426069877466 + 05/24 03:40:00,13.590390390390392,13.590390390390392,19.69005988505064 + 05/24 03:50:00,13.611411411411412,13.611411411411412,19.697561036612365 + 05/24 04:00:00,13.632432432432433,13.632432432432433,19.704942945633709 + 05/24 04:10:00,13.632432432432433,13.632432432432433,19.712303007414844 + 05/24 04:20:00,13.632432432432433,13.632432432432433,19.719590490217983 + 05/24 04:30:00,13.632432432432433,13.632432432432433,19.72708798205786 + 05/24 04:40:00,13.632432432432433,13.632432432432433,19.734697850406027 + 05/24 04:50:00,13.632432432432433,13.632432432432433,19.742459787352986 + 05/24 05:00:00,13.632432432432433,13.632432432432433,19.750250849344299 + 05/24 05:10:00,13.611411411411412,13.611411411411412,19.757390232974804 + 05/24 05:20:00,13.590390390390392,13.590390390390392,19.76402508087875 + 05/24 05:30:00,13.56936936936937,13.56936936936937,19.769992333421205 + 05/24 05:40:00,13.548348348348349,13.548348348348349,19.775130750701455 + 05/24 05:50:00,13.527327327327328,13.527327327327328,19.779205053466954 + 05/24 06:00:00,13.506306306306307,13.506306306306307,19.78211703520062 + 05/24 06:10:00,13.481081081081081,13.481081081081081,17.788470581005016 + 05/24 06:20:00,13.455855855855857,13.455855855855857,17.552180562346434 + 05/24 06:30:00,13.430630630630632,13.430630630630632,17.463168992407995 + 05/24 06:40:00,13.405405405405407,13.405405405405407,17.39345072165866 + 05/24 06:50:00,13.380180180180182,13.380180180180182,17.338471475239996 + 05/24 07:00:00,13.354954954954956,13.354954954954956,17.293460910110043 + 05/24 07:05:00,13.354954954954956,13.354954954954956,15.808031048661379 + 05/24 07:10:00,13.354954954954956,13.354954954954956,15.813101231688102 + 05/24 07:15:00,13.354954954954956,13.354954954954956,15.59022604884913 + 05/24 07:20:00,13.354954954954956,13.354954954954956,15.588895551991726 + 05/24 07:30:00,13.354954954954956,13.354954954954956,15.489356656737567 + 05/24 07:40:00,13.354954954954956,13.354954954954956,15.409717962202335 + 05/24 07:50:00,13.354954954954956,13.354954954954956,15.342858531873949 + 05/24 08:00:00,13.354954954954956,13.354954954954956,15.28568882339134 + 05/24 08:03:19,13.426426426426428,13.426426426426428,15.210238520467647 + 05/24 08:06:40,13.426426426426428,13.426426426426428,15.20973744294495 + 05/24 08:10:00,13.426426426426428,13.426426426426428,15.209792215683678 + 05/24 08:20:00,13.497897897897899,13.497897897897899,15.15581435824949 + 05/24 08:30:00,13.56936936936937,13.56936936936937,15.115095842002802 + 05/24 08:40:00,13.640840840840842,13.640840840840842,15.077695207155858 + 05/24 08:50:00,13.712312312312314,13.712312312312314,15.04279598951126 + 05/24 09:00:00,13.783783783783785,13.783783783783785,15.009691289317635 + 05/24 09:10:00,13.737537537537538,13.737537537537538,14.977265608360386 + 05/24 09:20:00,13.691291291291293,13.691291291291293,14.9351928027382 + 05/24 09:30:00,13.645045045045047,13.645045045045047,14.904113251022706 + 05/24 09:40:00,13.5987987987988,13.5987987987988,14.87466229695699 + 05/24 09:50:00,13.552552552552554,13.552552552552554,14.84767726753384 + 05/24 10:00:00,13.506306306306307,13.506306306306307,14.823574686662284 + 05/24 10:10:00,13.506306306306307,13.506306306306307,14.802594477814694 + 05/24 10:20:00,13.506306306306307,13.506306306306307,14.780728435757953 + 05/24 10:30:00,13.506306306306307,13.506306306306307,14.764383993334249 + 05/24 10:40:00,13.506306306306307,13.506306306306307,14.749518616775755 + 05/24 10:50:00,13.506306306306307,13.506306306306307,14.735325972603846 + 05/24 11:00:00,13.506306306306307,13.506306306306307,14.721454074773959 + 05/24 11:10:00,13.481081081081081,13.481081081081081,14.707590009905199 + 05/24 11:20:00,13.455855855855857,13.455855855855857,14.703480745209575 + 05/24 11:30:00,13.430630630630632,13.430630630630632,14.689988533621527 + 05/24 11:40:00,13.405405405405407,13.405405405405407,14.676476363859253 + 05/24 11:50:00,13.380180180180182,13.380180180180182,14.663058015694937 + 05/24 12:00:00,13.354954954954956,13.354954954954956,14.649675798285065 + 05/24 12:10:00,13.354954954954956,13.354954954954956,14.636527665294054 + 05/24 12:20:00,13.354954954954956,13.354954954954956,14.614012101671213 + 05/24 12:30:00,13.354954954954956,13.354954954954956,14.60126623379843 + 05/24 12:40:00,13.354954954954956,13.354954954954956,14.589167323043185 + 05/24 12:50:00,13.354954954954956,13.354954954954956,14.577941775399515 + 05/24 13:00:00,13.354954954954956,13.354954954954956,14.567982099221828 + 05/24 13:10:00,13.354954954954956,13.354954954954956,14.559259662987142 + 05/24 13:20:00,13.354954954954956,13.354954954954956,14.55573318109295 + 05/24 13:30:00,13.354954954954956,13.354954954954956,14.549339283390009 + 05/24 13:40:00,13.354954954954956,13.354954954954956,14.540256355600472 + 05/24 13:50:00,13.354954954954956,13.354954954954956,14.533513902528064 + 05/24 14:00:00,13.354954954954956,13.354954954954956,14.527573800465495 + 05/24 14:10:00,13.380180180180182,13.380180180180182,14.519916599968669 + 05/24 14:20:00,13.405405405405407,13.405405405405407,14.516451083085066 + 05/24 14:30:00,13.430630630630632,13.430630630630632,14.511112730175802 + 05/24 14:40:00,13.455855855855857,13.455855855855857,14.505872706007273 + 05/24 14:50:00,13.481081081081081,13.481081081081081,14.498308927193257 + 05/24 15:00:00,13.506306306306307,13.506306306306307,14.494097618489637 + 05/24 15:05:00,13.506306306306307,13.506306306306307,16.640721717306197 + 05/24 15:10:00,13.506306306306307,13.506306306306307,16.63744759956366 + 05/24 15:20:00,13.506306306306307,13.506306306306307,16.886406182719175 + 05/24 15:30:00,13.506306306306307,13.506306306306307,16.983916338973793 + 05/24 15:40:00,13.506306306306307,13.506306306306307,17.06663673411553 + 05/24 15:50:00,13.506306306306307,13.506306306306307,17.121851637478899 + 05/24 16:00:00,13.506306306306307,13.506306306306307,17.167402082372385 + 05/24 16:10:00,13.46006006006006,13.46006006006006,17.229015845436856 + 05/24 16:20:00,13.413813813813814,13.413813813813814,17.27838282500945 + 05/24 16:30:00,13.367567567567568,13.367567567567568,17.304126660981966 + 05/24 16:40:00,13.321321321321323,13.321321321321323,17.326289977875477 + 05/24 16:50:00,13.275075075075077,13.275075075075077,17.346242861534419 + 05/24 17:00:00,13.22882882882883,13.22882882882883,17.364702038127015 + 05/24 17:10:00,13.22882882882883,13.22882882882883,17.395288158928236 + 05/24 17:20:00,13.22882882882883,13.22882882882883,17.41797546809457 + 05/24 17:30:00,13.22882882882883,13.22882882882883,17.43450322310571 + 05/24 17:40:00,13.22882882882883,13.22882882882883,17.450391585548667 + 05/24 17:50:00,13.22882882882883,13.22882882882883,17.465623695373535 + 05/24 18:00:00,13.22882882882883,13.22882882882883,17.48022912373929 + 05/24 18:10:00,13.22882882882883,13.22882882882883,17.493938375555364 + 05/24 18:20:00,13.22882882882883,13.22882882882883,17.507085760299469 + 05/24 18:30:00,13.22882882882883,13.22882882882883,17.51976270864117 + 05/24 18:40:00,13.22882882882883,13.22882882882883,17.532091893564354 + 05/24 18:50:00,13.22882882882883,13.22882882882883,17.543885434643327 + 05/24 19:00:00,13.22882882882883,13.22882882882883,17.555139825538708 + 05/24 19:10:00,13.22882882882883,13.22882882882883,17.579603017469109 + 05/24 19:20:00,13.22882882882883,13.22882882882883,17.591535286694556 + 05/24 19:30:00,13.22882882882883,13.22882882882883,17.60268339871236 + 05/24 19:40:00,13.22882882882883,13.22882882882883,17.61364637684376 + 05/24 19:50:00,13.22882882882883,13.22882882882883,17.624301614591546 + 05/24 20:00:00,13.22882882882883,13.22882882882883,17.634464525677605 + 05/24 20:10:00,13.24984984984985,13.24984984984985,17.62124305607528 + 05/24 20:20:00,13.270870870870871,13.270870870870871,17.633903942557024 + 05/24 20:30:00,13.291891891891894,13.291891891891894,17.64196998839421 + 05/24 20:40:00,13.312912912912914,13.312912912912914,17.64952242669831 + 05/24 20:50:00,13.333933933933935,13.333933933933935,17.65676387215511 + 05/24 21:00:00,13.354954954954956,13.354954954954956,17.663656352847135 + 05/24 21:10:00,13.380180180180182,13.380180180180182,17.670785627308214 + 05/24 21:20:00,13.405405405405407,13.405405405405407,17.677606993116336 + 05/24 21:30:00,13.430630630630632,13.430630630630632,17.684224679704088 + 05/24 21:40:00,13.455855855855857,13.455855855855857,17.690633856523659 + 05/24 21:50:00,13.481081081081081,13.481081081081081,17.69680373415176 + 05/24 22:00:00,13.506306306306307,13.506306306306307,17.7028809201392 + 05/24 22:10:00,13.527327327327328,13.527327327327328,19.063393878696119 + 05/24 22:20:00,13.548348348348349,13.548348348348349,19.20827447141157 + 05/24 22:30:00,13.56936936936937,13.56936936936937,19.270596370098749 + 05/24 22:40:00,13.590390390390392,13.590390390390392,19.32003336799678 + 05/24 22:50:00,13.611411411411412,13.611411411411412,19.35957879312216 + 05/24 23:00:00,13.632432432432433,13.632432432432433,19.392854638223989 + 05/24 23:10:00,13.657657657657659,13.657657657657659,19.42167415129539 + 05/24 23:20:00,13.682882882882883,13.682882882882883,19.447034816799549 + 05/24 23:30:00,13.708108108108109,13.708108108108109,19.46969627176718 + 05/24 23:40:00,13.733333333333335,13.733333333333335,19.490151936170418 + 05/24 23:50:00,13.758558558558559,13.758558558558559,19.509025420509134 + 05/24 24:00:00,13.783783783783785,13.783783783783785,19.52653636258646 + 05/25 00:10:00,13.804804804804805,13.804804804804805,19.542180293092185 + 05/25 00:20:00,13.825825825825828,13.825825825825828,19.557374436937136 + 05/25 00:30:00,13.846846846846848,13.846846846846848,19.57145538119717 + 05/25 00:40:00,13.867867867867869,13.867867867867869,19.585020810252418 + 05/25 00:50:00,13.88888888888889,13.88888888888889,19.59771211777054 + 05/25 01:00:00,13.90990990990991,13.90990990990991,19.60987889349563 + 05/25 01:10:00,13.88888888888889,13.88888888888889,19.622438023105777 + 05/25 01:20:00,13.867867867867869,13.867867867867869,19.63534656535601 + 05/25 01:30:00,13.846846846846848,13.846846846846848,19.64760233342171 + 05/25 01:40:00,13.825825825825828,13.825825825825828,19.659572755251085 + 05/25 01:50:00,13.804804804804805,13.804804804804805,19.670871931639728 + 05/25 02:00:00,13.783783783783785,13.783783783783785,19.681657614761606 + 05/25 02:10:00,13.804804804804805,13.804804804804805,19.690828880571979 + 05/25 02:20:00,13.825825825825828,13.825825825825828,19.698753554868615 + 05/25 02:30:00,13.846846846846848,13.846846846846848,19.706442960173797 + 05/25 02:40:00,13.867867867867869,13.867867867867869,19.71372512934935 + 05/25 02:50:00,13.88888888888889,13.88888888888889,19.72082968091408 + 05/25 03:00:00,13.90990990990991,13.90990990990991,19.72766915490533 + 05/25 03:10:00,13.90990990990991,13.90990990990991,19.735301346500916 + 05/25 03:20:00,13.90990990990991,13.90990990990991,19.742733618497817 + 05/25 03:30:00,13.90990990990991,13.90990990990991,19.749922398038767 + 05/25 03:40:00,13.90990990990991,13.90990990990991,19.756875433915174 + 05/25 03:50:00,13.90990990990991,13.90990990990991,19.763534671313523 + 05/25 04:00:00,13.90990990990991,13.90990990990991,19.770002792820717 + 05/25 04:10:00,13.90990990990991,13.90990990990991,19.776496100371824 + 05/25 04:20:00,13.90990990990991,13.90990990990991,19.78242124804374 + 05/25 04:30:00,13.90990990990991,13.90990990990991,19.788145385093224 + 05/25 04:40:00,13.90990990990991,13.90990990990991,19.79355762039198 + 05/25 04:50:00,13.90990990990991,13.90990990990991,19.798785028861518 + 05/25 05:00:00,13.90990990990991,13.90990990990991,19.803919109736524 + 05/25 05:10:00,13.90990990990991,13.90990990990991,19.808546053628228 + 05/25 05:20:00,13.90990990990991,13.90990990990991,19.813411788805927 + 05/25 05:30:00,13.90990990990991,13.90990990990991,19.81814409252663 + 05/25 05:40:00,13.90990990990991,13.90990990990991,19.822535715064736 + 05/25 05:50:00,13.90990990990991,13.90990990990991,19.826291139513108 + 05/25 06:00:00,13.90990990990991,13.90990990990991,19.829279352654799 + 05/25 06:10:00,13.88888888888889,13.88888888888889,17.83734868053637 + 05/25 06:20:00,13.867867867867869,13.867867867867869,17.602033447484144 + 05/25 06:30:00,13.846846846846848,13.846846846846848,17.51363884161236 + 05/25 06:40:00,13.825825825825828,13.825825825825828,17.44402820587678 + 05/25 06:50:00,13.804804804804805,13.804804804804805,17.38875719144415 + 05/25 07:00:00,13.783783783783785,13.783783783783785,17.342556143057288 + 05/25 07:05:00,13.758558558558559,13.758558558558559,15.851718875196723 + 05/25 07:10:00,13.758558558558559,13.758558558558559,15.858736248574332 + 05/25 07:15:00,13.733333333333335,13.733333333333335,15.630375883748109 + 05/25 07:20:00,13.733333333333335,13.733333333333335,15.628476511973976 + 05/25 07:30:00,13.708108108108109,13.708108108108109,15.525229997695705 + 05/25 07:40:00,13.682882882882883,13.682882882882883,15.442225419237046 + 05/25 07:50:00,13.657657657657659,13.657657657657659,15.371252853054124 + 05/25 08:00:00,13.632432432432433,13.632432432432433,15.309936938279022 + 05/25 08:05:00,13.611411411411412,13.611411411411412,15.229658119460322 + 05/25 08:10:00,13.611411411411412,13.611411411411412,15.22986066649912 + 05/25 08:20:00,13.590390390390392,13.590390390390392,15.172245362242063 + 05/25 08:30:00,13.56936936936937,13.56936936936937,15.127079805876292 + 05/25 08:40:00,13.548348348348349,13.548348348348349,15.0858126716021 + 05/25 08:50:00,13.527327327327328,13.527327327327328,15.047916634413431 + 05/25 09:00:00,13.506306306306307,13.506306306306307,15.01315273749714 + 05/25 09:10:00,13.434834834834835,13.434834834834835,14.979731258186562 + 05/25 09:20:00,13.363363363363364,13.363363363363364,14.937799526037498 + 05/25 09:30:00,13.291891891891894,13.291891891891894,14.907869005984248 + 05/25 09:40:00,13.220420420420421,13.220420420420421,14.879478063067565 + 05/25 09:50:00,13.148948948948949,13.148948948948949,14.852102385982303 + 05/25 09:55:00,13.077477477477478,13.077477477477478,14.826697880566258 + 05/25 10:00:00,13.077477477477478,13.077477477477478,14.826331528875129 + 05/25 10:10:00,13.077477477477478,13.077477477477478,14.801122909606006 + 05/25 10:20:00,13.077477477477478,13.077477477477478,14.774329197617215 + 05/25 10:30:00,13.077477477477478,13.077477477477478,14.751940594452464 + 05/25 10:40:00,13.077477477477478,13.077477477477478,14.730842954640499 + 05/25 10:50:00,13.077477477477478,13.077477477477478,14.710895048225629 + 05/25 11:00:00,13.077477477477478,13.077477477477478,14.691953005896185 + 05/25 11:10:00,13.077477477477478,13.077477477477478,14.67352466807903 + 05/25 11:20:00,13.077477477477478,13.077477477477478,14.66546667162638 + 05/25 11:30:00,13.077477477477478,13.077477477477478,14.64841933950277 + 05/25 11:40:00,13.077477477477478,13.077477477477478,14.631836542714867 + 05/25 11:50:00,13.077477477477478,13.077477477477478,14.61595968227387 + 05/25 12:00:00,13.077477477477478,13.077477477477478,14.600692724863196 + 05/25 12:10:00,13.052252252252253,13.052252252252253,14.586374400236006 + 05/25 12:20:00,13.027027027027028,13.027027027027028,14.562858058388797 + 05/25 12:30:00,13.001801801801803,13.001801801801803,14.54935909033993 + 05/25 12:40:00,12.976576576576577,12.976576576576577,14.536482439330058 + 05/25 12:50:00,12.951351351351353,12.951351351351353,14.523911971942426 + 05/25 13:00:00,12.926126126126127,12.926126126126127,14.512520722515287 + 05/25 13:10:00,12.951351351351353,12.951351351351353,14.502223423130819 + 05/25 13:20:00,12.976576576576577,12.976576576576577,14.494698954084769 + 05/25 13:30:00,13.001801801801803,13.001801801801803,14.482213568451057 + 05/25 13:40:00,13.027027027027028,13.027027027027028,14.472754687425886 + 05/25 13:50:00,13.052252252252253,13.052252252252253,14.464256917179576 + 05/25 14:00:00,13.077477477477478,13.077477477477478,14.453214217033917 + 05/25 14:10:00,13.052252252252253,13.052252252252253,14.44570377128937 + 05/25 14:20:00,13.027027027027028,13.027027027027028,14.442417773490002 + 05/25 14:30:00,13.001801801801803,13.001801801801803,14.433952796396614 + 05/25 14:40:00,12.976576576576577,12.976576576576577,14.426469362870624 + 05/25 14:50:00,12.951351351351353,12.951351351351353,14.420618982888842 + 05/25 15:00:00,12.926126126126127,12.926126126126127,14.414949779748329 + 05/25 15:05:00,12.905105105105106,12.905105105105106,16.559646553844215 + 05/25 15:10:00,12.905105105105106,12.905105105105106,16.55602411188951 + 05/25 15:15:00,12.884084084084084,12.884084084084084,16.811393285523914 + 05/25 15:20:00,12.884084084084084,12.884084084084084,16.809238954511728 + 05/25 15:30:00,12.863063063063063,12.863063063063063,16.907725387171888 + 05/25 15:40:00,12.842042042042042,12.842042042042042,16.981076715064519 + 05/25 15:50:00,12.821021021021022,12.821021021021022,17.03949265223343 + 05/25 16:00:00,12.8,12.8,17.08490768996926 + 05/25 16:10:00,12.8,12.8,17.14925182423891 + 05/25 16:20:00,12.8,12.8,17.20338013382811 + 05/25 16:30:00,12.8,12.8,17.233366902182977 + 05/25 16:40:00,12.8,12.8,17.26038006531559 + 05/25 16:50:00,12.8,12.8,17.28519207776739 + 05/25 17:00:00,12.8,12.8,17.307990154814264 + 05/25 17:10:00,12.8,12.8,17.341658272681494 + 05/25 17:20:00,12.8,12.8,17.366521598935859 + 05/25 17:30:00,12.8,12.8,17.384431230451719 + 05/25 17:40:00,12.8,12.8,17.401156548687515 + 05/25 17:50:00,12.8,12.8,17.417044541274764 + 05/25 18:00:00,12.8,12.8,17.432085224832418 + 05/25 18:10:00,12.821021021021022,12.821021021021022,17.446568593682124 + 05/25 18:20:00,12.842042042042042,12.842042042042042,17.46053514179962 + 05/25 18:30:00,12.863063063063063,12.863063063063063,17.474072644124055 + 05/25 18:40:00,12.884084084084084,12.884084084084084,17.487193049318547 + 05/25 18:50:00,12.905105105105106,12.905105105105106,17.499920310992928 + 05/25 19:00:00,12.926126126126127,12.926126126126127,17.51224105780802 + 05/25 19:10:00,12.951351351351353,12.951351351351353,17.537147362084164 + 05/25 19:20:00,12.976576576576577,12.976576576576577,17.54965628343524 + 05/25 19:30:00,13.001801801801803,13.001801801801803,17.56143798932079 + 05/25 19:40:00,13.027027027027028,13.027027027027028,17.573086976956913 + 05/25 19:50:00,13.052252252252253,13.052252252252253,17.58445735391485 + 05/25 20:00:00,13.077477477477478,13.077477477477478,17.595243388199564 + 05/25 20:10:00,13.123723723723725,13.123723723723725,17.583180053146366 + 05/25 20:20:00,13.169969969969971,13.169969969969971,17.597220762176588 + 05/25 20:30:00,13.216216216216218,13.216216216216218,17.607001000363913 + 05/25 20:40:00,13.262462462462464,13.262462462462464,17.61662482921726 + 05/25 20:50:00,13.30870870870871,13.30870870870871,17.626247457576704 + 05/25 21:00:00,13.354954954954956,13.354954954954956,17.63579586028464 + 05/25 21:10:00,13.354954954954956,13.354954954954956,17.64561808523386 + 05/25 21:20:00,13.354954954954956,13.354954954954956,17.654702864359189 + 05/25 21:30:00,13.354954954954956,13.354954954954956,17.663052346807274 + 05/25 21:40:00,13.354954954954956,13.354954954954956,17.670682508823714 + 05/25 21:50:00,13.354954954954956,13.354954954954956,17.67761100821804 + 05/25 22:00:00,13.354954954954956,13.354954954954956,17.68391558721541 + 05/25 22:10:00,13.30870870870871,13.30870870870871,19.044154160496125 + 05/25 22:20:00,13.262462462462464,13.262462462462464,19.194626186474243 + 05/25 22:30:00,13.216216216216218,13.216216216216218,19.2571826646986 + 05/25 22:40:00,13.169969969969971,13.169969969969971,19.30787511940386 + 05/25 22:50:00,13.123723723723725,13.123723723723725,19.347263117348527 + 05/25 23:00:00,13.077477477477478,13.077477477477478,19.379965269324246 + 05/25 23:10:00,13.102702702702704,13.102702702702704,19.40617843820208 + 05/25 23:20:00,13.127927927927928,13.127927927927928,19.430867283143895 + 05/25 23:30:00,13.153153153153154,13.153153153153154,19.453415865441558 + 05/25 23:40:00,13.17837837837838,13.17837837837838,19.473219679698376 + 05/25 23:50:00,13.203603603603604,13.203603603603604,19.491905300915584 + 05/25 24:00:00,13.22882882882883,13.22882882882883,19.509170975475848 + 05/26 00:10:00,13.22882882882883,13.22882882882883,19.525195369550035 + 05/26 00:20:00,13.22882882882883,13.22882882882883,19.54166593659922 + 05/26 00:30:00,13.22882882882883,13.22882882882883,19.556959735354405 + 05/26 00:40:00,13.22882882882883,13.22882882882883,19.57149759149551 + 05/26 00:50:00,13.22882882882883,13.22882882882883,19.585051618844596 + 05/26 01:00:00,13.22882882882883,13.22882882882883,19.597915484741067 + 05/26 01:10:00,13.275075075075077,13.275075075075077,19.610305824128184 + 05/26 01:20:00,13.321321321321323,13.321321321321323,19.620868950983966 + 05/26 01:30:00,13.367567567567568,13.367567567567568,19.63092334564896 + 05/26 01:40:00,13.413813813813816,13.413813813813816,19.64017746647847 + 05/26 01:50:00,13.46006006006006,13.46006006006006,19.648957853796337 + 05/26 02:00:00,13.506306306306307,13.506306306306307,19.657302932821023 + 05/26 02:10:00,13.506306306306307,13.506306306306307,19.665602047140859 + 05/26 02:20:00,13.506306306306307,13.506306306306307,19.674026764390374 + 05/26 02:30:00,13.506306306306307,13.506306306306307,19.68207447832714 + 05/26 02:40:00,13.506306306306307,13.506306306306307,19.68987102652364 + 05/26 02:50:00,13.506306306306307,13.506306306306307,19.697444819568707 + 05/26 03:00:00,13.506306306306307,13.506306306306307,19.704763823708214 + 05/26 03:10:00,13.506306306306307,13.506306306306307,19.712199737955247 + 05/26 03:20:00,13.506306306306307,13.506306306306307,19.71936028206827 + 05/26 03:30:00,13.506306306306307,13.506306306306307,19.726181419911286 + 05/26 03:40:00,13.506306306306307,13.506306306306307,19.73286035296833 + 05/26 03:50:00,13.506306306306307,13.506306306306307,19.739328254092844 + 05/26 04:00:00,13.506306306306307,13.506306306306307,19.745604336110778 + 05/26 04:10:00,13.481081081081081,13.481081081081081,19.751539974312754 + 05/26 04:20:00,13.455855855855857,13.455855855855857,19.75777658452867 + 05/26 04:30:00,13.430630630630632,13.430630630630632,19.76378994970672 + 05/26 04:40:00,13.405405405405407,13.405405405405407,19.76969748247815 + 05/26 04:50:00,13.380180180180182,13.380180180180182,19.775341733965975 + 05/26 05:00:00,13.354954954954956,13.354954954954956,19.780766415843229 + 05/26 05:10:00,13.354954954954956,13.354954954954956,19.785539057197285 + 05/26 05:20:00,13.354954954954956,13.354954954954956,19.789595053456833 + 05/26 05:30:00,13.354954954954956,13.354954954954956,19.793680747597639 + 05/26 05:40:00,13.354954954954956,13.354954954954956,19.79736371919069 + 05/26 05:50:00,13.354954954954956,13.354954954954956,19.80044771072786 + 05/26 06:00:00,13.354954954954956,13.354954954954956,19.802782005851549 + 05/26 06:10:00,13.30870870870871,13.30870870870871,17.816893804896887 + 05/26 06:20:00,13.262462462462464,13.262462462462464,17.563528130883513 + 05/26 06:30:00,13.216216216216218,13.216216216216218,17.47454257306032 + 05/26 06:40:00,13.169969969969971,13.169969969969971,17.402231824238219 + 05/26 06:50:00,13.123723723723725,13.123723723723725,17.347679054936717 + 05/26 07:00:00,13.077477477477478,13.077477477477478,17.301951978895553 + 05/26 07:05:00,13.077477477477478,13.077477477477478,15.81116328579469 + 05/26 07:10:00,13.077477477477478,13.077477477477478,15.817706411695536 + 05/26 07:15:00,13.077477477477478,13.077477477477478,15.58955037908147 + 05/26 07:20:00,13.077477477477478,13.077477477477478,15.587831882356552 + 05/26 07:30:00,13.077477477477478,13.077477477477478,15.484797462461131 + 05/26 07:40:00,13.077477477477478,13.077477477477478,15.402172291116779 + 05/26 07:50:00,13.077477477477478,13.077477477477478,15.332033659114819 + 05/26 08:00:00,13.077477477477478,13.077477477477478,15.271875523956151 + 05/26 08:05:00,13.052252252252253,13.052252252252253,15.192222909709788 + 05/26 08:10:00,13.052252252252253,13.052252252252253,15.192407558481076 + 05/26 08:20:00,13.027027027027028,13.027027027027028,15.13543457977187 + 05/26 08:30:00,13.001801801801803,13.001801801801803,15.09088583045612 + 05/26 08:40:00,12.976576576576577,12.976576576576577,15.049940236642007 + 05/26 08:45:00,12.951351351351353,12.951351351351353,15.012478927106465 + 05/26 08:50:00,12.951351351351353,12.951351351351353,15.0122405133903 + 05/26 09:00:00,12.926126126126127,12.926126126126127,14.97596038181284 + 05/26 09:10:00,12.812612612612615,12.812612612612615,14.94210263282633 + 05/26 09:20:00,12.8,12.8,14.899071145440436 + 05/26 09:30:00,12.8,12.8,14.867711257009422 + 05/26 09:40:00,12.8,12.8,14.837939173441637 + 05/26 09:50:00,12.8,12.8,14.810037686477916 + 05/26 10:00:00,12.8,12.8,14.78405208336652 + 05/26 10:10:00,12.8,12.8,14.760419690815603 + 05/26 10:20:00,12.8,12.8,14.735005162344999 + 05/26 10:30:00,12.8,12.8,14.714653987537691 + 05/26 10:40:00,12.8,12.8,14.69491489734295 + 05/26 10:50:00,12.8,12.8,14.674288281681264 + 05/26 11:00:00,12.8,12.8,14.652232584999492 + 05/26 11:10:00,12.8,12.8,14.628859983706429 + 05/26 11:20:00,12.8,12.8,14.61432073725286 + 05/26 11:30:00,12.8,12.8,14.589861665532999 + 05/26 11:40:00,12.8,12.8,14.56533859728481 + 05/26 11:50:00,12.8,12.8,14.541459395256603 + 05/26 12:00:00,12.8,12.8,14.518378036570122 + 05/26 12:10:00,12.8,12.8,14.495824106436047 + 05/26 12:20:00,12.8,12.8,14.463868148476222 + 05/26 12:30:00,12.8,12.8,14.441445359293427 + 05/26 12:40:00,12.8,12.8,14.420519800352788 + 05/26 12:50:00,12.8,12.8,14.40283108521381 + 05/26 13:00:00,12.8,12.8,14.389001924433606 + 05/26 13:10:00,12.8,12.8,14.378754388784995 + 05/26 13:20:00,12.8,12.8,14.376179383776952 + 05/26 13:30:00,12.8,12.8,14.372423417133917 + 05/26 13:40:00,12.8,12.8,14.367619092722088 + 05/26 13:50:00,12.8,12.8,14.36293347460621 + 05/26 14:00:00,12.8,12.8,14.35881574846523 + 05/26 14:10:00,12.8,12.8,14.352681975477334 + 05/26 14:20:00,12.8,12.8,14.34788842190416 + 05/26 14:30:00,12.8,12.8,14.341321558021383 + 05/26 14:40:00,12.8,12.8,14.334648725116394 + 05/26 14:50:00,12.8,12.8,14.32552159185749 + 05/26 15:00:00,12.8,12.8,14.3175257627912 + 05/26 15:05:00,12.8,12.8,16.465809472982416 + 05/26 15:10:00,12.8,12.8,16.462141807140119 + 05/26 15:20:00,12.8,12.8,16.712048410559448 + 05/26 15:30:00,12.8,12.8,16.807563614537928 + 05/26 15:40:00,12.8,12.8,16.879090270721748 + 05/26 15:50:00,12.8,12.8,16.938113258155786 + 05/26 16:00:00,12.8,12.8,16.98794219398987 + 05/26 16:10:00,12.8,12.8,17.0568939142013 + 05/26 16:20:00,12.8,12.8,17.115703318328923 + 05/26 16:30:00,12.8,12.8,17.152740676554889 + 05/26 16:40:00,12.8,12.8,17.187207709257075 + 05/26 16:45:00,12.8,12.8,17.221566257161393 + 05/26 16:50:00,12.8,12.8,17.21803335919348 + 05/26 17:00:00,12.8,12.8,17.246271840423604 + 05/26 17:10:00,12.8,12.8,17.285812818240996 + 05/26 17:20:00,12.8,12.8,17.315045842505876 + 05/26 17:30:00,12.8,12.8,17.340042365791058 + 05/26 17:40:00,12.8,12.8,17.3591873865481 + 05/26 17:50:00,12.842042042042042,12.842042042042042,17.380528136795605 + 05/26 18:00:00,13.077477477477478,13.077477477477478,17.40054536247486 + 05/26 18:10:00,13.123723723723725,13.123723723723725,17.419256230377884 + 05/26 18:20:00,13.169969969969971,13.169969969969971,17.436968505346234 + 05/26 18:30:00,13.216216216216218,13.216216216216218,17.453718581133257 + 05/26 18:40:00,13.262462462462464,13.262462462462464,17.469491946109934 + 05/26 18:50:00,13.30870870870871,13.30870870870871,17.484362621844299 + 05/26 19:00:00,13.354954954954956,13.354954954954956,17.498473522241029 + 05/26 19:10:00,13.380180180180182,13.380180180180182,17.524374294798109 + 05/26 19:20:00,13.405405405405407,13.405405405405407,17.53744843189034 + 05/26 19:30:00,13.430630630630632,13.430630630630632,17.54950824393595 + 05/26 19:40:00,13.455855855855857,13.455855855855857,17.561007422872075 + 05/26 19:50:00,13.481081081081081,13.481081081081081,17.572042256208844 + 05/26 20:00:00,13.506306306306307,13.506306306306307,17.58256051697574 + 05/26 20:10:00,13.506306306306307,13.506306306306307,17.570894298646548 + 05/26 20:20:00,13.506306306306307,13.506306306306307,17.58509028654723 + 05/26 20:30:00,13.506306306306307,13.506306306306307,17.59460830704556 + 05/26 20:40:00,13.506306306306307,13.506306306306307,17.603534973799968 + 05/26 20:50:00,13.506306306306307,13.506306306306307,17.61205086842301 + 05/26 21:00:00,13.506306306306307,13.506306306306307,17.620132278058088 + 05/26 21:10:00,13.506306306306307,13.506306306306307,17.627033391171346 + 05/26 21:20:00,13.506306306306307,13.506306306306307,17.63361694301802 + 05/26 21:30:00,13.506306306306307,13.506306306306307,17.639928559582164 + 05/26 21:40:00,13.506306306306307,13.506306306306307,17.64595233390615 + 05/26 21:50:00,13.506306306306307,13.506306306306307,17.65167941888047 + 05/26 22:00:00,13.506306306306307,13.506306306306307,17.657261789713865 + 05/26 22:10:00,13.552552552552554,13.552552552552554,19.01888521549853 + 05/26 22:20:00,13.5987987987988,13.5987987987988,19.17325166859299 + 05/26 22:30:00,13.645045045045047,13.645045045045047,19.235600837207355 + 05/26 22:40:00,13.691291291291293,13.691291291291293,19.287519605107574 + 05/26 22:50:00,13.737537537537538,13.737537537537538,19.328278375392395 + 05/26 23:00:00,13.783783783783785,13.783783783783785,19.363434038234634 + 05/26 23:10:00,13.783783783783785,13.783783783783785,19.394663848059559 + 05/26 23:20:00,13.783783783783785,13.783783783783785,19.42310808847734 + 05/26 23:30:00,13.783783783783785,13.783783783783785,19.448094743321485 + 05/26 23:40:00,13.783783783783785,13.783783783783785,19.47053100808921 + 05/26 23:50:00,13.783783783783785,13.783783783783785,19.490595950998605 + 05/26 24:00:00,13.783783783783785,13.783783783783785,19.508522067065145 + 05/27 00:10:00,13.783783783783785,13.783783783783785,19.52431836006495 + 05/27 00:20:00,13.783783783783785,13.783783783783785,19.539410788388687 + 05/27 00:30:00,13.783783783783785,13.783783783783785,19.55363251550064 + 05/27 00:40:00,13.783783783783785,13.783783783783785,19.56726297296423 + 05/27 00:50:00,13.783783783783785,13.783783783783785,19.5802568397245 + 05/27 01:00:00,13.783783783783785,13.783783783783785,19.5926874393203 + 05/27 01:10:00,13.783783783783785,13.783783783783785,19.60473406156632 + 05/27 01:20:00,13.783783783783785,13.783783783783785,19.615842580361098 + 05/27 01:30:00,13.783783783783785,13.783783783783785,19.62663622155047 + 05/27 01:40:00,13.783783783783785,13.783783783783785,19.636928849091995 + 05/27 01:50:00,13.783783783783785,13.783783783783785,19.64688334113421 + 05/27 02:00:00,13.783783783783785,13.783783783783785,19.656499005162745 + 05/27 02:10:00,13.783783783783785,13.783783783783785,19.66493751152216 + 05/27 02:20:00,13.783783783783785,13.783783783783785,19.67317715363982 + 05/27 02:30:00,13.783783783783785,13.783783783783785,19.68114144641115 + 05/27 02:40:00,13.783783783783785,13.783783783783785,19.688844348634907 + 05/27 02:50:00,13.783783783783785,13.783783783783785,19.69629784222431 + 05/27 03:00:00,13.783783783783785,13.783783783783785,19.70342564996455 + 05/27 03:10:00,13.758558558558559,13.758558558558559,19.711054588643927 + 05/27 03:20:00,13.733333333333335,13.733333333333335,19.718927396781397 + 05/27 03:30:00,13.708108108108109,13.708108108108109,19.726480171802267 + 05/27 03:40:00,13.682882882882883,13.682882882882883,19.733830935686166 + 05/27 03:50:00,13.657657657657659,13.657657657657659,19.740815240139729 + 05/27 04:00:00,13.632432432432433,13.632432432432433,19.74754338784117 + 05/27 04:10:00,13.657657657657659,13.657657657657659,19.754215823742198 + 05/27 04:20:00,13.682882882882883,13.682882882882883,19.759605295743886 + 05/27 04:30:00,13.708108108108109,13.708108108108109,19.76502924756013 + 05/27 04:40:00,13.733333333333335,13.733333333333335,19.770138754531215 + 05/27 04:50:00,13.758558558558559,13.758558558558559,19.77524097024867 + 05/27 05:00:00,13.783783783783785,13.783783783783785,19.780383280214545 + 05/27 05:10:00,13.758558558558559,13.758558558558559,19.784971399936837 + 05/27 05:20:00,13.733333333333335,13.733333333333335,19.7899822865495 + 05/27 05:30:00,13.708108108108109,13.708108108108109,19.794769317153 + 05/27 05:40:00,13.682882882882883,13.682882882882883,19.79921381523948 + 05/27 05:50:00,13.657657657657659,13.657657657657659,19.803091109681274 + 05/27 06:00:00,13.632432432432433,13.632432432432433,19.806289102226775 + 05/27 06:10:00,13.632432432432433,13.632432432432433,19.151838775081548 + 05/27 06:20:00,13.632432432432433,13.632432432432433,19.083801405219679 + 05/27 06:30:00,13.632432432432433,13.632432432432433,19.05643577847031 + 05/27 06:40:00,13.632432432432433,13.632432432432433,19.034977683269096 + 05/27 06:50:00,13.632432432432433,13.632432432432433,19.01759781943217 + 05/27 07:00:00,13.632432432432433,13.632432432432433,19.002632157745848 + 05/27 07:10:00,13.632432432432433,13.632432432432433,17.92124547102685 + 05/27 07:20:00,13.632432432432433,13.632432432432433,17.76536439292976 + 05/27 07:30:00,13.632432432432433,13.632432432432433,17.70036954567689 + 05/27 07:40:00,13.632432432432433,13.632432432432433,17.646961360642508 + 05/27 07:50:00,13.632432432432433,13.632432432432433,17.603875948905328 + 05/27 08:00:00,13.632432432432433,13.632432432432433,17.5668159826603 + 05/27 08:10:00,13.611411411411412,13.611411411411412,17.53411409840797 + 05/27 08:20:00,13.590390390390392,13.590390390390392,17.495903843434289 + 05/27 08:30:00,13.56936936936937,13.56936936936937,17.468868020377568 + 05/27 08:40:00,13.548348348348349,13.548348348348349,17.444010321513525 + 05/27 08:50:00,13.527327327327328,13.527327327327328,17.420947204023926 + 05/27 09:00:00,13.506306306306307,13.506306306306307,17.399559951189859 + 05/27 09:10:00,13.46006006006006,13.46006006006006,17.379114693754965 + 05/27 09:20:00,13.413813813813814,13.413813813813814,17.350973431959525 + 05/27 09:30:00,13.367567567567568,13.367567567567568,17.332318064657707 + 05/27 09:40:00,13.321321321321323,13.321321321321323,17.314623928721227 + 05/27 09:50:00,13.275075075075077,13.275075075075077,17.29788803265332 + 05/27 10:00:00,13.22882882882883,13.22882882882883,17.28215232366067 + 05/27 10:10:00,13.203603603603604,13.203603603603604,17.26729978479328 + 05/27 10:20:00,13.17837837837838,13.17837837837838,17.253259089396058 + 05/27 10:30:00,13.153153153153154,13.153153153153154,17.239933663109018 + 05/27 10:40:00,13.12792792792793,13.12792792792793,17.226901543341897 + 05/27 10:50:00,13.102702702702704,13.102702702702704,17.213591749909634 + 05/27 11:00:00,13.077477477477478,13.077477477477478,17.19975734699246 + 05/27 11:10:00,13.031231231231232,13.031231231231232,17.185875144067106 + 05/27 11:20:00,12.984984984984987,12.984984984984987,17.171812713031444 + 05/27 11:30:00,12.938738738738739,12.938738738738739,17.157669908043489 + 05/27 11:40:00,12.892492492492494,12.892492492492494,17.14339416962126 + 05/27 11:50:00,12.846246246246248,12.846246246246248,17.128771828447094 + 05/27 12:00:00,12.8,12.8,17.113757824337289 + 05/27 12:10:00,12.8,12.8,17.097864541888869 + 05/27 12:20:00,12.8,12.8,17.08139598870774 + 05/27 12:30:00,12.8,12.8,17.064489868808815 + 05/27 12:35:00,12.8,12.8,17.04880633058906 + 05/27 12:40:00,12.8,12.8,17.048578925503177 + 05/27 12:50:00,12.8,12.8,17.034191548022006 + 05/27 13:00:00,12.8,12.8,17.022860615456943 + 05/27 13:10:00,12.8,12.8,17.01385558735351 + 05/27 13:20:00,12.8,12.8,17.006759145998179 + 05/27 13:30:00,12.8,12.8,17.001088769917449 + 05/27 13:40:00,12.8,12.8,16.996547312084276 + 05/27 13:50:00,12.8,12.8,16.992868397685578 + 05/27 14:00:00,12.8,12.8,16.98992119846602 + 05/27 14:10:00,12.8,12.8,16.987654894245755 + 05/27 14:20:00,12.8,12.8,16.985905269101847 + 05/27 14:30:00,12.8,12.8,16.984622986834397 + 05/27 14:40:00,12.8,12.8,16.982970737112319 + 05/27 14:50:00,12.8,12.8,16.982153372456634 + 05/27 15:00:00,12.8,12.8,16.97366812844077 + 05/27 15:10:00,12.8,12.8,16.96600986324715 + 05/27 15:15:00,12.8,12.8,16.959320509048888 + 05/27 15:20:00,12.8,12.8,16.955482504663445 + 05/27 15:30:00,12.8,12.8,16.94595710963145 + 05/27 15:40:00,12.8,12.8,16.937132993263508 + 05/27 15:50:00,12.8,12.8,16.92839482427189 + 05/27 16:00:00,12.8,12.8,16.921775643838687 + 05/27 16:10:00,12.8,12.8,16.932951168862279 + 05/27 16:20:00,12.8,12.8,16.93897892808657 + 05/27 16:30:00,12.8,12.8,16.94188655369581 + 05/27 16:40:00,12.8,12.8,16.946072934081824 + 05/27 16:50:00,12.8,12.8,16.952654731821853 + 05/27 17:00:00,12.8,12.8,16.96047994842697 + 05/27 17:10:00,12.8,12.8,18.724855146957777 + 05/27 17:20:00,12.8,12.8,18.94503879511401 + 05/27 17:30:00,12.8,12.8,19.03389304123001 + 05/27 17:40:00,12.8,12.8,19.104295027989193 + 05/27 17:50:00,12.8,12.8,19.160268330211307 + 05/27 18:00:00,12.8,12.8,19.206977534989205 + 05/27 18:10:00,12.8,12.8,19.263486999809133 + 05/27 18:20:00,12.8,12.8,19.298461737531036 + 05/27 18:30:00,12.8,12.8,19.33042015009365 + 05/27 18:40:00,12.8,12.8,19.35870689062493 + 05/27 18:50:00,12.8,12.8,19.384774066448764 + 05/27 19:00:00,12.8,12.8,19.408813479241503 + 05/27 19:10:00,12.8,12.8,19.431277754306547 + 05/27 19:20:00,12.8,12.8,19.452391855707263 + 05/27 19:30:00,12.8,12.8,19.472326082834355 + 05/27 19:40:00,12.8,12.8,19.491373456959438 + 05/27 19:50:00,12.8,12.8,19.509457954205627 + 05/27 20:00:00,12.8,12.8,19.52649713940079 + 05/27 20:10:00,12.8,12.8,19.520285081454774 + 05/27 20:20:00,12.8,12.8,19.535773699087995 + 05/27 20:30:00,12.8,12.8,19.550217590884317 + 05/27 20:40:00,12.8,12.8,19.563815872224013 + 05/27 20:50:00,12.8,12.8,19.576488679976224 + 05/27 21:00:00,12.8,12.8,19.588583131994999 + 05/27 21:10:00,12.846246246246248,12.846246246246248,19.600029499543515 + 05/27 21:20:00,12.892492492492494,12.892492492492494,19.610797485714579 + 05/27 21:30:00,12.938738738738739,12.938738738738739,19.621173521552956 + 05/27 21:40:00,12.984984984984987,12.984984984984987,19.63109508126933 + 05/27 21:50:00,13.031231231231232,13.031231231231232,19.640824666835927 + 05/27 22:00:00,13.077477477477478,13.077477477477478,19.6502833042097 + 05/27 22:10:00,13.102702702702704,13.102702702702704,19.66000252184915 + 05/27 22:20:00,13.127927927927928,13.127927927927928,19.668900155417455 + 05/27 22:30:00,13.153153153153154,13.153153153153154,19.67765891155135 + 05/27 22:40:00,13.17837837837838,13.17837837837838,19.68631247696608 + 05/27 22:50:00,13.203603603603604,13.203603603603604,19.694915613529003 + 05/27 23:00:00,13.22882882882883,13.22882882882883,19.703434008737398 + 05/27 23:10:00,13.275075075075077,13.275075075075077,19.711158374733708 + 05/27 23:20:00,13.321321321321323,13.321321321321323,19.71808346545011 + 05/27 23:30:00,13.367567567567568,13.367567567567568,19.724913807382518 + 05/27 23:40:00,13.413813813813816,13.413813813813816,19.731509262705467 + 05/27 23:50:00,13.46006006006006,13.46006006006006,19.737971483895835 + 05/27 24:00:00,13.506306306306307,13.506306306306307,19.74429802319591 + 05/28 00:10:00,13.506306306306307,13.506306306306307,19.7510377778166 + 05/28 00:20:00,13.506306306306307,13.506306306306307,19.75856621576802 + 05/28 00:30:00,13.506306306306307,13.506306306306307,19.765709988906037 + 05/28 00:40:00,13.506306306306307,13.506306306306307,19.772662494294594 + 05/28 00:50:00,13.506306306306307,13.506306306306307,19.77924265613544 + 05/28 01:00:00,13.506306306306307,13.506306306306307,19.7854809057189 + 05/28 01:10:00,13.527327327327328,13.527327327327328,19.791301790323528 + 05/28 01:20:00,13.548348348348349,13.548348348348349,19.797008329949354 + 05/28 01:30:00,13.56936936936937,13.56936936936937,19.802487245077619 + 05/28 01:40:00,13.590390390390392,13.590390390390392,19.807771025417666 + 05/28 01:50:00,13.611411411411412,13.611411411411412,19.81286219341856 + 05/28 02:00:00,13.632432432432433,13.632432432432433,19.817689206537375 + 05/28 02:10:00,13.657657657657659,13.657657657657659,19.822650260907439 + 05/28 02:20:00,13.682882882882883,13.682882882882883,19.82750597258193 + 05/28 02:30:00,13.708108108108109,13.708108108108109,19.83237444600156 + 05/28 02:40:00,13.733333333333335,13.733333333333335,19.837268203553508 + 05/28 02:50:00,13.758558558558559,13.758558558558559,19.842098097800546 + 05/28 03:00:00,13.783783783783785,13.783783783783785,19.84701366173119 + 05/28 03:10:00,13.783783783783785,13.783783783783785,19.851375574549058 + 05/28 03:20:00,13.783783783783785,13.783783783783785,19.85572294448388 + 05/28 03:30:00,13.783783783783785,13.783783783783785,19.85996895644968 + 05/28 03:40:00,13.783783783783785,13.783783783783785,19.86406492718468 + 05/28 03:50:00,13.783783783783785,13.783783783783785,19.868079893373087 + 05/28 04:00:00,13.783783783783785,13.783783783783785,19.87204879874163 + 05/28 04:10:00,13.737537537537538,13.737537537537538,19.876803979013397 + 05/28 04:20:00,13.691291291291293,13.691291291291293,19.881518877863024 + 05/28 04:30:00,13.645045045045047,13.645045045045047,19.885612134198114 + 05/28 04:40:00,13.5987987987988,13.5987987987988,19.8891920450928 + 05/28 04:50:00,13.552552552552554,13.552552552552554,19.89231114289141 + 05/28 05:00:00,13.506306306306307,13.506306306306307,19.894963234325418 + 05/28 05:10:00,13.527327327327328,13.527327327327328,19.897018632438095 + 05/28 05:20:00,13.548348348348349,13.548348348348349,19.898621255063778 + 05/28 05:30:00,13.56936936936937,13.56936936936937,19.90042054953758 + 05/28 05:40:00,13.590390390390392,13.590390390390392,19.902270215895258 + 05/28 05:50:00,13.611411411411412,13.611411411411412,19.903874944005403 + 05/28 06:00:00,13.632432432432433,13.632432432432433,19.905137269866214 + 05/28 06:10:00,13.611411411411412,13.611411411411412,19.92796592647131 + 05/28 06:20:00,13.590390390390392,13.590390390390392,19.92833965688925 + 05/28 06:30:00,13.56936936936937,13.56936936936937,19.92820802920886 + 05/28 06:40:00,13.548348348348349,13.548348348348349,19.927478781529943 + 05/28 06:50:00,13.527327327327328,13.527327327327328,19.92590613662814 + 05/28 07:00:00,13.506306306306307,13.506306306306307,19.923407001000876 + 05/28 07:10:00,13.434834834834835,13.434834834834835,18.529255198749579 + 05/28 07:20:00,13.363363363363364,13.363363363363364,18.359223271518308 + 05/28 07:30:00,13.291891891891894,13.291891891891894,18.28907965225182 + 05/28 07:40:00,13.220420420420421,13.220420420420421,18.22949229968378 + 05/28 07:50:00,13.148948948948949,13.148948948948949,18.18167772906592 + 05/28 08:00:00,13.077477477477478,13.077477477477478,18.13977277142856 + 05/28 08:10:00,13.031231231231232,13.031231231231232,18.102909086123455 + 05/28 08:20:00,12.984984984984987,12.984984984984987,18.060609603839806 + 05/28 08:30:00,12.938738738738739,12.938738738738739,18.02961235399764 + 05/28 08:40:00,12.892492492492494,12.892492492492494,18.000896244241859 + 05/28 08:50:00,12.846246246246248,12.846246246246248,17.973813382444996 + 05/28 09:00:00,12.8,12.8,17.947914794803418 + 05/28 09:10:00,12.8,12.8,17.922700250308976 + 05/28 09:20:00,12.8,12.8,17.88915193739301 + 05/28 09:30:00,12.8,12.8,17.864296893178616 + 05/28 09:40:00,12.8,12.8,17.84053671095853 + 05/28 09:50:00,12.8,12.8,17.819224941812526 + 05/28 10:00:00,12.8,12.8,17.80095734677777 + 05/28 10:10:00,12.8,12.8,17.78564869419956 + 05/28 10:20:00,12.8,12.8,17.772933087958469 + 05/28 10:30:00,12.8,12.8,17.76241967859429 + 05/28 10:40:00,12.8,12.8,17.752945604726816 + 05/28 10:50:00,12.8,12.8,17.743260649141648 + 05/28 11:00:00,12.8,12.8,17.732710383610905 + 05/28 11:10:00,12.8,12.8,17.721519012436578 + 05/28 11:20:00,12.8,12.8,17.70994400188778 + 05/28 11:30:00,12.8,12.8,17.698261960437777 + 05/28 11:40:00,12.8,12.8,17.686707429967958 + 05/28 11:50:00,12.8,12.8,17.675520255252274 + 05/28 12:00:00,12.8,12.8,17.665017429964324 + 05/28 12:10:00,12.8,12.8,17.65496034146915 + 05/28 12:20:00,12.8,12.8,17.64538941602271 + 05/28 12:30:00,12.8,12.8,17.63632994755995 + 05/28 12:40:00,12.8,12.8,17.627684826383495 + 05/28 12:50:00,12.8,12.8,17.619229423089274 + 05/28 13:00:00,12.8,12.8,17.610814112549155 + 05/28 13:10:00,12.8,12.8,17.603052782454556 + 05/28 13:20:00,12.8,12.8,17.5954748349014 + 05/28 13:30:00,12.8,12.8,17.588017023523674 + 05/28 13:40:00,12.8,12.8,17.580959972123077 + 05/28 13:50:00,12.8,12.8,17.574552025907253 + 05/28 14:00:00,12.8,12.8,17.568801934217274 + 05/28 14:10:00,12.8,12.8,17.56356498524275 + 05/28 14:20:00,12.8,12.8,17.558655417737009 + 05/28 14:30:00,12.8,12.8,17.55388935434608 + 05/28 14:40:00,12.8,12.8,17.54892562214867 + 05/28 14:50:00,12.8,12.8,17.543721718273944 + 05/28 15:00:00,12.8,12.8,17.537810272841015 + 05/28 15:10:00,12.8,12.8,18.94864034085287 + 05/28 15:20:00,12.8,12.8,19.0959748711789 + 05/28 15:30:00,12.8,12.8,19.15515526354264 + 05/28 15:40:00,12.8,12.8,19.20147177992596 + 05/28 15:50:00,12.8,12.8,19.239386969038635 + 05/28 16:00:00,12.8,12.8,19.27268593479483 + 05/28 16:10:00,12.8,12.8,19.303656354631209 + 05/28 16:20:00,12.8,12.8,19.34287221866794 + 05/28 16:30:00,12.8,12.8,19.373221851623606 + 05/28 16:40:00,12.8,12.8,19.4029195887235 + 05/28 16:50:00,12.8,12.8,19.43048163392099 + 05/28 17:00:00,12.8,12.8,19.45712329524564 + 05/28 17:10:00,12.8,12.8,19.47852600761344 + 05/28 17:20:00,12.8,12.8,19.515848538340874 + 05/28 17:30:00,12.8,12.8,19.5333547052318 + 05/28 17:40:00,12.8,12.8,19.549075982793867 + 05/28 17:50:00,12.8,12.8,19.563076094546685 + 05/28 18:00:00,12.8,12.8,19.575766172334203 + 05/28 18:10:00,12.8,12.8,19.587925929406397 + 05/28 18:20:00,12.8,12.8,19.599250881805728 + 05/28 18:30:00,12.8,12.8,19.609946757120583 + 05/28 18:40:00,12.8,12.8,19.620285464450029 + 05/28 18:50:00,12.8,12.8,19.630366055802157 + 05/28 19:00:00,12.8,12.8,19.64024377900799 + 05/28 19:10:00,12.8,12.8,19.64979526872095 + 05/28 19:20:00,12.8,12.8,19.65811163546775 + 05/28 19:30:00,12.8,12.8,19.6663983410526 + 05/28 19:40:00,12.8,12.8,19.674532700977659 + 05/28 19:50:00,12.85885885885886,12.85885885885886,19.682789543762547 + 05/28 20:00:00,12.926126126126127,12.926126126126127,19.69083762772652 + 05/28 20:10:00,12.926126126126127,12.926126126126127,19.676691758412333 + 05/28 20:20:00,12.926126126126127,12.926126126126127,19.685030697959193 + 05/28 20:30:00,12.926126126126127,12.926126126126127,19.69291803121498 + 05/28 20:40:00,12.926126126126127,12.926126126126127,19.700667153768369 + 05/28 20:50:00,12.926126126126127,12.926126126126127,19.70808970957254 + 05/28 21:00:00,12.926126126126127,12.926126126126127,19.715235527514819 + 05/28 21:10:00,12.951351351351353,12.951351351351353,19.722210488488618 + 05/28 21:20:00,12.976576576576577,12.976576576576577,19.728702458879515 + 05/28 21:30:00,13.001801801801803,13.001801801801803,19.73487277218934 + 05/28 21:40:00,13.027027027027028,13.027027027027028,19.74064510831222 + 05/28 21:50:00,13.052252252252253,13.052252252252253,19.746050534024716 + 05/28 22:00:00,13.077477477477478,13.077477477477478,19.751127372032195 + 05/28 22:10:00,13.077477477477478,13.077477477477478,19.75565938256984 + 05/28 22:20:00,13.077477477477478,13.077477477477478,19.760101529883508 + 05/28 22:30:00,13.077477477477478,13.077477477477478,19.76442092894595 + 05/28 22:40:00,13.077477477477478,13.077477477477478,19.76861405026956 + 05/28 22:50:00,13.077477477477478,13.077477477477478,19.772687507021673 + 05/28 23:00:00,13.077477477477478,13.077477477477478,19.776599566287648 + 05/28 23:10:00,13.102702702702704,13.102702702702704,19.780621749930089 + 05/28 23:20:00,13.127927927927928,13.127927927927928,19.7843463114511 + 05/28 23:30:00,13.153153153153154,13.153153153153154,19.788558475570704 + 05/28 23:40:00,13.17837837837838,13.17837837837838,19.79304306811168 + 05/28 23:50:00,13.203603603603604,13.203603603603604,19.797868550950136 + 05/28 24:00:00,13.22882882882883,13.22882882882883,19.802953650844214 + 05/29 00:10:00,13.24984984984985,13.24984984984985,19.808165215800309 + 05/29 00:20:00,13.270870870870871,13.270870870870871,19.8140699435387 + 05/29 00:30:00,13.291891891891894,13.291891891891894,19.819825924874317 + 05/29 00:40:00,13.312912912912914,13.312912912912914,19.825574399298675 + 05/29 00:50:00,13.333933933933935,13.333933933933935,19.831078828622834 + 05/29 01:00:00,13.354954954954956,13.354954954954956,19.836559630046584 + 05/29 01:10:00,13.380180180180182,13.380180180180182,19.84204462802357 + 05/29 01:20:00,13.405405405405407,13.405405405405407,19.847266229915389 + 05/29 01:30:00,13.430630630630632,13.430630630630632,19.85233996768576 + 05/29 01:40:00,13.455855855855857,13.455855855855857,19.857157902115895 + 05/29 01:50:00,13.481081081081081,13.481081081081081,19.861909908070147 + 05/29 02:00:00,13.506306306306307,13.506306306306307,19.866577044819008 + 05/29 02:10:00,13.506306306306307,13.506306306306307,19.87087726005234 + 05/29 02:20:00,13.506306306306307,13.506306306306307,19.87505870701056 + 05/29 02:30:00,13.506306306306307,13.506306306306307,19.87897462993775 + 05/29 02:40:00,13.506306306306307,13.506306306306307,19.882734890261334 + 05/29 02:50:00,13.506306306306307,13.506306306306307,19.886366935022968 + 05/29 03:00:00,13.506306306306307,13.506306306306307,19.889850768606249 + 05/29 03:10:00,13.506306306306307,13.506306306306307,19.893485641317299 + 05/29 03:20:00,13.506306306306307,13.506306306306307,19.897405198793817 + 05/29 03:30:00,13.506306306306307,13.506306306306307,19.90108235795255 + 05/29 03:40:00,13.506306306306307,13.506306306306307,19.904747288810066 + 05/29 03:50:00,13.506306306306307,13.506306306306307,19.908240417244067 + 05/29 04:00:00,13.506306306306307,13.506306306306307,19.911593015040876 + 05/29 04:10:00,13.552552552552554,13.552552552552554,19.914843874742219 + 05/29 04:20:00,13.5987987987988,13.5987987987988,19.91725080427088 + 05/29 04:30:00,13.645045045045047,13.645045045045047,19.9200062801195 + 05/29 04:40:00,13.691291291291293,13.691291291291293,19.92277346483333 + 05/29 04:50:00,13.737537537537538,13.737537537537538,19.925743851331889 + 05/29 05:00:00,13.783783783783785,13.783783783783785,19.92886777679787 + 05/29 05:10:00,13.758558558558559,13.758558558558559,19.93172644474798 + 05/29 05:20:00,13.733333333333335,13.733333333333335,19.934685642304094 + 05/29 05:30:00,13.708108108108109,13.708108108108109,19.937300582612584 + 05/29 05:40:00,13.682882882882883,13.682882882882883,19.93934750076165 + 05/29 05:50:00,13.657657657657659,13.657657657657659,19.940407867773037 + 05/29 06:00:00,13.632432432432433,13.632432432432433,19.940391499119238 + 05/29 06:10:00,13.611411411411412,13.611411411411412,19.961741347227127 + 05/29 06:20:00,13.590390390390392,13.590390390390392,19.960466552188469 + 05/29 06:30:00,13.56936936936937,13.56936936936937,19.958207052066034 + 05/29 06:40:00,13.548348348348349,13.548348348348349,19.955176511121019 + 05/29 06:50:00,13.527327327327328,13.527327327327328,19.95123866766881 + 05/29 07:00:00,13.506306306306307,13.506306306306307,19.946716680428545 + 05/29 07:10:00,13.434834834834835,13.434834834834835,18.551882701706796 + 05/29 07:20:00,13.363363363363364,13.363363363363364,18.381541636891645 + 05/29 07:30:00,13.291891891891894,13.291891891891894,18.31189481723907 + 05/29 07:40:00,13.220420420420421,13.220420420420421,18.255941631317964 + 05/29 07:50:00,13.148948948948949,13.148948948948949,18.206739920822597 + 05/29 08:00:00,13.077477477477478,13.077477477477478,18.166087403455486 + 05/29 08:10:00,13.006006006006008,13.006006006006008,18.12875234755792 + 05/29 08:20:00,12.934534534534535,12.934534534534535,18.086118985930857 + 05/29 08:30:00,12.863063063063063,12.863063063063063,18.05422818620287 + 05/29 08:40:00,12.8,12.8,18.02398420334328 + 05/29 08:50:00,12.8,12.8,17.994937802967944 + 05/29 09:00:00,12.8,12.8,17.96690449816931 + 05/29 09:10:00,12.8,12.8,17.939368927429386 + 05/29 09:20:00,12.8,12.8,17.903314141065385 + 05/29 09:30:00,12.8,12.8,17.87611325018526 + 05/29 09:40:00,12.8,12.8,17.84949780115931 + 05/29 09:50:00,12.8,12.8,17.824084605198146 + 05/29 10:00:00,12.8,12.8,17.800218654702549 + 05/29 10:10:00,12.8,12.8,17.778030708407117 + 05/29 10:20:00,12.8,12.8,17.756990861643364 + 05/29 10:30:00,12.8,12.8,17.736766631517953 + 05/29 10:40:00,12.8,12.8,17.71746262015005 + 05/29 10:50:00,12.8,12.8,17.698947750703469 + 05/29 11:00:00,12.8,12.8,17.68111959423187 + 05/29 11:10:00,12.8,12.8,17.663970851444775 + 05/29 11:20:00,12.8,12.8,17.647560933477388 + 05/29 11:30:00,12.8,12.8,17.631762646210818 + 05/29 11:40:00,12.8,12.8,17.61673975704082 + 05/29 11:50:00,12.8,12.8,17.603011204112016 + 05/29 12:00:00,12.8,12.8,17.590553800514198 + 05/29 12:10:00,12.8,12.8,17.57945574290099 + 05/29 12:20:00,12.8,12.8,17.56931062266803 + 05/29 12:30:00,12.8,12.8,17.55996833886078 + 05/29 12:40:00,12.8,12.8,17.550991623985277 + 05/29 12:50:00,12.8,12.8,17.541882824468187 + 05/29 13:00:00,12.8,12.8,17.532594032288168 + 05/29 13:10:00,12.8,12.8,17.523293461463476 + 05/29 13:20:00,12.8,12.8,17.514089747043874 + 05/29 13:30:00,12.8,12.8,17.505303836414606 + 05/29 13:40:00,12.8,12.8,17.497003492162876 + 05/29 13:50:00,12.8,12.8,17.489339200977143 + 05/29 14:00:00,12.8,12.8,17.482384532923239 + 05/29 14:10:00,12.8,12.8,17.476124374242859 + 05/29 14:20:00,12.8,12.8,17.47004397439563 + 05/29 14:30:00,12.8,12.8,17.46385036177496 + 05/29 14:40:00,12.8,12.8,17.457966910394185 + 05/29 14:50:00,12.8,12.8,17.45263734565841 + 05/29 15:00:00,12.8,12.8,17.447529884136416 + 05/29 15:10:00,12.8,12.8,18.8616180803214 + 05/29 15:20:00,12.8,12.8,19.012302987527364 + 05/29 15:30:00,12.8,12.8,19.074997716260645 + 05/29 15:40:00,12.8,12.8,19.124464946839124 + 05/29 15:50:00,12.8,12.8,19.1636614867533 + 05/29 16:00:00,12.8,12.8,19.195917651600248 + 05/29 16:10:00,12.8,12.8,19.22389971795872 + 05/29 16:20:00,12.8,12.8,19.257139512737607 + 05/29 16:30:00,12.8,12.8,19.27894755611186 + 05/29 16:40:00,12.8,12.8,19.2986361841478 + 05/29 16:50:00,12.8,12.8,19.317073691022999 + 05/29 17:00:00,12.8,12.8,19.334535258281148 + 05/29 17:10:00,12.8,12.8,19.3511751820279 + 05/29 17:20:00,12.8,12.8,19.384580656128784 + 05/29 17:30:00,12.8,12.8,19.40007459040381 + 05/29 17:40:00,12.8,12.8,19.414981415676896 + 05/29 17:50:00,12.8,12.8,19.42963096336718 + 05/29 18:00:00,12.8,12.8,19.44404151708446 + 05/29 18:10:00,12.8,12.8,19.458804305554375 + 05/29 18:20:00,12.8,12.8,19.473441739912908 + 05/29 18:30:00,12.8,12.8,19.48790825998256 + 05/29 18:40:00,12.8,12.8,19.502216627230245 + 05/29 18:50:00,12.8,12.8,19.51615349908745 + 05/29 19:00:00,12.8,12.8,19.52968321698911 + 05/29 19:10:00,12.8,12.8,19.542486549847966 + 05/29 19:20:00,12.8,12.8,19.554699443619915 + 05/29 19:30:00,12.8,12.8,19.566497844499979 + 05/29 19:40:00,12.8,12.8,19.577850153329285 + 05/29 19:50:00,12.8,12.8,19.588666924571993 + 05/29 20:00:00,12.8,12.8,19.598716039101477 + 05/29 20:10:00,12.8,12.8,19.586129035219718 + 05/29 20:20:00,12.8,12.8,19.595719393851366 + 05/29 20:30:00,12.8,12.8,19.605196031158309 + 05/29 20:40:00,12.8,12.8,19.6146822459542 + 05/29 20:50:00,12.8,12.8,19.62415472441525 + 05/29 21:00:00,12.8,12.8,19.633528912006214 + 05/29 21:10:00,12.8,12.8,19.64249654726966 + 05/29 21:20:00,12.8,12.8,19.65297380035212 + 05/29 21:30:00,12.8,12.8,19.660822648381357 + 05/29 21:40:00,12.8,12.8,19.668903947121316 + 05/29 21:50:00,12.8,12.8,19.67630236658509 + 05/29 22:00:00,12.8,12.8,19.683724182158835 + 05/29 22:10:00,12.8,12.8,19.691370142547244 + 05/29 22:20:00,12.8,12.8,19.698641190783684 + 05/29 22:30:00,12.8,12.8,19.70558513384136 + 05/29 22:40:00,12.8,12.8,19.712196756995568 + 05/29 22:50:00,12.8,12.8,19.718535239228954 + 05/29 23:00:00,12.8,12.8,19.724747336070377 + 05/29 23:10:00,12.8,12.8,19.73074357534605 + 05/29 23:20:00,12.8,12.8,19.736418452425697 + 05/29 23:30:00,12.8,12.8,19.74212384267549 + 05/29 23:40:00,12.8,12.8,19.74772375899308 + 05/29 23:50:00,12.8,12.8,19.753461831053948 + 05/29 24:00:00,12.8,12.8,19.75922685774492 + 05/30 00:10:00,12.821021021021022,12.821021021021022,19.764479946194407 + 05/30 00:20:00,12.842042042042042,12.842042042042042,19.770138675846053 + 05/30 00:30:00,12.863063063063063,12.863063063063063,19.775531646246156 + 05/30 00:40:00,12.884084084084084,12.884084084084084,19.780988502806819 + 05/30 00:50:00,12.905105105105106,12.905105105105106,19.786365225335755 + 05/30 01:00:00,12.926126126126127,12.926126126126127,19.791874262622629 + 05/30 01:10:00,12.905105105105106,12.905105105105106,19.797862433801798 + 05/30 01:20:00,12.884084084084084,12.884084084084084,19.80342988230617 + 05/30 01:30:00,12.863063063063063,12.863063063063063,19.808750331078906 + 05/30 01:40:00,12.842042042042042,12.842042042042042,19.813742388413624 + 05/30 01:50:00,12.821021021021022,12.821021021021022,19.81841586133566 + 05/30 02:00:00,12.8,12.8,19.82278190980428 + 05/30 02:10:00,12.846246246246248,12.846246246246248,19.82692779965967 + 05/30 02:20:00,12.892492492492494,12.892492492492494,19.83072721506715 + 05/30 02:30:00,12.938738738738739,12.938738738738739,19.834250488732267 + 05/30 02:40:00,12.984984984984987,12.984984984984987,19.83762965371723 + 05/30 02:50:00,13.031231231231232,13.031231231231232,19.840919959426257 + 05/30 03:00:00,13.077477477477478,13.077477477477478,19.844154241010548 + 05/30 03:10:00,13.077477477477478,13.077477477477478,19.847045214556056 + 05/30 03:20:00,13.077477477477478,13.077477477477478,19.85005686297933 + 05/30 03:30:00,13.077477477477478,13.077477477477478,19.852983545347237 + 05/30 03:40:00,13.077477477477478,13.077477477477478,19.8558533372473 + 05/30 03:50:00,13.077477477477478,13.077477477477478,19.858649386944806 + 05/30 04:00:00,13.077477477477478,13.077477477477478,19.861286460946255 + 05/30 04:10:00,13.148948948948949,13.148948948948949,19.86392322241442 + 05/30 04:20:00,13.220420420420421,13.220420420420421,19.86664980587134 + 05/30 04:30:00,13.291891891891894,13.291891891891894,19.86938592657897 + 05/30 04:40:00,13.363363363363364,13.363363363363364,19.87214792453103 + 05/30 04:50:00,13.434834834834835,13.434834834834835,19.87483671172469 + 05/30 05:00:00,13.506306306306307,13.506306306306307,19.87755547962224 + 05/30 05:10:00,13.40960960960961,13.40960960960961,19.880385767143794 + 05/30 05:20:00,13.312912912912913,13.312912912912913,19.883393655689468 + 05/30 05:30:00,13.216216216216216,13.216216216216216,19.886051812469547 + 05/30 05:40:00,13.11951951951952,13.11951951951952,19.888199684594484 + 05/30 05:50:00,13.022822822822823,13.022822822822823,19.88940767767874 + 05/30 06:00:00,12.926126126126127,12.926126126126127,19.889507949181433 + 05/30 06:10:00,12.87987987987988,12.87987987987988,17.89865548872274 + 05/30 06:20:00,12.833633633633636,12.833633633633636,17.65814795895934 + 05/30 06:30:00,12.8,12.8,17.564511275813076 + 05/30 06:40:00,12.8,12.8,17.49034371983683 + 05/30 06:50:00,12.8,12.8,17.43018055001487 + 05/30 07:00:00,12.8,12.8,17.378891001990327 + 05/30 07:10:00,12.8,12.8,15.899539088541014 + 05/30 07:20:00,12.8,12.8,15.657637919997614 + 05/30 07:30:00,12.8,12.8,15.544865781145484 + 05/30 07:40:00,12.8,12.8,15.44850543313921 + 05/30 07:50:00,12.8,12.8,15.368651238715014 + 05/30 08:00:00,12.8,12.8,15.298014244286656 + 05/30 08:05:00,12.8,12.8,15.207931351991597 + 05/30 08:10:00,12.8,12.8,15.207971487526648 + 05/30 08:20:00,12.8,12.8,15.140531953405612 + 05/30 08:30:00,12.8,12.8,15.085377334873002 + 05/30 08:40:00,12.8,12.8,15.033986494118816 + 05/30 08:50:00,12.8,12.8,14.985540216519289 + 05/30 09:00:00,12.8,12.8,14.939746840965896 + 05/30 09:10:00,12.8,12.8,14.896535068182147 + 05/30 09:20:00,12.8,12.8,14.844923625537959 + 05/30 09:30:00,12.8,12.8,14.80556565741026 + 05/30 09:40:00,12.8,12.8,14.768156358276272 + 05/30 09:50:00,12.8,12.8,14.732563276089813 + 05/30 10:00:00,12.8,12.8,14.698789404837854 + 05/30 10:10:00,12.8,12.8,14.666723952610602 + 05/30 10:20:00,12.8,12.8,14.632577858922819 + 05/30 10:30:00,12.8,12.8,14.603175483112754 + 05/30 10:40:00,12.8,12.8,14.575144152933815 + 05/30 10:50:00,12.8,12.8,14.548608456044433 + 05/30 11:00:00,12.8,12.8,14.523594384643019 + 05/30 11:10:00,12.8,12.8,14.500218622584303 + 05/30 11:20:00,12.8,12.8,14.487713148619088 + 05/30 11:30:00,12.8,12.8,14.466555746052457 + 05/30 11:40:00,12.8,12.8,14.446338767068376 + 05/30 11:50:00,12.8,12.8,14.427492705021403 + 05/30 12:00:00,12.8,12.8,14.409958727244315 + 05/30 12:10:00,12.8,12.8,14.393616905762784 + 05/30 12:20:00,12.8,12.8,14.368974135205854 + 05/30 12:30:00,12.8,12.8,14.355198991363336 + 05/30 12:40:00,12.8,12.8,14.34253449125711 + 05/30 12:50:00,12.8,12.8,14.330369348883002 + 05/30 13:00:00,12.8,12.8,14.318368569795445 + 05/30 13:10:00,12.8,12.8,14.306297782960013 + 05/30 13:20:00,12.8,12.8,14.298156109594866 + 05/30 13:30:00,12.8,12.8,14.287878624850958 + 05/30 13:40:00,12.8,12.8,14.278377539900032 + 05/30 13:50:00,12.8,12.8,14.268560841434623 + 05/30 14:00:00,12.8,12.8,14.254974437565958 + 05/30 14:10:00,12.8,12.8,14.245021668937481 + 05/30 14:20:00,12.8,12.8,14.238627977518624 + 05/30 14:30:00,12.8,12.8,14.226918802819672 + 05/30 14:40:00,12.8,12.8,14.215582633966355 + 05/30 14:50:00,12.8,12.8,14.207598057533279 + 05/30 15:00:00,12.8,12.8,14.201639098412802 + 05/30 15:10:00,12.8,12.8,16.344603068181035 + 05/30 15:20:00,12.8,12.8,16.601303174401119 + 05/30 15:30:00,12.8,12.8,16.70344550762782 + 05/30 15:40:00,12.8,12.8,16.78523658887665 + 05/30 15:50:00,12.8,12.8,16.85049377647453 + 05/30 16:00:00,12.8,12.8,16.905234570569225 + 05/30 16:10:00,12.8,12.8,16.974109689779007 + 05/30 16:20:00,12.8,12.8,17.03385859576432 + 05/30 16:30:00,12.8,12.8,17.069125333109868 + 05/30 16:40:00,12.8,12.8,17.100854240912395 + 05/30 16:50:00,12.8,12.8,17.129663001623397 + 05/30 17:00:00,12.8,12.8,17.155770480148506 + 05/30 17:10:00,12.8,12.8,17.192338313342704 + 05/30 17:20:00,12.8,12.8,17.220180733474139 + 05/30 17:30:00,12.8,12.8,17.240957979984747 + 05/30 17:40:00,12.8,12.8,17.260416379786226 + 05/30 17:50:00,12.8,12.8,17.27845771181939 + 05/30 18:00:00,12.8,12.8,17.29513540261388 + 05/30 18:10:00,12.8,12.8,17.311656289335695 + 05/30 18:20:00,12.8,12.8,17.327562279453994 + 05/30 18:30:00,12.8,12.8,17.343069985242417 + 05/30 18:40:00,12.8,12.8,17.35829937822804 + 05/30 18:50:00,12.8,12.8,17.373330311463204 + 05/30 19:00:00,12.8,12.8,17.3881691732395 + 05/30 19:10:00,12.8,12.8,17.415468614245133 + 05/30 19:20:00,12.8,12.8,17.43046276182617 + 05/30 19:30:00,12.8,12.8,17.444867912194217 + 05/30 19:40:00,12.8,12.8,17.459329640782437 + 05/30 19:50:00,12.8,12.8,17.473678386018145 + 05/30 20:00:00,12.8,12.8,17.48753792526479 + 05/30 20:10:00,12.8,12.8,17.47854703155983 + 05/30 20:20:00,12.8,12.8,17.49519730793395 + 05/30 20:30:00,12.8,12.8,17.50695306855532 + 05/30 20:40:00,12.8,12.8,17.517931543225396 + 05/30 20:50:00,12.8,12.8,17.528276129595036 + 05/30 21:00:00,12.8,12.8,17.538129555917587 + 05/30 21:10:00,12.8,12.8,17.547706022766044 + 05/30 21:20:00,12.8,12.8,17.556802234473204 + 05/30 21:30:00,12.8,12.8,17.565549040827574 + 05/30 21:40:00,12.8,12.8,17.574097398265175 + 05/30 21:50:00,12.8,12.8,17.5824018371278 + 05/30 22:00:00,12.8,12.8,17.590490328440134 + 05/30 22:10:00,12.8,12.8,18.95450277935876 + 05/30 22:20:00,12.8,12.8,19.103634097427269 + 05/30 22:30:00,12.8,12.8,19.169216183389353 + 05/30 22:40:00,12.8,12.8,19.221909542969898 + 05/30 22:50:00,12.8,12.8,19.263574313085944 + 05/30 23:00:00,12.8,12.8,19.29788003822433 + 05/30 23:10:00,12.8,12.8,19.325954343911243 + 05/30 23:20:00,12.8,12.8,19.351387567930887 + 05/30 23:30:00,12.8,12.8,19.37404606634089 + 05/30 23:40:00,12.8,12.8,19.395036738038404 + 05/30 23:50:00,12.8,12.8,19.41459650086231 + 05/30 24:00:00,12.8,12.8,19.432891245791767 + 05/31 00:10:00,12.8,12.8,19.4499785230172 + 05/31 00:20:00,12.8,12.8,19.46618110649019 + 05/31 00:30:00,12.8,12.8,19.481568551574875 + 05/31 00:40:00,12.8,12.8,19.494905387080537 + 05/31 00:50:00,12.8,12.8,19.50952697325659 + 05/31 01:00:00,12.8,12.8,19.522451522169633 + 05/31 01:10:00,12.8,12.8,19.535756848578708 + 05/31 01:20:00,12.8,12.8,19.548507933325295 + 05/31 01:30:00,12.8,12.8,19.559783725081617 + 05/31 01:40:00,12.8,12.8,19.571916834012254 + 05/31 01:50:00,12.8,12.8,19.583480242193234 + 05/31 02:00:00,12.8,12.8,19.595213207338316 + 05/31 02:10:00,12.8,12.8,19.60644129281855 + 05/31 02:20:00,12.8,12.8,19.617067617040108 + 05/31 02:30:00,12.8,12.8,19.62706235043339 + 05/31 02:40:00,12.8,12.8,19.636270384067033 + 05/31 02:50:00,12.8,12.8,19.645049285582453 + 05/31 03:00:00,12.8,12.8,19.65334009490301 + 05/31 03:10:00,12.846246246246248,12.846246246246248,19.661205382149935 + 05/31 03:20:00,12.892492492492494,12.892492492492494,19.668814492304838 + 05/31 03:30:00,12.938738738738739,12.938738738738739,19.676172162217207 + 05/31 03:40:00,12.984984984984987,12.984984984984987,19.68342346135953 + 05/31 03:50:00,13.031231231231232,13.031231231231232,19.690562916798599 + 05/31 04:00:00,13.077477477477478,13.077477477477478,19.69756262613411 + 05/31 04:10:00,13.077477477477478,13.077477477477478,19.70456443775855 + 05/31 04:20:00,13.077477477477478,13.077477477477478,19.711390221417138 + 05/31 04:30:00,13.077477477477478,13.077477477477478,19.718127514251209 + 05/31 04:40:00,13.077477477477478,13.077477477477478,19.72480851430524 + 05/31 04:50:00,13.077477477477478,13.077477477477478,19.731389946228757 + 05/31 05:00:00,13.077477477477478,13.077477477477478,19.738233936472605 + 05/31 05:10:00,13.102702702702704,13.102702702702704,19.74387580884954 + 05/31 05:20:00,13.127927927927928,13.127927927927928,19.7500161714306 + 05/31 05:30:00,13.153153153153154,13.153153153153154,19.755840077594486 + 05/31 05:40:00,13.17837837837838,13.17837837837838,19.761468075103545 + 05/31 05:50:00,13.203603603603604,13.203603603603604,19.76656743162556 + 05/31 06:00:00,13.22882882882883,13.22882882882883,19.771182774723198 + 05/31 06:10:00,13.22882882882883,13.22882882882883,17.785352931451418 + 05/31 06:20:00,13.22882882882883,13.22882882882883,17.534927331437538 + 05/31 06:30:00,13.22882882882883,13.22882882882883,17.44725840443907 + 05/31 06:40:00,13.22882882882883,13.22882882882883,17.37610018725543 + 05/31 06:50:00,13.22882882882883,13.22882882882883,17.320972276588785 + 05/31 07:00:00,13.22882882882883,13.22882882882883,17.273117029789654 + 05/31 07:05:00,13.203603603603604,13.203603603603604,15.778146519422889 + 05/31 07:10:00,13.203603603603604,13.203603603603604,15.784705598530305 + 05/31 07:15:00,13.17837837837838,13.17837837837838,15.551857889162966 + 05/31 07:20:00,13.17837837837838,13.17837837837838,15.550114248441915 + 05/31 07:30:00,13.153153153153154,13.153153153153154,15.44199159916685 + 05/31 07:40:00,13.12792792792793,13.12792792792793,15.35419880298998 + 05/31 07:50:00,13.102702702702704,13.102702702702704,15.279334311943659 + 05/31 07:55:00,13.077477477477478,13.077477477477478,15.215132115934502 + 05/31 08:00:00,13.077477477477478,13.077477477477478,15.215350370918863 + 05/31 08:03:19,12.95975975975976,12.95975975975976,15.132881362101527 + 05/31 08:06:40,12.95975975975976,12.95975975975976,15.132606283255984 + 05/31 08:10:00,12.95975975975976,12.95975975975976,15.132534359693445 + 05/31 08:20:00,12.842042042042042,12.842042042042042,15.07182116376343 + 05/31 08:30:00,12.8,12.8,15.023608895948078 + 05/31 08:40:00,12.8,12.8,14.978572860352334 + 05/31 08:50:00,12.8,12.8,14.935913002656458 + 05/31 09:00:00,12.8,12.8,14.89523342706416 + 05/31 09:10:00,12.8,12.8,14.856225635222787 + 05/31 09:20:00,12.8,12.8,14.80809025100824 + 05/31 09:30:00,12.8,12.8,14.77153757268699 + 05/31 09:40:00,12.8,12.8,14.736606997563725 + 05/31 09:50:00,12.8,12.8,14.703674690713628 + 05/31 10:00:00,12.8,12.8,14.672896250383216 + 05/31 10:10:00,12.8,12.8,14.644137682094313 + 05/31 10:20:00,12.8,12.8,14.613889634585963 + 05/31 10:30:00,12.8,12.8,14.588807257283504 + 05/31 10:40:00,12.8,12.8,14.564907638457232 + 05/31 10:50:00,12.8,12.8,14.54144290715687 + 05/31 11:00:00,12.8,12.8,14.518114437306668 + 05/31 11:10:00,12.8,12.8,14.495025036002647 + 05/31 11:20:00,12.8,12.8,14.481476705707675 + 05/31 11:30:00,12.8,12.8,14.458218611471743 + 05/31 11:40:00,12.8,12.8,14.43518008431048 + 05/31 11:50:00,12.8,12.8,14.412991262633595 + 05/31 12:00:00,12.8,12.8,14.391758032822917 + 05/31 12:10:00,12.8,12.8,14.371540990264136 + 05/31 12:20:00,12.8,12.8,14.34260789483383 + 05/31 12:30:00,12.8,12.8,14.323994257935649 + 05/31 12:40:00,12.8,12.8,14.307246626810251 + 05/31 12:50:00,12.8,12.8,14.293773402209215 + 05/31 13:00:00,12.8,12.8,14.283761546628233 + 05/31 13:10:00,12.8,12.8,14.276527350962587 + 05/31 13:20:00,12.8,12.8,14.275726778282826 + 05/31 13:30:00,12.8,12.8,14.27436680444114 + 05/31 13:40:00,12.8,12.8,14.27484431553035 + 05/31 13:50:00,12.8,12.8,14.274730883478029 + 05/31 14:00:00,12.8,12.8,14.270816204989718 + 05/31 14:10:00,12.8,12.8,14.26747358747168 + 05/31 14:20:00,12.8,12.8,14.267937043377338 + 05/31 14:30:00,12.8,12.8,14.264080524200408 + 05/31 14:40:00,12.8,12.8,14.257762912995924 + 05/31 14:50:00,12.8,12.8,14.254723822237827 + 05/31 15:00:00,12.8,12.8,14.25275419420321 + 05/31 15:05:00,12.8,12.8,16.407476080662474 + 05/31 15:10:00,12.8,12.8,16.40341239166941 + 05/31 15:20:00,12.8,12.8,16.65758061856648 + 05/31 15:30:00,12.8,12.8,16.76119582695005 + 05/31 15:40:00,12.8,12.8,16.839519404597924 + 05/31 15:50:00,12.8,12.8,16.90191108539497 + 05/31 16:00:00,12.8,12.8,16.951081420689236 + 05/31 16:10:00,12.8,12.8,17.016475461459249 + 05/31 16:20:00,12.8,12.8,17.07226405179558 + 05/31 16:30:00,12.8,12.8,17.106136107000098 + 05/31 16:40:00,12.8,12.8,17.13746051808866 + 05/31 16:50:00,12.8,12.8,17.166182734323628 + 05/31 17:00:00,12.8,12.8,17.19242623472016 + 05/31 17:10:00,12.8,12.8,17.228366300164749 + 05/31 17:15:00,12.8,12.8,17.25392757893421 + 05/31 17:20:00,12.8,12.8,17.2539053085168 + 05/31 17:30:00,12.8,12.8,17.27148232091902 + 05/31 17:40:00,12.8,12.8,17.28694522067311 + 05/31 17:50:00,12.8,12.8,17.301626178838175 + 05/31 18:00:00,12.8,12.8,17.315832939108185 + 05/31 18:10:00,12.8,12.8,17.330019504054158 + 05/31 18:20:00,12.8,12.8,17.344338775312715 + 05/31 18:30:00,12.8,12.8,17.35259783049416 + 05/31 18:40:00,12.8,12.8,17.370292342621558 + 05/31 18:50:00,12.8,12.8,17.383188871605105 + 05/31 19:00:00,12.8,12.8,17.398754770816816 + 05/31 19:10:00,12.8,12.8,17.42650991553252 + 05/31 19:20:00,12.8,12.8,17.442811602947697 + 05/31 19:30:00,12.8,12.8,17.458377320311567 + 05/31 19:40:00,12.8,12.8,17.47406278400023 + 05/31 19:50:00,12.8,12.8,17.48943231906033 + 05/31 20:00:00,12.8,12.8,17.504276620737707 + 05/31 20:10:00,12.8,12.8,17.495877089369807 + 05/31 20:20:00,12.8,12.8,17.513592919699986 + 05/31 20:30:00,12.8,12.8,17.525302899977363 + 05/31 20:40:00,12.8,12.8,17.536176509004805 + 05/31 20:50:00,12.8,12.8,17.546076244896509 + 05/31 21:00:00,12.8,12.8,17.55534113756854 + 05/31 21:10:00,12.8,12.8,17.5640875601649 + 05/31 21:20:00,12.8,12.8,17.572313170435764 + 05/31 21:30:00,12.8,12.8,17.580255323616485 + 05/31 21:40:00,12.8,12.8,17.58793405235171 + 05/31 21:50:00,12.8,12.8,17.595327879739089 + 05/31 22:00:00,12.8,12.8,17.602603747954079 + 05/31 22:10:00,12.8,12.8,18.966025543712627 + 05/31 22:20:00,12.8,12.8,19.112647772961446 + 05/31 22:30:00,12.8,12.8,19.184683326218097 + 05/31 22:40:00,12.8,12.8,19.2355463897886 + 05/31 22:50:00,12.8,12.8,19.278296578545424 + 05/31 23:00:00,12.8,12.8,19.313124035495848 + 05/31 23:10:00,12.8,12.8,19.34366086210986 + 05/31 23:20:00,12.8,12.8,19.37067397492317 + 05/31 23:30:00,12.8,12.8,19.39492443970285 + 05/31 23:40:00,12.8,12.8,19.416976302103998 + 05/31 23:50:00,12.80840840840841,12.80840840840841,19.437272853053817 + 05/31 24:00:00,12.825225225225227,12.825225225225227,19.455932984378966 + 06/01 00:10:00,12.842042042042042,12.842042042042042,19.47355006440724 + 06/01 00:20:00,12.85885885885886,12.85885885885886,19.488755372444353 + 06/01 00:30:00,12.875675675675677,12.875675675675677,19.503160881256919 + 06/01 00:40:00,12.892492492492494,12.892492492492494,19.51667599693065 + 06/01 00:50:00,12.909309309309311,12.909309309309311,19.529545464357953 + 06/01 01:00:00,12.926126126126127,12.926126126126127,19.541802478344495 + 06/01 01:10:00,12.942942942942944,12.942942942942944,19.553456549700756 + 06/01 01:20:00,12.95975975975976,12.95975975975976,19.566473306258023 + 06/01 01:30:00,12.976576576576579,12.976576576576579,19.578895769184578 + 06/01 01:40:00,12.993393393393394,12.993393393393394,19.5911618793728 + 06/01 01:50:00,13.01021021021021,13.01021021021021,19.602894716982804 + 06/01 02:00:00,13.027027027027028,13.027027027027028,19.614197882091575 + 06/01 02:10:00,13.043843843843846,13.043843843843846,19.62505942813612 + 06/01 02:20:00,13.06066066066066,13.06066066066066,19.634514945635226 + 06/01 02:30:00,13.077477477477478,13.077477477477478,19.643931274227744 + 06/01 02:40:00,13.094294294294296,13.094294294294296,19.652898830675136 + 06/01 02:50:00,13.111111111111113,13.111111111111113,19.66170860669384 + 06/01 03:00:00,13.127927927927928,13.127927927927928,19.670257732663936 + 06/01 03:10:00,13.144744744744746,13.144744744744746,19.678652690413668 + 06/01 03:20:00,13.161561561561563,13.161561561561563,19.686755221880529 + 06/01 03:30:00,13.17837837837838,13.17837837837838,19.694550539297564 + 06/01 03:40:00,13.195195195195197,13.195195195195197,19.702044021131245 + 06/01 03:50:00,13.212012012012013,13.212012012012013,19.709196415719747 + 06/01 04:00:00,13.22882882882883,13.22882882882883,19.716103342682115 + 06/01 04:10:00,13.22882882882883,13.22882882882883,19.722780932792739 + 06/01 04:20:00,13.22882882882883,13.22882882882883,19.730347951201794 + 06/01 04:30:00,13.22882882882883,13.22882882882883,19.737644144702807 + 06/01 04:40:00,13.22882882882883,13.22882882882883,19.74488276534929 + 06/01 04:50:00,13.22882882882883,13.22882882882883,19.751873184527804 + 06/01 05:00:00,13.22882882882883,13.22882882882883,19.75875412124748 + 06/01 05:10:00,13.24984984984985,13.24984984984985,19.765486947166055 + 06/01 05:20:00,13.270870870870871,13.270870870870871,19.771583872055094 + 06/01 05:30:00,13.291891891891894,13.291891891891894,19.777611041067734 + 06/01 05:40:00,13.312912912912914,13.312912912912914,19.783050099734465 + 06/01 05:50:00,13.333933933933935,13.333933933933935,19.78790785921612 + 06/01 06:00:00,13.354954954954956,13.354954954954956,19.79209449999836 + 06/01 06:10:00,13.283483483483485,13.283483483483485,17.803085282076166 + 06/01 06:20:00,13.212012012012013,13.212012012012013,17.56124724625092 + 06/01 06:30:00,13.140540540540542,13.140540540540542,17.471427213743604 + 06/01 06:40:00,13.06906906906907,13.06906906906907,17.39985893849809 + 06/01 06:50:00,12.997597597597599,12.997597597597599,17.342980835302723 + 06/01 07:00:00,12.926126126126127,12.926126126126127,17.294613538921305 + 06/01 07:05:00,12.85885885885886,12.85885885885886,15.800747834667967 + 06/01 07:10:00,12.85885885885886,12.85885885885886,15.80730125269357 + 06/01 07:15:00,12.8,12.8,15.575002237965997 + 06/01 07:20:00,12.8,12.8,15.573274395080155 + 06/01 07:30:00,12.8,12.8,15.465342597660133 + 06/01 07:40:00,12.8,12.8,15.377348148967038 + 06/01 07:50:00,12.8,12.8,15.301820640684176 + 06/01 07:55:00,12.8,12.8,15.2365187358821 + 06/01 08:00:00,12.8,12.8,15.236746342236348 + 06/01 08:03:19,12.8,12.8,15.153307096097738 + 06/01 08:06:40,12.8,12.8,15.153082449261431 + 06/01 08:10:00,12.8,12.8,15.152953077678177 + 06/01 08:20:00,12.8,12.8,15.09180908941712 + 06/01 08:30:00,12.8,12.8,15.043901362739366 + 06/01 08:40:00,12.8,12.8,15.00021520251358 + 06/01 08:50:00,12.8,12.8,14.960299567875387 + 06/01 09:00:00,12.8,12.8,14.923830891118909 + 06/01 09:10:00,12.8,12.8,14.890344938299704 + 06/01 09:20:00,12.8,12.8,14.84874992138864 + 06/01 09:30:00,12.8,12.8,14.819605381760871 + 06/01 09:40:00,12.8,12.8,14.791991919481849 + 06/01 09:50:00,12.8,12.8,14.76487763845096 + 06/01 10:00:00,12.8,12.8,14.737932824391275 + 06/01 10:10:00,12.8,12.8,14.71180162050091 + 06/01 10:20:00,12.8,12.8,14.682561661789487 + 06/01 10:30:00,12.8,12.8,14.657196892904162 + 06/01 10:40:00,12.8,12.8,14.631928934734419 + 06/01 10:50:00,12.8,12.8,14.606009908542127 + 06/01 11:00:00,12.8,12.8,14.579317950879052 + 06/01 11:10:00,12.8,12.8,14.55145366644262 + 06/01 11:20:00,12.8,12.8,14.532722757142308 + 06/01 11:30:00,12.8,12.8,14.504083211884648 + 06/01 11:40:00,12.8,12.8,14.476385800245934 + 06/01 11:50:00,12.8,12.8,14.451845631872274 + 06/01 12:00:00,12.8,12.8,14.430980971747238 + 06/01 12:10:00,12.8,12.8,14.413689618752116 + 06/01 12:20:00,12.8,12.8,14.389317441894715 + 06/01 12:30:00,12.8,12.8,14.376652329890419 + 06/01 12:40:00,12.8,12.8,14.364685586003592 + 06/01 12:50:00,12.8,12.8,14.351127621497979 + 06/01 13:00:00,12.8,12.8,14.33556394404748 + 06/01 13:10:00,12.8,12.8,14.317557432226275 + 06/01 13:20:00,12.8,12.8,14.302670964038855 + 06/01 13:30:00,12.8,12.8,14.284634777036129 + 06/01 13:40:00,12.8,12.8,14.268807568769122 + 06/01 13:50:00,12.8,12.8,14.25541833548766 + 06/01 14:00:00,12.8,12.8,14.24314724882804 + 06/01 14:10:00,12.8,12.8,14.232916800220388 + 06/01 14:20:00,12.8,12.8,14.229438729687776 + 06/01 14:30:00,12.8,12.8,14.223775986212209 + 06/01 14:40:00,12.8,12.8,14.216020771905724 + 06/01 14:50:00,12.8,12.8,14.210721415203889 + 06/01 15:00:00,12.8,12.8,14.206703621116107 + 06/01 15:05:00,12.8,12.8,16.358059689871309 + 06/01 15:10:00,12.8,12.8,16.356325095735547 + 06/01 15:15:00,12.8,12.8,16.60694027416913 + 06/01 15:20:00,12.8,12.8,16.60634116839285 + 06/01 15:30:00,12.8,12.8,16.703963915665704 + 06/01 15:35:00,12.8,12.8,16.779882581548955 + 06/01 15:40:00,12.8,12.8,16.779210227893459 + 06/01 15:50:00,12.8,12.8,16.836750363609313 + 06/01 16:00:00,12.8,12.8,16.88462809646945 + 06/01 16:10:00,12.8,12.8,16.948731714106864 + 06/01 16:20:00,12.8,12.8,17.000603909177053 + 06/01 16:30:00,12.8,12.8,17.03112571354631 + 06/01 16:40:00,12.8,12.8,17.058948176729069 + 06/01 16:50:00,12.8,12.8,17.084646780276367 + 06/01 17:00:00,12.8,12.8,17.108515034866714 + 06/01 17:10:00,12.8,12.8,17.144610195154319 + 06/01 17:15:00,12.8,12.8,17.17293609983926 + 06/01 17:20:00,12.8,12.8,17.172549307330518 + 06/01 17:30:00,12.8,12.8,17.192829326107366 + 06/01 17:40:00,12.8,12.8,17.2124076160431 + 06/01 17:50:00,12.8,12.8,17.231001990907126 + 06/01 18:00:00,12.8,12.8,17.249201520745254 + 06/01 18:10:00,12.8,12.8,17.267235575706346 + 06/01 18:20:00,12.8,12.8,17.284965271096089 + 06/01 18:30:00,12.8,12.8,17.30223576372526 + 06/01 18:40:00,12.8,12.8,17.319046602860536 + 06/01 18:50:00,12.8,12.8,17.335359640486865 + 06/01 19:00:00,12.8,12.8,17.351161978430949 + 06/01 19:10:00,12.8,12.8,17.37958941864465 + 06/01 19:20:00,12.8,12.8,17.39533446563551 + 06/01 19:30:00,12.8,12.8,17.410500313869734 + 06/01 19:40:00,12.8,12.8,17.425551767156109 + 06/01 19:50:00,12.8,12.8,17.42925720259243 + 06/01 20:00:00,12.8,12.8,17.44285715807655 + 06/01 20:10:00,12.8,12.8,17.434198060288879 + 06/01 20:20:00,12.8,12.8,17.45129328043297 + 06/01 20:30:00,12.8,12.8,17.464462353728373 + 06/01 20:40:00,12.8,12.8,17.475996943265799 + 06/01 20:50:00,12.8,12.8,17.4869493205007 + 06/01 21:00:00,12.8,12.8,17.49645603111106 + 06/01 21:10:00,12.8,12.8,17.506580879881616 + 06/01 21:20:00,12.8,12.8,17.51498039910966 + 06/01 21:30:00,12.8,12.8,17.523020264791574 + 06/01 21:40:00,12.8,12.8,17.53037741968656 + 06/01 21:50:00,12.8,12.8,17.5372487587224 + 06/01 22:00:00,12.8,12.8,17.543689179400965 + 06/01 22:10:00,12.8,12.8,18.911569610316407 + 06/01 22:20:00,12.8,12.8,19.057077392060394 + 06/01 22:30:00,12.8,12.8,19.12172991651267 + 06/01 22:40:00,12.8,12.8,19.17328876030605 + 06/01 22:50:00,12.8,12.8,19.215398717065875 + 06/01 23:00:00,12.8,12.8,19.251242774947479 + 06/01 23:10:00,12.8,12.8,19.282534802668328 + 06/01 23:20:00,12.8,12.8,19.31040096792439 + 06/01 23:30:00,12.8,12.8,19.33530632347208 + 06/01 23:40:00,12.8,12.8,19.357631307360565 + 06/01 23:50:00,12.8,12.8,19.378027246928406 + 06/01 24:00:00,12.8,12.8,19.396687267465528 + 06/02 00:10:00,12.8,12.8,19.41413827576652 + 06/02 00:20:00,12.8,12.8,19.429918832427533 + 06/02 00:30:00,12.863063063063063,12.863063063063063,19.44483153134045 + 06/02 00:40:00,12.934534534534535,12.934534534534535,19.458879924432777 + 06/02 00:50:00,13.006006006006008,13.006006006006008,19.47217842256338 + 06/02 01:00:00,13.077477477477478,13.077477477477478,19.484915680729125 + 06/02 01:10:00,13.123723723723725,13.123723723723725,19.497121236917836 + 06/02 01:20:00,13.169969969969971,13.169969969969971,19.509814084839236 + 06/02 01:30:00,13.216216216216218,13.216216216216218,19.522351197542215 + 06/02 01:40:00,13.262462462462464,13.262462462462464,19.534883105888846 + 06/02 01:50:00,13.30870870870871,13.30870870870871,19.54733575086669 + 06/02 02:00:00,13.354954954954956,13.354954954954956,19.559861825988933 + 06/02 02:10:00,13.447447447447449,13.447447447447449,19.57267136106091 + 06/02 02:20:00,13.539939939939942,13.539939939939942,19.585280113191037 + 06/02 02:30:00,13.632432432432435,13.632432432432435,19.597512325056465 + 06/02 02:40:00,13.724924924924926,13.724924924924926,19.609401205748463 + 06/02 02:50:00,13.817417417417419,13.817417417417419,19.62103396296225 + 06/02 03:00:00,13.90990990990991,13.90990990990991,19.632340580648579 + 06/02 03:10:00,13.935135135135136,13.935135135135136,19.64316700695089 + 06/02 03:20:00,13.960360360360362,13.960360360360362,19.65371053095049 + 06/02 03:30:00,13.985585585585586,13.985585585585586,19.663840807710917 + 06/02 03:40:00,14.010810810810812,14.010810810810812,19.67377174007848 + 06/02 03:50:00,14.036036036036038,14.036036036036038,19.683420441220734 + 06/02 04:00:00,14.061261261261262,14.061261261261262,19.692810909126544 + 06/02 04:10:00,14.107507507507508,14.107507507507508,19.701688064135916 + 06/02 04:20:00,14.153753753753755,14.153753753753755,19.710359264300985 + 06/02 04:30:00,14.2,14.2,19.718967287564309 + 06/02 04:40:00,14.246246246246246,14.246246246246246,19.727467921133117 + 06/02 04:50:00,14.292492492492493,14.292492492492493,19.735838441496939 + 06/02 05:00:00,14.338738738738739,14.338738738738739,19.744082246046486 + 06/02 05:10:00,14.292492492492493,14.292492492492493,19.752813758417273 + 06/02 05:20:00,14.246246246246246,14.246246246246246,19.76118168406303 + 06/02 05:30:00,14.2,14.2,19.76911015071279 + 06/02 05:40:00,14.153753753753755,14.153753753753755,19.776238689274757 + 06/02 05:50:00,14.107507507507508,14.107507507507508,19.782186337996849 + 06/02 06:00:00,14.061261261261262,14.061261261261262,19.787009829167525 + 06/02 06:10:00,13.943543543543545,13.943543543543545,17.78703161012978 + 06/02 06:20:00,13.825825825825826,13.825825825825826,17.550884184251176 + 06/02 06:30:00,13.708108108108109,13.708108108108109,17.461646109048034 + 06/02 06:40:00,13.590390390390392,13.590390390390392,17.39050314730491 + 06/02 06:50:00,13.472672672672673,13.472672672672673,17.33287582489936 + 06/02 07:00:00,13.354954954954956,13.354954954954956,17.28344353757911 + 06/02 07:05:00,13.216216216216218,13.216216216216218,15.797876865397046 + 06/02 07:10:00,13.216216216216218,13.216216216216218,15.79776621740931 + 06/02 07:15:00,13.077477477477478,13.077477477477478,15.573748525804053 + 06/02 07:20:00,13.077477477477478,13.077477477477478,15.573671687169814 + 06/02 07:30:00,12.93873873873874,12.93873873873874,15.464221939877242 + 06/02 07:40:00,12.8,12.8,15.373144455423205 + 06/02 07:50:00,12.8,12.8,15.295524384455212 + 06/02 08:00:00,12.8,12.8,15.227018220904574 + 06/02 08:03:19,12.8,12.8,15.14023962080573 + 06/02 08:06:40,12.8,12.8,15.139770057103262 + 06/02 08:10:00,12.8,12.8,15.139848239828324 + 06/02 08:20:00,12.8,12.8,15.074342200557187 + 06/02 08:30:00,12.8,12.8,15.021338715334683 + 06/02 08:40:00,12.8,12.8,14.9718302189342 + 06/02 08:50:00,12.8,12.8,14.92566870210575 + 06/02 09:00:00,12.8,12.8,14.882583913935486 + 06/02 09:10:00,12.8,12.8,14.84209191657765 + 06/02 09:20:00,12.8,12.8,14.796956813695239 + 06/02 09:30:00,12.8,12.8,14.762686318356069 + 06/02 09:40:00,12.8,12.8,14.731276872904468 + 06/02 09:50:00,12.8,12.8,14.700816298803844 + 06/02 10:00:00,12.8,12.8,14.67159657681548 + 06/02 10:10:00,12.8,12.8,14.643784588098676 + 06/02 10:20:00,12.8,12.8,14.613240713553229 + 06/02 10:30:00,12.8,12.8,14.587095543187508 + 06/02 10:40:00,12.8,12.8,14.561954348356972 + 06/02 10:50:00,12.8,12.8,14.538205710897622 + 06/02 11:00:00,12.8,12.8,14.49976345688795 + 06/02 11:10:00,12.8,12.8,14.488005919262003 + 06/02 11:20:00,12.8,12.8,14.474764813952893 + 06/02 11:30:00,12.8,12.8,14.459564416328835 + 06/02 11:40:00,12.8,12.8,14.427799896621663 + 06/02 11:50:00,12.8,12.8,14.418248190716338 + 06/02 12:00:00,12.8,12.8,14.397154817652027 + 06/02 12:10:00,12.8,12.8,14.3705639352768 + 06/02 12:20:00,12.8,12.8,14.349931201411636 + 06/02 12:30:00,12.8,12.8,14.331319780745366 + 06/02 12:40:00,12.8,12.8,14.318956453441029 + 06/02 12:50:00,12.8,12.8,14.307171714985202 + 06/02 13:00:00,12.8,12.8,14.297530376008992 + 06/02 13:10:00,12.8,12.8,14.288716694535307 + 06/02 13:20:00,12.8,12.8,14.283854839271179 + 06/02 13:30:00,12.8,12.8,14.275849398236212 + 06/02 13:40:00,12.8,12.8,14.268650340484856 + 06/02 13:50:00,12.8,12.8,14.260896040803873 + 06/02 14:00:00,12.8,12.8,14.251740815691634 + 06/02 14:10:00,12.8,12.8,14.240538173775706 + 06/02 14:20:00,12.8,12.8,14.235792026596581 + 06/02 14:30:00,12.8,12.8,14.22822907857454 + 06/02 14:40:00,12.8,12.8,14.220061962674686 + 06/02 14:50:00,12.8,12.8,14.21365342369709 + 06/02 15:00:00,12.8,12.8,14.211048205666178 + 06/02 15:05:00,12.8,12.8,16.361756172404168 + 06/02 15:10:00,12.8,12.8,16.360806620962859 + 06/02 15:20:00,12.8,12.8,16.61093867077919 + 06/02 15:30:00,12.8,12.8,16.711146776828973 + 06/02 15:40:00,12.8,12.8,16.788405943389756 + 06/02 15:50:00,12.8,12.8,16.848605300439297 + 06/02 16:00:00,12.8,12.8,16.897347495723424 + 06/02 16:10:00,12.8,12.8,16.96389339120863 + 06/02 16:20:00,12.8,12.8,17.017744797434163 + 06/02 16:30:00,12.8,12.8,17.04762843515001 + 06/02 16:40:00,12.8,12.8,17.07408747214468 + 06/02 16:50:00,12.8,12.8,17.098825837040665 + 06/02 17:00:00,12.8,12.8,17.122542979106997 + 06/02 17:10:00,12.8,12.8,17.15891236877865 + 06/02 17:15:00,12.8,12.8,17.187906186356245 + 06/02 17:20:00,12.8,12.8,17.18768810194488 + 06/02 17:30:00,12.8,12.8,17.209885614233696 + 06/02 17:40:00,12.8,12.8,17.231677314174843 + 06/02 17:50:00,12.8,12.8,17.25209051394926 + 06/02 18:00:00,12.8,12.8,17.271172922327677 + 06/02 18:10:00,12.8,12.8,17.289033147865284 + 06/02 18:20:00,12.8,12.8,17.305992662990187 + 06/02 18:30:00,12.8,12.8,17.32239851120952 + 06/02 18:40:00,12.8,12.8,17.338323546976523 + 06/02 18:50:00,12.8,12.8,17.353945278331506 + 06/02 19:00:00,12.8,12.8,17.369417202035128 + 06/02 19:10:00,12.8,12.8,17.398043945237043 + 06/02 19:20:00,12.8,12.8,17.414251793493795 + 06/02 19:30:00,12.8,12.8,17.422271648038625 + 06/02 19:40:00,12.8,12.8,17.43785115679847 + 06/02 19:50:00,12.8,12.8,17.451751340453617 + 06/02 20:00:00,12.8,12.8,17.46649861596455 + 06/02 20:10:00,12.8,12.8,17.457729981093594 + 06/02 20:20:00,12.8,12.8,17.477073124610095 + 06/02 20:30:00,12.8,12.8,17.490992221655199 + 06/02 20:40:00,12.8,12.8,17.504500516562417 + 06/02 20:50:00,12.812612612612615,12.812612612612615,17.517213946861255 + 06/02 21:00:00,12.926126126126127,12.926126126126127,17.5292946015275 + 06/02 21:10:00,12.951351351351353,12.951351351351353,17.540552343541166 + 06/02 21:20:00,12.976576576576577,12.976576576576577,17.551320364967155 + 06/02 21:30:00,13.001801801801803,13.001801801801803,17.561518830094245 + 06/02 21:40:00,13.027027027027028,13.027027027027028,17.571172346459805 + 06/02 21:50:00,13.052252252252253,13.052252252252253,17.580223019168505 + 06/02 22:00:00,13.077477477477478,13.077477477477478,17.588969488527139 + 06/02 22:10:00,13.031231231231232,13.031231231231232,18.95991910240108 + 06/02 22:20:00,12.984984984984987,12.984984984984987,19.106555841205965 + 06/02 22:30:00,12.938738738738739,12.938738738738739,19.171892217266078 + 06/02 22:40:00,12.892492492492494,12.892492492492494,19.223474026141326 + 06/02 22:50:00,12.846246246246248,12.846246246246248,19.265191065428689 + 06/02 23:00:00,12.8,12.8,19.300210408529993 + 06/02 23:10:00,12.846246246246248,12.846246246246248,19.330884508722666 + 06/02 23:20:00,12.892492492492494,12.892492492492494,19.357699254795365 + 06/02 23:30:00,12.938738738738739,12.938738738738739,19.38190478093911 + 06/02 23:40:00,12.984984984984987,12.984984984984987,19.404075799981123 + 06/02 23:50:00,13.031231231231232,13.031231231231232,19.42464427281194 + 06/02 24:00:00,13.077477477477478,13.077477477477478,19.44384545393734 + 06/03 00:10:00,13.123723723723725,13.123723723723725,19.461527523703894 + 06/03 00:20:00,13.169969969969971,13.169969969969971,19.478244941413278 + 06/03 00:30:00,13.216216216216218,13.216216216216218,19.49431498220009 + 06/03 00:40:00,13.262462462462464,13.262462462462464,19.50957941279965 + 06/03 00:50:00,13.30870870870871,13.30870870870871,19.52432833159264 + 06/03 01:00:00,13.354954954954956,13.354954954954956,19.538460063219718 + 06/03 01:10:00,13.333933933933935,13.333933933933935,19.551637534866157 + 06/03 01:20:00,13.312912912912914,13.312912912912914,19.56415315041354 + 06/03 01:30:00,13.291891891891894,13.291891891891894,19.576178543183724 + 06/03 01:40:00,13.270870870870873,13.270870870870873,19.587684212574837 + 06/03 01:50:00,13.24984984984985,13.24984984984985,19.598735873692904 + 06/03 02:00:00,13.22882882882883,13.22882882882883,19.60937607948286 + 06/03 02:10:00,13.367567567567568,13.367567567567568,19.620490234080095 + 06/03 02:20:00,13.506306306306307,13.506306306306307,19.631829856064237 + 06/03 02:30:00,13.645045045045047,13.645045045045047,19.64302175806564 + 06/03 02:40:00,13.783783783783785,13.783783783783785,19.65418431680546 + 06/03 02:50:00,13.922522522522524,13.922522522522524,19.665268429323825 + 06/03 03:00:00,14.061261261261262,14.061261261261262,19.676179298638233 + 06/03 03:10:00,14.015015015015015,14.015015015015015,19.685490157820558 + 06/03 03:20:00,13.968768768768769,13.968768768768769,19.694521245572326 + 06/03 03:30:00,13.922522522522524,13.922522522522524,19.70306725060339 + 06/03 03:40:00,13.876276276276278,13.876276276276278,19.711182638936959 + 06/03 03:50:00,13.83003003003003,13.83003003003003,19.718817511597594 + 06/03 04:00:00,13.783783783783785,13.783783783783785,19.726107887608074 + 06/03 04:10:00,13.851051051051052,13.851051051051052,19.73386357080604 + 06/03 04:20:00,13.91831831831832,13.91831831831832,19.741803362067416 + 06/03 04:30:00,13.985585585585586,13.985585585585586,19.74965686868657 + 06/03 04:40:00,14.052852852852853,14.052852852852853,19.75747132632365 + 06/03 04:50:00,14.12012012012012,14.12012012012012,19.765195229719205 + 06/03 05:00:00,14.187387387387388,14.187387387387388,19.7729070443352 + 06/03 05:10:00,14.073873873873874,14.073873873873874,19.779930101370505 + 06/03 05:20:00,13.960360360360362,13.960360360360362,19.78643191894855 + 06/03 05:30:00,13.846846846846848,13.846846846846848,19.792270058832334 + 06/03 05:40:00,13.733333333333335,13.733333333333335,19.7970538374698 + 06/03 05:50:00,13.61981981981982,13.61981981981982,19.80055399462073 + 06/03 06:00:00,13.506306306306307,13.506306306306307,19.802769742758266 + 06/03 06:10:00,13.40960960960961,13.40960960960961,19.142646268891828 + 06/03 06:20:00,13.312912912912913,13.312912912912913,19.073751867195889 + 06/03 06:30:00,13.216216216216216,13.216216216216216,19.04492997155142 + 06/03 06:40:00,13.11951951951952,13.11951951951952,19.02214540534479 + 06/03 06:50:00,13.022822822822823,13.022822822822823,19.00307583515419 + 06/03 07:00:00,12.926126126126127,12.926126126126127,18.985944174577008 + 06/03 07:10:00,12.8,12.8,17.89742405537303 + 06/03 07:20:00,12.8,12.8,17.743587765556016 + 06/03 07:30:00,12.8,12.8,17.67364825283413 + 06/03 07:40:00,12.8,12.8,17.61457348905203 + 06/03 07:50:00,12.8,12.8,17.56389917977087 + 06/03 08:00:00,12.8,12.8,17.518712704078604 + 06/03 08:10:00,12.8,12.8,17.477630029087785 + 06/03 08:20:00,12.8,12.8,17.432352306124224 + 06/03 08:30:00,12.8,12.8,17.397638914842177 + 06/03 08:40:00,12.8,12.8,17.36555159946408 + 06/03 08:50:00,12.8,12.8,17.335184416475405 + 06/03 09:00:00,12.8,12.8,17.306514300692674 + 06/03 09:10:00,12.8,12.8,17.27919931788056 + 06/03 09:20:00,12.8,12.8,17.244349418688253 + 06/03 09:30:00,12.8,12.8,17.21935676527557 + 06/03 09:40:00,12.8,12.8,17.195507088667357 + 06/03 09:50:00,12.8,12.8,17.172733470601345 + 06/03 10:00:00,12.8,12.8,17.150976642959898 + 06/03 10:10:00,12.8,12.8,17.130843365426668 + 06/03 10:20:00,12.8,12.8,17.111565534518854 + 06/03 10:30:00,12.8,12.8,17.092952180251165 + 06/03 10:40:00,12.8,12.8,17.075045412780925 + 06/03 10:50:00,12.8,12.8,17.05792833302219 + 06/03 11:00:00,12.8,12.8,17.04163159255865 + 06/03 11:10:00,12.8,12.8,17.025749715694944 + 06/03 11:20:00,12.8,12.8,17.010297215612629 + 06/03 11:30:00,12.8,12.8,16.995296736358868 + 06/03 11:40:00,12.8,12.8,16.980763642916437 + 06/03 11:50:00,12.8,12.8,16.966851435999545 + 06/03 12:00:00,12.8,12.8,16.953576331952733 + 06/03 12:10:00,12.8,12.8,16.940792230111805 + 06/03 12:20:00,12.8,12.8,16.92922520911759 + 06/03 12:30:00,12.8,12.8,16.918649274731079 + 06/03 12:40:00,12.8,12.8,16.909047199881166 + 06/03 12:50:00,12.8,12.8,16.899988336742916 + 06/03 13:00:00,12.8,12.8,16.891351657107525 + 06/03 13:10:00,12.8,12.8,16.883045493087577 + 06/03 13:20:00,12.8,12.8,16.87496030107893 + 06/03 13:30:00,12.8,12.8,16.867240367721484 + 06/03 13:40:00,12.8,12.8,16.860165176196739 + 06/03 13:50:00,12.8,12.8,16.854300301307327 + 06/03 14:00:00,12.8,12.8,16.849734217484266 + 06/03 14:10:00,12.8,12.8,16.846877928021049 + 06/03 14:20:00,12.8,12.8,16.84475020052812 + 06/03 14:30:00,12.8,12.8,16.843087971061505 + 06/03 14:40:00,12.8,12.8,16.841443754151915 + 06/03 14:50:00,12.8,12.8,16.839219571826978 + 06/03 15:00:00,12.8,12.8,16.836275984821797 + 06/03 15:10:00,12.8,12.8,16.83242290335344 + 06/03 15:20:00,12.8,12.8,16.828292087099088 + 06/03 15:30:00,12.8,12.8,16.824169688114993 + 06/03 15:40:00,12.8,12.8,16.82045823773779 + 06/03 15:50:00,12.8,12.8,16.817741224177227 + 06/03 16:00:00,12.8,12.8,16.81614938129738 + 06/03 16:10:00,12.8,12.8,16.828806735616277 + 06/03 16:20:00,12.8,12.8,16.839006126430609 + 06/03 16:30:00,12.8,12.8,16.840882413801553 + 06/03 16:40:00,12.8,12.8,16.843373473762158 + 06/03 16:50:00,12.8,12.8,16.84647642937217 + 06/03 17:00:00,12.8,12.8,16.85007853187463 + 06/03 17:10:00,12.8,12.8,18.616908049687696 + 06/03 17:20:00,12.8,12.8,18.832353034014618 + 06/03 17:30:00,12.8,12.8,18.918053836225945 + 06/03 17:40:00,12.8,12.8,18.985156180188434 + 06/03 17:50:00,12.8,12.8,19.039347179598154 + 06/03 18:00:00,12.8,12.8,19.085215329513667 + 06/03 18:10:00,12.8,12.8,19.138018010304699 + 06/03 18:20:00,12.8,12.8,19.174351279277038 + 06/03 18:30:00,12.8,12.8,19.20719117826607 + 06/03 18:40:00,12.8,12.8,19.237393536678256 + 06/03 18:50:00,12.8,12.8,19.265309386940154 + 06/03 19:00:00,12.8,12.8,19.291177107616784 + 06/03 19:10:00,12.8,12.8,19.31576304392379 + 06/03 19:20:00,12.8,12.8,19.33926920905583 + 06/03 19:30:00,12.8,12.8,19.361664021453998 + 06/03 19:40:00,12.8,12.8,19.38338578544576 + 06/03 19:50:00,12.8,12.8,19.397490611625558 + 06/03 20:00:00,12.8,12.8,19.421104546405269 + 06/03 20:10:00,12.8,12.8,19.41527134243159 + 06/03 20:20:00,12.8,12.8,19.434044447475075 + 06/03 20:30:00,12.8,12.8,19.44911914776629 + 06/03 20:40:00,12.8,12.8,19.465682197959454 + 06/03 20:50:00,12.8,12.8,19.48023918909533 + 06/03 21:00:00,12.8,12.8,19.49489670052652 + 06/03 21:10:00,12.8,12.8,19.50875218436164 + 06/03 21:20:00,12.8,12.8,19.521374012403084 + 06/03 21:30:00,12.8,12.8,19.533646220017525 + 06/03 21:40:00,12.8,12.8,19.545402557158945 + 06/03 21:50:00,12.812612612612615,12.812612612612615,19.55698678337322 + 06/03 22:00:00,12.926126126126127,12.926126126126127,19.568312881068488 + 06/03 22:10:00,12.85885885885886,12.85885885885886,19.578996245167479 + 06/03 22:20:00,12.8,12.8,19.589304922632488 + 06/03 22:30:00,12.8,12.8,19.598673925895917 + 06/03 22:40:00,12.8,12.8,19.607412594805024 + 06/03 22:50:00,12.8,12.8,19.615378023184154 + 06/03 23:00:00,12.8,12.8,19.62265962433102 + 06/03 23:10:00,12.8,12.8,19.629542425239515 + 06/03 23:20:00,12.8,12.8,19.636702000429638 + 06/03 23:30:00,12.8,12.8,19.64355886805425 + 06/03 23:40:00,12.8,12.8,19.650320823376189 + 06/03 23:50:00,12.8,12.8,19.65682700433276 + 06/03 24:00:00,12.8,12.8,19.663117778686215 + 06/04 00:10:00,12.8,12.8,19.66954303580535 + 06/04 00:20:00,12.8,12.8,19.67522548188837 + 06/04 00:30:00,12.8,12.8,19.681225796394803 + 06/04 00:40:00,12.8,12.8,19.68726854345327 + 06/04 00:50:00,12.8,12.8,19.693514955424015 + 06/04 01:00:00,12.8,12.8,19.69985525631403 + 06/04 01:10:00,12.8,12.8,19.705704176255585 + 06/04 01:20:00,12.8,12.8,19.71189598956553 + 06/04 01:30:00,12.8,12.8,19.71790254175692 + 06/04 01:40:00,12.8,12.8,19.723804061271339 + 06/04 01:50:00,12.8,12.8,19.729515352155177 + 06/04 02:00:00,12.8,12.8,19.734974977851985 + 06/04 02:10:00,12.821021021021022,12.821021021021022,19.740878734532314 + 06/04 02:20:00,12.842042042042042,12.842042042042042,19.746657546997818 + 06/04 02:30:00,12.863063063063063,12.863063063063063,19.75222480290313 + 06/04 02:40:00,12.884084084084084,12.884084084084084,19.757609804091247 + 06/04 02:50:00,12.905105105105106,12.905105105105106,19.76273062752304 + 06/04 03:00:00,12.926126126126127,12.926126126126127,19.767760910849373 + 06/04 03:10:00,12.951351351351353,12.951351351351353,19.77216688587932 + 06/04 03:20:00,12.976576576576577,12.976576576576577,19.776463084932837 + 06/04 03:30:00,13.001801801801803,13.001801801801803,19.780773294692545 + 06/04 03:40:00,13.027027027027028,13.027027027027028,19.785030060691736 + 06/04 03:50:00,13.052252252252253,13.052252252252253,19.78932984142831 + 06/04 04:00:00,13.077477477477478,13.077477477477478,19.793693707745413 + 06/04 04:10:00,13.102702702702704,13.102702702702704,19.798777201997859 + 06/04 04:20:00,13.127927927927928,13.127927927927928,19.804117287344775 + 06/04 04:30:00,13.153153153153154,13.153153153153154,19.809189843537163 + 06/04 04:40:00,13.17837837837838,13.17837837837838,19.814105586794669 + 06/04 04:50:00,13.203603603603604,13.203603603603604,19.818894098508957 + 06/04 05:00:00,13.22882882882883,13.22882882882883,19.823528969928945 + 06/04 05:10:00,13.17837837837838,13.17837837837838,19.827274501378036 + 06/04 05:20:00,13.127927927927928,13.127927927927928,19.830585604003596 + 06/04 05:30:00,13.077477477477478,13.077477477477478,19.833589198897984 + 06/04 05:40:00,13.027027027027028,13.027027027027028,19.836027772475494 + 06/04 05:50:00,12.976576576576579,12.976576576576579,19.837330747416279 + 06/04 06:00:00,12.926126126126127,12.926126126126127,19.837740697694639 + 06/04 06:10:00,12.951351351351353,12.951351351351353,19.860135910539765 + 06/04 06:20:00,12.976576576576577,12.976576576576577,19.859584483020684 + 06/04 06:30:00,13.001801801801803,13.001801801801803,19.858104802677685 + 06/04 06:40:00,13.027027027027028,13.027027027027028,19.85562608728928 + 06/04 06:50:00,13.052252252252253,13.052252252252253,19.852096238208568 + 06/04 07:00:00,13.077477477477478,13.077477477477478,19.847492273088073 + 06/04 07:10:00,12.984984984984987,12.984984984984987,18.441494981815617 + 06/04 07:20:00,12.892492492492494,12.892492492492494,18.268429997299628 + 06/04 07:30:00,12.8,12.8,18.195683198460775 + 06/04 07:40:00,12.8,12.8,18.136174927438196 + 06/04 07:50:00,12.8,12.8,18.08640639571089 + 06/04 08:00:00,12.8,12.8,18.043280311311407 + 06/04 08:10:00,12.8,12.8,18.00465184585754 + 06/04 08:20:00,12.8,12.8,17.96091865435043 + 06/04 08:30:00,12.8,12.8,17.928495923367579 + 06/04 08:40:00,12.8,12.8,17.898228199200113 + 06/04 08:50:00,12.8,12.8,17.869694518179668 + 06/04 09:00:00,12.8,12.8,17.84154730533101 + 06/04 09:10:00,12.8,12.8,17.815335566721339 + 06/04 09:20:00,12.8,12.8,17.781236502159403 + 06/04 09:30:00,12.8,12.8,17.75705807836679 + 06/04 09:40:00,12.8,12.8,17.734003367212734 + 06/04 09:50:00,12.8,12.8,17.71196204470383 + 06/04 10:00:00,12.8,12.8,17.690791763041813 + 06/04 10:10:00,12.8,12.8,17.67030561568907 + 06/04 10:20:00,12.8,12.8,17.650548059428205 + 06/04 10:30:00,12.8,12.8,17.63143673743109 + 06/04 10:40:00,12.8,12.8,17.613279921138536 + 06/04 10:50:00,12.8,12.8,17.59700380356002 + 06/04 11:00:00,12.8,12.8,17.582773670929073 + 06/04 11:10:00,12.8,12.8,17.570877991782518 + 06/04 11:20:00,12.8,12.8,17.56053692095153 + 06/04 11:30:00,12.8,12.8,17.551710137498504 + 06/04 11:40:00,12.8,12.8,17.543561796993175 + 06/04 11:50:00,12.8,12.8,17.53499503879622 + 06/04 12:00:00,12.8,12.8,17.5258029099314 + 06/04 12:10:00,12.8,12.8,17.515732881260516 + 06/04 12:20:00,12.8,12.8,17.50563631744327 + 06/04 12:30:00,12.8,12.8,17.49572138305759 + 06/04 12:40:00,12.8,12.8,17.48588184758657 + 06/04 12:50:00,12.8,12.8,17.47567507369459 + 06/04 13:00:00,12.8,12.8,17.464952618194748 + 06/04 13:10:00,12.8,12.8,17.454399342552038 + 06/04 13:20:00,12.8,12.8,17.443663541553776 + 06/04 13:30:00,12.8,12.8,17.432732373270125 + 06/04 13:40:00,12.8,12.8,17.422165890105548 + 06/04 13:50:00,12.8,12.8,17.412481881310279 + 06/04 14:00:00,12.8,12.8,17.403783734417908 + 06/04 14:10:00,12.8,12.8,17.396102732105154 + 06/04 14:20:00,12.8,12.8,17.38907028106502 + 06/04 14:30:00,12.8,12.8,17.382495147798474 + 06/04 14:40:00,12.8,12.8,17.376623001571848 + 06/04 14:50:00,12.8,12.8,17.372234044726925 + 06/04 15:00:00,12.8,12.8,17.369315483590176 + 06/04 15:10:00,12.8,12.8,18.79023169596971 + 06/04 15:20:00,12.8,12.8,18.94303289529318 + 06/04 15:30:00,12.8,12.8,19.00748297938937 + 06/04 15:40:00,12.8,12.8,19.057825257567545 + 06/04 15:50:00,12.8,12.8,19.097681061378919 + 06/04 16:00:00,12.8,12.8,19.130082160025475 + 06/04 16:10:00,12.8,12.8,19.157536901609015 + 06/04 16:20:00,12.8,12.8,19.190102734852315 + 06/04 16:30:00,12.8,12.8,19.211013913013063 + 06/04 16:40:00,12.8,12.8,19.229851596801866 + 06/04 16:50:00,12.8,12.8,19.24742198263666 + 06/04 17:00:00,12.8,12.8,19.264060479918986 + 06/04 17:10:00,12.8,12.8,19.28052933627561 + 06/04 17:20:00,12.8,12.8,19.31398348456925 + 06/04 17:30:00,12.8,12.8,19.32968356741595 + 06/04 17:40:00,12.8,12.8,19.344967639788896 + 06/04 17:50:00,12.8,12.8,19.360231050191776 + 06/04 18:00:00,12.8,12.8,19.375736920473807 + 06/04 18:10:00,12.8,12.8,19.391534650200975 + 06/04 18:20:00,12.8,12.8,19.407360286339185 + 06/04 18:30:00,12.8,12.8,19.423151210905077 + 06/04 18:40:00,12.8,12.8,19.438589597922225 + 06/04 18:50:00,12.8,12.8,19.453451000744825 + 06/04 19:00:00,12.8,12.8,19.46763211953995 + 06/04 19:10:00,12.8,12.8,19.480820874255075 + 06/04 19:20:00,12.8,12.8,19.493622616904167 + 06/04 19:30:00,12.8,12.8,19.5060073311145 + 06/04 19:40:00,12.8,12.8,19.518354231959795 + 06/04 19:50:00,12.8,12.8,19.53080091622995 + 06/04 20:00:00,12.8,12.8,19.542864260686775 + 06/04 20:10:00,12.8,12.8,19.532038022069746 + 06/04 20:20:00,12.8,12.8,19.542968122246337 + 06/04 20:30:00,12.8,12.8,19.553322771412217 + 06/04 20:40:00,12.8,12.8,19.56333119269486 + 06/04 20:50:00,12.8,12.8,19.57297495458573 + 06/04 21:00:00,12.8,12.8,19.582313563723397 + 06/04 21:10:00,12.8,12.8,19.59124084147115 + 06/04 21:20:00,12.8,12.8,19.599659372982737 + 06/04 21:30:00,12.8,12.8,19.607751134798116 + 06/04 21:40:00,12.8,12.8,19.61544983458127 + 06/04 21:50:00,12.8,12.8,19.622735779669268 + 06/04 22:00:00,12.8,12.8,19.629737081320849 + 06/04 22:10:00,12.8,12.8,19.636552508453094 + 06/04 22:20:00,12.8,12.8,19.643410803376335 + 06/04 22:30:00,12.8,12.8,19.650457491629017 + 06/04 22:40:00,12.8,12.8,19.657607241235828 + 06/04 22:50:00,12.8,12.8,19.665735276265115 + 06/04 23:00:00,12.8,12.8,19.672590338659956 + 06/04 23:10:00,12.8,12.8,19.679554364013588 + 06/04 23:20:00,12.8,12.8,19.686180048178064 + 06/04 23:30:00,12.8,12.8,19.692647294862316 + 06/04 23:40:00,12.8,12.8,19.698889625150579 + 06/04 23:50:00,12.8,12.8,19.704860561956467 + 06/04 24:00:00,12.8,12.8,19.710563546871499 + 06/05 00:10:00,12.8,12.8,19.716325052499188 + 06/05 00:20:00,12.8,12.8,19.72186637856285 + 06/05 00:30:00,12.8,12.8,19.727263944390534 + 06/05 00:40:00,12.8,12.8,19.732565933158278 + 06/05 00:50:00,12.8,12.8,19.737681748481508 + 06/05 01:00:00,12.8,12.8,19.742813545307429 + 06/05 01:10:00,12.8,12.8,19.747795763646346 + 06/05 01:20:00,12.8,12.8,19.752952731696998 + 06/05 01:30:00,12.8,12.8,19.758043525605915 + 06/05 01:40:00,12.8,12.8,19.763043781813545 + 06/05 01:50:00,12.8,12.8,19.768057864780105 + 06/05 02:00:00,12.8,12.8,19.77308393791337 + 06/05 02:10:00,12.8,12.8,19.777679893664386 + 06/05 02:20:00,12.8,12.8,19.78202638419639 + 06/05 02:30:00,12.8,12.8,19.786069819176299 + 06/05 02:40:00,12.8,12.8,19.789921578641854 + 06/05 02:50:00,12.8,12.8,19.793653324068214 + 06/05 03:00:00,12.8,12.8,19.797232331147499 + 06/05 03:10:00,12.8,12.8,19.800935917257115 + 06/05 03:20:00,12.8,12.8,19.804735066085784 + 06/05 03:30:00,12.8,12.8,19.80840155255187 + 06/05 03:40:00,12.8,12.8,19.812098535220593 + 06/05 03:50:00,12.8,12.8,19.815716122916073 + 06/05 04:00:00,12.8,12.8,19.819268440794507 + 06/05 04:10:00,12.871471471471472,12.871471471471472,19.822798739979448 + 06/05 04:20:00,12.942942942942944,12.942942942942944,19.826078859017199 + 06/05 04:30:00,13.014414414414415,13.014414414414415,19.82948151641457 + 06/05 04:40:00,13.085885885885887,13.085885885885887,19.83287052117162 + 06/05 04:50:00,13.157357357357359,13.157357357357359,19.83627839358502 + 06/05 05:00:00,13.22882882882883,13.22882882882883,19.839692148374554 + 06/05 05:10:00,13.22882882882883,13.22882882882883,19.84283890686777 + 06/05 05:20:00,13.22882882882883,13.22882882882883,19.846277544533487 + 06/05 05:30:00,13.22882882882883,13.22882882882883,19.849672536805217 + 06/05 05:40:00,13.22882882882883,13.22882882882883,19.852727523545885 + 06/05 05:50:00,13.22882882882883,13.22882882882883,19.85484630510968 + 06/05 06:00:00,13.22882882882883,13.22882882882883,19.85614044337379 + 06/05 06:10:00,13.17837837837838,13.17837837837838,17.86208591653277 + 06/05 06:20:00,13.127927927927928,13.127927927927928,17.62636229396129 + 06/05 06:30:00,13.077477477477478,13.077477477477478,17.536506477840275 + 06/05 06:40:00,13.027027027027028,13.027027027027028,17.464913536854377 + 06/05 06:50:00,12.976576576576579,12.976576576576579,17.406524539634999 + 06/05 07:00:00,12.926126126126127,12.926126126126127,17.35646981721037 + 06/05 07:05:00,12.812612612612615,12.812612612612615,15.859491283451533 + 06/05 07:10:00,12.812612612612615,12.812612612612615,15.866472418690451 + 06/05 07:20:00,12.8,12.8,15.633042925133413 + 06/05 07:30:00,12.8,12.8,15.515888706469472 + 06/05 07:40:00,12.8,12.8,15.422563749834352 + 06/05 07:50:00,12.8,12.8,15.342176593961343 + 06/05 08:00:00,12.8,12.8,15.271303468503591 + 06/05 08:05:00,12.8,12.8,15.181036698463706 + 06/05 08:10:00,12.8,12.8,15.181009753435485 + 06/05 08:20:00,12.8,12.8,15.1133010562858 + 06/05 08:30:00,12.8,12.8,15.05782705078642 + 06/05 08:35:00,12.8,12.8,15.006673800156623 + 06/05 08:40:00,12.8,12.8,15.006600753207622 + 06/05 08:50:00,12.8,12.8,14.95767967831098 + 06/05 08:55:00,12.8,12.8,14.912622308317271 + 06/05 09:00:00,12.8,12.8,14.912590291633567 + 06/05 09:10:00,12.8,12.8,14.868845072669967 + 06/05 09:20:00,12.8,12.8,14.81724948814603 + 06/05 09:30:00,12.8,12.8,14.777853731592265 + 06/05 09:40:00,12.8,12.8,14.740377393012573 + 06/05 09:50:00,12.8,12.8,14.704700574179789 + 06/05 10:00:00,12.8,12.8,14.670799994253687 + 06/05 10:10:00,12.8,12.8,14.638981639510675 + 06/05 10:20:00,12.8,12.8,14.605308124659843 + 06/05 10:30:00,12.8,12.8,14.57661090485206 + 06/05 10:40:00,12.8,12.8,14.549290434954058 + 06/05 10:50:00,12.8,12.8,14.523123058240307 + 06/05 11:00:00,12.8,12.8,14.49809294776667 + 06/05 11:10:00,12.8,12.8,14.47375655157983 + 06/05 11:20:00,12.8,12.8,14.460199344672992 + 06/05 11:30:00,12.8,12.8,14.438275848006429 + 06/05 11:40:00,12.8,12.8,14.417283441248184 + 06/05 11:50:00,12.8,12.8,14.397354231106592 + 06/05 12:00:00,12.8,12.8,14.378334523147757 + 06/05 12:10:00,12.8,12.8,14.360741981948593 + 06/05 12:20:00,12.8,12.8,14.333975821164998 + 06/05 12:30:00,12.8,12.8,14.3170067764617 + 06/05 12:40:00,12.8,12.8,14.300586969548045 + 06/05 12:50:00,12.8,12.8,14.284775957671008 + 06/05 13:00:00,12.8,12.8,14.269727756458984 + 06/05 13:10:00,12.8,12.8,14.255066235416115 + 06/05 13:20:00,12.8,12.8,14.245022357240492 + 06/05 13:30:00,12.8,12.8,14.23272000160517 + 06/05 13:40:00,12.8,12.8,14.221638274744624 + 06/05 13:50:00,12.8,12.8,14.212434444114369 + 06/05 14:00:00,12.8,12.8,14.204048676196696 + 06/05 14:10:00,12.8,12.8,14.195474970625784 + 06/05 14:20:00,12.8,12.8,14.1903369343616 + 06/05 14:30:00,12.8,12.8,14.184027332461139 + 06/05 14:40:00,12.8,12.8,14.178028979732203 + 06/05 14:50:00,12.8,12.8,14.170053841053936 + 06/05 15:00:00,12.8,12.8,14.162444410183668 + 06/05 15:05:00,12.8,12.8,16.30961312873488 + 06/05 15:10:00,12.8,12.8,16.307485219840414 + 06/05 15:15:00,12.8,12.8,16.558440726302807 + 06/05 15:20:00,12.8,12.8,16.557489714859316 + 06/05 15:30:00,12.8,12.8,16.651497106511838 + 06/05 15:40:00,12.8,12.8,16.71972524645107 + 06/05 15:50:00,12.8,12.8,16.775148628074697 + 06/05 15:55:00,12.8,12.8,16.822705529014816 + 06/05 16:00:00,12.8,12.8,16.822097468808374 + 06/05 16:10:00,12.8,12.8,16.88784590003471 + 06/05 16:20:00,12.8,12.8,16.94307893224395 + 06/05 16:30:00,12.8,12.8,16.974515042718147 + 06/05 16:35:00,12.8,12.8,17.00418617124018 + 06/05 16:40:00,12.8,12.8,17.00376335629963 + 06/05 16:50:00,12.8,12.8,17.029782745824876 + 06/05 16:55:00,12.8,12.8,17.054926439127354 + 06/05 17:00:00,12.8,12.8,17.054745272508364 + 06/05 17:10:00,12.8,12.8,17.090822208864627 + 06/05 17:15:00,12.8,12.8,17.119429522740999 + 06/05 17:20:00,12.8,12.8,17.1192632796091 + 06/05 17:30:00,12.8,12.8,17.14008426530419 + 06/05 17:40:00,12.8,12.8,17.16056215845458 + 06/05 17:50:00,12.8,12.8,17.18012105902004 + 06/05 18:00:00,12.8,12.8,17.199382759425335 + 06/05 18:10:00,12.8,12.8,17.21852984093963 + 06/05 18:20:00,12.8,12.8,17.237233980495568 + 06/05 18:30:00,12.8,12.8,17.255500596791955 + 06/05 18:40:00,12.8,12.8,17.273400160796343 + 06/05 18:50:00,12.8,12.8,17.29098595740014 + 06/05 19:00:00,12.8,12.8,17.308286120391608 + 06/05 19:10:00,12.8,12.8,17.33799402785413 + 06/05 19:20:00,12.8,12.8,17.35516284558622 + 06/05 19:30:00,12.8,12.8,17.371655738408309 + 06/05 19:40:00,12.8,12.8,17.38791938093333 + 06/05 19:50:00,12.8,12.8,17.403810834089265 + 06/05 20:00:00,12.8,12.8,17.418956536578173 + 06/05 20:10:00,12.8,12.8,17.41099401917356 + 06/05 20:20:00,12.8,12.8,17.42906542102923 + 06/05 20:30:00,12.8,12.8,17.442167884395237 + 06/05 20:40:00,12.8,12.8,17.45476800243692 + 06/05 20:50:00,12.8,12.8,17.466969582550008 + 06/05 21:00:00,12.8,12.8,17.478824813978389 + 06/05 21:10:00,12.8,12.8,17.489571741989886 + 06/05 21:20:00,12.8,12.8,17.500173781474215 + 06/05 21:30:00,12.8,12.8,17.51025147305455 + 06/05 21:40:00,12.8,12.8,17.519950846905144 + 06/05 21:50:00,12.8,12.8,17.529226424608348 + 06/05 22:00:00,12.8,12.8,17.53816449848049 + 06/05 22:10:00,12.8,12.8,18.906096407401884 + 06/05 22:20:00,12.8,12.8,19.054013327407735 + 06/05 22:30:00,12.8,12.8,19.12072972844095 + 06/05 22:40:00,12.8,12.8,19.17392200347294 + 06/05 22:50:00,12.85885885885886,12.85885885885886,19.217412347916114 + 06/05 23:00:00,12.926126126126127,12.926126126126127,19.254383503944724 + 06/05 23:10:00,12.976576576576577,12.976576576576577,19.286555601848279 + 06/05 23:20:00,13.027027027027028,13.027027027027028,19.31449962227606 + 06/05 23:30:00,13.077477477477478,13.077477477477478,19.339730228542959 + 06/05 23:40:00,13.127927927927928,13.127927927927928,19.362754190206809 + 06/05 23:50:00,13.17837837837838,13.17837837837838,19.38407671322509 + 06/05 24:00:00,13.22882882882883,13.22882882882883,19.403943059728787 + 06/06 00:10:00,13.275075075075077,13.275075075075077,19.422334937488519 + 06/06 00:20:00,13.321321321321323,13.321321321321323,19.44031463073467 + 06/06 00:30:00,13.367567567567568,13.367567567567568,19.457299843683754 + 06/06 00:40:00,13.413813813813816,13.413813813813816,19.473477462916987 + 06/06 00:50:00,13.46006006006006,13.46006006006006,19.489073234702688 + 06/06 01:00:00,13.506306306306307,13.506306306306307,19.503851447574129 + 06/06 01:10:00,13.506306306306307,13.506306306306307,19.518069209428928 + 06/06 01:20:00,13.506306306306307,13.506306306306307,19.531156995963415 + 06/06 01:30:00,13.506306306306307,13.506306306306307,19.543742238346519 + 06/06 01:40:00,13.506306306306307,13.506306306306307,19.555680895474838 + 06/06 01:50:00,13.506306306306307,13.506306306306307,19.56712852287521 + 06/06 02:00:00,13.506306306306307,13.506306306306307,19.57809911376014 + 06/06 02:10:00,13.46006006006006,13.46006006006006,19.587957077436799 + 06/06 02:20:00,13.413813813813814,13.413813813813814,19.59728089271849 + 06/06 02:30:00,13.367567567567568,13.367567567567568,19.60621774092347 + 06/06 02:40:00,13.321321321321323,13.321321321321323,19.614663849272973 + 06/06 02:50:00,13.275075075075077,13.275075075075077,19.622699624618975 + 06/06 03:00:00,13.22882882882883,13.22882882882883,19.63028104746175 + 06/06 03:10:00,13.24984984984985,13.24984984984985,19.6382556018642 + 06/06 03:20:00,13.270870870870871,13.270870870870871,19.646890620753156 + 06/06 03:30:00,13.291891891891894,13.291891891891894,19.65526560388422 + 06/06 03:40:00,13.312912912912914,13.312912912912914,19.663609191557247 + 06/06 03:50:00,13.333933933933935,13.333933933933935,19.671670042079005 + 06/06 04:00:00,13.354954954954956,13.354954954954956,19.679584568190543 + 06/06 04:10:00,13.354954954954956,13.354954954954956,19.68715526508663 + 06/06 04:20:00,13.354954954954956,13.354954954954956,19.694940327859287 + 06/06 04:30:00,13.354954954954956,13.354954954954956,19.70247329526702 + 06/06 04:40:00,13.354954954954956,13.354954954954956,19.70981923870501 + 06/06 04:50:00,13.354954954954956,13.354954954954956,19.71692923131605 + 06/06 05:00:00,13.354954954954956,13.354954954954956,19.7239037202084 + 06/06 05:10:00,13.354954954954956,13.354954954954956,19.730577620664876 + 06/06 05:20:00,13.354954954954956,13.354954954954956,19.736658139318096 + 06/06 05:30:00,13.354954954954956,13.354954954954956,19.74249746089612 + 06/06 05:40:00,13.354954954954956,13.354954954954956,19.747719656887054 + 06/06 05:50:00,13.354954954954956,13.354954954954956,19.752123739461049 + 06/06 06:00:00,13.354954954954956,13.354954954954956,19.755671071226336 + 06/06 06:10:00,13.262462462462464,13.262462462462464,17.75511075886081 + 06/06 06:20:00,13.169969969969971,13.169969969969971,17.517726959038826 + 06/06 06:30:00,13.077477477477478,13.077477477477478,17.427250712551026 + 06/06 06:40:00,12.984984984984987,12.984984984984987,17.354781782320864 + 06/06 06:50:00,12.892492492492494,12.892492492492494,17.295796037847848 + 06/06 07:00:00,12.8,12.8,17.245210827915437 + 06/06 07:05:00,12.8,12.8,15.763607256877189 + 06/06 07:10:00,12.8,12.8,15.761454867804437 + 06/06 07:15:00,12.8,12.8,15.544610173056752 + 06/06 07:20:00,12.8,12.8,15.544198234337076 + 06/06 07:30:00,12.8,12.8,15.435449539449598 + 06/06 07:40:00,12.8,12.8,15.349604159310275 + 06/06 07:50:00,12.8,12.8,15.271654642819057 + 06/06 08:00:00,12.8,12.8,15.20268106176323 + 06/06 08:03:19,12.8,12.8,15.114816528859566 + 06/06 08:06:40,12.8,12.8,15.114864598537327 + 06/06 08:10:00,12.8,12.8,15.114629340624328 + 06/06 08:20:00,12.8,12.8,15.049116876013772 + 06/06 08:25:00,12.8,12.8,14.996559666989313 + 06/06 08:30:00,12.8,12.8,14.996860457305802 + 06/06 08:40:00,12.8,12.8,14.947320399678178 + 06/06 08:50:00,12.8,12.8,14.901550740796829 + 06/06 09:00:00,12.8,12.8,14.8586285155274 + 06/06 09:10:00,12.8,12.8,14.818069472529496 + 06/06 09:20:00,12.8,12.8,14.768929333274654 + 06/06 09:30:00,12.8,12.8,14.731769530381003 + 06/06 09:40:00,12.8,12.8,14.696188879662375 + 06/06 09:50:00,12.8,12.8,14.661964369820812 + 06/06 10:00:00,12.8,12.8,14.629090909559276 + 06/06 10:10:00,12.8,12.8,14.59756370820853 + 06/06 10:20:00,12.8,12.8,14.56382653998634 + 06/06 10:30:00,12.8,12.8,14.534711985687505 + 06/06 10:40:00,12.8,12.8,14.506834269724191 + 06/06 10:50:00,12.8,12.8,14.480172394109264 + 06/06 11:00:00,12.8,12.8,14.454733177808145 + 06/06 11:10:00,12.8,12.8,14.430376410165863 + 06/06 11:20:00,12.8,12.8,14.416736979064043 + 06/06 11:30:00,12.8,12.8,14.39453688117739 + 06/06 11:40:00,12.8,12.8,14.373214077176959 + 06/06 11:50:00,12.8,12.8,14.353024895222344 + 06/06 12:00:00,12.8,12.8,14.33381849949365 + 06/06 12:10:00,12.8,12.8,14.316679488240466 + 06/06 12:20:00,12.8,12.8,14.29074642304997 + 06/06 12:30:00,12.8,12.8,14.275113695232547 + 06/06 12:40:00,12.8,12.8,14.260381819465652 + 06/06 12:50:00,12.8,12.8,14.246312898020446 + 06/06 13:00:00,12.8,12.8,14.233065196627003 + 06/06 13:10:00,12.8,12.8,14.219345242015816 + 06/06 13:20:00,12.8,12.8,14.209951081346825 + 06/06 13:30:00,12.8,12.8,14.197949411397188 + 06/06 13:40:00,12.8,12.8,14.186735200167487 + 06/06 13:50:00,12.8,12.8,14.177563270850998 + 06/06 14:00:00,12.8,12.8,14.169159529838103 + 06/06 14:10:00,12.8,12.8,14.161995594289037 + 06/06 14:20:00,12.8,12.8,14.156452008773807 + 06/06 14:30:00,12.8,12.8,14.150477346751903 + 06/06 14:40:00,12.8,12.8,14.145330115051893 + 06/06 14:50:00,12.8,12.8,14.14011043495674 + 06/06 15:00:00,12.8,12.8,14.134105752561816 + 06/06 15:05:00,12.8,12.8,16.28940468440156 + 06/06 15:10:00,12.8,12.8,16.28591391534217 + 06/06 15:20:00,12.8,12.8,16.541596487742568 + 06/06 15:30:00,12.8,12.8,16.64381597294738 + 06/06 15:40:00,12.8,12.8,16.71964334005632 + 06/06 15:50:00,12.8,12.8,16.778358677183428 + 06/06 16:00:00,12.8,12.8,16.827000594830815 + 06/06 16:10:00,12.8,12.8,16.893069562241889 + 06/06 16:20:00,12.8,12.8,16.94679451893463 + 06/06 16:30:00,12.8,12.8,16.976598039979824 + 06/06 16:40:00,12.8,12.8,17.001372775644215 + 06/06 16:50:00,12.8,12.8,17.02484642666873 + 06/06 17:00:00,12.8,12.8,17.047311129411754 + 06/06 17:10:00,12.8,12.8,17.080887799204697 + 06/06 17:15:00,12.8,12.8,17.10779179775756 + 06/06 17:20:00,12.8,12.8,17.107710497503807 + 06/06 17:30:00,12.8,12.8,17.127243977006004 + 06/06 17:40:00,12.8,12.8,17.146268469955357 + 06/06 17:50:00,12.8,12.8,17.1654273893581 + 06/06 18:00:00,12.8,12.8,17.1851482241124 + 06/06 18:10:00,12.8,12.8,17.204427163706339 + 06/06 18:20:00,12.8,12.8,17.22432583564148 + 06/06 18:30:00,12.8,12.8,17.24464574395381 + 06/06 18:40:00,12.8,12.8,17.264806537795395 + 06/06 18:50:00,12.8,12.8,17.284299971499157 + 06/06 19:00:00,12.8,12.8,17.302874116327265 + 06/06 19:10:00,12.8,12.8,17.31860795095308 + 06/06 19:20:00,12.8,12.8,17.349865682624498 + 06/06 19:30:00,12.8,12.8,17.365582569727004 + 06/06 19:40:00,12.8,12.8,17.388753892529036 + 06/06 19:50:00,12.8,12.8,17.40822511049773 + 06/06 20:00:00,13.077477477477478,13.077477477477478,17.426633661913518 + 06/06 20:10:00,13.077477477477478,13.077477477477478,17.421763943374498 + 06/06 20:20:00,13.077477477477478,13.077477477477478,17.447195848388178 + 06/06 20:30:00,13.077477477477478,13.077477477477478,17.460149420233859 + 06/06 20:40:00,13.077477477477478,13.077477477477478,17.47296092979459 + 06/06 20:50:00,13.077477477477478,13.077477477477478,17.483753675756863 + 06/06 21:00:00,13.077477477477478,13.077477477477478,17.493992613187499 + 06/06 21:10:00,13.077477477477478,13.077477477477478,17.50342685463918 + 06/06 21:20:00,13.077477477477478,13.077477477477478,17.512266765309925 + 06/06 21:30:00,13.077477477477478,13.077477477477478,17.520659022335836 + 06/06 21:40:00,13.077477477477478,13.077477477477478,17.528702083916916 + 06/06 21:50:00,13.077477477477478,13.077477477477478,17.536399062209886 + 06/06 22:00:00,13.077477477477478,13.077477477477478,17.54378761051876 + 06/06 22:10:00,13.052252252252253,13.052252252252253,18.908001235356765 + 06/06 22:20:00,13.027027027027028,13.027027027027028,19.05585959545379 + 06/06 22:30:00,13.001801801801803,13.001801801801803,19.121565753179448 + 06/06 22:40:00,12.976576576576577,12.976576576576577,19.181208903172448 + 06/06 22:50:00,12.951351351351353,12.951351351351353,19.222588646829178 + 06/06 23:00:00,12.926126126126127,12.926126126126127,19.25898049741446 + 06/06 23:10:00,12.951351351351353,12.951351351351353,19.28934989764516 + 06/06 23:20:00,12.976576576576577,12.976576576576577,19.316710499383498 + 06/06 23:30:00,13.001801801801803,13.001801801801803,19.341702198291665 + 06/06 23:40:00,13.027027027027028,13.027027027027028,19.365476100364348 + 06/06 23:50:00,13.052252252252253,13.052252252252253,19.385609851499866 + 06/06 24:00:00,13.077477477477478,13.077477477477478,19.404793538054315 + 06/07 00:10:00,13.123723723723725,13.123723723723725,19.42255269967776 + 06/07 00:20:00,13.169969969969971,13.169969969969971,19.43891160094195 + 06/07 00:30:00,13.216216216216218,13.216216216216218,19.454587148196514 + 06/07 00:40:00,13.262462462462464,13.262462462462464,19.46946619655966 + 06/07 00:50:00,13.30870870870871,13.30870870870871,19.483657319937298 + 06/07 01:00:00,13.354954954954956,13.354954954954956,19.497363410628464 + 06/07 01:10:00,13.401201201201202,13.401201201201202,19.51102638768503 + 06/07 01:20:00,13.447447447447449,13.447447447447449,19.523045025336559 + 06/07 01:30:00,13.493693693693695,13.493693693693695,19.534764451847548 + 06/07 01:40:00,13.539939939939942,13.539939939939942,19.54587303733168 + 06/07 01:50:00,13.586186186186187,13.586186186186187,19.55673613287435 + 06/07 02:00:00,13.632432432432433,13.632432432432433,19.567463803103199 + 06/07 02:10:00,13.703903903903905,13.703903903903905,19.57834238763307 + 06/07 02:20:00,13.775375375375376,13.775375375375376,19.58962543604045 + 06/07 02:30:00,13.846846846846847,13.846846846846847,19.600816566610747 + 06/07 02:40:00,13.918318318318319,13.918318318318319,19.611946677114739 + 06/07 02:50:00,13.989789789789791,13.989789789789791,19.623004397372335 + 06/07 03:00:00,14.061261261261262,14.061261261261262,19.633968356115724 + 06/07 03:10:00,14.082282282282283,14.082282282282283,19.643372644649366 + 06/07 03:20:00,14.103303303303303,14.103303303303303,19.65214588321523 + 06/07 03:30:00,14.124324324324324,14.124324324324324,19.6605689221799 + 06/07 03:40:00,14.145345345345346,14.145345345345346,19.668734320659448 + 06/07 03:50:00,14.166366366366367,14.166366366366367,19.676673245434679 + 06/07 04:00:00,14.187387387387388,14.187387387387388,19.68440931398535 + 06/07 04:10:00,14.25885885885886,14.25885885885886,19.69239291344084 + 06/07 04:20:00,14.33033033033033,14.33033033033033,19.70161979282519 + 06/07 04:30:00,14.401801801801803,14.401801801801803,19.71082745508264 + 06/07 04:40:00,14.473273273273274,14.473273273273274,19.72029012379761 + 06/07 04:50:00,14.544744744744746,14.544744744744746,19.729587726118877 + 06/07 05:00:00,14.616216216216217,14.616216216216217,19.738701992757649 + 06/07 05:10:00,14.641441441441442,14.641441441441442,19.747602802868238 + 06/07 05:20:00,14.666666666666666,14.666666666666666,19.755892833046546 + 06/07 05:30:00,14.691891891891892,14.691891891891892,19.76392129894306 + 06/07 05:40:00,14.717117117117118,14.717117117117118,19.771219011565394 + 06/07 05:50:00,14.742342342342342,14.742342342342342,19.77741470073669 + 06/07 06:00:00,14.767567567567568,14.767567567567568,19.782622826450486 + 06/07 06:10:00,14.721321321321322,14.721321321321322,17.7799020302791 + 06/07 06:20:00,14.675075075075075,14.675075075075075,17.544656154069018 + 06/07 06:30:00,14.628828828828829,14.628828828828829,17.45629436527765 + 06/07 06:40:00,14.582582582582582,14.582582582582582,17.386032760907179 + 06/07 06:50:00,14.536336336336337,14.536336336336337,17.32900618626526 + 06/07 07:00:00,14.49009009009009,14.49009009009009,17.280312132549438 + 06/07 07:05:00,14.418618618618618,14.418618618618618,15.790860023723129 + 06/07 07:10:00,14.418618618618618,14.418618618618618,15.79106839913576 + 06/07 07:15:00,14.347147147147148,14.347147147147148,15.567072493221677 + 06/07 07:20:00,14.347147147147148,14.347147147147148,15.56688982381997 + 06/07 07:30:00,14.275675675675675,14.275675675675675,15.458427382378014 + 06/07 07:40:00,14.204204204204205,14.204204204204205,15.368934509484808 + 06/07 07:50:00,14.132732732732734,14.132732732732734,15.293132868421298 + 06/07 08:00:00,14.061261261261262,14.061261261261262,15.226929535670714 + 06/07 08:03:19,13.943543543543545,13.943543543543545,15.142554419005807 + 06/07 08:06:40,13.943543543543545,13.943543543543545,15.141787920510402 + 06/07 08:10:00,13.943543543543545,13.943543543543545,15.14205863789034 + 06/07 08:20:00,13.825825825825826,13.825825825825826,15.07805690934048 + 06/07 08:30:00,13.708108108108109,13.708108108108109,15.026621749640747 + 06/07 08:40:00,13.590390390390392,13.590390390390392,14.97816835118919 + 06/07 08:50:00,13.472672672672673,13.472672672672673,14.932607648528686 + 06/07 09:00:00,13.354954954954956,13.354954954954956,14.889548025891417 + 06/07 09:10:00,13.30870870870871,13.30870870870871,14.849045714290556 + 06/07 09:20:00,13.262462462462464,13.262462462462464,14.801879230749638 + 06/07 09:30:00,13.216216216216218,13.216216216216218,14.76717631009694 + 06/07 09:40:00,13.169969969969971,13.169969969969971,14.734635281494434 + 06/07 09:50:00,13.123723723723725,13.123723723723725,14.703975070334046 + 06/07 10:00:00,13.077477477477478,13.077477477477478,14.675219387908504 + 06/07 10:10:00,13.031231231231232,13.031231231231232,14.648097433977848 + 06/07 10:20:00,12.984984984984987,12.984984984984987,14.618035857418074 + 06/07 10:30:00,12.938738738738739,12.938738738738739,14.59274401642342 + 06/07 10:40:00,12.892492492492494,12.892492492492494,14.568342042935932 + 06/07 10:50:00,12.846246246246248,12.846246246246248,14.544702025271402 + 06/07 11:00:00,12.8,12.8,14.521687634457109 + 06/07 11:10:00,12.8,12.8,14.499223857499797 + 06/07 11:20:00,12.8,12.8,14.488967777160064 + 06/07 11:30:00,12.8,12.8,14.469597443196369 + 06/07 11:40:00,12.8,12.8,14.451114948397893 + 06/07 11:50:00,12.8,12.8,14.433337561954657 + 06/07 12:00:00,12.8,12.8,14.416300092130906 + 06/07 12:10:00,12.8,12.8,14.400307769529937 + 06/07 12:20:00,12.8,12.8,14.375429775750641 + 06/07 12:30:00,12.8,12.8,14.361099486441003 + 06/07 12:40:00,12.8,12.8,14.347664293634616 + 06/07 12:50:00,12.8,12.8,14.335273256651919 + 06/07 13:00:00,12.8,12.8,14.323768592972039 + 06/07 13:10:00,12.8,12.8,14.312920295645658 + 06/07 13:20:00,12.8,12.8,14.304973890877815 + 06/07 13:30:00,12.8,12.8,14.29409004133248 + 06/07 13:40:00,12.8,12.8,14.283440220973544 + 06/07 13:50:00,12.8,12.8,14.27398168199232 + 06/07 14:00:00,12.8,12.8,14.264966060327027 + 06/07 14:10:00,12.8,12.8,14.256270827286763 + 06/07 14:20:00,12.8,12.8,14.248946749079546 + 06/07 14:30:00,12.8,12.8,14.241182288713543 + 06/07 14:40:00,12.8,12.8,14.234750230404112 + 06/07 14:50:00,12.8,12.8,14.229121015039082 + 06/07 15:00:00,12.8,12.8,14.221123205508246 + 06/07 15:05:00,12.8,12.8,16.37255974606926 + 06/07 15:10:00,12.8,12.8,16.372301012914535 + 06/07 15:20:00,12.8,12.8,16.621621788614257 + 06/07 15:30:00,12.8,12.8,16.717227619486218 + 06/07 15:40:00,12.8,12.8,16.79009804219244 + 06/07 15:50:00,12.8,12.8,16.8448050772244 + 06/07 16:00:00,12.8,12.8,16.8908447365854 + 06/07 16:10:00,12.8,12.8,16.957097545494208 + 06/07 16:20:00,12.8,12.8,17.01201036000088 + 06/07 16:30:00,12.8,12.8,17.043064653343256 + 06/07 16:40:00,12.8,12.8,17.070970295760217 + 06/07 16:50:00,12.8,12.8,17.096502588902966 + 06/07 17:00:00,12.8,12.8,17.12010586592602 + 06/07 17:10:00,12.8,12.8,17.155191168150588 + 06/07 17:20:00,12.8,12.8,17.182448772440883 + 06/07 17:30:00,12.8,12.8,17.202861131519918 + 06/07 17:40:00,12.8,12.8,17.222493907708583 + 06/07 17:50:00,12.8,12.8,17.24167481051925 + 06/07 18:00:00,12.8,12.8,17.26035712849407 + 06/07 18:10:00,12.8,12.8,17.278784486587399 + 06/07 18:20:00,12.8,12.8,17.297587534129169 + 06/07 18:30:00,12.8,12.8,17.315944835239013 + 06/07 18:40:00,12.8,12.8,17.334085024604915 + 06/07 18:50:00,12.8,12.8,17.351923725196529 + 06/07 19:00:00,12.8,12.8,17.36950014169031 + 06/07 19:10:00,12.8,12.8,17.399903436512358 + 06/07 19:20:00,12.8,12.8,17.41771746122814 + 06/07 19:30:00,12.8,12.8,17.43470865823287 + 06/07 19:40:00,12.8,12.8,17.451102978331954 + 06/07 19:50:00,12.85885885885886,12.85885885885886,17.466816947226659 + 06/07 20:00:00,12.926126126126127,12.926126126126127,17.481912969633244 + 06/07 20:10:00,12.997597597597599,12.997597597597599,17.473755455806807 + 06/07 20:20:00,13.06906906906907,13.06906906906907,17.492094982836016 + 06/07 20:30:00,13.140540540540542,13.140540540540542,17.505111316194509 + 06/07 20:40:00,13.212012012012015,13.212012012012015,17.517438298779273 + 06/07 20:50:00,13.283483483483485,13.283483483483485,17.52909508733086 + 06/07 21:00:00,13.354954954954956,13.354954954954956,17.540192165374287 + 06/07 21:10:00,13.401201201201202,13.401201201201202,17.550705544553968 + 06/07 21:20:00,13.447447447447449,13.447447447447449,17.560183536736824 + 06/07 21:30:00,13.493693693693695,13.493693693693695,17.569333183437874 + 06/07 21:40:00,13.539939939939942,13.539939939939942,17.57803135058496 + 06/07 21:50:00,13.586186186186187,13.586186186186187,17.586336275999508 + 06/07 22:00:00,13.632432432432433,13.632432432432433,17.59449508393721 + 06/07 22:10:00,13.657657657657659,13.657657657657659,18.971283353270665 + 06/07 22:20:00,13.682882882882883,13.682882882882883,19.118630108649456 + 06/07 22:30:00,13.708108108108109,13.708108108108109,19.184769779571348 + 06/07 22:40:00,13.733333333333335,13.733333333333335,19.23723438338935 + 06/07 22:50:00,13.758558558558559,13.758558558558559,19.27997807509266 + 06/07 23:00:00,13.783783783783785,13.783783783783785,19.316121897504613 + 06/07 23:10:00,13.851051051051052,13.851051051051052,19.346737168213225 + 06/07 23:20:00,13.91831831831832,13.91831831831832,19.374103379297784 + 06/07 23:30:00,13.985585585585586,13.985585585585586,19.3988418134811 + 06/07 23:40:00,14.052852852852853,14.052852852852853,19.421654027480686 + 06/07 23:50:00,14.12012012012012,14.12012012012012,19.442842078323435 + 06/07 24:00:00,14.187387387387388,14.187387387387388,19.46265507981739 + 06/08 00:10:00,14.25885885885886,14.25885885885886,19.48153825428299 + 06/08 00:20:00,14.33033033033033,14.33033033033033,19.499541407079208 + 06/08 00:30:00,14.401801801801803,14.401801801801803,19.516663713884197 + 06/08 00:40:00,14.473273273273274,14.473273273273274,19.53308794787095 + 06/08 00:50:00,14.544744744744746,14.544744744744746,19.5488008222325 + 06/08 01:00:00,14.616216216216217,14.616216216216217,19.56387352390932 + 06/08 01:10:00,14.70870870870871,14.70870870870871,19.578863936049744 + 06/08 01:20:00,14.8012012012012,14.8012012012012,19.59384958666819 + 06/08 01:30:00,14.893693693693694,14.893693693693694,19.60847050230494 + 06/08 01:40:00,14.986186186186187,14.986186186186187,19.622835596669498 + 06/08 01:50:00,15.078678678678678,15.078678678678678,19.636803497950245 + 06/08 02:00:00,15.17117117117117,15.17117117117117,19.650384588138424 + 06/08 02:10:00,15.124924924924925,15.124924924924925,19.663018161316168 + 06/08 02:20:00,15.078678678678678,15.078678678678678,19.67468837588848 + 06/08 02:30:00,15.032432432432433,15.032432432432433,19.68560132920989 + 06/08 02:40:00,14.986186186186187,14.986186186186187,19.69569906384754 + 06/08 02:50:00,14.93993993993994,14.93993993993994,19.70516086662742 + 06/08 03:00:00,14.893693693693694,14.893693693693694,19.713975359086559 + 06/08 03:10:00,14.93993993993994,14.93993993993994,19.7227058324142 + 06/08 03:20:00,14.986186186186187,14.986186186186187,19.731395110639203 + 06/08 03:30:00,15.032432432432433,15.032432432432433,19.73996908741869 + 06/08 03:40:00,15.078678678678678,15.078678678678678,19.748496664654114 + 06/08 03:50:00,15.124924924924925,15.124924924924925,19.756865703454076 + 06/08 04:00:00,15.17117117117117,15.17117117117117,19.765159610299773 + 06/08 04:10:00,15.17117117117117,15.17117117117117,19.773211690674076 + 06/08 04:20:00,15.17117117117117,15.17117117117117,19.781028055927825 + 06/08 04:30:00,15.17117117117117,15.17117117117117,19.78859245564646 + 06/08 04:40:00,15.17117117117117,15.17117117117117,19.795863128561316 + 06/08 04:50:00,15.17117117117117,15.17117117117117,19.802878710565687 + 06/08 05:00:00,15.17117117117117,15.17117117117117,19.80973735906109 + 06/08 05:10:00,15.17117117117117,15.17117117117117,19.81666395764014 + 06/08 05:20:00,15.17117117117117,15.17117117117117,19.823447542021648 + 06/08 05:30:00,15.17117117117117,15.17117117117117,19.83003692969598 + 06/08 05:40:00,15.17117117117117,15.17117117117117,19.836020534342944 + 06/08 05:50:00,15.17117117117117,15.17117117117117,19.841004602003396 + 06/08 06:00:00,15.17117117117117,15.17117117117117,19.845076463121296 + 06/08 06:10:00,15.078678678678678,15.078678678678678,17.834195792378947 + 06/08 06:20:00,14.986186186186187,14.986186186186187,17.597474737663796 + 06/08 06:30:00,14.893693693693694,14.893693693693694,17.507607606144825 + 06/08 06:40:00,14.801201201201203,14.801201201201203,17.43546804733849 + 06/08 06:50:00,14.70870870870871,14.70870870870871,17.376514350149074 + 06/08 07:00:00,14.616216216216217,14.616216216216217,17.325754745088579 + 06/08 07:05:00,14.477477477477479,14.477477477477479,15.83055477215179 + 06/08 07:10:00,14.477477477477479,14.477477477477479,15.830370470102773 + 06/08 07:15:00,14.338738738738739,14.338738738738739,15.603040965609207 + 06/08 07:20:00,14.338738738738739,14.338738738738739,15.603020061400099 + 06/08 07:25:00,14.2,14.2,15.491286045109531 + 06/08 07:30:00,14.2,14.2,15.491495633334257 + 06/08 07:40:00,14.061261261261262,14.061261261261262,15.396840931821075 + 06/08 07:50:00,13.922522522522524,13.922522522522524,15.317194066766806 + 06/08 08:00:00,13.783783783783785,13.783783783783785,15.246912278414316 + 06/08 08:03:19,13.691291291291293,13.691291291291293,15.160451195386424 + 06/08 08:06:40,13.691291291291293,13.691291291291293,15.158836216963279 + 06/08 08:10:00,13.691291291291293,13.691291291291293,15.159728021664819 + 06/08 08:20:00,13.5987987987988,13.5987987987988,15.0925701266455 + 06/08 08:30:00,13.506306306306307,13.506306306306307,15.040164107410867 + 06/08 08:40:00,13.413813813813816,13.413813813813816,14.990648473865175 + 06/08 08:50:00,13.32132132132132,13.32132132132132,14.944856431614742 + 06/08 09:00:00,13.22882882882883,13.22882882882883,14.901890775328038 + 06/08 09:10:00,13.203603603603604,13.203603603603604,14.861639899864422 + 06/08 09:20:00,13.17837837837838,13.17837837837838,14.813098717437576 + 06/08 09:30:00,13.153153153153154,13.153153153153154,14.777275164068083 + 06/08 09:40:00,13.12792792792793,13.12792792792793,14.7433763596647 + 06/08 09:50:00,13.102702702702704,13.102702702702704,14.711226412413641 + 06/08 10:00:00,13.077477477477478,13.077477477477478,14.680708454059712 + 06/08 10:10:00,13.006006006006008,13.006006006006008,14.651672849649455 + 06/08 10:20:00,12.934534534534535,12.934534534534535,14.61986964223905 + 06/08 10:30:00,12.863063063063063,12.863063063063063,14.592699000445882 + 06/08 10:40:00,12.8,12.8,14.566795140450262 + 06/08 10:50:00,12.8,12.8,14.542615417741397 + 06/08 11:00:00,12.8,12.8,14.520262285591335 + 06/08 11:10:00,12.8,12.8,14.499468084394826 + 06/08 11:20:00,12.8,12.8,14.489057282148528 + 06/08 11:30:00,12.8,12.8,14.4701056785872 + 06/08 11:40:00,12.8,12.8,14.451907452199562 + 06/08 11:50:00,12.8,12.8,14.434214959333943 + 06/08 12:00:00,12.8,12.8,14.416776271780807 + 06/08 12:10:00,12.8,12.8,14.39981830701784 + 06/08 12:20:00,12.8,12.8,14.372441512687639 + 06/08 12:30:00,12.8,12.8,14.355454043840103 + 06/08 12:40:00,12.8,12.8,14.339514836219731 + 06/08 12:50:00,12.8,12.8,14.325591201636176 + 06/08 13:00:00,12.8,12.8,14.313696317999883 + 06/08 13:10:00,12.8,12.8,14.303698851351579 + 06/08 13:20:00,12.8,12.8,14.302176389162252 + 06/08 13:30:00,12.8,12.8,14.29837959929171 + 06/08 13:40:00,12.8,12.8,14.294915710140473 + 06/08 13:50:00,12.8,12.8,14.28974056648105 + 06/08 14:00:00,12.8,12.8,14.282372290339218 + 06/08 14:10:00,12.8,12.8,14.272572693305233 + 06/08 14:20:00,12.8,12.8,14.261653411332852 + 06/08 14:30:00,12.8,12.8,14.248113501849188 + 06/08 14:40:00,12.8,12.8,14.234936746260895 + 06/08 14:50:00,12.8,12.8,14.223528869779888 + 06/08 15:00:00,12.8,12.8,14.211543573285257 + 06/08 15:05:00,12.8,12.8,16.365115846997676 + 06/08 15:10:00,12.8,12.8,16.364026410703099 + 06/08 15:20:00,12.8,12.8,16.610767723959964 + 06/08 15:30:00,12.8,12.8,16.705091759824066 + 06/08 15:40:00,12.8,12.8,16.76670891568009 + 06/08 15:50:00,12.8,12.8,16.828180444517593 + 06/08 16:00:00,12.8,12.8,16.86971047884267 + 06/08 16:10:00,12.8,12.8,16.937238133368625 + 06/08 16:20:00,12.8,12.8,16.992498920443376 + 06/08 16:30:00,12.8,12.8,17.023763128522125 + 06/08 16:40:00,12.8,12.8,17.051658888173198 + 06/08 16:50:00,12.8,12.8,17.07713667910303 + 06/08 17:00:00,12.8,12.8,17.100607907799725 + 06/08 17:10:00,12.8,12.8,17.135942347618206 + 06/08 17:20:00,12.8,12.8,17.162671554431968 + 06/08 17:30:00,12.8,12.8,17.170285593942105 + 06/08 17:40:00,12.8,12.8,17.196083917978528 + 06/08 17:50:00,12.8,12.8,17.211437860309343 + 06/08 18:00:00,12.8,12.8,17.231866335106344 + 06/08 18:10:00,12.8,12.8,17.24024635700821 + 06/08 18:20:00,12.8,12.8,17.263803685153289 + 06/08 18:30:00,12.8,12.8,17.278975910768624 + 06/08 18:40:00,12.8,12.8,17.298363203942878 + 06/08 18:50:00,12.8,12.8,17.31613919290084 + 06/08 19:00:00,12.8,12.8,17.333840801434019 + 06/08 19:10:00,12.8,12.8,17.364712705011315 + 06/08 19:20:00,12.8,12.8,17.383109883223548 + 06/08 19:30:00,12.8,12.8,17.400996425664525 + 06/08 19:40:00,12.8,12.8,17.418566765377304 + 06/08 19:50:00,12.8,12.8,17.438577247112187 + 06/08 20:00:00,12.8,12.8,17.454901717818364 + 06/08 20:10:00,12.8,12.8,17.448037252810225 + 06/08 20:20:00,12.8,12.8,17.466941636175034 + 06/08 20:30:00,12.8,12.8,17.480438797438347 + 06/08 20:40:00,12.833633633633636,12.833633633633636,17.493113942736657 + 06/08 20:50:00,12.87987987987988,12.87987987987988,17.504954887658763 + 06/08 21:00:00,12.926126126126127,12.926126126126127,17.51607668484482 + 06/08 21:10:00,12.997597597597599,12.997597597597599,17.526755930635376 + 06/08 21:20:00,13.06906906906907,13.06906906906907,17.537746190393848 + 06/08 21:30:00,13.140540540540542,13.140540540540542,17.548280169139745 + 06/08 21:40:00,13.212012012012015,13.212012012012015,17.55857377268718 + 06/08 21:50:00,13.283483483483485,13.283483483483485,17.568409870510565 + 06/08 22:00:00,13.354954954954956,13.354954954954956,17.577960581804349 + 06/08 22:10:00,13.426426426426428,13.426426426426428,18.956174321815113 + 06/08 22:20:00,13.497897897897899,13.497897897897899,19.104006652674824 + 06/08 22:30:00,13.56936936936937,13.56936936936937,19.17065294536211 + 06/08 22:40:00,13.640840840840842,13.640840840840842,19.22379404599313 + 06/08 22:50:00,13.712312312312314,13.712312312312314,19.26720206602656 + 06/08 23:00:00,13.783783783783785,13.783783783783785,19.30407291870402 + 06/08 23:10:00,13.804804804804805,13.804804804804805,19.336252208215109 + 06/08 23:20:00,13.825825825825828,13.825825825825828,19.36416700535888 + 06/08 23:30:00,13.846846846846848,13.846846846846848,19.389331763649346 + 06/08 23:40:00,13.867867867867869,13.867867867867869,19.412106545875 + 06/08 23:50:00,13.88888888888889,13.88888888888889,19.433070949862459 + 06/08 24:00:00,13.90990990990991,13.90990990990991,19.452421435695326 + 06/09 00:10:00,13.956156156156157,13.956156156156157,19.470821047012146 + 06/09 00:20:00,14.002402402402403,14.002402402402403,19.487902587784587 + 06/09 00:30:00,14.04864864864865,14.04864864864865,19.504088038484768 + 06/09 00:40:00,14.094894894894896,14.094894894894896,19.51943883236831 + 06/09 00:50:00,14.14114114114114,14.14114114114114,19.53403038408773 + 06/09 01:00:00,14.187387387387388,14.187387387387388,19.548092347737314 + 06/09 01:10:00,14.187387387387388,14.187387387387388,19.56103918887077 + 06/09 01:20:00,14.187387387387388,14.187387387387388,19.57418820118752 + 06/09 01:30:00,14.187387387387388,14.187387387387388,19.586828107082675 + 06/09 01:40:00,14.187387387387389,14.187387387387389,19.599102268566189 + 06/09 01:50:00,14.187387387387388,14.187387387387388,19.61093173090766 + 06/09 02:00:00,14.187387387387388,14.187387387387388,19.62234564889285 + 06/09 02:10:00,14.187387387387388,14.187387387387388,19.633008812999554 + 06/09 02:20:00,14.187387387387388,14.187387387387388,19.64309598217375 + 06/09 02:30:00,14.187387387387388,14.187387387387388,19.652806515930338 + 06/09 02:40:00,14.187387387387389,14.187387387387389,19.66214125330017 + 06/09 02:50:00,14.187387387387388,14.187387387387388,19.671267679111943 + 06/09 03:00:00,14.187387387387388,14.187387387387388,19.680138597712884 + 06/09 03:10:00,14.237837837837838,14.237837837837838,19.689688101176878 + 06/09 03:20:00,14.288288288288289,14.288288288288289,19.698572171968416 + 06/09 03:30:00,14.338738738738739,14.338738738738739,19.707223532114996 + 06/09 03:40:00,14.389189189189189,14.389189189189189,19.715701951645298 + 06/09 03:50:00,14.43963963963964,14.43963963963964,19.724055126828163 + 06/09 04:00:00,14.49009009009009,14.49009009009009,19.73229178343666 + 06/09 04:10:00,14.511111111111111,14.511111111111111,19.739819664501089 + 06/09 04:20:00,14.532132132132132,14.532132132132132,19.747594033936818 + 06/09 04:30:00,14.553153153153153,14.553153153153153,19.7552573377163 + 06/09 04:40:00,14.574174174174175,14.574174174174175,19.762865463505947 + 06/09 04:50:00,14.595195195195196,14.595195195195196,19.770261009425153 + 06/09 05:00:00,14.616216216216217,14.616216216216217,19.777442728672768 + 06/09 05:10:00,14.641441441441442,14.641441441441442,19.783721470397887 + 06/09 05:20:00,14.666666666666666,14.666666666666666,19.7899679450189 + 06/09 05:30:00,14.691891891891892,14.691891891891892,19.79620293806288 + 06/09 05:40:00,14.717117117117118,14.717117117117118,19.802091445549239 + 06/09 05:50:00,14.742342342342342,14.742342342342342,19.80725065848818 + 06/09 06:00:00,14.767567567567568,14.767567567567568,19.811581650785596 + 06/09 06:10:00,14.603603603603604,14.603603603603604,17.801666149354788 + 06/09 06:20:00,14.439639639639639,14.439639639639639,17.56736038277647 + 06/09 06:30:00,14.275675675675675,14.275675675675675,17.480006192158489 + 06/09 06:40:00,14.111711711711714,14.111711711711714,17.41069898682401 + 06/09 06:50:00,13.947747747747748,13.947747747747748,17.354401407388627 + 06/09 07:00:00,13.783783783783785,13.783783783783785,17.306245634785243 + 06/09 07:05:00,13.61981981981982,13.61981981981982,15.815854716582372 + 06/09 07:10:00,13.61981981981982,13.61981981981982,15.815542520621963 + 06/09 07:15:00,13.455855855855857,13.455855855855857,15.590489371201839 + 06/09 07:20:00,13.455855855855857,13.455855855855857,15.590689245898869 + 06/09 07:30:00,13.291891891891894,13.291891891891894,15.480275773894047 + 06/09 07:40:00,13.127927927927928,13.127927927927928,15.388067386433433 + 06/09 07:50:00,12.963963963963965,12.963963963963965,15.309148355633847 + 06/09 08:00:00,12.8,12.8,15.239393872304138 + 06/09 08:03:19,12.8,12.8,15.153767296080599 + 06/09 08:06:40,12.8,12.8,15.151788572151253 + 06/09 08:10:00,12.8,12.8,15.15298843868572 + 06/09 08:20:00,12.8,12.8,15.08672815802905 + 06/09 08:30:00,12.8,12.8,15.03580094617934 + 06/09 08:40:00,12.8,12.8,14.987729247638076 + 06/09 08:50:00,12.8,12.8,14.943425073480042 + 06/09 09:00:00,12.8,12.8,14.90198709881268 + 06/09 09:10:00,12.8,12.8,14.863074470635869 + 06/09 09:20:00,12.8,12.8,14.816661681418731 + 06/09 09:30:00,12.8,12.8,14.782657112742533 + 06/09 09:40:00,12.8,12.8,14.750501281506013 + 06/09 09:50:00,12.8,12.8,14.718968704037068 + 06/09 10:00:00,12.8,12.8,14.689393342604547 + 06/09 10:10:00,12.8,12.8,14.660673038182125 + 06/09 10:20:00,12.8,12.8,14.629513344127325 + 06/09 10:30:00,12.8,12.8,14.602734912633885 + 06/09 10:40:00,12.8,12.8,14.576847084739859 + 06/09 10:50:00,12.8,12.8,14.551927030634238 + 06/09 11:00:00,12.8,12.8,14.527967738043749 + 06/09 11:10:00,12.8,12.8,14.504875077472575 + 06/09 11:20:00,12.8,12.8,14.492467224916736 + 06/09 11:30:00,12.8,12.8,14.471489126009204 + 06/09 11:40:00,12.8,12.8,14.45130766500294 + 06/09 11:50:00,12.8,12.8,14.432186844941008 + 06/09 12:00:00,12.8,12.8,14.414055966732925 + 06/09 12:10:00,12.8,12.8,14.397498599363426 + 06/09 12:20:00,12.8,12.8,14.372135128488314 + 06/09 12:30:00,12.8,12.8,14.357034585596916 + 06/09 12:40:00,12.8,12.8,14.34305567154948 + 06/09 12:45:00,12.8,12.8,14.333531664660442 + 06/09 12:50:00,12.8,12.8,14.332208588410698 + 06/09 13:00:00,12.8,12.8,14.320197952570498 + 06/09 13:10:00,12.8,12.8,14.310795998180968 + 06/09 13:20:00,12.8,12.8,14.304764754546487 + 06/09 13:30:00,12.8,12.8,14.297174382177876 + 06/09 13:40:00,12.8,12.8,14.289707606268099 + 06/09 13:50:00,12.8,12.8,14.282515030139012 + 06/09 14:00:00,12.8,12.8,14.273696156181238 + 06/09 14:10:00,12.8,12.8,14.265925039115244 + 06/09 14:20:00,12.8,12.8,14.26039290864932 + 06/09 14:30:00,12.8,12.8,14.250648039348917 + 06/09 14:40:00,12.8,12.8,14.243736116197825 + 06/09 14:50:00,12.8,12.8,14.237967196886038 + 06/09 15:00:00,12.8,12.8,14.23209633135264 + 06/09 15:05:00,12.8,12.8,16.377128124742187 + 06/09 15:10:00,12.8,12.8,16.375452313863368 + 06/09 15:20:00,12.8,12.8,16.625358373014906 + 06/09 15:30:00,12.8,12.8,16.72291571988585 + 06/09 15:40:00,12.8,12.8,16.796596730115426 + 06/09 15:50:00,12.8,12.8,16.854572413140646 + 06/09 16:00:00,12.8,12.8,16.900495030990436 + 06/09 16:10:00,12.8,12.8,16.965725976656896 + 06/09 16:20:00,12.8,12.8,17.020964031062083 + 06/09 16:30:00,12.8,12.8,17.05218979418155 + 06/09 16:40:00,12.8,12.8,17.07996744128308 + 06/09 16:50:00,12.8,12.8,17.105384038821947 + 06/09 17:00:00,12.8,12.8,17.128944682048954 + 06/09 17:10:00,12.8,12.8,17.16474826909122 + 06/09 17:20:00,12.8,12.8,17.191990658987913 + 06/09 17:30:00,12.8,12.8,17.212504974340005 + 06/09 17:40:00,12.8,12.8,17.232075335105493 + 06/09 17:50:00,12.8,12.8,17.251097478458186 + 06/09 18:00:00,12.8,12.8,17.26970944895612 + 06/09 18:10:00,12.8,12.8,17.287534446502457 + 06/09 18:20:00,12.8,12.8,17.305191092365534 + 06/09 18:30:00,12.8,12.8,17.322541063826607 + 06/09 18:40:00,12.8,12.8,17.33944173134042 + 06/09 18:50:00,12.8,12.8,17.355528991575708 + 06/09 19:00:00,12.8,12.8,17.370772367261848 + 06/09 19:10:00,12.8,12.8,17.398743844462815 + 06/09 19:20:00,12.8,12.8,17.414015876140547 + 06/09 19:30:00,12.8,12.8,17.428762432914945 + 06/09 19:40:00,12.8,12.8,17.433433513941777 + 06/09 19:50:00,12.8,12.8,17.453029321433769 + 06/09 20:00:00,12.8,12.8,17.464716414745135 + 06/09 20:10:00,12.8,12.8,17.45288285994289 + 06/09 20:20:00,12.8,12.8,17.464538680917209 + 06/09 20:30:00,12.8,12.8,17.47103838130865 + 06/09 20:40:00,12.8,12.8,17.477330302367514 + 06/09 20:50:00,12.8,12.8,17.483584064135458 + 06/09 21:00:00,12.8,12.8,17.489635608759757 + 06/09 21:10:00,12.8,12.8,17.49505424741836 + 06/09 21:20:00,12.8,12.8,17.504185952471845 + 06/09 21:30:00,12.8,12.8,17.51261214362706 + 06/09 21:40:00,12.8,12.8,17.521159693979798 + 06/09 21:50:00,12.8,12.8,17.528964783794629 + 06/09 22:00:00,12.8,12.8,17.536489482515145 + 06/09 22:10:00,12.8,12.8,18.915756646879968 + 06/09 22:20:00,12.8,12.8,19.063643596171074 + 06/09 22:30:00,12.8,12.8,19.12986465177809 + 06/09 22:40:00,12.833633633633636,12.833633633633636,19.18249176055036 + 06/09 22:50:00,12.87987987987988,12.87987987987988,19.225351249082619 + 06/09 23:00:00,12.926126126126127,12.926126126126127,19.26162923066594 + 06/09 23:10:00,13.022822822822823,13.022822822822823,19.29340073182437 + 06/09 23:20:00,13.11951951951952,13.11951951951952,19.32209554579431 + 06/09 23:30:00,13.216216216216216,13.216216216216216,19.34807356371251 + 06/09 23:40:00,13.312912912912914,13.312912912912914,19.37208598089861 + 06/09 23:50:00,13.40960960960961,13.40960960960961,19.39440042176166 + 06/09 24:00:00,13.506306306306307,13.506306306306307,19.415293601165837 + 06/10 00:10:00,13.61981981981982,13.61981981981982,19.434241539564437 + 06/10 00:20:00,13.733333333333335,13.733333333333335,19.452477099091078 + 06/10 00:30:00,13.846846846846848,13.846846846846848,19.4698097400299 + 06/10 00:40:00,13.960360360360362,13.960360360360362,19.48650623559366 + 06/10 00:50:00,14.073873873873874,14.073873873873874,19.5025332743133 + 06/10 01:00:00,14.187387387387388,14.187387387387388,19.51813369421955 + 06/10 01:10:00,14.187387387387388,14.187387387387388,19.5355029114434 + 06/10 01:20:00,14.187387387387388,14.187387387387388,19.55185985868202 + 06/10 01:30:00,14.187387387387388,14.187387387387388,19.567172172611995 + 06/10 01:40:00,14.187387387387389,14.187387387387389,19.58146265645968 + 06/10 01:50:00,14.187387387387388,14.187387387387388,19.594861600698836 + 06/10 02:00:00,14.187387387387388,14.187387387387388,19.607482518348286 + 06/10 02:10:00,14.35135135135135,14.35135135135135,19.617987867445274 + 06/10 02:20:00,14.515315315315315,14.515315315315315,19.628800155421368 + 06/10 02:30:00,14.67927927927928,14.67927927927928,19.639558850812329 + 06/10 02:40:00,14.843243243243244,14.843243243243244,19.650409149767968 + 06/10 02:50:00,15.007207207207208,15.007207207207208,19.661242436676287 + 06/10 03:00:00,15.17117117117117,15.17117117117117,19.67203411482263 + 06/10 03:10:00,15.15015015015015,15.15015015015015,19.685621336022434 + 06/10 03:20:00,15.12912912912913,15.12912912912913,19.698537899946307 + 06/10 03:30:00,15.108108108108109,15.108108108108109,19.71057026905741 + 06/10 03:40:00,15.087087087087087,15.087087087087087,19.721779803754907 + 06/10 03:50:00,15.066066066066066,15.066066066066066,19.732201216857143 + 06/10 04:00:00,15.045045045045045,15.045045045045045,19.742025732257035 + 06/10 04:10:00,15.091291291291292,15.091291291291292,19.74885233434266 + 06/10 04:20:00,15.137537537537538,15.137537537537538,19.755862376864383 + 06/10 04:30:00,15.183783783783785,15.183783783783785,19.7628349743949 + 06/10 04:40:00,15.23003003003003,15.23003003003003,19.769842557434794 + 06/10 04:50:00,15.276276276276276,15.276276276276276,19.77683817793425 + 06/10 05:00:00,15.322522522522523,15.322522522522523,19.784001429049256 + 06/10 05:10:00,15.276276276276276,15.276276276276276,19.793819334858687 + 06/10 05:20:00,15.23003003003003,15.23003003003003,19.802688559601227 + 06/10 05:30:00,15.183783783783785,15.183783783783785,19.810741469564165 + 06/10 05:40:00,15.137537537537538,15.137537537537538,19.81760939218762 + 06/10 05:50:00,15.091291291291292,15.091291291291292,19.82323683059481 + 06/10 06:00:00,15.045045045045045,15.045045045045045,19.827651487744853 + 06/10 06:10:00,14.973573573573575,14.973573573573575,19.166007397396827 + 06/10 06:20:00,14.902102102102102,14.902102102102102,19.09724455016552 + 06/10 06:30:00,14.83063063063063,14.83063063063063,19.06865688002723 + 06/10 06:40:00,14.759159159159159,14.759159159159159,19.04571711032603 + 06/10 06:50:00,14.687687687687689,14.687687687687689,19.02650201547157 + 06/10 07:00:00,14.616216216216217,14.616216216216217,19.009186829827138 + 06/10 07:10:00,14.523723723723723,14.523723723723723,17.91186396771748 + 06/10 07:20:00,14.431231231231232,14.431231231231232,17.757407974136837 + 06/10 07:30:00,14.338738738738739,14.338738738738739,17.687470717691224 + 06/10 07:40:00,14.246246246246246,14.246246246246246,17.62925703048456 + 06/10 07:50:00,14.153753753753755,14.153753753753755,17.57975014331057 + 06/10 08:00:00,14.061261261261262,14.061261261261262,17.53609901186832 + 06/10 08:10:00,13.872072072072072,13.872072072072072,17.49695584642748 + 06/10 08:20:00,13.682882882882883,13.682882882882883,17.450545063801227 + 06/10 08:30:00,13.493693693693695,13.493693693693695,17.41491496483274 + 06/10 08:40:00,13.304504504504506,13.304504504504506,17.380671115114575 + 06/10 08:50:00,13.115315315315316,13.115315315315316,17.347939412337618 + 06/10 09:00:00,12.926126126126127,12.926126126126127,17.316577061509748 + 06/10 09:10:00,12.87987987987988,12.87987987987988,17.286741576769054 + 06/10 09:20:00,12.833633633633636,12.833633633633636,17.24946442176823 + 06/10 09:30:00,12.8,12.8,17.2225040267395 + 06/10 09:40:00,12.8,12.8,17.196882670624416 + 06/10 09:50:00,12.8,12.8,17.172429795172364 + 06/10 10:00:00,12.8,12.8,17.148996642325643 + 06/10 10:10:00,12.8,12.8,17.126472941680846 + 06/10 10:20:00,12.8,12.8,17.10633739591076 + 06/10 10:30:00,12.8,12.8,17.08678746964533 + 06/10 10:40:00,12.8,12.8,17.06805784146468 + 06/10 10:50:00,12.8,12.8,17.049753423150663 + 06/10 11:00:00,12.8,12.8,17.031871298131706 + 06/10 11:10:00,12.8,12.8,17.01460501484315 + 06/10 11:20:00,12.8,12.8,16.996813176417569 + 06/10 11:30:00,12.8,12.8,16.979820690835696 + 06/10 11:40:00,12.8,12.8,16.966817400752068 + 06/10 11:50:00,12.8,12.8,16.947647114859483 + 06/10 12:00:00,12.8,12.8,16.938504705422426 + 06/10 12:10:00,12.8,12.8,16.925491293305464 + 06/10 12:20:00,12.8,12.8,16.915462706882438 + 06/10 12:30:00,12.8,12.8,16.905001510100975 + 06/10 12:40:00,12.8,12.8,16.894999954696737 + 06/10 12:50:00,12.8,12.8,16.885465816119387 + 06/10 13:00:00,12.8,12.8,16.876481546780896 + 06/10 13:10:00,12.8,12.8,16.86767107585424 + 06/10 13:20:00,12.8,12.8,16.859114479674227 + 06/10 13:30:00,12.8,12.8,16.850663122501716 + 06/10 13:40:00,12.8,12.8,16.842606570248035 + 06/10 13:50:00,12.8,12.8,16.835186191399015 + 06/10 14:00:00,12.8,12.8,16.828456801107558 + 06/10 14:10:00,12.8,12.8,16.822633367947206 + 06/10 14:20:00,12.8,12.8,16.817578805160737 + 06/10 14:30:00,12.8,12.8,16.813285068515826 + 06/10 14:40:00,12.8,12.8,16.809611860704224 + 06/10 14:50:00,12.8,12.8,16.806430386171898 + 06/10 15:00:00,12.8,12.8,16.80364196194242 + 06/10 15:10:00,12.8,12.8,16.801177136490183 + 06/10 15:20:00,12.8,12.8,16.799113246175595 + 06/10 15:30:00,12.8,12.8,16.797368916414969 + 06/10 15:40:00,12.8,12.8,16.79596285569005 + 06/10 15:50:00,12.8,12.8,16.794895982191386 + 06/10 16:00:00,12.8,12.8,16.79414817496417 + 06/10 16:10:00,12.8,12.8,16.807390257206163 + 06/10 16:20:00,12.8,12.8,16.817369304390764 + 06/10 16:30:00,12.8,12.8,16.81844340178011 + 06/10 16:40:00,12.8,12.8,16.81971477087311 + 06/10 16:50:00,12.8,12.8,16.821386530717107 + 06/10 17:00:00,12.8,12.8,16.823456103790066 + 06/10 17:10:00,12.8,12.8,18.603405728395129 + 06/10 17:20:00,12.8,12.8,18.818860075842424 + 06/10 17:30:00,12.8,12.8,18.903766387789007 + 06/10 17:40:00,12.8,12.8,18.970087711353146 + 06/10 17:50:00,12.8,12.8,19.023504895325897 + 06/10 18:00:00,12.8,12.8,19.068627964670353 + 06/10 18:10:00,12.8,12.8,19.121642056990699 + 06/10 18:20:00,12.8,12.8,19.158163668881273 + 06/10 18:30:00,12.8,12.8,19.19121239717468 + 06/10 18:40:00,12.8,12.8,19.221784903194928 + 06/10 18:50:00,12.8,12.8,19.250350941242279 + 06/10 19:00:00,12.8,12.8,19.277167988632749 + 06/10 19:10:00,12.8,12.8,19.3025427328312 + 06/10 19:20:00,12.8,12.8,19.326854102406704 + 06/10 19:30:00,12.8,12.8,19.350186665688143 + 06/10 19:40:00,12.8,12.8,19.37244707935205 + 06/10 19:50:00,12.8,12.8,19.393682940456089 + 06/10 20:00:00,12.8,12.8,19.414051903143286 + 06/10 20:10:00,12.8,12.8,19.40894650709369 + 06/10 20:20:00,12.8,12.8,19.42751009332386 + 06/10 20:30:00,12.8,12.8,19.44445529990721 + 06/10 20:40:00,12.8,12.8,19.460786488413836 + 06/10 20:50:00,12.8,12.8,19.476148433920174 + 06/10 21:00:00,12.8,12.8,19.490769180964987 + 06/10 21:10:00,12.8,12.8,19.504742789972675 + 06/10 21:20:00,12.8,12.8,19.5178051172397 + 06/10 21:30:00,12.8,12.8,19.53022829446799 + 06/10 21:40:00,12.8,12.8,19.54196615566422 + 06/10 21:50:00,12.8,12.8,19.55327965288291 + 06/10 22:00:00,12.8,12.8,19.564046376209377 + 06/10 22:10:00,12.8,12.8,19.57382156930135 + 06/10 22:20:00,12.8,12.8,19.583269428167556 + 06/10 22:30:00,12.8,12.8,19.592296388639065 + 06/10 22:40:00,12.8,12.8,19.601194607055647 + 06/10 22:50:00,12.8,12.8,19.609916279205597 + 06/10 23:00:00,12.8,12.8,19.618532095387363 + 06/10 23:10:00,12.821021021021022,12.821021021021022,19.62761782932448 + 06/10 23:20:00,12.842042042042042,12.842042042042042,19.636516891223058 + 06/10 23:30:00,12.863063063063063,12.863063063063063,19.645038341407159 + 06/10 23:40:00,12.884084084084084,12.884084084084084,19.653220197737526 + 06/10 23:50:00,12.905105105105106,12.905105105105106,19.661013904975094 + 06/10 24:00:00,12.926126126126127,12.926126126126127,19.668493019744664 + 06/11 00:10:00,12.976576576576577,12.976576576576577,19.675611986406027 + 06/11 00:20:00,13.027027027027028,13.027027027027028,19.682509796130419 + 06/11 00:30:00,13.077477477477478,13.077477477477478,19.689411310067265 + 06/11 00:40:00,13.127927927927928,13.127927927927928,19.69625741829187 + 06/11 00:50:00,13.17837837837838,13.17837837837838,19.70305265380681 + 06/11 01:00:00,13.22882882882883,13.22882882882883,19.70975416378554 + 06/11 01:10:00,13.275075075075077,13.275075075075077,19.7161010690999 + 06/11 01:20:00,13.321321321321323,13.321321321321323,19.722448681451416 + 06/11 01:30:00,13.367567567567568,13.367567567567568,19.72865310290366 + 06/11 01:40:00,13.413813813813816,13.413813813813816,19.734726573725945 + 06/11 01:50:00,13.46006006006006,13.46006006006006,19.740656031406784 + 06/11 02:00:00,13.506306306306307,13.506306306306307,19.746363575640005 + 06/11 02:10:00,13.598798798798799,13.598798798798799,19.751787085943428 + 06/11 02:20:00,13.691291291291292,13.691291291291292,19.758579691460857 + 06/11 02:30:00,13.783783783783785,13.783783783783785,19.765159630247387 + 06/11 02:40:00,13.876276276276276,13.876276276276276,19.772067673984865 + 06/11 02:50:00,13.968768768768769,13.968768768768769,19.778832807632328 + 06/11 03:00:00,14.061261261261262,14.061261261261262,19.785770513082338 + 06/11 03:10:00,14.061261261261262,14.061261261261262,19.794359008390225 + 06/11 03:20:00,14.061261261261262,14.061261261261262,19.801885492875536 + 06/11 03:30:00,14.061261261261262,14.061261261261262,19.80886625176876 + 06/11 03:40:00,14.061261261261262,14.061261261261262,19.81515729960997 + 06/11 03:50:00,14.061261261261262,14.061261261261262,19.821099395700416 + 06/11 04:00:00,14.061261261261262,14.061261261261262,19.826788741427007 + 06/11 04:10:00,14.178978978978979,14.178978978978979,19.831575571014196 + 06/11 04:20:00,14.296696696696696,14.296696696696696,19.836786404398397 + 06/11 04:30:00,14.414414414414415,14.414414414414415,19.842114658836868 + 06/11 04:40:00,14.532132132132132,14.532132132132132,19.84766969492051 + 06/11 04:50:00,14.64984984984985,14.64984984984985,19.853430072732754 + 06/11 05:00:00,14.767567567567568,14.767567567567568,19.85931446672311 + 06/11 05:10:00,14.578378378378379,14.578378378378379,19.864759695560598 + 06/11 05:20:00,14.389189189189189,14.389189189189189,19.86907772154149 + 06/11 05:30:00,14.2,14.2,19.872169110460019 + 06/11 05:40:00,14.010810810810812,14.010810810810812,19.873693829524304 + 06/11 05:50:00,13.821621621621622,13.821621621621622,19.873143062495989 + 06/11 06:00:00,13.632432432432433,13.632432432432433,19.870759746841565 + 06/11 06:10:00,13.539939939939942,13.539939939939942,19.889935081582125 + 06/11 06:20:00,13.447447447447449,13.447447447447449,19.88699445520482 + 06/11 06:30:00,13.354954954954956,13.354954954954956,19.88278957552988 + 06/11 06:40:00,13.262462462462464,13.262462462462464,19.877699249325276 + 06/11 06:50:00,13.169969969969971,13.169969969969971,19.871344996114517 + 06/11 07:00:00,13.077477477477478,13.077477477477478,19.86385059206305 + 06/11 07:10:00,13.006006006006008,13.006006006006008,18.44593801139886 + 06/11 07:20:00,12.934534534534535,12.934534534534535,18.269850165281129 + 06/11 07:30:00,12.863063063063063,12.863063063063063,18.19498196958635 + 06/11 07:40:00,12.8,12.8,18.133969303647118 + 06/11 07:50:00,12.8,12.8,18.083036301276786 + 06/11 08:00:00,12.8,12.8,18.038949137677898 + 06/11 08:10:00,12.8,12.8,17.99957195668505 + 06/11 08:20:00,12.8,12.8,17.95538869100361 + 06/11 08:30:00,12.8,12.8,17.922679487914868 + 06/11 08:40:00,12.8,12.8,17.892315450681669 + 06/11 08:50:00,12.8,12.8,17.863925242400286 + 06/11 09:00:00,12.8,12.8,17.83728067125197 + 06/11 09:10:00,12.8,12.8,17.81221641043593 + 06/11 09:20:00,12.8,12.8,17.777909990706449 + 06/11 09:30:00,12.8,12.8,17.753419315504119 + 06/11 09:40:00,12.8,12.8,17.729620183568089 + 06/11 09:50:00,12.8,12.8,17.708128848643164 + 06/11 10:00:00,12.8,12.8,17.686760583476006 + 06/11 10:10:00,12.8,12.8,17.66647625558246 + 06/11 10:20:00,12.8,12.8,17.646781043855108 + 06/11 10:30:00,12.8,12.8,17.627709322162678 + 06/11 10:40:00,12.8,12.8,17.60917197006634 + 06/11 10:50:00,12.8,12.8,17.591366682738756 + 06/11 11:00:00,12.8,12.8,17.574208115377158 + 06/11 11:10:00,12.8,12.8,17.557522976247808 + 06/11 11:20:00,12.8,12.8,17.541765760459286 + 06/11 11:30:00,12.8,12.8,17.526934312522778 + 06/11 11:40:00,12.8,12.8,17.512998537136299 + 06/11 11:50:00,12.8,12.8,17.499793210834914 + 06/11 12:00:00,12.8,12.8,17.487464958818828 + 06/11 12:10:00,12.8,12.8,17.475458724033289 + 06/11 12:20:00,12.8,12.8,17.464410760862785 + 06/11 12:30:00,12.8,12.8,17.454347376640038 + 06/11 12:40:00,12.8,12.8,17.44530042853147 + 06/11 12:50:00,12.8,12.8,17.4372253194867 + 06/11 13:00:00,12.8,12.8,17.429990701712748 + 06/11 13:10:00,12.8,12.8,17.424741223904939 + 06/11 13:20:00,12.8,12.8,17.419710857302247 + 06/11 13:30:00,12.8,12.8,17.414848115378388 + 06/11 13:40:00,12.8,12.8,17.410095853645048 + 06/11 13:50:00,12.8,12.8,17.40536318983046 + 06/11 14:00:00,12.8,12.8,17.40058452752276 + 06/11 14:10:00,12.8,12.8,17.39474507141165 + 06/11 14:20:00,12.8,12.8,17.389711639661564 + 06/11 14:30:00,12.8,12.8,17.385414682969349 + 06/11 14:40:00,12.8,12.8,17.38195444331235 + 06/11 14:50:00,12.8,12.8,17.379665614734305 + 06/11 15:00:00,12.8,12.8,17.378452901717947 + 06/11 15:10:00,12.8,12.8,18.803122936673359 + 06/11 15:20:00,12.8,12.8,18.95726258668428 + 06/11 15:30:00,12.8,12.8,19.022121783865637 + 06/11 15:40:00,12.8,12.8,19.072395945853555 + 06/11 15:50:00,12.8,12.8,19.112320099346268 + 06/11 16:00:00,12.8,12.8,19.14513740448289 + 06/11 16:10:00,12.8,12.8,19.1736254196452 + 06/11 16:20:00,12.8,12.8,19.207506482358345 + 06/11 16:30:00,12.8,12.8,19.230050481531664 + 06/11 16:40:00,12.8,12.8,19.25057868822007 + 06/11 16:50:00,12.8,12.8,19.269781265149079 + 06/11 17:00:00,12.8,12.8,19.287923503012409 + 06/11 17:10:00,12.8,12.8,19.30487014772197 + 06/11 17:20:00,12.8,12.8,19.338612719687 + 06/11 17:30:00,12.8,12.8,19.354399419741868 + 06/11 17:40:00,12.8,12.8,19.369517049795666 + 06/11 17:50:00,12.8,12.8,19.384223615943627 + 06/11 18:00:00,12.8,12.8,19.398764505464596 + 06/11 18:10:00,12.8,12.8,19.413377240110699 + 06/11 18:20:00,12.8,12.8,19.427686803933754 + 06/11 18:30:00,12.8,12.8,19.44167058212829 + 06/11 18:40:00,12.8,12.8,19.45515900491933 + 06/11 18:50:00,12.8,12.8,19.468149724556473 + 06/11 19:00:00,12.8,12.8,19.480609909225906 + 06/11 19:10:00,12.8,12.8,19.492508034268139 + 06/11 19:20:00,12.8,12.8,19.50425789269614 + 06/11 19:30:00,12.8,12.8,19.515800534597468 + 06/11 19:40:00,12.8,12.8,19.52716993237751 + 06/11 19:50:00,12.8,12.8,19.538592288384185 + 06/11 20:00:00,12.8,12.8,19.550089670499724 + 06/11 20:10:00,12.8,12.8,19.538834450179615 + 06/11 20:20:00,12.8,12.8,19.549350266654736 + 06/11 20:30:00,12.8,12.8,19.559294499541765 + 06/11 20:40:00,12.8,12.8,19.56885184663227 + 06/11 20:50:00,12.8,12.8,19.578003063803167 + 06/11 21:00:00,12.8,12.8,19.586809765574328 + 06/11 21:10:00,12.8,12.8,19.595358801516164 + 06/11 21:20:00,12.8,12.8,19.603416362552463 + 06/11 21:30:00,12.8,12.8,19.61117121544881 + 06/11 21:40:00,12.8,12.8,19.618696931443574 + 06/11 21:50:00,12.8,12.8,19.625872902794535 + 06/11 22:00:00,12.8,12.8,19.632813226848648 + 06/11 22:10:00,12.8,12.8,19.639209210347447 + 06/11 22:20:00,12.8,12.8,19.645375418443348 + 06/11 22:30:00,12.8,12.8,19.65124995610038 + 06/11 22:40:00,12.8,12.8,19.656830453102346 + 06/11 22:50:00,12.8,12.8,19.66214340463997 + 06/11 23:00:00,12.8,12.8,19.667160332361698 + 06/11 23:10:00,12.8,12.8,19.672378616415914 + 06/11 23:20:00,12.8,12.8,19.677777755401836 + 06/11 23:30:00,12.8,12.8,19.683066394302977 + 06/11 23:40:00,12.8,12.8,19.688417729330888 + 06/11 23:50:00,12.8,12.8,19.693762903211885 + 06/11 24:00:00,12.8,12.8,19.69913788396749 + 06/12 00:10:00,12.8,12.8,19.70341562948248 + 06/12 00:20:00,12.8,12.8,19.70759881736884 + 06/12 00:30:00,12.8,12.8,19.711781627062739 + 06/12 00:40:00,12.8,12.8,19.715972778448895 + 06/12 00:50:00,12.8,12.8,19.72008217924779 + 06/12 01:00:00,12.8,12.8,19.724287277859295 + 06/12 01:10:00,12.8,12.8,19.728660907501657 + 06/12 01:20:00,12.8,12.8,19.732965192742243 + 06/12 01:30:00,12.8,12.8,19.73715825262681 + 06/12 01:40:00,12.8,12.8,19.741143334903769 + 06/12 01:50:00,12.8,12.8,19.745079599411974 + 06/12 02:00:00,12.8,12.8,19.74891921846423 + 06/12 02:10:00,12.8,12.8,19.752848300542678 + 06/12 02:20:00,12.8,12.8,19.75668234319535 + 06/12 02:30:00,12.8,12.8,19.76036601856365 + 06/12 02:40:00,12.8,12.8,19.76746007935541 + 06/12 02:50:00,12.8,12.8,19.77051578572775 + 06/12 03:00:00,12.8,12.8,19.774339334511074 + 06/12 03:10:00,12.8,12.8,19.777175702879626 + 06/12 03:20:00,12.8,12.8,19.780006043467116 + 06/12 03:30:00,12.8,12.8,19.782829878174846 + 06/12 03:40:00,12.8,12.8,19.785641223341665 + 06/12 03:50:00,12.8,12.8,19.788367630204033 + 06/12 04:00:00,12.8,12.8,19.791025449994323 + 06/12 04:10:00,12.8,12.8,19.793533509172638 + 06/12 04:20:00,12.8,12.8,19.795915312657326 + 06/12 04:30:00,12.8,12.8,19.79818303561916 + 06/12 04:40:00,12.8,12.8,19.800316562962349 + 06/12 04:50:00,12.8,12.8,19.802334483261178 + 06/12 05:00:00,12.8,12.8,19.804225941933045 + 06/12 05:10:00,12.8,12.8,19.80627019693082 + 06/12 05:20:00,12.8,12.8,19.80853043932824 + 06/12 05:30:00,12.8,12.8,19.81101843672347 + 06/12 05:40:00,12.8,12.8,19.813385929676796 + 06/12 05:50:00,12.8,12.8,19.81516995334999 + 06/12 06:00:00,12.8,12.8,19.816274619761346 + 06/12 06:10:00,12.8,12.8,17.828835176909285 + 06/12 06:20:00,12.8,12.8,17.57317901211384 + 06/12 06:30:00,12.8,12.8,17.481747458389149 + 06/12 06:40:00,12.8,12.8,17.407015331118779 + 06/12 06:50:00,12.8,12.8,17.34986891377094 + 06/12 07:00:00,12.8,12.8,17.301611196599777 + 06/12 07:05:00,12.8,12.8,15.808535473881248 + 06/12 07:10:00,12.8,12.8,15.815076448649715 + 06/12 07:20:00,12.8,12.8,15.586385666852424 + 06/12 07:30:00,12.8,12.8,15.474940293403629 + 06/12 07:40:00,12.8,12.8,15.387202043274933 + 06/12 07:50:00,12.8,12.8,15.312048231248115 + 06/12 08:00:00,12.8,12.8,15.245580659704626 + 06/12 08:05:00,12.8,12.8,15.15885195023245 + 06/12 08:10:00,12.8,12.8,15.158819926820648 + 06/12 08:20:00,12.8,12.8,15.093567123572257 + 06/12 08:30:00,12.8,12.8,15.03957842719035 + 06/12 08:40:00,12.8,12.8,14.988643427983993 + 06/12 08:50:00,12.8,12.8,14.94059944074935 + 06/12 09:00:00,12.8,12.8,14.895444487363435 + 06/12 09:10:00,12.8,12.8,14.85247960641617 + 06/12 09:20:00,12.8,12.8,14.801125045341877 + 06/12 09:30:00,12.8,12.8,14.761959023722456 + 06/12 09:40:00,12.8,12.8,14.724633436048027 + 06/12 09:50:00,12.8,12.8,14.688963254451988 + 06/12 10:00:00,12.8,12.8,14.654950718976066 + 06/12 10:10:00,12.8,12.8,14.62355962518981 + 06/12 10:20:00,12.8,12.8,14.590111090136216 + 06/12 10:30:00,12.8,12.8,14.561402946388825 + 06/12 10:40:00,12.8,12.8,14.533927093836754 + 06/12 10:50:00,12.8,12.8,14.507598502087014 + 06/12 11:00:00,12.8,12.8,14.48246281368966 + 06/12 11:10:00,12.8,12.8,14.457842189056855 + 06/12 11:20:00,12.8,12.8,14.443938682242442 + 06/12 11:30:00,12.8,12.8,14.421559759905993 + 06/12 11:40:00,12.8,12.8,14.400244263878486 + 06/12 11:50:00,12.8,12.8,14.380483962190134 + 06/12 12:00:00,12.8,12.8,14.362230116258268 + 06/12 12:10:00,12.8,12.8,14.345826205779375 + 06/12 12:20:00,12.8,12.8,14.320696015902933 + 06/12 12:30:00,12.8,12.8,14.305789936355945 + 06/12 12:40:00,12.8,12.8,14.291497303032328 + 06/12 12:50:00,12.8,12.8,14.277411382906437 + 06/12 13:00:00,12.8,12.8,14.263526207242169 + 06/12 13:10:00,12.8,12.8,14.249979789388205 + 06/12 13:20:00,12.8,12.8,14.240773629254417 + 06/12 13:30:00,12.8,12.8,14.228848758433621 + 06/12 13:40:00,12.8,12.8,14.217491561908494 + 06/12 13:50:00,12.8,12.8,14.20651973677029 + 06/12 14:00:00,12.8,12.8,14.196486021532725 + 06/12 14:10:00,12.8,12.8,14.186079730335943 + 06/12 14:20:00,12.8,12.8,14.179197046487719 + 06/12 14:30:00,12.8,12.8,14.167436658436515 + 06/12 14:40:00,12.8,12.8,14.156373856907033 + 06/12 14:50:00,12.8,12.8,14.148670265449649 + 06/12 15:00:00,12.8,12.8,14.142885944920734 + 06/12 15:05:00,12.8,12.8,16.296575165388725 + 06/12 15:10:00,12.8,12.8,16.292599963515135 + 06/12 15:20:00,12.8,12.8,16.546140818986406 + 06/12 15:30:00,12.8,12.8,16.64886695067511 + 06/12 15:40:00,12.8,12.8,16.726547979050005 + 06/12 15:50:00,12.8,12.8,16.78783778612875 + 06/12 16:00:00,12.8,12.8,16.83699517080671 + 06/12 16:10:00,12.8,12.8,16.9057898477588 + 06/12 16:20:00,12.8,12.8,16.959123794855594 + 06/12 16:30:00,12.8,12.8,16.990210389868314 + 06/12 16:40:00,12.8,12.8,17.01807100671622 + 06/12 16:50:00,12.8,12.8,17.04413073244742 + 06/12 17:00:00,12.8,12.8,17.068909208871476 + 06/12 17:10:00,12.8,12.8,17.10587678062147 + 06/12 17:15:00,12.8,12.8,17.13557896055282 + 06/12 17:20:00,12.8,12.8,17.135182540516238 + 06/12 17:30:00,12.8,12.8,17.156877377548118 + 06/12 17:40:00,12.8,12.8,17.177663502956269 + 06/12 17:50:00,12.8,12.8,17.196546844085448 + 06/12 18:00:00,12.8,12.8,17.21395589277724 + 06/12 18:10:00,12.8,12.8,17.228974322718679 + 06/12 18:20:00,12.8,12.8,17.24332283382264 + 06/12 18:30:00,12.8,12.8,17.257343021956797 + 06/12 18:40:00,12.8,12.8,17.27135310984449 + 06/12 18:50:00,12.8,12.8,17.285573340901278 + 06/12 19:00:00,12.8,12.8,17.30002225583843 + 06/12 19:10:00,12.8,12.8,17.328350945439863 + 06/12 19:20:00,12.8,12.8,17.344669279785316 + 06/12 19:30:00,12.8,12.8,17.36059345521786 + 06/12 19:40:00,12.8,12.8,17.376444298527269 + 06/12 19:50:00,12.8,12.8,17.392162493164258 + 06/12 20:00:00,12.8,12.8,17.40770028696984 + 06/12 20:10:00,12.8,12.8,17.40015706301773 + 06/12 20:20:00,12.8,12.8,17.41808334177316 + 06/12 20:30:00,12.8,12.8,17.4309343090384 + 06/12 20:40:00,12.8,12.8,17.442832847285577 + 06/12 20:50:00,12.8,12.8,17.454050501422004 + 06/12 21:00:00,12.8,12.8,17.46463543761057 + 06/12 21:10:00,12.8,12.8,17.474514936244828 + 06/12 21:20:00,12.8,12.8,17.48393800334713 + 06/12 21:30:00,12.8,12.8,17.492851628004844 + 06/12 21:40:00,12.8,12.8,17.501378271819893 + 06/12 21:50:00,12.8,12.8,17.509530801857797 + 06/12 22:00:00,12.8,12.8,17.517460838519655 + 06/12 22:10:00,12.8,12.8,18.883014854953509 + 06/12 22:20:00,12.8,12.8,19.032340138331507 + 06/12 22:30:00,12.8,12.8,19.098978905564019 + 06/12 22:40:00,12.8,12.8,19.15282484260654 + 06/12 22:50:00,12.8,12.8,19.196573432573567 + 06/12 23:00:00,12.8,12.8,19.233945255750585 + 06/12 23:10:00,12.8,12.8,19.266598592521917 + 06/12 23:20:00,12.8,12.8,19.29522193256146 + 06/12 23:30:00,12.8,12.8,19.32083176203498 + 06/12 23:40:00,12.8,12.8,19.343909286991598 + 06/12 23:50:00,12.8,12.8,19.364847680280137 + 06/12 24:00:00,12.8,12.8,19.384182162386577 + 06/13 00:10:00,12.8,12.8,19.402017942913 + 06/13 00:20:00,12.8,12.8,19.418391863285537 + 06/13 00:30:00,12.8,12.8,19.43348953531807 + 06/13 00:40:00,12.8,12.8,19.447474155696115 + 06/13 00:50:00,12.8,12.8,19.46043347226371 + 06/13 01:00:00,12.8,12.8,19.472484346009204 + 06/13 01:10:00,12.8,12.8,19.48395430948717 + 06/13 01:20:00,12.8,12.8,19.495045870971148 + 06/13 01:30:00,12.8,12.8,19.50705804319518 + 06/13 01:40:00,12.8,12.8,19.517620909997079 + 06/13 01:50:00,12.8,12.8,19.52833335967216 + 06/13 02:00:00,12.8,12.8,19.538660847715918 + 06/13 02:10:00,12.8,12.8,19.548698397785594 + 06/13 02:20:00,12.8,12.8,19.558445668865056 + 06/13 02:30:00,12.8,12.8,19.56796571360351 + 06/13 02:40:00,12.8,12.8,19.577203806923014 + 06/13 02:50:00,12.8,12.8,19.586209902979375 + 06/13 03:00:00,12.8,12.8,19.594896368494419 + 06/13 03:10:00,12.8,12.8,19.60335171418381 + 06/13 03:20:00,12.8,12.8,19.611662443228075 + 06/13 03:30:00,12.8,12.8,19.619591440023407 + 06/13 03:40:00,12.8,12.8,19.627195279427935 + 06/13 03:50:00,12.8,12.8,19.634391982297016 + 06/13 04:00:00,12.8,12.8,19.641315025525559 + 06/13 04:10:00,12.8,12.8,19.648336797245514 + 06/13 04:20:00,12.8,12.8,19.655582284024086 + 06/13 04:30:00,12.8,12.8,19.662997508683167 + 06/13 04:40:00,12.8,12.8,19.67058225521852 + 06/13 04:50:00,12.85885885885886,12.85885885885886,19.67830649507436 + 06/13 05:00:00,12.926126126126127,12.926126126126127,19.686283591621707 + 06/13 05:10:00,12.951351351351353,12.951351351351353,19.694082993327464 + 06/13 05:20:00,12.976576576576577,12.976576576576577,19.701817271750185 + 06/13 05:30:00,13.001801801801803,13.001801801801803,19.70927330036804 + 06/13 05:40:00,13.027027027027028,13.027027027027028,19.716099190378704 + 06/13 05:50:00,13.052252252252253,13.052252252252253,19.722025829184845 + 06/13 06:00:00,13.077477477477478,13.077477477477478,19.7270446379878 + 06/13 06:10:00,12.984984984984987,12.984984984984987,17.738009407102326 + 06/13 06:20:00,12.892492492492494,12.892492492492494,17.489998430900874 + 06/13 06:30:00,12.8,12.8,17.400272095152788 + 06/13 06:40:00,12.8,12.8,17.327657848702477 + 06/13 06:50:00,12.8,12.8,17.270709314159057 + 06/13 07:00:00,12.8,12.8,17.221966574109346 + 06/13 07:05:00,12.8,12.8,15.725492200548392 + 06/13 07:10:00,12.8,12.8,15.73207862259305 + 06/13 07:15:00,12.8,12.8,15.497977149174857 + 06/13 07:20:00,12.8,12.8,15.496228048972636 + 06/13 07:30:00,12.8,12.8,15.386493977691668 + 06/13 07:40:00,12.8,12.8,15.296230433510456 + 06/13 07:50:00,12.8,12.8,15.217906133888402 + 06/13 08:00:00,12.8,12.8,15.149216530767634 + 06/13 08:03:19,12.8,12.8,15.06236812556373 + 06/13 08:06:40,12.8,12.8,15.061998516535667 + 06/13 08:10:00,12.8,12.8,15.061924561536899 + 06/13 08:20:00,12.8,12.8,14.996519830305065 + 06/13 08:30:00,12.8,12.8,14.943846983650494 + 06/13 08:40:00,12.8,12.8,14.89472978126198 + 06/13 08:50:00,12.8,12.8,14.8486860034343 + 06/13 09:00:00,12.8,12.8,14.805419783862197 + 06/13 09:10:00,12.8,12.8,14.764145473757495 + 06/13 09:20:00,12.8,12.8,14.714429422234259 + 06/13 09:30:00,12.8,12.8,14.676964018326636 + 06/13 09:40:00,12.8,12.8,14.641343593153998 + 06/13 09:50:00,12.8,12.8,14.607305553952193 + 06/13 10:00:00,12.8,12.8,14.574809472490904 + 06/13 10:10:00,12.8,12.8,14.543883496863156 + 06/13 10:20:00,12.8,12.8,14.510831325178874 + 06/13 10:30:00,12.8,12.8,14.482536350631323 + 06/13 10:40:00,12.8,12.8,14.455533398799539 + 06/13 10:50:00,12.8,12.8,14.429815593325833 + 06/13 11:00:00,12.8,12.8,14.405194000479462 + 06/13 11:10:00,12.8,12.8,14.381824269255552 + 06/13 11:20:00,12.8,12.8,14.369332690737638 + 06/13 11:30:00,12.8,12.8,14.348415270859457 + 06/13 11:40:00,12.8,12.8,14.32860429600015 + 06/13 11:50:00,12.8,12.8,14.310280646740713 + 06/13 12:00:00,12.8,12.8,14.293328114995145 + 06/13 12:10:00,12.8,12.8,14.277959788825815 + 06/13 12:20:00,12.8,12.8,14.2537225491924 + 06/13 12:30:00,12.8,12.8,14.239589907547709 + 06/13 12:40:00,12.8,12.8,14.226253075062158 + 06/13 12:50:00,12.8,12.8,14.213310100740467 + 06/13 13:00:00,12.8,12.8,14.200861969253188 + 06/13 13:10:00,12.8,12.8,14.188927256201776 + 06/13 13:20:00,12.8,12.8,14.1812555623289 + 06/13 13:30:00,12.8,12.8,14.170912162283111 + 06/13 13:40:00,12.8,12.8,14.16195308713147 + 06/13 13:50:00,12.8,12.8,14.15540636677662 + 06/13 14:00:00,12.8,12.8,14.151810918674175 + 06/13 14:10:00,12.8,12.8,14.151075441057662 + 06/13 14:20:00,12.8,12.8,14.155576721289429 + 06/13 14:30:00,12.8,12.8,14.15749873706125 + 06/13 14:40:00,12.8,12.8,14.157180940908349 + 06/13 14:50:00,12.8,12.8,14.157009502810292 + 06/13 15:00:00,12.8,12.8,14.15412492368282 + 06/13 15:10:00,12.8,12.8,16.297678082536593 + 06/13 15:20:00,12.8,12.8,16.546280381529166 + 06/13 15:30:00,12.8,12.8,16.639448704258194 + 06/13 15:40:00,12.8,12.8,16.7116546155983 + 06/13 15:50:00,12.8,12.8,16.76864849265147 + 06/13 16:00:00,12.8,12.8,16.817572640090803 + 06/13 16:10:00,12.8,12.8,16.886955020674625 + 06/13 16:20:00,12.8,12.8,16.943697964092789 + 06/13 16:30:00,12.8,12.8,16.97771783485852 + 06/13 16:40:00,12.8,12.8,17.007937040185234 + 06/13 16:50:00,12.8,12.8,17.034696106904958 + 06/13 17:00:00,12.8,12.8,17.05807963427024 + 06/13 17:10:00,12.8,12.8,17.090948214192755 + 06/13 17:15:00,12.8,12.8,17.115664872622859 + 06/13 17:20:00,12.8,12.8,17.115314732206064 + 06/13 17:30:00,12.8,12.8,17.13262270369643 + 06/13 17:40:00,12.8,12.8,17.149989206215158 + 06/13 17:50:00,12.8,12.8,17.167053512677826 + 06/13 18:00:00,12.8,12.8,17.18429592169916 + 06/13 18:10:00,12.8,12.8,17.205041960586276 + 06/13 18:20:00,12.8,12.8,17.221343880501594 + 06/13 18:30:00,12.8,12.8,17.239621335025029 + 06/13 18:40:00,12.8,12.8,17.256543025169596 + 06/13 18:50:00,12.8,12.8,17.273356075838483 + 06/13 19:00:00,12.8,12.8,17.289575426253586 + 06/13 19:10:00,12.8,12.8,17.31754975825953 + 06/13 19:20:00,12.8,12.8,17.332910547387276 + 06/13 19:30:00,12.8,12.8,17.347302609233087 + 06/13 19:40:00,12.8,12.8,17.36117776572432 + 06/13 19:50:00,12.8,12.8,17.37463162189377 + 06/13 20:00:00,12.8,12.8,17.38773703679019 + 06/13 20:10:00,12.8,12.8,17.37789923583415 + 06/13 20:20:00,12.8,12.8,17.39372988764392 + 06/13 20:30:00,12.8,12.8,17.404662319917095 + 06/13 20:40:00,12.8,12.8,17.414746758078285 + 06/13 20:50:00,12.8,12.8,17.424325840803449 + 06/13 21:00:00,12.8,12.8,17.433396627815683 + 06/13 21:10:00,12.8,12.8,17.442170675450986 + 06/13 21:20:00,12.8,12.8,17.450133271019149 + 06/13 21:30:00,12.8,12.8,17.457424843167556 + 06/13 21:40:00,12.8,12.8,17.464105551016507 + 06/13 21:50:00,12.8,12.8,17.470181798278639 + 06/13 22:00:00,12.8,12.8,17.47570854624952 + 06/13 22:10:00,12.8,12.8,18.838989409618415 + 06/13 22:15:00,12.8,12.8,18.986940804607323 + 06/13 22:20:00,12.8,12.8,18.985907720561209 + 06/13 22:30:00,12.8,12.8,19.050609208781269 + 06/13 22:40:00,12.8,12.8,19.102744482996774 + 06/13 22:50:00,12.8,12.8,19.144762935573316 + 06/13 23:00:00,12.8,12.8,19.18110810524393 + 06/13 23:10:00,12.8,12.8,19.212862472680408 + 06/13 23:20:00,12.8,12.8,19.24099663235169 + 06/13 23:30:00,12.8,12.8,19.266815386388516 + 06/13 23:40:00,12.8,12.8,19.290383828549797 + 06/13 23:50:00,12.8,12.8,19.312321249735569 + 06/13 24:00:00,12.8,12.8,19.332742649063755 + 06/14 00:10:00,12.8,12.8,19.351745642874464 + 06/14 00:20:00,12.8,12.8,19.369735489944856 + 06/14 00:30:00,12.8,12.8,19.38681490400961 + 06/14 00:40:00,12.8,12.8,19.403058517790926 + 06/14 00:50:00,12.8,12.8,19.418477618784345 + 06/14 01:00:00,12.8,12.8,19.427832602525183 + 06/14 01:10:00,12.8,12.8,19.445237458649126 + 06/14 01:20:00,12.8,12.8,19.45759438806008 + 06/14 01:30:00,12.8,12.8,19.472122968470026 + 06/14 01:40:00,12.8,12.8,19.485344650219269 + 06/14 01:50:00,12.8,12.8,19.498287859549064 + 06/14 02:00:00,12.8,12.8,19.510937505303969 + 06/14 02:10:00,12.8,12.8,19.52249270139707 + 06/14 02:20:00,12.8,12.8,19.534722152482219 + 06/14 02:30:00,12.8,12.8,19.546050980339687 + 06/14 02:40:00,12.8,12.8,19.556947776715263 + 06/14 02:50:00,12.8,12.8,19.567257448960736 + 06/14 03:00:00,12.8,12.8,19.57699984958233 + 06/14 03:10:00,12.8,12.8,19.586250547314245 + 06/14 03:20:00,12.8,12.8,19.594934327015304 + 06/14 03:30:00,12.8,12.8,19.60333671626201 + 06/14 03:40:00,12.8,12.8,19.611584708753968 + 06/14 03:50:00,12.8,12.8,19.61965169630411 + 06/14 04:00:00,12.8,12.8,19.62753020419009 + 06/14 04:10:00,12.8,12.8,19.635270587072204 + 06/14 04:20:00,12.8,12.8,19.64207431661981 + 06/14 04:30:00,12.8,12.8,19.648448902577156 + 06/14 04:40:00,12.8,12.8,19.654228648492049 + 06/14 04:50:00,12.8,12.8,19.659519878052813 + 06/14 05:00:00,12.8,12.8,19.66435061995893 + 06/14 05:10:00,12.8,12.8,19.668883179234837 + 06/14 05:20:00,12.8,12.8,19.673341735383596 + 06/14 05:30:00,12.8,12.8,19.67781342311695 + 06/14 05:40:00,12.8,12.8,19.681989780321865 + 06/14 05:50:00,12.8,12.8,19.685702032465959 + 06/14 06:00:00,12.8,12.8,19.688865001660476 + 06/14 06:10:00,12.8,12.8,17.698819563650237 + 06/14 06:20:00,12.8,12.8,17.444386870510838 + 06/14 06:30:00,12.8,12.8,17.355595931232235 + 06/14 06:40:00,12.8,12.8,17.284068314434835 + 06/14 06:50:00,12.8,12.8,17.230430154028725 + 06/14 07:00:00,12.8,12.8,17.185957808039857 + 06/14 07:05:00,12.8,12.8,15.694375304494717 + 06/14 07:10:00,12.8,12.8,15.70095991885668 + 06/14 07:15:00,12.8,12.8,15.473848382135163 + 06/14 07:20:00,12.8,12.8,15.472119298631656 + 06/14 07:30:00,12.8,12.8,15.370372844283839 + 06/14 07:40:00,12.8,12.8,15.288714996464649 + 06/14 07:50:00,12.8,12.8,15.21902506872068 + 06/14 08:00:00,12.8,12.8,15.158662110185164 + 06/14 08:03:19,12.8,12.8,15.0792015805559 + 06/14 08:06:40,12.8,12.8,15.078802599360309 + 06/14 08:10:00,12.8,12.8,15.078785063795229 + 06/14 08:20:00,12.8,12.8,15.020157750927734 + 06/14 08:30:00,12.8,12.8,14.973855252281125 + 06/14 08:40:00,12.8,12.8,14.930858390222568 + 06/14 08:50:00,12.8,12.8,14.891135007950434 + 06/14 09:00:00,12.8,12.8,14.85433821131766 + 06/14 09:10:00,12.8,12.8,14.820320023129526 + 06/14 09:20:00,12.8,12.8,14.777969383062054 + 06/14 09:30:00,12.8,12.8,14.747851048209882 + 06/14 09:40:00,12.8,12.8,14.719214993131415 + 06/14 09:50:00,12.8,12.8,14.691329075724167 + 06/14 10:00:00,12.8,12.8,14.66398102191511 + 06/14 10:10:00,12.8,12.8,14.636931286413987 + 06/14 10:20:00,12.8,12.8,14.606530946117715 + 06/14 10:30:00,12.8,12.8,14.579527736039644 + 06/14 10:40:00,12.8,12.8,14.552268633403877 + 06/14 10:50:00,12.8,12.8,14.524190661410178 + 06/14 11:00:00,12.8,12.8,14.494683173815153 + 06/14 11:10:00,12.8,12.8,14.463362030224124 + 06/14 11:20:00,12.8,12.8,14.44268703192825 + 06/14 11:30:00,12.8,12.8,14.413895392097686 + 06/14 11:40:00,12.8,12.8,14.38744371773786 + 06/14 11:50:00,12.8,12.8,14.365400065428459 + 06/14 12:00:00,12.8,12.8,14.347875983329879 + 06/14 12:10:00,12.8,12.8,14.335156514331298 + 06/14 12:20:00,12.8,12.8,14.315484178237279 + 06/14 12:30:00,12.8,12.8,14.30729781533244 + 06/14 12:40:00,12.8,12.8,14.300571012289977 + 06/14 12:50:00,12.8,12.8,14.29447592418105 + 06/14 13:00:00,12.8,12.8,14.288780864650287 + 06/14 13:10:00,12.8,12.8,14.283237471608974 + 06/14 13:20:00,12.8,12.8,14.28164266256321 + 06/14 13:30:00,12.8,12.8,14.276998432522716 + 06/14 13:40:00,12.8,12.8,14.272565796028138 + 06/14 13:50:00,12.8,12.8,14.268136197842976 + 06/14 14:00:00,12.8,12.8,14.263731396104742 + 06/14 14:10:00,12.8,12.8,14.259900339617879 + 06/14 14:20:00,12.8,12.8,14.25963538476231 + 06/14 14:30:00,12.8,12.8,14.256253597678532 + 06/14 14:40:00,12.8,12.8,14.250020823937613 + 06/14 14:50:00,12.8,12.8,14.246324091092806 + 06/14 15:00:00,12.8,12.8,14.24318733767042 + 06/14 15:05:00,12.8,12.8,16.39856431945104 + 06/14 15:10:00,12.8,12.8,16.394466116698717 + 06/14 15:20:00,12.8,12.8,16.64671355234219 + 06/14 15:30:00,12.8,12.8,16.748386631537316 + 06/14 15:40:00,12.8,12.8,16.824680126418728 + 06/14 15:50:00,12.8,12.8,16.885180728650434 + 06/14 16:00:00,12.8,12.8,16.93186720609662 + 06/14 16:10:00,12.8,12.8,16.99540910617194 + 06/14 16:20:00,12.8,12.8,17.046775521560819 + 06/14 16:30:00,12.8,12.8,17.074894845165845 + 06/14 16:40:00,12.8,12.8,17.099854066307356 + 06/14 16:50:00,12.8,12.8,17.122359216183349 + 06/14 17:00:00,12.8,12.8,17.14282245628369 + 06/14 17:10:00,12.8,12.8,17.17612064450477 + 06/14 17:15:00,12.8,12.8,17.20171024541429 + 06/14 17:20:00,12.8,12.8,17.20132524636308 + 06/14 17:30:00,12.8,12.8,17.21903411346708 + 06/14 17:40:00,12.8,12.8,17.236321053906253 + 06/14 17:50:00,12.8,12.8,17.252579991752577 + 06/14 18:00:00,12.8,12.8,17.269163875086759 + 06/14 18:10:00,12.8,12.8,17.28244173566105 + 06/14 18:20:00,12.8,12.8,17.2965556478954 + 06/14 18:30:00,12.8,12.8,17.310846746658979 + 06/14 18:40:00,12.8,12.8,17.323510827083255 + 06/14 18:50:00,12.8,12.8,17.33710003650062 + 06/14 19:00:00,12.8,12.8,17.351077127927206 + 06/14 19:10:00,12.8,12.8,17.376619447975398 + 06/14 19:20:00,12.8,12.8,17.390579765780897 + 06/14 19:30:00,12.8,12.8,17.404022217535137 + 06/14 19:40:00,12.8,12.8,17.415268153826696 + 06/14 19:50:00,12.8,12.8,17.426935186475306 + 06/14 20:00:00,12.8,12.8,17.437656627628877 + 06/14 20:10:00,12.8,12.8,17.425225508707464 + 06/14 20:20:00,12.8,12.8,17.43862921905843 + 06/14 20:30:00,12.8,12.8,17.4474235613277 + 06/14 20:40:00,12.8,12.8,17.45571406599111 + 06/14 20:50:00,12.8,12.8,17.463723309261466 + 06/14 21:00:00,12.8,12.8,17.47140917953901 + 06/14 21:10:00,12.8,12.8,17.47907290333022 + 06/14 21:20:00,12.8,12.8,17.486490975880089 + 06/14 21:30:00,12.8,12.8,17.49377739588457 + 06/14 21:40:00,12.8,12.8,17.500922289578747 + 06/14 21:50:00,12.8,12.8,17.5078856033729 + 06/14 22:00:00,12.8,12.8,17.514810955461337 + 06/14 22:10:00,12.8,12.8,18.879608966653949 + 06/14 22:20:00,12.8,12.8,19.026743341639344 + 06/14 22:30:00,12.8,12.8,19.09210647550632 + 06/14 22:40:00,12.8,12.8,19.14442168303443 + 06/14 22:50:00,12.8,12.8,19.187014050368018 + 06/14 23:00:00,12.8,12.8,19.223201886962444 + 06/14 23:10:00,12.8,12.8,19.254618705951978 + 06/14 23:20:00,12.8,12.8,19.28256187164456 + 06/14 23:30:00,12.8,12.8,19.305935538934258 + 06/14 23:40:00,12.8,12.8,19.32793118203865 + 06/14 23:50:00,12.8,12.8,19.347854360390604 + 06/14 24:00:00,12.8,12.8,19.366504912706327 + 06/15 00:10:00,12.8,12.8,19.3838185500612 + 06/15 00:20:00,12.8,12.8,19.400798988145824 + 06/15 00:30:00,12.8,12.8,19.41655316964506 + 06/15 00:40:00,12.8,12.8,19.431488446402918 + 06/15 00:50:00,12.8,12.8,19.44546026444297 + 06/15 01:00:00,12.8,12.8,19.45860799787795 + 06/15 01:10:00,12.8,12.8,19.471144572328165 + 06/15 01:20:00,12.8,12.8,19.48244854297171 + 06/15 01:30:00,12.8,12.8,19.49357932690622 + 06/15 01:40:00,12.8,12.8,19.50430017864284 + 06/15 01:50:00,12.8,12.8,19.514818309601794 + 06/15 02:00:00,12.8,12.8,19.525092753958857 + 06/15 02:10:00,12.8,12.8,19.535054871207686 + 06/15 02:20:00,12.8,12.8,19.546098885478039 + 06/15 02:30:00,12.8,12.8,19.55654226954171 + 06/15 02:40:00,12.8,12.8,19.5667291908142 + 06/15 02:50:00,12.8,12.8,19.576386057751937 + 06/15 03:00:00,12.8,12.8,19.58551044425084 + 06/15 03:10:00,12.8,12.8,19.594512096474369 + 06/15 03:20:00,12.8,12.8,19.602224936054897 + 06/15 03:30:00,12.8,12.8,19.609761647868156 + 06/15 03:40:00,12.8,12.8,19.61690094691081 + 06/15 03:50:00,12.8,12.8,19.623812120918708 + 06/15 04:00:00,12.8,12.8,19.630563540166436 + 06/15 04:10:00,12.8,12.8,19.637197480565776 + 06/15 04:20:00,12.8,12.8,19.643198166499375 + 06/15 04:30:00,12.8,12.8,19.649076544345509 + 06/15 04:40:00,12.8,12.8,19.654689595586935 + 06/15 04:50:00,12.8,12.8,19.660161743098194 + 06/15 05:00:00,12.8,12.8,19.66556446548893 + 06/15 05:10:00,12.8,12.8,19.6705705401704 + 06/15 05:20:00,12.8,12.8,19.675881847716796 + 06/15 05:30:00,12.8,12.8,19.68101540959919 + 06/15 05:40:00,12.8,12.8,19.68573722560308 + 06/15 05:50:00,12.8,12.8,19.689667263806439 + 06/15 06:00:00,12.8,12.8,19.692890026511035 + 06/15 06:10:00,12.8,12.8,17.698629650803466 + 06/15 06:20:00,12.8,12.8,17.45963328187596 + 06/15 06:30:00,12.8,12.8,17.369800678483274 + 06/15 06:40:00,12.8,12.8,17.299934165094986 + 06/15 06:50:00,12.8,12.8,17.244523641162997 + 06/15 07:00:00,12.8,12.8,17.198352405738946 + 06/15 07:05:00,12.8,12.8,15.705343655383356 + 06/15 07:10:00,12.8,12.8,15.71190717364715 + 06/15 07:15:00,12.8,12.8,15.483108799329154 + 06/15 07:20:00,12.8,12.8,15.481332558582075 + 06/15 07:30:00,12.8,12.8,15.377826840169936 + 06/15 07:40:00,12.8,12.8,15.294726919509508 + 06/15 07:50:00,12.8,12.8,15.22458581795129 + 06/15 07:55:00,12.8,12.8,15.165090358517285 + 06/15 08:00:00,12.8,12.8,15.165290027837502 + 06/15 08:03:19,12.8,12.8,15.087393556212284 + 06/15 08:06:40,12.8,12.8,15.087132909319225 + 06/15 08:10:00,12.8,12.8,15.087029548504589 + 06/15 08:20:00,12.8,12.8,15.031017781935248 + 06/15 08:30:00,12.8,12.8,14.987514056969669 + 06/15 08:40:00,12.8,12.8,14.947352122782517 + 06/15 08:50:00,12.8,12.8,14.910059793649819 + 06/15 09:00:00,12.8,12.8,14.875357188184136 + 06/15 09:10:00,12.8,12.8,14.843340976099054 + 06/15 09:20:00,12.8,12.8,14.803150654599133 + 06/15 09:30:00,12.8,12.8,14.77553580239023 + 06/15 09:40:00,12.8,12.8,14.749504742007125 + 06/15 09:50:00,12.8,12.8,14.72384991414167 + 06/15 10:00:00,12.8,12.8,14.698156433120622 + 06/15 10:10:00,12.8,12.8,14.671995833160646 + 06/15 10:20:00,12.8,12.8,14.642127386856043 + 06/15 10:30:00,12.8,12.8,14.615550127796709 + 06/15 10:40:00,12.8,12.8,14.590012247751105 + 06/15 10:50:00,12.8,12.8,14.567231113178116 + 06/15 11:00:00,12.8,12.8,14.54778354164101 + 06/15 11:10:00,12.8,12.8,14.531587387800008 + 06/15 11:20:00,12.8,12.8,14.527498579541632 + 06/15 11:30:00,12.8,12.8,14.515857863845439 + 06/15 11:40:00,12.8,12.8,14.50522993767829 + 06/15 11:50:00,12.8,12.8,14.494593124319535 + 06/15 12:00:00,12.8,12.8,14.483361019952339 + 06/15 12:10:00,12.8,12.8,14.471733868284363 + 06/15 12:20:00,12.8,12.8,14.450344498492833 + 06/15 12:30:00,12.8,12.8,14.438575007441257 + 06/15 12:40:00,12.8,12.8,14.427175131146726 + 06/15 12:50:00,12.8,12.8,14.415957549606145 + 06/15 13:00:00,12.8,12.8,14.405050336585644 + 06/15 13:10:00,12.8,12.8,14.394639190296833 + 06/15 13:20:00,12.8,12.8,14.387978819257027 + 06/15 13:30:00,12.8,12.8,14.377981275463999 + 06/15 13:40:00,12.8,12.8,14.368181217243464 + 06/15 13:50:00,12.8,12.8,14.358752371955364 + 06/15 14:00:00,12.8,12.8,14.349737194009413 + 06/15 14:10:00,12.8,12.8,14.342180763418585 + 06/15 14:20:00,12.8,12.8,14.33851643969209 + 06/15 14:30:00,12.8,12.8,14.331792096037333 + 06/15 14:40:00,12.8,12.8,14.32340263224781 + 06/15 14:50:00,12.8,12.8,14.316164234619212 + 06/15 15:00:00,12.8,12.8,14.31069529333435 + 06/15 15:05:00,12.8,12.8,16.462704920716548 + 06/15 15:10:00,12.8,12.8,16.458316287985526 + 06/15 15:15:00,12.8,12.8,16.71638078882625 + 06/15 15:20:00,12.8,12.8,16.71367000943872 + 06/15 15:30:00,12.8,12.8,16.811559664573794 + 06/15 15:40:00,12.8,12.8,16.88599363820459 + 06/15 15:50:00,12.8,12.8,16.943291780393549 + 06/15 16:00:00,12.8,12.8,16.989101498999074 + 06/15 16:10:00,12.8,12.8,17.05342211280799 + 06/15 16:20:00,12.8,12.8,17.10630798725939 + 06/15 16:30:00,12.8,12.8,17.135489377022535 + 06/15 16:40:00,12.8,12.8,17.161275888782514 + 06/15 16:50:00,12.8,12.8,17.184549939873358 + 06/15 17:00:00,12.8,12.8,17.205668317836524 + 06/15 17:10:00,12.8,12.8,17.238258339600585 + 06/15 17:15:00,12.8,12.8,17.263355097891073 + 06/15 17:20:00,12.8,12.8,17.262961102973109 + 06/15 17:30:00,12.8,12.8,17.280308385109117 + 06/15 17:40:00,12.8,12.8,17.297308986299254 + 06/15 17:50:00,12.8,12.8,17.313192095990563 + 06/15 18:00:00,12.8,12.8,17.32841689090323 + 06/15 18:10:00,12.8,12.8,17.34324713046798 + 06/15 18:20:00,12.8,12.8,17.35755375216477 + 06/15 18:30:00,12.8,12.8,17.371440959905667 + 06/15 18:40:00,12.8,12.8,17.385105696178898 + 06/15 18:50:00,12.8,12.8,17.398985020800909 + 06/15 19:00:00,12.8,12.8,17.41298661983387 + 06/15 19:10:00,12.8,12.8,17.439914443915197 + 06/15 19:20:00,12.8,12.8,17.45445862978655 + 06/15 19:30:00,12.8,12.8,17.468144996975238 + 06/15 19:40:00,12.8,12.8,17.48123635220903 + 06/15 19:50:00,12.8,12.8,17.49346992618262 + 06/15 20:00:00,12.8,12.8,17.504689011720794 + 06/15 20:10:00,12.8,12.8,17.492815260531168 + 06/15 20:20:00,12.8,12.8,17.506715112252125 + 06/15 20:30:00,12.8,12.8,17.515923821724536 + 06/15 20:40:00,12.8,12.8,17.52455579788785 + 06/15 20:50:00,12.8,12.8,17.532812561221808 + 06/15 21:00:00,12.8,12.8,17.54067643724367 + 06/15 21:10:00,12.8,12.8,17.548280121785298 + 06/15 21:20:00,12.8,12.8,17.555466974376566 + 06/15 21:30:00,12.8,12.8,17.56243245031882 + 06/15 21:40:00,12.8,12.8,17.56920676651651 + 06/15 21:50:00,12.8,12.8,17.57577283280684 + 06/15 22:00:00,12.8,12.8,17.582148580842543 + 06/15 22:10:00,12.8,12.8,18.94512958924601 + 06/15 22:20:00,12.8,12.8,19.091498549057517 + 06/15 22:30:00,12.8,12.8,19.156208755673999 + 06/15 22:40:00,12.8,12.8,19.208103218517047 + 06/15 22:50:00,12.8,12.8,19.25008110143552 + 06/15 23:00:00,12.8,12.8,19.28558549144206 + 06/15 23:10:00,12.8,12.8,19.31621874174459 + 06/15 23:20:00,12.8,12.8,19.342239881267387 + 06/15 23:30:00,12.8,12.8,19.366288320994096 + 06/15 23:40:00,12.8,12.8,19.38771052308558 + 06/15 23:50:00,12.8,12.8,19.40752548286264 + 06/15 24:00:00,12.8,12.8,19.42573222265418 + 06/16 00:10:00,12.8,12.8,19.442543264214195 + 06/16 00:20:00,12.8,12.8,19.458307728299468 + 06/16 00:30:00,12.8,12.8,19.473184477634207 + 06/16 00:40:00,12.8,12.8,19.48728831077047 + 06/16 00:50:00,12.8,12.8,19.500623435117278 + 06/16 01:00:00,12.8,12.8,19.513411707103 + 06/16 01:10:00,12.8,12.8,19.526103105361999 + 06/16 01:20:00,12.8,12.8,19.538235112366878 + 06/16 01:30:00,12.8,12.8,19.549854941630458 + 06/16 01:40:00,12.8,12.8,19.560929186442203 + 06/16 01:50:00,12.8,12.8,19.57157440686055 + 06/16 02:00:00,12.8,12.8,19.581847687084545 + 06/16 02:10:00,12.8,12.8,19.59119782835393 + 06/16 02:20:00,12.8,12.8,19.600893041847085 + 06/16 02:30:00,12.8,12.8,19.60930163034346 + 06/16 02:40:00,12.8,12.8,19.617561064196715 + 06/16 02:50:00,12.8,12.8,19.625436890236946 + 06/16 03:00:00,12.8,12.8,19.63309215569985 + 06/16 03:10:00,12.821021021021022,12.821021021021022,19.640894531612334 + 06/16 03:20:00,12.842042042042042,12.842042042042042,19.64848236141439 + 06/16 03:30:00,12.863063063063063,12.863063063063063,19.65582992168445 + 06/16 03:40:00,12.884084084084084,12.884084084084084,19.663108139155363 + 06/16 03:50:00,12.905105105105106,12.905105105105106,19.670237138195089 + 06/16 04:00:00,12.926126126126127,12.926126126126127,19.67721930265207 + 06/16 04:10:00,12.926126126126127,12.926126126126127,19.684095063176149 + 06/16 04:20:00,12.926126126126127,12.926126126126127,19.69109275470423 + 06/16 04:30:00,12.926126126126127,12.926126126126127,19.69847633866044 + 06/16 04:40:00,12.926126126126127,12.926126126126127,19.706170309243185 + 06/16 04:50:00,12.926126126126127,12.926126126126127,19.7141907260989 + 06/16 05:00:00,12.926126126126127,12.926126126126127,19.722375110840408 + 06/16 05:10:00,12.905105105105106,12.905105105105106,19.730730981944427 + 06/16 05:20:00,12.884084084084084,12.884084084084084,19.738709014793149 + 06/16 05:30:00,12.863063063063063,12.863063063063063,19.746154323441485 + 06/16 05:40:00,12.842042042042042,12.842042042042042,19.752752985755355 + 06/16 05:50:00,12.821021021021022,12.821021021021022,19.758248466527044 + 06/16 06:00:00,12.8,12.8,19.762834902824684 + 06/16 06:10:00,12.8,12.8,17.775886978181675 + 06/16 06:20:00,12.8,12.8,17.522461757433285 + 06/16 06:30:00,12.8,12.8,17.43338624638924 + 06/16 06:40:00,12.8,12.8,17.360636510087024 + 06/16 06:50:00,12.8,12.8,17.304627253445127 + 06/16 07:00:00,12.8,12.8,17.256550888471577 + 06/16 07:05:00,12.8,12.8,15.762068168261886 + 06/16 07:10:00,12.8,12.8,15.768640361507135 + 06/16 07:15:00,12.8,12.8,15.537101841314748 + 06/16 07:20:00,12.8,12.8,15.535346875990295 + 06/16 07:30:00,12.8,12.8,15.429088347942744 + 06/16 07:40:00,12.8,12.8,15.343177057750222 + 06/16 07:50:00,12.8,12.8,15.26942733171 + 06/16 08:00:00,12.8,12.8,15.20515846533878 + 06/16 08:03:19,12.8,12.8,15.122037069227773 + 06/16 08:06:40,12.8,12.8,15.121638844633419 + 06/16 08:10:00,12.8,12.8,15.121614341691894 + 06/16 08:20:00,12.8,12.8,15.059227213444299 + 06/16 08:30:00,12.8,12.8,15.008857599933732 + 06/16 08:40:00,12.8,12.8,14.961557525760558 + 06/16 08:50:00,12.8,12.8,14.9172056792765 + 06/16 09:00:00,12.8,12.8,14.87567687047851 + 06/16 09:10:00,12.8,12.8,14.836701329719327 + 06/16 09:20:00,12.8,12.8,14.789351565146138 + 06/16 09:30:00,12.8,12.8,14.754236356669102 + 06/16 09:40:00,12.8,12.8,14.72170943043856 + 06/16 09:50:00,12.8,12.8,14.69285525130988 + 06/16 10:00:00,12.8,12.8,14.6679431916918 + 06/16 10:10:00,12.8,12.8,14.646505023195998 + 06/16 10:20:00,12.8,12.8,14.624474137858904 + 06/16 10:30:00,12.8,12.8,14.60808397319841 + 06/16 10:40:00,12.8,12.8,14.593039197901936 + 06/16 10:50:00,12.8,12.8,14.578088544160524 + 06/16 11:00:00,12.8,12.8,14.562746797748849 + 06/16 11:10:00,12.8,12.8,14.546855128592553 + 06/16 11:20:00,12.8,12.8,14.541285499954347 + 06/16 11:30:00,12.8,12.8,14.527202092725743 + 06/16 11:40:00,12.8,12.8,14.513014884592389 + 06/16 11:50:00,12.8,12.8,14.49735628364882 + 06/16 12:00:00,12.8,12.8,14.479462163894186 + 06/16 12:10:00,12.8,12.8,14.45932580404073 + 06/16 12:20:00,12.8,12.8,14.427916874413639 + 06/16 12:30:00,12.8,12.8,14.404615378551594 + 06/16 12:40:00,12.8,12.8,14.381938939020321 + 06/16 12:50:00,12.8,12.8,14.361982941189499 + 06/16 13:00:00,12.8,12.8,14.345532483672177 + 06/16 13:10:00,12.8,12.8,14.333496589780541 + 06/16 13:20:00,12.8,12.8,14.327454856569027 + 06/16 13:30:00,12.8,12.8,14.319930345026983 + 06/16 13:40:00,12.8,12.8,14.313622948849483 + 06/16 13:50:00,12.8,12.8,14.30776350185386 + 06/16 14:00:00,12.8,12.8,14.301952820862624 + 06/16 14:10:00,12.8,12.8,14.296658984457127 + 06/16 14:20:00,12.8,12.8,14.29518271263845 + 06/16 14:30:00,12.8,12.8,14.2902969503559 + 06/16 14:40:00,12.8,12.8,14.284370627120837 + 06/16 14:50:00,12.8,12.8,14.277153281502369 + 06/16 15:00:00,12.8,12.8,14.272109800222408 + 06/16 15:10:00,12.8,12.8,16.41467464292984 + 06/16 15:20:00,12.8,12.8,16.66762436679638 + 06/16 15:30:00,12.8,12.8,16.76201715809298 + 06/16 15:40:00,12.8,12.8,16.835011159939179 + 06/16 15:50:00,12.8,12.8,16.891661910817335 + 06/16 16:00:00,12.8,12.8,16.937405770587007 + 06/16 16:10:00,12.8,12.8,17.001153524414325 + 06/16 16:20:00,12.8,12.8,17.05247255286011 + 06/16 16:30:00,12.8,12.8,17.080746172797864 + 06/16 16:40:00,12.8,12.8,17.105974051061165 + 06/16 16:50:00,12.8,12.8,17.129009150337994 + 06/16 17:00:00,12.8,12.8,17.150029899163426 + 06/16 17:10:00,12.8,12.8,17.182139483951479 + 06/16 17:15:00,12.8,12.8,17.206617001439726 + 06/16 17:20:00,12.8,12.8,17.206260218246855 + 06/16 17:30:00,12.8,12.8,17.22293413480277 + 06/16 17:40:00,12.8,12.8,17.239544270899676 + 06/16 17:50:00,12.8,12.8,17.255946835726367 + 06/16 18:00:00,12.8,12.8,17.273055267438289 + 06/16 18:10:00,12.8,12.8,17.290420276545306 + 06/16 18:20:00,12.8,12.8,17.30813304984097 + 06/16 18:30:00,12.8,12.8,17.32618913863229 + 06/16 18:40:00,12.8,12.8,17.344217601839718 + 06/16 18:50:00,12.8,12.8,17.36162010721557 + 06/16 19:00:00,12.8,12.8,17.378223663172876 + 06/16 19:10:00,12.8,12.8,17.40675167868568 + 06/16 19:20:00,12.8,12.8,17.422066654672137 + 06/16 19:30:00,12.8,12.8,17.4359001365865 + 06/16 19:40:00,12.8,12.8,17.448797205786929 + 06/16 19:50:00,12.8,12.8,17.46091781334544 + 06/16 20:00:00,12.8,12.8,17.472394906104328 + 06/16 20:10:00,12.8,12.8,17.46082085957183 + 06/16 20:20:00,12.8,12.8,17.475040673728026 + 06/16 20:30:00,12.8,12.8,17.484542846604449 + 06/16 20:40:00,12.8,12.8,17.493434685991234 + 06/16 20:50:00,12.8,12.8,17.50192229401584 + 06/16 21:00:00,12.8,12.8,17.50998667811698 + 06/16 21:10:00,12.8,12.8,17.517764797304794 + 06/16 21:20:00,12.8,12.8,17.52513757758961 + 06/16 21:30:00,12.8,12.8,17.53227213093097 + 06/16 21:40:00,12.8,12.8,17.53915673476407 + 06/16 21:50:00,12.8,12.8,17.54577236678186 + 06/16 22:00:00,12.8,12.8,17.552269062686635 + 06/16 22:10:00,12.8,12.8,18.915823719069495 + 06/16 22:20:00,12.8,12.8,19.06373976292932 + 06/16 22:30:00,12.8,12.8,19.128818088060929 + 06/16 22:40:00,12.8,12.8,19.181197826572434 + 06/16 22:50:00,12.8,12.8,19.22332522786092 + 06/16 23:00:00,12.8,12.8,19.25883473335589 + 06/16 23:10:00,12.8,12.8,19.289475178070484 + 06/16 23:20:00,12.8,12.8,19.315692537512544 + 06/16 23:30:00,12.8,12.8,19.339829227575316 + 06/16 23:40:00,12.8,12.8,19.361555287687858 + 06/16 23:50:00,12.8,12.8,19.381756102054973 + 06/16 24:00:00,12.8,12.8,19.401955201038097 + 06/17 00:10:00,12.8,12.8,19.418984262071406 + 06/17 00:20:00,12.8,12.8,19.435151474613407 + 06/17 00:30:00,12.8,12.8,19.449989780080235 + 06/17 00:40:00,12.8,12.8,19.46404704044753 + 06/17 00:50:00,12.8,12.8,19.477584569250433 + 06/17 01:00:00,12.8,12.8,19.49033258559986 + 06/17 01:10:00,12.8,12.8,19.503082637085507 + 06/17 01:20:00,12.8,12.8,19.515754013348116 + 06/17 01:30:00,12.8,12.8,19.527756169575118 + 06/17 01:40:00,12.8,12.8,19.54083911338945 + 06/17 01:50:00,12.85885885885886,12.85885885885886,19.553932709366923 + 06/17 02:00:00,12.926126126126127,12.926126126126127,19.567469991524076 + 06/17 02:10:00,12.951351351351353,12.951351351351353,19.580488365043629 + 06/17 02:20:00,12.976576576576577,12.976576576576577,19.59323953043794 + 06/17 02:30:00,13.001801801801803,13.001801801801803,19.605556664264783 + 06/17 02:40:00,13.027027027027028,13.027027027027028,19.617418251290727 + 06/17 02:50:00,13.052252252252253,13.052252252252253,19.628858091894104 + 06/17 03:00:00,13.077477477477478,13.077477477477478,19.63981489546429 + 06/17 03:10:00,13.077477477477478,13.077477477477478,19.650179202061424 + 06/17 03:20:00,13.077477477477478,13.077477477477478,19.6595969650191 + 06/17 03:30:00,13.077477477477478,13.077477477477478,19.667841869515713 + 06/17 03:40:00,13.077477477477478,13.077477477477478,19.67505257862651 + 06/17 03:50:00,13.077477477477478,13.077477477477478,19.681237270563579 + 06/17 04:00:00,13.077477477477478,13.077477477477478,19.686562897936495 + 06/17 04:10:00,13.077477477477478,13.077477477477478,19.69105559874577 + 06/17 04:20:00,13.077477477477478,13.077477477477478,19.695341407029927 + 06/17 04:30:00,13.077477477477478,13.077477477477478,19.699641858302134 + 06/17 04:40:00,13.077477477477478,13.077477477477478,19.7039776619126 + 06/17 04:50:00,13.077477477477478,13.077477477477478,19.708370204771876 + 06/17 05:00:00,13.077477477477478,13.077477477477478,19.712882834298889 + 06/17 05:10:00,13.077477477477478,13.077477477477478,19.717780731089016 + 06/17 05:20:00,13.077477477477478,13.077477477477478,19.722679751355494 + 06/17 05:30:00,13.077477477477478,13.077477477477478,19.727538998853519 + 06/17 05:40:00,13.077477477477478,13.077477477477478,19.731998659722213 + 06/17 05:50:00,13.077477477477478,13.077477477477478,19.736103810460898 + 06/17 06:00:00,13.077477477477478,13.077477477477478,19.73974410822388 + 06/17 06:10:00,13.052252252252253,13.052252252252253,19.085696763820658 + 06/17 06:20:00,13.027027027027028,13.027027027027028,19.0126175887522 + 06/17 06:30:00,13.001801801801803,13.001801801801803,18.984935842543814 + 06/17 06:40:00,12.976576576576577,12.976576576576577,18.96241771102325 + 06/17 06:50:00,12.951351351351353,12.951351351351353,18.94472736554026 + 06/17 07:00:00,12.926126126126127,12.926126126126127,18.92892680223871 + 06/17 07:10:00,12.87987987987988,12.87987987987988,17.845143629479659 + 06/17 07:20:00,12.833633633633636,12.833633633633636,17.68419805387539 + 06/17 07:30:00,12.8,12.8,17.616994863335039 + 06/17 07:40:00,12.8,12.8,17.560704710360466 + 06/17 07:50:00,12.8,12.8,17.515496835458465 + 06/17 08:00:00,12.8,12.8,17.476630280195104 + 06/17 08:10:00,12.8,12.8,17.441836563344574 + 06/17 08:20:00,12.8,12.8,17.401606266929976 + 06/17 08:30:00,12.8,12.8,17.372537494614514 + 06/17 08:40:00,12.8,12.8,17.345410530924104 + 06/17 08:50:00,12.8,12.8,17.319572516386214 + 06/17 09:00:00,12.8,12.8,17.294762384991935 + 06/17 09:10:00,12.8,12.8,17.270742708895527 + 06/17 09:20:00,12.8,12.8,17.238714680434684 + 06/17 09:30:00,12.8,12.8,17.215986362816176 + 06/17 09:40:00,12.8,12.8,17.193792387353989 + 06/17 09:50:00,12.8,12.8,17.171660812415685 + 06/17 10:00:00,12.8,12.8,17.14945702097589 + 06/17 10:10:00,12.8,12.8,17.127324636846884 + 06/17 10:20:00,12.8,12.8,17.10536662671874 + 06/17 10:30:00,12.8,12.8,17.08366016097494 + 06/17 10:40:00,12.8,12.8,17.0631020028134 + 06/17 10:50:00,12.8,12.8,17.045176850877327 + 06/17 11:00:00,12.8,12.8,17.03025884416987 + 06/17 11:10:00,12.8,12.8,17.018072379815977 + 06/17 11:20:00,12.8,12.8,17.008126825821635 + 06/17 11:30:00,12.8,12.8,16.999859710371859 + 06/17 11:40:00,12.8,12.8,16.99244202419839 + 06/17 11:50:00,12.8,12.8,16.984789199502928 + 06/17 12:00:00,12.8,12.8,16.976440863071415 + 06/17 12:10:00,12.8,12.8,16.967349209796958 + 06/17 12:20:00,12.8,12.8,16.957960994419275 + 06/17 12:30:00,12.8,12.8,16.948475246023464 + 06/17 12:40:00,12.8,12.8,16.939047865923926 + 06/17 12:50:00,12.8,12.8,16.929820993387833 + 06/17 13:00:00,12.8,12.8,16.920849359268894 + 06/17 13:10:00,12.8,12.8,16.912118342888314 + 06/17 13:20:00,12.8,12.8,16.9037531191992 + 06/17 13:30:00,12.8,12.8,16.89572167569155 + 06/17 13:40:00,12.8,12.8,16.888455112779618 + 06/17 13:50:00,12.8,12.8,16.882626654444985 + 06/17 14:00:00,12.8,12.8,16.87839823368732 + 06/17 14:10:00,12.8,12.8,16.876331705416495 + 06/17 14:20:00,12.8,12.8,16.87638016048509 + 06/17 14:30:00,12.8,12.8,16.878477755524636 + 06/17 14:40:00,12.8,12.8,16.88193606937701 + 06/17 14:50:00,12.8,12.8,16.885852530361725 + 06/17 15:00:00,12.8,12.8,16.889804192339637 + 06/17 15:10:00,12.8,12.8,16.892766624276179 + 06/17 15:20:00,12.8,12.8,16.894775470638618 + 06/17 15:30:00,12.8,12.8,16.895762779989263 + 06/17 15:40:00,12.8,12.8,16.896461672653893 + 06/17 15:50:00,12.8,12.8,16.897974852501148 + 06/17 16:00:00,12.8,12.8,16.90074167396866 + 06/17 16:10:00,12.8,12.8,16.918101176377108 + 06/17 16:20:00,12.8,12.8,16.933345347481983 + 06/17 16:30:00,12.8,12.8,16.940618667229147 + 06/17 16:40:00,12.8,12.8,16.948142074824756 + 06/17 16:50:00,12.8,12.8,16.954795640306285 + 06/17 17:00:00,12.8,12.8,16.960063756065389 + 06/17 17:05:00,12.8,12.8,18.72609952238613 + 06/17 17:10:00,12.8,12.8,18.723603170226857 + 06/17 17:20:00,12.8,12.8,18.939044434790725 + 06/17 17:30:00,12.8,12.8,19.024639253803295 + 06/17 17:40:00,12.8,12.8,19.089466969792768 + 06/17 17:50:00,12.8,12.8,19.141840079890878 + 06/17 18:00:00,12.8,12.8,19.18538979639444 + 06/17 18:10:00,12.8,12.8,19.235123200446077 + 06/17 18:20:00,12.8,12.8,19.268319736131418 + 06/17 18:30:00,12.8,12.8,19.297790338145146 + 06/17 18:40:00,12.8,12.8,19.324728703323268 + 06/17 18:50:00,12.8,12.8,19.34952969299576 + 06/17 19:00:00,12.8,12.8,19.37241355892673 + 06/17 19:10:00,12.8,12.8,19.39464774046985 + 06/17 19:20:00,12.8,12.8,19.41366414839472 + 06/17 19:30:00,12.8,12.8,19.432775635967805 + 06/17 19:40:00,12.8,12.8,19.451367643636354 + 06/17 19:50:00,12.8,12.8,19.467071036709674 + 06/17 20:00:00,12.8,12.8,19.483036252075065 + 06/17 20:10:00,12.8,12.8,19.476430304764358 + 06/17 20:20:00,12.8,12.8,19.489322093334328 + 06/17 20:30:00,12.8,12.8,19.50291684521941 + 06/17 20:40:00,12.8,12.8,19.51533194471981 + 06/17 20:50:00,12.8,12.8,19.527411305036666 + 06/17 21:00:00,12.8,12.8,19.539021832620045 + 06/17 21:10:00,12.8,12.8,19.549831753783896 + 06/17 21:20:00,12.8,12.8,19.560142875337954 + 06/17 21:30:00,12.8,12.8,19.56994096124179 + 06/17 21:40:00,12.8,12.8,19.579224542873339 + 06/17 21:50:00,12.8,12.8,19.58816865745675 + 06/17 22:00:00,12.8,12.8,19.59672924281474 + 06/17 22:10:00,12.8,12.8,19.605430076450007 + 06/17 22:20:00,12.8,12.8,19.61390399327394 + 06/17 22:30:00,12.8,12.8,19.622094263414675 + 06/17 22:40:00,12.8,12.8,19.630217493688627 + 06/17 22:50:00,12.8,12.8,19.638196279049379 + 06/17 23:00:00,12.8,12.8,19.646036860375877 + 06/17 23:10:00,12.8,12.8,19.652744736146965 + 06/17 23:20:00,12.8,12.8,19.65946992825797 + 06/17 23:30:00,12.8,12.8,19.665854122325198 + 06/17 23:40:00,12.8,12.8,19.672157929853598 + 06/17 23:50:00,12.8,12.8,19.678212356835325 + 06/17 24:00:00,12.8,12.8,19.684081440919756 + 06/18 00:10:00,12.8,12.8,19.688702714439616 + 06/18 00:20:00,12.8,12.8,19.6952944957516 + 06/18 00:30:00,12.8,12.8,19.700572644979674 + 06/18 00:40:00,12.8,12.8,19.706416625208147 + 06/18 00:50:00,12.8,12.8,19.71189661388949 + 06/18 01:00:00,12.8,12.8,19.71578817161008 + 06/18 01:10:00,12.821021021021022,12.821021021021022,19.721446552999095 + 06/18 01:20:00,12.842042042042042,12.842042042042042,19.725852684227588 + 06/18 01:30:00,12.863063063063063,12.863063063063063,19.730873214014907 + 06/18 01:40:00,12.884084084084084,12.884084084084084,19.73558618786899 + 06/18 01:50:00,12.905105105105106,12.905105105105106,19.73878298067079 + 06/18 02:00:00,12.926126126126127,12.926126126126127,19.743954601965318 + 06/18 02:10:00,12.926126126126127,12.926126126126127,19.74866824399853 + 06/18 02:20:00,12.926126126126127,12.926126126126127,19.753892131754 + 06/18 02:30:00,12.926126126126127,12.926126126126127,19.758761842727574 + 06/18 02:40:00,12.926126126126127,12.926126126126127,19.761951838660449 + 06/18 02:50:00,12.926126126126127,12.926126126126127,19.767180146855723 + 06/18 03:00:00,12.926126126126127,12.926126126126127,19.771028162487679 + 06/18 03:10:00,12.951351351351353,12.951351351351353,19.77517337267725 + 06/18 03:20:00,12.976576576576577,12.976576576576577,19.777724016438368 + 06/18 03:30:00,13.001801801801803,13.001801801801803,19.78147966539082 + 06/18 03:40:00,13.027027027027028,13.027027027027028,19.78487428649264 + 06/18 03:50:00,13.052252252252253,13.052252252252253,19.788520133968047 + 06/18 04:00:00,13.077477477477478,13.077477477477478,19.792159500685526 + 06/18 04:10:00,13.077477477477478,13.077477477477478,19.79579552543024 + 06/18 04:20:00,13.077477477477478,13.077477477477478,19.799347887750558 + 06/18 04:30:00,13.077477477477478,13.077477477477478,19.802763459125936 + 06/18 04:40:00,13.077477477477478,13.077477477477478,19.80604426522578 + 06/18 04:50:00,13.077477477477478,13.077477477477478,19.809284780566747 + 06/18 05:00:00,13.077477477477478,13.077477477477478,19.8124253722157 + 06/18 05:10:00,13.102702702702704,13.102702702702704,19.815265734921647 + 06/18 05:20:00,13.127927927927928,13.127927927927928,19.818042085619728 + 06/18 05:30:00,13.153153153153154,13.153153153153154,19.820741960661399 + 06/18 05:40:00,13.17837837837838,13.17837837837838,19.82326022176998 + 06/18 05:50:00,13.203603603603604,13.203603603603604,19.82518741095977 + 06/18 06:00:00,13.22882882882883,13.22882882882883,19.8265315552385 + 06/18 06:10:00,13.203603603603604,13.203603603603604,19.85047889967708 + 06/18 06:20:00,13.17837837837838,13.17837837837838,19.851818331614309 + 06/18 06:30:00,13.153153153153154,13.153153153153154,19.852641392453454 + 06/18 06:40:00,13.12792792792793,13.12792792792793,19.853045099869499 + 06/18 06:50:00,13.102702702702704,13.102702702702704,19.852854393013446 + 06/18 07:00:00,13.077477477477478,13.077477477477478,19.85210286970382 + 06/18 07:10:00,13.052252252252253,13.052252252252253,18.460615709137874 + 06/18 07:20:00,13.027027027027028,13.027027027027028,18.280866600634277 + 06/18 07:30:00,13.001801801801803,13.001801801801803,18.21343406610966 + 06/18 07:40:00,12.976576576576577,12.976576576576577,18.158171592727777 + 06/18 07:50:00,12.951351351351353,12.951351351351353,18.115452308563904 + 06/18 08:00:00,12.926126126126127,12.926126126126127,18.07959657997084 + 06/18 08:10:00,12.87987987987988,12.87987987987988,18.048369060616325 + 06/18 08:20:00,12.833633633633636,12.833633633633636,18.01197075397388 + 06/18 08:30:00,12.8,12.8,17.9870413454343 + 06/18 08:40:00,12.8,12.8,17.964248289383748 + 06/18 08:50:00,12.8,12.8,17.942665761999899 + 06/18 09:00:00,12.8,12.8,17.921879045568688 + 06/18 09:10:00,12.8,12.8,17.901146149356813 + 06/18 09:20:00,12.8,12.8,17.87194179373907 + 06/18 09:30:00,12.8,12.8,17.851516893263257 + 06/18 09:40:00,12.8,12.8,17.831681947079834 + 06/18 09:50:00,12.8,12.8,17.812740284260469 + 06/18 10:00:00,12.8,12.8,17.794830588544149 + 06/18 10:10:00,12.8,12.8,17.777982820922128 + 06/18 10:20:00,12.8,12.8,17.76208392426477 + 06/18 10:30:00,12.8,12.8,17.74691957551216 + 06/18 10:40:00,12.8,12.8,17.731826376680656 + 06/18 10:50:00,12.8,12.8,17.716153661698763 + 06/18 11:00:00,12.8,12.8,17.699512143282648 + 06/18 11:10:00,12.8,12.8,17.682011148448795 + 06/18 11:20:00,12.8,12.8,17.664191656374169 + 06/18 11:30:00,12.8,12.8,17.64640868103743 + 06/18 11:40:00,12.8,12.8,17.628988226927384 + 06/18 11:50:00,12.8,12.8,17.612311886505709 + 06/18 12:00:00,12.8,12.8,17.596717861391043 + 06/18 12:10:00,12.8,12.8,17.58201962732584 + 06/18 12:20:00,12.8,12.8,17.56796654171501 + 06/18 12:30:00,12.8,12.8,17.554477837388278 + 06/18 12:40:00,12.8,12.8,17.54182898210325 + 06/18 12:50:00,12.8,12.8,17.530379916964635 + 06/18 13:00:00,12.8,12.8,17.520150437758248 + 06/18 13:10:00,12.8,12.8,17.511147993165169 + 06/18 13:20:00,12.8,12.8,17.502915452804808 + 06/18 13:30:00,12.8,12.8,17.49506783535846 + 06/18 13:40:00,12.8,12.8,17.488116434945544 + 06/18 13:50:00,12.8,12.8,17.48275612362546 + 06/18 14:00:00,12.8,12.8,17.479082185763504 + 06/18 14:10:00,12.8,12.8,17.476618836718889 + 06/18 14:20:00,12.8,12.8,17.475275695644166 + 06/18 14:30:00,12.8,12.8,17.474728026274535 + 06/18 14:40:00,12.8,12.8,17.474291877599815 + 06/18 14:50:00,12.8,12.8,17.473364789593746 + 06/18 15:00:00,12.8,12.8,17.471629921530267 + 06/18 15:10:00,12.8,12.8,18.887703778737554 + 06/18 15:20:00,12.8,12.8,19.042231552940199 + 06/18 15:30:00,12.8,12.8,19.105209587212099 + 06/18 15:40:00,12.8,12.8,19.155225692367944 + 06/18 15:50:00,12.8,12.8,19.192957793738775 + 06/18 16:00:00,12.8,12.8,19.223269289666008 + 06/18 16:10:00,12.8,12.8,19.2522962684129 + 06/18 16:20:00,12.8,12.8,19.286792043958696 + 06/18 16:30:00,12.8,12.8,19.310392495336516 + 06/18 16:40:00,12.8,12.8,19.33212882192545 + 06/18 16:50:00,12.8,12.8,19.352403929079516 + 06/18 17:00:00,12.8,12.8,19.371121085496918 + 06/18 17:10:00,12.8,12.8,19.38723113371276 + 06/18 17:20:00,12.8,12.8,19.420920230707723 + 06/18 17:30:00,12.8,12.8,19.43737452843952 + 06/18 17:40:00,12.8,12.8,19.453271426075994 + 06/18 17:50:00,12.8,12.8,19.46819442534449 + 06/18 18:00:00,12.8,12.8,19.482068514091666 + 06/18 18:10:00,12.8,12.8,19.495750580158643 + 06/18 18:20:00,12.8,12.8,19.508713179266655 + 06/18 18:30:00,12.8,12.8,19.521086138579148 + 06/18 18:40:00,12.8,12.8,19.53335038797108 + 06/18 18:50:00,12.8,12.8,19.54573267478401 + 06/18 19:00:00,12.8,12.8,19.55829562291213 + 06/18 19:10:00,12.8,12.8,19.57088774356577 + 06/18 19:20:00,12.8,12.8,19.58325833952819 + 06/18 19:30:00,12.8,12.8,19.59524528740657 + 06/18 19:40:00,12.8,12.8,19.60683688887953 + 06/18 19:50:00,12.8,12.8,19.618272432065127 + 06/18 20:00:00,12.8,12.8,19.629564644767688 + 06/18 20:10:00,12.8,12.8,19.618284365820978 + 06/18 20:20:00,12.8,12.8,19.62849414127113 + 06/18 20:30:00,12.8,12.8,19.63826802177847 + 06/18 20:40:00,12.8,12.8,19.64759162684567 + 06/18 20:50:00,12.8,12.8,19.65652166794477 + 06/18 21:00:00,12.8,12.8,19.665083040597425 + 06/18 21:10:00,12.8,12.8,19.67296020455998 + 06/18 21:20:00,12.8,12.8,19.680348413337243 + 06/18 21:30:00,12.8,12.8,19.687478292279019 + 06/18 21:40:00,12.8,12.8,19.694286666105819 + 06/18 21:50:00,12.8,12.8,19.70081605323839 + 06/18 22:00:00,12.8,12.8,19.70710471787858 + 06/18 22:10:00,12.8,12.8,19.713302091651607 + 06/18 22:20:00,12.8,12.8,19.71946322434414 + 06/18 22:30:00,12.8,12.8,19.725576121217896 + 06/18 22:40:00,12.8,12.8,19.73162433322031 + 06/18 22:50:00,12.8,12.8,19.737602699859033 + 06/18 23:00:00,12.8,12.8,19.74345617184559 + 06/18 23:10:00,12.8,12.8,19.749239535007264 + 06/18 23:20:00,12.8,12.8,19.755213554050326 + 06/18 23:30:00,12.8,12.8,19.7608307917884 + 06/18 23:40:00,12.8,12.8,19.76637247125085 + 06/18 23:50:00,12.8,12.8,19.77166567947034 + 06/18 24:00:00,12.8,12.8,19.776767150520159 + 06/19 00:10:00,12.8,12.8,19.780197345084713 + 06/19 00:20:00,12.8,12.8,19.785577831464435 + 06/19 00:30:00,12.8,12.8,19.78968238329375 + 06/19 00:40:00,12.8,12.8,19.79441175350882 + 06/19 00:50:00,12.8,12.8,19.798774365671098 + 06/19 01:00:00,12.8,12.8,19.80175953927963 + 06/19 01:10:00,12.821021021021022,12.821021021021022,19.80702790694292 + 06/19 01:20:00,12.842042042042042,12.842042042042042,19.810147553689278 + 06/19 01:30:00,12.863063063063063,12.863063063063063,19.814455697571263 + 06/19 01:40:00,12.884084084084084,12.884084084084084,19.81814361753971 + 06/19 01:50:00,12.905105105105106,12.905105105105106,19.821920995148394 + 06/19 02:00:00,12.926126126126127,12.926126126126127,19.825580866559734 + 06/19 02:10:00,12.926126126126127,12.926126126126127,19.828729098574084 + 06/19 02:20:00,12.926126126126127,12.926126126126127,19.831800003123445 + 06/19 02:30:00,12.926126126126127,12.926126126126127,19.834772385945017 + 06/19 02:40:00,12.926126126126127,12.926126126126127,19.8377366973344 + 06/19 02:50:00,12.926126126126127,12.926126126126127,19.840720869834855 + 06/19 03:00:00,12.926126126126127,12.926126126126127,19.843687895608086 + 06/19 03:10:00,12.926126126126127,12.926126126126127,19.847092883489347 + 06/19 03:20:00,12.926126126126127,12.926126126126127,19.850183880709588 + 06/19 03:30:00,12.926126126126127,12.926126126126127,19.852872958437247 + 06/19 03:40:00,12.926126126126127,12.926126126126127,19.85526059554694 + 06/19 03:50:00,12.926126126126127,12.926126126126127,19.857316411614929 + 06/19 04:00:00,12.926126126126127,12.926126126126127,19.859084297492143 + 06/19 04:10:00,12.905105105105106,12.905105105105106,19.860084569819578 + 06/19 04:20:00,12.884084084084084,12.884084084084084,19.860883273200355 + 06/19 04:30:00,12.863063063063063,12.863063063063063,19.861733955271995 + 06/19 04:40:00,12.842042042042042,12.842042042042042,19.862547763988816 + 06/19 04:50:00,12.821021021021022,12.821021021021022,19.863322744871874 + 06/19 05:00:00,12.8,12.8,19.86441361292936 + 06/19 05:10:00,12.821021021021022,12.821021021021022,19.86560335944621 + 06/19 05:20:00,12.842042042042042,12.842042042042042,19.866376335664734 + 06/19 05:30:00,12.863063063063063,12.863063063063063,19.86796704492547 + 06/19 05:40:00,12.884084084084084,12.884084084084084,19.869295966435247 + 06/19 05:50:00,12.905105105105106,12.905105105105106,19.87023770773545 + 06/19 06:00:00,12.926126126126127,12.926126126126127,19.87062899988282 + 06/19 06:10:00,12.905105105105106,12.905105105105106,17.88491376538707 + 06/19 06:20:00,12.884084084084084,12.884084084084084,17.629930551915878 + 06/19 06:30:00,12.863063063063063,12.863063063063063,17.538729864750679 + 06/19 06:40:00,12.842042042042042,12.842042042042042,17.46401331164288 + 06/19 06:50:00,12.821021021021022,12.821021021021022,17.40632312488607 + 06/19 07:00:00,12.8,12.8,17.35680690942159 + 06/19 07:10:00,12.8,12.8,15.876822210058784 + 06/19 07:15:00,12.8,12.8,15.633279993009579 + 06/19 07:20:00,12.8,12.8,15.637160029531256 + 06/19 07:30:00,12.8,12.8,15.52286271327561 + 06/19 07:40:00,12.8,12.8,15.427383109525934 + 06/19 07:50:00,12.8,12.8,15.349026170193103 + 06/19 08:00:00,12.8,12.8,15.279918658214826 + 06/19 08:05:00,12.8,12.8,15.193182178250736 + 06/19 08:10:00,12.8,12.8,15.192718587118608 + 06/19 08:20:00,12.8,12.8,15.128542394813243 + 06/19 08:30:00,12.8,12.8,15.076892906051708 + 06/19 08:40:00,12.8,12.8,15.0291658346135 + 06/19 08:50:00,12.8,12.8,14.984318891946865 + 06/19 09:00:00,12.8,12.8,14.941869178214767 + 06/19 09:10:00,12.8,12.8,14.900745076677307 + 06/19 09:20:00,12.8,12.8,14.850290299926419 + 06/19 09:30:00,12.8,12.8,14.811125489356055 + 06/19 09:40:00,12.8,12.8,14.773277917301455 + 06/19 09:50:00,12.8,12.8,14.737216663879672 + 06/19 10:00:00,12.8,12.8,14.70321531625764 + 06/19 10:10:00,12.8,12.8,14.67162510437275 + 06/19 10:20:00,12.8,12.8,14.638831811104185 + 06/19 10:30:00,12.8,12.8,14.611651691013991 + 06/19 10:40:00,12.8,12.8,14.586414063027738 + 06/19 10:50:00,12.8,12.8,14.562608013538549 + 06/19 11:00:00,12.8,12.8,14.540049715279409 + 06/19 11:10:00,12.8,12.8,14.51961033226459 + 06/19 11:20:00,12.8,12.8,14.509940915480814 + 06/19 11:30:00,12.8,12.8,14.491849606618264 + 06/19 11:40:00,12.8,12.8,14.47407860968099 + 06/19 11:50:00,12.8,12.8,14.45592996275034 + 06/19 12:00:00,12.8,12.8,14.43703170078457 + 06/19 12:10:00,12.8,12.8,14.41658328776174 + 06/19 12:20:00,12.8,12.8,14.385969703359969 + 06/19 12:30:00,12.8,12.8,14.364515720574213 + 06/19 12:40:00,12.8,12.8,14.343491331486252 + 06/19 12:50:00,12.8,12.8,14.323601556206457 + 06/19 13:00:00,12.8,12.8,14.305182130042692 + 06/19 13:10:00,12.8,12.8,14.288337365879786 + 06/19 13:20:00,12.8,12.8,14.275979636065039 + 06/19 13:30:00,12.8,12.8,14.26090792450953 + 06/19 13:40:00,12.8,12.8,14.247473837475193 + 06/19 13:50:00,12.8,12.8,14.2372669573548 + 06/19 14:00:00,12.8,12.8,14.230384785858363 + 06/19 14:10:00,12.8,12.8,14.227089120214423 + 06/19 14:20:00,12.8,12.8,14.230794417520827 + 06/19 14:30:00,12.8,12.8,14.232977822027597 + 06/19 14:40:00,12.8,12.8,14.235190462484403 + 06/19 14:50:00,12.8,12.8,14.233075608044402 + 06/19 15:00:00,12.8,12.8,14.227896752910843 + 06/19 15:05:00,12.8,12.8,16.381676631192435 + 06/19 15:10:00,12.8,12.8,16.37663343238938 + 06/19 15:20:00,12.8,12.8,16.627828543283778 + 06/19 15:30:00,12.8,12.8,16.723984871297114 + 06/19 15:40:00,12.8,12.8,16.793571665553256 + 06/19 15:50:00,12.8,12.8,16.841767464890908 + 06/19 16:00:00,12.8,12.8,16.882948787633315 + 06/19 16:10:00,12.8,12.8,16.94347422134478 + 06/19 16:20:00,12.8,12.8,16.994459312069954 + 06/19 16:30:00,12.8,12.8,17.02263788954201 + 06/19 16:40:00,12.8,12.8,17.048257302589954 + 06/19 16:50:00,12.8,12.8,17.072454702861159 + 06/19 17:00:00,12.8,12.8,17.095296013657874 + 06/19 17:10:00,12.8,12.8,17.130236519613044 + 06/19 17:20:00,12.8,12.8,17.157119397744695 + 06/19 17:30:00,12.8,12.8,17.17731495119016 + 06/19 17:40:00,12.8,12.8,17.196620737369018 + 06/19 17:50:00,12.8,12.8,17.21506124745175 + 06/19 18:00:00,12.8,12.8,17.232623632406964 + 06/19 18:10:00,12.8,12.8,17.250205304298054 + 06/19 18:20:00,12.8,12.8,17.26721117349902 + 06/19 18:30:00,12.8,12.8,17.28378321109719 + 06/19 18:40:00,12.8,12.8,17.300004178437818 + 06/19 18:50:00,12.8,12.8,17.315852470851483 + 06/19 19:00:00,12.8,12.8,17.331360293261498 + 06/19 19:10:00,12.8,12.8,17.35933011939396 + 06/19 19:20:00,12.8,12.8,17.374966821414668 + 06/19 19:30:00,12.8,12.8,17.38999053345738 + 06/19 19:40:00,12.8,12.8,17.404764660256509 + 06/19 19:50:00,12.8,12.8,17.419288237626874 + 06/19 20:00:00,12.8,12.8,17.433651575769525 + 06/19 20:10:00,12.8,12.8,17.424493175533628 + 06/19 20:20:00,12.8,12.8,17.440899137868443 + 06/19 20:30:00,12.8,12.8,17.452293800273318 + 06/19 20:40:00,12.8,12.8,17.462775642156659 + 06/19 20:50:00,12.8,12.8,17.472525702997748 + 06/19 21:00:00,12.8,12.8,17.481711835746304 + 06/19 21:10:00,12.8,12.8,17.491322268002027 + 06/19 21:20:00,12.8,12.8,17.50055445095517 + 06/19 21:30:00,12.8,12.8,17.509614179455654 + 06/19 21:40:00,12.8,12.8,17.518520119934295 + 06/19 21:50:00,12.8,12.8,17.527244063703308 + 06/19 22:00:00,12.8,12.8,17.535915597362764 + 06/19 22:10:00,12.8,12.8,18.901809416926527 + 06/19 22:20:00,12.8,12.8,19.05172425503292 + 06/19 22:30:00,12.8,12.8,19.119301160010907 + 06/19 22:40:00,12.8,12.8,19.174267674241727 + 06/19 22:50:00,12.8,12.8,19.21928711185135 + 06/19 23:00:00,12.8,12.8,19.257881008676656 + 06/19 23:10:00,12.8,12.8,19.29211205407136 + 06/19 23:20:00,12.8,12.8,19.32114614440881 + 06/19 23:30:00,12.8,12.8,19.347956801496843 + 06/19 23:40:00,12.8,12.8,19.37190555314863 + 06/19 23:50:00,12.8,12.8,19.39411419292848 + 06/19 24:00:00,12.8,12.8,19.414639674804126 + 06/20 00:10:00,12.821021021021022,12.821021021021022,19.433463126395205 + 06/20 00:20:00,12.842042042042042,12.842042042042042,19.451115144718388 + 06/20 00:30:00,12.863063063063063,12.863063063063063,19.4678075262279 + 06/20 00:40:00,12.884084084084084,12.884084084084084,19.484235707882868 + 06/20 00:50:00,12.905105105105106,12.905105105105106,19.49908734020574 + 06/20 01:00:00,12.926126126126127,12.926126126126127,19.513390051466428 + 06/20 01:10:00,12.926126126126127,12.926126126126127,19.526592287152757 + 06/20 01:20:00,12.926126126126127,12.926126126126127,19.53908471170237 + 06/20 01:30:00,12.926126126126127,12.926126126126127,19.550998723833943 + 06/20 01:40:00,12.926126126126127,12.926126126126127,19.56227965516435 + 06/20 01:50:00,12.926126126126127,12.926126126126127,19.573003058034364 + 06/20 02:00:00,12.926126126126127,12.926126126126127,19.583201535307393 + 06/20 02:10:00,12.926126126126127,12.926126126126127,19.592956417720087 + 06/20 02:20:00,12.926126126126127,12.926126126126127,19.602489202692337 + 06/20 02:30:00,12.926126126126127,12.926126126126127,19.611725399189309 + 06/20 02:40:00,12.926126126126127,12.926126126126127,19.620702541667844 + 06/20 02:50:00,12.926126126126127,12.926126126126127,19.629429859943408 + 06/20 03:00:00,12.926126126126127,12.926126126126127,19.637829938216706 + 06/20 03:10:00,12.976576576576577,12.976576576576577,19.64618083889321 + 06/20 03:20:00,13.027027027027028,13.027027027027028,19.65440647844916 + 06/20 03:30:00,13.077477477477478,13.077477477477478,19.662553131020777 + 06/20 03:40:00,13.127927927927928,13.127927927927928,19.670612095049245 + 06/20 03:50:00,13.17837837837838,13.17837837837838,19.67851011346685 + 06/20 04:00:00,13.22882882882883,13.22882882882883,19.686335496858484 + 06/20 04:10:00,13.22882882882883,13.22882882882883,19.694111977373685 + 06/20 04:20:00,13.22882882882883,13.22882882882883,19.701732523635618 + 06/20 04:30:00,13.22882882882883,13.22882882882883,19.7091803964923 + 06/20 04:40:00,13.22882882882883,13.22882882882883,19.716478592267284 + 06/20 04:50:00,13.22882882882883,13.22882882882883,19.723506897430924 + 06/20 05:00:00,13.22882882882883,13.22882882882883,19.7305079692913 + 06/20 05:10:00,13.22882882882883,13.22882882882883,19.73771052927643 + 06/20 05:20:00,13.22882882882883,13.22882882882883,19.744511868942018 + 06/20 05:30:00,13.22882882882883,13.22882882882883,19.75096872290365 + 06/20 05:40:00,13.22882882882883,13.22882882882883,19.756733963168274 + 06/20 05:50:00,13.22882882882883,13.22882882882883,19.761589186069498 + 06/20 06:00:00,13.22882882882883,13.22882882882883,19.765518279748834 + 06/20 06:10:00,13.203603603603604,13.203603603603604,17.778233022865359 + 06/20 06:20:00,13.17837837837838,13.17837837837838,17.524241095826285 + 06/20 06:30:00,13.153153153153154,13.153153153153154,17.434818198044867 + 06/20 06:40:00,13.12792792792793,13.12792792792793,17.361709195010876 + 06/20 06:50:00,13.102702702702704,13.102702702702704,17.305973469382076 + 06/20 07:00:00,13.077477477477478,13.077477477477478,17.258364683412716 + 06/20 07:05:00,13.006006006006008,13.006006006006008,15.763971779692208 + 06/20 07:10:00,13.006006006006008,13.006006006006008,15.770548543616574 + 06/20 07:15:00,12.934534534534535,12.934534534534535,15.538511512220002 + 06/20 07:20:00,12.934534534534535,12.934534534534535,15.536768874108946 + 06/20 07:30:00,12.863063063063063,12.863063063063063,15.42924130859348 + 06/20 07:40:00,12.8,12.8,15.341507812219458 + 06/20 07:50:00,12.8,12.8,15.265962087235839 + 06/20 08:00:00,12.8,12.8,15.20024095383029 + 06/20 08:03:19,12.8,12.8,15.115636566073502 + 06/20 08:06:40,12.8,12.8,15.115247338326402 + 06/20 08:10:00,12.8,12.8,15.115185687714093 + 06/20 08:20:00,12.8,12.8,15.051647795084483 + 06/20 08:30:00,12.8,12.8,15.000489232279536 + 06/20 08:40:00,12.8,12.8,14.9524818215332 + 06/20 08:50:00,12.8,12.8,14.907318771783248 + 06/20 09:00:00,12.8,12.8,14.864815202840724 + 06/20 09:10:00,12.8,12.8,14.82484046487406 + 06/20 09:20:00,12.8,12.8,14.776504884709013 + 06/20 09:30:00,12.8,12.8,14.740480166336644 + 06/20 09:40:00,12.8,12.8,14.706685072885893 + 06/20 09:50:00,12.8,12.8,14.67536528942851 + 06/20 10:00:00,12.8,12.8,14.646740823620667 + 06/20 10:10:00,12.8,12.8,14.620296731657098 + 06/20 10:20:00,12.8,12.8,14.592216469696084 + 06/20 10:30:00,12.8,12.8,14.569225709149049 + 06/20 10:40:00,12.8,12.8,14.547234814939872 + 06/20 10:50:00,12.8,12.8,14.525258392551164 + 06/20 11:00:00,12.8,12.8,14.502926857725102 + 06/20 11:10:00,12.8,12.8,14.481200848114835 + 06/20 11:20:00,12.8,12.8,14.469484431765114 + 06/20 11:30:00,12.8,12.8,14.44875162111414 + 06/20 11:40:00,12.8,12.8,14.428495311013393 + 06/20 11:50:00,12.8,12.8,14.408925065920612 + 06/20 12:00:00,12.8,12.8,14.389898583198573 + 06/20 12:10:00,12.8,12.8,14.370613952078943 + 06/20 12:20:00,12.8,12.8,14.342049684580195 + 06/20 12:30:00,12.8,12.8,14.323372040968329 + 06/20 12:40:00,12.8,12.8,14.305352398256748 + 06/20 12:50:00,12.8,12.8,14.287982171220897 + 06/20 13:00:00,12.8,12.8,14.271395004276695 + 06/20 13:10:00,12.8,12.8,14.256824096702694 + 06/20 13:20:00,12.8,12.8,14.24673139192908 + 06/20 13:30:00,12.8,12.8,14.23413415399176 + 06/20 13:40:00,12.8,12.8,14.222541763492714 + 06/20 13:50:00,12.8,12.8,14.212421176720789 + 06/20 14:00:00,12.8,12.8,14.203806715803895 + 06/20 14:10:00,12.8,12.8,14.195557372347512 + 06/20 14:20:00,12.8,12.8,14.19238310956451 + 06/20 14:30:00,12.8,12.8,14.186454362787936 + 06/20 14:40:00,12.8,12.8,14.180714831478183 + 06/20 14:50:00,12.8,12.8,14.174009388185816 + 06/20 15:00:00,12.8,12.8,14.16546079329408 + 06/20 15:05:00,12.8,12.8,16.320323313218009 + 06/20 15:10:00,12.8,12.8,16.31583517601399 + 06/20 15:20:00,12.8,12.8,16.570121382652734 + 06/20 15:30:00,12.8,12.8,16.670517268452814 + 06/20 15:40:00,12.8,12.8,16.745788015136577 + 06/20 15:50:00,12.8,12.8,16.804330118034366 + 06/20 16:00:00,12.8,12.8,16.848772241243279 + 06/20 16:10:00,12.8,12.8,16.91421310461617 + 06/20 16:20:00,12.8,12.8,16.968498810417019 + 06/20 16:30:00,12.8,12.8,16.999462119253097 + 06/20 16:40:00,12.8,12.8,17.02723318647654 + 06/20 16:50:00,12.8,12.8,17.05251624903489 + 06/20 17:00:00,12.8,12.8,17.0756487021842 + 06/20 17:10:00,12.8,12.8,17.11043479560653 + 06/20 17:15:00,12.8,12.8,17.137493704077355 + 06/20 17:20:00,12.8,12.8,17.13712499931603 + 06/20 17:30:00,12.8,12.8,17.156196678062419 + 06/20 17:40:00,12.8,12.8,17.175177324232377 + 06/20 17:50:00,12.8,12.8,17.193991231394713 + 06/20 18:00:00,12.8,12.8,17.21312018499833 + 06/20 18:10:00,12.8,12.8,17.232264818152197 + 06/20 18:20:00,12.8,12.8,17.251244458622425 + 06/20 18:30:00,12.8,12.8,17.269820013816525 + 06/20 18:40:00,12.8,12.8,17.2876310093127 + 06/20 18:50:00,12.8,12.8,17.304373638761825 + 06/20 19:00:00,12.8,12.8,17.31997406510302 + 06/20 19:10:00,12.8,12.8,17.34929605146687 + 06/20 19:20:00,12.8,12.8,17.36647822378791 + 06/20 19:30:00,12.8,12.8,17.38342714481449 + 06/20 19:40:00,12.8,12.8,17.400621604071544 + 06/20 19:50:00,12.8,12.8,17.41808098059272 + 06/20 20:00:00,12.8,12.8,17.43584746497275 + 06/20 20:10:00,12.8,12.8,17.42994657944558 + 06/20 20:20:00,12.8,12.8,17.449621973005998 + 06/20 20:30:00,12.8,12.8,17.464161945452739 + 06/20 20:40:00,12.8,12.8,17.47758654054499 + 06/20 20:50:00,12.8,12.8,17.490131723942139 + 06/20 21:00:00,12.8,12.8,17.50184368869341 + 06/20 21:10:00,12.8,12.8,17.513107731731773 + 06/20 21:20:00,12.8,12.8,17.523892439196496 + 06/20 21:30:00,12.8,12.8,17.534389253925978 + 06/20 21:40:00,12.833633633633636,12.833633633633636,17.544658574781044 + 06/20 21:50:00,12.87987987987988,12.87987987987988,17.55471337461908 + 06/20 22:00:00,12.926126126126127,12.926126126126127,17.56457462051258 + 06/20 22:10:00,12.926126126126127,12.926126126126127,18.931014827861348 + 06/20 22:20:00,12.926126126126127,12.926126126126127,19.081132918852675 + 06/20 22:30:00,12.926126126126127,12.926126126126127,19.14855557004768 + 06/20 22:40:00,12.926126126126127,12.926126126126127,19.20289297405163 + 06/20 22:50:00,12.926126126126127,12.926126126126127,19.246663756483224 + 06/20 23:00:00,12.926126126126127,12.926126126126127,19.28352365085972 + 06/20 23:10:00,12.926126126126127,12.926126126126127,19.317853339058439 + 06/20 23:20:00,12.926126126126127,12.926126126126127,19.344762104174487 + 06/20 23:30:00,12.926126126126127,12.926126126126127,19.36925180818315 + 06/20 23:40:00,12.926126126126127,12.926126126126127,19.390844369201387 + 06/20 23:50:00,12.926126126126127,12.926126126126127,19.410723855818345 + 06/20 24:00:00,12.926126126126127,12.926126126126127,19.429003188722136 + 06/21 00:10:00,12.926126126126127,12.926126126126127,19.445782339729719 + 06/21 00:20:00,12.926126126126127,12.926126126126127,19.461172724027298 + 06/21 00:30:00,12.926126126126127,12.926126126126127,19.475252409108408 + 06/21 00:40:00,12.926126126126127,12.926126126126127,19.48815012664972 + 06/21 00:50:00,12.926126126126127,12.926126126126127,19.499892216900066 + 06/21 01:00:00,12.926126126126127,12.926126126126127,19.510734357301066 + 06/21 01:10:00,12.926126126126127,12.926126126126127,19.52121218399542 + 06/21 01:20:00,12.926126126126127,12.926126126126127,19.531598007434736 + 06/21 01:30:00,12.926126126126127,12.926126126126127,19.54218610685594 + 06/21 01:40:00,12.926126126126127,12.926126126126127,19.552965938754079 + 06/21 01:50:00,12.926126126126127,12.926126126126127,19.56399390347669 + 06/21 02:00:00,12.926126126126127,12.926126126126127,19.575232172467208 + 06/21 02:10:00,12.926126126126127,12.926126126126127,19.586414535891899 + 06/21 02:20:00,12.926126126126127,12.926126126126127,19.597211994342943 + 06/21 02:30:00,12.926126126126127,12.926126126126127,19.607421058944124 + 06/21 02:40:00,12.926126126126127,12.926126126126127,19.617033629893265 + 06/21 02:50:00,12.926126126126127,12.926126126126127,19.626162630544436 + 06/21 03:00:00,12.926126126126127,12.926126126126127,19.634791360471416 + 06/21 03:10:00,12.951351351351353,12.951351351351353,19.642952023823008 + 06/21 03:20:00,12.976576576576577,12.976576576576577,19.651623645888568 + 06/21 03:30:00,13.001801801801803,13.001801801801803,19.659364617718237 + 06/21 03:40:00,13.027027027027028,13.027027027027028,19.667370485211774 + 06/21 03:50:00,13.052252252252253,13.052252252252253,19.675216234523693 + 06/21 04:00:00,13.077477477477478,13.077477477477478,19.683079892221973 + 06/21 04:10:00,13.102702702702704,13.102702702702704,19.691195352424648 + 06/21 04:20:00,13.127927927927928,13.127927927927928,19.699252944761854 + 06/21 04:30:00,13.153153153153154,13.153153153153154,19.707283936224788 + 06/21 04:40:00,13.17837837837838,13.17837837837838,19.71522073688748 + 06/21 04:50:00,13.203603603603604,13.203603603603604,19.72306268428417 + 06/21 05:00:00,13.22882882882883,13.22882882882883,19.730807061751777 + 06/21 05:10:00,13.22882882882883,13.22882882882883,19.738151229944866 + 06/21 05:20:00,13.22882882882883,13.22882882882883,19.74543547818495 + 06/21 05:30:00,13.22882882882883,13.22882882882883,19.75253534580483 + 06/21 05:40:00,13.22882882882883,13.22882882882883,19.759126642512145 + 06/21 05:50:00,13.22882882882883,13.22882882882883,19.764831054007176 + 06/21 06:00:00,13.22882882882883,13.22882882882883,19.769677278879369 + 06/21 06:10:00,13.157357357357359,13.157357357357359,17.783731757464495 + 06/21 06:20:00,13.085885885885887,13.085885885885887,17.532869992555616 + 06/21 06:30:00,13.014414414414415,13.014414414414415,17.44454215164732 + 06/21 06:40:00,12.942942942942946,12.942942942942946,17.372694962993223 + 06/21 06:50:00,12.871471471471472,12.871471471471472,17.31726572463973 + 06/21 07:00:00,12.8,12.8,17.269851272323764 + 06/21 07:05:00,12.8,12.8,15.7754935591233 + 06/21 07:10:00,12.8,12.8,15.7820758353897 + 06/21 07:15:00,12.8,12.8,15.549402060404703 + 06/21 07:20:00,12.8,12.8,15.547680503278976 + 06/21 07:30:00,12.8,12.8,15.438941393941447 + 06/21 07:35:00,12.8,12.8,15.350342225838727 + 06/21 07:40:00,12.8,12.8,15.348928601092485 + 06/21 07:50:00,12.8,12.8,15.27210073633629 + 06/21 08:00:00,12.8,12.8,15.204173223728136 + 06/21 08:03:19,12.8,12.8,15.118307280062764 + 06/21 08:06:40,12.8,12.8,15.117573210025939 + 06/21 08:10:00,12.8,12.8,15.11768786311303 + 06/21 08:20:00,12.8,12.8,15.052759928137359 + 06/21 08:30:00,12.8,12.8,15.000720821173598 + 06/21 08:40:00,12.8,12.8,14.952159966124694 + 06/21 08:50:00,12.8,12.8,14.906614170352852 + 06/21 09:00:00,12.8,12.8,14.863785843239049 + 06/21 09:10:00,12.8,12.8,14.823033030631919 + 06/21 09:20:00,12.8,12.8,14.773926812290478 + 06/21 09:30:00,12.8,12.8,14.737166004710629 + 06/21 09:40:00,12.8,12.8,14.702413850265139 + 06/21 09:50:00,12.8,12.8,14.669511057802524 + 06/21 10:00:00,12.8,12.8,14.638420776882159 + 06/21 10:10:00,12.8,12.8,14.609603152640809 + 06/21 10:20:00,12.8,12.8,14.578785805448416 + 06/21 10:30:00,12.8,12.8,14.552608258472965 + 06/21 10:40:00,12.8,12.8,14.52767707443751 + 06/21 10:50:00,12.8,12.8,14.504098879467783 + 06/21 11:00:00,12.8,12.8,14.48190095628994 + 06/21 11:10:00,12.8,12.8,14.460989532663069 + 06/21 11:20:00,12.8,12.8,14.45073521106791 + 06/21 11:30:00,12.8,12.8,14.431849340508745 + 06/21 11:40:00,12.8,12.8,14.413287351100305 + 06/21 11:50:00,12.8,12.8,14.394691547210853 + 06/21 12:00:00,12.8,12.8,14.37579176103235 + 06/21 12:10:00,12.8,12.8,14.356741386285587 + 06/21 12:20:00,12.8,12.8,14.328278520090543 + 06/21 12:30:00,12.8,12.8,14.30965834628763 + 06/21 12:40:00,12.8,12.8,14.292103918322818 + 06/21 12:50:00,12.8,12.8,14.276298684143404 + 06/21 13:00:00,12.8,12.8,14.262597879811647 + 06/21 13:10:00,12.8,12.8,14.250345008618958 + 06/21 13:20:00,12.8,12.8,14.242671578947068 + 06/21 13:30:00,12.8,12.8,14.232345425705614 + 06/21 13:40:00,12.8,12.8,14.222477303290687 + 06/21 13:50:00,12.8,12.8,14.212806880998546 + 06/21 14:00:00,12.8,12.8,14.203194894621648 + 06/21 14:10:00,12.8,12.8,14.192999020476995 + 06/21 14:20:00,12.8,12.8,14.187376558816803 + 06/21 14:30:00,12.8,12.8,14.17923975865604 + 06/21 14:40:00,12.8,12.8,14.171695819146202 + 06/21 14:50:00,12.8,12.8,14.164933440858994 + 06/21 15:00:00,12.8,12.8,14.155804318546432 + 06/21 15:05:00,12.8,12.8,16.310981433093678 + 06/21 15:10:00,12.8,12.8,16.306609228971014 + 06/21 15:20:00,12.8,12.8,16.561972506955738 + 06/21 15:30:00,12.8,12.8,16.664199738882485 + 06/21 15:40:00,12.8,12.8,16.741106066200943 + 06/21 15:50:00,12.8,12.8,16.802498566748015 + 06/21 16:00:00,12.8,12.8,16.84716184715849 + 06/21 16:10:00,12.8,12.8,16.91367863614631 + 06/21 16:20:00,12.8,12.8,16.968781580564128 + 06/21 16:30:00,12.8,12.8,16.999814059801353 + 06/21 16:40:00,12.8,12.8,17.027485124060559 + 06/21 16:50:00,12.8,12.8,17.052866619965948 + 06/21 17:00:00,12.8,12.8,17.076475360394164 + 06/21 17:10:00,12.8,12.8,17.11192310957398 + 06/21 17:15:00,12.8,12.8,17.14008268582728 + 06/21 17:20:00,12.8,12.8,17.139688406082539 + 06/21 17:30:00,12.8,12.8,17.16018695087189 + 06/21 17:40:00,12.8,12.8,17.180353345783865 + 06/21 17:50:00,12.8,12.8,17.199624433050624 + 06/21 18:00:00,12.8,12.8,17.218403414073934 + 06/21 18:10:00,12.8,12.8,17.236862300876209 + 06/21 18:20:00,12.8,12.8,17.2547540072896 + 06/21 18:30:00,12.8,12.8,17.27210991527062 + 06/21 18:40:00,12.8,12.8,17.288979105514387 + 06/21 18:50:00,12.8,12.8,17.305371065417498 + 06/21 19:00:00,12.8,12.8,17.32137425319353 + 06/21 19:10:00,12.8,12.8,17.349925412379606 + 06/21 19:20:00,12.8,12.8,17.36601730054514 + 06/21 19:30:00,12.8,12.8,17.381369912344615 + 06/21 19:40:00,12.8,12.8,17.396291448676366 + 06/21 19:50:00,12.8,12.8,17.41080404469064 + 06/21 20:00:00,12.8,12.8,17.42504880114027 + 06/21 20:10:00,12.8,12.8,17.416184828854818 + 06/21 20:20:00,12.8,12.8,17.43302195123006 + 06/21 20:30:00,12.8,12.8,17.445069954114567 + 06/21 20:40:00,12.8,12.8,17.456431874355205 + 06/21 20:50:00,12.8,12.8,17.467331489297267 + 06/21 21:00:00,12.8,12.8,17.47776547331496 + 06/21 21:10:00,12.8,12.8,17.48757311078203 + 06/21 21:20:00,12.8,12.8,17.49692475168027 + 06/21 21:30:00,12.8,12.8,17.50575314258482 + 06/21 21:40:00,12.8,12.8,17.51416557729051 + 06/21 21:50:00,12.8,12.8,17.522169852756258 + 06/21 22:00:00,12.8,12.8,17.529927727300199 + 06/21 22:10:00,12.8,12.8,18.895256660755597 + 06/21 22:20:00,12.8,12.8,19.0441161603281 + 06/21 22:30:00,12.8,12.8,19.11089666155922 + 06/21 22:40:00,12.8,12.8,19.164996295493088 + 06/21 22:50:00,12.8,12.8,19.209270050687466 + 06/21 23:00:00,12.8,12.8,19.247161372503137 + 06/21 23:10:00,12.8,12.8,19.27990779059701 + 06/21 23:20:00,12.8,12.8,19.307272081527019 + 06/21 23:30:00,12.8,12.8,19.332366015932153 + 06/21 23:40:00,12.8,12.8,19.35428907185374 + 06/21 23:50:00,12.8,12.8,19.3745024808072 + 06/21 24:00:00,12.8,12.8,19.393015697823999 + 06/22 00:10:00,12.8,12.8,19.410403881799615 + 06/22 00:20:00,12.8,12.8,19.426721664153236 + 06/22 00:30:00,12.8,12.8,19.442272161045396 + 06/22 00:40:00,12.8,12.8,19.457222178712333 + 06/22 00:50:00,12.8,12.8,19.471607009180795 + 06/22 01:00:00,12.8,12.8,19.485483922367189 + 06/22 01:10:00,12.8,12.8,19.49892889236098 + 06/22 01:20:00,12.8,12.8,19.511942403356785 + 06/22 01:30:00,12.8,12.8,19.524665521803379 + 06/22 01:40:00,12.8,12.8,19.537055930407015 + 06/22 01:50:00,12.8,12.8,19.549139449771049 + 06/22 02:00:00,12.8,12.8,19.56091389457761 + 06/22 02:10:00,12.8,12.8,19.57142686417642 + 06/22 02:20:00,12.8,12.8,19.582130157297173 + 06/22 02:30:00,12.8,12.8,19.592294925820864 + 06/22 02:40:00,12.8,12.8,19.602169387695555 + 06/22 02:50:00,12.8,12.8,19.611671358756195 + 06/22 03:00:00,12.8,12.8,19.620742377940475 + 06/22 03:10:00,12.8,12.8,19.62973400848274 + 06/22 03:20:00,12.8,12.8,19.638549774864388 + 06/22 03:30:00,12.8,12.8,19.647217863160159 + 06/22 03:40:00,12.8,12.8,19.655827020548146 + 06/22 03:50:00,12.8,12.8,19.664210161002417 + 06/22 04:00:00,12.8,12.8,19.672471945337536 + 06/22 04:10:00,12.846246246246248,12.846246246246248,19.68068676825918 + 06/22 04:20:00,12.892492492492494,12.892492492492494,19.688660646353044 + 06/22 04:30:00,12.938738738738739,12.938738738738739,19.696383450468418 + 06/22 04:40:00,12.984984984984987,12.984984984984987,19.70374669504048 + 06/22 04:50:00,13.031231231231232,13.031231231231232,19.710941329962674 + 06/22 05:00:00,13.077477477477478,13.077477477477478,19.71790705395416 + 06/22 05:10:00,13.052252252252253,13.052252252252253,19.72435881380631 + 06/22 05:20:00,13.027027027027028,13.027027027027028,19.730500361227106 + 06/22 05:30:00,13.001801801801803,13.001801801801803,19.736257579071827 + 06/22 05:40:00,12.976576576576577,12.976576576576577,19.741314380928665 + 06/22 05:50:00,12.951351351351353,12.951351351351353,19.745447708831 + 06/22 06:00:00,12.926126126126127,12.926126126126127,19.74859113442401 + 06/22 06:10:00,12.833633633633636,12.833633633633636,17.76032162009179 + 06/22 06:20:00,12.8,12.8,17.505428883138458 + 06/22 06:30:00,12.8,12.8,17.414942540452704 + 06/22 06:40:00,12.8,12.8,17.340571104346087 + 06/22 06:50:00,12.8,12.8,17.283429200750449 + 06/22 07:00:00,12.8,12.8,17.23470938207332 + 06/22 07:05:00,12.8,12.8,15.739033335831398 + 06/22 07:10:00,12.8,12.8,15.745632964172037 + 06/22 07:15:00,12.8,12.8,15.51274171281804 + 06/22 07:20:00,12.8,12.8,15.510985656761655 + 06/22 07:30:00,12.8,12.8,15.403021803417883 + 06/22 07:40:00,12.8,12.8,15.314946291385152 + 06/22 07:50:00,12.8,12.8,15.238652679119264 + 06/22 08:00:00,12.8,12.8,15.171472917808293 + 06/22 08:03:19,12.8,12.8,15.08560179209415 + 06/22 08:06:40,12.8,12.8,15.085241292336994 + 06/22 08:10:00,12.8,12.8,15.08516510360328 + 06/22 08:20:00,12.8,12.8,15.020139761924975 + 06/22 08:30:00,12.8,12.8,14.967271275914325 + 06/22 08:40:00,12.8,12.8,14.917782159067013 + 06/22 08:50:00,12.8,12.8,14.87187686560921 + 06/22 09:00:00,12.8,12.8,14.829587197379779 + 06/22 09:10:00,12.8,12.8,14.790404414859735 + 06/22 09:20:00,12.8,12.8,14.743713387398572 + 06/22 09:30:00,12.8,12.8,14.710112687203316 + 06/22 09:40:00,12.8,12.8,14.679216508438895 + 06/22 09:50:00,12.8,12.8,14.650615749376128 + 06/22 10:00:00,12.8,12.8,14.624227432637453 + 06/22 10:10:00,12.8,12.8,14.599769610256108 + 06/22 10:20:00,12.8,12.8,14.573671213963549 + 06/22 10:30:00,12.8,12.8,14.552699187765692 + 06/22 10:40:00,12.8,12.8,14.532822615253702 + 06/22 10:50:00,12.8,12.8,14.51310732962156 + 06/22 11:00:00,12.8,12.8,14.49315272245267 + 06/22 11:10:00,12.8,12.8,14.472934146137414 + 06/22 11:20:00,12.8,12.8,14.462145861394064 + 06/22 11:30:00,12.8,12.8,14.441651653388777 + 06/22 11:40:00,12.8,12.8,14.421145580619461 + 06/22 11:50:00,12.8,12.8,14.401157293647607 + 06/22 12:00:00,12.8,12.8,14.381723164383287 + 06/22 12:10:00,12.8,12.8,14.36382230387506 + 06/22 12:20:00,12.8,12.8,14.336892376818924 + 06/22 12:30:00,12.8,12.8,14.320036069804577 + 06/22 12:40:00,12.8,12.8,14.304733241649377 + 06/22 12:50:00,12.8,12.8,14.292154594016019 + 06/22 13:00:00,12.8,12.8,14.282539281541546 + 06/22 13:10:00,12.8,12.8,14.27509536841328 + 06/22 13:20:00,12.8,12.8,14.273558711907218 + 06/22 13:30:00,12.8,12.8,14.270599200877572 + 06/22 13:40:00,12.8,12.8,14.268615115398284 + 06/22 13:50:00,12.8,12.8,14.26634212138309 + 06/22 14:00:00,12.8,12.8,14.263223810778861 + 06/22 14:10:00,12.8,12.8,14.260307473465259 + 06/22 14:20:00,12.8,12.8,14.260784840861284 + 06/22 14:30:00,12.8,12.8,14.258195402519814 + 06/22 14:40:00,12.8,12.8,14.254939702831966 + 06/22 14:50:00,12.8,12.8,14.250395706300007 + 06/22 15:00:00,12.8,12.8,14.24211431375163 + 06/22 15:05:00,12.8,12.8,16.3911169970531 + 06/22 15:10:00,12.8,12.8,16.386893157030984 + 06/22 15:20:00,12.8,12.8,16.63622112507028 + 06/22 15:30:00,12.8,12.8,16.7315214880502 + 06/22 15:40:00,12.8,12.8,16.801564103446585 + 06/22 15:50:00,12.8,12.8,16.855628623345909 + 06/22 16:00:00,12.8,12.8,16.895312214618149 + 06/22 16:10:00,12.8,12.8,16.954505941210046 + 06/22 16:20:00,12.8,12.8,17.00492516442405 + 06/22 16:30:00,12.8,12.8,17.032356585876508 + 06/22 16:40:00,12.8,12.8,17.05680628776956 + 06/22 16:50:00,12.8,12.8,17.078684070848554 + 06/22 17:00:00,12.8,12.8,17.098188994170707 + 06/22 17:10:00,12.8,12.8,17.129920992383313 + 06/22 17:15:00,12.8,12.8,17.154414503826229 + 06/22 17:20:00,12.8,12.8,17.15406998095056 + 06/22 17:30:00,12.8,12.8,17.17092793569698 + 06/22 17:40:00,12.8,12.8,17.18786461671889 + 06/22 17:50:00,12.8,12.8,17.204893615230149 + 06/22 18:00:00,12.8,12.8,17.222160210444348 + 06/22 18:10:00,12.8,12.8,17.239676889897369 + 06/22 18:20:00,12.8,12.8,17.25676715866685 + 06/22 18:30:00,12.8,12.8,17.27320858410409 + 06/22 18:40:00,12.8,12.8,17.28896839507537 + 06/22 18:50:00,12.8,12.8,17.30421239537865 + 06/22 19:00:00,12.8,12.8,17.319071399175529 + 06/22 19:10:00,12.8,12.8,17.346105317086957 + 06/22 19:20:00,12.8,12.8,17.360884453678886 + 06/22 19:30:00,12.8,12.8,17.375076948970219 + 06/22 19:40:00,12.8,12.8,17.388963450902044 + 06/22 19:50:00,12.8,12.8,17.402267057395389 + 06/22 20:00:00,12.8,12.8,17.41491169816559 + 06/22 20:10:00,12.8,12.8,17.40683275588896 + 06/22 20:20:00,12.8,12.8,17.424324082729667 + 06/22 20:30:00,12.8,12.8,17.437042886398037 + 06/22 20:40:00,12.8,12.8,17.44910157134157 + 06/22 20:50:00,12.8,12.8,17.460659655186896 + 06/22 21:00:00,12.926126126126127,12.926126126126127,17.471641873858773 + 06/22 21:10:00,12.926126126126127,12.926126126126127,17.48294434988015 + 06/22 21:20:00,12.926126126126127,12.926126126126127,17.49373992015373 + 06/22 21:30:00,12.926126126126127,12.926126126126127,17.503888463048044 + 06/22 21:40:00,12.926126126126127,12.926126126126127,17.513344854146394 + 06/22 21:50:00,12.926126126126127,12.926126126126127,17.522251024472209 + 06/22 22:00:00,12.926126126126127,12.926126126126127,17.530674385317867 + 06/22 22:10:00,12.951351351351353,12.951351351351353,18.895994768545333 + 06/22 22:20:00,12.976576576576577,12.976576576576577,19.045853419286137 + 06/22 22:30:00,13.001801801801803,13.001801801801803,19.11240664083197 + 06/22 22:40:00,13.027027027027028,13.027027027027028,19.16643525998656 + 06/22 22:50:00,13.052252252252253,13.052252252252253,19.20992667516848 + 06/22 23:00:00,13.077477477477478,13.077477477477478,19.24669712026408 + 06/22 23:10:00,13.052252252252253,13.052252252252253,19.27871857769966 + 06/22 23:20:00,13.027027027027028,13.027027027027028,19.30595460549014 + 06/22 23:30:00,13.001801801801803,13.001801801801803,19.33053778031571 + 06/22 23:40:00,12.976576576576577,12.976576576576577,19.35259690639128 + 06/22 23:50:00,12.951351351351353,12.951351351351353,19.372904337816768 + 06/22 24:00:00,12.926126126126127,12.926126126126127,19.39152237091859 + 06/23 00:10:00,12.905105105105106,12.905105105105106,19.408539090892327 + 06/23 00:20:00,12.884084084084084,12.884084084084084,19.42453343785855 + 06/23 00:30:00,12.863063063063063,12.863063063063063,19.438634104987569 + 06/23 00:40:00,12.842042042042042,12.842042042042042,19.45359740262553 + 06/23 00:50:00,12.821021021021022,12.821021021021022,19.46697922448153 + 06/23 01:00:00,12.8,12.8,19.48037253612655 + 06/23 01:10:00,12.8,12.8,19.49332135698588 + 06/23 01:20:00,12.8,12.8,19.50458322346836 + 06/23 01:30:00,12.8,12.8,19.5170752919787 + 06/23 01:40:00,12.8,12.8,19.528068331412798 + 06/23 01:50:00,12.8,12.8,19.539191013403859 + 06/23 02:00:00,12.8,12.8,19.54976205964268 + 06/23 02:10:00,12.8,12.8,19.5588085667926 + 06/23 02:20:00,12.8,12.8,19.56952399754093 + 06/23 02:30:00,12.8,12.8,19.578712527658909 + 06/23 02:40:00,12.8,12.8,19.588207343572404 + 06/23 02:50:00,12.8,12.8,19.597258231823916 + 06/23 03:00:00,12.8,12.8,19.604597125516145 + 06/23 03:10:00,12.8,12.8,19.613302583282644 + 06/23 03:20:00,12.8,12.8,19.62069031463194 + 06/23 03:30:00,12.8,12.8,19.628695361790347 + 06/23 03:40:00,12.8,12.8,19.63526677669677 + 06/23 03:50:00,12.8,12.8,19.643807835304778 + 06/23 04:00:00,12.8,12.8,19.651240240123895 + 06/23 04:10:00,12.8,12.8,19.659724432945198 + 06/23 04:20:00,12.8,12.8,19.667795752864277 + 06/23 04:30:00,12.8,12.8,19.674359188522869 + 06/23 04:40:00,12.8,12.8,19.682949136470904 + 06/23 04:50:00,12.8,12.8,19.69013587822171 + 06/23 05:00:00,12.8,12.8,19.697933005173824 + 06/23 05:10:00,12.8,12.8,19.70517348713687 + 06/23 05:20:00,12.8,12.8,19.710641749697808 + 06/23 05:30:00,12.8,12.8,19.717988356189499 + 06/23 05:40:00,12.8,12.8,19.723520839601293 + 06/23 05:50:00,12.8,12.8,19.728042091037268 + 06/23 06:00:00,12.8,12.8,19.73329863163498 + 06/23 06:10:00,12.8,12.8,17.746380577539719 + 06/23 06:20:00,12.8,12.8,17.492744393977089 + 06/23 06:30:00,12.8,12.8,17.404999394649946 + 06/23 06:40:00,12.8,12.8,17.3336638764578 + 06/23 06:50:00,12.8,12.8,17.279796307755775 + 06/23 07:00:00,12.8,12.8,17.234372243330634 + 06/23 07:05:00,12.8,12.8,15.741710761460196 + 06/23 07:10:00,12.8,12.8,15.748290684006632 + 06/23 07:15:00,12.8,12.8,15.519138311069922 + 06/23 07:20:00,12.8,12.8,15.517384093796269 + 06/23 07:30:00,12.8,12.8,15.413294131100387 + 06/23 07:40:00,12.8,12.8,15.32927385414394 + 06/23 07:50:00,12.8,12.8,15.257246746140583 + 06/23 08:00:00,12.8,12.8,15.194614870815498 + 06/23 08:03:19,12.8,12.8,15.113598347270234 + 06/23 08:06:40,12.8,12.8,15.11311613438582 + 06/23 08:10:00,12.8,12.8,15.113136913091854 + 06/23 08:20:00,12.8,12.8,15.053022697505787 + 06/23 08:30:00,12.8,12.8,15.005544092888798 + 06/23 08:40:00,12.8,12.8,14.961239295236837 + 06/23 08:50:00,12.8,12.8,14.919421564238532 + 06/23 09:00:00,12.8,12.8,14.879604694213125 + 06/23 09:10:00,12.8,12.8,14.841044089391485 + 06/23 09:20:00,12.8,12.8,14.793167205754184 + 06/23 09:30:00,12.8,12.8,14.756670239436689 + 06/23 09:40:00,12.8,12.8,14.721536765033357 + 06/23 09:50:00,12.8,12.8,14.688138339930854 + 06/23 10:00:00,12.8,12.8,14.65673233020195 + 06/23 10:10:00,12.8,12.8,14.627285941345328 + 06/23 10:20:00,12.8,12.8,14.595908587559683 + 06/23 10:30:00,12.8,12.8,14.569198074637864 + 06/23 10:40:00,12.8,12.8,14.543326869273125 + 06/23 10:50:00,12.8,12.8,14.517718723620958 + 06/23 11:00:00,12.8,12.8,14.492079006472626 + 06/23 11:10:00,12.8,12.8,14.466180123642078 + 06/23 11:20:00,12.8,12.8,14.45013363335485 + 06/23 11:30:00,12.8,12.8,14.424867910171607 + 06/23 11:40:00,12.8,12.8,14.399986875243004 + 06/23 11:50:00,12.8,12.8,14.376092302194897 + 06/23 12:00:00,12.8,12.8,14.35309723472951 + 06/23 12:10:00,12.8,12.8,14.331921091240531 + 06/23 12:20:00,12.8,12.8,14.301994805557687 + 06/23 12:30:00,12.8,12.8,14.282308684315313 + 06/23 12:40:00,12.8,12.8,14.263749380360162 + 06/23 12:50:00,12.8,12.8,14.24661119652469 + 06/23 13:00:00,12.8,12.8,14.231025788737446 + 06/23 13:10:00,12.8,12.8,14.216093831733418 + 06/23 13:20:00,12.8,12.8,14.206092261712304 + 06/23 13:30:00,12.8,12.8,14.193764037636365 + 06/23 13:40:00,12.8,12.8,14.183362585730143 + 06/23 13:50:00,12.8,12.8,14.176299774977967 + 06/23 14:00:00,12.8,12.8,14.172721435728205 + 06/23 14:10:00,12.8,12.8,14.17238999865874 + 06/23 14:20:00,12.8,12.8,14.178564801305614 + 06/23 14:30:00,12.8,12.8,14.184446062170276 + 06/23 14:40:00,12.8,12.8,14.190363523929002 + 06/23 14:50:00,12.8,12.8,14.193445707716748 + 06/23 15:00:00,12.8,12.8,14.191467644454566 + 06/23 15:10:00,12.8,12.8,16.336278014570398 + 06/23 15:20:00,12.8,12.8,16.593911205998784 + 06/23 15:30:00,12.8,12.8,16.690904443919597 + 06/23 15:40:00,12.8,12.8,16.76656405521501 + 06/23 15:50:00,12.8,12.8,16.820603819951118 + 06/23 16:00:00,12.8,12.8,16.864099989837979 + 06/23 16:10:00,12.8,12.8,16.922256594212308 + 06/23 16:20:00,12.8,12.8,16.973142848642956 + 06/23 16:30:00,12.8,12.8,17.001046694943399 + 06/23 16:40:00,12.8,12.8,17.026172364626289 + 06/23 16:50:00,12.8,12.8,17.04963145648849 + 06/23 17:00:00,12.8,12.8,17.071568632106023 + 06/23 17:10:00,12.8,12.8,17.10742525401519 + 06/23 17:15:00,12.8,12.8,17.13636982992938 + 06/23 17:20:00,12.8,12.8,17.13596436926345 + 06/23 17:30:00,12.8,12.8,17.157330801829617 + 06/23 17:40:00,12.8,12.8,17.178554461775485 + 06/23 17:50:00,12.8,12.8,17.19891097631549 + 06/23 18:00:00,12.8,12.8,17.21876707932337 + 06/23 18:10:00,12.8,12.8,17.23758367146082 + 06/23 18:20:00,12.8,12.8,17.25580210799091 + 06/23 18:30:00,12.8,12.8,17.273444577984617 + 06/23 18:40:00,12.8,12.8,17.290503527155978 + 06/23 18:50:00,12.8,12.8,17.306923999724604 + 06/23 19:00:00,12.8,12.8,17.322764352121874 + 06/23 19:10:00,12.8,12.8,17.354322868956769 + 06/23 19:20:00,12.8,12.8,17.36825983952853 + 06/23 19:30:00,12.8,12.8,17.38448986510554 + 06/23 19:40:00,12.8,12.8,17.399460635218778 + 06/23 19:50:00,12.8,12.8,17.41464992191524 + 06/23 20:00:00,12.8,12.8,17.42958027354254 + 06/23 20:10:00,12.8,12.8,17.421292384161079 + 06/23 20:20:00,12.8,12.8,17.43863954551971 + 06/23 20:30:00,12.8,12.8,17.45107464201804 + 06/23 20:40:00,12.8,12.8,17.46267844002261 + 06/23 20:50:00,12.8,12.8,17.473677624606233 + 06/23 21:00:00,12.8,12.8,17.484000510006845 + 06/23 21:10:00,12.8,12.8,17.49381879430915 + 06/23 21:20:00,12.8,12.8,17.503068810605986 + 06/23 21:30:00,12.8,12.8,17.51189918655211 + 06/23 21:40:00,12.8,12.8,17.520323766095588 + 06/23 21:50:00,12.8,12.8,17.52833770535857 + 06/23 22:00:00,12.8,12.8,17.536114212008468 + 06/23 22:10:00,12.8,12.8,18.901339362849258 + 06/23 22:20:00,12.8,12.8,19.051527001985197 + 06/23 22:30:00,12.8,12.8,19.11873422836039 + 06/23 22:40:00,12.8,12.8,19.173631431601213 + 06/23 22:50:00,12.8,12.8,19.218362563164868 + 06/23 23:00:00,12.8,12.8,19.25663024342871 + 06/23 23:10:00,12.8,12.8,19.287990339950853 + 06/23 23:20:00,12.8,12.8,19.31680137260029 + 06/23 23:30:00,12.8,12.8,19.34202867940305 + 06/23 23:40:00,12.8,12.8,19.365304613003123 + 06/23 23:50:00,12.8,12.8,19.386527873004437 + 06/23 24:00:00,12.8,12.8,19.406255074104388 + 06/24 00:10:00,12.8,12.8,19.42470205132569 + 06/24 00:20:00,12.8,12.8,19.44096263881854 + 06/24 00:30:00,12.8,12.8,19.45777796509025 + 06/24 00:40:00,12.8,12.8,19.472965360660348 + 06/24 00:50:00,12.8,12.8,19.487894005869817 + 06/24 01:00:00,12.8,12.8,19.502007505645446 + 06/24 01:10:00,12.8,12.8,19.515188349548084 + 06/24 01:20:00,12.8,12.8,19.526480863804499 + 06/24 01:30:00,12.8,12.8,19.53914034402455 + 06/24 01:40:00,12.8,12.8,19.550232340854355 + 06/24 01:50:00,12.8,12.8,19.561432432057154 + 06/24 02:00:00,12.8,12.8,19.571999867926079 + 06/24 02:10:00,12.8,12.8,19.581071903478777 + 06/24 02:20:00,12.8,12.8,19.591707284993569 + 06/24 02:30:00,12.8,12.8,19.600670394656214 + 06/24 02:40:00,12.8,12.8,19.609772472894208 + 06/24 02:50:00,12.8,12.8,19.618202714768118 + 06/24 03:00:00,12.8,12.8,19.624730058190538 + 06/24 03:10:00,12.8,12.8,19.633066647313318 + 06/24 03:20:00,12.8,12.8,19.640070123234226 + 06/24 03:30:00,12.8,12.8,19.647686684726236 + 06/24 03:40:00,12.8,12.8,19.655025727249027 + 06/24 03:50:00,12.8,12.8,19.660759199673089 + 06/24 04:00:00,12.8,12.8,19.668692597269879 + 06/24 04:10:00,12.8,12.8,19.67546723570571 + 06/24 04:20:00,12.8,12.8,19.68190082396486 + 06/24 04:30:00,12.8,12.8,19.688999550707128 + 06/24 04:40:00,12.8,12.8,19.69583658308115 + 06/24 04:50:00,12.8,12.8,19.702813591639058 + 06/24 05:00:00,12.8,12.8,19.709786915617096 + 06/24 05:10:00,12.8,12.8,19.716393831469789 + 06/24 05:20:00,12.8,12.8,19.722729160254745 + 06/24 05:30:00,12.8,12.8,19.728720295070809 + 06/24 05:40:00,12.8,12.8,19.734025174959418 + 06/24 05:50:00,12.8,12.8,19.73845826362827 + 06/24 06:00:00,12.8,12.8,19.741996298730969 + 06/24 06:10:00,12.8,12.8,19.088026157532839 + 06/24 06:20:00,12.8,12.8,19.014012467093026 + 06/24 06:30:00,12.8,12.8,18.985684436145119 + 06/24 06:40:00,12.8,12.8,18.962368696624993 + 06/24 06:50:00,12.8,12.8,18.944458797667467 + 06/24 07:00:00,12.8,12.8,18.929329649603845 + 06/24 07:10:00,12.8,12.8,17.84675020956747 + 06/24 07:20:00,12.8,12.8,17.687482869064686 + 06/24 07:30:00,12.8,12.8,17.62222359156383 + 06/24 07:40:00,12.8,12.8,17.567606872767216 + 06/24 07:50:00,12.8,12.8,17.52299583063873 + 06/24 08:00:00,12.8,12.8,17.483274084729666 + 06/24 08:10:00,12.8,12.8,17.446694143620897 + 06/24 08:20:00,12.8,12.8,17.404063009660768 + 06/24 08:30:00,12.8,12.8,17.372322680218795 + 06/24 08:40:00,12.8,12.8,17.342391134258585 + 06/24 08:50:00,12.8,12.8,17.313617179206696 + 06/24 09:00:00,12.8,12.8,17.285681918294189 + 06/24 09:10:00,12.8,12.8,17.258904117184206 + 06/24 09:20:00,12.8,12.8,17.223798862423207 + 06/24 09:30:00,12.8,12.8,17.197514098605344 + 06/24 09:40:00,12.8,12.8,17.171800869618587 + 06/24 09:50:00,12.8,12.8,17.1471333188097 + 06/24 10:00:00,12.8,12.8,17.123349673418013 + 06/24 10:10:00,12.8,12.8,17.099749713673704 + 06/24 10:20:00,12.8,12.8,17.078341837304728 + 06/24 10:30:00,12.8,12.8,17.059221334601934 + 06/24 10:40:00,12.8,12.8,17.041630238553475 + 06/24 10:50:00,12.8,12.8,17.024832312904008 + 06/24 11:00:00,12.8,12.8,17.008403966892219 + 06/24 11:10:00,12.8,12.8,16.992368729322189 + 06/24 11:20:00,12.8,12.8,16.976200103565433 + 06/24 11:30:00,12.8,12.8,16.959824661075744 + 06/24 11:40:00,12.8,12.8,16.943630850772036 + 06/24 11:50:00,12.8,12.8,16.928200887944955 + 06/24 12:00:00,12.8,12.8,16.9137451432923 + 06/24 12:10:00,12.8,12.8,16.899755403082176 + 06/24 12:20:00,12.8,12.8,16.886794381646536 + 06/24 12:30:00,12.8,12.8,16.874773087330323 + 06/24 12:40:00,12.8,12.8,16.86359962319668 + 06/24 12:50:00,12.8,12.8,16.852981946628327 + 06/24 13:00:00,12.8,12.8,16.84281403860709 + 06/24 13:10:00,12.8,12.8,16.833993158203119 + 06/24 13:20:00,12.8,12.8,16.825572979896763 + 06/24 13:30:00,12.8,12.8,16.81748501038178 + 06/24 13:40:00,12.8,12.8,16.810173719969375 + 06/24 13:50:00,12.8,12.8,16.804306163459935 + 06/24 14:00:00,12.8,12.8,16.80002403065257 + 06/24 14:10:00,12.8,12.8,16.7972962379704 + 06/24 14:20:00,12.8,12.8,16.795606589316728 + 06/24 14:30:00,12.8,12.8,16.79475118837741 + 06/24 14:40:00,12.8,12.8,16.794134111875758 + 06/24 14:50:00,12.8,12.8,16.79300422304721 + 06/24 15:00:00,12.8,12.8,16.791144888314887 + 06/24 15:10:00,12.8,12.8,16.788373173580355 + 06/24 15:20:00,12.8,12.8,16.785288611952958 + 06/24 15:30:00,12.8,12.8,16.782060608041915 + 06/24 15:40:00,12.8,12.8,16.779074581575544 + 06/24 15:50:00,12.8,12.8,16.77678054999043 + 06/24 16:00:00,12.8,12.8,16.77530059792759 + 06/24 16:10:00,12.8,12.8,16.78871861117535 + 06/24 16:15:00,12.8,12.8,16.800203634722079 + 06/24 16:20:00,12.8,12.8,16.799804267607774 + 06/24 16:30:00,12.8,12.8,16.801206364487386 + 06/24 16:40:00,12.8,12.8,16.803493805610274 + 06/24 16:50:00,12.8,12.8,16.805973077940693 + 06/24 17:00:00,12.8,12.8,16.808932617739047 + 06/24 17:10:00,12.8,12.8,18.5711809295761 + 06/24 17:20:00,12.8,12.8,18.78790870074238 + 06/24 17:30:00,12.8,12.8,18.873611370541356 + 06/24 17:40:00,12.8,12.8,18.941694456894579 + 06/24 17:50:00,12.8,12.8,18.99655440834662 + 06/24 18:00:00,12.8,12.8,19.043129457918217 + 06/24 18:10:00,12.8,12.8,19.09725669560555 + 06/24 18:20:00,12.8,12.8,19.134810595162699 + 06/24 18:30:00,12.8,12.8,19.168649440878544 + 06/24 18:40:00,12.8,12.8,19.199727273658927 + 06/24 18:50:00,12.8,12.8,19.228401981509028 + 06/24 19:00:00,12.8,12.8,19.255083932390048 + 06/24 19:10:00,12.8,12.8,19.280177814016658 + 06/24 19:20:00,12.8,12.8,19.303740386217059 + 06/24 19:30:00,12.8,12.8,19.326011558650476 + 06/24 19:40:00,12.8,12.8,19.346911982175774 + 06/24 19:50:00,12.8,12.8,19.366491205405013 + 06/24 20:00:00,12.8,12.8,19.38497958398902 + 06/24 20:10:00,12.8,12.8,19.379961270315108 + 06/24 20:20:00,12.8,12.8,19.396238604454667 + 06/24 20:30:00,12.8,12.8,19.411420538993846 + 06/24 20:40:00,12.8,12.8,19.42572208487433 + 06/24 20:50:00,12.8,12.8,19.439129324331458 + 06/24 21:00:00,12.8,12.8,19.451989114065275 + 06/24 21:10:00,12.8,12.8,19.46375261170092 + 06/24 21:20:00,12.8,12.8,19.474995629033154 + 06/24 21:30:00,12.8,12.8,19.48600430663664 + 06/24 21:40:00,12.8,12.8,19.496691508910549 + 06/24 21:50:00,12.8,12.8,19.507286225417947 + 06/24 22:00:00,12.8,12.8,19.51772388502962 + 06/24 22:10:00,12.8,12.8,19.528401360867905 + 06/24 22:20:00,12.8,12.8,19.537916661523214 + 06/24 22:30:00,12.8,12.8,19.547826574068546 + 06/24 22:40:00,12.8,12.8,19.557378112870699 + 06/24 22:50:00,12.8,12.8,19.56683703634204 + 06/24 23:00:00,12.8,12.8,19.57603211013402 + 06/24 23:10:00,12.8,12.8,19.58466430176734 + 06/24 23:20:00,12.8,12.8,19.593231621420743 + 06/24 23:30:00,12.8,12.8,19.601378578437989 + 06/24 23:40:00,12.8,12.8,19.609330677229054 + 06/24 23:50:00,12.8,12.8,19.61696098937361 + 06/24 24:00:00,12.8,12.8,19.624332141374933 + 06/25 00:10:00,12.8,12.8,19.630243453857806 + 06/25 00:20:00,12.8,12.8,19.63796377319366 + 06/25 00:30:00,12.8,12.8,19.644423383057466 + 06/25 00:40:00,12.8,12.8,19.651397915783944 + 06/25 00:50:00,12.8,12.8,19.6580243111445 + 06/25 01:00:00,12.8,12.8,19.663911195457666 + 06/25 01:10:00,12.8,12.8,19.669777887747594 + 06/25 01:20:00,12.8,12.8,19.67597126104506 + 06/25 01:30:00,12.8,12.8,19.682523794667597 + 06/25 01:40:00,12.8,12.8,19.689199940886163 + 06/25 01:50:00,12.8,12.8,19.69597132178476 + 06/25 02:00:00,12.8,12.8,19.702668117289066 + 06/25 02:10:00,12.8,12.8,19.709160153335448 + 06/25 02:20:00,12.8,12.8,19.715491353385667 + 06/25 02:30:00,12.8,12.8,19.72160186896618 + 06/25 02:40:00,12.8,12.8,19.727482861525144 + 06/25 02:50:00,12.8,12.8,19.73307113531041 + 06/25 03:00:00,12.8,12.8,19.738538711328674 + 06/25 03:10:00,12.8,12.8,19.743874049999467 + 06/25 03:20:00,12.8,12.8,19.749116152807838 + 06/25 03:30:00,12.8,12.8,19.754309329017347 + 06/25 03:40:00,12.8,12.8,19.75941808502563 + 06/25 03:50:00,12.8,12.8,19.76455026991463 + 06/25 04:00:00,12.8,12.8,19.769828869412956 + 06/25 04:10:00,12.8,12.8,19.77546768847909 + 06/25 04:20:00,12.8,12.8,19.780707556779555 + 06/25 04:30:00,12.8,12.8,19.785391171564159 + 06/25 04:40:00,12.8,12.8,19.78956482922138 + 06/25 04:50:00,12.8,12.8,19.79338862890681 + 06/25 05:00:00,12.8,12.8,19.796863529897374 + 06/25 05:10:00,12.8,12.8,19.80011006766788 + 06/25 05:20:00,12.8,12.8,19.80310437305623 + 06/25 05:30:00,12.8,12.8,19.80580620884175 + 06/25 05:40:00,12.8,12.8,19.80810190285583 + 06/25 05:50:00,12.8,12.8,19.80951028765354 + 06/25 06:00:00,12.8,12.8,19.810130128854703 + 06/25 06:10:00,12.8,12.8,19.832158542457685 + 06/25 06:20:00,12.8,12.8,19.831567899205468 + 06/25 06:30:00,12.8,12.8,19.830469444381266 + 06/25 06:40:00,12.8,12.8,19.828875334640626 + 06/25 06:50:00,12.8,12.8,19.826429814385358 + 06/25 07:00:00,12.8,12.8,19.82308884444569 + 06/25 07:10:00,12.8,12.8,18.42833413235738 + 06/25 07:20:00,12.8,12.8,18.245003673587207 + 06/25 07:30:00,12.8,12.8,18.173511132158234 + 06/25 07:40:00,12.8,12.8,18.113860000927013 + 06/25 07:50:00,12.8,12.8,18.066339050395834 + 06/25 08:00:00,12.8,12.8,18.025154195223338 + 06/25 08:10:00,12.8,12.8,17.98742483696224 + 06/25 08:20:00,12.8,12.8,17.943699984450104 + 06/25 08:30:00,12.8,12.8,17.910483537188108 + 06/25 08:40:00,12.8,12.8,17.8789267922963 + 06/25 08:50:00,12.8,12.8,17.848967223716309 + 06/25 09:00:00,12.8,12.8,17.820569404614074 + 06/25 09:10:00,12.8,12.8,17.793466780419434 + 06/25 09:20:00,12.8,12.8,17.759134869680076 + 06/25 09:30:00,12.8,12.8,17.73477217305485 + 06/25 09:40:00,12.8,12.8,17.71155983548277 + 06/25 09:50:00,12.8,12.8,17.68884748525719 + 06/25 10:00:00,12.8,12.8,17.666350223109455 + 06/25 10:10:00,12.8,12.8,17.644181727240189 + 06/25 10:20:00,12.8,12.8,17.62263300379974 + 06/25 10:30:00,12.8,12.8,17.601675294486463 + 06/25 10:40:00,12.8,12.8,17.581589243073816 + 06/25 10:50:00,12.8,12.8,17.56310441218362 + 06/25 11:00:00,12.8,12.8,17.546337417686578 + 06/25 11:10:00,12.8,12.8,17.531657418262936 + 06/25 11:20:00,12.8,12.8,17.517861322412835 + 06/25 11:30:00,12.8,12.8,17.504800767514316 + 06/25 11:40:00,12.8,12.8,17.492233898869175 + 06/25 11:50:00,12.8,12.8,17.479908383744868 + 06/25 12:00:00,12.8,12.8,17.467963612185487 + 06/25 12:10:00,12.8,12.8,17.455879909295115 + 06/25 12:20:00,12.8,12.8,17.4441430931913 + 06/25 12:30:00,12.8,12.8,17.43286744012324 + 06/25 12:40:00,12.8,12.8,17.422323043710585 + 06/25 12:50:00,12.8,12.8,17.412795180774589 + 06/25 13:00:00,12.8,12.8,17.404362361237099 + 06/25 13:10:00,12.8,12.8,17.397205026675523 + 06/25 13:20:00,12.8,12.8,17.391082504844339 + 06/25 13:30:00,12.8,12.8,17.385786889553928 + 06/25 13:40:00,12.8,12.8,17.381205803808635 + 06/25 13:50:00,12.8,12.8,17.377034754826967 + 06/25 14:00:00,12.8,12.8,17.37309451312937 + 06/25 14:10:00,12.8,12.8,17.36999937984863 + 06/25 14:20:00,12.8,12.8,17.367189894517595 + 06/25 14:30:00,12.8,12.8,17.364580676152035 + 06/25 14:40:00,12.8,12.8,17.362008791124674 + 06/25 14:50:00,12.8,12.8,17.359489145874777 + 06/25 15:00:00,12.8,12.8,17.35695841840803 + 06/25 15:10:00,12.8,12.8,18.773549049022316 + 06/25 15:20:00,12.8,12.8,18.927118775544618 + 06/25 15:30:00,12.8,12.8,18.98869761517525 + 06/25 15:40:00,12.8,12.8,19.03703124871388 + 06/25 15:50:00,12.8,12.8,19.074442910798877 + 06/25 16:00:00,12.8,12.8,19.10492916989397 + 06/25 16:10:00,12.8,12.8,19.132980542194024 + 06/25 16:20:00,12.8,12.8,19.166969235575175 + 06/25 16:30:00,12.8,12.8,19.18972049249914 + 06/25 16:40:00,12.8,12.8,19.210730555169229 + 06/25 16:50:00,12.8,12.8,19.230550687900587 + 06/25 17:00:00,12.8,12.8,19.249558710876774 + 06/25 17:10:00,12.8,12.8,19.268600794610728 + 06/25 17:20:00,12.8,12.8,19.30452890157876 + 06/25 17:30:00,12.8,12.8,19.322479168652717 + 06/25 17:40:00,12.8,12.8,19.33875623690127 + 06/25 17:50:00,12.8,12.8,19.354895851122778 + 06/25 18:00:00,12.8,12.8,19.370490286170445 + 06/25 18:10:00,12.8,12.8,19.385105977972427 + 06/25 18:20:00,12.8,12.8,19.399404080238957 + 06/25 18:30:00,12.8,12.8,19.413406952174684 + 06/25 18:40:00,12.8,12.8,19.42703228169667 + 06/25 18:50:00,12.8,12.8,19.440319921483949 + 06/25 19:00:00,12.8,12.8,19.4532297815177 + 06/25 19:10:00,12.8,12.8,19.466661985644906 + 06/25 19:20:00,12.8,12.8,19.479967567321315 + 06/25 19:30:00,12.8,12.8,19.493223331813807 + 06/25 19:40:00,12.8,12.8,19.506363805285596 + 06/25 19:50:00,12.8,12.8,19.519541670976879 + 06/25 20:00:00,12.8,12.8,19.532762718882549 + 06/25 20:10:00,12.8,12.8,19.52300341736182 + 06/25 20:20:00,12.8,12.8,19.534652587074676 + 06/25 20:30:00,12.8,12.8,19.545634807197169 + 06/25 20:40:00,12.8,12.8,19.555902926854569 + 06/25 20:50:00,12.8,12.8,19.56552145890864 + 06/25 21:00:00,12.8,12.8,19.574464283498278 + 06/25 21:10:00,12.8,12.8,19.5828048306588 + 06/25 21:20:00,12.8,12.8,19.590438426167084 + 06/25 21:30:00,12.8,12.8,19.597546925573775 + 06/25 21:40:00,12.8,12.8,19.60408748313318 + 06/25 21:50:00,12.8,12.8,19.61011930066838 + 06/25 22:00:00,12.8,12.8,19.615702543916638 + 06/25 22:10:00,12.8,12.8,19.620857700149327 + 06/25 22:20:00,12.8,12.8,19.626006946978344 + 06/25 22:30:00,12.8,12.8,19.63124215371768 + 06/25 22:40:00,12.8,12.8,19.63656916399696 + 06/25 22:50:00,12.8,12.8,19.641989427915659 + 06/25 23:00:00,12.8,12.8,19.647438305152919 + 06/25 23:10:00,12.8,12.8,19.65310685895108 + 06/25 23:20:00,12.8,12.8,19.659152415489588 + 06/25 23:30:00,12.8,12.8,19.6650179180831 + 06/25 23:40:00,12.8,12.8,19.670954646492257 + 06/25 23:50:00,12.8,12.8,19.676789214337196 + 06/25 24:00:00,12.8,12.8,19.68131312939154 + 06/26 00:10:00,12.8,12.8,19.68753110954724 + 06/26 00:20:00,12.8,12.8,19.692337809455205 + 06/26 00:30:00,12.8,12.8,19.697402157592508 + 06/26 00:40:00,12.8,12.8,19.70067410045986 + 06/26 00:50:00,12.8,12.8,19.70546696278396 + 06/26 01:00:00,12.8,12.8,19.70893531743004 + 06/26 01:10:00,12.8,12.8,19.713134404302975 + 06/26 01:20:00,12.8,12.8,19.715820525598788 + 06/26 01:30:00,12.8,12.8,19.72049912239098 + 06/26 01:40:00,12.8,12.8,19.724077539560534 + 06/26 01:50:00,12.8,12.8,19.728422341951118 + 06/26 02:00:00,12.8,12.8,19.731396143259056 + 06/26 02:10:00,12.8,12.8,19.736088197709873 + 06/26 02:20:00,12.8,12.8,19.739317948838875 + 06/26 02:30:00,12.8,12.8,19.742687991578085 + 06/26 02:40:00,12.8,12.8,19.744171320482587 + 06/26 02:50:00,12.8,12.8,19.747230599466538 + 06/26 03:00:00,12.8,12.8,19.748828779403874 + 06/26 03:10:00,12.8,12.8,19.750800329326319 + 06/26 03:20:00,12.8,12.8,19.75112275368532 + 06/26 03:30:00,12.8,12.8,19.753559557910035 + 06/26 03:40:00,12.8,12.8,19.75500670563204 + 06/26 03:50:00,12.8,12.8,19.757218761257869 + 06/26 04:00:00,12.8,12.8,19.75789199714437 + 06/26 04:10:00,12.8,12.8,19.760709721568614 + 06/26 04:20:00,12.8,12.8,19.76232331467329 + 06/26 04:30:00,12.8,12.8,19.764751774892063 + 06/26 04:40:00,12.8,12.8,19.765578238084367 + 06/26 04:50:00,12.8,12.8,19.768553569056917 + 06/26 05:00:00,12.8,12.8,19.770349276330746 + 06/26 05:10:00,12.8,12.8,19.77275415535383 + 06/26 05:20:00,12.8,12.8,19.773587850243318 + 06/26 05:30:00,12.8,12.8,19.776554791786976 + 06/26 05:40:00,12.8,12.8,19.777265005871077 + 06/26 05:50:00,12.8,12.8,19.779720366437166 + 06/26 06:00:00,12.8,12.8,19.780807483327039 + 06/26 06:10:00,12.8,12.8,17.792058296292269 + 06/26 06:20:00,12.8,12.8,17.53712581961193 + 06/26 06:30:00,12.8,12.8,17.44703948733021 + 06/26 06:40:00,12.8,12.8,17.374304255341813 + 06/26 06:50:00,12.8,12.8,17.319007124299636 + 06/26 07:00:00,12.8,12.8,17.27236931891333 + 06/26 07:05:00,12.8,12.8,15.77974010771384 + 06/26 07:10:00,12.8,12.8,15.78628659234818 + 06/26 07:20:00,12.8,12.8,15.558812309101464 + 06/26 07:30:00,12.8,12.8,15.44886009118376 + 06/26 07:40:00,12.8,12.8,15.36306008975032 + 06/26 07:50:00,12.8,12.8,15.290629350265017 + 06/26 08:00:00,12.8,12.8,15.227965650142302 + 06/26 08:03:19,12.8,12.8,15.1472207395824 + 06/26 08:06:40,12.8,12.8,15.146364249480158 + 06/26 08:10:00,12.8,12.8,15.146574473214042 + 06/26 08:20:00,12.8,12.8,15.086746264960523 + 06/26 08:30:00,12.8,12.8,15.039860928184437 + 06/26 08:40:00,12.8,12.8,14.99689680635492 + 06/26 08:50:00,12.8,12.8,14.957655077224726 + 06/26 09:00:00,12.8,12.8,14.921992024921352 + 06/26 09:10:00,12.8,12.8,14.889791904527018 + 06/26 09:20:00,12.8,12.8,14.85006989912739 + 06/26 09:30:00,12.8,12.8,14.823411150615224 + 06/26 09:40:00,12.8,12.8,14.798915583066073 + 06/26 09:50:00,12.8,12.8,14.7757952731485 + 06/26 10:00:00,12.8,12.8,14.75329220594128 + 06/26 10:10:00,12.8,12.8,14.731031933963527 + 06/26 10:20:00,12.8,12.8,14.705622410738496 + 06/26 10:30:00,12.8,12.8,14.683889159848262 + 06/26 10:40:00,12.8,12.8,14.66127717070512 + 06/26 10:50:00,12.8,12.8,14.635960704441603 + 06/26 11:00:00,12.8,12.8,14.60735098235233 + 06/26 11:10:00,12.8,12.8,14.575945517087117 + 06/26 11:20:00,12.8,12.8,14.55227173131688 + 06/26 11:30:00,12.8,12.8,14.517830229681652 + 06/26 11:40:00,12.8,12.8,14.484409201040286 + 06/26 11:50:00,12.8,12.8,14.455457194334569 + 06/26 12:00:00,12.8,12.8,14.431892730061002 + 06/26 12:10:00,12.8,12.8,14.412797683163257 + 06/26 12:20:00,12.8,12.8,14.387685818941371 + 06/26 12:30:00,12.8,12.8,14.374908358182406 + 06/26 12:40:00,12.8,12.8,14.363235533213553 + 06/26 12:50:00,12.8,12.8,14.350444986573442 + 06/26 13:00:00,12.8,12.8,14.33579402599113 + 06/26 13:10:00,12.8,12.8,14.320676598406746 + 06/26 13:20:00,12.8,12.8,14.308043406954602 + 06/26 13:30:00,12.8,12.8,14.291300163877854 + 06/26 13:40:00,12.8,12.8,14.274711180645245 + 06/26 13:50:00,12.8,12.8,14.259357806167424 + 06/26 14:00:00,12.8,12.8,14.245524670306894 + 06/26 14:10:00,12.8,12.8,14.232161603041956 + 06/26 14:20:00,12.8,12.8,14.223700813242921 + 06/26 14:30:00,12.8,12.8,14.213425602214717 + 06/26 14:40:00,12.8,12.8,14.204604858707978 + 06/26 14:50:00,12.8,12.8,14.196671379634335 + 06/26 15:00:00,12.8,12.8,14.189391272757494 + 06/26 15:05:00,12.8,12.8,16.34462159278084 + 06/26 15:10:00,12.8,12.8,16.33885912963926 + 06/26 15:20:00,12.8,12.8,16.594330393388906 + 06/26 15:30:00,12.8,12.8,16.697684894884725 + 06/26 15:40:00,12.8,12.8,16.771398430453936 + 06/26 15:50:00,12.8,12.8,16.832089936231115 + 06/26 16:00:00,12.8,12.8,16.884503548955278 + 06/26 16:10:00,12.8,12.8,16.959681250561347 + 06/26 16:20:00,12.8,12.8,17.025512723157534 + 06/26 16:30:00,12.8,12.8,17.069743848767485 + 06/26 16:40:00,12.8,12.8,17.110278001658018 + 06/26 16:50:00,12.8,12.8,17.14534273065398 + 06/26 17:00:00,12.8,12.8,17.17458707389506 + 06/26 17:10:00,12.8,12.8,17.210875608672287 + 06/26 17:15:00,12.8,12.8,17.236795760709304 + 06/26 17:20:00,12.8,12.8,17.236389336380094 + 06/26 17:30:00,12.8,12.8,17.252353136427183 + 06/26 17:40:00,12.8,12.8,17.26711753285109 + 06/26 17:50:00,12.8,12.8,17.281895254063124 + 06/26 18:00:00,12.8,12.8,17.29787437179562 + 06/26 18:10:00,12.8,12.8,17.314893530244718 + 06/26 18:20:00,12.8,12.8,17.332393352115717 + 06/26 18:30:00,12.8,12.8,17.34997329335244 + 06/26 18:40:00,12.8,12.8,17.367228374103229 + 06/26 18:50:00,12.8,12.8,17.383705955047014 + 06/26 19:00:00,12.8,12.8,17.399306807340805 + 06/26 19:10:00,12.8,12.8,17.426997454436426 + 06/26 19:20:00,12.8,12.8,17.44184430129811 + 06/26 19:30:00,12.8,12.8,17.45566567974113 + 06/26 19:40:00,12.8,12.8,17.468959447751389 + 06/26 19:50:00,12.8,12.8,17.481794344906367 + 06/26 20:00:00,12.8,12.8,17.494284085142909 + 06/26 20:10:00,12.8,12.8,17.483777111884185 + 06/26 20:20:00,12.8,12.8,17.498745272143468 + 06/26 20:30:00,12.8,12.8,17.508754863328265 + 06/26 20:40:00,12.8,12.8,17.51788628926502 + 06/26 20:50:00,12.8,12.8,17.526342887154056 + 06/26 21:00:00,12.8,12.8,17.534139818073109 + 06/26 21:10:00,12.8,12.8,17.54159842814101 + 06/26 21:20:00,12.8,12.8,17.548707732257055 + 06/26 21:30:00,12.8,12.8,17.55561478932176 + 06/26 21:40:00,12.8,12.8,17.562335058530974 + 06/26 21:50:00,12.8,12.8,17.568842813148327 + 06/26 22:00:00,12.8,12.8,17.57527543746862 + 06/26 22:10:00,12.8,12.8,18.938142674450874 + 06/26 22:20:00,12.8,12.8,19.08723288049004 + 06/26 22:30:00,12.8,12.8,19.152659907440705 + 06/26 22:40:00,12.8,12.8,19.20567241037149 + 06/26 22:50:00,12.8,12.8,19.246370645994323 + 06/26 23:00:00,12.8,12.8,19.279471924595894 + 06/26 23:10:00,12.8,12.8,19.307714949177478 + 06/26 23:20:00,12.8,12.8,19.332622020313118 + 06/26 23:30:00,12.8,12.8,19.354588048906835 + 06/26 23:40:00,12.8,12.8,19.37447689251756 + 06/26 23:50:00,12.8,12.8,19.392485254664267 + 06/26 24:00:00,12.8,12.8,19.408936931063538 + 06/27 00:10:00,12.8,12.8,19.42352739476548 + 06/27 00:20:00,12.8,12.8,19.438493014798895 + 06/27 00:30:00,12.8,12.8,19.452151897859929 + 06/27 00:40:00,12.8,12.8,19.46576418364473 + 06/27 00:50:00,12.8,12.8,19.477803723194748 + 06/27 01:00:00,12.8,12.8,19.490968522062123 + 06/27 01:10:00,12.8,12.8,19.50288467955624 + 06/27 01:20:00,12.8,12.8,19.514981575375218 + 06/27 01:30:00,12.8,12.8,19.526760385012066 + 06/27 01:40:00,12.8,12.8,19.53709450367294 + 06/27 01:50:00,12.8,12.8,19.549076700839846 + 06/27 02:00:00,12.8,12.8,19.559795365599329 + 06/27 02:10:00,12.8,12.8,19.570789765189127 + 06/27 02:20:00,12.8,12.8,19.581603718585535 + 06/27 02:30:00,12.8,12.8,19.59108116593538 + 06/27 02:40:00,12.833633633633636,12.833633633633636,19.602502377647867 + 06/27 02:50:00,12.87987987987988,12.87987987987988,19.612768909867414 + 06/27 03:00:00,12.926126126126127,12.926126126126127,19.623523149539879 + 06/27 03:10:00,12.951351351351353,12.951351351351353,19.634065844930765 + 06/27 03:20:00,12.976576576576577,12.976576576576577,19.644401234984789 + 06/27 03:30:00,13.001801801801803,13.001801801801803,19.652728289919595 + 06/27 03:40:00,13.027027027027028,13.027027027027028,19.662129267362695 + 06/27 03:50:00,13.052252252252253,13.052252252252253,19.670729920428248 + 06/27 04:00:00,13.077477477477478,13.077477477477478,19.679316527930014 + 06/27 04:10:00,13.077477477477478,13.077477477477478,19.68733245634153 + 06/27 04:20:00,13.077477477477478,13.077477477477478,19.69505771534634 + 06/27 04:30:00,13.077477477477478,13.077477477477478,19.70259046045964 + 06/27 04:40:00,13.077477477477478,13.077477477477478,19.70991617715207 + 06/27 04:50:00,13.077477477477478,13.077477477477478,19.717079987724227 + 06/27 05:00:00,13.077477477477478,13.077477477477478,19.72416175447971 + 06/27 05:10:00,13.077477477477478,13.077477477477478,19.731356743052726 + 06/27 05:20:00,13.077477477477478,13.077477477477478,19.73840287518527 + 06/27 05:30:00,13.077477477477478,13.077477477477478,19.745250965127803 + 06/27 05:40:00,13.077477477477478,13.077477477477478,19.751599399015736 + 06/27 05:50:00,13.077477477477478,13.077477477477478,19.757171659592335 + 06/27 06:00:00,13.077477477477478,13.077477477477478,19.7619674420054 + 06/27 06:10:00,13.006006006006008,13.006006006006008,17.775906534055868 + 06/27 06:20:00,12.934534534534535,12.934534534534535,17.522994648896959 + 06/27 06:30:00,12.863063063063063,12.863063063063063,17.43433671272345 + 06/27 06:40:00,12.8,12.8,17.36192196724553 + 06/27 06:50:00,12.8,12.8,17.30643229737044 + 06/27 07:00:00,12.8,12.8,17.259005009739139 + 06/27 07:05:00,12.8,12.8,15.76474290477881 + 06/27 07:10:00,12.8,12.8,15.771307154755164 + 06/27 07:15:00,12.8,12.8,15.53889801320003 + 06/27 07:20:00,12.8,12.8,15.53715135997374 + 06/27 07:30:00,12.8,12.8,15.42871326261964 + 06/27 07:40:00,12.8,12.8,15.339573587732826 + 06/27 07:50:00,12.8,12.8,15.262386065733166 + 06/27 08:00:00,12.8,12.8,15.194723292440007 + 06/27 08:03:19,12.8,12.8,15.108781681184482 + 06/27 08:06:40,12.8,12.8,15.108401897814249 + 06/27 08:10:00,12.8,12.8,15.108334625541131 + 06/27 08:20:00,12.8,12.8,15.043690360571217 + 06/27 08:30:00,12.8,12.8,14.991750928295954 + 06/27 08:40:00,12.8,12.8,14.943331282885684 + 06/27 08:50:00,12.8,12.8,14.898041572191785 + 06/27 09:00:00,12.8,12.8,14.855604076029476 + 06/27 09:10:00,12.8,12.8,14.81555345886976 + 06/27 09:20:00,12.8,12.8,14.767054767588098 + 06/27 09:30:00,12.8,12.8,14.730769864320735 + 06/27 09:40:00,12.8,12.8,14.69627664162882 + 06/27 09:50:00,12.8,12.8,14.663323350174294 + 06/27 10:00:00,12.8,12.8,14.631868217779525 + 06/27 10:10:00,12.8,12.8,14.60175292016652 + 06/27 10:20:00,12.8,12.8,14.569367670416675 + 06/27 10:30:00,12.8,12.8,14.541518950674057 + 06/27 10:40:00,12.8,12.8,14.514863826197403 + 06/27 10:50:00,12.8,12.8,14.489557942563789 + 06/27 11:00:00,12.8,12.8,14.465486520972729 + 06/27 11:10:00,12.8,12.8,14.442194511653879 + 06/27 11:20:00,12.8,12.8,14.429724214468003 + 06/27 11:30:00,12.8,12.8,14.408764443638706 + 06/27 11:40:00,12.8,12.8,14.38855647754461 + 06/27 11:50:00,12.8,12.8,14.369079855178783 + 06/27 12:00:00,12.8,12.8,14.350113570960268 + 06/27 12:10:00,12.8,12.8,14.332867159179285 + 06/27 12:20:00,12.8,12.8,14.306150934170699 + 06/27 12:30:00,12.8,12.8,14.289055776650187 + 06/27 12:40:00,12.8,12.8,14.272381510960218 + 06/27 12:50:00,12.8,12.8,14.256140627004936 + 06/27 13:00:00,12.8,12.8,14.240496115306506 + 06/27 13:10:00,12.8,12.8,14.224866678048086 + 06/27 13:20:00,12.8,12.8,14.214021154683972 + 06/27 13:30:00,12.8,12.8,14.20110739713798 + 06/27 13:40:00,12.8,12.8,14.18937004162168 + 06/27 13:50:00,12.8,12.8,14.17889045790823 + 06/27 14:00:00,12.8,12.8,14.16956647022886 + 06/27 14:10:00,12.8,12.8,14.160928646833943 + 06/27 14:20:00,12.8,12.8,14.156748987043951 + 06/27 14:30:00,12.8,12.8,14.150210873591507 + 06/27 14:40:00,12.8,12.8,14.144983449487736 + 06/27 14:50:00,12.8,12.8,14.140179354809338 + 06/27 15:00:00,12.8,12.8,14.135680345783327 + 06/27 15:05:00,12.8,12.8,16.29218544603036 + 06/27 15:10:00,12.8,12.8,16.28737580686987 + 06/27 15:20:00,12.8,12.8,16.54155037737778 + 06/27 15:30:00,12.8,12.8,16.643604140390616 + 06/27 15:40:00,12.8,12.8,16.719890721165475 + 06/27 15:50:00,12.8,12.8,16.77843768878533 + 06/27 16:00:00,12.8,12.8,16.8263578714526 + 06/27 16:10:00,12.8,12.8,16.894051808364745 + 06/27 16:20:00,12.8,12.8,16.950869661279179 + 06/27 16:30:00,12.8,12.8,16.98495538975922 + 06/27 16:40:00,12.8,12.8,17.015570789695038 + 06/27 16:50:00,12.8,12.8,17.04289375071362 + 06/27 17:00:00,12.8,12.8,17.067144264111389 + 06/27 17:10:00,12.8,12.8,17.100660936659243 + 06/27 17:15:00,12.8,12.8,17.126271492913867 + 06/27 17:20:00,12.8,12.8,17.12588504155186 + 06/27 17:30:00,12.8,12.8,17.14357513838133 + 06/27 17:40:00,12.8,12.8,17.161159786363819 + 06/27 17:50:00,12.8,12.8,17.178298850174458 + 06/27 18:00:00,12.8,12.8,17.195478983920226 + 06/27 18:10:00,12.8,12.8,17.214114881763416 + 06/27 18:20:00,12.8,12.8,17.232410687726785 + 06/27 18:30:00,12.8,12.8,17.25029903477567 + 06/27 18:40:00,12.8,12.8,17.267746194440745 + 06/27 18:50:00,12.8,12.8,17.284821889151318 + 06/27 19:00:00,12.8,12.8,17.30150239344419 + 06/27 19:10:00,12.8,12.8,17.33079498861452 + 06/27 19:20:00,12.8,12.8,17.347692507166057 + 06/27 19:30:00,12.8,12.8,17.363820672701839 + 06/27 19:40:00,12.8,12.8,17.379589233053296 + 06/27 19:50:00,12.8,12.8,17.395007327443655 + 06/27 20:00:00,12.8,12.8,17.41011580966703 + 06/27 20:10:00,12.8,12.8,17.401984386604256 + 06/27 20:20:00,12.8,12.8,17.41937790785404 + 06/27 20:30:00,12.8,12.8,17.43172887123397 + 06/27 20:40:00,12.8,12.8,17.443146505680926 + 06/27 20:50:00,12.8,12.8,17.45388738179597 + 06/27 21:00:00,12.8,12.8,17.463906232874537 + 06/27 21:10:00,12.8,12.8,17.473506153094986 + 06/27 21:20:00,12.8,12.8,17.48253254915302 + 06/27 21:30:00,12.8,12.8,17.491217299319776 + 06/27 21:40:00,12.8,12.8,17.49961473303535 + 06/27 21:50:00,12.8,12.8,17.507724306673283 + 06/27 22:00:00,12.8,12.8,17.515579046993964 + 06/27 22:10:00,12.8,12.8,18.880810630149207 + 06/27 22:20:00,12.8,12.8,19.02971714411855 + 06/27 22:30:00,12.8,12.8,19.09577549197998 + 06/27 22:40:00,12.8,12.8,19.14898440520396 + 06/27 22:50:00,12.8,12.8,19.191781424018708 + 06/27 23:00:00,12.8,12.8,19.227835204813969 + 06/27 23:10:00,12.8,12.8,19.259138985442 + 06/27 23:20:00,12.8,12.8,19.28591349465748 + 06/27 23:30:00,12.8,12.8,19.310656375199757 + 06/27 23:40:00,12.8,12.8,19.333335167733297 + 06/27 23:50:00,12.8,12.8,19.354431295091709 + 06/27 24:00:00,12.8,12.8,19.37416734925341 + 06/28 00:10:00,12.8,12.8,19.39280699223456 + 06/28 00:20:00,12.8,12.8,19.4103599882714 + 06/28 00:30:00,12.8,12.8,19.42690602109313 + 06/28 00:40:00,12.8,12.8,19.442545606046044 + 06/28 00:50:00,12.8,12.8,19.457292626670069 + 06/28 01:00:00,12.8,12.8,19.471389644027587 + 06/28 01:10:00,12.8,12.8,19.48496371350151 + 06/28 01:20:00,12.8,12.8,19.498045695370249 + 06/28 01:30:00,12.8,12.8,19.510721944820909 + 06/28 01:40:00,12.8,12.8,19.522977739293546 + 06/28 01:50:00,12.8,12.8,19.534925661792675 + 06/28 02:00:00,12.8,12.8,19.546607096901597 + 06/28 02:10:00,12.8,12.8,19.558008258823347 + 06/28 02:20:00,12.8,12.8,19.56894855375173 + 06/28 02:30:00,12.8,12.8,19.57937076029633 + 06/28 02:40:00,12.8,12.8,19.58929345375182 + 06/28 02:50:00,12.8,12.8,19.597531071843258 + 06/28 03:00:00,12.8,12.8,19.607332004230167 + 06/28 03:10:00,12.8,12.8,19.61554437289456 + 06/28 03:20:00,12.8,12.8,19.624015865202418 + 06/28 03:30:00,12.8,12.8,19.63068527484673 + 06/28 03:40:00,12.8,12.8,19.63822142415016 + 06/28 03:50:00,12.8,12.8,19.64520714092241 + 06/28 04:00:00,12.8,12.8,19.652136026408838 + 06/28 04:10:00,12.8,12.8,19.65886957643121 + 06/28 04:20:00,12.8,12.8,19.665286587985479 + 06/28 04:30:00,12.8,12.8,19.67163679416409 + 06/28 04:40:00,12.8,12.8,19.67785746090665 + 06/28 04:50:00,12.8,12.8,19.684273519036393 + 06/28 05:00:00,12.8,12.8,19.69038695118147 + 06/28 05:10:00,12.8,12.8,19.6966587206509 + 06/28 05:20:00,12.8,12.8,19.702912969042385 + 06/28 05:30:00,12.8,12.8,19.708011629967176 + 06/28 05:40:00,12.8,12.8,19.713946642760097 + 06/28 05:50:00,12.8,12.8,19.718947619123825 + 06/28 06:00:00,12.8,12.8,19.72350496830202 + 06/28 06:10:00,12.8,12.8,17.736241076584208 + 06/28 06:20:00,12.8,12.8,17.48330099291599 + 06/28 06:30:00,12.8,12.8,17.395180185343148 + 06/28 06:40:00,12.8,12.8,17.32363266929037 + 06/28 06:50:00,12.8,12.8,17.26914930104531 + 06/28 07:00:00,12.8,12.8,17.22290391369991 + 06/28 07:05:00,12.8,12.8,15.728684596983646 + 06/28 07:10:00,12.8,12.8,15.73526286536217 + 06/28 07:15:00,12.8,12.8,15.503556574298952 + 06/28 07:20:00,12.8,12.8,15.501823473895407 + 06/28 07:30:00,12.8,12.8,15.394297555039902 + 06/28 07:40:00,12.8,12.8,15.306239813085288 + 06/28 07:50:00,12.8,12.8,15.230016904224485 + 06/28 08:00:00,12.8,12.8,15.163272627387176 + 06/28 08:03:19,12.8,12.8,15.078308897182297 + 06/28 08:06:40,12.8,12.8,15.07788700758806 + 06/28 08:10:00,12.8,12.8,15.077873144587804 + 06/28 08:20:00,12.8,12.8,15.014092829216438 + 06/28 08:30:00,12.8,12.8,14.963020614107315 + 06/28 08:40:00,12.8,12.8,14.915442043685996 + 06/28 08:50:00,12.8,12.8,14.870947911183006 + 06/28 09:00:00,12.8,12.8,14.829242903356935 + 06/28 09:10:00,12.8,12.8,14.78990025157938 + 06/28 09:20:00,12.8,12.8,14.741886058040432 + 06/28 09:30:00,12.8,12.8,14.70578454278982 + 06/28 09:40:00,12.8,12.8,14.671183023937586 + 06/28 09:50:00,12.8,12.8,14.63789517381118 + 06/28 10:00:00,12.8,12.8,14.605910353206177 + 06/28 10:10:00,12.8,12.8,14.574579024531103 + 06/28 10:20:00,12.8,12.8,14.540936275724322 + 06/28 10:30:00,12.8,12.8,14.511866282117018 + 06/28 10:40:00,12.8,12.8,14.484099327468674 + 06/28 10:50:00,12.8,12.8,14.45794693658937 + 06/28 11:00:00,12.8,12.8,14.43337250304043 + 06/28 11:10:00,12.8,12.8,14.410606301385803 + 06/28 11:20:00,12.8,12.8,14.399050498170296 + 06/28 11:30:00,12.8,12.8,14.379432950323226 + 06/28 11:40:00,12.8,12.8,14.361257078824368 + 06/28 11:50:00,12.8,12.8,14.345025013625849 + 06/28 12:00:00,12.8,12.8,14.33072264278527 + 06/28 12:10:00,12.8,12.8,14.318330938815546 + 06/28 12:20:00,12.8,12.8,14.297554171344237 + 06/28 12:30:00,12.8,12.8,14.287287313588644 + 06/28 12:40:00,12.8,12.8,14.277736702752179 + 06/28 12:50:00,12.8,12.8,14.268230459589832 + 06/28 13:00:00,12.8,12.8,14.25865866806647 + 06/28 13:10:00,12.8,12.8,14.249631079418347 + 06/28 13:20:00,12.8,12.8,14.244440117597933 + 06/28 13:30:00,12.8,12.8,14.236249721081493 + 06/28 13:40:00,12.8,12.8,14.228844514610103 + 06/28 13:50:00,12.8,12.8,14.22279136642814 + 06/28 14:00:00,12.8,12.8,14.218151627265222 + 06/28 14:10:00,12.8,12.8,14.212324064689702 + 06/28 14:20:00,12.8,12.8,14.211184329510918 + 06/28 14:30:00,12.8,12.8,14.207508054221585 + 06/28 14:40:00,12.8,12.8,14.20513781945174 + 06/28 14:50:00,12.8,12.8,14.202841859561565 + 06/28 15:00:00,12.8,12.8,14.200355954167666 + 06/28 15:05:00,12.8,12.8,16.363260597456276 + 06/28 15:10:00,12.8,12.8,16.35817210670713 + 06/28 15:15:00,12.8,12.8,16.624687139069797 + 06/28 15:20:00,12.8,12.8,16.621456095939558 + 06/28 15:30:00,12.8,12.8,16.730513372410316 + 06/28 15:40:00,12.8,12.8,16.809978162694447 + 06/28 15:50:00,12.8,12.8,16.8720182554815 + 06/28 16:00:00,12.8,12.8,16.92102420084985 + 06/28 16:10:00,12.8,12.8,16.98508141243647 + 06/28 16:20:00,12.8,12.8,17.03576371523777 + 06/28 16:30:00,12.8,12.8,17.061704223370837 + 06/28 16:40:00,12.8,12.8,17.083277503473206 + 06/28 16:50:00,12.8,12.8,17.102852571511546 + 06/28 17:00:00,12.8,12.8,17.121412886957914 + 06/28 17:10:00,12.8,12.8,17.151552724128373 + 06/28 17:15:00,12.8,12.8,17.17474923443952 + 06/28 17:20:00,12.8,12.8,17.174372996795549 + 06/28 17:30:00,12.8,12.8,17.190276046927236 + 06/28 17:35:00,12.8,12.8,17.206694108542587 + 06/28 17:40:00,12.8,12.8,17.20651522177989 + 06/28 17:50:00,12.8,12.8,17.221444490584817 + 06/28 18:00:00,12.8,12.8,17.236629269008046 + 06/28 18:10:00,12.8,12.8,17.252132581696274 + 06/28 18:20:00,12.8,12.8,17.267584150895226 + 06/28 18:30:00,12.8,12.8,17.282999335136176 + 06/28 18:40:00,12.8,12.8,17.298315882969349 + 06/28 18:50:00,12.8,12.8,17.313419688987048 + 06/28 19:00:00,12.8,12.8,17.328249800752979 + 06/28 19:10:00,12.8,12.8,17.356450045222286 + 06/28 19:20:00,12.8,12.8,17.37226015125816 + 06/28 19:30:00,12.8,12.8,17.38744923550859 + 06/28 19:40:00,12.8,12.8,17.402351679143054 + 06/28 19:50:00,12.8,12.8,17.416961698978537 + 06/28 20:00:00,12.8,12.8,17.431379527260409 + 06/28 20:10:00,12.8,12.8,17.422791309943148 + 06/28 20:20:00,12.8,12.8,17.439899961398014 + 06/28 20:30:00,12.8,12.8,17.45213371514146 + 06/28 20:40:00,12.8,12.8,17.463607019403584 + 06/28 20:50:00,12.8,12.8,17.474540732905539 + 06/28 21:00:00,12.8,12.8,17.484881203956769 + 06/28 21:10:00,12.8,12.8,17.494525830266089 + 06/28 21:20:00,12.8,12.8,17.5034986997194 + 06/28 21:30:00,12.8,12.8,17.511918514118194 + 06/28 21:40:00,12.8,12.8,17.519818034372379 + 06/28 21:50:00,12.8,12.8,17.527165907979673 + 06/28 22:00:00,12.8,12.8,17.534181038262046 + 06/28 22:10:00,12.8,12.8,18.898254795292364 + 06/28 22:20:00,12.8,12.8,19.046478639203526 + 06/28 22:30:00,12.8,12.8,19.111655954521319 + 06/28 22:40:00,12.8,12.8,19.16398202607349 + 06/28 22:50:00,12.8,12.8,19.205914663606248 + 06/28 23:00:00,12.8,12.8,19.24111622496957 + 06/28 23:10:00,12.8,12.8,19.27145935466355 + 06/28 23:20:00,12.8,12.8,19.29786243149671 + 06/28 23:30:00,12.8,12.8,19.32193368895058 + 06/28 23:40:00,12.8,12.8,19.343769773288419 + 06/28 23:50:00,12.8,12.8,19.364016582568739 + 06/28 24:00:00,12.8,12.8,19.38282401496895 + 06/29 00:10:00,12.8,12.8,19.40047186582683 + 06/29 00:20:00,12.8,12.8,19.417104370566727 + 06/29 00:30:00,12.8,12.8,19.432939716410098 + 06/29 00:40:00,12.8,12.8,19.448122757420454 + 06/29 00:50:00,12.8,12.8,19.462690421403694 + 06/29 01:00:00,12.8,12.8,19.47670951638444 + 06/29 01:10:00,12.8,12.8,19.49019173858468 + 06/29 01:20:00,12.8,12.8,19.503160899744875 + 06/29 01:30:00,12.8,12.8,19.51576581974804 + 06/29 01:40:00,12.8,12.8,19.52797025833462 + 06/29 01:50:00,12.8,12.8,19.53980309769509 + 06/29 02:00:00,12.8,12.8,19.55128030035877 + 06/29 02:10:00,12.8,12.8,19.56215771064172 + 06/29 02:20:00,12.8,12.8,19.572721550387045 + 06/29 02:30:00,12.8,12.8,19.58284836054166 + 06/29 02:40:00,12.8,12.8,19.592579457035009 + 06/29 02:50:00,12.8,12.8,19.60193500378362 + 06/29 03:00:00,12.8,12.8,19.61085612160336 + 06/29 03:10:00,12.8,12.8,19.6196366798938 + 06/29 03:20:00,12.8,12.8,19.628183264376898 + 06/29 03:30:00,12.8,12.8,19.635163454873554 + 06/29 03:40:00,12.8,12.8,19.643977764991914 + 06/29 03:50:00,12.8,12.8,19.651403915134457 + 06/29 04:00:00,12.8,12.8,19.659341945651997 + 06/29 04:10:00,12.8,12.8,19.66685740728974 + 06/29 04:20:00,12.8,12.8,19.672652910041685 + 06/29 04:30:00,12.8,12.8,19.68031615829674 + 06/29 04:40:00,12.8,12.8,19.686404169235155 + 06/29 04:50:00,12.8,12.8,19.6928884407477 + 06/29 05:00:00,12.8,12.8,19.698938829212968 + 06/29 05:10:00,12.8,12.8,19.703470897181839 + 06/29 05:20:00,12.8,12.8,19.710074152095986 + 06/29 05:30:00,12.8,12.8,19.715205969702514 + 06/29 05:40:00,12.8,12.8,19.7193655257045 + 06/29 05:50:00,12.8,12.8,19.724331327642245 + 06/29 06:00:00,12.8,12.8,19.726712859893327 + 06/29 06:10:00,12.8,12.8,17.739141783171776 + 06/29 06:20:00,12.8,12.8,17.483380688450525 + 06/29 06:25:00,12.8,12.8,17.391923711240435 + 06/29 06:30:00,12.8,12.8,17.393104824260847 + 06/29 06:40:00,12.8,12.8,17.320566578720596 + 06/29 06:50:00,12.8,12.8,17.26457410108833 + 06/29 07:00:00,12.8,12.8,17.216064367705383 + 06/29 07:05:00,12.8,12.8,15.720862587276426 + 06/29 07:10:00,12.8,12.8,15.726758813785235 + 06/29 07:15:00,12.8,12.8,15.494545861339084 + 06/29 07:20:00,12.8,12.8,15.49279938128471 + 06/29 07:30:00,12.8,12.8,15.38492405032573 + 06/29 07:40:00,12.8,12.8,15.297239556606153 + 06/29 07:50:00,12.8,12.8,15.222465716395183 + 06/29 08:00:00,12.8,12.8,15.158261965537049 + 06/29 08:03:19,12.8,12.8,15.07595890007848 + 06/29 08:06:40,12.8,12.8,15.075503327239492 + 06/29 08:10:00,12.8,12.8,15.075476956161673 + 06/29 08:20:00,12.8,12.8,15.01460164178488 + 06/29 08:30:00,12.8,12.8,14.966621029483916 + 06/29 08:40:00,12.8,12.8,14.921851045782957 + 06/29 08:50:00,12.8,12.8,14.879433330957351 + 06/29 09:00:00,12.8,12.8,14.83888156121281 + 06/29 09:10:00,12.8,12.8,14.799910556954833 + 06/29 09:20:00,12.8,12.8,14.751616899187681 + 06/29 09:30:00,12.8,12.8,14.714692854581513 + 06/29 09:40:00,12.8,12.8,14.679010166104721 + 06/29 09:50:00,12.8,12.8,14.644737715979334 + 06/29 10:00:00,12.8,12.8,14.612037005767187 + 06/29 10:10:00,12.8,12.8,14.58116832504484 + 06/29 10:20:00,12.8,12.8,14.548552075573383 + 06/29 10:30:00,12.8,12.8,14.521079247919092 + 06/29 10:40:00,12.8,12.8,14.495245481853571 + 06/29 10:50:00,12.8,12.8,14.470691181720579 + 06/29 11:00:00,12.8,12.8,14.447249004344883 + 06/29 11:10:00,12.8,12.8,14.42449831605674 + 06/29 11:20:00,12.8,12.8,14.412199613186353 + 06/29 11:30:00,12.8,12.8,14.391030063242527 + 06/29 11:40:00,12.8,12.8,14.372014044396963 + 06/29 11:50:00,12.8,12.8,14.357886450327218 + 06/29 12:00:00,12.8,12.8,14.348947142369696 + 06/29 12:10:00,12.8,12.8,14.345784265170673 + 06/29 12:20:00,12.8,12.8,14.33695512740892 + 06/29 12:30:00,12.8,12.8,14.340992591922645 + 06/29 12:40:00,12.8,12.8,14.345464452121949 + 06/29 12:50:00,12.8,12.8,14.345822359760739 + 06/29 13:00:00,12.8,12.8,14.340704244720671 + 06/29 13:10:00,12.8,12.8,14.330840956915037 + 06/29 13:20:00,12.8,12.8,14.320867961335598 + 06/29 13:30:00,12.8,12.8,14.30493057124128 + 06/29 13:40:00,12.8,12.8,14.287794418341111 + 06/29 13:50:00,12.8,12.8,14.270934227226482 + 06/29 14:00:00,12.8,12.8,14.254936542341401 + 06/29 14:10:00,12.8,12.8,14.238876746402739 + 06/29 14:20:00,12.8,12.8,14.226837273868258 + 06/29 14:30:00,12.8,12.8,14.211766669256726 + 06/29 14:40:00,12.8,12.8,14.198034644916702 + 06/29 14:50:00,12.8,12.8,14.185732901116185 + 06/29 15:00:00,12.8,12.8,14.174815475937028 + 06/29 15:10:00,12.8,12.8,16.315277661702177 + 06/29 15:20:00,12.8,12.8,16.567259190324437 + 06/29 15:30:00,12.8,12.8,16.663104852225638 + 06/29 15:40:00,12.8,12.8,16.739462980372694 + 06/29 15:50:00,12.8,12.8,16.796121533271529 + 06/29 16:00:00,12.8,12.8,16.84139395798298 + 06/29 16:10:00,12.8,12.8,16.906090489367118 + 06/29 16:20:00,12.8,12.8,16.959913445189899 + 06/29 16:30:00,12.8,12.8,16.991090203161027 + 06/29 16:40:00,12.8,12.8,17.01940966389286 + 06/29 16:50:00,12.8,12.8,17.045614633488805 + 06/29 17:00:00,12.8,12.8,17.06995885449344 + 06/29 17:10:00,12.8,12.8,17.106143887751175 + 06/29 17:15:00,12.8,12.8,17.13476050619532 + 06/29 17:20:00,12.8,12.8,17.134355700163284 + 06/29 17:30:00,12.8,12.8,17.154940994689207 + 06/29 17:40:00,12.8,12.8,17.17512161774412 + 06/29 17:50:00,12.8,12.8,17.19436728928045 + 06/29 18:00:00,12.8,12.8,17.213372200363929 + 06/29 18:10:00,12.8,12.8,17.231425977560343 + 06/29 18:20:00,12.8,12.8,17.248974382452145 + 06/29 18:30:00,12.8,12.8,17.26600935178331 + 06/29 18:40:00,12.8,12.8,17.282305312225714 + 06/29 18:50:00,12.8,12.8,17.297605805696095 + 06/29 19:00:00,12.8,12.8,17.311846515860066 + 06/29 19:10:00,12.8,12.8,17.339538603880269 + 06/29 19:20:00,12.8,12.8,17.354607712271777 + 06/29 19:30:00,12.8,12.8,17.368883914029458 + 06/29 19:40:00,12.8,12.8,17.382909718614724 + 06/29 19:50:00,12.8,12.8,17.39687565551573 + 06/29 20:00:00,12.8,12.8,17.41086185940029 + 06/29 20:10:00,12.8,12.8,17.401447190480714 + 06/29 20:20:00,12.8,12.8,17.417951428297653 + 06/29 20:30:00,12.8,12.8,17.42972218769862 + 06/29 20:40:00,12.8,12.8,17.440814116508628 + 06/29 20:50:00,12.8,12.8,17.451367142656478 + 06/29 21:00:00,12.8,12.8,17.4615011627309 + 06/29 21:10:00,12.8,12.8,17.471467624191928 + 06/29 21:20:00,12.8,12.8,17.480823012339298 + 06/29 21:30:00,12.8,12.8,17.48979225294375 + 06/29 21:40:00,12.8,12.8,17.498426620503986 + 06/29 21:50:00,12.8,12.8,17.50672754511819 + 06/29 22:00:00,12.8,12.8,17.514733859695157 + 06/29 22:10:00,12.8,12.8,18.880230203529643 + 06/29 22:20:00,12.8,12.8,19.030785909569678 + 06/29 22:30:00,12.8,12.8,19.097822432868285 + 06/29 22:40:00,12.8,12.8,19.15250847208029 + 06/29 22:50:00,12.8,12.8,19.196631759458158 + 06/29 23:00:00,12.8,12.8,19.234068227165513 + 06/29 23:10:00,12.8,12.8,19.264773693136115 + 06/29 23:20:00,12.8,12.8,19.292894558084627 + 06/29 23:30:00,12.8,12.8,19.317681821601995 + 06/29 23:40:00,12.8,12.8,19.340328617209399 + 06/29 23:50:00,12.8,12.8,19.36124027603937 + 06/29 24:00:00,12.8,12.8,19.379867452275524 + 06/30 00:10:00,12.8,12.8,19.398409912953018 + 06/30 00:20:00,12.8,12.8,19.415321885594865 + 06/30 00:30:00,12.8,12.8,19.43172195086707 + 06/30 00:40:00,12.8,12.8,19.446406170429328 + 06/30 00:50:00,12.8,12.8,19.461638814546516 + 06/30 01:00:00,12.8,12.8,19.475644592792098 + 06/30 01:10:00,12.8,12.8,19.48963254319305 + 06/30 01:20:00,12.8,12.8,19.50297354997333 + 06/30 01:30:00,12.8,12.8,19.51473686347947 + 06/30 01:40:00,12.8,12.8,19.527625981979936 + 06/30 01:50:00,12.8,12.8,19.53921362971849 + 06/30 02:00:00,12.8,12.8,19.550979902210348 + 06/30 02:10:00,12.8,12.8,19.56216628882327 + 06/30 02:20:00,12.8,12.8,19.57182949213206 + 06/30 02:30:00,12.8,12.8,19.582958530473115 + 06/30 02:40:00,12.8,12.8,19.592762185706307 + 06/30 02:50:00,12.8,12.8,19.602948053125958 + 06/30 03:00:00,12.8,12.8,19.61270118279549 + 06/30 03:10:00,12.8,12.8,19.620720358905527 + 06/30 03:20:00,12.8,12.8,19.630396694171535 + 06/30 03:30:00,12.8,12.8,19.638478061363867 + 06/30 03:40:00,12.8,12.8,19.64694008661469 + 06/30 03:50:00,12.8,12.8,19.654856267655345 + 06/30 04:00:00,12.8,12.8,19.66104405167686 + 06/30 04:10:00,12.8,12.8,19.669297975333828 + 06/30 04:20:00,12.8,12.8,19.676038293987597 + 06/30 04:30:00,12.8,12.8,19.68339269023932 + 06/30 04:40:00,12.8,12.8,19.690381994652218 + 06/30 04:50:00,12.8,12.8,19.695759313821335 + 06/30 05:00:00,12.8,12.8,19.703235988477404 + 06/30 05:10:00,12.8,12.8,19.70897593441186 + 06/30 05:20:00,12.8,12.8,19.71534915802666 + 06/30 05:30:00,12.8,12.8,19.7200688373778 + 06/30 05:40:00,12.8,12.8,19.72643012786804 + 06/30 05:50:00,12.8,12.8,19.730897149496206 + 06/30 06:00:00,12.8,12.8,19.734024085199115 + 06/30 06:10:00,12.8,12.8,17.747405948768987 + 06/30 06:20:00,12.8,12.8,17.49252289475403 + 06/30 06:30:00,12.8,12.8,17.403880634438595 + 06/30 06:40:00,12.8,12.8,17.33141078691768 + 06/30 06:50:00,12.8,12.8,17.2762867124784 + 06/30 07:00:00,12.8,12.8,17.22942862239262 + 06/30 07:05:00,12.8,12.8,15.735141086939989 + 06/30 07:10:00,12.8,12.8,15.741725087222092 + 06/30 07:15:00,12.8,12.8,15.510292925742501 + 06/30 07:20:00,12.8,12.8,15.508535835496629 + 06/30 07:30:00,12.8,12.8,15.401799791664903 + 06/30 07:40:00,12.8,12.8,15.314909430190859 + 06/30 07:50:00,12.8,12.8,15.240095003920374 + 06/30 08:00:00,12.8,12.8,15.174953775748945 + 06/30 08:03:19,12.8,12.8,15.091197602476387 + 06/30 08:06:40,12.8,12.8,15.090777153708953 + 06/30 08:10:00,12.8,12.8,15.090767430594209 + 06/30 08:20:00,12.8,12.8,15.027885271499784 + 06/30 08:30:00,12.8,12.8,14.977191659009547 + 06/30 08:40:00,12.8,12.8,14.929518999860234 + 06/30 08:50:00,12.8,12.8,14.884489630011404 + 06/30 09:00:00,12.8,12.8,14.84183721232735 + 06/30 09:10:00,12.8,12.8,14.801497494483588 + 06/30 09:20:00,12.8,12.8,14.752569652804147 + 06/30 09:30:00,12.8,12.8,14.715764673283152 + 06/30 09:40:00,12.8,12.8,14.680710040848016 + 06/30 09:50:00,12.8,12.8,14.647199527909944 + 06/30 10:00:00,12.8,12.8,14.615206277178189 + 06/30 10:10:00,12.8,12.8,14.584323247369423 + 06/30 10:20:00,12.8,12.8,14.551379942574947 + 06/30 10:30:00,12.8,12.8,14.523240318943503 + 06/30 10:40:00,12.8,12.8,14.496761709763487 + 06/30 10:50:00,12.8,12.8,14.472202480641786 + 06/30 11:00:00,12.8,12.8,14.4496578745988 + 06/30 11:10:00,12.8,12.8,14.429289039983605 + 06/30 11:20:00,12.8,12.8,14.419995583665774 + 06/30 11:30:00,12.8,12.8,14.402383568273342 + 06/30 11:40:00,12.8,12.8,14.38536992368402 + 06/30 11:50:00,12.8,12.8,14.368588707799315 + 06/30 12:00:00,12.8,12.8,14.35174829431752 + 06/30 12:10:00,12.8,12.8,14.335231699415294 + 06/30 12:20:00,12.8,12.8,14.309204637394828 + 06/30 12:30:00,12.8,12.8,14.292871274695662 + 06/30 12:40:00,12.8,12.8,14.2772454028505 + 06/30 12:50:00,12.8,12.8,14.262722547527945 + 06/30 13:00:00,12.8,12.8,14.24960585438579 + 06/30 13:10:00,12.8,12.8,14.236718955053755 + 06/30 13:20:00,12.8,12.8,14.228333416299958 + 06/30 13:30:00,12.8,12.8,14.217341069079933 + 06/30 13:40:00,12.8,12.8,14.206985550105907 + 06/30 13:50:00,12.8,12.8,14.19717054029909 + 06/30 14:00:00,12.8,12.8,14.1877731577281 + 06/30 14:10:00,12.8,12.8,14.17917259461393 + 06/30 14:20:00,12.8,12.8,14.174699455549123 + 06/30 14:30:00,12.8,12.8,14.167309240205402 + 06/30 14:40:00,12.8,12.8,14.161667907242816 + 06/30 14:50:00,12.8,12.8,14.15898394838777 + 06/30 15:00:00,12.8,12.8,14.158944403531958 + 06/30 15:05:00,12.8,12.8,16.32211098521246 + 06/30 15:10:00,12.8,12.8,16.317919532135446 + 06/30 15:15:00,12.8,12.8,16.58664244717112 + 06/30 15:20:00,12.8,12.8,16.584117545294377 + 06/30 15:30:00,12.8,12.8,16.698957020933205 + 06/30 15:40:00,12.8,12.8,16.79062037383009 + 06/30 15:50:00,12.8,12.8,16.866995838067184 + 06/30 16:00:00,12.8,12.8,16.92970473019863 + 06/30 16:10:00,12.8,12.8,17.00296917826216 + 06/30 16:20:00,12.8,12.8,17.061873093744724 + 06/30 16:25:00,12.8,12.8,17.095874699725497 + 06/30 16:30:00,12.8,12.8,17.095299697738825 + 06/30 16:40:00,12.8,12.8,17.122624941409108 + 06/30 16:50:00,12.8,12.8,17.147342086511097 + 06/30 17:00:00,12.8,12.8,17.169245743053638 + 06/30 17:10:00,12.8,12.8,17.202463818308165 + 06/30 17:15:00,12.8,12.8,17.22805759575801 + 06/30 17:20:00,12.8,12.8,17.227717347598089 + 06/30 17:30:00,12.8,12.8,17.245945529213814 + 06/30 17:40:00,12.8,12.8,17.26391575759462 + 06/30 17:50:00,12.8,12.8,17.28061320891227 + 06/30 18:00:00,12.8,12.8,17.29686137215385 + 06/30 18:10:00,12.8,12.8,17.31214108827158 + 06/30 18:20:00,12.8,12.8,17.326700733941676 + 06/30 18:30:00,12.8,12.8,17.34068072567848 + 06/30 18:40:00,12.8,12.8,17.354143697586708 + 06/30 18:50:00,12.8,12.8,17.367141356361274 + 06/30 19:00:00,12.8,12.8,17.37977440245072 + 06/30 19:10:00,12.8,12.8,17.40552506692506 + 06/30 19:20:00,12.8,12.8,17.419350818458484 + 06/30 19:30:00,12.8,12.8,17.433076523439295 + 06/30 19:40:00,12.8,12.8,17.44708642883407 + 06/30 19:50:00,12.8,12.8,17.46134982981912 + 06/30 20:00:00,12.8,12.8,17.47595140671928 + 06/30 20:10:00,12.8,12.8,17.467650078475 + 06/30 20:20:00,12.8,12.8,17.48504921962459 + 06/30 20:30:00,12.8,12.8,17.497433760321159 + 06/30 20:40:00,12.8,12.8,17.508862457716963 + 06/30 20:50:00,12.8,12.8,17.519564266778397 + 06/30 21:00:00,12.8,12.8,17.52948594368008 + 06/30 21:10:00,12.8,12.8,17.53893256445359 + 06/30 21:20:00,12.8,12.8,17.547756507021256 + 06/30 21:30:00,12.8,12.8,17.556113885243876 + 06/30 21:40:00,12.8,12.8,17.56402417557871 + 06/30 21:50:00,12.8,12.8,17.571489255468856 + 06/30 22:00:00,12.8,12.8,17.57868541317923 + 06/30 22:10:00,12.8,12.8,18.94240021429579 + 06/30 22:20:00,12.8,12.8,19.091610128016389 + 06/30 22:30:00,12.8,12.8,19.157755669278385 + 06/30 22:40:00,12.8,12.8,19.211520218234939 + 06/30 22:50:00,12.8,12.8,19.25494444399859 + 06/30 23:00:00,12.8,12.8,19.289632962381686 + 06/30 23:10:00,12.8,12.8,19.319868879475249 + 06/30 23:20:00,12.8,12.8,19.346327256552706 + 06/30 23:30:00,12.8,12.8,19.370138108884697 + 06/30 23:40:00,12.8,12.8,19.392130524936066 + 06/30 23:50:00,12.8,12.8,19.41241316118208 + 06/30 24:00:00,12.8,12.8,19.431279602563728 + 07/01 00:10:00,12.8,12.8,19.448885441142186 + 07/01 00:20:00,12.8,12.8,19.464325876780305 + 07/01 00:30:00,12.8,12.8,19.48015416935695 + 07/01 00:40:00,12.8,12.8,19.494301899779687 + 07/01 00:50:00,12.8,12.8,19.508072824197244 + 07/01 01:00:00,12.8,12.8,19.520953980186805 + 07/01 01:10:00,12.8,12.8,19.53204232684579 + 07/01 01:20:00,12.8,12.8,19.544384424616426 + 07/01 01:30:00,12.8,12.8,19.55547724701431 + 07/01 01:40:00,12.8,12.8,19.56681491716425 + 07/01 01:50:00,12.8,12.8,19.577667665145527 + 07/01 02:00:00,12.8,12.8,19.5870393791995 + 07/01 02:10:00,12.8,12.8,19.597881128395938 + 07/01 02:20:00,12.8,12.8,19.607501317974064 + 07/01 02:30:00,12.8,12.8,19.61744226296112 + 07/01 02:40:00,12.8,12.8,19.626931171092296 + 07/01 02:50:00,12.8,12.8,19.634844377582234 + 07/01 03:00:00,12.8,12.8,19.6444481454772 + 07/01 03:10:00,12.8,12.8,19.6527417016162 + 07/01 03:20:00,12.8,12.8,19.661395508093169 + 07/01 03:30:00,12.8,12.8,19.669518440083605 + 07/01 03:40:00,12.8,12.8,19.675868943020878 + 07/01 03:50:00,12.8,12.8,19.684083707921226 + 07/01 04:00:00,12.8,12.8,19.690799161830179 + 07/01 04:10:00,12.8,12.8,19.698206578013165 + 07/01 04:20:00,12.8,12.8,19.705134189804136 + 07/01 04:30:00,12.8,12.8,19.710299024407538 + 07/01 04:40:00,12.8,12.8,19.717530707333994 + 07/01 04:50:00,12.8,12.8,19.723227642171549 + 07/01 05:00:00,12.8,12.8,19.72955805702765 + 07/01 05:10:00,12.8,12.8,19.734961771216363 + 07/01 05:20:00,12.8,12.8,19.738621522121336 + 07/01 05:30:00,12.8,12.8,19.744376611040587 + 07/01 05:40:00,12.8,12.8,19.748303754145135 + 07/01 05:50:00,12.8,12.8,19.751146043072155 + 07/01 06:00:00,12.8,12.8,19.75429624743658 + 07/01 06:10:00,12.8,12.8,19.099250629784654 + 07/01 06:20:00,12.8,12.8,19.02429112813694 + 07/01 06:30:00,12.8,12.8,18.995308976793994 + 07/01 06:40:00,12.8,12.8,18.971014769841376 + 07/01 06:50:00,12.8,12.8,18.95176151436953 + 07/01 07:00:00,12.8,12.8,18.93440903546819 + 07/01 07:10:00,12.8,12.8,17.84883605010344 + 07/01 07:20:00,12.8,12.8,17.685686087340906 + 07/01 07:30:00,12.8,12.8,17.615905218153743 + 07/01 07:40:00,12.8,12.8,17.556592051357819 + 07/01 07:50:00,12.8,12.8,17.507912912549739 + 07/01 08:00:00,12.8,12.8,17.465114652415168 + 07/01 08:10:00,12.8,12.8,17.426243863777097 + 07/01 08:20:00,12.8,12.8,17.38167423873375 + 07/01 08:30:00,12.8,12.8,17.348049666838514 + 07/01 08:40:00,12.8,12.8,17.31676378659554 + 07/01 08:50:00,12.8,12.8,17.28816607343044 + 07/01 09:00:00,12.8,12.8,17.262524140207114 + 07/01 09:10:00,12.8,12.8,17.240001932030255 + 07/01 09:20:00,12.8,12.8,17.211492898190309 + 07/01 09:30:00,12.8,12.8,17.194211708835178 + 07/01 09:40:00,12.8,12.8,17.17889042637764 + 07/01 09:50:00,12.8,12.8,17.16427877169417 + 07/01 10:00:00,12.8,12.8,17.14984924197675 + 07/01 10:10:00,12.8,12.8,17.135450042633204 + 07/01 10:20:00,12.8,12.8,17.12115921227035 + 07/01 10:30:00,12.8,12.8,17.10703622112592 + 07/01 10:40:00,12.8,12.8,17.092225157346478 + 07/01 10:50:00,12.8,12.8,17.075352520013504 + 07/01 11:00:00,12.8,12.8,17.05590870833634 + 07/01 11:10:00,12.8,12.8,17.03512683206114 + 07/01 11:20:00,12.8,12.8,17.012802661927986 + 07/01 11:30:00,12.8,12.8,16.989348046199848 + 07/01 11:40:00,12.8,12.8,16.96653174462531 + 07/01 11:50:00,12.8,12.8,16.946794496861636 + 07/01 12:00:00,12.8,12.8,16.930918223337593 + 07/01 12:10:00,12.8,12.8,16.917751490349774 + 07/01 12:20:00,12.8,12.8,16.907155730310625 + 07/01 12:30:00,12.8,12.8,16.898585231450306 + 07/01 12:40:00,12.8,12.8,16.891925399155935 + 07/01 12:50:00,12.8,12.8,16.887127207991364 + 07/01 13:00:00,12.8,12.8,16.88412833125709 + 07/01 13:10:00,12.8,12.8,16.88411995980522 + 07/01 13:20:00,12.8,12.8,16.886244763621645 + 07/01 13:30:00,12.8,12.8,16.890421597384355 + 07/01 13:40:00,12.8,12.8,16.895200464374367 + 07/01 13:50:00,12.8,12.8,16.898488718361354 + 07/01 14:00:00,12.8,12.8,16.89954592574339 + 07/01 14:10:00,12.8,12.8,16.897474421148908 + 07/01 14:20:00,12.8,12.8,16.893111326027474 + 07/01 14:30:00,12.8,12.8,16.886665972682726 + 07/01 14:40:00,12.8,12.8,16.87999549239582 + 07/01 14:50:00,12.8,12.8,16.875367555296493 + 07/01 15:00:00,12.8,12.8,16.873606513335557 + 07/01 15:10:00,12.8,12.8,16.874476091145007 + 07/01 15:20:00,12.8,12.8,16.8780355099838 + 07/01 15:30:00,12.8,12.8,16.883894434340144 + 07/01 15:40:00,12.8,12.8,16.890982684302764 + 07/01 15:50:00,12.8,12.8,16.898030966427947 + 07/01 16:00:00,12.8,12.8,16.904505472845494 + 07/01 16:10:00,12.8,12.8,16.92373345680449 + 07/01 16:20:00,12.8,12.8,16.93919507411131 + 07/01 16:30:00,12.8,12.8,16.94533154952134 + 07/01 16:40:00,12.8,12.8,16.951159750181234 + 07/01 16:50:00,12.8,12.8,16.956566094983399 + 07/01 17:00:00,12.8,12.8,16.96154704170778 + 07/01 17:10:00,12.8,12.8,18.722388287882198 + 07/01 17:20:00,12.8,12.8,18.941781061968837 + 07/01 17:30:00,12.8,12.8,19.028356153134433 + 07/01 17:40:00,12.8,12.8,19.097348536078976 + 07/01 17:50:00,12.8,12.8,19.150302836042316 + 07/01 18:00:00,12.8,12.8,19.193075466148707 + 07/01 18:10:00,12.8,12.8,19.24196412981103 + 07/01 18:20:00,12.8,12.8,19.27381475963019 + 07/01 18:30:00,12.8,12.8,19.30163825480494 + 07/01 18:40:00,12.8,12.8,19.326601745730924 + 07/01 18:50:00,12.8,12.8,19.349174470819177 + 07/01 19:00:00,12.8,12.8,19.370064929118255 + 07/01 19:10:00,12.8,12.8,19.390713549878869 + 07/01 19:20:00,12.8,12.8,19.4110221240789 + 07/01 19:30:00,12.8,12.8,19.431311886413199 + 07/01 19:40:00,12.8,12.8,19.45156725320401 + 07/01 19:50:00,12.913513513513515,12.913513513513515,19.471591243854708 + 07/01 20:00:00,13.077477477477478,13.077477477477478,19.491421258980517 + 07/01 20:10:00,13.052252252252253,13.052252252252253,19.485798370499656 + 07/01 20:20:00,13.027027027027028,13.027027027027028,19.50100309960008 + 07/01 20:30:00,13.001801801801803,13.001801801801803,19.515143178379064 + 07/01 20:40:00,12.976576576576577,12.976576576576577,19.528052644645127 + 07/01 20:50:00,12.951351351351353,12.951351351351353,19.539931150509518 + 07/01 21:00:00,12.926126126126127,12.926126126126127,19.551091894019309 + 07/01 21:10:00,12.951351351351353,12.951351351351353,19.56187990031229 + 07/01 21:20:00,12.976576576576577,12.976576576576577,19.57214035977357 + 07/01 21:30:00,13.001801801801803,13.001801801801803,19.58193632213414 + 07/01 21:40:00,13.027027027027028,13.027027027027028,19.591288480442786 + 07/01 21:50:00,13.052252252252253,13.052252252252253,19.600373348772963 + 07/01 22:00:00,13.077477477477478,13.077477477477478,19.60989706223065 + 07/01 22:10:00,13.077477477477478,13.077477477477478,19.61909688100149 + 07/01 22:20:00,13.077477477477478,13.077477477477478,19.62819696172149 + 07/01 22:30:00,13.077477477477478,13.077477477477478,19.636635554380566 + 07/01 22:40:00,13.077477477477478,13.077477477477478,19.64485918315492 + 07/01 22:50:00,13.077477477477478,13.077477477477478,19.652772546869124 + 07/01 23:00:00,13.077477477477478,13.077477477477478,19.660382464678933 + 07/01 23:10:00,13.077477477477478,13.077477477477478,19.66734520281756 + 07/01 23:20:00,13.077477477477478,13.077477477477478,19.673989153616519 + 07/01 23:30:00,13.077477477477478,13.077477477477478,19.68046610165018 + 07/01 23:40:00,13.077477477477478,13.077477477477478,19.686768399947238 + 07/01 23:50:00,13.077477477477478,13.077477477477478,19.692883857974878 + 07/01 24:00:00,13.077477477477478,13.077477477477478,19.698823995485119 + 07/02 00:10:00,13.077477477477478,13.077477477477478,19.704906715050023 + 07/02 00:20:00,13.077477477477478,13.077477477477478,19.710819889225097 + 07/02 00:30:00,13.077477477477478,13.077477477477478,19.716646001636194 + 07/02 00:40:00,13.077477477477478,13.077477477477478,19.72234658077248 + 07/02 00:50:00,13.077477477477478,13.077477477477478,19.727916544977029 + 07/02 01:00:00,13.077477477477478,13.077477477477478,19.73332525772646 + 07/02 01:10:00,13.077477477477478,13.077477477477478,19.737906388828728 + 07/02 01:20:00,13.077477477477478,13.077477477477478,19.742465622769314 + 07/02 01:30:00,13.077477477477478,13.077477477477478,19.746918174861287 + 07/02 01:40:00,13.077477477477478,13.077477477477478,19.751273628741936 + 07/02 01:50:00,13.077477477477478,13.077477477477478,19.75552552332075 + 07/02 02:00:00,13.077477477477478,13.077477477477478,19.759592604382335 + 07/02 02:10:00,13.123723723723725,13.123723723723725,19.764508759720589 + 07/02 02:20:00,13.169969969969971,13.169969969969971,19.768874384162645 + 07/02 02:30:00,13.216216216216218,13.216216216216218,19.773318212377779 + 07/02 02:40:00,13.262462462462464,13.262462462462464,19.7777710482073 + 07/02 02:50:00,13.30870870870871,13.30870870870871,19.782184238294975 + 07/02 03:00:00,13.354954954954956,13.354954954954956,19.78677100932279 + 07/02 03:10:00,13.333933933933935,13.333933933933935,19.789855637831793 + 07/02 03:20:00,13.312912912912914,13.312912912912914,19.79420941601176 + 07/02 03:30:00,13.291891891891894,13.291891891891894,19.798595944350106 + 07/02 03:40:00,13.270870870870873,13.270870870870873,19.803254217890975 + 07/02 03:50:00,13.24984984984985,13.24984984984985,19.808004459306049 + 07/02 04:00:00,13.22882882882883,13.22882882882883,19.81289417118074 + 07/02 04:10:00,13.22882882882883,13.22882882882883,19.818565414816168 + 07/02 04:20:00,13.22882882882883,13.22882882882883,19.823468275178649 + 07/02 04:30:00,13.22882882882883,13.22882882882883,19.828066318709675 + 07/02 04:40:00,13.22882882882883,13.22882882882883,19.832217716854733 + 07/02 04:50:00,13.22882882882883,13.22882882882883,19.836154908065767 + 07/02 05:00:00,13.22882882882883,13.22882882882883,19.83982365526781 + 07/02 05:10:00,13.22882882882883,13.22882882882883,19.84281707193 + 07/02 05:20:00,13.22882882882883,13.22882882882883,19.84556458972799 + 07/02 05:30:00,13.22882882882883,13.22882882882883,19.848055854536076 + 07/02 05:40:00,13.22882882882883,13.22882882882883,19.850371914763387 + 07/02 05:50:00,13.22882882882883,13.22882882882883,19.852311527115007 + 07/02 06:00:00,13.22882882882883,13.22882882882883,19.853927103824483 + 07/02 06:10:00,13.203603603603604,13.203603603603604,19.877728127420434 + 07/02 06:20:00,13.17837837837838,13.17837837837838,19.878958734387419 + 07/02 06:30:00,13.153153153153154,13.153153153153154,19.87990313519657 + 07/02 06:40:00,13.12792792792793,13.12792792792793,19.880136301133484 + 07/02 06:50:00,13.102702702702704,13.102702702702704,19.878921616946223 + 07/02 07:00:00,13.077477477477478,13.077477477477478,19.875851198039503 + 07/02 07:10:00,12.984984984984987,12.984984984984987,18.48127689134874 + 07/02 07:20:00,12.892492492492494,12.892492492492494,18.298732093504659 + 07/02 07:30:00,12.8,12.8,18.225481922405885 + 07/02 07:40:00,12.8,12.8,18.164237458757076 + 07/02 07:50:00,12.8,12.8,18.11523694089511 + 07/02 08:00:00,12.8,12.8,18.07337087497205 + 07/02 08:10:00,12.8,12.8,18.036329732990717 + 07/02 08:20:00,12.8,12.8,17.993950392900979 + 07/02 08:30:00,12.8,12.8,17.96274849919748 + 07/02 08:40:00,12.8,12.8,17.933508009430953 + 07/02 08:50:00,12.8,12.8,17.9055487560562 + 07/02 09:00:00,12.8,12.8,17.878527481438995 + 07/02 09:10:00,12.8,12.8,17.852654470896284 + 07/02 09:20:00,12.8,12.8,17.81875595015573 + 07/02 09:30:00,12.8,12.8,17.7939874384831 + 07/02 09:40:00,12.8,12.8,17.770027664111177 + 07/02 09:50:00,12.8,12.8,17.74702305420671 + 07/02 10:00:00,12.8,12.8,17.725055683831298 + 07/02 10:10:00,12.8,12.8,17.703998350771074 + 07/02 10:20:00,12.8,12.8,17.684013145655507 + 07/02 10:30:00,12.8,12.8,17.664952897067285 + 07/02 10:40:00,12.8,12.8,17.6467167520903 + 07/02 10:50:00,12.8,12.8,17.62952446161669 + 07/02 11:00:00,12.8,12.8,17.61327987730409 + 07/02 11:10:00,12.8,12.8,17.597784844885714 + 07/02 11:20:00,12.8,12.8,17.582958224070074 + 07/02 11:30:00,12.8,12.8,17.568677893328915 + 07/02 11:40:00,12.8,12.8,17.554898437091884 + 07/02 11:50:00,12.8,12.8,17.54157706530777 + 07/02 12:00:00,12.8,12.8,17.52891591942311 + 07/02 12:10:00,12.8,12.8,17.516710837320529 + 07/02 12:20:00,12.8,12.8,17.505070831773673 + 07/02 12:30:00,12.8,12.8,17.494085578311279 + 07/02 12:40:00,12.8,12.8,17.4836771464513 + 07/02 12:50:00,12.8,12.8,17.47365970088041 + 07/02 13:00:00,12.8,12.8,17.4639005234419 + 07/02 13:10:00,12.8,12.8,17.455312928742307 + 07/02 13:20:00,12.8,12.8,17.447314540799643 + 07/02 13:30:00,12.8,12.8,17.43965092119021 + 07/02 13:40:00,12.8,12.8,17.4331094452538 + 07/02 13:50:00,12.8,12.8,17.42835121800522 + 07/02 14:00:00,12.8,12.8,17.42545704456205 + 07/02 14:10:00,12.8,12.8,17.423566192045159 + 07/02 14:20:00,12.8,12.8,17.422683974534765 + 07/02 14:30:00,12.8,12.8,17.422416355482797 + 07/02 14:40:00,12.8,12.8,17.42189766431083 + 07/02 14:50:00,12.8,12.8,17.420292884304428 + 07/02 15:00:00,12.8,12.8,17.417306849379814 + 07/02 15:10:00,12.8,12.8,18.83313836396601 + 07/02 15:20:00,12.8,12.8,18.985411283705799 + 07/02 15:30:00,12.8,12.8,19.04636271571019 + 07/02 15:40:00,12.8,12.8,19.09410007077571 + 07/02 15:50:00,12.8,12.8,19.13111186665318 + 07/02 16:00:00,12.8,12.8,19.162077753491635 + 07/02 16:10:00,12.8,12.8,19.188417038490596 + 07/02 16:20:00,12.8,12.8,19.220095308203569 + 07/02 16:30:00,12.8,12.8,19.240787464836204 + 07/02 16:40:00,12.8,12.8,19.259686313705708 + 07/02 16:50:00,12.8,12.8,19.277403605360605 + 07/02 17:00:00,12.8,12.8,19.294083219998286 + 07/02 17:10:00,12.8,12.8,19.31021522839115 + 07/02 17:20:00,12.8,12.8,19.342997774460807 + 07/02 17:30:00,12.8,12.8,19.358489384914493 + 07/02 17:40:00,12.8,12.8,19.37222810505768 + 07/02 17:50:00,12.8,12.8,19.387585756687913 + 07/02 18:00:00,12.8,12.8,19.401321837894345 + 07/02 18:10:00,12.8,12.8,19.416832262953663 + 07/02 18:20:00,12.8,12.8,19.431433265701796 + 07/02 18:30:00,12.8,12.8,19.44651844904649 + 07/02 18:40:00,12.8,12.8,19.461210848594406 + 07/02 18:50:00,12.8,12.8,19.47564013431197 + 07/02 19:00:00,12.8,12.8,19.489719756926005 + 07/02 19:10:00,12.8,12.8,19.503478033201618 + 07/02 19:20:00,12.8,12.8,19.517065888552783 + 07/02 19:30:00,12.8,12.8,19.530358092448866 + 07/02 19:40:00,12.8,12.8,19.54338480309745 + 07/02 19:50:00,12.8,12.8,19.54791260407851 + 07/02 20:00:00,12.8,12.8,19.565791569112798 + 07/02 20:10:00,12.8,12.8,19.55376784673505 + 07/02 20:20:00,12.8,12.8,19.567533824557854 + 07/02 20:30:00,12.8,12.8,19.575905799059578 + 07/02 20:40:00,12.8,12.8,19.587316864705949 + 07/02 20:50:00,12.8,12.8,19.597371933358365 + 07/02 21:00:00,12.8,12.8,19.607595003787826 + 07/02 21:10:00,12.8,12.8,19.61702768010427 + 07/02 21:20:00,12.8,12.8,19.62547474089681 + 07/02 21:30:00,12.8,12.8,19.633523903147329 + 07/02 21:40:00,12.8,12.8,19.641076440451287 + 07/02 21:50:00,12.8,12.8,19.64823211568828 + 07/02 22:00:00,12.8,12.8,19.65502395377525 + 07/02 22:10:00,12.8,12.8,19.661491152418106 + 07/02 22:20:00,12.8,12.8,19.66823882532842 + 07/02 22:30:00,12.8,12.8,19.674852280856166 + 07/02 22:40:00,12.8,12.8,19.681434980773074 + 07/02 22:50:00,12.8,12.8,19.687910512931994 + 07/02 23:00:00,12.8,12.8,19.694245517979299 + 07/02 23:10:00,12.8,12.8,19.70054849572474 + 07/02 23:20:00,12.8,12.8,19.707473410773639 + 07/02 23:30:00,12.8,12.8,19.714193049385114 + 07/02 23:40:00,12.8,12.8,19.720886350586775 + 07/02 23:50:00,12.8,12.8,19.727377795494939 + 07/02 24:00:00,12.8,12.8,19.733692471216476 + 07/03 00:10:00,12.8,12.8,19.739595830699753 + 07/03 00:20:00,12.8,12.8,19.74450439221229 + 07/03 00:30:00,12.8,12.8,19.749472707318277 + 07/03 00:40:00,12.8,12.8,19.75430773829366 + 07/03 00:50:00,12.8,12.8,19.759148773701538 + 07/03 01:00:00,12.8,12.8,19.76433263817421 + 07/03 01:10:00,12.871471471471472,12.871471471471472,19.769983349796659 + 07/03 01:20:00,12.942942942942944,12.942942942942944,19.776619218445718 + 07/03 01:30:00,13.014414414414415,13.014414414414415,19.783067184889945 + 07/03 01:40:00,13.085885885885887,13.085885885885887,19.78944280397353 + 07/03 01:50:00,13.157357357357359,13.157357357357359,19.795678782381026 + 07/03 02:00:00,13.22882882882883,13.22882882882883,19.801760089327339 + 07/03 02:10:00,13.296096096096097,13.296096096096097,19.80799348715042 + 07/03 02:20:00,13.363363363363364,13.363363363363364,19.813714869516617 + 07/03 02:30:00,13.430630630630632,13.430630630630632,19.81902453710634 + 07/03 02:40:00,13.497897897897899,13.497897897897899,19.82406207197365 + 07/03 02:50:00,13.565165165165166,13.565165165165166,19.829055781877004 + 07/03 03:00:00,13.632432432432433,13.632432432432433,19.833932344302139 + 07/03 03:10:00,13.632432432432433,13.632432432432433,19.837996429823215 + 07/03 03:20:00,13.632432432432433,13.632432432432433,19.841904465787107 + 07/03 03:30:00,13.632432432432433,13.632432432432433,19.845646408311699 + 07/03 03:40:00,13.632432432432433,13.632432432432433,19.849377990466857 + 07/03 03:50:00,13.632432432432433,13.632432432432433,19.852960090828505 + 07/03 04:00:00,13.632432432432433,13.632432432432433,19.8564849819014 + 07/03 04:10:00,13.632432432432433,13.632432432432433,19.859327366585366 + 07/03 04:20:00,13.632432432432433,13.632432432432433,19.861692247863567 + 07/03 04:30:00,13.632432432432433,13.632432432432433,19.86420854934176 + 07/03 04:40:00,13.632432432432433,13.632432432432433,19.86670547039047 + 07/03 04:50:00,13.632432432432433,13.632432432432433,19.86932757059158 + 07/03 05:00:00,13.632432432432433,13.632432432432433,19.872183688881579 + 07/03 05:10:00,13.611411411411412,13.611411411411412,19.876098388433506 + 07/03 05:20:00,13.590390390390392,13.590390390390392,19.879976162141259 + 07/03 05:30:00,13.56936936936937,13.56936936936937,19.88319188033966 + 07/03 05:40:00,13.548348348348349,13.548348348348349,19.885643628468317 + 07/03 05:50:00,13.527327327327328,13.527327327327328,19.88697315662507 + 07/03 06:00:00,13.506306306306307,13.506306306306307,19.88701387635285 + 07/03 06:10:00,13.40960960960961,13.40960960960961,17.891981991711555 + 07/03 06:20:00,13.312912912912913,13.312912912912913,17.654538157313284 + 07/03 06:30:00,13.216216216216216,13.216216216216216,17.563099171458405 + 07/03 06:40:00,13.11951951951952,13.11951951951952,17.49043238981072 + 07/03 06:50:00,13.022822822822823,13.022822822822823,17.431191847057474 + 07/03 07:00:00,12.926126126126127,12.926126126126127,17.38042650102043 + 07/03 07:05:00,12.8,12.8,15.88341101543265 + 07/03 07:10:00,12.8,12.8,15.890361593488415 + 07/03 07:20:00,12.8,12.8,15.65657824056217 + 07/03 07:30:00,12.8,12.8,15.538862957611272 + 07/03 07:40:00,12.8,12.8,15.444781664445657 + 07/03 07:50:00,12.8,12.8,15.363380503990824 + 07/03 08:00:00,12.8,12.8,15.291182501981588 + 07/03 08:05:00,12.8,12.8,15.199777581709832 + 07/03 08:10:00,12.8,12.8,15.199746628895904 + 07/03 08:20:00,12.8,12.8,15.131108951981098 + 07/03 08:30:00,12.8,12.8,15.075086325558152 + 07/03 08:40:00,12.8,12.8,15.023409614116128 + 07/03 08:50:00,12.8,12.8,14.975697549726404 + 07/03 09:00:00,12.8,12.8,14.931671704023577 + 07/03 09:10:00,12.8,12.8,14.89099633161014 + 07/03 09:20:00,12.8,12.8,14.842513333929374 + 07/03 09:30:00,12.8,12.8,14.806757638146529 + 07/03 09:40:00,12.8,12.8,14.772961945357844 + 07/03 09:50:00,12.8,12.8,14.740416283304473 + 07/03 10:00:00,12.8,12.8,14.70890629195609 + 07/03 10:10:00,12.8,12.8,14.678152970058856 + 07/03 10:20:00,12.8,12.8,14.6446198138483 + 07/03 10:30:00,12.8,12.8,14.61519547117287 + 07/03 10:40:00,12.8,12.8,14.586449762708403 + 07/03 10:50:00,12.8,12.8,14.558403446680643 + 07/03 11:00:00,12.8,12.8,14.531122572027432 + 07/03 11:10:00,12.8,12.8,14.504396519841422 + 07/03 11:20:00,12.8,12.8,14.488016769081849 + 07/03 11:30:00,12.8,12.8,14.462781083601545 + 07/03 11:40:00,12.8,12.8,14.438709995721313 + 07/03 11:50:00,12.8,12.8,14.417054143228864 + 07/03 12:00:00,12.8,12.8,14.397890460425972 + 07/03 12:10:00,12.8,12.8,14.381143066929548 + 07/03 12:20:00,12.8,12.8,14.356827031665512 + 07/03 12:30:00,12.8,12.8,14.343932929853784 + 07/03 12:40:00,12.8,12.8,14.331765690477735 + 07/03 12:50:00,12.8,12.8,14.318548800608856 + 07/03 13:00:00,12.8,12.8,14.304000058437861 + 07/03 13:10:00,12.8,12.8,14.28807273214304 + 07/03 13:20:00,12.8,12.8,14.275073575601056 + 07/03 13:30:00,12.8,12.8,14.258316930022107 + 07/03 13:40:00,12.8,12.8,14.242195305443702 + 07/03 13:50:00,12.8,12.8,14.227988379990425 + 07/03 14:00:00,12.8,12.8,14.216065789916116 + 07/03 14:10:00,12.8,12.8,14.206569984136277 + 07/03 14:20:00,12.8,12.8,14.20215630121516 + 07/03 14:30:00,12.8,12.8,14.195583665858319 + 07/03 14:40:00,12.8,12.8,14.189720245791273 + 07/03 14:50:00,12.8,12.8,14.18485119521074 + 07/03 15:00:00,12.8,12.8,14.179860833050262 + 07/03 15:05:00,12.8,12.8,16.334099620602318 + 07/03 15:10:00,12.8,12.8,16.32975708547437 + 07/03 15:20:00,12.8,12.8,16.583342231866476 + 07/03 15:30:00,12.8,12.8,16.68279977224048 + 07/03 15:40:00,12.8,12.8,16.75632696717553 + 07/03 15:50:00,12.8,12.8,16.817016127502375 + 07/03 16:00:00,12.8,12.8,16.86442474669713 + 07/03 16:10:00,12.8,12.8,16.93268191997504 + 07/03 16:20:00,12.8,12.8,16.989014100720909 + 07/03 16:30:00,12.8,12.8,17.021329459611289 + 07/03 16:40:00,12.8,12.8,17.049803506746195 + 07/03 16:50:00,12.8,12.8,17.075005145807788 + 07/03 17:00:00,12.8,12.8,17.09736381729621 + 07/03 17:10:00,12.8,12.8,17.128868241983967 + 07/03 17:20:00,12.8,12.8,17.15305164295374 + 07/03 17:30:00,12.8,12.8,17.17141044012344 + 07/03 17:40:00,12.8,12.8,17.189679687563325 + 07/03 17:50:00,12.8,12.8,17.208023949218189 + 07/03 18:00:00,12.8,12.8,17.22623831614532 + 07/03 18:10:00,12.8,12.8,17.24498139333631 + 07/03 18:20:00,12.8,12.8,17.26316663341141 + 07/03 18:30:00,12.8,12.8,17.28070791054411 + 07/03 18:40:00,12.8,12.8,17.297665106253658 + 07/03 18:50:00,12.8,12.8,17.31411985643991 + 07/03 19:00:00,12.8,12.8,17.330158944494444 + 07/03 19:10:00,12.8,12.8,17.35935459067056 + 07/03 19:20:00,12.8,12.8,17.374459485352678 + 07/03 19:30:00,12.8,12.8,17.390597187503646 + 07/03 19:40:00,12.8,12.8,17.40421049576075 + 07/03 19:50:00,12.8,12.8,17.419497816449057 + 07/03 20:00:00,12.8,12.8,17.432483938803537 + 07/03 20:10:00,12.8,12.8,17.424332727994103 + 07/03 20:20:00,12.8,12.8,17.439938809753458 + 07/03 20:30:00,12.8,12.8,17.452257816839344 + 07/03 20:40:00,12.8,12.8,17.462737721161767 + 07/03 20:50:00,12.8,12.8,17.471806250039316 + 07/03 21:00:00,12.8,12.8,17.481825743520497 + 07/03 21:10:00,12.8,12.8,17.49077761276068 + 07/03 21:20:00,12.8,12.8,17.498654314882477 + 07/03 21:30:00,12.8,12.8,17.50778590321928 + 07/03 21:40:00,12.8,12.8,17.51580026752477 + 07/03 21:50:00,12.8,12.8,17.522920211117204 + 07/03 22:00:00,12.8,12.8,17.531742507906335 + 07/03 22:10:00,12.8,12.8,18.89617518877299 + 07/03 22:20:00,12.8,12.8,19.043824954132668 + 07/03 22:30:00,12.8,12.8,19.109595542369044 + 07/03 22:40:00,12.8,12.8,19.162273870917724 + 07/03 22:50:00,12.8,12.8,19.205214416792715 + 07/03 23:00:00,12.8,12.8,19.24166445510566 + 07/03 23:10:00,12.8,12.8,19.27331734573021 + 07/03 23:20:00,12.8,12.8,19.300409418794755 + 07/03 23:30:00,12.8,12.8,19.324616636220548 + 07/03 23:40:00,12.8,12.8,19.346377705192987 + 07/03 23:50:00,12.8,12.8,19.366427354503455 + 07/03 24:00:00,12.8,12.8,19.384923044451037 + 07/04 00:10:00,12.8,12.8,19.40240350376424 + 07/04 00:20:00,12.8,12.8,19.41879812320152 + 07/04 00:30:00,12.8,12.8,19.43448850219365 + 07/04 00:40:00,12.8,12.8,19.449532568661298 + 07/04 00:50:00,12.8,12.8,19.464273661141509 + 07/04 01:00:00,12.8,12.8,19.47865932913957 + 07/04 01:10:00,12.8,12.8,19.492793555221753 + 07/04 01:20:00,12.8,12.8,19.506424684576495 + 07/04 01:30:00,12.8,12.8,19.51954755242781 + 07/04 01:40:00,12.8,12.8,19.532084845889647 + 07/04 01:50:00,12.8,12.8,19.544062097577613 + 07/04 02:00:00,12.8,12.8,19.555504643258169 + 07/04 02:10:00,12.8,12.8,19.566412194461475 + 07/04 02:20:00,12.8,12.8,19.576794284373248 + 07/04 02:30:00,12.8,12.8,19.58667625381055 + 07/04 02:40:00,12.8,12.8,19.596176702729744 + 07/04 02:50:00,12.8,12.8,19.605410208591477 + 07/04 03:00:00,12.8,12.8,19.61433964109989 + 07/04 03:10:00,12.8,12.8,19.622843181996463 + 07/04 03:20:00,12.8,12.8,19.631204598449167 + 07/04 03:30:00,12.8,12.8,19.639434090082938 + 07/04 03:40:00,12.8,12.8,19.647539780427715 + 07/04 03:50:00,12.8,12.8,19.65545681465617 + 07/04 04:00:00,12.8,12.8,19.663285296415589 + 07/04 04:10:00,12.821021021021022,12.821021021021022,19.671227015534588 + 07/04 04:20:00,12.842042042042042,12.842042042042042,19.679001656969829 + 07/04 04:30:00,12.863063063063063,12.863063063063063,19.68800543000737 + 07/04 04:40:00,12.884084084084084,12.884084084084084,19.69501936798607 + 07/04 04:50:00,12.905105105105106,12.905105105105106,19.702196806402779 + 07/04 05:00:00,12.926126126126127,12.926126126126127,19.708935011572419 + 07/04 05:10:00,12.905105105105106,12.905105105105106,19.715242077443184 + 07/04 05:20:00,12.884084084084084,12.884084084084084,19.721345526533065 + 07/04 05:30:00,12.863063063063063,12.863063063063063,19.727130316739804 + 07/04 05:40:00,12.842042042042042,12.842042042042042,19.732376662031009 + 07/04 05:50:00,12.821021021021022,12.821021021021022,19.737165973302824 + 07/04 06:00:00,12.8,12.8,19.740747875331356 + 07/04 06:10:00,12.8,12.8,19.76601727546818 + 07/04 06:20:00,12.8,12.8,19.767657919898278 + 07/04 06:30:00,12.8,12.8,19.769347070954234 + 07/04 06:40:00,12.8,12.8,19.770286954282719 + 07/04 06:50:00,12.8,12.8,19.77061550009838 + 07/04 07:00:00,12.8,12.8,19.770081194747353 + 07/04 07:10:00,12.8,12.8,18.376452838483929 + 07/04 07:20:00,12.8,12.8,18.19503277119554 + 07/04 07:30:00,12.8,12.8,18.125249737030896 + 07/04 07:40:00,12.8,12.8,18.066914847548124 + 07/04 07:50:00,12.8,12.8,18.02044308845758 + 07/04 08:00:00,12.8,12.8,17.979961370676329 + 07/04 08:10:00,12.8,12.8,17.943254812274544 + 07/04 08:20:00,12.8,12.8,17.900836823218854 + 07/04 08:30:00,12.8,12.8,17.86918133561036 + 07/04 08:40:00,12.8,12.8,17.839482518150754 + 07/04 08:50:00,12.8,12.8,17.811376637985057 + 07/04 09:00:00,12.8,12.8,17.78468292620338 + 07/04 09:10:00,12.8,12.8,17.759174504809314 + 07/04 09:20:00,12.8,12.8,17.726087831267305 + 07/04 09:30:00,12.8,12.8,17.702599330408256 + 07/04 09:40:00,12.8,12.8,17.68013752639564 + 07/04 09:50:00,12.8,12.8,17.658971896481668 + 07/04 10:00:00,12.8,12.8,17.639093162511999 + 07/04 10:10:00,12.8,12.8,17.62036460032222 + 07/04 10:20:00,12.8,12.8,17.602634618571274 + 07/04 10:30:00,12.8,12.8,17.585764133836184 + 07/04 10:40:00,12.8,12.8,17.56943057633836 + 07/04 10:50:00,12.8,12.8,17.553281756707916 + 07/04 11:00:00,12.8,12.8,17.537326592885014 + 07/04 11:10:00,12.8,12.8,17.521837713835227 + 07/04 11:20:00,12.8,12.8,17.50657789602492 + 07/04 11:30:00,12.8,12.8,17.491791403379325 + 07/04 11:40:00,12.8,12.8,17.477639307756826 + 07/04 11:50:00,12.8,12.8,17.46445436637898 + 07/04 12:00:00,12.8,12.8,17.45234948242555 + 07/04 12:10:00,12.8,12.8,17.44111002541773 + 07/04 12:20:00,12.8,12.8,17.430977802744253 + 07/04 12:30:00,12.8,12.8,17.421734027361436 + 07/04 12:40:00,12.8,12.8,17.41334439299381 + 07/04 12:50:00,12.8,12.8,17.405265126958093 + 07/04 13:00:00,12.8,12.8,17.397303859241029 + 07/04 13:10:00,12.8,12.8,17.389970692871576 + 07/04 13:20:00,12.8,12.8,17.382723465022 + 07/04 13:30:00,12.8,12.8,17.37554738263717 + 07/04 13:40:00,12.8,12.8,17.368525941342776 + 07/04 13:50:00,12.8,12.8,17.362114211495407 + 07/04 14:00:00,12.8,12.8,17.356293391887197 + 07/04 14:10:00,12.8,12.8,17.350531965081097 + 07/04 14:20:00,12.8,12.8,17.3457809696136 + 07/04 14:30:00,12.8,12.8,17.342041856001246 + 07/04 14:40:00,12.8,12.8,17.339248012019828 + 07/04 14:50:00,12.8,12.8,17.337371731479437 + 07/04 15:00:00,12.8,12.8,17.33645876084065 + 07/04 15:10:00,12.8,12.8,18.75731822229346 + 07/04 15:20:00,12.8,12.8,18.91409960405975 + 07/04 15:30:00,12.8,12.8,18.979242471858158 + 07/04 15:40:00,12.8,12.8,19.030971154341196 + 07/04 15:50:00,12.8,12.8,19.07191991779174 + 07/04 16:00:00,12.8,12.8,19.106058246862646 + 07/04 16:10:00,12.8,12.8,19.135947937438197 + 07/04 16:20:00,12.8,12.8,19.17134982625346 + 07/04 16:30:00,12.8,12.8,19.196321573079925 + 07/04 16:40:00,12.8,12.8,19.219673093534668 + 07/04 16:50:00,12.8,12.8,19.24149383699656 + 07/04 17:00:00,12.8,12.8,19.261779297533637 + 07/04 17:10:00,12.8,12.8,19.280646490227629 + 07/04 17:20:00,12.8,12.8,19.315440137884573 + 07/04 17:30:00,12.8,12.8,19.331568715948479 + 07/04 17:40:00,12.8,12.8,19.346629189928384 + 07/04 17:50:00,12.8,12.8,19.361369450684817 + 07/04 18:00:00,12.8,12.8,19.375831379865173 + 07/04 18:10:00,12.8,12.8,19.39018554362578 + 07/04 18:20:00,12.8,12.8,19.404463244273367 + 07/04 18:30:00,12.8,12.8,19.418635308371259 + 07/04 18:40:00,12.8,12.8,19.432683268632507 + 07/04 18:50:00,12.8,12.8,19.446533185384629 + 07/04 19:00:00,12.8,12.8,19.460273930080875 + 07/04 19:10:00,12.8,12.8,19.474026452878279 + 07/04 19:20:00,12.8,12.8,19.487627534147458 + 07/04 19:30:00,12.8,12.8,19.501079541282317 + 07/04 19:40:00,12.8,12.8,19.51417473161428 + 07/04 19:50:00,12.8,12.8,19.52700619659031 + 07/04 20:00:00,12.8,12.8,19.539649545463548 + 07/04 20:10:00,12.8,12.8,19.52943751593034 + 07/04 20:20:00,12.8,12.8,19.540521233521845 + 07/04 20:30:00,12.8,12.8,19.55100071636027 + 07/04 20:40:00,12.8,12.8,19.560730628361044 + 07/04 20:50:00,12.8,12.8,19.56999973300827 + 07/04 21:00:00,12.8,12.8,19.5787110052535 + 07/04 21:10:00,12.8,12.8,19.58705975948233 + 07/04 21:20:00,12.8,12.8,19.595068316930694 + 07/04 21:30:00,12.8,12.8,19.602669785769508 + 07/04 21:40:00,12.8,12.8,19.61004988912312 + 07/04 21:50:00,12.8,12.8,19.617297026827939 + 07/04 22:00:00,12.8,12.8,19.624276549767033 + 07/04 22:10:00,12.8,12.8,19.630930374331045 + 07/04 22:20:00,12.8,12.8,19.637247125595317 + 07/04 22:30:00,12.8,12.8,19.6433463059833 + 07/04 22:40:00,12.8,12.8,19.649191993701714 + 07/04 22:50:00,12.8,12.8,19.65479036337713 + 07/04 23:00:00,12.8,12.8,19.660165507982588 + 07/04 23:10:00,12.8,12.8,19.665679524336626 + 07/04 23:20:00,12.8,12.8,19.671533795990244 + 07/04 23:30:00,12.8,12.8,19.677350608166149 + 07/04 23:40:00,12.8,12.8,19.68337702132081 + 07/04 23:50:00,12.8,12.8,19.68955031114846 + 07/04 24:00:00,12.8,12.8,19.69471270608767 + 07/05 00:10:00,12.8,12.8,19.701773372088647 + 07/05 00:20:00,12.8,12.8,19.70777969032659 + 07/05 00:30:00,12.8,12.8,19.714212907920435 + 07/05 00:40:00,12.8,12.8,19.719045560355988 + 07/05 00:50:00,12.8,12.8,19.7254524034356 + 07/05 01:00:00,12.8,12.8,19.730550286944664 + 07/05 01:10:00,12.8,12.8,19.736155797049308 + 07/05 01:20:00,12.8,12.8,19.74026548534774 + 07/05 01:30:00,12.8,12.8,19.746102169005665 + 07/05 01:40:00,12.8,12.8,19.750855228696815 + 07/05 01:50:00,12.8,12.8,19.756044278901706 + 07/05 02:00:00,12.8,12.8,19.761075082174484 + 07/05 02:10:00,12.8,12.8,19.764695624540985 + 07/05 02:20:00,12.8,12.8,19.770208334918367 + 07/05 02:30:00,12.8,12.8,19.774398663868554 + 07/05 02:40:00,12.8,12.8,19.77901685436088 + 07/05 02:50:00,12.8,12.8,19.78329833540514 + 07/05 03:00:00,12.8,12.8,19.785986043252295 + 07/05 03:10:00,12.8,12.8,19.790729724947754 + 07/05 03:20:00,12.8,12.8,19.79388394715434 + 07/05 03:30:00,12.8,12.8,19.797504994454095 + 07/05 03:40:00,12.8,12.8,19.799445112273184 + 07/05 03:50:00,12.8,12.8,19.803417954179204 + 07/05 04:00:00,12.8,12.8,19.80627349817461 + 07/05 04:10:00,12.8,12.8,19.809718297347094 + 07/05 04:20:00,12.8,12.8,19.812914331428926 + 07/05 04:30:00,12.8,12.8,19.81446208506212 + 07/05 04:40:00,12.8,12.8,19.818437688766726 + 07/05 04:50:00,12.8,12.8,19.821041596389276 + 07/05 05:00:00,12.8,12.8,19.824404580607984 + 07/05 05:10:00,12.8,12.8,19.825873065031176 + 07/05 05:20:00,12.8,12.8,19.829411794867043 + 07/05 05:30:00,12.8,12.8,19.831772818678308 + 07/05 05:40:00,12.8,12.8,19.833535945803797 + 07/05 05:50:00,12.8,12.8,19.836139465093518 + 07/05 06:00:00,12.8,12.8,19.83694183642159 + 07/05 06:10:00,12.8,12.8,17.84896614437598 + 07/05 06:20:00,12.8,12.8,17.59316673106749 + 07/05 06:25:00,12.8,12.8,17.498954744292207 + 07/05 06:30:00,12.8,12.8,17.500004966765869 + 07/05 06:40:00,12.8,12.8,17.42454116869391 + 07/05 06:50:00,12.8,12.8,17.365280765519633 + 07/05 07:00:00,12.8,12.8,17.313604141645479 + 07/05 07:05:00,12.8,12.8,15.817034653892878 + 07/05 07:10:00,12.8,12.8,15.822915795171353 + 07/05 07:20:00,12.8,12.8,15.589474633384132 + 07/05 07:30:00,12.8,12.8,15.472522984480398 + 07/05 07:40:00,12.8,12.8,15.379074010097883 + 07/05 07:50:00,12.8,12.8,15.298737783845465 + 07/05 08:00:00,12.8,12.8,15.228077587645047 + 07/05 08:03:19,12.8,12.8,15.139610780786061 + 07/05 08:06:40,12.8,12.8,15.13879712380873 + 07/05 08:10:00,12.8,12.8,15.138960984676255 + 07/05 08:20:00,12.8,12.8,15.071413413511044 + 07/05 08:30:00,12.8,12.8,15.016705983707423 + 07/05 08:40:00,12.8,12.8,14.965643164643256 + 07/05 08:50:00,12.8,12.8,14.917895447599728 + 07/05 09:00:00,12.8,12.8,14.87328612103107 + 07/05 09:10:00,12.8,12.8,14.83111531204136 + 07/05 09:20:00,12.8,12.8,14.780959460364509 + 07/05 09:30:00,12.8,12.8,14.743490289047143 + 07/05 09:40:00,12.8,12.8,14.708220944908352 + 07/05 09:50:00,12.8,12.8,14.67473716564015 + 07/05 10:00:00,12.8,12.8,14.642900648442807 + 07/05 10:10:00,12.8,12.8,14.61324636756529 + 07/05 10:20:00,12.8,12.8,14.581435445676066 + 07/05 10:30:00,12.8,12.8,14.554249300027565 + 07/05 10:40:00,12.8,12.8,14.528018620123105 + 07/05 10:50:00,12.8,12.8,14.502384458782819 + 07/05 11:00:00,12.8,12.8,14.477208972223265 + 07/05 11:10:00,12.8,12.8,14.452280717472748 + 07/05 11:20:00,12.8,12.8,14.437674828539626 + 07/05 11:30:00,12.8,12.8,14.41418741018067 + 07/05 11:40:00,12.8,12.8,14.391698927145172 + 07/05 11:50:00,12.8,12.8,14.371204162378723 + 07/05 12:00:00,12.8,12.8,14.352801139854762 + 07/05 12:10:00,12.8,12.8,14.335978423595371 + 07/05 12:20:00,12.8,12.8,14.311338580514783 + 07/05 12:30:00,12.8,12.8,14.297853021177542 + 07/05 12:40:00,12.8,12.8,14.285332735049308 + 07/05 12:50:00,12.8,12.8,14.272809713373914 + 07/05 13:00:00,12.8,12.8,14.25996119534458 + 07/05 13:10:00,12.8,12.8,14.24709596004367 + 07/05 13:20:00,12.8,12.8,14.237532558716032 + 07/05 13:30:00,12.8,12.8,14.224633814188078 + 07/05 13:40:00,12.8,12.8,14.212241645460038 + 07/05 13:50:00,12.8,12.8,14.201175559664235 + 07/05 14:00:00,12.8,12.8,14.191637851111358 + 07/05 14:10:00,12.8,12.8,14.183338759826933 + 07/05 14:20:00,12.8,12.8,14.179910515468983 + 07/05 14:30:00,12.8,12.8,14.17422980390207 + 07/05 14:40:00,12.8,12.8,14.169096111618824 + 07/05 14:50:00,12.8,12.8,14.164322592586549 + 07/05 15:00:00,12.8,12.8,14.159454133889522 + 07/05 15:05:00,12.8,12.8,16.31558739614829 + 07/05 15:10:00,12.8,12.8,16.310917587093557 + 07/05 15:20:00,12.8,12.8,16.565166217846739 + 07/05 15:30:00,12.8,12.8,16.665055930555569 + 07/05 15:40:00,12.8,12.8,16.737565633098379 + 07/05 15:50:00,12.8,12.8,16.79299175400489 + 07/05 16:00:00,12.8,12.8,16.836923840102778 + 07/05 16:10:00,12.8,12.8,16.900393833487344 + 07/05 16:20:00,12.8,12.8,16.95267404608409 + 07/05 16:30:00,12.8,12.8,16.98171863181856 + 07/05 16:40:00,12.8,12.8,17.008037062023968 + 07/05 16:50:00,12.8,12.8,17.032823550515717 + 07/05 17:00:00,12.8,12.8,17.05619753288659 + 07/05 17:10:00,12.8,12.8,17.091273616967294 + 07/05 17:15:00,12.8,12.8,17.11892687607585 + 07/05 17:20:00,12.8,12.8,17.118544414993406 + 07/05 17:30:00,12.8,12.8,17.13820938673348 + 07/05 17:35:00,12.8,12.8,17.157903443423558 + 07/05 17:40:00,12.8,12.8,17.157721533184774 + 07/05 17:50:00,12.8,12.8,17.175563511115219 + 07/05 18:00:00,12.8,12.8,17.19319733429021 + 07/05 18:10:00,12.8,12.8,17.210064817483173 + 07/05 18:20:00,12.8,12.8,17.226712377542535 + 07/05 18:30:00,12.8,12.8,17.243171360989594 + 07/05 18:40:00,12.8,12.8,17.2593859178334 + 07/05 18:50:00,12.8,12.8,17.27519348110154 + 07/05 19:00:00,12.8,12.8,17.290575016881648 + 07/05 19:10:00,12.8,12.8,17.319001321691525 + 07/05 19:20:00,12.8,12.8,17.33481188927173 + 07/05 19:30:00,12.8,12.8,17.34971402849538 + 07/05 19:40:00,12.8,12.8,17.36417474834343 + 07/05 19:50:00,12.8,12.8,17.378367374092453 + 07/05 20:00:00,12.8,12.8,17.39243637898045 + 07/05 20:10:00,12.8,12.8,17.38385896575981 + 07/05 20:20:00,12.8,12.8,17.401026715176287 + 07/05 20:30:00,12.8,12.8,17.413414778776145 + 07/05 20:40:00,12.8,12.8,17.425137875252589 + 07/05 20:50:00,12.8,12.8,17.436457983007608 + 07/05 21:00:00,12.8,12.8,17.447457248507413 + 07/05 21:10:00,12.8,12.8,17.457390539716543 + 07/05 21:20:00,12.8,12.8,17.466543801731356 + 07/05 21:30:00,12.8,12.8,17.47480076703833 + 07/05 21:40:00,12.8,12.8,17.48228670611093 + 07/05 21:50:00,12.8,12.8,17.48904155260787 + 07/05 22:00:00,12.8,12.8,17.495297186738719 + 07/05 22:10:00,12.8,12.8,18.859435885037855 + 07/05 22:20:00,12.8,12.8,19.00813996789106 + 07/05 22:30:00,12.8,12.8,19.073133612271808 + 07/05 22:40:00,12.8,12.8,19.125456635388756 + 07/05 22:50:00,12.8,12.8,19.16722175219378 + 07/05 23:00:00,12.8,12.8,19.199890083142578 + 07/05 23:10:00,12.8,12.8,19.228075702822065 + 07/05 23:20:00,12.8,12.8,19.252876316445954 + 07/05 23:30:00,12.8,12.8,19.27502189785235 + 07/05 23:40:00,12.8,12.8,19.295402964126873 + 07/05 23:50:00,12.8,12.8,19.31419840745201 + 07/05 24:00:00,12.8,12.8,19.331678078136198 + 07/06 00:10:00,12.8,12.8,19.34750766595475 + 07/06 00:20:00,12.8,12.8,19.363642660455626 + 07/06 00:30:00,12.8,12.8,19.37850240827888 + 07/06 00:40:00,12.8,12.8,19.392500810873309 + 07/06 00:50:00,12.8,12.8,19.407013171172474 + 07/06 01:00:00,12.8,12.8,19.42048906192935 + 07/06 01:10:00,12.8,12.8,19.43310442942487 + 07/06 01:20:00,12.8,12.8,19.446518867804984 + 07/06 01:30:00,12.8,12.8,19.459265478434668 + 07/06 01:40:00,12.8,12.8,19.471486720542225 + 07/06 01:50:00,12.8,12.8,19.484667920204204 + 07/06 02:00:00,12.8,12.8,19.497081779343664 + 07/06 02:10:00,12.8,12.8,19.50881980125687 + 07/06 02:20:00,12.8,12.8,19.52153320440693 + 07/06 02:30:00,12.8,12.8,19.53335968316665 + 07/06 02:40:00,12.8,12.8,19.545342899012107 + 07/06 02:50:00,12.8,12.8,19.556026153895453 + 07/06 03:00:00,12.8,12.8,19.567841625280886 + 07/06 03:10:00,12.8,12.8,19.578508575060007 + 07/06 03:20:00,12.8,12.8,19.5892733173198 + 07/06 03:30:00,12.8,12.8,19.59843735201197 + 07/06 03:40:00,12.8,12.8,19.608750405014729 + 07/06 03:50:00,12.8,12.8,19.617770006047015 + 07/06 04:00:00,12.8,12.8,19.626961648684746 + 07/06 04:10:00,12.8,12.8,19.635654388028607 + 07/06 04:20:00,12.8,12.8,19.64266103872334 + 07/06 04:30:00,12.8,12.8,19.65139714776013 + 07/06 04:40:00,12.8,12.8,19.65864450658718 + 07/06 04:50:00,12.8,12.8,19.666250445597144 + 07/06 05:00:00,12.8,12.8,19.67214943807027 + 07/06 05:10:00,12.8,12.8,19.679806327019305 + 07/06 05:20:00,12.8,12.8,19.686001380580075 + 07/06 05:30:00,12.8,12.8,19.69142785017065 + 07/06 05:40:00,12.8,12.8,19.697578909206844 + 07/06 05:50:00,12.8,12.8,19.70213210446946 + 07/06 06:00:00,12.8,12.8,19.705234246746977 + 07/06 06:10:00,12.8,12.8,17.71736308106471 + 07/06 06:20:00,12.8,12.8,17.46210071234433 + 07/06 06:30:00,12.8,12.8,17.373528140046326 + 07/06 06:40:00,12.8,12.8,17.30137046041082 + 07/06 06:50:00,12.8,12.8,17.24672989310789 + 07/06 07:00:00,12.8,12.8,17.20044542418168 + 07/06 07:05:00,12.8,12.8,15.705929419727669 + 07/06 07:10:00,12.8,12.8,15.712514649346657 + 07/06 07:15:00,12.8,12.8,15.48068953746863 + 07/06 07:20:00,12.8,12.8,15.478943786249486 + 07/06 07:30:00,12.8,12.8,15.371270274963666 + 07/06 07:40:00,12.8,12.8,15.282642622344826 + 07/06 07:50:00,12.8,12.8,15.205652614991154 + 07/06 08:00:00,12.8,12.8,15.138047813491163 + 07/06 08:03:19,12.8,12.8,15.052327407374503 + 07/06 08:06:40,12.8,12.8,15.051928151103404 + 07/06 08:10:00,12.8,12.8,15.051866554084083 + 07/06 08:20:00,12.8,12.8,14.987230447265928 + 07/06 08:30:00,12.8,12.8,14.93515176007911 + 07/06 08:40:00,12.8,12.8,14.886415776227072 + 07/06 08:50:00,12.8,12.8,14.840650119062751 + 07/06 09:00:00,12.8,12.8,14.797592675080395 + 07/06 09:10:00,12.8,12.8,14.756944463236648 + 07/06 09:20:00,12.8,12.8,14.708043397388267 + 07/06 09:30:00,12.8,12.8,14.671602601697498 + 07/06 09:40:00,12.8,12.8,14.637187494528212 + 07/06 09:50:00,12.8,12.8,14.60450122216048 + 07/06 10:00:00,12.8,12.8,14.57345921549098 + 07/06 10:10:00,12.8,12.8,14.543767838151745 + 07/06 10:20:00,12.8,12.8,14.511736631828113 + 07/06 10:30:00,12.8,12.8,14.484152839173854 + 07/06 10:40:00,12.8,12.8,14.45769398700734 + 07/06 10:50:00,12.8,12.8,14.432279138454226 + 07/06 11:00:00,12.8,12.8,14.407906503564727 + 07/06 11:10:00,12.8,12.8,14.38438702747312 + 07/06 11:20:00,12.8,12.8,14.37169451376886 + 07/06 11:30:00,12.8,12.8,14.350568352907877 + 07/06 11:40:00,12.8,12.8,14.330392007432339 + 07/06 11:50:00,12.8,12.8,14.31132568881903 + 07/06 12:00:00,12.8,12.8,14.293188687823186 + 07/06 12:10:00,12.8,12.8,14.275599612902456 + 07/06 12:20:00,12.8,12.8,14.249212044466557 + 07/06 12:30:00,12.8,12.8,14.233129380854037 + 07/06 12:40:00,12.8,12.8,14.218086038162147 + 07/06 12:50:00,12.8,12.8,14.2041325174964 + 07/06 13:00:00,12.8,12.8,14.191212368088907 + 07/06 13:10:00,12.8,12.8,14.180502448588975 + 07/06 13:20:00,12.8,12.8,14.173894123050918 + 07/06 13:30:00,12.8,12.8,14.164221104805448 + 07/06 13:40:00,12.8,12.8,14.154921696288298 + 07/06 13:50:00,12.8,12.8,14.146120891093976 + 07/06 14:00:00,12.8,12.8,14.137793718436314 + 07/06 14:10:00,12.8,12.8,14.129316551497558 + 07/06 14:20:00,12.8,12.8,14.125035961611939 + 07/06 14:30:00,12.8,12.8,14.118049100653368 + 07/06 14:40:00,12.8,12.8,14.111502207080886 + 07/06 14:50:00,12.8,12.8,14.105408890748809 + 07/06 15:00:00,12.8,12.8,14.099906600170924 + 07/06 15:05:00,12.8,12.8,16.256426460713884 + 07/06 15:10:00,12.8,12.8,16.25158285827816 + 07/06 15:20:00,12.8,12.8,16.50634897023314 + 07/06 15:30:00,12.8,12.8,16.60746994100386 + 07/06 15:40:00,12.8,12.8,16.68264872926466 + 07/06 15:50:00,12.8,12.8,16.737044289561348 + 07/06 16:00:00,12.8,12.8,16.783278442485007 + 07/06 16:10:00,12.8,12.8,16.849664104778129 + 07/06 16:20:00,12.8,12.8,16.90536099150685 + 07/06 16:30:00,12.8,12.8,16.937381829056748 + 07/06 16:40:00,12.8,12.8,16.966111618064816 + 07/06 16:50:00,12.8,12.8,16.99256420726405 + 07/06 17:00:00,12.8,12.8,17.017143464053946 + 07/06 17:05:00,12.8,12.8,17.053657103128367 + 07/06 17:10:00,12.8,12.8,17.053260949554884 + 07/06 17:15:00,12.8,12.8,17.080889757099088 + 07/06 17:20:00,12.8,12.8,17.080933872084694 + 07/06 17:30:00,12.8,12.8,17.10145203091471 + 07/06 17:40:00,12.8,12.8,17.121701028231226 + 07/06 17:50:00,12.8,12.8,17.141385902114977 + 07/06 18:00:00,12.8,12.8,17.160699692816335 + 07/06 18:10:00,12.8,12.8,17.180056807791126 + 07/06 18:20:00,12.8,12.8,17.198828455203637 + 07/06 18:30:00,12.8,12.8,17.21696008646946 + 07/06 18:40:00,12.8,12.8,17.234474274502867 + 07/06 18:50:00,12.8,12.8,17.251468938751676 + 07/06 19:00:00,12.8,12.8,17.267954900444815 + 07/06 19:10:00,12.8,12.8,17.29709063009359 + 07/06 19:20:00,12.8,12.8,17.31374154109368 + 07/06 19:30:00,12.8,12.8,17.329572557593399 + 07/06 19:40:00,12.8,12.8,17.344951879287718 + 07/06 19:50:00,12.8,12.8,17.359863027280178 + 07/06 20:00:00,12.8,12.8,17.374297980713718 + 07/06 20:10:00,12.8,12.8,17.365612158124234 + 07/06 20:20:00,12.8,12.8,17.38246832478135 + 07/06 20:30:00,12.8,12.8,17.394359012238806 + 07/06 20:40:00,12.8,12.8,17.405398563041464 + 07/06 20:50:00,12.8,12.8,17.41574601148649 + 07/06 21:00:00,12.8,12.8,17.425558046669626 + 07/06 21:10:00,12.8,12.8,17.43467523697919 + 07/06 21:20:00,12.8,12.8,17.443228020647358 + 07/06 21:30:00,12.8,12.8,17.45140812081616 + 07/06 21:40:00,12.8,12.8,17.459272811854317 + 07/06 21:50:00,12.8,12.8,17.466812925095974 + 07/06 22:00:00,12.8,12.8,17.474063918362789 + 07/06 22:10:00,12.8,12.8,18.839640076895767 + 07/06 22:20:00,12.8,12.8,18.990478764047674 + 07/06 22:30:00,12.8,12.8,19.057714887766396 + 07/06 22:40:00,12.8,12.8,19.112865904385509 + 07/06 22:50:00,12.8,12.8,19.15761336898981 + 07/06 23:00:00,12.8,12.8,19.193494343107575 + 07/06 23:10:00,12.8,12.8,19.225072048508055 + 07/06 23:20:00,12.8,12.8,19.252981946780254 + 07/06 23:30:00,12.8,12.8,19.27808000327552 + 07/06 23:40:00,12.8,12.8,19.30104122056084 + 07/06 23:50:00,12.8,12.8,19.321904138635774 + 07/06 24:00:00,12.8,12.8,19.34118986448397 + 07/07 00:10:00,12.8,12.8,19.3591846854053 + 07/07 00:20:00,12.8,12.8,19.375098678828125 + 07/07 00:30:00,12.8,12.8,19.39126769504208 + 07/07 00:40:00,12.8,12.8,19.405775260156689 + 07/07 00:50:00,12.8,12.8,19.419023190803434 + 07/07 01:00:00,12.8,12.8,19.432610124115308 + 07/07 01:10:00,12.8,12.8,19.44512378558506 + 07/07 01:20:00,12.8,12.8,19.456653794572586 + 07/07 01:30:00,12.8,12.8,19.468785092518439 + 07/07 01:40:00,12.8,12.8,19.479772889587545 + 07/07 01:50:00,12.8,12.8,19.489924583154474 + 07/07 02:00:00,12.8,12.8,19.50087765767936 + 07/07 02:10:00,12.8,12.8,19.51089641363906 + 07/07 02:20:00,12.8,12.8,19.520206039091929 + 07/07 02:30:00,12.8,12.8,19.53042963098271 + 07/07 02:40:00,12.8,12.8,19.539723675168156 + 07/07 02:50:00,12.8,12.8,19.548439772406213 + 07/07 03:00:00,12.8,12.8,19.558139567602148 + 07/07 03:10:00,12.8,12.8,19.566931850077908 + 07/07 03:20:00,12.8,12.8,19.57504966052311 + 07/07 03:30:00,12.8,12.8,19.584039434397178 + 07/07 03:40:00,12.8,12.8,19.592200143599116 + 07/07 03:50:00,12.8,12.8,19.600580443958689 + 07/07 04:00:00,12.8,12.8,19.607533898700667 + 07/07 04:10:00,12.8,12.8,19.61601948293748 + 07/07 04:20:00,12.8,12.8,19.623495719665358 + 07/07 04:30:00,12.8,12.8,19.631600775505619 + 07/07 04:40:00,12.8,12.8,19.638410208794814 + 07/07 04:50:00,12.8,12.8,19.64700720682429 + 07/07 05:00:00,12.8,12.8,19.65466702222986 + 07/07 05:10:00,12.8,12.8,19.66232981406948 + 07/07 05:20:00,12.8,12.8,19.668226076952803 + 07/07 05:30:00,12.8,12.8,19.6754188789995 + 07/07 05:40:00,12.8,12.8,19.680945743599744 + 07/07 05:50:00,12.8,12.8,19.68499014371418 + 07/07 06:00:00,12.8,12.8,19.688968355172628 + 07/07 06:10:00,12.8,12.8,17.69806374003803 + 07/07 06:20:00,12.8,12.8,17.443283118425279 + 07/07 06:30:00,12.8,12.8,17.353247423033744 + 07/07 06:40:00,12.8,12.8,17.279820152308035 + 07/07 06:50:00,12.8,12.8,17.22337104951175 + 07/07 07:00:00,12.8,12.8,17.175116085624749 + 07/07 07:05:00,12.8,12.8,15.678049178193469 + 07/07 07:10:00,12.8,12.8,15.684651205283823 + 07/07 07:15:00,12.8,12.8,15.450790048781354 + 07/07 07:20:00,12.8,12.8,15.4490437572634 + 07/07 07:30:00,12.8,12.8,15.339779185539859 + 07/07 07:40:00,12.8,12.8,15.250004286959684 + 07/07 07:50:00,12.8,12.8,15.172317460036849 + 07/07 08:00:00,12.8,12.8,15.104404473063453 + 07/07 08:02:30,12.8,12.8,15.019259787324034 + 07/07 08:05:00,12.8,12.8,15.01789318564722 + 07/07 08:07:30,12.8,12.8,15.018212183798834 + 07/07 08:10:00,12.8,12.8,15.017912586812673 + 07/07 08:20:00,12.8,12.8,14.95290646883984 + 07/07 08:30:00,12.8,12.8,14.900781578667575 + 07/07 08:40:00,12.8,12.8,14.85190934605397 + 07/07 08:50:00,12.8,12.8,14.806089411748154 + 07/07 09:00:00,12.8,12.8,14.762980967533738 + 07/07 09:10:00,12.8,12.8,14.722270952634509 + 07/07 09:20:00,12.8,12.8,14.673151914057508 + 07/07 09:30:00,12.8,12.8,14.63631604109226 + 07/07 09:40:00,12.8,12.8,14.601369376589324 + 07/07 09:50:00,12.8,12.8,14.568077118118963 + 07/07 10:00:00,12.8,12.8,14.53640956389917 + 07/07 10:10:00,12.8,12.8,14.506306184714103 + 07/07 10:20:00,12.8,12.8,14.474131001742644 + 07/07 10:30:00,12.8,12.8,14.446724128899266 + 07/07 10:40:00,12.8,12.8,14.420647183807088 + 07/07 10:50:00,12.8,12.8,14.395687708534539 + 07/07 11:00:00,12.8,12.8,14.371825287330877 + 07/07 11:10:00,12.8,12.8,14.348527293236462 + 07/07 11:20:00,12.8,12.8,14.335998859892494 + 07/07 11:30:00,12.8,12.8,14.315053363203106 + 07/07 11:40:00,12.8,12.8,14.295018949324963 + 07/07 11:50:00,12.8,12.8,14.276095906101974 + 07/07 12:00:00,12.8,12.8,14.258139781261061 + 07/07 12:10:00,12.8,12.8,14.241142465225595 + 07/07 12:20:00,12.8,12.8,14.215493899783463 + 07/07 12:30:00,12.8,12.8,14.200233807080627 + 07/07 12:40:00,12.8,12.8,14.186021366560923 + 07/07 12:50:00,12.8,12.8,14.172496977751497 + 07/07 13:00:00,12.8,12.8,14.159705292150957 + 07/07 13:10:00,12.8,12.8,14.149168605311028 + 07/07 13:20:00,12.8,12.8,14.142448258759697 + 07/07 13:30:00,12.8,12.8,14.132471649622124 + 07/07 13:40:00,12.8,12.8,14.12265949454106 + 07/07 13:50:00,12.8,12.8,14.113077658121954 + 07/07 14:00:00,12.8,12.8,14.103631571832848 + 07/07 14:10:00,12.8,12.8,14.093875630160957 + 07/07 14:20:00,12.8,12.8,14.08809148856962 + 07/07 14:30:00,12.8,12.8,14.07928741112053 + 07/07 14:40:00,12.8,12.8,14.071162734398863 + 07/07 14:50:00,12.8,12.8,14.064319356137422 + 07/07 15:00:00,12.8,12.8,14.059375619087083 + 07/07 15:10:00,12.8,12.8,16.20648861207485 + 07/07 15:20:00,12.8,12.8,16.466141660031604 + 07/07 15:30:00,12.8,12.8,16.567041119170609 + 07/07 15:40:00,12.8,12.8,16.647162326796886 + 07/07 15:50:00,12.8,12.8,16.70630592205865 + 07/07 16:00:00,12.8,12.8,16.753480038773714 + 07/07 16:10:00,12.8,12.8,16.821991179923488 + 07/07 16:20:00,12.8,12.8,16.879133335164135 + 07/07 16:30:00,12.8,12.8,16.912294484143055 + 07/07 16:40:00,12.8,12.8,16.941764723538648 + 07/07 16:50:00,12.8,12.8,16.96825875607428 + 07/07 17:00:00,12.8,12.8,16.992247301760427 + 07/07 17:05:00,12.8,12.8,17.027501245742589 + 07/07 17:10:00,12.8,12.8,17.027123367824154 + 07/07 17:15:00,12.8,12.8,17.053362380188064 + 07/07 17:20:00,12.8,12.8,17.053403011067077 + 07/07 17:30:00,12.8,12.8,17.072497764650348 + 07/07 17:40:00,12.8,12.8,17.09140706841213 + 07/07 17:50:00,12.8,12.8,17.10998168083837 + 07/07 18:00:00,12.8,12.8,17.128423883248244 + 07/07 18:10:00,12.8,12.8,17.1457737726844 + 07/07 18:20:00,12.8,12.8,17.16277088882398 + 07/07 18:30:00,12.8,12.8,17.179314251237274 + 07/07 18:40:00,12.8,12.8,17.19530387026973 + 07/07 18:50:00,12.8,12.8,17.210627562911094 + 07/07 19:00:00,12.8,12.8,17.22537118335192 + 07/07 19:10:00,12.8,12.8,17.254167840611165 + 07/07 19:20:00,12.8,12.8,17.270490651152217 + 07/07 19:30:00,12.8,12.8,17.28611801181612 + 07/07 19:40:00,12.8,12.8,17.30148015460824 + 07/07 19:50:00,12.8,12.8,17.316654593621974 + 07/07 20:00:00,12.8,12.8,17.33179035120203 + 07/07 20:10:00,12.8,12.8,17.32318992284666 + 07/07 20:20:00,12.8,12.8,17.34010168027041 + 07/07 20:30:00,12.8,12.8,17.35191974983201 + 07/07 20:40:00,12.8,12.8,17.362740014549546 + 07/07 20:50:00,12.8,12.8,17.372729698408706 + 07/07 21:00:00,12.8,12.8,17.382056267292318 + 07/07 21:10:00,12.8,12.8,17.391421786183075 + 07/07 21:20:00,12.8,12.8,17.40028701770604 + 07/07 21:30:00,12.8,12.8,17.40889654812999 + 07/07 21:40:00,12.8,12.8,17.417267501664303 + 07/07 21:50:00,12.8,12.8,17.42538683500823 + 07/07 22:00:00,12.8,12.8,17.433408562624384 + 07/07 22:10:00,12.8,12.8,18.800553426880915 + 07/07 22:20:00,12.8,12.8,18.952206100254729 + 07/07 22:30:00,12.8,12.8,19.02041166799607 + 07/07 22:40:00,12.8,12.8,19.076383145831217 + 07/07 22:50:00,12.8,12.8,19.122236709834405 + 07/07 23:00:00,12.8,12.8,19.16072553877347 + 07/07 23:10:00,12.8,12.8,19.19326519943733 + 07/07 23:20:00,12.8,12.8,19.222159791361073 + 07/07 23:30:00,12.8,12.8,19.247780769544446 + 07/07 23:40:00,12.8,12.8,19.271028615095199 + 07/07 23:50:00,12.8,12.8,19.292226887074898 + 07/07 24:00:00,12.8,12.8,19.311511543597044 + 07/08 00:10:00,12.8,12.8,19.329187171703209 + 07/08 00:20:00,12.8,12.8,19.3468316916717 + 07/08 00:30:00,12.8,12.8,19.363018531674784 + 07/08 00:40:00,12.8,12.8,19.378843775531906 + 07/08 00:50:00,12.8,12.8,19.39300349454735 + 07/08 01:00:00,12.8,12.8,19.407923949276428 + 07/08 01:10:00,12.8,12.8,19.421617375487508 + 07/08 01:20:00,12.8,12.8,19.4345417806893 + 07/08 01:30:00,12.8,12.8,19.4483015899505 + 07/08 01:40:00,12.8,12.8,19.46116005846884 + 07/08 01:50:00,12.8,12.8,19.473357479813854 + 07/08 02:00:00,12.8,12.8,19.48639672637307 + 07/08 02:10:00,12.8,12.8,19.498105897089319 + 07/08 02:20:00,12.8,12.8,19.509043227383747 + 07/08 02:30:00,12.8,12.8,19.520597588621798 + 07/08 02:40:00,12.8,12.8,19.53101802276691 + 07/08 02:50:00,12.8,12.8,19.54055463548866 + 07/08 03:00:00,12.8,12.8,19.55073944365544 + 07/08 03:10:00,12.8,12.8,19.560075164785546 + 07/08 03:20:00,12.8,12.8,19.568685919134628 + 07/08 03:30:00,12.8,12.8,19.578276291127947 + 07/08 03:40:00,12.8,12.8,19.5869529586354 + 07/08 03:50:00,12.8,12.8,19.59487252483825 + 07/08 04:00:00,12.8,12.8,19.60394278978761 + 07/08 04:10:00,12.8,12.8,19.611909482378605 + 07/08 04:20:00,12.8,12.8,19.61921310024724 + 07/08 04:30:00,12.8,12.8,19.627660209610974 + 07/08 04:40:00,12.8,12.8,19.635142567025029 + 07/08 04:50:00,12.8,12.8,19.642000210482043 + 07/08 05:00:00,12.8,12.8,19.650038297535447 + 07/08 05:10:00,12.8,12.8,19.657117473454343 + 07/08 05:20:00,12.8,12.8,19.663459348785318 + 07/08 05:30:00,12.8,12.8,19.670756782411617 + 07/08 05:40:00,12.8,12.8,19.676048676703127 + 07/08 05:50:00,12.8,12.8,19.68215892225865 + 07/08 06:00:00,12.8,12.8,19.686543478060125 + 07/08 06:10:00,12.8,12.8,19.032085498744473 + 07/08 06:20:00,12.8,12.8,18.959287997911085 + 07/08 06:30:00,12.8,12.8,18.93182603030332 + 07/08 06:40:00,12.8,12.8,18.909161381861617 + 07/08 06:50:00,12.8,12.8,18.891304448627186 + 07/08 07:00:00,12.8,12.8,18.875406803600858 + 07/08 07:10:00,12.8,12.8,17.790322488755508 + 07/08 07:15:00,12.8,12.8,17.626850505768755 + 07/08 07:20:00,12.8,12.8,17.629332786865655 + 07/08 07:30:00,12.8,12.8,17.55903778075478 + 07/08 07:40:00,12.8,12.8,17.500443017641424 + 07/08 07:50:00,12.8,12.8,17.452326756153604 + 07/08 08:00:00,12.8,12.8,17.40940580651325 + 07/08 08:05:00,12.8,12.8,17.370834001650484 + 07/08 08:10:00,12.8,12.8,17.370507062035654 + 07/08 08:20:00,12.8,12.8,17.325519078717826 + 07/08 08:30:00,12.8,12.8,17.291458349022549 + 07/08 08:40:00,12.8,12.8,17.2593383332351 + 07/08 08:50:00,12.8,12.8,17.228834811670049 + 07/08 09:00:00,12.8,12.8,17.199860059409028 + 07/08 09:10:00,12.8,12.8,17.1721105834186 + 07/08 09:20:00,12.8,12.8,17.13678819826378 + 07/08 09:30:00,12.8,12.8,17.11113057691398 + 07/08 09:40:00,12.8,12.8,17.08655495618405 + 07/08 09:50:00,12.8,12.8,17.062968590341467 + 07/08 10:00:00,12.8,12.8,17.040381867706654 + 07/08 10:10:00,12.8,12.8,17.018708419093956 + 07/08 10:20:00,12.8,12.8,16.99783141381719 + 07/08 10:30:00,12.8,12.8,16.977700040006366 + 07/08 10:40:00,12.8,12.8,16.958347696749926 + 07/08 10:50:00,12.8,12.8,16.93973906999224 + 07/08 11:00:00,12.8,12.8,16.92185953666431 + 07/08 11:10:00,12.8,12.8,16.90534621135629 + 07/08 11:20:00,12.8,12.8,16.889644666680537 + 07/08 11:30:00,12.8,12.8,16.87466904952958 + 07/08 11:40:00,12.8,12.8,16.860418661042226 + 07/08 11:50:00,12.8,12.8,16.846907917753446 + 07/08 12:00:00,12.8,12.8,16.834103247039818 + 07/08 12:10:00,12.8,12.8,16.821223652684695 + 07/08 12:20:00,12.8,12.8,16.808924302547916 + 07/08 12:30:00,12.8,12.8,16.79713110741694 + 07/08 12:40:00,12.8,12.8,16.786033305484318 + 07/08 12:50:00,12.8,12.8,16.775683853324133 + 07/08 13:00:00,12.8,12.8,16.76612180502112 + 07/08 13:10:00,12.8,12.8,16.758337282579448 + 07/08 13:20:00,12.8,12.8,16.75118237343498 + 07/08 13:30:00,12.8,12.8,16.744594375548368 + 07/08 13:40:00,12.8,12.8,16.73850279887273 + 07/08 13:50:00,12.8,12.8,16.732852051260758 + 07/08 14:00:00,12.8,12.8,16.727603488724605 + 07/08 14:10:00,12.8,12.8,16.722494364717883 + 07/08 14:20:00,12.8,12.8,16.71781216480214 + 07/08 14:30:00,12.8,12.8,16.71352425317977 + 07/08 14:40:00,12.8,12.8,16.709736712341937 + 07/08 14:50:00,12.8,12.8,16.706600670637685 + 07/08 15:00:00,12.8,12.8,16.704117441709579 + 07/08 15:10:00,12.8,12.8,16.702016222861304 + 07/08 15:20:00,12.8,12.8,16.700440685542536 + 07/08 15:30:00,12.8,12.8,16.69930773911428 + 07/08 15:40:00,12.8,12.8,16.698540792137249 + 07/08 15:50:00,12.8,12.8,16.698099287663923 + 07/08 16:00:00,12.8,12.8,16.69795828888261 + 07/08 16:10:00,12.8,12.8,16.71141661178627 + 07/08 16:15:00,12.8,12.8,16.723028865466703 + 07/08 16:20:00,12.8,12.8,16.722617643898475 + 07/08 16:30:00,12.8,12.8,16.7244070811146 + 07/08 16:40:00,12.8,12.8,16.727661675549986 + 07/08 16:50:00,12.8,12.8,16.732057733885257 + 07/08 17:00:00,12.8,12.8,16.737948969628893 + 07/08 17:10:00,12.8,12.8,18.505580854463294 + 07/08 17:20:00,12.8,12.8,18.727398214894465 + 07/08 17:30:00,12.8,12.8,18.81645769108412 + 07/08 17:40:00,12.8,12.8,18.88732456493446 + 07/08 17:50:00,12.8,12.8,18.944076643466546 + 07/08 18:00:00,12.8,12.8,18.992016237757207 + 07/08 18:10:00,12.8,12.8,19.044760785268207 + 07/08 18:20:00,12.8,12.8,19.0815246464139 + 07/08 18:30:00,12.8,12.8,19.115166596150709 + 07/08 18:40:00,12.8,12.8,19.14625928987438 + 07/08 18:50:00,12.8,12.8,19.17287444529309 + 07/08 19:00:00,12.8,12.8,19.199042012784795 + 07/08 19:10:00,12.8,12.8,19.220487958546646 + 07/08 19:20:00,12.8,12.8,19.24290320813383 + 07/08 19:30:00,12.8,12.8,19.26527417351809 + 07/08 19:40:00,12.8,12.8,19.282579161583699 + 07/08 19:50:00,12.8,12.8,19.302038187049278 + 07/08 20:00:00,12.8,12.8,19.320247390844388 + 07/08 20:10:00,12.8,12.8,19.316086554473914 + 07/08 20:20:00,12.8,12.8,19.333198832886496 + 07/08 20:30:00,12.8,12.8,19.349675479909494 + 07/08 20:40:00,12.8,12.8,19.365356288471057 + 07/08 20:50:00,12.8,12.8,19.380444658890885 + 07/08 21:00:00,12.8,12.8,19.395048518964104 + 07/08 21:10:00,12.8,12.8,19.40860458034883 + 07/08 21:20:00,12.8,12.8,19.421365687328806 + 07/08 21:30:00,12.8,12.8,19.433490567846513 + 07/08 21:40:00,12.8,12.8,19.4449743339391 + 07/08 21:50:00,12.8,12.8,19.456002081596958 + 07/08 22:00:00,12.8,12.8,19.466546048863 + 07/08 22:10:00,12.8,12.8,19.476534068555 + 07/08 22:20:00,12.8,12.8,19.486197751520959 + 07/08 22:30:00,12.8,12.8,19.49543441425846 + 07/08 22:40:00,12.8,12.8,19.5044735494315 + 07/08 22:50:00,12.8,12.8,19.513241780054057 + 07/08 23:00:00,12.8,12.8,19.5217581398018 + 07/08 23:10:00,12.8,12.8,19.530051098471135 + 07/08 23:20:00,12.8,12.8,19.53834760416362 + 07/08 23:30:00,12.8,12.8,19.5463202940337 + 07/08 23:40:00,12.8,12.8,19.55348536804781 + 07/08 23:50:00,12.8,12.8,19.561509161650734 + 07/08 24:00:00,12.8,12.8,19.56874255120058 + 07/09 00:10:00,12.8,12.8,19.575395347768539 + 07/09 00:20:00,12.8,12.8,19.58299228612565 + 07/09 00:30:00,12.8,12.8,19.58979134819883 + 07/09 00:40:00,12.8,12.8,19.595906447406933 + 07/09 00:50:00,12.8,12.8,19.603180512374828 + 07/09 01:00:00,12.8,12.8,19.609497129882038 + 07/09 01:10:00,12.8,12.8,19.615896979685183 + 07/09 01:20:00,12.8,12.8,19.620860879425135 + 07/09 01:30:00,12.8,12.8,19.627558285701054 + 07/09 01:40:00,12.8,12.8,19.633092822384524 + 07/09 01:50:00,12.8,12.8,19.639110954920647 + 07/09 02:00:00,12.8,12.8,19.643604543298375 + 07/09 02:10:00,12.8,12.8,19.650068372389318 + 07/09 02:20:00,12.8,12.8,19.655965726315697 + 07/09 02:30:00,12.8,12.8,19.662965664064094 + 07/09 02:40:00,12.8,12.8,19.67040315551406 + 07/09 02:50:00,12.8,12.8,19.676817540879158 + 07/09 03:00:00,12.8,12.8,19.685848595670416 + 07/09 03:10:00,12.8,12.8,19.694258657772097 + 07/09 03:20:00,12.8,12.8,19.703123376079014 + 07/09 03:30:00,12.8,12.8,19.711307430695926 + 07/09 03:40:00,12.8,12.8,19.71751549277535 + 07/09 03:50:00,12.8,12.8,19.7254237823011 + 07/09 04:00:00,12.8,12.8,19.731735181006888 + 07/09 04:10:00,12.821021021021022,12.821021021021022,19.73810609207609 + 07/09 04:20:00,12.842042042042042,12.842042042042042,19.744147220018236 + 07/09 04:30:00,12.863063063063063,12.863063063063063,19.748631932766317 + 07/09 04:40:00,12.884084084084084,12.884084084084084,19.75542461835884 + 07/09 04:50:00,12.905105105105106,12.905105105105106,19.761007093608563 + 07/09 05:00:00,12.926126126126127,12.926126126126127,19.767368814017386 + 07/09 05:10:00,12.951351351351353,12.951351351351353,19.772068642893588 + 07/09 05:20:00,12.976576576576577,12.976576576576577,19.778504687294459 + 07/09 05:30:00,13.001801801801803,13.001801801801803,19.783214228416825 + 07/09 05:40:00,13.027027027027028,13.027027027027028,19.78803993967564 + 07/09 05:50:00,13.052252252252253,13.052252252252253,19.790375559686077 + 07/09 06:00:00,13.077477477477478,13.077477477477478,19.792737887245836 + 07/09 06:10:00,13.031231231231232,13.031231231231232,19.815994803982286 + 07/09 06:20:00,12.984984984984987,12.984984984984987,19.816711903267078 + 07/09 06:30:00,12.938738738738739,12.938738738738739,19.81669316676588 + 07/09 06:40:00,12.892492492492494,12.892492492492494,19.815995744247219 + 07/09 06:50:00,12.846246246246248,12.846246246246248,19.81446046429241 + 07/09 07:00:00,12.8,12.8,19.81201924235163 + 07/09 07:10:00,12.8,12.8,18.417825781690597 + 07/09 07:20:00,12.8,12.8,18.23501701869555 + 07/09 07:30:00,12.8,12.8,18.163692917672493 + 07/09 07:40:00,12.8,12.8,18.103890421937768 + 07/09 07:50:00,12.8,12.8,18.05607153646831 + 07/09 08:00:00,12.8,12.8,18.014592352304417 + 07/09 08:10:00,12.8,12.8,17.976987316264017 + 07/09 08:20:00,12.8,12.8,17.933781904810187 + 07/09 08:30:00,12.8,12.8,17.901601187892667 + 07/09 08:40:00,12.8,12.8,17.871436646760729 + 07/09 08:50:00,12.8,12.8,17.842897542584934 + 07/09 09:00:00,12.8,12.8,17.81578455622755 + 07/09 09:10:00,12.8,12.8,17.78968016326786 + 07/09 09:20:00,12.8,12.8,17.755754834467017 + 07/09 09:30:00,12.8,12.8,17.731126051786096 + 07/09 09:40:00,12.8,12.8,17.70734320346046 + 07/09 09:50:00,12.8,12.8,17.684345433295904 + 07/09 10:00:00,12.8,12.8,17.66212472940405 + 07/09 10:10:00,12.8,12.8,17.6415590393315 + 07/09 10:20:00,12.8,12.8,17.62196424320377 + 07/09 10:30:00,12.8,12.8,17.603211683347476 + 07/09 10:40:00,12.8,12.8,17.58517483821852 + 07/09 10:50:00,12.8,12.8,17.568018206258487 + 07/09 11:00:00,12.8,12.8,17.55168136682372 + 07/09 11:10:00,12.8,12.8,17.535329356284277 + 07/09 11:20:00,12.8,12.8,17.51966226774782 + 07/09 11:30:00,12.8,12.8,17.504747472466446 + 07/09 11:40:00,12.8,12.8,17.49049367104961 + 07/09 11:50:00,12.8,12.8,17.47678775025792 + 07/09 12:00:00,12.8,12.8,17.463786294719538 + 07/09 12:10:00,12.8,12.8,17.4521376531071 + 07/09 12:20:00,12.8,12.8,17.44096516245333 + 07/09 12:30:00,12.8,12.8,17.430262405346644 + 07/09 12:40:00,12.8,12.8,17.42009362631654 + 07/09 12:50:00,12.8,12.8,17.41045694326816 + 07/09 13:00:00,12.8,12.8,17.401372489539634 + 07/09 13:10:00,12.8,12.8,17.392349447062636 + 07/09 13:20:00,12.8,12.8,17.383849011766587 + 07/09 13:30:00,12.8,12.8,17.375828340802788 + 07/09 13:40:00,12.8,12.8,17.36849639366224 + 07/09 13:50:00,12.8,12.8,17.361984088102266 + 07/09 14:00:00,12.8,12.8,17.35623445593051 + 07/09 14:10:00,12.8,12.8,17.351420460656994 + 07/09 14:20:00,12.8,12.8,17.34720430018813 + 07/09 14:30:00,12.8,12.8,17.34336376936003 + 07/09 14:40:00,12.8,12.8,17.339726845052505 + 07/09 14:50:00,12.8,12.8,17.336348918878636 + 07/09 15:00:00,12.8,12.8,17.33313839080524 + 07/09 15:10:00,12.8,12.8,18.7513083648589 + 07/09 15:20:00,12.8,12.8,18.905329482922217 + 07/09 15:30:00,12.8,12.8,18.968471915615078 + 07/09 15:40:00,12.8,12.8,19.018378269225935 + 07/09 15:50:00,12.8,12.8,19.057832432160845 + 07/09 16:00:00,12.8,12.8,19.09059865724518 + 07/09 16:10:00,12.8,12.8,19.119313941412586 + 07/09 16:20:00,12.8,12.8,19.153564233210309 + 07/09 16:30:00,12.8,12.8,19.176618477915633 + 07/09 16:40:00,12.8,12.8,19.196533842087736 + 07/09 16:50:00,12.8,12.8,19.21574376446623 + 07/09 17:00:00,12.8,12.8,19.233839870798364 + 07/09 17:10:00,12.8,12.8,19.252349156744047 + 07/09 17:20:00,12.8,12.8,19.285983544482208 + 07/09 17:30:00,12.8,12.8,19.30256108572108 + 07/09 17:40:00,12.8,12.8,19.318744782210456 + 07/09 17:50:00,12.8,12.8,19.334377443052675 + 07/09 18:00:00,12.8,12.8,19.349140864764914 + 07/09 18:10:00,12.8,12.8,19.36449337652268 + 07/09 18:20:00,12.8,12.8,19.378047803683097 + 07/09 18:30:00,12.8,12.8,19.393025934004937 + 07/09 18:40:00,12.8,12.8,19.4059775711809 + 07/09 18:50:00,12.8,12.8,19.420385712670318 + 07/09 19:00:00,12.8,12.8,19.432792003914824 + 07/09 19:10:00,12.8,12.8,19.445958248482954 + 07/09 19:20:00,12.8,12.8,19.458681949860354 + 07/09 19:30:00,12.8,12.8,19.471350125462025 + 07/09 19:40:00,12.8,12.8,19.483729938617498 + 07/09 19:50:00,12.8,12.8,19.49582614092032 + 07/09 20:00:00,12.8,12.8,19.50758677335303 + 07/09 20:10:00,12.8,12.8,19.496320336742359 + 07/09 20:20:00,12.8,12.8,19.506065900966733 + 07/09 20:30:00,12.8,12.8,19.514800872907366 + 07/09 20:40:00,12.8,12.8,19.522663944229089 + 07/09 20:50:00,12.8,12.8,19.52976760811633 + 07/09 21:00:00,12.8,12.8,19.536177568317834 + 07/09 21:10:00,12.8,12.8,19.54262160310104 + 07/09 21:20:00,12.8,12.8,19.5488213207884 + 07/09 21:30:00,12.8,12.8,19.555127224017185 + 07/09 21:40:00,12.8,12.8,19.561499666356988 + 07/09 21:50:00,12.8,12.8,19.56792923912331 + 07/09 22:00:00,12.8,12.8,19.574399264237639 + 07/09 22:10:00,12.8,12.8,19.580545815970653 + 07/09 22:20:00,12.8,12.8,19.58700274413365 + 07/09 22:30:00,12.8,12.8,19.593779546373378 + 07/09 22:40:00,12.8,12.8,19.600824306808805 + 07/09 22:50:00,12.8,12.8,19.608097613493059 + 07/09 23:00:00,12.8,12.8,19.61550301473911 + 07/09 23:10:00,12.8,12.8,19.622968494341774 + 07/09 23:20:00,12.8,12.8,19.630802295682494 + 07/09 23:30:00,12.8,12.8,19.63827790907619 + 07/09 23:40:00,12.8,12.8,19.645793664123496 + 07/09 23:50:00,12.8,12.8,19.653110581927537 + 07/09 24:00:00,12.8,12.8,19.660262481831624 + 07/10 00:10:00,12.8,12.8,19.666186440586566 + 07/10 00:20:00,12.8,12.8,19.67401310008631 + 07/10 00:30:00,12.8,12.8,19.680632293641485 + 07/10 00:40:00,12.8,12.8,19.68788823653557 + 07/10 00:50:00,12.8,12.8,19.69481018822472 + 07/10 01:00:00,12.8,12.8,19.700355505666257 + 07/10 01:10:00,12.8,12.8,19.707909532776819 + 07/10 01:20:00,12.8,12.8,19.713958774456697 + 07/10 01:30:00,12.8,12.8,19.72038989625742 + 07/10 01:40:00,12.8,12.8,19.72616923553072 + 07/10 01:50:00,12.8,12.8,19.730228288043699 + 07/10 02:00:00,12.8,12.8,19.736279348022344 + 07/10 02:10:00,12.8,12.8,19.740927933613106 + 07/10 02:20:00,12.8,12.8,19.746224529599993 + 07/10 02:30:00,12.8,12.8,19.751200756993606 + 07/10 02:40:00,12.8,12.8,19.754675031321164 + 07/10 02:50:00,12.8,12.8,19.760505761725839 + 07/10 03:00:00,12.8,12.8,19.765024688956577 + 07/10 03:10:00,12.8,12.8,19.770251707355305 + 07/10 03:20:00,12.8,12.8,19.773768447542119 + 07/10 03:30:00,12.8,12.8,19.779173008685438 + 07/10 03:40:00,12.8,12.8,19.7825531885953 + 07/10 03:50:00,12.8,12.8,19.787133708735455 + 07/10 04:00:00,12.8,12.8,19.791210820134439 + 07/10 04:10:00,12.8,12.8,19.795362764209686 + 07/10 04:20:00,12.8,12.8,19.799380762891816 + 07/10 04:30:00,12.8,12.8,19.80341047828792 + 07/10 04:40:00,12.8,12.8,19.807389212247779 + 07/10 04:50:00,12.8,12.8,19.811353611866254 + 07/10 05:00:00,12.8,12.8,19.81521479050474 + 07/10 05:10:00,12.846246246246248,12.846246246246248,19.818974859140089 + 07/10 05:20:00,12.892492492492494,12.892492492492494,19.82278014265524 + 07/10 05:30:00,12.938738738738739,12.938738738738739,19.826656648815918 + 07/10 05:40:00,12.984984984984987,12.984984984984987,19.830337870448689 + 07/10 05:50:00,13.031231231231232,13.031231231231232,19.833534462191115 + 07/10 06:00:00,13.077477477477478,13.077477477477478,19.836004189381769 + 07/10 06:10:00,13.031231231231232,13.031231231231232,17.85076912567282 + 07/10 06:20:00,12.984984984984987,12.984984984984987,17.59710121531853 + 07/10 06:30:00,12.938738738738739,12.938738738738739,17.50719884369993 + 07/10 06:40:00,12.892492492492494,12.892492492492494,17.433397734974354 + 07/10 06:50:00,12.846246246246248,12.846246246246248,17.37673951988491 + 07/10 07:00:00,12.8,12.8,17.328199106048385 + 07/10 07:05:00,12.8,12.8,15.833845214763866 + 07/10 07:10:00,12.8,12.8,15.840406693440788 + 07/10 07:20:00,12.8,12.8,15.60943766372358 + 07/10 07:25:00,12.8,12.8,15.498084025607753 + 07/10 07:30:00,12.8,12.8,15.495699004327385 + 07/10 07:40:00,12.8,12.8,15.404115144640543 + 07/10 07:50:00,12.8,12.8,15.32596959571038 + 07/10 08:00:00,12.8,12.8,15.256769534852044 + 07/10 08:03:19,12.8,12.8,15.17008403116843 + 07/10 08:06:40,12.8,12.8,15.168335410886903 + 07/10 08:10:00,12.8,12.8,15.168999840024013 + 07/10 08:20:00,12.8,12.8,15.102230771363635 + 07/10 08:30:00,12.8,12.8,15.048364488402802 + 07/10 08:40:00,12.8,12.8,14.997839156366885 + 07/10 08:50:00,12.8,12.8,14.950427140435459 + 07/10 09:00:00,12.8,12.8,14.905886240945323 + 07/10 09:10:00,12.8,12.8,14.86384539479682 + 07/10 09:20:00,12.8,12.8,14.813514050918329 + 07/10 09:30:00,12.8,12.8,14.775528577314358 + 07/10 09:40:00,12.8,12.8,14.739490458848975 + 07/10 09:50:00,12.8,12.8,14.705164459622694 + 07/10 10:00:00,12.8,12.8,14.672506172882582 + 07/10 10:10:00,12.8,12.8,14.641585206742104 + 07/10 10:20:00,12.8,12.8,14.608311297942859 + 07/10 10:30:00,12.8,12.8,14.579441629997497 + 07/10 10:40:00,12.8,12.8,14.551539986537084 + 07/10 10:50:00,12.8,12.8,14.5246416261631 + 07/10 11:00:00,12.8,12.8,14.498766186369153 + 07/10 11:10:00,12.8,12.8,14.473632588225975 + 07/10 11:20:00,12.8,12.8,14.459121684859215 + 07/10 11:30:00,12.8,12.8,14.436065093466802 + 07/10 11:40:00,12.8,12.8,14.414363512069203 + 07/10 11:50:00,12.8,12.8,14.395041983946518 + 07/10 12:00:00,12.8,12.8,14.378189973951129 + 07/10 12:10:00,12.8,12.8,14.363864249428766 + 07/10 12:20:00,12.8,12.8,14.341826773320163 + 07/10 12:30:00,12.8,12.8,14.330902058233129 + 07/10 12:40:00,12.8,12.8,14.320618888552924 + 07/10 12:50:00,12.8,12.8,14.309302117015712 + 07/10 13:00:00,12.8,12.8,14.296540637639039 + 07/10 13:10:00,12.8,12.8,14.282661770780035 + 07/10 13:20:00,12.8,12.8,14.271302202056951 + 07/10 13:30:00,12.8,12.8,14.25579451727635 + 07/10 13:40:00,12.8,12.8,14.240599343546899 + 07/10 13:50:00,12.8,12.8,14.227269682068206 + 07/10 14:00:00,12.8,12.8,14.21600489859754 + 07/10 14:10:00,12.8,12.8,14.20558132954009 + 07/10 14:20:00,12.8,12.8,14.200719944788242 + 07/10 14:30:00,12.8,12.8,14.194128279709482 + 07/10 14:40:00,12.8,12.8,14.18850499790243 + 07/10 14:50:00,12.8,12.8,14.183100301960632 + 07/10 15:00:00,12.8,12.8,14.178034742489821 + 07/10 15:10:00,12.8,12.8,16.324066350914813 + 07/10 15:20:00,12.8,12.8,16.580148074836627 + 07/10 15:30:00,12.8,12.8,16.67823321612942 + 07/10 15:40:00,12.8,12.8,16.754711775193536 + 07/10 15:50:00,12.8,12.8,16.813664560426547 + 07/10 16:00:00,12.8,12.8,16.85993396182957 + 07/10 16:10:00,12.8,12.8,16.926023418168876 + 07/10 16:20:00,12.8,12.8,16.97901881758341 + 07/10 16:30:00,12.8,12.8,17.00918373678659 + 07/10 16:40:00,12.8,12.8,17.036026711602618 + 07/10 16:50:00,12.8,12.8,17.061367882965926 + 07/10 17:00:00,12.8,12.8,17.085383030134748 + 07/10 17:10:00,12.8,12.8,17.12155008656327 + 07/10 17:15:00,12.8,12.8,17.150695891210686 + 07/10 17:20:00,12.8,12.8,17.150303574499259 + 07/10 17:30:00,12.8,12.8,17.171798413913807 + 07/10 17:40:00,12.8,12.8,17.19286261703857 + 07/10 17:50:00,12.8,12.8,17.21261609104513 + 07/10 18:00:00,12.8,12.8,17.231442127354894 + 07/10 18:10:00,12.8,12.8,17.249093901711164 + 07/10 18:20:00,12.8,12.8,17.265786678386804 + 07/10 18:30:00,12.8,12.8,17.281618751562989 + 07/10 18:40:00,12.8,12.8,17.29662851211836 + 07/10 18:50:00,12.8,12.8,17.310783985618604 + 07/10 19:00:00,12.8,12.8,17.3241781053516 + 07/10 19:10:00,12.8,12.8,17.35046119300137 + 07/10 19:20:00,12.8,12.8,17.364537361905144 + 07/10 19:30:00,12.8,12.8,17.378359566364844 + 07/10 19:40:00,12.8,12.8,17.392365537924296 + 07/10 19:50:00,12.8,12.8,17.406543531762624 + 07/10 20:00:00,12.8,12.8,17.420891704760196 + 07/10 20:10:00,12.8,12.8,17.412732061043195 + 07/10 20:20:00,12.8,12.8,17.430408716549186 + 07/10 20:30:00,12.8,12.8,17.443252884491256 + 07/10 20:40:00,12.8,12.8,17.455358817596733 + 07/10 20:50:00,12.8,12.8,17.466927323749166 + 07/10 21:00:00,12.8,12.8,17.477965714505378 + 07/10 21:10:00,12.8,12.8,17.48825096327326 + 07/10 21:20:00,12.8,12.8,17.49793801011391 + 07/10 21:30:00,12.8,12.8,17.50696794341228 + 07/10 21:40:00,12.8,12.8,17.51545099367341 + 07/10 21:50:00,12.8,12.8,17.523422187538608 + 07/10 22:00:00,12.8,12.8,17.531048776997574 + 07/10 22:10:00,12.8,12.8,18.89600949369604 + 07/10 22:20:00,12.8,12.8,19.0451521797877 + 07/10 22:30:00,12.8,12.8,19.111435246036529 + 07/10 22:40:00,12.8,12.8,19.16508146367144 + 07/10 22:50:00,12.8,12.8,19.20852729945333 + 07/10 23:00:00,12.8,12.8,19.245412602739365 + 07/10 23:10:00,12.8,12.8,19.277383254865108 + 07/10 23:20:00,12.8,12.8,19.305122383999604 + 07/10 23:30:00,12.8,12.8,19.3303265468142 + 07/10 23:40:00,12.8,12.8,19.353104592591838 + 07/10 23:50:00,12.8,12.8,19.373982645791139 + 07/10 24:00:00,12.8,12.8,19.393384568360543 + 07/11 00:10:00,12.8,12.8,19.4115307679132 + 07/11 00:20:00,12.8,12.8,19.428545086543779 + 07/11 00:30:00,12.8,12.8,19.444670707864714 + 07/11 00:40:00,12.8,12.8,19.460058361837736 + 07/11 00:50:00,12.8,12.8,19.474760202635758 + 07/11 01:00:00,12.8,12.8,19.48885444408896 + 07/11 01:10:00,12.8,12.8,19.502686409533898 + 07/11 01:20:00,12.8,12.8,19.516114398165766 + 07/11 01:30:00,12.8,12.8,19.5293041709496 + 07/11 01:40:00,12.8,12.8,19.542219903064429 + 07/11 01:50:00,12.8,12.8,19.5548810104864 + 07/11 02:00:00,12.8,12.8,19.567272911089906 + 07/11 02:10:00,12.821021021021022,12.821021021021022,19.579162451427906 + 07/11 02:20:00,12.842042042042042,12.842042042042042,19.59051901295255 + 07/11 02:30:00,12.863063063063063,12.863063063063063,19.60147421500526 + 07/11 02:40:00,12.884084084084084,12.884084084084084,19.611973481237756 + 07/11 02:50:00,12.905105105105106,12.905105105105106,19.62209728355725 + 07/11 03:00:00,12.926126126126127,12.926126126126127,19.631780852811397 + 07/11 03:10:00,12.951351351351353,12.951351351351353,19.641218007717819 + 07/11 03:20:00,12.976576576576577,12.976576576576577,19.650464663506996 + 07/11 03:30:00,13.001801801801803,13.001801801801803,19.65933533808835 + 07/11 03:40:00,13.027027027027028,13.027027027027028,19.66804856307339 + 07/11 03:50:00,13.052252252252253,13.052252252252253,19.676451944822344 + 07/11 04:00:00,13.077477477477478,13.077477477477478,19.684652097485779 + 07/11 04:10:00,13.052252252252253,13.052252252252253,19.69242239767935 + 07/11 04:20:00,13.027027027027028,13.027027027027028,19.699901111164566 + 07/11 04:30:00,13.001801801801803,13.001801801801803,19.707074217477329 + 07/11 04:40:00,12.976576576576577,12.976576576576577,19.713916005271824 + 07/11 04:50:00,12.951351351351353,12.951351351351353,19.720477965584175 + 07/11 05:00:00,12.926126126126127,12.926126126126127,19.72685578294414 + 07/11 05:10:00,12.951351351351353,12.951351351351353,19.733231224843576 + 07/11 05:20:00,12.976576576576577,12.976576576576577,19.739495464401128 + 07/11 05:30:00,13.001801801801803,13.001801801801803,19.745664641051186 + 07/11 05:40:00,13.027027027027028,13.027027027027028,19.751482413272556 + 07/11 05:50:00,13.052252252252253,13.052252252252253,19.756869171599406 + 07/11 06:00:00,13.077477477477478,13.077477477477478,19.76140382549572 + 07/11 06:10:00,13.006006006006008,13.006006006006008,17.77515214141979 + 07/11 06:20:00,12.934534534534535,12.934534534534535,17.522364829057019 + 07/11 06:30:00,12.863063063063063,12.863063063063063,17.433833136893303 + 07/11 06:40:00,12.8,12.8,17.361455143692298 + 07/11 06:50:00,12.8,12.8,17.30591041566695 + 07/11 07:00:00,12.8,12.8,17.258347845987556 + 07/11 07:05:00,12.8,12.8,15.763664373600049 + 07/11 07:10:00,12.8,12.8,15.77024150868712 + 07/11 07:15:00,12.8,12.8,15.537364389352185 + 07/11 07:20:00,12.8,12.8,15.535608187188109 + 07/11 07:30:00,12.8,12.8,15.426511308410099 + 07/11 07:40:00,12.8,12.8,15.33654467303664 + 07/11 07:50:00,12.8,12.8,15.2584217860827 + 07/11 08:00:00,12.8,12.8,15.189971562333782 + 07/11 08:03:19,12.8,12.8,15.103321886758112 + 07/11 08:06:40,12.8,12.8,15.102949954101492 + 07/11 08:10:00,12.8,12.8,15.102877024432335 + 07/11 08:20:00,12.8,12.8,15.037612351570104 + 07/11 08:30:00,12.8,12.8,14.985090560454294 + 07/11 08:40:00,12.8,12.8,14.936097212587008 + 07/11 08:50:00,12.8,12.8,14.890103198081416 + 07/11 09:00:00,12.8,12.8,14.84684406125271 + 07/11 09:10:00,12.8,12.8,14.805876026806639 + 07/11 09:20:00,12.8,12.8,14.756667255951113 + 07/11 09:30:00,12.8,12.8,14.719956053164072 + 07/11 09:40:00,12.8,12.8,14.68538826949938 + 07/11 09:50:00,12.8,12.8,14.65275450608829 + 07/11 10:00:00,12.8,12.8,14.62199426209797 + 07/11 10:10:00,12.8,12.8,14.59288154652089 + 07/11 10:20:00,12.8,12.8,14.561622800802823 + 07/11 10:30:00,12.8,12.8,14.53504586053956 + 07/11 10:40:00,12.8,12.8,14.509407165032672 + 07/11 10:50:00,12.8,12.8,14.484396690991368 + 07/11 11:00:00,12.8,12.8,14.459893251277578 + 07/11 11:10:00,12.8,12.8,14.435912190334216 + 07/11 11:20:00,12.8,12.8,14.42227863339607 + 07/11 11:30:00,12.8,12.8,14.39980168314508 + 07/11 11:40:00,12.8,12.8,14.378265139516028 + 07/11 11:50:00,12.8,12.8,14.358398218930052 + 07/11 12:00:00,12.8,12.8,14.340206049495685 + 07/11 12:10:00,12.8,12.8,14.323338227918333 + 07/11 12:20:00,12.8,12.8,14.298338637618775 + 07/11 12:30:00,12.8,12.8,14.284291037585407 + 07/11 12:40:00,12.8,12.8,14.271471430825992 + 07/11 12:50:00,12.8,12.8,14.259494545350873 + 07/11 13:00:00,12.8,12.8,14.248330993561867 + 07/11 13:10:00,12.8,12.8,14.238244441871366 + 07/11 13:20:00,12.8,12.8,14.231962704753372 + 07/11 13:30:00,12.8,12.8,14.222402868704254 + 07/11 13:40:00,12.8,12.8,14.212990153518904 + 07/11 13:50:00,12.8,12.8,14.203816136033023 + 07/11 14:00:00,12.8,12.8,14.194868135836286 + 07/11 14:10:00,12.8,12.8,14.187060907536699 + 07/11 14:20:00,12.8,12.8,14.183326786345149 + 07/11 14:30:00,12.8,12.8,14.17671151589394 + 07/11 14:40:00,12.8,12.8,14.17111324123025 + 07/11 14:50:00,12.8,12.8,14.167315034633005 + 07/11 15:00:00,12.8,12.8,14.165843344229615 + 07/11 15:05:00,12.8,12.8,16.32463883650176 + 07/11 15:10:00,12.8,12.8,16.32074303481003 + 07/11 15:20:00,12.8,12.8,16.5797713755658 + 07/11 15:30:00,12.8,12.8,16.68619108968811 + 07/11 15:40:00,12.8,12.8,16.7673730486559 + 07/11 15:50:00,12.8,12.8,16.831988880808966 + 07/11 16:00:00,12.8,12.8,16.882747908559865 + 07/11 16:10:00,12.8,12.8,16.946809960845365 + 07/11 16:20:00,12.8,12.8,17.001995886223246 + 07/11 16:30:00,12.8,12.8,17.032294569237288 + 07/11 16:40:00,12.8,12.8,17.059727435585715 + 07/11 16:50:00,12.8,12.8,17.085695759062184 + 07/11 17:00:00,12.8,12.8,17.110819532144597 + 07/11 17:10:00,12.8,12.8,17.148326562162628 + 07/11 17:15:00,12.8,12.8,17.179325798488806 + 07/11 17:20:00,12.8,12.8,17.178927153396125 + 07/11 17:30:00,12.8,12.8,17.202751314319906 + 07/11 17:40:00,12.8,12.8,17.22595152857497 + 07/11 17:50:00,12.8,12.8,17.247062527654806 + 07/11 18:00:00,12.8,12.8,17.266193638154893 + 07/11 18:10:00,12.8,12.8,17.28395792324139 + 07/11 18:20:00,12.8,12.8,17.300149365142706 + 07/11 18:30:00,12.8,12.8,17.31507670496145 + 07/11 18:40:00,12.8,12.8,17.329101139608985 + 07/11 18:50:00,12.8,12.8,17.34308490132324 + 07/11 19:00:00,12.8,12.8,17.357084078020877 + 07/11 19:10:00,12.8,12.8,17.38344423226646 + 07/11 19:20:00,12.8,12.8,17.39742862591447 + 07/11 19:30:00,12.8,12.8,17.410507821346223 + 07/11 19:40:00,12.8,12.8,17.4230696953465 + 07/11 19:50:00,12.8,12.8,17.435086447318647 + 07/11 20:00:00,12.8,12.8,17.446518396633758 + 07/11 20:10:00,12.8,12.8,17.43499709242908 + 07/11 20:20:00,12.8,12.8,17.449273758758478 + 07/11 20:30:00,12.8,12.8,17.458794264403204 + 07/11 20:40:00,12.8,12.8,17.46765619973354 + 07/11 20:50:00,12.8,12.8,17.476060443407424 + 07/11 21:00:00,12.8,12.8,17.484002702350588 + 07/11 21:10:00,12.8,12.8,17.491713297043206 + 07/11 21:20:00,12.8,12.8,17.49919985886154 + 07/11 21:30:00,12.8,12.8,17.506714520100826 + 07/11 21:40:00,12.8,12.8,17.514288000453879 + 07/11 21:50:00,12.8,12.8,17.52187617280962 + 07/11 22:00:00,12.8,12.8,17.529470627512663 + 07/11 22:10:00,12.8,12.8,18.894923956045714 + 07/11 22:20:00,12.8,12.8,19.044495519039516 + 07/11 22:30:00,12.8,12.8,19.111681593871859 + 07/11 22:40:00,12.8,12.8,19.166452313929484 + 07/11 22:50:00,12.8,12.8,19.21118172426856 + 07/11 23:00:00,12.8,12.8,19.24948193563493 + 07/11 23:10:00,12.8,12.8,19.28298848880437 + 07/11 23:20:00,12.8,12.8,19.311521339220606 + 07/11 23:30:00,12.8,12.8,19.33801860992791 + 07/11 23:40:00,12.8,12.8,19.361733536328008 + 07/11 23:50:00,12.8,12.8,19.38378938278343 + 07/11 24:00:00,12.8,12.8,19.40416880681292 + 07/12 00:10:00,12.8,12.8,19.423262281925355 + 07/12 00:20:00,12.8,12.8,19.44100655831788 + 07/12 00:30:00,12.8,12.8,19.457754736127848 + 07/12 00:40:00,12.8,12.8,19.47360562797698 + 07/12 00:50:00,12.8,12.8,19.4885467362464 + 07/12 01:00:00,12.8,12.8,19.502824496177135 + 07/12 01:10:00,12.8,12.8,19.51653212609811 + 07/12 01:20:00,12.8,12.8,19.5296529463006 + 07/12 01:30:00,12.8,12.8,19.54224194405399 + 07/12 01:40:00,12.8,12.8,19.55428868351835 + 07/12 01:50:00,12.8,12.8,19.56590491779636 + 07/12 02:00:00,12.8,12.8,19.577169766485019 + 07/12 02:10:00,12.8,12.8,19.588097527928747 + 07/12 02:20:00,12.8,12.8,19.597372821720464 + 07/12 02:30:00,12.8,12.8,19.608388132954848 + 07/12 02:40:00,12.8,12.8,19.617991674666798 + 07/12 02:50:00,12.8,12.8,19.628097577139785 + 07/12 03:00:00,12.8,12.8,19.63778293924964 + 07/12 03:10:00,12.821021021021022,12.821021021021022,19.647280321279874 + 07/12 03:20:00,12.842042042042042,12.842042042042042,19.65483900197941 + 07/12 03:30:00,12.863063063063063,12.863063063063063,19.664526403292429 + 07/12 03:40:00,12.884084084084084,12.884084084084084,19.671899995561643 + 07/12 03:50:00,12.905105105105106,12.905105105105106,19.68046034004638 + 07/12 04:00:00,12.926126126126127,12.926126126126127,19.688370709025045 + 07/12 04:10:00,12.926126126126127,12.926126126126127,19.696141666511449 + 07/12 04:20:00,12.926126126126127,12.926126126126127,19.70347006106125 + 07/12 04:30:00,12.926126126126127,12.926126126126127,19.71046456232872 + 07/12 04:40:00,12.926126126126127,12.926126126126127,19.7172160878858 + 07/12 04:50:00,12.926126126126127,12.926126126126127,19.72389165135438 + 07/12 05:00:00,12.926126126126127,12.926126126126127,19.73014204440189 + 07/12 05:10:00,12.926126126126127,12.926126126126127,19.73624885360038 + 07/12 05:20:00,12.926126126126127,12.926126126126127,19.742095942576158 + 07/12 05:30:00,12.926126126126127,12.926126126126127,19.746540342880537 + 07/12 05:40:00,12.926126126126127,12.926126126126127,19.752564968593764 + 07/12 05:50:00,12.926126126126127,12.926126126126127,19.756980930751774 + 07/12 06:00:00,12.926126126126127,12.926126126126127,19.759701168056809 + 07/12 06:10:00,12.905105105105106,12.905105105105106,17.773040895770039 + 07/12 06:15:00,12.884084084084084,12.884084084084084,17.51561149736431 + 07/12 06:20:00,12.884084084084084,12.884084084084084,17.520473158738075 + 07/12 06:30:00,12.863063063063063,12.863063063063063,17.42775686751482 + 07/12 06:40:00,12.842042042042042,12.842042042042042,17.353949593791808 + 07/12 06:50:00,12.821021021021022,12.821021021021022,17.297887331444259 + 07/12 07:00:00,12.8,12.8,17.249821324549843 + 07/12 07:05:00,12.8,12.8,15.756163349320568 + 07/12 07:10:00,12.8,12.8,15.76214238696665 + 07/12 07:15:00,12.8,12.8,15.531114520210588 + 07/12 07:20:00,12.8,12.8,15.529341266743213 + 07/12 07:30:00,12.8,12.8,15.423081852292649 + 07/12 07:40:00,12.8,12.8,15.337147676424817 + 07/12 07:50:00,12.8,12.8,15.263594618692846 + 07/12 08:00:00,12.8,12.8,15.199902547429313 + 07/12 08:03:19,12.8,12.8,15.118208109140126 + 07/12 08:06:40,12.8,12.8,15.117776446372494 + 07/12 08:10:00,12.8,12.8,15.117771386026004 + 07/12 08:20:00,12.8,12.8,15.05763966720511 + 07/12 08:30:00,12.8,12.8,15.010581759974718 + 07/12 08:40:00,12.8,12.8,14.96692639059023 + 07/12 08:50:00,12.8,12.8,14.925462936438017 + 07/12 09:00:00,12.8,12.8,14.885557049816489 + 07/12 09:10:00,12.8,12.8,14.846502334210827 + 07/12 09:20:00,12.8,12.8,14.797640386607656 + 07/12 09:30:00,12.8,12.8,14.759601344185917 + 07/12 09:40:00,12.8,12.8,14.72280088372181 + 07/12 09:50:00,12.8,12.8,14.688230535149766 + 07/12 10:00:00,12.8,12.8,14.656394483631808 + 07/12 10:10:00,12.8,12.8,14.627137373738537 + 07/12 10:20:00,12.8,12.8,14.597069905254703 + 07/12 10:30:00,12.8,12.8,14.572842849753125 + 07/12 10:40:00,12.8,12.8,14.550322154367619 + 07/12 10:50:00,12.8,12.8,14.52850832100072 + 07/12 11:00:00,12.8,12.8,14.506918579071402 + 07/12 11:10:00,12.8,12.8,14.485549231249653 + 07/12 11:20:00,12.8,12.8,14.474075185816468 + 07/12 11:30:00,12.8,12.8,14.453411292200175 + 07/12 11:40:00,12.8,12.8,14.432846531266164 + 07/12 11:50:00,12.8,12.8,14.412455062564112 + 07/12 12:00:00,12.8,12.8,14.39213745643802 + 07/12 12:10:00,12.8,12.8,14.372471026028072 + 07/12 12:20:00,12.8,12.8,14.34310800524881 + 07/12 12:30:00,12.8,12.8,14.323154935012246 + 07/12 12:40:00,12.8,12.8,14.303473404543479 + 07/12 12:50:00,12.8,12.8,14.284256941374738 + 07/12 13:00:00,12.8,12.8,14.265697013861305 + 07/12 13:10:00,12.8,12.8,14.247461808639639 + 07/12 13:20:00,12.8,12.8,14.233543455338383 + 07/12 13:30:00,12.8,12.8,14.216924745162523 + 07/12 13:40:00,12.8,12.8,14.201629042372014 + 07/12 13:50:00,12.8,12.8,14.188710746111579 + 07/12 14:00:00,12.8,12.8,14.178124146834108 + 07/12 14:10:00,12.8,12.8,14.169328049174786 + 07/12 14:20:00,12.8,12.8,14.165902274613793 + 07/12 14:30:00,12.8,12.8,14.160544581864869 + 07/12 14:40:00,12.8,12.8,14.156042710325848 + 07/12 14:50:00,12.8,12.8,14.151760714974598 + 07/12 15:00:00,12.8,12.8,14.14757192919692 + 07/12 15:10:00,12.8,12.8,16.294120421091109 + 07/12 15:20:00,12.8,12.8,16.553968263584804 + 07/12 15:30:00,12.8,12.8,16.654540426975325 + 07/12 15:40:00,12.8,12.8,16.7342812532704 + 07/12 15:50:00,12.8,12.8,16.7927578700831 + 07/12 16:00:00,12.8,12.8,16.839823276905887 + 07/12 16:10:00,12.8,12.8,16.903769350019187 + 07/12 16:20:00,12.8,12.8,16.959180830085466 + 07/12 16:30:00,12.8,12.8,16.990639070644055 + 07/12 16:40:00,12.8,12.8,17.0182847927467 + 07/12 16:50:00,12.8,12.8,17.042614260367853 + 07/12 17:00:00,12.8,12.8,17.06432428958472 + 07/12 17:10:00,12.8,12.8,17.096267618741107 + 07/12 17:15:00,12.8,12.8,17.120477438031818 + 07/12 17:20:00,12.8,12.8,17.12010226699394 + 07/12 17:30:00,12.8,12.8,17.136319487943547 + 07/12 17:40:00,12.8,12.8,17.152438417711129 + 07/12 17:50:00,12.8,12.8,17.168708064186 + 07/12 18:00:00,12.8,12.8,17.185446290371944 + 07/12 18:10:00,12.8,12.8,17.203192686696537 + 07/12 18:20:00,12.8,12.8,17.2210840239412 + 07/12 18:30:00,12.8,12.8,17.238953352393936 + 07/12 18:40:00,12.8,12.8,17.256548110862238 + 07/12 18:50:00,12.8,12.8,17.27356490384831 + 07/12 19:00:00,12.8,12.8,17.28994868581686 + 07/12 19:10:00,12.8,12.8,17.318275488648398 + 07/12 19:20:00,12.8,12.8,17.33405449505169 + 07/12 19:30:00,12.8,12.8,17.349055991506249 + 07/12 19:40:00,12.8,12.8,17.363680898848619 + 07/12 19:50:00,12.8,12.8,17.378007527107117 + 07/12 20:00:00,12.8,12.8,17.392149642063836 + 07/12 20:10:00,12.8,12.8,17.38363865437869 + 07/12 20:20:00,12.8,12.8,17.400684446922257 + 07/12 20:30:00,12.8,12.8,17.412732922660156 + 07/12 20:40:00,12.8,12.8,17.42391014124921 + 07/12 20:50:00,12.8,12.8,17.434469214700895 + 07/12 21:00:00,12.8,12.8,17.44436272498341 + 07/12 21:10:00,12.8,12.8,17.45402039755523 + 07/12 21:20:00,12.8,12.8,17.46319953088476 + 07/12 21:30:00,12.8,12.8,17.472101265162018 + 07/12 21:40:00,12.8,12.8,17.480748794584036 + 07/12 21:50:00,12.8,12.8,17.489160437058226 + 07/12 22:00:00,12.8,12.8,17.49759046722404 + 07/12 22:10:00,12.8,12.8,18.8633908691521 + 07/12 22:20:00,12.8,12.8,19.01396157743872 + 07/12 22:30:00,12.8,12.8,19.080757047592689 + 07/12 22:40:00,12.8,12.8,19.135072767658664 + 07/12 22:50:00,12.8,12.8,19.178923889452258 + 07/12 23:00:00,12.8,12.8,19.216162093260665 + 07/12 23:10:00,12.8,12.8,19.247102215525975 + 07/12 23:20:00,12.8,12.8,19.27545707374281 + 07/12 23:30:00,12.8,12.8,19.30033146730988 + 07/12 23:40:00,12.8,12.8,19.323314030254175 + 07/12 23:50:00,12.8,12.8,19.344302403937694 + 07/12 24:00:00,12.8,12.8,19.36311737545914 + 07/13 00:10:00,12.8,12.8,19.381916395390989 + 07/13 00:20:00,12.8,12.8,19.399043705674676 + 07/13 00:30:00,12.8,12.8,19.41569767114165 + 07/13 00:40:00,12.8,12.8,19.430717826735113 + 07/13 00:50:00,12.8,12.8,19.446380394416438 + 07/13 01:00:00,12.8,12.8,19.460774388506345 + 07/13 01:10:00,12.8,12.8,19.474287028083663 + 07/13 01:20:00,12.8,12.8,19.488284431387265 + 07/13 01:30:00,12.8,12.8,19.50129698998466 + 07/13 01:40:00,12.8,12.8,19.514263824435756 + 07/13 01:50:00,12.8,12.8,19.526738817826833 + 07/13 02:00:00,12.8,12.8,19.537818380434957 + 07/13 02:10:00,12.8,12.8,19.549848934404478 + 07/13 02:20:00,12.8,12.8,19.560646131514063 + 07/13 02:30:00,12.8,12.8,19.571465105762404 + 07/13 02:40:00,12.8,12.8,19.580604923279155 + 07/13 02:50:00,12.8,12.8,19.590903119102408 + 07/13 03:00:00,12.8,12.8,19.599858120388434 + 07/13 03:10:00,12.8,12.8,19.609036432712658 + 07/13 03:20:00,12.8,12.8,19.617847342114858 + 07/13 03:30:00,12.8,12.8,19.625163997602255 + 07/13 03:40:00,12.8,12.8,19.63435210754878 + 07/13 03:50:00,12.8,12.8,19.642200542388865 + 07/13 04:00:00,12.8,12.8,19.65060253064383 + 07/13 04:10:00,12.8,12.8,19.658664889844073 + 07/13 04:20:00,12.8,12.8,19.665034924118186 + 07/13 04:30:00,12.8,12.8,19.67322346012548 + 07/13 04:40:00,12.8,12.8,19.679825904662985 + 07/13 04:50:00,12.8,12.8,19.68679399348648 + 07/13 05:00:00,12.8,12.8,19.692054740970087 + 07/13 05:10:00,12.8,12.8,19.699019197069047 + 07/13 05:20:00,12.8,12.8,19.704572385099568 + 07/13 05:30:00,12.8,12.8,19.70933218858644 + 07/13 05:40:00,12.8,12.8,19.715062666954549 + 07/13 05:50:00,12.8,12.8,19.718677042812648 + 07/13 06:00:00,12.8,12.8,19.723064141836248 + 07/13 06:10:00,12.8,12.8,17.733918847697646 + 07/13 06:15:00,12.8,12.8,17.47814272604254 + 07/13 06:20:00,12.8,12.8,17.482927459050413 + 07/13 06:30:00,12.8,12.8,17.391455472011765 + 07/13 06:40:00,12.8,12.8,17.31991127320825 + 07/13 06:50:00,12.8,12.8,17.265681454521 + 07/13 07:00:00,12.8,12.8,17.219079500070316 + 07/13 07:05:00,12.8,12.8,15.72562563427953 + 07/13 07:10:00,12.8,12.8,15.73162689230694 + 07/13 07:15:00,12.8,12.8,15.499966229795965 + 07/13 07:20:00,12.8,12.8,15.49818651167779 + 07/13 07:30:00,12.8,12.8,15.389967417520007 + 07/13 07:40:00,12.8,12.8,15.300782301537707 + 07/13 07:50:00,12.8,12.8,15.22322746260253 + 07/13 08:00:00,12.8,12.8,15.155059044173179 + 07/13 08:03:19,12.8,12.8,15.068622584463422 + 07/13 08:06:40,12.8,12.8,15.068249640525716 + 07/13 08:10:00,12.8,12.8,15.068178923376264 + 07/13 08:20:00,12.8,12.8,15.003245900638586 + 07/13 08:30:00,12.8,12.8,14.951251953574865 + 07/13 08:40:00,12.8,12.8,14.903034372640946 + 07/13 08:50:00,12.8,12.8,14.858157185504057 + 07/13 09:00:00,12.8,12.8,14.816320112155435 + 07/13 09:10:00,12.8,12.8,14.777204574684808 + 07/13 09:20:00,12.8,12.8,14.729563457332369 + 07/13 09:30:00,12.8,12.8,14.693980034298578 + 07/13 09:40:00,12.8,12.8,14.659940851324104 + 07/13 09:50:00,12.8,12.8,14.627081758139417 + 07/13 10:00:00,12.8,12.8,14.595350305951259 + 07/13 10:10:00,12.8,12.8,14.56461225127545 + 07/13 10:20:00,12.8,12.8,14.53142324848103 + 07/13 10:30:00,12.8,12.8,14.502656243144513 + 07/13 10:40:00,12.8,12.8,14.47511428822507 + 07/13 10:50:00,12.8,12.8,14.449150358232958 + 07/13 11:00:00,12.8,12.8,14.424711437493233 + 07/13 11:10:00,12.8,12.8,14.402349032066974 + 07/13 11:20:00,12.8,12.8,14.390638358528994 + 07/13 11:30:00,12.8,12.8,14.370052595937516 + 07/13 11:40:00,12.8,12.8,14.349872968520092 + 07/13 11:50:00,12.8,12.8,14.330111862417855 + 07/13 12:00:00,12.8,12.8,14.310081390648552 + 07/13 12:10:00,12.8,12.8,14.28885221621509 + 07/13 12:20:00,12.8,12.8,14.260119702963089 + 07/13 12:30:00,12.8,12.8,14.243177567962816 + 07/13 12:40:00,12.8,12.8,14.228095340484499 + 07/13 12:50:00,12.8,12.8,14.213913634081392 + 07/13 13:00:00,12.8,12.8,14.20039721765271 + 07/13 13:10:00,12.8,12.8,14.188463983627506 + 07/13 13:20:00,12.8,12.8,14.180388677880915 + 07/13 13:30:00,12.8,12.8,14.169076468038054 + 07/13 13:40:00,12.8,12.8,14.158103161622618 + 07/13 13:50:00,12.8,12.8,14.147745677453388 + 07/13 14:00:00,12.8,12.8,14.13806038012139 + 07/13 14:10:00,12.8,12.8,14.12834210007726 + 07/13 14:20:00,12.8,12.8,14.122722782913935 + 07/13 14:30:00,12.8,12.8,14.114190279334628 + 07/13 14:40:00,12.8,12.8,14.106187156891572 + 07/13 14:50:00,12.8,12.8,14.09886878087409 + 07/13 15:00:00,12.8,12.8,14.09235796961788 + 07/13 15:05:00,12.8,12.8,16.24877408364507 + 07/13 15:10:00,12.8,12.8,16.244653361158759 + 07/13 15:20:00,12.8,12.8,16.499892198030595 + 07/13 15:30:00,12.8,12.8,16.601436059011414 + 07/13 15:40:00,12.8,12.8,16.677706252658436 + 07/13 15:50:00,12.8,12.8,16.73899938480851 + 07/13 16:00:00,12.8,12.8,16.78635415044981 + 07/13 16:10:00,12.8,12.8,16.85222069005892 + 07/13 16:20:00,12.8,12.8,16.907940921493265 + 07/13 16:30:00,12.8,12.8,16.940317186485076 + 07/13 16:40:00,12.8,12.8,16.969385204337 + 07/13 16:50:00,12.8,12.8,16.996083532008119 + 07/13 17:00:00,12.8,12.8,17.020304586387284 + 07/13 17:05:00,12.8,12.8,17.053861370108906 + 07/13 17:10:00,12.8,12.8,17.053465961517558 + 07/13 17:15:00,12.8,12.8,17.079015571304767 + 07/13 17:20:00,12.8,12.8,17.07907369045192 + 07/13 17:30:00,12.8,12.8,17.100311787775199 + 07/13 17:40:00,12.8,12.8,17.11714386961985 + 07/13 17:50:00,12.8,12.8,17.136598228973484 + 07/13 18:00:00,12.8,12.8,17.157606410687529 + 07/13 18:10:00,12.8,12.8,17.175501055010494 + 07/13 18:20:00,12.8,12.8,17.196925071077926 + 07/13 18:30:00,12.8,12.8,17.217980543272878 + 07/13 18:40:00,12.8,12.8,17.239670303865159 + 07/13 18:50:00,12.8,12.8,17.260892418096256 + 07/13 19:00:00,12.8,12.8,17.281362794774556 + 07/13 19:10:00,12.8,12.8,17.313389999714237 + 07/13 19:20:00,12.8,12.8,17.332392591567176 + 07/13 19:30:00,12.8,12.8,17.350117370594626 + 07/13 19:40:00,12.8,12.8,17.367148133368429 + 07/13 19:50:00,12.8,12.8,17.383638950839388 + 07/13 20:00:00,12.8,12.8,17.39970988171053 + 07/13 20:10:00,12.8,12.8,17.391597550577946 + 07/13 20:20:00,12.8,12.8,17.408779899573696 + 07/13 20:30:00,12.8,12.8,17.420602833453306 + 07/13 20:40:00,12.8,12.8,17.431180718478467 + 07/13 20:50:00,12.8,12.8,17.440710317273909 + 07/13 21:00:00,12.8,12.8,17.44937622900388 + 07/13 21:10:00,12.8,12.8,17.457576981045727 + 07/13 21:20:00,12.8,12.8,17.46553459111525 + 07/13 21:30:00,12.8,12.8,17.473655128022416 + 07/13 21:40:00,12.8,12.8,17.48200465169927 + 07/13 21:50:00,12.8,12.8,17.490541996198087 + 07/13 22:00:00,12.8,12.8,17.499245976086035 + 07/13 22:10:00,12.8,12.8,18.865971473391146 + 07/13 22:20:00,12.8,12.8,19.017047133699266 + 07/13 22:30:00,12.8,12.8,19.083958841700264 + 07/13 22:40:00,12.8,12.8,19.13787232266732 + 07/13 22:50:00,12.8,12.8,19.180635434620453 + 07/13 23:00:00,12.8,12.8,19.216180469670876 + 07/13 23:10:00,12.8,12.8,19.244802300772205 + 07/13 23:20:00,12.8,12.8,19.270720649992506 + 07/13 23:30:00,12.8,12.8,19.293581662797484 + 07/13 23:40:00,12.8,12.8,19.31455242597876 + 07/13 23:50:00,12.8,12.8,19.33383121090805 + 07/13 24:00:00,12.8,12.8,19.350853587229517 + 07/14 00:10:00,12.8,12.8,19.368005235110297 + 07/14 00:20:00,12.8,12.8,19.38358377729079 + 07/14 00:30:00,12.8,12.8,19.398725528378738 + 07/14 00:40:00,12.8,12.8,19.412206313099639 + 07/14 00:50:00,12.8,12.8,19.42627171208395 + 07/14 01:00:00,12.8,12.8,19.439143673493534 + 07/14 01:10:00,12.8,12.8,19.451093899996594 + 07/14 01:20:00,12.8,12.8,19.46339641133757 + 07/14 01:30:00,12.8,12.8,19.474455287791629 + 07/14 01:40:00,12.8,12.8,19.484394714954918 + 07/14 01:50:00,12.8,12.8,19.494887454063187 + 07/14 02:00:00,12.8,12.8,19.504239102767217 + 07/14 02:10:00,12.8,12.8,19.512925996842087 + 07/14 02:20:00,12.8,12.8,19.522923743141058 + 07/14 02:30:00,12.8,12.8,19.532539394566244 + 07/14 02:40:00,12.8,12.8,19.542919905515804 + 07/14 02:50:00,12.8,12.8,19.55247798473021 + 07/14 03:00:00,12.8,12.8,19.5639329779323 + 07/14 03:10:00,12.8,12.8,19.57452464589167 + 07/14 03:20:00,12.8,12.8,19.58539769088116 + 07/14 03:30:00,12.8,12.8,19.594553652924345 + 07/14 03:40:00,12.8,12.8,19.605057926846056 + 07/14 03:50:00,12.8,12.8,19.614270179216974 + 07/14 04:00:00,12.8,12.8,19.623660442133465 + 07/14 04:10:00,12.8,12.8,19.631356075773128 + 07/14 04:20:00,12.8,12.8,19.640309061073976 + 07/14 04:30:00,12.8,12.8,19.648033926592257 + 07/14 04:40:00,12.8,12.8,19.655977642461889 + 07/14 04:50:00,12.8,12.8,19.662268102388823 + 07/14 05:00:00,12.8,12.8,19.67003486663053 + 07/14 05:10:00,12.8,12.8,19.676539710046673 + 07/14 05:20:00,12.8,12.8,19.682442673266114 + 07/14 05:30:00,12.8,12.8,19.68947701268602 + 07/14 05:40:00,12.8,12.8,19.694771677673779 + 07/14 05:50:00,12.8,12.8,19.70119039103868 + 07/14 06:00:00,12.8,12.8,19.705276665157144 + 07/14 06:10:00,12.8,12.8,17.718401127317344 + 07/14 06:20:00,12.8,12.8,17.46470068015237 + 07/14 06:30:00,12.8,12.8,17.377080107074876 + 07/14 06:40:00,12.8,12.8,17.305716538716088 + 07/14 06:50:00,12.8,12.8,17.251466527203154 + 07/14 07:00:00,12.8,12.8,17.205294997430806 + 07/14 07:05:00,12.8,12.8,15.710820046719383 + 07/14 07:10:00,12.8,12.8,15.717433886386 + 07/14 07:15:00,12.8,12.8,15.485745036191533 + 07/14 07:20:00,12.8,12.8,15.483982598176981 + 07/14 07:30:00,12.8,12.8,15.376559167394467 + 07/14 07:40:00,12.8,12.8,15.288176570945419 + 07/14 07:50:00,12.8,12.8,15.211412798736843 + 07/14 08:00:00,12.8,12.8,15.143864351083405 + 07/14 08:03:19,12.8,12.8,15.056905805000874 + 07/14 08:06:40,12.8,12.8,15.056505066737888 + 07/14 08:10:00,12.8,12.8,15.056481835945214 + 07/14 08:20:00,12.8,12.8,14.9910861366717 + 07/14 08:30:00,12.8,12.8,14.938717571858155 + 07/14 08:40:00,12.8,12.8,14.890188243140975 + 07/14 08:50:00,12.8,12.8,14.844894375882492 + 07/14 09:00:00,12.8,12.8,14.802447942136084 + 07/14 09:10:00,12.8,12.8,14.763019745593518 + 07/14 09:20:00,12.8,12.8,14.714938440114212 + 07/14 09:30:00,12.8,12.8,14.678761719957935 + 07/14 09:40:00,12.8,12.8,14.64415382614577 + 07/14 09:50:00,12.8,12.8,14.61102061447926 + 07/14 10:00:00,12.8,12.8,14.57939876530993 + 07/14 10:10:00,12.8,12.8,14.549220926678144 + 07/14 10:20:00,12.8,12.8,14.51678529911328 + 07/14 10:30:00,12.8,12.8,14.488911425089034 + 07/14 10:40:00,12.8,12.8,14.462295540581302 + 07/14 10:50:00,12.8,12.8,14.436933882642505 + 07/14 11:00:00,12.8,12.8,14.412872299049966 + 07/14 11:10:00,12.8,12.8,14.38887171927585 + 07/14 11:20:00,12.8,12.8,14.375813276190286 + 07/14 11:30:00,12.8,12.8,14.354432198040247 + 07/14 11:40:00,12.8,12.8,14.333977310056224 + 07/14 11:50:00,12.8,12.8,14.314565533715078 + 07/14 12:00:00,12.8,12.8,14.29601146857373 + 07/14 12:10:00,12.8,12.8,14.27999356014378 + 07/14 12:20:00,12.8,12.8,14.254944370396942 + 07/14 12:30:00,12.8,12.8,14.239911821598149 + 07/14 12:40:00,12.8,12.8,14.225460526870763 + 07/14 12:50:00,12.8,12.8,14.211506554424707 + 07/14 13:00:00,12.8,12.8,14.197936759478186 + 07/14 13:10:00,12.8,12.8,14.184530204142419 + 07/14 13:20:00,12.8,12.8,14.17516560148809 + 07/14 13:30:00,12.8,12.8,14.162853027412162 + 07/14 13:40:00,12.8,12.8,14.15112331723191 + 07/14 13:50:00,12.8,12.8,14.140172845594345 + 07/14 14:00:00,12.8,12.8,14.129982799684607 + 07/14 14:10:00,12.8,12.8,14.12010542257807 + 07/14 14:20:00,12.8,12.8,14.114478766719037 + 07/14 14:30:00,12.8,12.8,14.10610167301962 + 07/14 14:40:00,12.8,12.8,14.098661596204464 + 07/14 14:50:00,12.8,12.8,14.092708219334652 + 07/14 15:00:00,12.8,12.8,14.088187982772645 + 07/14 15:05:00,12.8,12.8,16.24897351156712 + 07/14 15:10:00,12.8,12.8,16.24411682175515 + 07/14 15:20:00,12.8,12.8,16.503544341493865 + 07/14 15:30:00,12.8,12.8,16.60944414890672 + 07/14 15:40:00,12.8,12.8,16.689910439436014 + 07/14 15:50:00,12.8,12.8,16.751489339112476 + 07/14 16:00:00,12.8,12.8,16.801380697375309 + 07/14 16:10:00,12.8,12.8,16.86820207569378 + 07/14 16:20:00,12.8,12.8,16.923467475459256 + 07/14 16:30:00,12.8,12.8,16.955721038248457 + 07/14 16:40:00,12.8,12.8,16.98449938313751 + 07/14 16:50:00,12.8,12.8,17.01084453971341 + 07/14 17:00:00,12.8,12.8,17.03535593179343 + 07/14 17:05:00,12.8,12.8,17.073493100915099 + 07/14 17:10:00,12.8,12.8,17.073094401313026 + 07/14 17:15:00,12.8,12.8,17.102395438366018 + 07/14 17:20:00,12.8,12.8,17.10243917170784 + 07/14 17:30:00,12.8,12.8,17.124440464496705 + 07/14 17:40:00,12.8,12.8,17.145857726125877 + 07/14 17:50:00,12.8,12.8,17.165915618774528 + 07/14 18:00:00,12.8,12.8,17.18473256568407 + 07/14 18:10:00,12.8,12.8,17.20133464570851 + 07/14 18:20:00,12.8,12.8,17.217750706735847 + 07/14 18:30:00,12.8,12.8,17.234284268961859 + 07/14 18:40:00,12.8,12.8,17.250876557411666 + 07/14 18:50:00,12.8,12.8,17.267284756015419 + 07/14 19:00:00,12.8,12.8,17.283451460378186 + 07/14 19:10:00,12.8,12.8,17.3122214254179 + 07/14 19:20:00,12.8,12.8,17.32785149751229 + 07/14 19:30:00,12.8,12.8,17.342024780850659 + 07/14 19:40:00,12.8,12.8,17.355261677114638 + 07/14 19:50:00,12.8,12.8,17.367604809219914 + 07/14 20:00:00,12.8,12.8,17.37939528328992 + 07/14 20:10:00,12.8,12.8,17.367604206065143 + 07/14 20:20:00,12.8,12.8,17.382160144575637 + 07/14 20:30:00,12.8,12.8,17.392711510954319 + 07/14 20:40:00,12.8,12.8,17.40332958138928 + 07/14 20:50:00,12.8,12.8,17.414248231692264 + 07/14 21:00:00,12.8,12.8,17.42521681171221 + 07/14 21:10:00,12.8,12.8,17.43604135415541 + 07/14 21:20:00,12.8,12.8,17.446534405062946 + 07/14 21:30:00,12.8,12.8,17.456597277266586 + 07/14 21:40:00,12.8,12.8,17.46610238444059 + 07/14 21:50:00,12.8,12.8,17.475172750583224 + 07/14 22:00:00,12.8,12.8,17.48397674006865 + 07/14 22:10:00,12.8,12.8,18.850771280731665 + 07/14 22:20:00,12.8,12.8,19.000261925733754 + 07/14 22:30:00,12.8,12.8,19.06647182255179 + 07/14 22:40:00,12.8,12.8,19.119351215283513 + 07/14 22:50:00,12.8,12.8,19.16167869851587 + 07/14 23:00:00,12.8,12.8,19.197068245858419 + 07/14 23:10:00,12.8,12.8,19.227141722437339 + 07/14 23:20:00,12.8,12.8,19.253171237421243 + 07/14 23:30:00,12.8,12.8,19.276702734884436 + 07/14 23:40:00,12.8,12.8,19.297900819798558 + 07/14 23:50:00,12.8,12.8,19.317401160338034 + 07/14 24:00:00,12.8,12.8,19.335380891729146 + 07/15 00:10:00,12.8,12.8,19.352716855006656 + 07/15 00:20:00,12.8,12.8,19.36923739429519 + 07/15 00:30:00,12.8,12.8,19.385238399397929 + 07/15 00:40:00,12.8,12.8,19.400864463989426 + 07/15 00:50:00,12.8,12.8,19.416127736931054 + 07/15 01:00:00,12.8,12.8,19.431063598560998 + 07/15 01:10:00,12.8,12.8,19.445036555741618 + 07/15 01:20:00,12.8,12.8,19.45846399710831 + 07/15 01:30:00,12.8,12.8,19.471427359568059 + 07/15 01:40:00,12.8,12.8,19.48389946400848 + 07/15 01:50:00,12.8,12.8,19.495953174493687 + 07/15 02:00:00,12.8,12.8,19.50773938955487 + 07/15 02:10:00,12.8,12.8,19.519089637063 + 07/15 02:20:00,12.8,12.8,19.530041346285829 + 07/15 02:30:00,12.8,12.8,19.54045498949337 + 07/15 02:40:00,12.8,12.8,19.55038300141257 + 07/15 02:50:00,12.8,12.8,19.559887309577485 + 07/15 03:00:00,12.8,12.8,19.568935105218665 + 07/15 03:10:00,12.8,12.8,19.577662315002624 + 07/15 03:20:00,12.8,12.8,19.586090290376665 + 07/15 03:30:00,12.8,12.8,19.594213201913154 + 07/15 03:40:00,12.8,12.8,19.602075929168778 + 07/15 03:50:00,12.8,12.8,19.60962519158567 + 07/15 04:00:00,12.8,12.8,19.616968783146168 + 07/15 04:10:00,12.8,12.8,19.624119723030824 + 07/15 04:20:00,12.8,12.8,19.62973455844986 + 07/15 04:30:00,12.8,12.8,19.637170511248966 + 07/15 04:40:00,12.8,12.8,19.643255302648119 + 07/15 04:50:00,12.8,12.8,19.64980898957508 + 07/15 05:00:00,12.8,12.8,19.6560612244661 + 07/15 05:10:00,12.8,12.8,19.66066087812129 + 07/15 05:20:00,12.8,12.8,19.667227501540535 + 07/15 05:30:00,12.8,12.8,19.672260080638684 + 07/15 05:40:00,12.8,12.8,19.67657492339979 + 07/15 05:50:00,12.8,12.8,19.6818830209181 + 07/15 06:00:00,12.8,12.8,19.685379337227219 + 07/15 06:10:00,12.8,12.8,19.030192456747064 + 07/15 06:20:00,12.8,12.8,18.9570341961498 + 07/15 06:30:00,12.8,12.8,18.929501358844584 + 07/15 06:40:00,12.8,12.8,18.90742394507674 + 07/15 06:50:00,12.8,12.8,18.890655776002938 + 07/15 07:00:00,12.8,12.8,18.876519512361914 + 07/15 07:10:00,12.8,12.8,17.793838790759894 + 07/15 07:20:00,12.8,12.8,17.634872529442569 + 07/15 07:30:00,12.8,12.8,17.56990439605007 + 07/15 07:40:00,12.8,12.8,17.51535689220154 + 07/15 07:50:00,12.8,12.8,17.470670059000818 + 07/15 08:00:00,12.8,12.8,17.430751149474447 + 07/15 08:05:00,12.8,12.8,17.394098074375969 + 07/15 08:10:00,12.8,12.8,17.394060524832609 + 07/15 08:20:00,12.8,12.8,17.351212499862 + 07/15 08:30:00,12.8,12.8,17.31964071192592 + 07/15 08:40:00,12.8,12.8,17.290522318534756 + 07/15 08:50:00,12.8,12.8,17.264001930491764 + 07/15 09:00:00,12.8,12.8,17.239986964049107 + 07/15 09:10:00,12.8,12.8,17.218369904293195 + 07/15 09:20:00,12.8,12.8,17.189564743431008 + 07/15 09:30:00,12.8,12.8,17.17057384433741 + 07/15 09:40:00,12.8,12.8,17.152514091204453 + 07/15 09:50:00,12.8,12.8,17.134919394122464 + 07/15 10:00:00,12.8,12.8,17.117682414863393 + 07/15 10:10:00,12.8,12.8,17.101024966396929 + 07/15 10:20:00,12.8,12.8,17.084800370669308 + 07/15 10:30:00,12.8,12.8,17.06903866837981 + 07/15 10:40:00,12.8,12.8,17.053323984815735 + 07/15 10:50:00,12.8,12.8,17.036996000344609 + 07/15 11:00:00,12.8,12.8,17.019809608866994 + 07/15 11:10:00,12.8,12.8,17.00114612384031 + 07/15 11:20:00,12.8,12.8,16.981858912288879 + 07/15 11:30:00,12.8,12.8,16.96218494753164 + 07/15 11:40:00,12.8,12.8,16.943130561988757 + 07/15 11:50:00,12.8,12.8,16.92615785048317 + 07/15 12:00:00,12.8,12.8,16.911606129844289 + 07/15 12:10:00,12.8,12.8,16.90048088635657 + 07/15 12:20:00,12.8,12.8,16.89125090331646 + 07/15 12:30:00,12.8,12.8,16.883452027467969 + 07/15 12:40:00,12.8,12.8,16.87623904632951 + 07/15 12:50:00,12.8,12.8,16.868533300511485 + 07/15 13:00:00,12.8,12.8,16.8599332734887 + 07/15 13:10:00,12.8,12.8,16.850174786216948 + 07/15 13:20:00,12.8,12.8,16.84007304364048 + 07/15 13:30:00,12.8,12.8,16.82986076626714 + 07/15 13:40:00,12.8,12.8,16.82033491682632 + 07/15 13:50:00,12.8,12.8,16.812559882177344 + 07/15 14:00:00,12.8,12.8,16.806806420237615 + 07/15 14:10:00,12.8,12.8,16.80272925656315 + 07/15 14:20:00,12.8,12.8,16.800212051849188 + 07/15 14:30:00,12.8,12.8,16.798974759982135 + 07/15 14:40:00,12.8,12.8,16.79834288436006 + 07/15 14:50:00,12.8,12.8,16.797525625374545 + 07/15 15:00:00,12.8,12.8,16.796240735805779 + 07/15 15:10:00,12.8,12.8,16.794668834328655 + 07/15 15:20:00,12.8,12.8,16.792464527989453 + 07/15 15:30:00,12.8,12.8,16.789677546159397 + 07/15 15:40:00,12.8,12.8,16.786279767538774 + 07/15 15:50:00,12.8,12.8,16.782139166284325 + 07/15 16:00:00,12.8,12.8,16.777315117639405 + 07/15 16:10:00,12.8,12.8,16.7848408446662 + 07/15 16:15:00,12.8,12.8,16.78991164762609 + 07/15 16:20:00,12.8,12.8,16.78953535062962 + 07/15 16:30:00,12.8,12.8,16.78457219113751 + 07/15 16:40:00,12.8,12.8,16.781303490842228 + 07/15 16:50:00,12.8,12.8,16.780115179874114 + 07/15 17:00:00,12.8,12.8,16.781428844762247 + 07/15 17:10:00,12.8,12.8,18.545965230182845 + 07/15 17:20:00,12.8,12.8,18.767803238727816 + 07/15 17:30:00,12.8,12.8,18.8570709045731 + 07/15 17:40:00,12.8,12.8,18.928933639416266 + 07/15 17:50:00,12.8,12.8,18.98603629340365 + 07/15 18:00:00,12.8,12.8,19.03349656861991 + 07/15 18:10:00,12.8,12.8,19.086174040582845 + 07/15 18:20:00,12.8,12.8,19.118556653193769 + 07/15 18:30:00,12.8,12.8,19.14907991823452 + 07/15 18:40:00,12.8,12.8,19.17635523159259 + 07/15 18:50:00,12.8,12.8,19.204090434712346 + 07/15 19:00:00,12.8,12.8,19.225855250723467 + 07/15 19:10:00,12.8,12.8,19.24939593228259 + 07/15 19:20:00,12.8,12.8,19.273187119384504 + 07/15 19:30:00,12.8,12.8,19.292121706169099 + 07/15 19:40:00,12.8,12.8,19.31305862370331 + 07/15 19:50:00,12.8,12.8,19.33225588815241 + 07/15 20:00:00,12.8,12.8,19.351330468150136 + 07/15 20:10:00,12.8,12.8,19.34738227624598 + 07/15 20:20:00,12.8,12.8,19.364285974543735 + 07/15 20:30:00,12.8,12.8,19.380238316177548 + 07/15 20:40:00,12.8,12.8,19.395106139062123 + 07/15 20:50:00,12.8,12.8,19.409122074426706 + 07/15 21:00:00,12.8,12.8,19.42243297121366 + 07/15 21:10:00,12.8,12.8,19.43490185690871 + 07/15 21:20:00,12.8,12.8,19.446799061384274 + 07/15 21:30:00,12.8,12.8,19.45811781956955 + 07/15 21:40:00,12.8,12.8,19.468856974607698 + 07/15 21:50:00,12.8,12.8,19.479211602162676 + 07/15 22:00:00,12.8,12.8,19.48915359776865 + 07/15 22:10:00,12.8,12.8,19.49849312373924 + 07/15 22:20:00,12.8,12.8,19.507424879066936 + 07/15 22:30:00,12.8,12.8,19.515885946034396 + 07/15 22:40:00,12.8,12.8,19.524089616206895 + 07/15 22:50:00,12.8,12.8,19.531978458567328 + 07/15 23:00:00,12.8,12.8,19.53957589038388 + 07/15 23:10:00,12.8,12.8,19.546803321843688 + 07/15 23:20:00,12.8,12.8,19.553875077959384 + 07/15 23:30:00,12.8,12.8,19.56039022141199 + 07/15 23:40:00,12.8,12.8,19.565881579504173 + 07/15 23:50:00,12.8,12.8,19.5720395245246 + 07/15 24:00:00,12.8,12.8,19.577234057804057 + 07/16 00:10:00,12.8,12.8,19.58163393145538 + 07/16 00:20:00,12.8,12.8,19.587376181646044 + 07/16 00:30:00,12.8,12.8,19.591980124884086 + 07/16 00:40:00,12.8,12.8,19.598398050214507 + 07/16 00:50:00,12.8,12.8,19.60431360500469 + 07/16 01:00:00,12.8,12.8,19.609853538774279 + 07/16 01:10:00,12.8,12.8,19.616931012826947 + 07/16 01:20:00,12.8,12.8,19.623328607541269 + 07/16 01:30:00,12.8,12.8,19.629178800240884 + 07/16 01:40:00,12.8,12.8,19.636196522487766 + 07/16 01:50:00,12.8,12.8,19.64236400506758 + 07/16 02:00:00,12.8,12.8,19.648797101619186 + 07/16 02:10:00,12.8,12.8,19.653709912742536 + 07/16 02:20:00,12.8,12.8,19.66015789323817 + 07/16 02:30:00,12.8,12.8,19.66536307282192 + 07/16 02:40:00,12.8,12.8,19.670870305927307 + 07/16 02:50:00,12.8,12.8,19.67463428311065 + 07/16 03:00:00,12.8,12.8,19.680112264070844 + 07/16 03:10:00,12.8,12.8,19.684741725878309 + 07/16 03:20:00,12.8,12.8,19.690009668752017 + 07/16 03:30:00,12.8,12.8,19.693944098025605 + 07/16 03:40:00,12.8,12.8,19.6998905194097 + 07/16 03:50:00,12.8,12.8,19.704938549570799 + 07/16 04:00:00,12.8,12.8,19.71092655766971 + 07/16 04:10:00,12.8,12.8,19.71550041498034 + 07/16 04:20:00,12.8,12.8,19.721766366456749 + 07/16 04:30:00,12.8,12.8,19.726637181610984 + 07/16 04:40:00,12.8,12.8,19.731827580073614 + 07/16 04:50:00,12.8,12.8,19.73666395149304 + 07/16 05:00:00,12.8,12.8,19.739867615576743 + 07/16 05:10:00,12.8,12.8,19.74516628044939 + 07/16 05:20:00,12.8,12.8,19.749078715465104 + 07/16 05:30:00,12.8,12.8,19.75354278963802 + 07/16 05:40:00,12.8,12.8,19.756459321648366 + 07/16 05:50:00,12.8,12.8,19.76096233212157 + 07/16 06:00:00,12.8,12.8,19.763597842377579 + 07/16 06:10:00,12.8,12.8,19.78817845375762 + 07/16 06:20:00,12.8,12.8,19.788557785442728 + 07/16 06:30:00,12.8,12.8,19.789574138260137 + 07/16 06:40:00,12.8,12.8,19.789793054171516 + 07/16 06:50:00,12.8,12.8,19.789512072606585 + 07/16 07:00:00,12.8,12.8,19.7884076430625 + 07/16 07:10:00,12.8,12.8,18.39509167741543 + 07/16 07:20:00,12.8,12.8,18.213782805463159 + 07/16 07:30:00,12.8,12.8,18.144167407715643 + 07/16 07:40:00,12.8,12.8,18.086017966263346 + 07/16 07:50:00,12.8,12.8,18.039447617425688 + 07/16 08:00:00,12.8,12.8,17.998659003968766 + 07/16 08:10:00,12.8,12.8,17.961769415034767 + 07/16 08:20:00,12.8,12.8,17.918908567229957 + 07/16 08:30:00,12.8,12.8,17.886824029176638 + 07/16 08:40:00,12.8,12.8,17.856521325939455 + 07/16 08:50:00,12.8,12.8,17.82756720650812 + 07/16 09:00:00,12.8,12.8,17.7997369616052 + 07/16 09:10:00,12.8,12.8,17.77298905132919 + 07/16 09:20:00,12.8,12.8,17.7384322542769 + 07/16 09:30:00,12.8,12.8,17.71323244989846 + 07/16 09:40:00,12.8,12.8,17.68936311368067 + 07/16 09:50:00,12.8,12.8,17.667463546935666 + 07/16 10:00:00,12.8,12.8,17.647772879950904 + 07/16 10:10:00,12.8,12.8,17.63013979851739 + 07/16 10:20:00,12.8,12.8,17.614182695168546 + 07/16 10:30:00,12.8,12.8,17.599585965935249 + 07/16 10:40:00,12.8,12.8,17.58619154489803 + 07/16 10:50:00,12.8,12.8,17.57413561454722 + 07/16 11:00:00,12.8,12.8,17.563398713381234 + 07/16 11:10:00,12.8,12.8,17.553283612123154 + 07/16 11:20:00,12.8,12.8,17.54429201067666 + 07/16 11:30:00,12.8,12.8,17.536382263024849 + 07/16 11:40:00,12.8,12.8,17.52875465456249 + 07/16 11:50:00,12.8,12.8,17.520204015478546 + 07/16 12:00:00,12.8,12.8,17.51051694341823 + 07/16 12:10:00,12.8,12.8,17.50001958770261 + 07/16 12:20:00,12.8,12.8,17.488861496074777 + 07/16 12:30:00,12.8,12.8,17.4773266086334 + 07/16 12:40:00,12.8,12.8,17.466557816138974 + 07/16 12:50:00,12.8,12.8,17.457569116735188 + 07/16 13:00:00,12.8,12.8,17.45077876638971 + 07/16 13:10:00,12.8,12.8,17.446929463195845 + 07/16 13:20:00,12.8,12.8,17.44438187705778 + 07/16 13:30:00,12.8,12.8,17.44254349302707 + 07/16 13:40:00,12.8,12.8,17.440159472725655 + 07/16 13:50:00,12.8,12.8,17.435192444027846 + 07/16 14:00:00,12.8,12.8,17.42694425837109 + 07/16 14:10:00,12.8,12.8,17.414122818121727 + 07/16 14:20:00,12.8,12.8,17.400043941161156 + 07/16 14:30:00,12.8,12.8,17.385480729135549 + 07/16 14:40:00,12.8,12.8,17.37162640325331 + 07/16 14:50:00,12.8,12.8,17.360160519685708 + 07/16 15:00:00,12.8,12.8,17.3514808642805 + 07/16 15:10:00,12.8,12.8,18.767124293118188 + 07/16 15:20:00,12.8,12.8,18.918975893956163 + 07/16 15:30:00,12.8,12.8,18.980762817062084 + 07/16 15:40:00,12.8,12.8,19.029108126652358 + 07/16 15:50:00,12.8,12.8,19.066687674321977 + 07/16 16:00:00,12.8,12.8,19.097835157582926 + 07/16 16:10:00,12.8,12.8,19.124031441819345 + 07/16 16:20:00,12.8,12.8,19.1559668656836 + 07/16 16:30:00,12.8,12.8,19.176991925203617 + 07/16 16:40:00,12.8,12.8,19.196542590296035 + 07/16 16:50:00,12.8,12.8,19.215388394530014 + 07/16 17:00:00,12.8,12.8,19.233768723308356 + 07/16 17:10:00,12.8,12.8,19.25179051272087 + 07/16 17:20:00,12.8,12.8,19.286664296047058 + 07/16 17:30:00,12.8,12.8,19.30356779453705 + 07/16 17:40:00,12.8,12.8,19.31881748266182 + 07/16 17:50:00,12.8,12.8,19.334632005729398 + 07/16 18:00:00,12.8,12.8,19.349067536020966 + 07/16 18:10:00,12.8,12.8,19.363177815760126 + 07/16 18:20:00,12.8,12.8,19.378216712181734 + 07/16 18:30:00,12.8,12.8,19.392255064200798 + 07/16 18:40:00,12.8,12.8,19.40576347421446 + 07/16 18:50:00,12.8,12.8,19.420230219998407 + 07/16 19:00:00,12.8,12.8,19.433986141167784 + 07/16 19:10:00,12.8,12.8,19.447334829966498 + 07/16 19:20:00,12.8,12.8,19.460439676875926 + 07/16 19:30:00,12.8,12.8,19.47334131111726 + 07/16 19:40:00,12.8,12.8,19.48595045241144 + 07/16 19:50:00,12.8,12.8,19.498212290452707 + 07/16 20:00:00,12.8,12.8,19.510030715345139 + 07/16 20:10:00,12.8,12.8,19.4992571935948 + 07/16 20:20:00,12.8,12.8,19.5095137563305 + 07/16 20:30:00,12.8,12.8,19.518439155988703 + 07/16 20:40:00,12.8,12.8,19.526369309728929 + 07/16 20:50:00,12.8,12.8,19.533346080637427 + 07/16 21:00:00,12.8,12.8,19.539474879335534 + 07/16 21:10:00,12.8,12.8,19.544726801486797 + 07/16 21:20:00,12.8,12.8,19.549905998888798 + 07/16 21:30:00,12.8,12.8,19.555361316221626 + 07/16 21:40:00,12.8,12.8,19.561095650661274 + 07/16 21:50:00,12.8,12.8,19.567075954992729 + 07/16 22:00:00,12.8,12.8,19.573270911376654 + 07/16 22:10:00,12.8,12.8,19.579393634762938 + 07/16 22:20:00,12.8,12.8,19.586691397724587 + 07/16 22:30:00,12.8,12.8,19.59333223018802 + 07/16 22:40:00,12.8,12.8,19.600278146932657 + 07/16 22:50:00,12.8,12.8,19.607069336191349 + 07/16 23:00:00,12.8,12.8,19.613878071204888 + 07/16 23:10:00,12.8,12.8,19.620325332636005 + 07/16 23:20:00,12.8,12.8,19.627229588443215 + 07/16 23:30:00,12.8,12.8,19.633766998000227 + 07/16 23:40:00,12.8,12.8,19.63901849593205 + 07/16 23:50:00,12.8,12.8,19.645913447088686 + 07/16 24:00:00,12.8,12.8,19.651517084316216 + 07/17 00:10:00,12.8,12.8,19.65715383470684 + 07/17 00:20:00,12.8,12.8,19.662199898406326 + 07/17 00:30:00,12.8,12.8,19.665579932549716 + 07/17 00:40:00,12.8,12.8,19.671111504361613 + 07/17 00:50:00,12.8,12.8,19.67532717633322 + 07/17 01:00:00,12.8,12.8,19.680453429921739 + 07/17 01:10:00,12.8,12.8,19.684008866228255 + 07/17 01:20:00,12.8,12.8,19.689604983076625 + 07/17 01:30:00,12.8,12.8,19.69410096559809 + 07/17 01:40:00,12.8,12.8,19.699182240273794 + 07/17 01:50:00,12.8,12.8,19.70414641328226 + 07/17 02:00:00,12.8,12.8,19.707637943079438 + 07/17 02:10:00,12.8,12.8,19.713422331020799 + 07/17 02:20:00,12.8,12.8,19.717979916826076 + 07/17 02:30:00,12.8,12.8,19.723327038426846 + 07/17 02:40:00,12.8,12.8,19.72723307433641 + 07/17 02:50:00,12.8,12.8,19.732511957160797 + 07/17 03:00:00,12.8,12.8,19.738332713954365 + 07/17 03:10:00,12.8,12.8,19.74276795259957 + 07/17 03:20:00,12.8,12.8,19.747970239148708 + 07/17 03:30:00,12.8,12.8,19.752532477581597 + 07/17 03:40:00,12.8,12.8,19.757103454320807 + 07/17 03:50:00,12.8,12.8,19.761445072773549 + 07/17 04:00:00,12.8,12.8,19.76556817762816 + 07/17 04:10:00,12.8,12.8,19.76951167151286 + 07/17 04:20:00,12.8,12.8,19.773349314634986 + 07/17 04:30:00,12.8,12.8,19.777332674109475 + 07/17 04:40:00,12.8,12.8,19.781397265325368 + 07/17 04:50:00,12.8,12.8,19.785603411030555 + 07/17 05:00:00,12.8,12.8,19.789999201656476 + 07/17 05:10:00,12.8,12.8,19.794880776568787 + 07/17 05:20:00,12.8,12.8,19.799729724385803 + 07/17 05:30:00,12.8,12.8,19.804267734780376 + 07/17 05:40:00,12.8,12.8,19.808524891783713 + 07/17 05:50:00,12.8,12.8,19.812182795883549 + 07/17 06:00:00,12.8,12.8,19.81475734768363 + 07/17 06:10:00,12.8,12.8,17.82807062439676 + 07/17 06:20:00,12.8,12.8,17.575172417822516 + 07/17 06:30:00,12.8,12.8,17.484915232084938 + 07/17 06:40:00,12.8,12.8,17.41103642143011 + 07/17 06:50:00,12.8,12.8,17.35381677728159 + 07/17 07:00:00,12.8,12.8,17.30474201768385 + 07/17 07:05:00,12.8,12.8,15.809759147729592 + 07/17 07:10:00,12.8,12.8,15.816348172311992 + 07/17 07:20:00,12.8,12.8,15.584654403217665 + 07/17 07:30:00,12.8,12.8,15.469296163311455 + 07/17 07:40:00,12.8,12.8,15.377361589701854 + 07/17 07:50:00,12.8,12.8,15.298459482348445 + 07/17 08:00:00,12.8,12.8,15.229056546013848 + 07/17 08:03:19,12.8,12.8,15.141374013308307 + 07/17 08:06:40,12.8,12.8,15.140655345433402 + 07/17 08:10:00,12.8,12.8,15.140783691758545 + 07/17 08:20:00,12.8,12.8,15.074144552407019 + 07/17 08:30:00,12.8,12.8,15.020203329592939 + 07/17 08:40:00,12.8,12.8,14.969834320769515 + 07/17 08:50:00,12.8,12.8,14.922666108125008 + 07/17 09:00:00,12.8,12.8,14.878466630506189 + 07/17 09:10:00,12.8,12.8,14.83664246011381 + 07/17 09:20:00,12.8,12.8,14.786762434319004 + 07/17 09:30:00,12.8,12.8,14.749482970289697 + 07/17 09:40:00,12.8,12.8,14.714588367469223 + 07/17 09:50:00,12.8,12.8,14.682151541260256 + 07/17 10:00:00,12.8,12.8,14.6523776014463 + 07/17 10:10:00,12.8,12.8,14.625288891661795 + 07/17 10:20:00,12.8,12.8,14.596829025809886 + 07/17 10:30:00,12.8,12.8,14.573801199721095 + 07/17 10:40:00,12.8,12.8,14.552138011001637 + 07/17 10:50:00,12.8,12.8,14.530893095360542 + 07/17 11:00:00,12.8,12.8,14.509691411189252 + 07/17 11:10:00,12.8,12.8,14.488388084247749 + 07/17 11:20:00,12.8,12.8,14.477152547154212 + 07/17 11:30:00,12.8,12.8,14.457013324909175 + 07/17 11:40:00,12.8,12.8,14.43833562099166 + 07/17 11:50:00,12.8,12.8,14.422922276848697 + 07/17 12:00:00,12.8,12.8,14.410870189120466 + 07/17 12:10:00,12.8,12.8,14.401823923870616 + 07/17 12:20:00,12.8,12.8,14.385345695371515 + 07/17 12:30:00,12.8,12.8,14.379994645282365 + 07/17 12:40:00,12.8,12.8,14.374192067092796 + 07/17 12:50:00,12.8,12.8,14.36462242407817 + 07/17 13:00:00,12.8,12.8,14.350374320202349 + 07/17 13:10:00,12.8,12.8,14.332136345217677 + 07/17 13:20:00,12.8,12.8,14.314997354229196 + 07/17 13:30:00,12.8,12.8,14.292899826542302 + 07/17 13:40:00,12.8,12.8,14.27100620473285 + 07/17 13:50:00,12.8,12.8,14.251402437124697 + 07/17 14:00:00,12.8,12.8,14.234571456744215 + 07/17 14:10:00,12.8,12.8,14.220005027046904 + 07/17 14:20:00,12.8,12.8,14.210650721488538 + 07/17 14:30:00,12.8,12.8,14.198910080353534 + 07/17 14:40:00,12.8,12.8,14.187934037496305 + 07/17 14:50:00,12.8,12.8,14.177864606590298 + 07/17 15:00:00,12.8,12.8,14.168517011665978 + 07/17 15:05:00,12.8,12.8,16.32032421487807 + 07/17 15:10:00,12.8,12.8,16.31594203274992 + 07/17 15:20:00,12.8,12.8,16.567783842964376 + 07/17 15:30:00,12.8,12.8,16.6655330546508 + 07/17 15:40:00,12.8,12.8,16.738270837786677 + 07/17 15:50:00,12.8,12.8,16.796072476229864 + 07/17 16:00:00,12.8,12.8,16.84152050791419 + 07/17 16:10:00,12.8,12.8,16.90533179603068 + 07/17 16:20:00,12.8,12.8,16.957733563675743 + 07/17 16:30:00,12.8,12.8,16.987288464229274 + 07/17 16:40:00,12.8,12.8,17.014022480229025 + 07/17 16:50:00,12.8,12.8,17.038884596118387 + 07/17 17:00:00,12.8,12.8,17.062198291972654 + 07/17 17:10:00,12.8,12.8,17.097698576824305 + 07/17 17:15:00,12.8,12.8,17.1256642224567 + 07/17 17:20:00,12.8,12.8,17.125245453692835 + 07/17 17:30:00,12.8,12.8,17.145124389989847 + 07/17 17:40:00,12.8,12.8,17.164495091826688 + 07/17 17:50:00,12.8,12.8,17.182815373114744 + 07/17 18:00:00,12.8,12.8,17.200700223097426 + 07/17 18:10:00,12.8,12.8,17.21838547654912 + 07/17 18:20:00,12.8,12.8,17.23563651855468 + 07/17 18:30:00,12.8,12.8,17.252538836902575 + 07/17 18:40:00,12.8,12.8,17.26889947941156 + 07/17 18:50:00,12.8,12.8,17.28439955191178 + 07/17 19:00:00,12.8,12.8,17.29902400362932 + 07/17 19:10:00,12.8,12.8,17.32571254162626 + 07/17 19:20:00,12.8,12.8,17.339556372896057 + 07/17 19:30:00,12.8,12.8,17.352325296455676 + 07/17 19:40:00,12.8,12.8,17.36449044624405 + 07/17 19:50:00,12.8,12.8,17.375927670462816 + 07/17 20:00:00,12.8,12.8,17.386904118520623 + 07/17 20:10:00,12.8,12.8,17.375685740018043 + 07/17 20:20:00,12.8,12.8,17.390674972861868 + 07/17 20:30:00,12.8,12.8,17.4015220095974 + 07/17 20:40:00,12.8,12.8,17.41231598068717 + 07/17 20:50:00,12.8,12.8,17.423331696480646 + 07/17 21:00:00,12.8,12.8,17.43436211625555 + 07/17 21:10:00,12.8,12.8,17.4451815354626 + 07/17 21:20:00,12.8,12.8,17.455849817927523 + 07/17 21:30:00,12.8,12.8,17.466306717748866 + 07/17 21:40:00,12.8,12.8,17.476517450783665 + 07/17 21:50:00,12.8,12.8,17.48650343704513 + 07/17 22:00:00,12.8,12.8,17.496506090870548 + 07/17 22:10:00,12.8,12.8,18.864180524542947 + 07/17 22:20:00,12.8,12.8,19.013984855515888 + 07/17 22:30:00,12.8,12.8,19.081184419355468 + 07/17 22:40:00,12.8,12.8,19.13499272890771 + 07/17 22:50:00,12.8,12.8,19.178575262490477 + 07/17 23:00:00,12.8,12.8,19.215403395140059 + 07/17 23:10:00,12.8,12.8,19.247734129646003 + 07/17 23:20:00,12.8,12.8,19.275555010138758 + 07/17 23:30:00,12.8,12.8,19.30128735670798 + 07/17 23:40:00,12.8,12.8,19.324722553888934 + 07/17 23:50:00,12.8,12.8,19.346718770297409 + 07/17 24:00:00,12.8,12.8,19.367362591470135 + 07/18 00:10:00,12.8,12.8,19.386605974455134 + 07/18 00:20:00,12.8,12.8,19.40445889816268 + 07/18 00:30:00,12.8,12.8,19.421284585528068 + 07/18 00:40:00,12.8,12.8,19.437190295061478 + 07/18 00:50:00,12.8,12.8,19.452203992092554 + 07/18 01:00:00,12.8,12.8,19.466424889979114 + 07/18 01:10:00,12.8,12.8,19.480018907258434 + 07/18 01:20:00,12.8,12.8,19.49300393669442 + 07/18 01:30:00,12.8,12.8,19.505558147403904 + 07/18 01:40:00,12.8,12.8,19.51766574051352 + 07/18 01:50:00,12.8,12.8,19.52936417877178 + 07/18 02:00:00,12.8,12.8,19.540671562481888 + 07/18 02:10:00,12.8,12.8,19.55162184209612 + 07/18 02:20:00,12.8,12.8,19.56225943730166 + 07/18 02:30:00,12.8,12.8,19.572475023372087 + 07/18 02:40:00,12.8,12.8,19.583457724539099 + 07/18 02:50:00,12.8,12.8,19.592643497449147 + 07/18 03:00:00,12.8,12.8,19.60168924641612 + 07/18 03:10:00,12.8,12.8,19.60991703239073 + 07/18 03:20:00,12.8,12.8,19.61807670946541 + 07/18 03:30:00,12.8,12.8,19.6262206732034 + 07/18 03:40:00,12.8,12.8,19.634347598134988 + 07/18 03:50:00,12.8,12.8,19.6424104042418 + 07/18 04:00:00,12.8,12.8,19.650686301235305 + 07/18 04:10:00,12.8,12.8,19.659533083924584 + 07/18 04:20:00,12.8,12.8,19.66794382594767 + 07/18 04:30:00,12.8,12.8,19.67580341933468 + 07/18 04:40:00,12.8,12.8,19.683042433645018 + 07/18 04:50:00,12.8,12.8,19.689855975720684 + 07/18 05:00:00,12.8,12.8,19.696360058418457 + 07/18 05:10:00,12.8,12.8,19.702204032376839 + 07/18 05:20:00,12.8,12.8,19.707851204321693 + 07/18 05:30:00,12.8,12.8,19.713345694229476 + 07/18 05:40:00,12.8,12.8,19.718644955853909 + 07/18 05:50:00,12.8,12.8,19.723564963518436 + 07/18 06:00:00,12.8,12.8,19.727623176382595 + 07/18 06:10:00,12.8,12.8,17.740049606681244 + 07/18 06:20:00,12.8,12.8,17.486799853152538 + 07/18 06:30:00,12.8,12.8,17.398546491995118 + 07/18 06:40:00,12.8,12.8,17.326991646000459 + 07/18 06:50:00,12.8,12.8,17.272770369066053 + 07/18 07:00:00,12.8,12.8,17.22699234708543 + 07/18 07:05:00,12.8,12.8,15.733774501461058 + 07/18 07:10:00,12.8,12.8,15.74036038264408 + 07/18 07:15:00,12.8,12.8,15.510101618048085 + 07/18 07:20:00,12.8,12.8,15.508346465067419 + 07/18 07:30:00,12.8,12.8,15.402638253719994 + 07/18 07:40:00,12.8,12.8,15.316576858561687 + 07/18 07:50:00,12.8,12.8,15.24210138725102 + 07/18 08:00:00,12.8,12.8,15.176627608657587 + 07/18 08:03:19,12.8,12.8,15.092070517996538 + 07/18 08:06:40,12.8,12.8,15.091688542751634 + 07/18 08:10:00,12.8,12.8,15.091625655783153 + 07/18 08:20:00,12.8,12.8,15.027668146274595 + 07/18 08:30:00,12.8,12.8,14.975732657866623 + 07/18 08:40:00,12.8,12.8,14.926899456493294 + 07/18 08:50:00,12.8,12.8,14.881160394158352 + 07/18 09:00:00,12.8,12.8,14.838406996733593 + 07/18 09:10:00,12.8,12.8,14.79825952514069 + 07/18 09:20:00,12.8,12.8,14.74999505652775 + 07/18 09:30:00,12.8,12.8,14.714250704024473 + 07/18 09:40:00,12.8,12.8,14.680493539476914 + 07/18 09:50:00,12.8,12.8,14.648333437937632 + 07/18 10:00:00,12.8,12.8,14.617682638098394 + 07/18 10:10:00,12.8,12.8,14.588941333983226 + 07/18 10:20:00,12.8,12.8,14.557437375929869 + 07/18 10:30:00,12.8,12.8,14.529828137865139 + 07/18 10:40:00,12.8,12.8,14.50264316228254 + 07/18 10:50:00,12.8,12.8,14.47575356843711 + 07/18 11:00:00,12.8,12.8,14.448437633674976 + 07/18 11:10:00,12.8,12.8,14.420271526420337 + 07/18 11:20:00,12.8,12.8,14.404056232341809 + 07/18 11:30:00,12.8,12.8,14.380819529032399 + 07/18 11:40:00,12.8,12.8,14.359633300518042 + 07/18 11:50:00,12.8,12.8,14.3406938931386 + 07/18 12:00:00,12.8,12.8,14.323669391406306 + 07/18 12:10:00,12.8,12.8,14.308756567244839 + 07/18 12:20:00,12.8,12.8,14.285263339456158 + 07/18 12:30:00,12.8,12.8,14.271921836863755 + 07/18 12:40:00,12.8,12.8,14.260020516131437 + 07/18 12:50:00,12.8,12.8,14.250407839044672 + 07/18 13:00:00,12.8,12.8,14.24341460680475 + 07/18 13:10:00,12.8,12.8,14.238784480011685 + 07/18 13:20:00,12.8,12.8,14.23959712088868 + 07/18 13:30:00,12.8,12.8,14.238521929981607 + 07/18 13:40:00,12.8,12.8,14.23715115990763 + 07/18 13:50:00,12.8,12.8,14.232999004741754 + 07/18 14:00:00,12.8,12.8,14.225286611279659 + 07/18 14:10:00,12.8,12.8,14.214320469534549 + 07/18 14:20:00,12.8,12.8,14.204654976230059 + 07/18 14:30:00,12.8,12.8,14.190164097256682 + 07/18 14:40:00,12.8,12.8,14.17555464551817 + 07/18 14:50:00,12.8,12.8,14.16249716886589 + 07/18 15:00:00,12.8,12.8,14.151342649729795 + 07/18 15:10:00,12.8,12.8,16.293096571864618 + 07/18 15:20:00,12.8,12.8,16.547910463583805 + 07/18 15:30:00,12.8,12.8,16.645181343381453 + 07/18 15:40:00,12.8,12.8,16.722068884422546 + 07/18 15:50:00,12.8,12.8,16.781983144640909 + 07/18 16:00:00,12.8,12.8,16.831853370335418 + 07/18 16:10:00,12.8,12.8,16.89793142298375 + 07/18 16:20:00,12.8,12.8,16.953241220703466 + 07/18 16:30:00,12.8,12.8,16.984946618804526 + 07/18 16:40:00,12.8,12.8,17.01382426364782 + 07/18 16:50:00,12.8,12.8,17.04084944063738 + 07/18 17:00:00,12.8,12.8,17.066362532509716 + 07/18 17:10:00,12.8,12.8,17.10218072786421 + 07/18 17:15:00,12.8,12.8,17.130778777408094 + 07/18 17:20:00,12.8,12.8,17.130395809793567 + 07/18 17:30:00,12.8,12.8,17.151401115260449 + 07/18 17:40:00,12.8,12.8,17.17202968127009 + 07/18 17:50:00,12.8,12.8,17.19137132208845 + 07/18 18:00:00,12.8,12.8,17.209933128494606 + 07/18 18:10:00,12.8,12.8,17.230599976638819 + 07/18 18:20:00,12.8,12.8,17.251280120858949 + 07/18 18:30:00,12.8,12.8,17.272267405365747 + 07/18 18:40:00,12.8,12.8,17.29330564108208 + 07/18 18:50:00,12.8,12.8,17.31378917370349 + 07/18 19:00:00,12.8,12.8,17.333414898206529 + 07/18 19:10:00,12.8,12.8,17.36362506394463 + 07/18 19:20:00,12.8,12.8,17.38056773849585 + 07/18 19:30:00,12.8,12.8,17.395807887039234 + 07/18 19:40:00,12.8,12.8,17.410007572467035 + 07/18 19:50:00,12.8,12.8,17.423540740738884 + 07/18 20:00:00,12.8,12.8,17.436671312150769 + 07/18 20:10:00,12.8,12.8,17.42671356974085 + 07/18 20:20:00,12.8,12.8,17.442323721900214 + 07/18 20:30:00,12.8,12.8,17.452815949713569 + 07/18 20:40:00,12.8,12.8,17.46241606019276 + 07/18 20:50:00,12.8,12.8,17.471333461165075 + 07/18 21:00:00,12.8,12.8,17.47955959784595 + 07/18 21:10:00,12.8,12.8,17.487295905918818 + 07/18 21:20:00,12.8,12.8,17.494523981016284 + 07/18 21:30:00,12.8,12.8,17.50147883133722 + 07/18 21:40:00,12.8,12.8,17.508224190535203 + 07/18 21:50:00,12.8,12.8,17.514748666198924 + 07/18 22:00:00,12.8,12.8,17.52108857141461 + 07/18 22:10:00,12.8,12.8,18.885258612028303 + 07/18 22:20:00,12.8,12.8,19.035094459018546 + 07/18 22:30:00,12.8,12.8,19.101100944178478 + 07/18 22:40:00,12.8,12.8,19.154916348250106 + 07/18 22:50:00,12.8,12.8,19.197166812427427 + 07/18 23:00:00,12.8,12.8,19.23164595779933 + 07/18 23:10:00,12.8,12.8,19.26116352021284 + 07/18 23:20:00,12.8,12.8,19.28760986357549 + 07/18 23:30:00,12.8,12.8,19.311668037291335 + 07/18 23:40:00,12.8,12.8,19.333936369874306 + 07/18 23:50:00,12.8,12.8,19.3546410718455 + 07/18 24:00:00,12.8,12.8,19.373990221027598 + 07/19 00:10:00,12.8,12.8,19.391495109768806 + 07/19 00:20:00,12.8,12.8,19.409017567822063 + 07/19 00:30:00,12.8,12.8,19.42488923861252 + 07/19 00:40:00,12.8,12.8,19.440184314877834 + 07/19 00:50:00,12.8,12.8,19.453554466688816 + 07/19 01:00:00,12.8,12.8,19.46758096622211 + 07/19 01:10:00,12.8,12.8,19.480318189929336 + 07/19 01:20:00,12.8,12.8,19.493144827685229 + 07/19 01:30:00,12.8,12.8,19.504627814623704 + 07/19 01:40:00,12.8,12.8,19.517395083826437 + 07/19 01:50:00,12.8,12.8,19.529208109676959 + 07/19 02:00:00,12.8,12.8,19.541388174440905 + 07/19 02:10:00,12.8,12.8,19.55218179130702 + 07/19 02:20:00,12.8,12.8,19.564218797982197 + 07/19 02:30:00,12.8,12.8,19.57496524359973 + 07/19 02:40:00,12.8,12.8,19.58580492806255 + 07/19 02:50:00,12.8,12.8,19.596167165700906 + 07/19 03:00:00,12.8,12.8,19.604926548485126 + 07/19 03:10:00,12.8,12.8,19.615299874924199 + 07/19 03:20:00,12.8,12.8,19.62421972989288 + 07/19 03:30:00,12.8,12.8,19.63336164467775 + 07/19 03:40:00,12.8,12.8,19.64207774754913 + 07/19 03:50:00,12.8,12.8,19.64913101563352 + 07/19 04:00:00,12.8,12.8,19.658008392281585 + 07/19 04:10:00,12.8,12.8,19.665551689547546 + 07/19 04:20:00,12.8,12.8,19.673527220749315 + 07/19 04:30:00,12.8,12.8,19.68125212693939 + 07/19 04:40:00,12.8,12.8,19.687497839239499 + 07/19 04:50:00,12.8,12.8,19.695812687181737 + 07/19 05:00:00,12.8,12.8,19.702803652427148 + 07/19 05:10:00,12.821021021021022,12.821021021021022,19.710208213995157 + 07/19 05:20:00,12.842042042042042,12.842042042042042,19.715864370560646 + 07/19 05:30:00,12.863063063063063,12.863063063063063,19.723084654512648 + 07/19 05:40:00,12.884084084084084,12.884084084084084,19.728943213131495 + 07/19 05:50:00,12.905105105105106,12.905105105105106,19.73370586017966 + 07/19 06:00:00,12.926126126126127,12.926126126126127,19.738765803186604 + 07/19 06:10:00,12.905105105105106,12.905105105105106,17.751435534035417 + 07/19 06:15:00,12.884084084084084,12.884084084084084,17.495092202783036 + 07/19 06:20:00,12.884084084084084,12.884084084084084,17.500049405927315 + 07/19 06:30:00,12.863063063063063,12.863063063063063,17.4086207836728 + 07/19 06:40:00,12.842042042042042,12.842042042042042,17.33705652625933 + 07/19 06:50:00,12.821021021021022,12.821021021021022,17.28377712810641 + 07/19 07:00:00,12.8,12.8,17.239421600742824 + 07/19 07:05:00,12.8,12.8,15.750153246167188 + 07/19 07:10:00,12.8,12.8,15.756109358558902 + 07/19 07:15:00,12.8,12.8,15.53015492946857 + 07/19 07:20:00,12.8,12.8,15.528384176542989 + 07/19 07:30:00,12.8,12.8,15.427016524800328 + 07/19 07:40:00,12.8,12.8,15.345538229310045 + 07/19 07:50:00,12.8,12.8,15.275836262776212 + 07/19 08:00:00,12.8,12.8,15.215279339428458 + 07/19 08:03:19,12.8,12.8,15.136269290119142 + 07/19 08:06:40,12.8,12.8,15.135796535275347 + 07/19 08:10:00,12.8,12.8,15.13581995333688 + 07/19 08:20:00,12.8,12.8,15.078037852696858 + 07/19 08:30:00,12.8,12.8,15.033296361175987 + 07/19 08:40:00,12.8,12.8,14.99248063702527 + 07/19 08:50:00,12.8,12.8,14.955048055379255 + 07/19 09:00:00,12.8,12.8,14.920680494827759 + 07/19 09:10:00,12.8,12.8,14.888739210921378 + 07/19 09:20:00,12.8,12.8,14.848412940742425 + 07/19 09:30:00,12.8,12.8,14.820277265674989 + 07/19 09:40:00,12.8,12.8,14.79370305693811 + 07/19 09:50:00,12.8,12.8,14.768133460096493 + 07/19 10:00:00,12.8,12.8,14.743417679263576 + 07/19 10:10:00,12.8,12.8,14.7193409650358 + 07/19 10:20:00,12.8,12.8,14.69243074301645 + 07/19 10:30:00,12.8,12.8,14.669587394317026 + 07/19 10:40:00,12.8,12.8,14.64697026184585 + 07/19 10:50:00,12.8,12.8,14.62390493051715 + 07/19 11:00:00,12.8,12.8,14.600202159034894 + 07/19 11:10:00,12.8,12.8,14.575845758938405 + 07/19 11:20:00,12.8,12.8,14.560681115685896 + 07/19 11:30:00,12.8,12.8,14.535842811677624 + 07/19 11:40:00,12.8,12.8,14.511054897159207 + 07/19 11:50:00,12.8,12.8,14.48695904677982 + 07/19 12:00:00,12.8,12.8,14.463689130134437 + 07/19 12:10:00,12.8,12.8,14.441115959482883 + 07/19 12:20:00,12.8,12.8,14.409454060783132 + 07/19 12:30:00,12.8,12.8,14.387704580576124 + 07/19 12:40:00,12.8,12.8,14.366857909287163 + 07/19 12:50:00,12.8,12.8,14.347368993528145 + 07/19 13:00:00,12.8,12.8,14.329465738647297 + 07/19 13:10:00,12.8,12.8,14.31355125430797 + 07/19 13:20:00,12.8,12.8,14.302422916364752 + 07/19 13:30:00,12.8,12.8,14.288906074525258 + 07/19 13:40:00,12.8,12.8,14.276278475116918 + 07/19 13:50:00,12.8,12.8,14.264194106388845 + 07/19 14:00:00,12.8,12.8,14.252514076516002 + 07/19 14:10:00,12.8,12.8,14.241093130638653 + 07/19 14:20:00,12.8,12.8,14.23355985154116 + 07/19 14:30:00,12.8,12.8,14.222876039246034 + 07/19 14:40:00,12.8,12.8,14.212543708836363 + 07/19 14:50:00,12.8,12.8,14.202600357938144 + 07/19 15:00:00,12.8,12.8,14.192941475880101 + 07/19 15:05:00,12.8,12.8,16.34575212962909 + 07/19 15:10:00,12.8,12.8,16.340058539959153 + 07/19 15:20:00,12.8,12.8,16.592505513750156 + 07/19 15:30:00,12.8,12.8,16.691022301047064 + 07/19 15:40:00,12.8,12.8,16.76075303648044 + 07/19 15:50:00,12.8,12.8,16.814730298987184 + 07/19 16:00:00,12.8,12.8,16.85858681656658 + 07/19 16:10:00,12.8,12.8,16.9231452097046 + 07/19 16:20:00,12.8,12.8,16.97689875282637 + 07/19 16:30:00,12.8,12.8,17.007702408193987 + 07/19 16:40:00,12.8,12.8,17.035264424184818 + 07/19 16:50:00,12.8,12.8,17.060291885188265 + 07/19 17:00:00,12.8,12.8,17.083183650249919 + 07/19 17:10:00,12.8,12.8,17.11823869633032 + 07/19 17:15:00,12.8,12.8,17.145501516760548 + 07/19 17:20:00,12.8,12.8,17.14510680735488 + 07/19 17:30:00,12.8,12.8,17.16432879433658 + 07/19 17:40:00,12.8,12.8,17.18323692510932 + 07/19 17:50:00,12.8,12.8,17.201339259228779 + 07/19 18:00:00,12.8,12.8,17.219293761379399 + 07/19 18:10:00,12.8,12.8,17.2366558515436 + 07/19 18:20:00,12.8,12.8,17.25382722467705 + 07/19 18:30:00,12.8,12.8,17.270823559901787 + 07/19 18:40:00,12.8,12.8,17.287602079043589 + 07/19 18:50:00,12.8,12.8,17.304095291759574 + 07/19 19:00:00,12.8,12.8,17.3202693584967 + 07/19 19:10:00,12.8,12.8,17.348832964194778 + 07/19 19:20:00,12.8,12.8,17.364865617343033 + 07/19 19:30:00,12.8,12.8,17.380022291578827 + 07/19 19:40:00,12.8,12.8,17.394677243048809 + 07/19 19:50:00,12.8,12.8,17.408893810514408 + 07/19 20:00:00,12.8,12.8,17.422793450812497 + 07/19 20:10:00,12.8,12.8,17.413774149086394 + 07/19 20:20:00,12.8,12.8,17.430476337693628 + 07/19 20:30:00,12.8,12.8,17.442433932117014 + 07/19 20:40:00,12.8,12.8,17.453768171670867 + 07/19 20:50:00,12.8,12.8,17.464704486064144 + 07/19 21:00:00,12.8,12.8,17.475255649697194 + 07/19 21:10:00,12.8,12.8,17.485210099246737 + 07/19 21:20:00,12.8,12.8,17.4946684757944 + 07/19 21:30:00,12.8,12.8,17.50353331518765 + 07/19 21:40:00,12.8,12.8,17.511923374515896 + 07/19 21:50:00,12.8,12.8,17.51984705121515 + 07/19 22:00:00,12.8,12.8,17.527471424287 + 07/19 22:05:00,12.8,12.8,18.897459407832103 + 07/19 22:10:00,12.8,12.8,18.895411681653905 + 07/19 22:20:00,12.8,12.8,19.044789444078984 + 07/19 22:30:00,12.8,12.8,19.11318962537828 + 07/19 22:40:00,12.8,12.8,19.16710719464635 + 07/19 22:50:00,12.8,12.8,19.212097221697669 + 07/19 23:00:00,12.8,12.8,19.248153027138288 + 07/19 23:10:00,12.8,12.8,19.280880535262609 + 07/19 23:20:00,12.8,12.8,19.309895736973126 + 07/19 23:30:00,12.8,12.8,19.336090955966165 + 07/19 23:40:00,12.8,12.8,19.360151247363534 + 07/19 23:50:00,12.8,12.8,19.382243216553254 + 07/19 24:00:00,12.8,12.8,19.40270053262395 + 07/20 00:10:00,12.8,12.8,19.421739885336217 + 07/20 00:20:00,12.8,12.8,19.439324051568286 + 07/20 00:30:00,12.8,12.8,19.45588107957455 + 07/20 00:40:00,12.8,12.8,19.47050691346913 + 07/20 00:50:00,12.8,12.8,19.485819651367593 + 07/20 01:00:00,12.8,12.8,19.49950354395334 + 07/20 01:10:00,12.8,12.8,19.512924546053048 + 07/20 01:20:00,12.8,12.8,19.52520174295581 + 07/20 01:30:00,12.8,12.8,19.53560660154143 + 07/20 01:40:00,12.8,12.8,19.547004968798704 + 07/20 01:50:00,12.8,12.8,19.556929259717088 + 07/20 02:00:00,12.8,12.8,19.566918281571775 + 07/20 02:10:00,12.8,12.8,19.576204655690526 + 07/20 02:20:00,12.8,12.8,19.584301486390037 + 07/20 02:30:00,12.8,12.8,19.594332038344488 + 07/20 02:40:00,12.8,12.8,19.60339915608683 + 07/20 02:50:00,12.8,12.8,19.613181580796117 + 07/20 03:00:00,12.8,12.8,19.622964422210595 + 07/20 03:10:00,12.8,12.8,19.631819951613225 + 07/20 03:20:00,12.8,12.8,19.64263541656908 + 07/20 03:30:00,12.8,12.8,19.652044704451943 + 07/20 03:40:00,12.8,12.8,19.661817608677649 + 07/20 03:50:00,12.8,12.8,19.671005469358226 + 07/20 04:00:00,12.8,12.8,19.6785854679465 + 07/20 04:10:00,12.8,12.8,19.688049599057956 + 07/20 04:20:00,12.8,12.8,19.695706969921017 + 07/20 04:30:00,12.8,12.8,19.703418248366487 + 07/20 04:40:00,12.8,12.8,19.710385891555658 + 07/20 04:50:00,12.8,12.8,19.716958051085208 + 07/20 05:00:00,12.8,12.8,19.721700197129043 + 07/20 05:10:00,12.8,12.8,19.728127412238739 + 07/20 05:20:00,12.8,12.8,19.732988472081197 + 07/20 05:30:00,12.8,12.8,19.737212332101814 + 07/20 05:40:00,12.8,12.8,19.742505284792459 + 07/20 05:50:00,12.8,12.8,19.746421035395707 + 07/20 06:00:00,12.8,12.8,19.748712897199114 + 07/20 06:10:00,12.8,12.8,17.76170055208569 + 07/20 06:20:00,12.8,12.8,17.506258076722344 + 07/20 06:30:00,12.8,12.8,17.417187556347519 + 07/20 06:40:00,12.8,12.8,17.344125941057507 + 07/20 06:50:00,12.8,12.8,17.288845494532269 + 07/20 07:00:00,12.8,12.8,17.241733457241744 + 07/20 07:05:00,12.8,12.8,15.747566717588516 + 07/20 07:10:00,12.8,12.8,15.754165740277533 + 07/20 07:15:00,12.8,12.8,15.522042606296168 + 07/20 07:20:00,12.8,12.8,15.520280248448005 + 07/20 07:30:00,12.8,12.8,15.411991305906718 + 07/20 07:40:00,12.8,12.8,15.32281995454524 + 07/20 07:50:00,12.8,12.8,15.245424767436502 + 07/20 08:00:00,12.8,12.8,15.177617217534764 + 07/20 08:03:19,12.8,12.8,15.091374751938446 + 07/20 08:06:40,12.8,12.8,15.090999372176738 + 07/20 08:10:00,12.8,12.8,15.090927629602284 + 07/20 08:20:00,12.8,12.8,15.025938784838666 + 07/20 08:30:00,12.8,12.8,14.973550938118449 + 07/20 08:40:00,12.8,12.8,14.924581268441145 + 07/20 08:50:00,12.8,12.8,14.878576008474717 + 07/20 09:00:00,12.8,12.8,14.835282396920887 + 07/20 09:10:00,12.8,12.8,14.794250960444451 + 07/20 09:20:00,12.8,12.8,14.744643903842974 + 07/20 09:30:00,12.8,12.8,14.707080350534233 + 07/20 09:40:00,12.8,12.8,14.67121153051933 + 07/20 09:50:00,12.8,12.8,14.636880627189108 + 07/20 10:00:00,12.8,12.8,14.60377954479073 + 07/20 10:10:00,12.8,12.8,14.571706723498839 + 07/20 10:20:00,12.8,12.8,14.538800636614213 + 07/20 10:30:00,12.8,12.8,14.511949996564221 + 07/20 10:40:00,12.8,12.8,14.48726935837803 + 07/20 10:50:00,12.8,12.8,14.464559086544322 + 07/20 11:00:00,12.8,12.8,14.443634325255014 + 07/20 11:10:00,12.8,12.8,14.424617708364972 + 07/20 11:20:00,12.8,12.8,14.416401409962785 + 07/20 11:30:00,12.8,12.8,14.399562076058383 + 07/20 11:40:00,12.8,12.8,14.38308821541349 + 07/20 11:50:00,12.8,12.8,14.366553200949987 + 07/20 12:00:00,12.8,12.8,14.349637855378674 + 07/20 12:10:00,12.8,12.8,14.332746253482944 + 07/20 12:20:00,12.8,12.8,14.306296884844022 + 07/20 12:30:00,12.8,12.8,14.289609975510356 + 07/20 12:40:00,12.8,12.8,14.27362797057123 + 07/20 12:50:00,12.8,12.8,14.258503437900786 + 07/20 13:00:00,12.8,12.8,14.244428548917974 + 07/20 13:10:00,12.8,12.8,14.23108265902517 + 07/20 13:20:00,12.8,12.8,14.222220145698549 + 07/20 13:30:00,12.8,12.8,14.210591028878709 + 07/20 13:40:00,12.8,12.8,14.199482398562934 + 07/20 13:50:00,12.8,12.8,14.188831374642952 + 07/20 14:00:00,12.8,12.8,14.178546510649568 + 07/20 14:10:00,12.8,12.8,14.169185776231302 + 07/20 14:20:00,12.8,12.8,14.163407601806837 + 07/20 14:30:00,12.8,12.8,14.154206832168648 + 07/20 14:40:00,12.8,12.8,14.144871694142154 + 07/20 14:50:00,12.8,12.8,14.135483028763119 + 07/20 15:00:00,12.8,12.8,14.12607068765205 + 07/20 15:10:00,12.8,12.8,16.266984139082859 + 07/20 15:20:00,12.8,12.8,16.521576693730805 + 07/20 15:30:00,12.8,12.8,16.61744191265801 + 07/20 15:40:00,12.8,12.8,16.6935710467905 + 07/20 15:50:00,12.8,12.8,16.75341184828667 + 07/20 16:00:00,12.8,12.8,16.79952735276106 + 07/20 16:10:00,12.8,12.8,16.86775922299255 + 07/20 16:20:00,12.8,12.8,16.92455673455807 + 07/20 16:30:00,12.8,12.8,16.958877769177385 + 07/20 16:40:00,12.8,12.8,16.98981613755937 + 07/20 16:50:00,12.8,12.8,17.017580779260827 + 07/20 17:00:00,12.8,12.8,17.04242820156 + 07/20 17:10:00,12.8,12.8,17.077487078309294 + 07/20 17:15:00,12.8,12.8,17.104489130823589 + 07/20 17:20:00,12.8,12.8,17.104106453139189 + 07/20 17:30:00,12.8,12.8,17.123015583924198 + 07/20 17:40:00,12.8,12.8,17.141599515429044 + 07/20 17:50:00,12.8,12.8,17.159526547878497 + 07/20 18:00:00,12.8,12.8,17.17748124108845 + 07/20 18:10:00,12.8,12.8,17.194839007463025 + 07/20 18:20:00,12.8,12.8,17.21186847018828 + 07/20 18:30:00,12.8,12.8,17.22845420006397 + 07/20 18:40:00,12.8,12.8,17.244569782649419 + 07/20 18:50:00,12.8,12.8,17.260314044217144 + 07/20 19:00:00,12.8,12.8,17.27566019782262 + 07/20 19:10:00,12.8,12.8,17.3038528901345 + 07/20 19:20:00,12.8,12.8,17.319656904644665 + 07/20 19:30:00,12.8,12.8,17.334728812189529 + 07/20 19:40:00,12.8,12.8,17.349468086711 + 07/20 19:50:00,12.8,12.8,17.36393484743445 + 07/20 20:00:00,12.8,12.8,17.378126114258519 + 07/20 20:10:00,12.8,12.8,17.36979140058647 + 07/20 20:20:00,12.8,12.8,17.387159716717659 + 07/20 20:30:00,12.8,12.8,17.39969878664251 + 07/20 20:40:00,12.8,12.8,17.411527139407104 + 07/20 20:50:00,12.8,12.8,17.42289963311232 + 07/20 21:00:00,12.8,12.8,17.433820742764327 + 07/20 21:10:00,12.8,12.8,17.443791656891219 + 07/20 21:20:00,12.8,12.8,17.45318400522884 + 07/20 21:30:00,12.8,12.8,17.46198325574606 + 07/20 21:40:00,12.8,12.8,17.470322873736664 + 07/20 21:50:00,12.8,12.8,17.478228206810138 + 07/20 22:00:00,12.8,12.8,17.485729426696673 + 07/20 22:10:00,12.8,12.8,18.851545056129895 + 07/20 22:20:00,12.8,12.8,19.00186326959112 + 07/20 22:30:00,12.8,12.8,19.06878614394641 + 07/20 22:40:00,12.8,12.8,19.123337947366257 + 07/20 22:50:00,12.8,12.8,19.16745534325498 + 07/20 23:00:00,12.8,12.8,19.204960587081716 + 07/20 23:10:00,12.8,12.8,19.237765398929754 + 07/20 23:20:00,12.8,12.8,19.26581935803645 + 07/20 23:30:00,12.8,12.8,19.291979918972225 + 07/20 23:40:00,12.8,12.8,19.31559935478021 + 07/20 23:50:00,12.8,12.8,19.337734818308378 + 07/20 24:00:00,12.8,12.8,19.3583519953519 + 07/21 00:10:00,12.8,12.8,19.37759521504819 + 07/21 00:20:00,12.8,12.8,19.39466353293892 + 07/21 00:30:00,12.8,12.8,19.411860150672398 + 07/21 00:40:00,12.8,12.8,19.427396524511545 + 07/21 00:50:00,12.8,12.8,19.442316581346554 + 07/21 01:00:00,12.8,12.8,19.455470481317684 + 07/21 01:10:00,12.8,12.8,19.469371475706198 + 07/21 01:20:00,12.8,12.8,19.481971715533498 + 07/21 01:30:00,12.8,12.8,19.49452655808945 + 07/21 01:40:00,12.8,12.8,19.505461786790215 + 07/21 01:50:00,12.8,12.8,19.51753929821717 + 07/21 02:00:00,12.8,12.8,19.528477501719889 + 07/21 02:10:00,12.8,12.8,19.539649674401845 + 07/21 02:20:00,12.8,12.8,19.549361515206923 + 07/21 02:30:00,12.8,12.8,19.560389409347729 + 07/21 02:40:00,12.8,12.8,19.57032041648946 + 07/21 02:50:00,12.8,12.8,19.580619146366265 + 07/21 03:00:00,12.8,12.8,19.59056283830507 + 07/21 03:10:00,12.8,12.8,19.598996783143688 + 07/21 03:20:00,12.8,12.8,19.608940158092126 + 07/21 03:30:00,12.8,12.8,19.61744650741915 + 07/21 03:40:00,12.8,12.8,19.626304170516389 + 07/21 03:50:00,12.8,12.8,19.63466752971467 + 07/21 04:00:00,12.8,12.8,19.64139605113766 + 07/21 04:10:00,12.8,12.8,19.649824535050706 + 07/21 04:20:00,12.8,12.8,19.65682757686595 + 07/21 04:30:00,12.8,12.8,19.66445629880176 + 07/21 04:40:00,12.8,12.8,19.67179160193215 + 07/21 04:50:00,12.8,12.8,19.677575261450778 + 07/21 05:00:00,12.8,12.8,19.685714283679159 + 07/21 05:10:00,12.8,12.8,19.692679255392194 + 07/21 05:20:00,12.8,12.8,19.699769733502536 + 07/21 05:30:00,12.8,12.8,19.704684740878564 + 07/21 05:40:00,12.8,12.8,19.710975120737044 + 07/21 05:50:00,12.8,12.8,19.71530926183555 + 07/21 06:00:00,12.8,12.8,19.717928862546285 + 07/21 06:10:00,12.8,12.8,17.729787868731568 + 07/21 06:20:00,12.8,12.8,17.47386611174084 + 07/21 06:30:00,12.8,12.8,17.384349335106014 + 07/21 06:40:00,12.8,12.8,17.31113214000644 + 07/21 06:50:00,12.8,12.8,17.255321584826967 + 07/21 07:00:00,12.8,12.8,17.207849487249047 + 07/21 07:05:00,12.8,12.8,15.712097417495207 + 07/21 07:10:00,12.8,12.8,15.718705598844535 + 07/21 07:15:00,12.8,12.8,15.485737610977742 + 07/21 07:20:00,12.8,12.8,15.483978466670756 + 07/21 07:30:00,12.8,12.8,15.375378272626003 + 07/21 07:40:00,12.8,12.8,15.286327519849909 + 07/21 07:50:00,12.8,12.8,15.2092012166244 + 07/21 08:00:00,12.8,12.8,15.14168842096346 + 07/21 08:02:30,12.8,12.8,15.056818943187965 + 07/21 08:05:00,12.8,12.8,15.055398544364243 + 07/21 08:07:30,12.8,12.8,15.0557334580541 + 07/21 08:10:00,12.8,12.8,15.055430745942273 + 07/21 08:20:00,12.8,12.8,14.990366395513254 + 07/21 08:30:00,12.8,12.8,14.937992710974769 + 07/21 08:40:00,12.8,12.8,14.888740473800637 + 07/21 08:50:00,12.8,12.8,14.842662364865717 + 07/21 09:00:00,12.8,12.8,14.799507642728694 + 07/21 09:10:00,12.8,12.8,14.759426334012505 + 07/21 09:20:00,12.8,12.8,14.711321655471851 + 07/21 09:30:00,12.8,12.8,14.675812072059723 + 07/21 09:40:00,12.8,12.8,14.642591554008752 + 07/21 09:50:00,12.8,12.8,14.611589528119078 + 07/21 10:00:00,12.8,12.8,14.58290992402498 + 07/21 10:10:00,12.8,12.8,14.55614787547553 + 07/21 10:20:00,12.8,12.8,14.527471033316429 + 07/21 10:30:00,12.8,12.8,14.503694942760032 + 07/21 10:40:00,12.8,12.8,14.48099161143496 + 07/21 10:50:00,12.8,12.8,14.458813522634055 + 07/21 11:00:00,12.8,12.8,14.436974289399079 + 07/21 11:10:00,12.8,12.8,14.41496240613055 + 07/21 11:20:00,12.8,12.8,14.403340269526686 + 07/21 11:30:00,12.8,12.8,14.38300408389381 + 07/21 11:40:00,12.8,12.8,14.363562292170667 + 07/21 11:50:00,12.8,12.8,14.345543185240839 + 07/21 12:00:00,12.8,12.8,14.328902248765609 + 07/21 12:10:00,12.8,12.8,14.313652342553303 + 07/21 12:20:00,12.8,12.8,14.28978480796971 + 07/21 12:30:00,12.8,12.8,14.276325632896953 + 07/21 12:40:00,12.8,12.8,14.263383719482066 + 07/21 12:50:00,12.8,12.8,14.250105644930884 + 07/21 13:00:00,12.8,12.8,14.236334085983288 + 07/21 13:10:00,12.8,12.8,14.223044317938193 + 07/21 13:20:00,12.8,12.8,14.21294081895522 + 07/21 13:30:00,12.8,12.8,14.199295066035758 + 07/21 13:40:00,12.8,12.8,14.185781613333698 + 07/21 13:50:00,12.8,12.8,14.172853185856902 + 07/21 14:00:00,12.8,12.8,14.16046998012252 + 07/21 14:10:00,12.8,12.8,14.148272043959447 + 07/21 14:20:00,12.8,12.8,14.140388870197853 + 07/21 14:30:00,12.8,12.8,14.129862092078412 + 07/21 14:40:00,12.8,12.8,14.120373310822054 + 07/21 14:50:00,12.8,12.8,14.112408193903791 + 07/21 15:00:00,12.8,12.8,14.105897714836172 + 07/21 15:05:00,12.8,12.8,16.26322601398281 + 07/21 15:10:00,12.8,12.8,16.258481119224919 + 07/21 15:20:00,12.8,12.8,16.515395075375325 + 07/21 15:30:00,12.8,12.8,16.618249969104725 + 07/21 15:40:00,12.8,12.8,16.695031593328645 + 07/21 15:50:00,12.8,12.8,16.75380900635251 + 07/21 16:00:00,12.8,12.8,16.799450473175815 + 07/21 16:10:00,12.8,12.8,16.862927794803924 + 07/21 16:20:00,12.8,12.8,16.914135637588897 + 07/21 16:30:00,12.8,12.8,16.94203550909041 + 07/21 16:40:00,12.8,12.8,16.96686857331189 + 07/21 16:50:00,12.8,12.8,16.989929580358834 + 07/21 17:00:00,12.8,12.8,17.01178628190149 + 07/21 17:05:00,12.8,12.8,17.04653533588573 + 07/21 17:10:00,12.8,12.8,17.046145865434306 + 07/21 17:15:00,12.8,12.8,17.072305931953179 + 07/21 17:20:00,12.8,12.8,17.072359160993395 + 07/21 17:30:00,12.8,12.8,17.091748708535094 + 07/21 17:40:00,12.8,12.8,17.11111165456511 + 07/21 17:50:00,12.8,12.8,17.129873564011576 + 07/21 18:00:00,12.8,12.8,17.14842330692735 + 07/21 18:10:00,12.8,12.8,17.166917417861254 + 07/21 18:20:00,12.8,12.8,17.185043784903848 + 07/21 18:30:00,12.8,12.8,17.202847440836078 + 07/21 18:40:00,12.8,12.8,17.22036938454615 + 07/21 18:50:00,12.8,12.8,17.23765446906528 + 07/21 19:00:00,12.8,12.8,17.25467637671633 + 07/21 19:10:00,12.8,12.8,17.284790488683357 + 07/21 19:20:00,12.8,12.8,17.302356774078356 + 07/21 19:30:00,12.8,12.8,17.31905689230712 + 07/21 19:40:00,12.8,12.8,17.33524717512218 + 07/21 19:50:00,12.8,12.8,17.350844886716709 + 07/21 20:00:00,12.8,12.8,17.365905589600318 + 07/21 20:10:00,12.8,12.8,17.35742070583164 + 07/21 20:20:00,12.8,12.8,17.374327994779884 + 07/21 20:30:00,12.8,12.8,17.386118852997016 + 07/21 20:40:00,12.8,12.8,17.396952566723046 + 07/21 20:50:00,12.8,12.8,17.406996253863757 + 07/21 21:00:00,12.8,12.8,17.41644272193173 + 07/21 21:10:00,12.8,12.8,17.425566095269838 + 07/21 21:20:00,12.8,12.8,17.434256570477719 + 07/21 21:30:00,12.8,12.8,17.442671829993047 + 07/21 21:40:00,12.8,12.8,17.450835243961714 + 07/21 21:50:00,12.8,12.8,17.458718719553983 + 07/21 22:00:00,12.8,12.8,17.466496422939323 + 07/21 22:10:00,12.8,12.8,18.832658957630224 + 07/21 22:15:00,12.8,12.8,18.98292910868698 + 07/21 22:20:00,12.8,12.8,18.981884565158198 + 07/21 22:30:00,12.8,12.8,19.048316830642308 + 07/21 22:40:00,12.8,12.8,19.101562257759356 + 07/21 22:50:00,12.8,12.8,19.14427516346091 + 07/21 23:00:00,12.8,12.8,19.18093541141154 + 07/21 23:10:00,12.8,12.8,19.21260647587745 + 07/21 23:20:00,12.8,12.8,19.240352409844904 + 07/21 23:30:00,12.8,12.8,19.26556034054292 + 07/21 23:40:00,12.8,12.8,19.288276487526944 + 07/21 23:50:00,12.8,12.8,19.309394766930696 + 07/21 24:00:00,12.8,12.8,19.329061596707388 + 07/22 00:10:00,12.8,12.8,19.347568259582304 + 07/22 00:20:00,12.8,12.8,19.36498122425049 + 07/22 00:30:00,12.8,12.8,19.381522654625106 + 07/22 00:40:00,12.8,12.8,19.39734289086759 + 07/22 00:50:00,12.8,12.8,19.4124852144369 + 07/22 01:00:00,12.8,12.8,19.427022027635269 + 07/22 01:10:00,12.8,12.8,19.440749047896003 + 07/22 01:20:00,12.8,12.8,19.45383569850165 + 07/22 01:30:00,12.8,12.8,19.466402243818917 + 07/22 01:40:00,12.8,12.8,19.47841801301635 + 07/22 01:50:00,12.8,12.8,19.489927997928313 + 07/22 02:00:00,12.8,12.8,19.500966141580628 + 07/22 02:10:00,12.8,12.8,19.51184253255353 + 07/22 02:20:00,12.8,12.8,19.522513306273554 + 07/22 02:30:00,12.8,12.8,19.532940908216334 + 07/22 02:40:00,12.8,12.8,19.543148102960534 + 07/22 02:50:00,12.8,12.8,19.553144501046597 + 07/22 03:00:00,12.8,12.8,19.56284724912194 + 07/22 03:10:00,12.8,12.8,19.57238677619678 + 07/22 03:20:00,12.8,12.8,19.581843959552726 + 07/22 03:30:00,12.8,12.8,19.591672389353538 + 07/22 03:40:00,12.8,12.8,19.600752784120595 + 07/22 03:50:00,12.8,12.8,19.60981901406378 + 07/22 04:00:00,12.8,12.8,19.618711849680218 + 07/22 04:10:00,12.8,12.8,19.62735632519084 + 07/22 04:20:00,12.8,12.8,19.635813235667479 + 07/22 04:30:00,12.8,12.8,19.64402247216243 + 07/22 04:40:00,12.8,12.8,19.65194143232109 + 07/22 04:50:00,12.8,12.8,19.659895875379623 + 07/22 05:00:00,12.8,12.8,19.667566993743603 + 07/22 05:10:00,12.8,12.8,19.675267504882805 + 07/22 05:20:00,12.8,12.8,19.681756254740628 + 07/22 05:30:00,12.8,12.8,19.689317479376979 + 07/22 05:40:00,12.8,12.8,19.69576877521179 + 07/22 05:50:00,12.8,12.8,19.701329610337309 + 07/22 06:00:00,12.8,12.8,19.707015224781988 + 07/22 06:10:00,12.8,12.8,19.052976418004979 + 07/22 06:20:00,12.8,12.8,18.98073133134208 + 07/22 06:30:00,12.8,12.8,18.953264125404585 + 07/22 06:40:00,12.8,12.8,18.930738847134074 + 07/22 06:50:00,12.8,12.8,18.91293210430493 + 07/22 07:00:00,12.8,12.8,18.897010938434688 + 07/22 07:10:00,12.8,12.8,17.81190397951658 + 07/22 07:20:00,12.8,12.8,17.64948581771258 + 07/22 07:30:00,12.8,12.8,17.58033015791982 + 07/22 07:40:00,12.8,12.8,17.521415705690857 + 07/22 07:50:00,12.8,12.8,17.472828791052785 + 07/22 08:00:00,12.8,12.8,17.42977906220463 + 07/22 08:05:00,12.8,12.8,17.39065526762394 + 07/22 08:10:00,12.8,12.8,17.39062922459675 + 07/22 08:20:00,12.8,12.8,17.34554222316301 + 07/22 08:30:00,12.8,12.8,17.311726070067289 + 07/22 08:40:00,12.8,12.8,17.28013065708894 + 07/22 08:50:00,12.8,12.8,17.2504396134701 + 07/22 09:00:00,12.8,12.8,17.22256770694782 + 07/22 09:10:00,12.8,12.8,17.196239347103949 + 07/22 09:20:00,12.8,12.8,17.16249796779594 + 07/22 09:30:00,12.8,12.8,17.13850286938743 + 07/22 09:40:00,12.8,12.8,17.115599997020476 + 07/22 09:50:00,12.8,12.8,17.09361150450833 + 07/22 10:00:00,12.8,12.8,17.072551080191184 + 07/22 10:10:00,12.8,12.8,17.052853959025659 + 07/22 10:20:00,12.8,12.8,17.033794630084218 + 07/22 10:30:00,12.8,12.8,17.01529248734362 + 07/22 10:40:00,12.8,12.8,16.99724901251454 + 07/22 10:50:00,12.8,12.8,16.979521097080139 + 07/22 11:00:00,12.8,12.8,16.962020218935196 + 07/22 11:10:00,12.8,12.8,16.944884283052479 + 07/22 11:20:00,12.8,12.8,16.928368865168687 + 07/22 11:30:00,12.8,12.8,16.912534664721649 + 07/22 11:40:00,12.8,12.8,16.898278245275628 + 07/22 11:50:00,12.8,12.8,16.88705310122251 + 07/22 12:00:00,12.8,12.8,16.879036752299954 + 07/22 12:10:00,12.8,12.8,16.87409375709228 + 07/22 12:20:00,12.8,12.8,16.871351019370409 + 07/22 12:30:00,12.8,12.8,16.87031938791691 + 07/22 12:40:00,12.8,12.8,16.870303235459667 + 07/22 12:50:00,12.8,12.8,16.87046487274467 + 07/22 13:00:00,12.8,12.8,16.870468830672384 + 07/22 13:10:00,12.8,12.8,16.868675920800784 + 07/22 13:20:00,12.8,12.8,16.867672216012435 + 07/22 13:30:00,12.8,12.8,16.86765037470538 + 07/22 13:40:00,12.8,12.8,16.868030266997026 + 07/22 13:50:00,12.8,12.8,16.86791947632915 + 07/22 14:00:00,12.8,12.8,16.866994035352755 + 07/22 14:10:00,12.8,12.8,16.867818528703319 + 07/22 14:20:00,12.8,12.8,16.867506716305465 + 07/22 14:30:00,12.8,12.8,16.866172365400254 + 07/22 14:40:00,12.8,12.8,16.864070669510988 + 07/22 14:50:00,12.8,12.8,16.86148993648247 + 07/22 15:00:00,12.8,12.8,16.858607039541576 + 07/22 15:10:00,12.8,12.8,16.853813615111578 + 07/22 15:20:00,12.8,12.8,16.848796559049416 + 07/22 15:30:00,12.8,12.8,16.843589521945245 + 07/22 15:40:00,12.8,12.8,16.838748529548917 + 07/22 15:50:00,12.8,12.8,16.834767743381826 + 07/22 16:00:00,12.8,12.8,16.83189478040384 + 07/22 16:10:00,12.8,12.8,16.844221674505829 + 07/22 16:15:00,12.8,12.8,16.85551005111367 + 07/22 16:20:00,12.8,12.8,16.855098089933369 + 07/22 16:30:00,12.8,12.8,16.857257540570389 + 07/22 16:40:00,12.8,12.8,16.861033486975879 + 07/22 16:50:00,12.8,12.8,16.865441110544194 + 07/22 17:00:00,12.8,12.8,16.870604208122207 + 07/22 17:10:00,12.8,12.8,18.63472522953987 + 07/22 17:15:00,12.8,12.8,18.861306468059806 + 07/22 17:20:00,12.8,12.8,18.858552967930224 + 07/22 17:30:00,12.8,12.8,18.949867831893003 + 07/22 17:40:00,12.8,12.8,19.023480794052099 + 07/22 17:50:00,12.8,12.8,19.081396069779588 + 07/22 18:00:00,12.8,12.8,19.131451454270246 + 07/22 18:10:00,12.8,12.8,19.18597363447744 + 07/22 18:20:00,12.8,12.8,19.222478231060973 + 07/22 18:30:00,12.8,12.8,19.254526699036526 + 07/22 18:40:00,12.8,12.8,19.283027713796988 + 07/22 18:50:00,12.8,12.8,19.30870536388766 + 07/22 19:00:00,12.8,12.8,19.331935000332505 + 07/22 19:10:00,12.8,12.8,19.353428552816206 + 07/22 19:20:00,12.8,12.8,19.3733942501438 + 07/22 19:30:00,12.8,12.8,19.39214617639712 + 07/22 19:40:00,12.8,12.8,19.409847007732517 + 07/22 19:50:00,12.8,12.8,19.42672597806226 + 07/22 20:00:00,12.8,12.8,19.443063645621096 + 07/22 20:10:00,12.8,12.8,19.436522930712735 + 07/22 20:20:00,12.8,12.8,19.451281940442436 + 07/22 20:30:00,12.8,12.8,19.465360880136467 + 07/22 20:40:00,12.8,12.8,19.478758045083546 + 07/22 20:50:00,12.8,12.8,19.491611371117913 + 07/22 21:00:00,12.8,12.8,19.50397386660332 + 07/22 21:10:00,12.8,12.8,19.515797848632454 + 07/22 21:20:00,12.8,12.8,19.52710387211644 + 07/22 21:30:00,12.8,12.8,19.53789580682395 + 07/22 21:40:00,12.8,12.8,19.548172037519188 + 07/22 21:50:00,12.8,12.8,19.55811208191838 + 07/22 22:00:00,12.8,12.8,19.56767259845982 + 07/22 22:10:00,12.8,12.8,19.576975699938659 + 07/22 22:20:00,12.8,12.8,19.58595341650506 + 07/22 22:30:00,12.8,12.8,19.594527348863559 + 07/22 22:40:00,12.8,12.8,19.602912746258555 + 07/22 22:50:00,12.8,12.8,19.611040272093697 + 07/22 23:00:00,12.8,12.8,19.61892648999349 + 07/22 23:10:00,12.8,12.8,19.626514766289149 + 07/22 23:20:00,12.8,12.8,19.634065426243013 + 07/22 23:30:00,12.8,12.8,19.641247294555038 + 07/22 23:40:00,12.8,12.8,19.648317484786586 + 07/22 23:50:00,12.8,12.8,19.655113021280607 + 07/22 24:00:00,12.8,12.8,19.6616961221125 + 07/23 00:10:00,12.8,12.8,19.666374003627199 + 07/23 00:20:00,12.8,12.8,19.672770916422704 + 07/23 00:30:00,12.8,12.8,19.677836186646915 + 07/23 00:40:00,12.8,12.8,19.683249367931198 + 07/23 00:50:00,12.8,12.8,19.68819995259029 + 07/23 01:00:00,12.8,12.8,19.69141099444117 + 07/23 01:10:00,12.8,12.8,19.697137929401948 + 07/23 01:20:00,12.8,12.8,19.70142099257127 + 07/23 01:30:00,12.8,12.8,19.706245751438759 + 07/23 01:40:00,12.8,12.8,19.709332012391334 + 07/23 01:50:00,12.8,12.8,19.714278960486494 + 07/23 02:00:00,12.8,12.8,19.717873878973788 + 07/23 02:10:00,12.8,12.8,19.721876751653796 + 07/23 02:20:00,12.8,12.8,19.724351048359688 + 07/23 02:30:00,12.8,12.8,19.728831219116328 + 07/23 02:40:00,12.8,12.8,19.732228792070644 + 07/23 02:50:00,12.8,12.8,19.736203304105808 + 07/23 03:00:00,12.8,12.8,19.738757114910287 + 07/23 03:10:00,12.8,12.8,19.743533064777368 + 07/23 03:20:00,12.8,12.8,19.747164561887524 + 07/23 03:30:00,12.8,12.8,19.751364621312285 + 07/23 03:40:00,12.8,12.8,19.755213801492869 + 07/23 03:50:00,12.8,12.8,19.75749421838783 + 07/23 04:00:00,12.8,12.8,19.76200329648635 + 07/23 04:10:00,12.8,12.8,19.76548945436342 + 07/23 04:20:00,12.8,12.8,19.76960946929666 + 07/23 04:30:00,12.8,12.8,19.772037570173905 + 07/23 04:40:00,12.8,12.8,19.776399286238424 + 07/23 04:50:00,12.8,12.8,19.779635753951099 + 07/23 05:00:00,12.8,12.8,19.78346952911232 + 07/23 05:10:00,12.8,12.8,19.785736884405187 + 07/23 05:20:00,12.8,12.8,19.789979955248687 + 07/23 05:30:00,12.8,12.8,19.793025949922293 + 07/23 05:40:00,12.8,12.8,19.796796863381183 + 07/23 05:50:00,12.8,12.8,19.79874168156269 + 07/23 06:00:00,12.8,12.8,19.802356185070658 + 07/23 06:10:00,12.8,12.8,19.826053720932167 + 07/23 06:20:00,12.8,12.8,19.82679198515028 + 07/23 06:30:00,12.8,12.8,19.827881109623907 + 07/23 06:40:00,12.8,12.8,19.828255911733309 + 07/23 06:50:00,12.8,12.8,19.827865841271419 + 07/23 07:00:00,12.8,12.8,19.826237775607514 + 07/23 07:10:00,12.8,12.8,18.432820451915878 + 07/23 07:20:00,12.8,12.8,18.250551944256026 + 07/23 07:30:00,12.8,12.8,18.179439223627964 + 07/23 07:40:00,12.8,12.8,18.119705926070119 + 07/23 07:50:00,12.8,12.8,18.07198005794583 + 07/23 08:00:00,12.8,12.8,18.030727199896597 + 07/23 08:10:00,12.8,12.8,17.993376647490999 + 07/23 08:20:00,12.8,12.8,17.950254472482606 + 07/23 08:30:00,12.8,12.8,17.917936441441947 + 07/23 08:40:00,12.8,12.8,17.887461324183908 + 07/23 08:50:00,12.8,12.8,17.85856248766458 + 07/23 09:00:00,12.8,12.8,17.83112842239994 + 07/23 09:10:00,12.8,12.8,17.80553816960247 + 07/23 09:20:00,12.8,12.8,17.77257125751122 + 07/23 09:30:00,12.8,12.8,17.749436073694978 + 07/23 09:40:00,12.8,12.8,17.727797864484175 + 07/23 09:50:00,12.8,12.8,17.707792739767784 + 07/23 10:00:00,12.8,12.8,17.689474520042866 + 07/23 10:10:00,12.8,12.8,17.672998599352938 + 07/23 10:20:00,12.8,12.8,17.658039988593428 + 07/23 10:30:00,12.8,12.8,17.644354715483293 + 07/23 10:40:00,12.8,12.8,17.632376558305344 + 07/23 10:50:00,12.8,12.8,17.623223010098188 + 07/23 11:00:00,12.8,12.8,17.61693349251219 + 07/23 11:10:00,12.8,12.8,17.61354440792465 + 07/23 11:20:00,12.8,12.8,17.612404101837769 + 07/23 11:30:00,12.8,12.8,17.613271732190606 + 07/23 11:40:00,12.8,12.8,17.61451829795995 + 07/23 11:50:00,12.8,12.8,17.613734810868054 + 07/23 12:00:00,12.8,12.8,17.610256806868 + 07/23 12:10:00,12.8,12.8,17.60352081091842 + 07/23 12:20:00,12.8,12.8,17.594625203908824 + 07/23 12:30:00,12.8,12.8,17.58399778311084 + 07/23 12:40:00,12.8,12.8,17.572274954755586 + 07/23 12:50:00,12.8,12.8,17.559842523178479 + 07/23 13:00:00,12.8,12.8,17.546895802849229 + 07/23 13:10:00,12.8,12.8,17.534082698971195 + 07/23 13:20:00,12.8,12.8,17.521555910431507 + 07/23 13:30:00,12.8,12.8,17.509439548699658 + 07/23 13:40:00,12.8,12.8,17.497999810485667 + 07/23 13:50:00,12.8,12.8,17.48742894109286 + 07/23 14:00:00,12.8,12.8,17.477774129066359 + 07/23 14:10:00,12.8,12.8,17.468904693790983 + 07/23 14:20:00,12.8,12.8,17.46070033389842 + 07/23 14:30:00,12.8,12.8,17.453026685399359 + 07/23 14:40:00,12.8,12.8,17.44589264838585 + 07/23 14:50:00,12.8,12.8,17.43962309472699 + 07/23 15:00:00,12.8,12.8,17.434183217090597 + 07/23 15:10:00,12.8,12.8,18.84901186263687 + 07/23 15:20:00,12.8,12.8,19.002887664721887 + 07/23 15:30:00,12.8,12.8,19.0650640455749 + 07/23 15:40:00,12.8,12.8,19.11445534372733 + 07/23 15:50:00,12.8,12.8,19.15056606331491 + 07/23 16:00:00,12.8,12.8,19.179980539773135 + 07/23 16:10:00,12.8,12.8,19.20429402141548 + 07/23 16:20:00,12.8,12.8,19.23423031261689 + 07/23 16:30:00,12.8,12.8,19.253250036317213 + 07/23 16:40:00,12.8,12.8,19.270548220323293 + 07/23 16:50:00,12.8,12.8,19.28684062256739 + 07/23 17:00:00,12.8,12.8,19.302356880489783 + 07/23 17:10:00,12.8,12.8,19.318510262920893 + 07/23 17:20:00,12.8,12.8,19.35169151109178 + 07/23 17:30:00,12.8,12.8,19.367273836327319 + 07/23 17:40:00,12.8,12.8,19.382648596244804 + 07/23 17:50:00,12.8,12.8,19.397889957329896 + 07/23 18:00:00,12.8,12.8,19.41313422066608 + 07/23 18:10:00,12.8,12.8,19.427915653537803 + 07/23 18:20:00,12.8,12.8,19.44260683902673 + 07/23 18:30:00,12.8,12.8,19.457167244307575 + 07/23 18:40:00,12.8,12.8,19.471480895230376 + 07/23 18:50:00,12.8,12.8,19.485603987539784 + 07/23 19:00:00,12.8,12.8,19.500152540946745 + 07/23 19:10:00,12.8,12.8,19.513170717897105 + 07/23 19:20:00,12.8,12.8,19.527343475031583 + 07/23 19:30:00,12.8,12.8,19.53950502167686 + 07/23 19:40:00,12.8,12.8,19.55273513783859 + 07/23 19:50:00,12.8,12.8,19.56476098037642 + 07/23 20:00:00,12.8,12.8,19.576657107274813 + 07/23 20:10:00,12.8,12.8,19.56469089189402 + 07/23 20:20:00,12.8,12.8,19.57558116898306 + 07/23 20:30:00,12.8,12.8,19.585028309965894 + 07/23 20:40:00,12.8,12.8,19.594440335212913 + 07/23 20:50:00,12.8,12.8,19.603250386159908 + 07/23 21:00:00,12.8,12.8,19.611686203472844 + 07/23 21:10:00,12.8,12.8,19.619650254056628 + 07/23 21:20:00,12.8,12.8,19.62719365118656 + 07/23 21:30:00,12.8,12.8,19.634500081902816 + 07/23 21:40:00,12.8,12.8,19.641526961452553 + 07/23 21:50:00,12.8,12.8,19.64470695783609 + 07/23 22:00:00,12.8,12.8,19.65326669068008 + 07/23 22:10:00,12.8,12.8,19.658456424417325 + 07/23 22:20:00,12.8,12.8,19.66530017087983 + 07/23 22:30:00,12.8,12.8,19.668701687784684 + 07/23 22:40:00,12.8,12.8,19.67636111912027 + 07/23 22:50:00,12.8,12.8,19.67934849406214 + 07/23 23:00:00,12.8,12.8,19.685293018067765 + 07/23 23:10:00,12.8,12.8,19.690166292748537 + 07/23 23:20:00,12.8,12.8,19.696509901443635 + 07/23 23:30:00,12.8,12.8,19.70208443202945 + 07/23 23:40:00,12.8,12.8,19.706930298629417 + 07/23 23:50:00,12.8,12.8,19.71211607889837 + 07/23 24:00:00,12.8,12.8,19.716930404086904 + 07/24 00:10:00,12.8,12.8,19.722041184473818 + 07/24 00:20:00,12.8,12.8,19.72788341427992 + 07/24 00:30:00,12.8,12.8,19.73362939255113 + 07/24 00:40:00,12.8,12.8,19.73950834872702 + 07/24 00:50:00,12.8,12.8,19.745249607071977 + 07/24 01:00:00,12.8,12.8,19.751064819607615 + 07/24 01:10:00,12.8,12.8,19.756651474217159 + 07/24 01:20:00,12.8,12.8,19.76275577618619 + 07/24 01:30:00,12.8,12.8,19.76842592187637 + 07/24 01:40:00,12.8,12.8,19.773763513230148 + 07/24 01:50:00,12.8,12.8,19.778770973980266 + 07/24 02:00:00,12.8,12.8,19.781329284894363 + 07/24 02:10:00,12.8,12.8,19.784861712108957 + 07/24 02:20:00,12.8,12.8,19.78792090368244 + 07/24 02:30:00,12.8,12.8,19.791191010320234 + 07/24 02:40:00,12.8,12.8,19.79450469981232 + 07/24 02:50:00,12.8,12.8,19.797858462686638 + 07/24 03:00:00,12.8,12.8,19.80122966188742 + 07/24 03:10:00,12.821021021021022,12.821021021021022,19.804601494196036 + 07/24 03:20:00,12.842042042042042,12.842042042042042,19.80809741717904 + 07/24 03:30:00,12.863063063063063,12.863063063063063,19.811766070526124 + 07/24 03:40:00,12.884084084084084,12.884084084084084,19.815686240426254 + 07/24 03:50:00,12.905105105105106,12.905105105105106,19.819773067275908 + 07/24 04:00:00,12.926126126126127,12.926126126126127,19.82403997580591 + 07/24 04:10:00,12.926126126126127,12.926126126126127,19.828414894103266 + 07/24 04:20:00,12.926126126126127,12.926126126126127,19.8325781427202 + 07/24 04:30:00,12.926126126126127,12.926126126126127,19.83661446513792 + 07/24 04:40:00,12.926126126126127,12.926126126126127,19.840426034333399 + 07/24 04:50:00,12.926126126126127,12.926126126126127,19.843994187312306 + 07/24 05:00:00,12.926126126126127,12.926126126126127,19.847416250308656 + 07/24 05:10:00,12.926126126126127,12.926126126126127,19.850389260838655 + 07/24 05:20:00,12.926126126126127,12.926126126126127,19.853064869612859 + 07/24 05:30:00,12.926126126126127,12.926126126126127,19.855357902356209 + 07/24 05:40:00,12.926126126126127,12.926126126126127,19.857241634964994 + 07/24 05:50:00,12.926126126126127,12.926126126126127,19.858532429867034 + 07/24 06:00:00,12.926126126126127,12.926126126126127,19.85894379204154 + 07/24 06:10:00,12.905105105105106,12.905105105105106,17.872105018645024 + 07/24 06:20:00,12.884084084084084,12.884084084084084,17.616278691025394 + 07/24 06:30:00,12.863063063063063,12.863063063063063,17.524520109922276 + 07/24 06:40:00,12.842042042042042,12.842042042042042,17.4491551910909 + 07/24 06:50:00,12.821021021021022,12.821021021021022,17.390656401324969 + 07/24 07:00:00,12.8,12.8,17.339930336238944 + 07/24 07:05:00,12.8,12.8,15.843976883025715 + 07/24 07:10:00,12.8,12.8,15.850548088627815 + 07/24 07:20:00,12.8,12.8,15.617691642102367 + 07/24 07:30:00,12.8,12.8,15.50159094085624 + 07/24 07:40:00,12.8,12.8,15.409393859094234 + 07/24 07:50:00,12.8,12.8,15.330710202251792 + 07/24 08:00:00,12.8,12.8,15.26211380226148 + 07/24 08:05:00,12.8,12.8,15.17415782017721 + 07/24 08:10:00,12.8,12.8,15.17411464553535 + 07/24 08:20:00,12.8,12.8,15.108704056332956 + 07/24 08:30:00,12.8,12.8,15.055366143892643 + 07/24 08:40:00,12.8,12.8,15.005569919729683 + 07/24 08:50:00,12.8,12.8,14.95878063019785 + 07/24 09:00:00,12.8,12.8,14.914797807678064 + 07/24 09:10:00,12.8,12.8,14.873242939726046 + 07/24 09:20:00,12.8,12.8,14.823188336748802 + 07/24 09:30:00,12.8,12.8,14.785287873456952 + 07/24 09:40:00,12.8,12.8,14.749141105576165 + 07/24 09:50:00,12.8,12.8,14.714555765891032 + 07/24 10:00:00,12.8,12.8,14.681525787689703 + 07/24 10:10:00,12.8,12.8,14.650469448179438 + 07/24 10:20:00,12.8,12.8,14.61730952427899 + 07/24 10:30:00,12.8,12.8,14.588889291557475 + 07/24 10:40:00,12.8,12.8,14.561678750788735 + 07/24 10:50:00,12.8,12.8,14.535554003873939 + 07/24 11:00:00,12.8,12.8,14.510484277781325 + 07/24 11:10:00,12.8,12.8,14.486312449164326 + 07/24 11:20:00,12.8,12.8,14.472601094357089 + 07/24 11:30:00,12.8,12.8,14.450162782420288 + 07/24 11:40:00,12.8,12.8,14.428399736720234 + 07/24 11:50:00,12.8,12.8,14.407678590392785 + 07/24 12:00:00,12.8,12.8,14.3878897645046 + 07/24 12:10:00,12.8,12.8,14.368841499128447 + 07/24 12:20:00,12.8,12.8,14.341068073482234 + 07/24 12:30:00,12.8,12.8,14.323715716663929 + 07/24 12:40:00,12.8,12.8,14.307415948187336 + 07/24 12:50:00,12.8,12.8,14.292184711861186 + 07/24 13:00:00,12.8,12.8,14.278051148953328 + 07/24 13:10:00,12.8,12.8,14.265103834568765 + 07/24 13:20:00,12.8,12.8,14.256658546288055 + 07/24 13:30:00,12.8,12.8,14.24570406210118 + 07/24 13:40:00,12.8,12.8,14.235460420546163 + 07/24 13:50:00,12.8,12.8,14.225778433073856 + 07/24 14:00:00,12.8,12.8,14.21650027900423 + 07/24 14:10:00,12.8,12.8,14.208071387207737 + 07/24 14:20:00,12.8,12.8,14.203260112250544 + 07/24 14:30:00,12.8,12.8,14.195137320686636 + 07/24 14:40:00,12.8,12.8,14.18723707456328 + 07/24 14:50:00,12.8,12.8,14.179855397326689 + 07/24 15:00:00,12.8,12.8,14.172967478712384 + 07/24 15:05:00,12.8,12.8,16.322788664706317 + 07/24 15:10:00,12.8,12.8,16.319791351637535 + 07/24 15:20:00,12.8,12.8,16.571342004643005 + 07/24 15:30:00,12.8,12.8,16.669691806428575 + 07/24 15:40:00,12.8,12.8,16.743550210847688 + 07/24 15:50:00,12.8,12.8,16.80221063291053 + 07/24 16:00:00,12.8,12.8,16.850222431516955 + 07/24 16:10:00,12.8,12.8,16.917279974019509 + 07/24 16:20:00,12.8,12.8,16.9727259204449 + 07/24 16:30:00,12.8,12.8,17.00477814527312 + 07/24 16:40:00,12.8,12.8,17.03352315826924 + 07/24 16:50:00,12.8,12.8,17.06000378136822 + 07/24 17:00:00,12.8,12.8,17.08472554957547 + 07/24 17:10:00,12.8,12.8,17.120184744181697 + 07/24 17:15:00,12.8,12.8,17.148600850974657 + 07/24 17:20:00,12.8,12.8,17.14836794022606 + 07/24 17:30:00,12.8,12.8,17.168950082873925 + 07/24 17:40:00,12.8,12.8,17.189287361369833 + 07/24 17:50:00,12.8,12.8,17.20839416857188 + 07/24 18:00:00,12.8,12.8,17.22773518463993 + 07/24 18:10:00,12.8,12.8,17.24396453493104 + 07/24 18:20:00,12.8,12.8,17.260700049534397 + 07/24 18:30:00,12.8,12.8,17.277523932980779 + 07/24 18:40:00,12.8,12.8,17.292545699537074 + 07/24 18:50:00,12.8,12.8,17.30856474597132 + 07/24 19:00:00,12.8,12.8,17.324948151259194 + 07/24 19:10:00,12.8,12.8,17.353030283400537 + 07/24 19:20:00,12.8,12.8,17.370363311483155 + 07/24 19:30:00,12.8,12.8,17.38603129858423 + 07/24 19:40:00,12.8,12.8,17.400304244133705 + 07/24 19:50:00,12.8,12.8,17.41568324250084 + 07/24 20:00:00,12.8,12.8,17.428512462268104 + 07/24 20:10:00,12.8,12.8,17.42014728762914 + 07/24 20:20:00,12.8,12.8,17.43544477855308 + 07/24 20:30:00,12.8,12.8,17.44705134435959 + 07/24 20:40:00,12.8,12.8,17.457649563741254 + 07/24 20:50:00,12.8,12.8,17.467947965500863 + 07/24 21:00:00,12.8,12.8,17.47771387906531 + 07/24 21:10:00,12.8,12.8,17.48708578562781 + 07/24 21:20:00,12.8,12.8,17.495974172583585 + 07/24 21:30:00,12.8,12.8,17.504509182762769 + 07/24 21:40:00,12.8,12.8,17.512692340640894 + 07/24 21:50:00,12.8,12.8,17.520524080354833 + 07/24 22:00:00,12.8,12.8,17.528153420142198 + 07/24 22:10:00,12.8,12.8,18.893123351013146 + 07/24 22:20:00,12.8,12.8,19.04024587640403 + 07/24 22:30:00,12.8,12.8,19.105468110671205 + 07/24 22:40:00,12.8,12.8,19.157337948093124 + 07/24 22:50:00,12.8,12.8,19.1992353338879 + 07/24 23:00:00,12.8,12.8,19.23100879181696 + 07/24 23:10:00,12.8,12.8,19.260284097252197 + 07/24 23:20:00,12.8,12.8,19.28852141759655 + 07/24 23:30:00,12.8,12.8,19.309748677468599 + 07/24 23:40:00,12.8,12.8,19.33209352583561 + 07/24 23:50:00,12.8,12.8,19.35150136652245 + 07/24 24:00:00,12.8,12.8,19.37014684434594 + 07/25 00:10:00,12.8,12.8,19.387484178734917 + 07/25 00:20:00,12.8,12.8,19.405154880425774 + 07/25 00:30:00,12.8,12.8,19.42128861979146 + 07/25 00:40:00,12.8,12.8,19.436940440968259 + 07/25 00:50:00,12.8,12.8,19.45164544108031 + 07/25 01:00:00,12.8,12.8,19.46560648050145 + 07/25 01:10:00,12.8,12.8,19.47907239619768 + 07/25 01:20:00,12.8,12.8,19.49205725224595 + 07/25 01:30:00,12.8,12.8,19.50475012024726 + 07/25 01:40:00,12.8,12.8,19.51712747722824 + 07/25 01:50:00,12.8,12.8,19.529222773782388 + 07/25 02:00:00,12.8,12.8,19.54102721702693 + 07/25 02:10:00,12.8,12.8,19.55268717374335 + 07/25 02:20:00,12.8,12.8,19.563992437032046 + 07/25 02:30:00,12.8,12.8,19.574805700177469 + 07/25 02:40:00,12.8,12.8,19.58515773724544 + 07/25 02:50:00,12.8,12.8,19.601034632100644 + 07/25 03:00:00,12.8,12.8,19.60919873237643 + 07/25 03:10:00,12.8,12.8,19.61805983257966 + 07/25 03:20:00,12.8,12.8,19.625771087807715 + 07/25 03:30:00,12.8,12.8,19.633498043367994 + 07/25 03:40:00,12.8,12.8,19.641266550557679 + 07/25 03:50:00,12.8,12.8,19.648756039452367 + 07/25 04:00:00,12.8,12.8,19.65606438927133 + 07/25 04:10:00,12.8,12.8,19.66327036301967 + 07/25 04:20:00,12.8,12.8,19.670227440574867 + 07/25 04:30:00,12.8,12.8,19.676932203373295 + 07/25 04:40:00,12.8,12.8,19.68333796187804 + 07/25 04:50:00,12.8,12.8,19.689489397318988 + 07/25 05:00:00,12.8,12.8,19.69547544658132 + 07/25 05:10:00,12.8,12.8,19.701436043096629 + 07/25 05:20:00,12.8,12.8,19.707854339609676 + 07/25 05:30:00,12.8,12.8,19.714139128884829 + 07/25 05:40:00,12.8,12.8,19.72039275263188 + 07/25 05:50:00,12.8,12.8,19.72634387367615 + 07/25 06:00:00,12.8,12.8,19.73136115450963 + 07/25 06:10:00,12.8,12.8,17.74020615774436 + 07/25 06:20:00,12.8,12.8,17.503009129183864 + 07/25 06:30:00,12.8,12.8,17.414047355849985 + 07/25 06:40:00,12.8,12.8,17.34446082164517 + 07/25 06:50:00,12.8,12.8,17.288893192990576 + 07/25 07:00:00,12.8,12.8,17.242183127246205 + 07/25 07:05:00,12.8,12.8,15.748803366713313 + 07/25 07:10:00,12.8,12.8,15.75534538564234 + 07/25 07:15:00,12.8,12.8,15.524468627312267 + 07/25 07:20:00,12.8,12.8,15.522686967578878 + 07/25 07:30:00,12.8,12.8,15.41622260034107 + 07/25 07:40:00,12.8,12.8,15.329395684207493 + 07/25 07:50:00,12.8,12.8,15.254427934445193 + 07/25 08:00:00,12.8,12.8,15.188835628747466 + 07/25 08:03:19,12.8,12.8,15.103988157434257 + 07/25 08:06:40,12.8,12.8,15.103594974850527 + 07/25 08:10:00,12.8,12.8,15.10353700990731 + 07/25 08:20:00,12.8,12.8,15.039528222538989 + 07/25 08:30:00,12.8,12.8,14.987684665367429 + 07/25 08:40:00,12.8,12.8,14.938978239355562 + 07/25 08:50:00,12.8,12.8,14.89333049990011 + 07/25 09:00:00,12.8,12.8,14.850645160169549 + 07/25 09:10:00,12.8,12.8,14.810705844593148 + 07/25 09:20:00,12.8,12.8,14.762443441170169 + 07/25 09:30:00,12.8,12.8,14.726425565171234 + 07/25 09:40:00,12.8,12.8,14.692236876588574 + 07/25 09:50:00,12.8,12.8,14.65966600186278 + 07/25 10:00:00,12.8,12.8,14.628697333951582 + 07/25 10:10:00,12.8,12.8,14.598797737320599 + 07/25 10:20:00,12.8,12.8,14.566490838874936 + 07/25 10:30:00,12.8,12.8,14.538597914460054 + 07/25 10:40:00,12.8,12.8,14.512102375884883 + 07/25 10:50:00,12.8,12.8,14.487666189335464 + 07/25 11:00:00,12.8,12.8,14.465331631945297 + 07/25 11:10:00,12.8,12.8,14.445739273943277 + 07/25 11:20:00,12.8,12.8,14.437922622153204 + 07/25 11:30:00,12.8,12.8,14.422600321172176 + 07/25 11:40:00,12.8,12.8,14.408932137269489 + 07/25 11:50:00,12.8,12.8,14.397118108295848 + 07/25 12:00:00,12.8,12.8,14.386949821632113 + 07/25 12:10:00,12.8,12.8,14.378230880559475 + 07/25 12:20:00,12.8,12.8,14.361245055680943 + 07/25 12:30:00,12.8,12.8,14.355000943330879 + 07/25 12:40:00,12.8,12.8,14.349111481815667 + 07/25 12:50:00,12.8,12.8,14.341868951499699 + 07/25 13:00:00,12.8,12.8,14.332874969514914 + 07/25 13:10:00,12.8,12.8,14.32245884776154 + 07/25 13:20:00,12.8,12.8,14.31463038757341 + 07/25 13:30:00,12.8,12.8,14.30276804654135 + 07/25 13:40:00,12.8,12.8,14.29127443219971 + 07/25 13:50:00,12.8,12.8,14.281498581601058 + 07/25 14:00:00,12.8,12.8,14.273805254887183 + 07/25 14:10:00,12.8,12.8,14.2688290925793 + 07/25 14:20:00,12.8,12.8,14.268601948912155 + 07/25 14:30:00,12.8,12.8,14.26584046230502 + 07/25 14:40:00,12.8,12.8,14.26343242570096 + 07/25 14:50:00,12.8,12.8,14.260839513035088 + 07/25 15:00:00,12.8,12.8,14.257853548208873 + 07/25 15:10:00,12.8,12.8,16.40187025514718 + 07/25 15:20:00,12.8,12.8,16.663600488273067 + 07/25 15:30:00,12.8,12.8,16.765646384632669 + 07/25 15:40:00,12.8,12.8,16.84374033986089 + 07/25 15:50:00,12.8,12.8,16.901167078073237 + 07/25 16:00:00,12.8,12.8,16.948154798438844 + 07/25 16:10:00,12.8,12.8,17.015519452553744 + 07/25 16:20:00,12.8,12.8,17.072670570727916 + 07/25 16:30:00,12.8,12.8,17.107650113681446 + 07/25 16:40:00,12.8,12.8,17.14017859471492 + 07/25 16:50:00,12.8,12.8,17.17083276212589 + 07/25 17:00:00,12.8,12.8,17.199794427700107 + 07/25 17:10:00,12.8,12.8,17.23871414223782 + 07/25 17:15:00,12.8,12.8,17.26921028000955 + 07/25 17:20:00,12.8,12.8,17.26877025950739 + 07/25 17:30:00,12.8,12.8,17.290210917964126 + 07/25 17:40:00,12.8,12.8,17.310284369347167 + 07/25 17:50:00,12.8,12.8,17.32838628345595 + 07/25 18:00:00,12.8,12.8,17.34521176018771 + 07/25 18:10:00,12.8,12.8,17.360894534065893 + 07/25 18:20:00,12.8,12.8,17.375471042539077 + 07/25 18:30:00,12.8,12.8,17.389300950924907 + 07/25 18:40:00,12.8,12.8,17.402428902660188 + 07/25 18:50:00,12.8,12.8,17.414899839217325 + 07/25 19:00:00,12.8,12.8,17.42673187550686 + 07/25 19:10:00,12.8,12.8,17.450984361664106 + 07/25 19:20:00,12.8,12.8,17.462699530595854 + 07/25 19:30:00,12.8,12.8,17.47351817324749 + 07/25 19:40:00,12.8,12.8,17.48416128322898 + 07/25 19:50:00,12.8,12.8,17.49469093508562 + 07/25 20:00:00,12.8,12.8,17.50486144049777 + 07/25 20:10:00,12.8,12.8,17.4922555907427 + 07/25 20:20:00,12.8,12.8,17.50550597377703 + 07/25 20:30:00,12.8,12.8,17.514143074022269 + 07/25 20:40:00,12.8,12.8,17.522223508388259 + 07/25 20:50:00,12.8,12.8,17.529941067706724 + 07/25 21:00:00,12.8,12.8,17.537263373406007 + 07/25 21:10:00,12.8,12.8,17.54412650747831 + 07/25 21:20:00,12.8,12.8,17.550694401290515 + 07/25 21:30:00,12.8,12.8,17.557015534514698 + 07/25 21:40:00,12.8,12.8,17.56312065050107 + 07/25 21:50:00,12.8,12.8,17.568998773619869 + 07/25 22:00:00,12.8,12.8,17.574668837740444 + 07/25 22:10:00,12.8,12.8,18.937204230301004 + 07/25 22:20:00,12.8,12.8,19.086605894475228 + 07/25 22:30:00,12.8,12.8,19.15234554301736 + 07/25 22:40:00,12.8,12.8,19.206216476649005 + 07/25 22:50:00,12.8,12.8,19.247679501781275 + 07/25 23:00:00,12.8,12.8,19.282453897163469 + 07/25 23:10:00,12.8,12.8,19.3119791926031 + 07/25 23:20:00,12.8,12.8,19.338407020711377 + 07/25 23:30:00,12.8,12.8,19.362178985392498 + 07/25 23:40:00,12.8,12.8,19.383833874858316 + 07/25 23:50:00,12.8,12.8,19.40364595333849 + 07/25 24:00:00,12.8,12.8,19.421854991850315 + 07/26 00:10:00,12.8,12.8,19.438841686344725 + 07/26 00:20:00,12.8,12.8,19.45465336744471 + 07/26 00:30:00,12.8,12.8,19.46837840659492 + 07/26 00:40:00,12.8,12.8,19.482721480267228 + 07/26 00:50:00,12.8,12.8,19.495304450111875 + 07/26 01:00:00,12.8,12.8,19.507714327451884 + 07/26 01:10:00,12.8,12.8,19.519373402817498 + 07/26 01:20:00,12.8,12.8,19.52933316746144 + 07/26 01:30:00,12.8,12.8,19.5405950591387 + 07/26 01:40:00,12.8,12.8,19.550421632249173 + 07/26 01:50:00,12.8,12.8,19.560454740141638 + 07/26 02:00:00,12.8,12.8,19.568826080484496 + 07/26 02:10:00,12.8,12.8,19.57883965414316 + 07/26 02:20:00,12.8,12.8,19.5876489470165 + 07/26 02:30:00,12.8,12.8,19.59677854445377 + 07/26 02:40:00,12.8,12.8,19.60431257479208 + 07/26 02:50:00,12.8,12.8,19.613546676540869 + 07/26 03:00:00,12.8,12.8,19.62159144294253 + 07/26 03:10:00,12.8,12.8,19.629764843942458 + 07/26 03:20:00,12.8,12.8,19.636264944537229 + 07/26 03:30:00,12.8,12.8,19.64429584082645 + 07/26 03:40:00,12.8,12.8,19.651122094762358 + 07/26 03:50:00,12.8,12.8,19.658305941666744 + 07/26 04:00:00,12.8,12.8,19.663803005323694 + 07/26 04:10:00,12.8,12.8,19.670859996179475 + 07/26 04:20:00,12.8,12.8,19.676565337742905 + 07/26 04:30:00,12.8,12.8,19.682803965506055 + 07/26 04:40:00,12.8,12.8,19.68738896860444 + 07/26 04:50:00,12.8,12.8,19.693798757337889 + 07/26 05:00:00,12.8,12.8,19.698957436655616 + 07/26 05:10:00,12.8,12.8,19.70458249053314 + 07/26 05:20:00,12.8,12.8,19.708693636513624 + 07/26 05:30:00,12.8,12.8,19.713690677112728 + 07/26 05:40:00,12.8,12.8,19.71854974457828 + 07/26 05:50:00,12.8,12.8,19.72308468624322 + 07/26 06:00:00,12.8,12.8,19.72618669368585 + 07/26 06:05:00,12.8,12.8,17.71974988253075 + 07/26 06:10:00,12.8,12.8,17.72780206004238 + 07/26 06:20:00,12.8,12.8,17.485502029357883 + 07/26 06:30:00,12.8,12.8,17.392833174015466 + 07/26 06:40:00,12.8,12.8,17.326249767932788 + 07/26 06:50:00,12.8,12.8,17.27288797724075 + 07/26 07:00:00,12.8,12.8,17.228763976159209 + 07/26 07:05:00,12.8,12.8,15.737747539669627 + 07/26 07:10:00,12.8,12.8,15.744198733488459 + 07/26 07:15:00,12.8,12.8,15.516895407443095 + 07/26 07:20:00,12.8,12.8,15.515160894181582 + 07/26 07:30:00,12.8,12.8,15.412850259990423 + 07/26 07:40:00,12.8,12.8,15.330560455770616 + 07/26 07:50:00,12.8,12.8,15.26036368638848 + 07/26 08:00:00,12.8,12.8,15.199726331963494 + 07/26 08:03:19,12.8,12.8,15.120875172602421 + 07/26 08:06:40,12.8,12.8,15.12038973870859 + 07/26 08:10:00,12.8,12.8,15.120412763437003 + 07/26 08:20:00,12.8,12.8,15.0627170258529 + 07/26 08:30:00,12.8,12.8,15.017836573761747 + 07/26 08:40:00,12.8,12.8,14.976606954859906 + 07/26 08:50:00,12.8,12.8,14.938396988848356 + 07/26 09:00:00,12.8,12.8,14.902907584846848 + 07/26 09:10:00,12.8,12.8,14.869434789187649 + 07/26 09:20:00,12.8,12.8,14.827207772092207 + 07/26 09:30:00,12.8,12.8,14.796804099610823 + 07/26 09:40:00,12.8,12.8,14.766988697689593 + 07/26 09:50:00,12.8,12.8,14.736068272847769 + 07/26 10:00:00,12.8,12.8,14.703649487438316 + 07/26 10:10:00,12.8,12.8,14.670103854729094 + 07/26 10:20:00,12.8,12.8,14.632159814714206 + 07/26 10:30:00,12.8,12.8,14.597062525937427 + 07/26 10:40:00,12.8,12.8,14.56259293751072 + 07/26 10:50:00,12.8,12.8,14.530409235122458 + 07/26 11:00:00,12.8,12.8,14.501084320373579 + 07/26 11:10:00,12.8,12.8,14.474351740321609 + 07/26 11:20:00,12.8,12.8,14.459363693456439 + 07/26 11:30:00,12.8,12.8,14.43645045981906 + 07/26 11:40:00,12.8,12.8,14.41488494076507 + 07/26 11:50:00,12.8,12.8,14.394969439165886 + 07/26 12:00:00,12.8,12.8,14.376551110995074 + 07/26 12:10:00,12.8,12.8,14.359408964753776 + 07/26 12:20:00,12.8,12.8,14.333831919921524 + 07/26 12:30:00,12.8,12.8,14.31876279945065 + 07/26 12:40:00,12.8,12.8,14.305228201582818 + 07/26 12:50:00,12.8,12.8,14.293455357223058 + 07/26 13:00:00,12.8,12.8,14.283618269239876 + 07/26 13:10:00,12.8,12.8,14.275327740965416 + 07/26 13:20:00,12.8,12.8,14.271804422980042 + 07/26 13:30:00,12.8,12.8,14.265779034059902 + 07/26 13:40:00,12.8,12.8,14.260207121004779 + 07/26 13:50:00,12.8,12.8,14.25458482896855 + 07/26 14:00:00,12.8,12.8,14.248689502824949 + 07/26 14:10:00,12.8,12.8,14.242086910269564 + 07/26 14:20:00,12.8,12.8,14.239210810179383 + 07/26 14:30:00,12.8,12.8,14.233246894801996 + 07/26 14:40:00,12.8,12.8,14.227495369703849 + 07/26 14:50:00,12.8,12.8,14.221853672183924 + 07/26 15:00:00,12.8,12.8,14.216151059287622 + 07/26 15:05:00,12.8,12.8,16.375480643633474 + 07/26 15:10:00,12.8,12.8,16.36909462989853 + 07/26 15:20:00,12.8,12.8,16.627443231108147 + 07/26 15:30:00,12.8,12.8,16.730055170575818 + 07/26 15:40:00,12.8,12.8,16.8022962763213 + 07/26 15:50:00,12.8,12.8,16.85809141968983 + 07/26 16:00:00,12.8,12.8,16.90211171314012 + 07/26 16:10:00,12.8,12.8,16.964009942873365 + 07/26 16:20:00,12.8,12.8,17.01419969492672 + 07/26 16:30:00,12.8,12.8,17.04057565868691 + 07/26 16:40:00,12.8,12.8,17.063854924631376 + 07/26 16:50:00,12.8,12.8,17.085980177822358 + 07/26 17:00:00,12.8,12.8,17.107670587045385 + 07/26 17:10:00,12.8,12.8,17.142201723856247 + 07/26 17:15:00,12.8,12.8,17.17008623810932 + 07/26 17:20:00,12.8,12.8,17.169693741158207 + 07/26 17:30:00,12.8,12.8,17.190265711765947 + 07/26 17:40:00,12.8,12.8,17.210720151529395 + 07/26 17:50:00,12.8,12.8,17.22996488350013 + 07/26 18:00:00,12.8,12.8,17.24829611555512 + 07/26 18:10:00,12.8,12.8,17.266399021829629 + 07/26 18:20:00,12.8,12.8,17.284002815250905 + 07/26 18:30:00,12.8,12.8,17.301328823204995 + 07/26 18:40:00,12.8,12.8,17.318278004819697 + 07/26 18:50:00,12.8,12.8,17.33453523019371 + 07/26 19:00:00,12.8,12.8,17.350043524884858 + 07/26 19:10:00,12.8,12.8,17.377025522341474 + 07/26 19:20:00,12.8,12.8,17.391193103406637 + 07/26 19:30:00,12.8,12.8,17.40432425638656 + 07/26 19:40:00,12.8,12.8,17.417079509917337 + 07/26 19:50:00,12.8,12.8,17.42951491774421 + 07/26 20:00:00,12.8,12.8,17.44151138289805 + 07/26 20:10:00,12.8,12.8,17.43068569057068 + 07/26 20:20:00,12.8,12.8,17.445645829821044 + 07/26 20:30:00,12.8,12.8,17.45588235171163 + 07/26 20:40:00,12.8,12.8,17.46549381500866 + 07/26 20:50:00,12.8,12.8,17.474684719171607 + 07/26 21:00:00,12.8,12.8,17.483439268223696 + 07/26 21:10:00,12.8,12.8,17.49164250499968 + 07/26 21:20:00,12.8,12.8,17.49937503041808 + 07/26 21:30:00,12.8,12.8,17.506747614784289 + 07/26 21:40:00,12.8,12.8,17.51374497873584 + 07/26 21:50:00,12.8,12.8,17.520351118068438 + 07/26 22:00:00,12.8,12.8,17.52672979285052 + 07/26 22:10:00,12.8,12.8,18.890807591781308 + 07/26 22:20:00,12.8,12.8,19.042921081107158 + 07/26 22:30:00,12.8,12.8,19.110858322855948 + 07/26 22:40:00,12.8,12.8,19.165311533076954 + 07/26 22:50:00,12.8,12.8,19.208707008761299 + 07/26 23:00:00,12.8,12.8,19.245922421859654 + 07/26 23:10:00,12.8,12.8,19.27873175366578 + 07/26 23:20:00,12.8,12.8,19.308251336025117 + 07/26 23:30:00,12.8,12.8,19.33496134919898 + 07/26 23:40:00,12.8,12.8,19.35945728447068 + 07/26 23:50:00,12.8,12.8,19.382084677727 + 07/26 24:00:00,12.8,12.8,19.403130148549506 + 07/27 00:10:00,12.8,12.8,19.42258781570927 + 07/27 00:20:00,12.8,12.8,19.439943347040875 + 07/27 00:30:00,12.8,12.8,19.457364937741823 + 07/27 00:40:00,12.8,12.8,19.47308280278723 + 07/27 00:50:00,12.8,12.8,19.488428368643218 + 07/27 01:00:00,12.8,12.8,19.50220900802241 + 07/27 01:10:00,12.8,12.8,19.516962765702347 + 07/27 01:20:00,12.8,12.8,19.530062294380163 + 07/27 01:30:00,12.8,12.8,19.542761562943498 + 07/27 01:40:00,12.8,12.8,19.553576323974565 + 07/27 01:50:00,12.8,12.8,19.565147600707069 + 07/27 02:00:00,12.8,12.8,19.575335184313329 + 07/27 02:10:00,12.8,12.8,19.58533971609853 + 07/27 02:20:00,12.8,12.8,19.593369694896539 + 07/27 02:30:00,12.8,12.8,19.60213769873312 + 07/27 02:40:00,12.8,12.8,19.609178807813558 + 07/27 02:50:00,12.8,12.8,19.61500845424954 + 07/27 03:00:00,12.8,12.8,19.62128839062133 + 07/27 03:10:00,12.8,12.8,19.62602922969193 + 07/27 03:20:00,12.8,12.8,19.630147527280515 + 07/27 03:30:00,12.8,12.8,19.635765995110558 + 07/27 03:40:00,12.8,12.8,19.640651147294244 + 07/27 03:50:00,12.8,12.8,19.64501874379841 + 07/27 04:00:00,12.8,12.8,19.65092072095621 + 07/27 04:10:00,12.8,12.8,19.65606408504356 + 07/27 04:20:00,12.8,12.8,19.66065624429746 + 07/27 04:30:00,12.8,12.8,19.666680347439607 + 07/27 04:40:00,12.8,12.8,19.67174016431129 + 07/27 04:50:00,12.8,12.8,19.676140335912796 + 07/27 05:00:00,12.8,12.8,19.68203276370367 + 07/27 05:10:00,12.8,12.8,19.687360100673659 + 07/27 05:20:00,12.8,12.8,19.69205139294662 + 07/27 05:30:00,12.8,12.8,19.69745422440418 + 07/27 05:40:00,12.8,12.8,19.702973434838627 + 07/27 05:50:00,12.8,12.8,19.70848592409782 + 07/27 06:00:00,12.8,12.8,19.712963928645814 + 07/27 06:05:00,12.8,12.8,17.706944428513823 + 07/27 06:10:00,12.8,12.8,17.71501895744649 + 07/27 06:20:00,12.8,12.8,17.473551275824215 + 07/27 06:30:00,12.8,12.8,17.381815491260807 + 07/27 06:40:00,12.8,12.8,17.316145519055163 + 07/27 06:50:00,12.8,12.8,17.263823733794277 + 07/27 07:00:00,12.8,12.8,17.220778753416928 + 07/27 07:05:00,12.8,12.8,15.731608158721505 + 07/27 07:10:00,12.8,12.8,15.738029651523043 + 07/27 07:15:00,12.8,12.8,15.512965106419387 + 07/27 07:20:00,12.8,12.8,15.511233138162933 + 07/27 07:30:00,12.8,12.8,15.411370579080455 + 07/27 07:40:00,12.8,12.8,15.331951743147727 + 07/27 07:50:00,12.8,12.8,15.26535820190906 + 07/27 08:00:00,12.8,12.8,15.208808282817638 + 07/27 08:03:19,12.8,12.8,15.134596930487293 + 07/27 08:06:40,12.8,12.8,15.134069543959399 + 07/27 08:10:00,12.8,12.8,15.134091697545403 + 07/27 08:20:00,12.8,12.8,15.081258757496077 + 07/27 08:30:00,12.8,12.8,15.041716733231361 + 07/27 08:40:00,12.8,12.8,15.0053946575778 + 07/27 08:50:00,12.8,12.8,14.971016393608459 + 07/27 09:00:00,12.8,12.8,14.937915437443659 + 07/27 09:10:00,12.8,12.8,14.905620620272508 + 07/27 09:20:00,12.8,12.8,14.863572615463659 + 07/27 09:30:00,12.8,12.8,14.832628109329704 + 07/27 09:40:00,12.8,12.8,14.803048140904349 + 07/27 09:50:00,12.8,12.8,14.775472686911991 + 07/27 10:00:00,12.8,12.8,14.75020667006462 + 07/27 10:10:00,12.8,12.8,14.726450000401105 + 07/27 10:20:00,12.8,12.8,14.700741038555327 + 07/27 10:30:00,12.8,12.8,14.67970641291243 + 07/27 10:40:00,12.8,12.8,14.659482598367083 + 07/27 10:50:00,12.8,12.8,14.63946360832036 + 07/27 11:00:00,12.8,12.8,14.619398187731328 + 07/27 11:10:00,12.8,12.8,14.599686151615409 + 07/27 11:20:00,12.8,12.8,14.589907730101509 + 07/27 11:30:00,12.8,12.8,14.570928161677287 + 07/27 11:40:00,12.8,12.8,14.552541171833479 + 07/27 11:50:00,12.8,12.8,14.535479125275984 + 07/27 12:00:00,12.8,12.8,14.519865799293888 + 07/27 12:10:00,12.8,12.8,14.505212607897685 + 07/27 12:20:00,12.8,12.8,14.481688530902474 + 07/27 12:30:00,12.8,12.8,14.46827341437909 + 07/27 12:40:00,12.8,12.8,14.455505580233634 + 07/27 12:50:00,12.8,12.8,14.443102892357763 + 07/27 13:00:00,12.8,12.8,14.431111396200162 + 07/27 13:10:00,12.8,12.8,14.419708282144328 + 07/27 13:20:00,12.8,12.8,14.41230777042092 + 07/27 13:30:00,12.8,12.8,14.401980034113855 + 07/27 13:40:00,12.8,12.8,14.391995216699622 + 07/27 13:50:00,12.8,12.8,14.382294483622133 + 07/27 14:00:00,12.8,12.8,14.372737729513395 + 07/27 14:10:00,12.8,12.8,14.363663032052804 + 07/27 14:20:00,12.8,12.8,14.358446489953302 + 07/27 14:30:00,12.8,12.8,14.350202043829214 + 07/27 14:40:00,12.8,12.8,14.342791124187797 + 07/27 14:50:00,12.8,12.8,14.336363902639578 + 07/27 15:00:00,12.8,12.8,14.331359982766794 + 07/27 15:05:00,12.8,12.8,16.485439716126295 + 07/27 15:10:00,12.8,12.8,16.48071729592261 + 07/27 15:20:00,12.8,12.8,16.737405796201295 + 07/27 15:30:00,12.8,12.8,16.8426538950824 + 07/27 15:40:00,12.8,12.8,16.922861855119014 + 07/27 15:50:00,12.8,12.8,16.98388379457011 + 07/27 16:00:00,12.8,12.8,17.03331502171288 + 07/27 16:10:00,12.8,12.8,17.100150135617068 + 07/27 16:20:00,12.8,12.8,17.154980526152764 + 07/27 16:30:00,12.8,12.8,17.18582155181518 + 07/27 16:40:00,12.8,12.8,17.212747906428853 + 07/27 16:50:00,12.8,12.8,17.236641212397303 + 07/27 17:00:00,12.8,12.8,17.25828969524718 + 07/27 17:10:00,12.8,12.8,17.291333283894426 + 07/27 17:20:00,12.8,12.8,17.315544548764298 + 07/27 17:30:00,12.8,12.8,17.33289167932827 + 07/27 17:40:00,12.8,12.8,17.34918352032399 + 07/27 17:50:00,12.8,12.8,17.36493038355712 + 07/27 18:00:00,12.8,12.8,17.380247317374335 + 07/27 18:10:00,12.8,12.8,17.395358539417729 + 07/27 18:20:00,12.8,12.8,17.41017891188125 + 07/27 18:30:00,12.8,12.8,17.42485278447686 + 07/27 18:40:00,12.8,12.8,17.438953314379444 + 07/27 18:50:00,12.8,12.8,17.452599205989068 + 07/27 19:00:00,12.8,12.8,17.465436096188495 + 07/27 19:10:00,12.8,12.8,17.490468745343777 + 07/27 19:20:00,12.8,12.8,17.502838079664408 + 07/27 19:30:00,12.8,12.8,17.51421893392825 + 07/27 19:40:00,12.8,12.8,17.525317845176685 + 07/27 19:50:00,12.8,12.8,17.536164530243704 + 07/27 20:00:00,12.8,12.8,17.546479553893894 + 07/27 20:10:00,12.8,12.8,17.53373755334381 + 07/27 20:20:00,12.8,12.8,17.546886491199467 + 07/27 20:30:00,12.8,12.8,17.555446213998168 + 07/27 20:40:00,12.833633633633636,12.833633633633636,17.56351342478418 + 07/27 20:50:00,12.87987987987988,12.87987987987988,17.571272885457 + 07/27 21:00:00,12.926126126126127,12.926126126126127,17.5786872233647 + 07/27 21:10:00,12.926126126126127,12.926126126126127,17.586368009969524 + 07/27 21:20:00,12.926126126126127,12.926126126126127,17.593620168719619 + 07/27 21:30:00,12.926126126126127,12.926126126126127,17.60056286483023 + 07/27 21:40:00,12.926126126126127,12.926126126126127,17.607221205449599 + 07/27 21:50:00,12.926126126126127,12.926126126126127,17.61357597006102 + 07/27 22:00:00,12.926126126126127,12.926126126126127,17.619652716530866 + 07/27 22:10:00,12.926126126126127,12.926126126126127,18.981778438117126 + 07/27 22:20:00,12.926126126126127,12.926126126126127,19.129504009905064 + 07/27 22:30:00,12.926126126126127,12.926126126126127,19.194569739580094 + 07/27 22:40:00,12.926126126126127,12.926126126126127,19.24730644934484 + 07/27 22:50:00,12.926126126126127,12.926126126126127,19.2896808103674 + 07/27 23:00:00,12.926126126126127,12.926126126126127,19.325189274711286 + 07/27 23:10:00,12.926126126126127,12.926126126126127,19.353628755412897 + 07/27 23:20:00,12.926126126126127,12.926126126126127,19.37990088129148 + 07/27 23:30:00,12.926126126126127,12.926126126126127,19.40275098619447 + 07/27 23:40:00,12.926126126126127,12.926126126126127,19.423792595644206 + 07/27 23:50:00,12.926126126126127,12.926126126126127,19.44305113327015 + 07/27 24:00:00,12.926126126126127,12.926126126126127,19.460754573914728 + 07/28 00:10:00,12.951351351351353,12.951351351351353,19.477775088909554 + 07/28 00:20:00,12.976576576576577,12.976576576576577,19.493809848077008 + 07/28 00:30:00,13.001801801801803,13.001801801801803,19.50766271376474 + 07/28 00:40:00,13.027027027027028,13.027027027027028,19.522817523653388 + 07/28 00:50:00,13.052252252252253,13.052252252252253,19.536118661153176 + 07/28 01:00:00,13.077477477477478,13.077477477477478,19.54958188791134 + 07/28 01:10:00,13.077477477477478,13.077477477477478,19.560489599106238 + 07/28 01:20:00,13.077477477477478,13.077477477477478,19.57188879500311 + 07/28 01:30:00,13.077477477477478,13.077477477477478,19.58283070684942 + 07/28 01:40:00,13.077477477477478,13.077477477477478,19.592793640568148 + 07/28 01:50:00,13.077477477477478,13.077477477477478,19.602720718111056 + 07/28 02:00:00,13.077477477477478,13.077477477477478,19.612121711212258 + 07/28 02:10:00,13.077477477477478,13.077477477477478,19.62111769494894 + 07/28 02:20:00,13.077477477477478,13.077477477477478,19.629773500224468 + 07/28 02:30:00,13.077477477477478,13.077477477477478,19.638070645549076 + 07/28 02:40:00,13.077477477477478,13.077477477477478,19.646043566890826 + 07/28 02:50:00,13.077477477477478,13.077477477477478,19.653806607819108 + 07/28 03:00:00,13.077477477477478,13.077477477477478,19.661312351227143 + 07/28 03:10:00,13.102702702702704,13.102702702702704,19.669443317800913 + 07/28 03:20:00,13.127927927927928,13.127927927927928,19.677400491493857 + 07/28 03:30:00,13.153153153153154,13.153153153153154,19.68514058698191 + 07/28 03:40:00,13.17837837837838,13.17837837837838,19.69284126616387 + 07/28 03:50:00,13.203603603603604,13.203603603603604,19.700419879653304 + 07/28 04:00:00,13.22882882882883,13.22882882882883,19.70788031581554 + 07/28 04:10:00,13.22882882882883,13.22882882882883,19.714397078891776 + 07/28 04:20:00,13.22882882882883,13.22882882882883,19.720619650128606 + 07/28 04:30:00,13.22882882882883,13.22882882882883,19.726715364066366 + 07/28 04:40:00,13.22882882882883,13.22882882882883,19.732615842939138 + 07/28 04:50:00,13.22882882882883,13.22882882882883,19.738321560979594 + 07/28 05:00:00,13.22882882882883,13.22882882882883,19.74384537746581 + 07/28 05:10:00,13.22882882882883,13.22882882882883,19.74880462515263 + 07/28 05:20:00,13.22882882882883,13.22882882882883,19.75363987891671 + 07/28 05:30:00,13.22882882882883,13.22882882882883,19.758362272573604 + 07/28 05:40:00,13.22882882882883,13.22882882882883,19.762945207804778 + 07/28 05:50:00,13.22882882882883,13.22882882882883,19.76739663503506 + 07/28 06:00:00,13.22882882882883,13.22882882882883,19.77148544067321 + 07/28 06:10:00,13.22882882882883,13.22882882882883,17.785951477227298 + 07/28 06:20:00,13.22882882882883,13.22882882882883,17.534317068808649 + 07/28 06:30:00,13.22882882882883,13.22882882882883,17.44753745754983 + 07/28 06:40:00,13.22882882882883,13.22882882882883,17.37779077076168 + 07/28 06:50:00,13.22882882882883,13.22882882882883,17.3257228896963 + 07/28 07:00:00,13.22882882882883,13.22882882882883,17.282655037745088 + 07/28 07:05:00,13.22882882882883,13.22882882882883,15.794463590908587 + 07/28 07:10:00,13.22882882882883,13.22882882882883,15.801011593524962 + 07/28 07:15:00,13.22882882882883,13.22882882882883,15.576057814990789 + 07/28 07:20:00,13.22882882882883,13.22882882882883,15.574310405137976 + 07/28 07:30:00,13.22882882882883,13.22882882882883,15.474233755366502 + 07/28 07:40:00,13.22882882882883,13.22882882882883,15.394431449796848 + 07/28 07:50:00,13.22882882882883,13.22882882882883,15.32714839383503 + 07/28 08:00:00,13.22882882882883,13.22882882882883,15.269903929171166 + 07/28 08:03:19,13.22882882882883,13.22882882882883,15.194429931277016 + 07/28 08:06:40,13.22882882882883,13.22882882882883,15.193939459672409 + 07/28 08:10:00,13.22882882882883,13.22882882882883,15.193978711237838 + 07/28 08:20:00,13.22882882882883,13.22882882882883,15.139848455376466 + 07/28 08:30:00,13.22882882882883,13.22882882882883,15.098877256427862 + 07/28 08:35:00,13.22882882882883,13.22882882882883,15.061925166841985 + 07/28 08:40:00,13.22882882882883,13.22882882882883,15.061981428367993 + 07/28 08:50:00,13.22882882882883,13.22882882882883,15.02713859408461 + 07/28 09:00:00,13.22882882882883,13.22882882882883,14.995642843539392 + 07/28 09:10:00,13.22882882882883,13.22882882882883,14.966147370354849 + 07/28 09:20:00,13.22882882882883,13.22882882882883,14.928084820583584 + 07/28 09:30:00,13.22882882882883,13.22882882882883,14.902140016109748 + 07/28 09:40:00,13.22882882882883,13.22882882882883,14.877751867134167 + 07/28 09:50:00,13.22882882882883,13.22882882882883,14.854525376095772 + 07/28 10:00:00,13.22882882882883,13.22882882882883,14.832384324473262 + 07/28 10:10:00,13.22882882882883,13.22882882882883,14.811313184509667 + 07/28 10:20:00,13.22882882882883,13.22882882882883,14.787652216995796 + 07/28 10:30:00,13.22882882882883,13.22882882882883,14.768242395086503 + 07/28 10:40:00,13.22882882882883,13.22882882882883,14.749868344662419 + 07/28 10:50:00,13.22882882882883,13.22882882882883,14.732380158513259 + 07/28 11:00:00,13.22882882882883,13.22882882882883,14.715866468599387 + 07/28 11:10:00,13.22882882882883,13.22882882882883,14.700234880692526 + 07/28 11:20:00,13.22882882882883,13.22882882882883,14.695047403762484 + 07/28 11:30:00,13.22882882882883,13.22882882882883,14.681070228546299 + 07/28 11:40:00,13.22882882882883,13.22882882882883,14.667574800440744 + 07/28 11:50:00,13.22882882882883,13.22882882882883,14.65468400183465 + 07/28 12:00:00,13.22882882882883,13.22882882882883,14.641132363300402 + 07/28 12:10:00,13.22882882882883,13.22882882882883,14.635515731775352 + 07/28 12:20:00,13.22882882882883,13.22882882882883,14.608625393651009 + 07/28 12:30:00,13.22882882882883,13.22882882882883,14.592426233528729 + 07/28 12:40:00,13.22882882882883,13.22882882882883,14.602057443535588 + 07/28 12:50:00,13.22882882882883,13.22882882882883,14.572728848259697 + 07/28 13:00:00,13.22882882882883,13.22882882882883,14.550654858079968 + 07/28 13:10:00,13.22882882882883,13.22882882882883,14.572026808424722 + 07/28 13:20:00,13.22882882882883,13.22882882882883,14.533010885272472 + 07/28 13:30:00,13.22882882882883,13.22882882882883,14.505389645298953 + 07/28 13:40:00,13.22882882882883,13.22882882882883,14.54129682148968 + 07/28 13:45:00,13.22882882882883,13.22882882882883,14.463321479718397 + 07/28 13:50:00,13.22882882882883,13.22882882882883,14.493889168173569 + 07/28 14:00:00,13.22882882882883,13.22882882882883,14.47298473997959 + 07/28 14:05:00,13.22882882882883,13.22882882882883,14.46725772827096 + 07/28 14:10:00,13.22882882882883,13.22882882882883,14.46835154539109 + 07/28 14:20:00,13.22882882882883,13.22882882882883,14.46627216004942 + 07/28 14:25:00,13.22882882882883,13.22882882882883,14.469267292520615 + 07/28 14:30:00,13.22882882882883,13.22882882882883,14.465259489061652 + 07/28 14:40:00,13.22882882882883,13.22882882882883,14.46352968921024 + 07/28 14:45:00,13.22882882882883,13.22882882882883,14.465914706578536 + 07/28 14:50:00,13.22882882882883,13.22882882882883,14.461535631839725 + 07/28 15:00:00,13.22882882882883,13.22882882882883,14.457492657153044 + 07/28 15:10:00,13.22882882882883,13.22882882882883,16.59734557930979 + 07/28 15:15:00,13.22882882882883,13.22882882882883,16.855548340511598 + 07/28 15:20:00,13.22882882882883,13.22882882882883,16.85177964539269 + 07/28 15:25:00,13.22882882882883,13.22882882882883,16.9535013876992 + 07/28 15:30:00,13.22882882882883,13.22882882882883,16.951391524388723 + 07/28 15:40:00,13.22882882882883,13.22882882882883,17.02484029080521 + 07/28 15:50:00,13.22882882882883,13.22882882882883,17.07801005791605 + 07/28 16:00:00,13.22882882882883,13.22882882882883,17.120939172389958 + 07/28 16:10:00,13.24984984984985,13.24984984984985,17.18388915893581 + 07/28 16:20:00,13.270870870870871,13.270870870870871,17.2356931479832 + 07/28 16:30:00,13.291891891891894,13.291891891891894,17.264875747508424 + 07/28 16:40:00,13.312912912912914,13.312912912912914,17.291199100453047 + 07/28 16:50:00,13.333933933933935,13.333933933933935,17.31526310497687 + 07/28 17:00:00,13.354954954954956,13.354954954954956,17.337437557589135 + 07/28 17:10:00,13.354954954954956,13.354954954954956,17.370422373722965 + 07/28 17:20:00,13.354954954954956,13.354954954954956,17.394938760559556 + 07/28 17:30:00,13.354954954954956,13.354954954954956,17.41253759681629 + 07/28 17:40:00,13.354954954954956,13.354954954954956,17.429070027834976 + 07/28 17:50:00,13.354954954954956,13.354954954954956,17.444937145175314 + 07/28 18:00:00,13.354954954954956,13.354954954954956,17.46022213238443 + 07/28 18:10:00,13.354954954954956,13.354954954954956,17.474762690461426 + 07/28 18:20:00,13.354954954954956,13.354954954954956,17.488792728303947 + 07/28 18:30:00,13.354954954954956,13.354954954954956,17.502417657576243 + 07/28 18:40:00,13.354954954954956,13.354954954954956,17.515599951006967 + 07/28 18:50:00,13.354954954954956,13.354954954954956,17.528192120161184 + 07/28 19:00:00,13.354954954954956,13.354954954954956,17.540208672909068 + 07/28 19:10:00,13.380180180180182,13.380180180180182,17.565057923607598 + 07/28 19:20:00,13.405405405405407,13.405405405405407,17.577452658865327 + 07/28 19:30:00,13.430630630630632,13.430630630630632,17.589102479394336 + 07/28 19:40:00,13.455855855855857,13.455855855855857,17.60066364366311 + 07/28 19:50:00,13.481081081081081,13.481081081081081,17.61206104902635 + 07/28 20:00:00,13.506306306306307,13.506306306306307,17.62302377119588 + 07/28 20:10:00,13.506306306306307,13.506306306306307,17.61062462983879 + 07/28 20:20:00,13.506306306306307,13.506306306306307,17.623942023434496 + 07/28 20:30:00,13.506306306306307,13.506306306306307,17.632504061094858 + 07/28 20:40:00,13.506306306306307,13.506306306306307,17.640416170448345 + 07/28 20:50:00,13.506306306306307,13.506306306306307,17.64788878914272 + 07/28 21:00:00,13.506306306306307,13.506306306306307,17.654909224778384 + 07/28 21:10:00,13.527327327327328,13.527327327327328,17.662114999013107 + 07/28 21:20:00,13.548348348348349,13.548348348348349,17.668953053729838 + 07/28 21:30:00,13.56936936936937,13.56936936936937,17.67558734258985 + 07/28 21:40:00,13.590390390390392,13.590390390390392,17.682004596065178 + 07/28 21:50:00,13.611411411411412,13.611411411411412,17.68818490695209 + 07/28 22:00:00,13.632432432432433,13.632432432432433,17.694271774321068 + 07/28 22:10:00,13.657657657657659,13.657657657657659,19.054777347516209 + 07/28 22:20:00,13.682882882882883,13.682882882882883,19.204247478894876 + 07/28 22:30:00,13.708108108108109,13.708108108108109,19.26570411328949 + 07/28 22:40:00,13.733333333333335,13.733333333333335,19.31559828904444 + 07/28 22:50:00,13.758558558558559,13.758558558558559,19.35453708160656 + 07/28 23:00:00,13.783783783783785,13.783783783783785,19.38736448037108 + 07/28 23:10:00,13.783783783783785,13.783783783783785,19.416497957318627 + 07/28 23:20:00,13.783783783783785,13.783783783783785,19.442757932850559 + 07/28 23:30:00,13.783783783783785,13.783783783783785,19.466183653080944 + 07/28 23:40:00,13.783783783783785,13.783783783783785,19.48758322188558 + 07/28 23:50:00,13.783783783783785,13.783783783783785,19.507024953846359 + 07/28 24:00:00,13.783783783783785,13.783783783783785,19.52503431753048 + 07/29 00:10:00,13.783783783783785,13.783783783783785,19.540847761769766 + 07/29 00:20:00,13.783783783783785,13.783783783783785,19.55554039933142 + 07/29 00:30:00,13.783783783783785,13.783783783783785,19.56931267075938 + 07/29 00:40:00,13.783783783783785,13.783783783783785,19.58231992427087 + 07/29 00:50:00,13.783783783783785,13.783783783783785,19.59460946652611 + 07/29 01:00:00,13.783783783783785,13.783783783783785,19.60626047157242 + 07/29 01:10:00,13.758558558558559,13.758558558558559,19.617977612071635 + 07/29 01:20:00,13.733333333333335,13.733333333333335,19.62958755177864 + 07/29 01:30:00,13.708108108108109,13.708108108108109,19.640686631751799 + 07/29 01:40:00,13.682882882882883,13.682882882882883,19.651348234230306 + 07/29 01:50:00,13.657657657657659,13.657657657657659,19.66149358905608 + 07/29 02:00:00,13.632432432432433,13.632432432432433,19.671154020346405 + 07/29 02:10:00,13.632432432432433,13.632432432432433,19.680012045186364 + 07/29 02:20:00,13.632432432432433,13.632432432432433,19.68805183079936 + 07/29 02:30:00,13.632432432432433,13.632432432432433,19.695861426410898 + 07/29 02:40:00,13.632432432432433,13.632432432432433,19.70331043714187 + 07/29 02:50:00,13.632432432432433,13.632432432432433,19.71054913129511 + 07/29 03:00:00,13.632432432432433,13.632432432432433,19.71748759978907 + 07/29 03:10:00,13.657657657657659,13.657657657657659,19.724652504168018 + 07/29 03:20:00,13.682882882882883,13.682882882882883,19.731558708364945 + 07/29 03:30:00,13.708108108108109,13.708108108108109,19.73832313346772 + 07/29 03:40:00,13.733333333333335,13.733333333333335,19.744947756506578 + 07/29 03:50:00,13.758558558558559,13.758558558558559,19.751374008151517 + 07/29 04:00:00,13.783783783783785,13.783783783783785,19.757706684041417 + 07/29 04:10:00,13.758558558558559,13.758558558558559,19.763914512429325 + 07/29 04:20:00,13.733333333333335,13.733333333333335,19.77050214308852 + 07/29 04:30:00,13.708108108108109,13.708108108108109,19.776817908925808 + 07/29 04:40:00,13.682882882882883,13.682882882882883,19.782935992465835 + 07/29 04:50:00,13.657657657657659,13.657657657657659,19.788796625322694 + 07/29 05:00:00,13.632432432432433,13.632432432432433,19.794419559835008 + 07/29 05:10:00,13.632432432432433,13.632432432432433,19.799670375055578 + 07/29 05:20:00,13.632432432432433,13.632432432432433,19.8037337283477 + 07/29 05:30:00,13.632432432432433,13.632432432432433,19.807745306580907 + 07/29 05:40:00,13.632432432432433,13.632432432432433,19.81139218527012 + 07/29 05:50:00,13.632432432432433,13.632432432432433,19.815090949797435 + 07/29 06:00:00,13.632432432432433,13.632432432432433,19.818519989782879 + 07/29 06:10:00,13.632432432432433,13.632432432432433,19.164665732584319 + 07/29 06:20:00,13.632432432432433,13.632432432432433,19.09834145480188 + 07/29 06:30:00,13.632432432432433,13.632432432432433,19.0726704830523 + 07/29 06:40:00,13.632432432432433,13.632432432432433,19.053179543208715 + 07/29 06:50:00,13.632432432432433,13.632432432432433,19.038001904034464 + 07/29 07:00:00,13.632432432432433,13.632432432432433,19.025570315923728 + 07/29 07:10:00,13.632432432432433,13.632432432432433,17.947377008957309 + 07/29 07:20:00,13.632432432432433,13.632432432432433,17.78949821196808 + 07/29 07:30:00,13.632432432432433,13.632432432432433,17.727182549601545 + 07/29 07:40:00,13.632432432432433,13.632432432432433,17.675658953138119 + 07/29 07:50:00,13.632432432432433,13.632432432432433,17.635591480471289 + 07/29 08:00:00,13.632432432432433,13.632432432432433,17.601430359958099 + 07/29 08:10:00,13.632432432432433,13.632432432432433,17.57177427760825 + 07/29 08:20:00,13.632432432432433,13.632432432432433,17.53669730383065 + 07/29 08:30:00,13.632432432432433,13.632432432432433,17.512900950757463 + 07/29 08:40:00,13.632432432432433,13.632432432432433,17.491306301040738 + 07/29 08:50:00,13.632432432432433,13.632432432432433,17.471392785644036 + 07/29 09:00:00,13.632432432432433,13.632432432432433,17.45293550654639 + 07/29 09:10:00,13.611411411411412,13.611411411411412,17.435637619311643 + 07/29 09:20:00,13.590390390390392,13.590390390390392,17.410619182475288 + 07/29 09:30:00,13.56936936936937,13.56936936936937,17.395066951005096 + 07/29 09:40:00,13.548348348348349,13.548348348348349,17.37996615921094 + 07/29 09:50:00,13.527327327327328,13.527327327327328,17.364521854159709 + 07/29 10:00:00,13.506306306306307,13.506306306306307,17.34852008664207 + 07/29 10:10:00,13.46006006006006,13.46006006006006,17.33215074780017 + 07/29 10:20:00,13.413813813813814,13.413813813813814,17.31523064394762 + 07/29 10:30:00,13.367567567567568,13.367567567567568,17.297998915673284 + 07/29 10:40:00,13.321321321321323,13.321321321321323,17.280943291825474 + 07/29 10:50:00,13.275075075075077,13.275075075075077,17.26476559855916 + 07/29 11:00:00,13.22882882882883,13.22882882882883,17.249717319691898 + 07/29 11:10:00,13.203603603603604,13.203603603603604,17.235658328251099 + 07/29 11:20:00,13.17837837837838,13.17837837837838,17.222524121382337 + 07/29 11:30:00,13.153153153153154,13.153153153153154,17.210155007340885 + 07/29 11:40:00,13.12792792792793,13.12792792792793,17.198882497199006 + 07/29 11:50:00,13.102702702702704,13.102702702702704,17.18930914990962 + 07/29 12:00:00,13.077477477477478,13.077477477477478,17.181621810856556 + 07/29 12:10:00,13.077477477477478,13.077477477477478,17.17585554820461 + 07/29 12:20:00,13.077477477477478,13.077477477477478,17.17152201437064 + 07/29 12:30:00,13.077477477477478,13.077477477477478,17.16842922097222 + 07/29 12:40:00,13.077477477477478,13.077477477477478,17.16609768205378 + 07/29 12:50:00,13.077477477477478,13.077477477477478,17.163833745684707 + 07/29 13:00:00,13.077477477477478,13.077477477477478,17.161320331007386 + 07/29 13:10:00,13.006006006006008,13.006006006006008,17.15791418297637 + 07/29 13:20:00,12.934534534534535,12.934534534534535,17.153973075465975 + 07/29 13:30:00,12.863063063063063,12.863063063063063,17.14955912164315 + 07/29 13:40:00,12.8,12.8,17.14440477504099 + 07/29 13:50:00,12.8,12.8,17.13804254051948 + 07/29 14:00:00,12.8,12.8,17.130320825987956 + 07/29 14:10:00,12.8,12.8,17.121426035077677 + 07/29 14:20:00,12.8,12.8,17.111573487046074 + 07/29 14:30:00,12.8,12.8,17.10091420008157 + 07/29 14:40:00,12.8,12.8,17.090365786739338 + 07/29 14:50:00,12.8,12.8,17.08130253662809 + 07/29 15:00:00,12.8,12.8,17.07407015335211 + 07/29 15:10:00,12.8,12.8,17.06889764165006 + 07/29 15:20:00,12.8,12.8,17.065483759734965 + 07/29 15:30:00,12.8,12.8,17.06353341748009 + 07/29 15:40:00,12.8,12.8,17.062556215114417 + 07/29 15:50:00,12.8,12.8,17.061933821837607 + 07/29 16:00:00,12.8,12.8,17.06133191808783 + 07/29 16:10:00,12.8,12.8,17.073985323927319 + 07/29 16:20:00,12.8,12.8,17.0836275992777 + 07/29 16:30:00,12.8,12.8,17.08453279199921 + 07/29 16:40:00,12.8,12.8,17.0856912878581 + 07/29 16:50:00,12.8,12.8,17.08712568285925 + 07/29 17:00:00,12.8,12.8,17.088731518253007 + 07/29 17:10:00,12.8,12.8,18.844054645027354 + 07/29 17:20:00,12.8,12.8,19.059655027031039 + 07/29 17:30:00,12.8,12.8,19.14373979535187 + 07/29 17:40:00,12.8,12.8,19.2105146390399 + 07/29 17:50:00,12.8,12.8,19.262940566404823 + 07/29 18:00:00,12.8,12.8,19.303523218818094 + 07/29 18:10:00,12.8,12.8,19.351527539269836 + 07/29 18:20:00,12.8,12.8,19.382333809306176 + 07/29 18:30:00,12.8,12.8,19.409254090471618 + 07/29 18:40:00,12.8,12.8,19.433614927339819 + 07/29 18:50:00,12.8,12.8,19.45592009188279 + 07/29 19:00:00,12.8,12.8,19.47649219525293 + 07/29 19:10:00,12.8,12.8,19.495827117296924 + 07/29 19:20:00,12.8,12.8,19.514177697661084 + 07/29 19:30:00,12.8,12.8,19.53188083236754 + 07/29 19:40:00,12.8,12.8,19.548981413471357 + 07/29 19:50:00,12.8,12.8,19.56547991165906 + 07/29 20:00:00,12.8,12.8,19.581255856052598 + 07/29 20:10:00,12.821021021021022,12.821021021021022,19.573722600269986 + 07/29 20:20:00,12.842042042042042,12.842042042042042,19.587307671723449 + 07/29 20:30:00,12.863063063063063,12.863063063063063,19.600180500138973 + 07/29 20:40:00,12.884084084084084,12.884084084084084,19.612171162597844 + 07/29 20:50:00,12.905105105105106,12.905105105105106,19.62347332385823 + 07/29 21:00:00,12.926126126126127,12.926126126126127,19.63419677000612 + 07/29 21:10:00,12.926126126126127,12.926126126126127,19.644518237197035 + 07/29 21:20:00,12.926126126126127,12.926126126126127,19.65428297147638 + 07/29 21:30:00,12.926126126126127,12.926126126126127,19.663498955813546 + 07/29 21:40:00,12.926126126126127,12.926126126126127,19.672174236418923 + 07/29 21:50:00,12.926126126126127,12.926126126126127,19.680420826516675 + 07/29 22:00:00,12.926126126126127,12.926126126126127,19.688370765020314 + 07/29 22:10:00,12.926126126126127,12.926126126126127,19.6962013629584 + 07/29 22:20:00,12.926126126126127,12.926126126126127,19.704022472134779 + 07/29 22:30:00,12.926126126126127,12.926126126126127,19.711739740724228 + 07/29 22:40:00,12.926126126126127,12.926126126126127,19.719558471132797 + 07/29 22:50:00,12.926126126126127,12.926126126126127,19.727388959375625 + 07/29 23:00:00,12.926126126126127,12.926126126126127,19.735207581919739 + 07/29 23:10:00,12.951351351351353,12.951351351351353,19.742805632396377 + 07/29 23:20:00,12.976576576576577,12.976576576576577,19.75042324684176 + 07/29 23:30:00,13.001801801801803,13.001801801801803,19.757685194111596 + 07/29 23:40:00,13.027027027027028,13.027027027027028,19.764827201551208 + 07/29 23:50:00,13.052252252252253,13.052252252252253,19.771685407967664 + 07/29 24:00:00,13.077477477477478,13.077477477477478,19.777184830783495 + 07/30 00:10:00,13.077477477477478,13.077477477477478,19.7832708373974 + 07/30 00:20:00,13.077477477477478,13.077477477477478,19.78861381741427 + 07/30 00:30:00,13.077477477477478,13.077477477477478,19.793676997894886 + 07/30 00:40:00,13.077477477477478,13.077477477477478,19.79818664120842 + 07/30 00:50:00,13.077477477477478,13.077477477477478,19.802177716797354 + 07/30 01:00:00,13.077477477477478,13.077477477477478,19.805684085127916 + 07/30 01:10:00,13.077477477477478,13.077477477477478,19.8087947130999 + 07/30 01:20:00,13.077477477477478,13.077477477477478,19.811751137238415 + 07/30 01:30:00,13.077477477477478,13.077477477477478,19.81455838773459 + 07/30 01:40:00,13.077477477477478,13.077477477477478,19.817225841214328 + 07/30 01:50:00,13.077477477477478,13.077477477477478,19.819790218175677 + 07/30 02:00:00,13.077477477477478,13.077477477477478,19.822169606302528 + 07/30 02:10:00,13.031231231231232,13.031231231231232,19.824363930133189 + 07/30 02:20:00,12.984984984984987,12.984984984984987,19.826777700946037 + 07/30 02:30:00,12.938738738738739,12.938738738738739,19.82889912174655 + 07/30 02:40:00,12.892492492492494,12.892492492492494,19.83102515047719 + 07/30 02:50:00,12.846246246246248,12.846246246246248,19.83290553183017 + 07/30 03:00:00,12.8,12.8,19.833545782582545 + 07/30 03:10:00,12.8,12.8,19.83606353640179 + 07/30 03:20:00,12.8,12.8,19.83757597900441 + 07/30 03:30:00,12.8,12.8,19.839746599793476 + 07/30 03:40:00,12.8,12.8,19.84041515679557 + 07/30 03:50:00,12.8,12.8,19.843147971496536 + 07/30 04:00:00,12.8,12.8,19.84483885423761 + 07/30 04:10:00,12.8,12.8,19.847199315156077 + 07/30 04:20:00,12.8,12.8,19.84800813338317 + 07/30 04:30:00,12.8,12.8,19.850830681182115 + 07/30 04:40:00,12.8,12.8,19.852470206396949 + 07/30 04:50:00,12.8,12.8,19.85482668664818 + 07/30 05:00:00,12.8,12.8,19.855592420807633 + 07/30 05:10:00,12.8,12.8,19.858456377411366 + 07/30 05:20:00,12.8,12.8,19.86012290394639 + 07/30 05:30:00,12.8,12.8,19.862356461988769 + 07/30 05:40:00,12.8,12.8,19.863023540054134 + 07/30 05:50:00,12.8,12.8,19.86578939416923 + 07/30 06:00:00,12.8,12.8,19.867074170036877 + 07/30 06:10:00,12.8,12.8,19.890739795693265 + 07/30 06:20:00,12.8,12.8,19.890098192033976 + 07/30 06:30:00,12.8,12.8,19.89035451154752 + 07/30 06:40:00,12.8,12.8,19.890114799005134 + 07/30 06:50:00,12.8,12.8,19.889959970791034 + 07/30 07:00:00,12.8,12.8,19.889679135446067 + 07/30 07:10:00,12.8,12.8,18.500325185640969 + 07/30 07:20:00,12.8,12.8,18.322411995019569 + 07/30 07:30:00,12.8,12.8,18.256551234208389 + 07/30 07:40:00,12.8,12.8,18.202637601370314 + 07/30 07:50:00,12.8,12.8,18.16072495849717 + 07/30 08:00:00,12.8,12.8,18.124992494030157 + 07/30 08:10:00,12.8,12.8,18.09308045607598 + 07/30 08:20:00,12.8,12.8,18.055443500734904 + 07/30 08:30:00,12.8,12.8,18.028871254902197 + 07/30 08:40:00,12.8,12.8,18.004318364279255 + 07/30 08:50:00,12.8,12.8,17.981285180395333 + 07/30 09:00:00,12.8,12.8,17.95952454100493 + 07/30 09:10:00,12.8,12.8,17.939212503403565 + 07/30 09:20:00,12.8,12.8,17.911300462330475 + 07/30 09:30:00,12.8,12.8,17.89288016179136 + 07/30 09:40:00,12.8,12.8,17.87507309855218 + 07/30 09:50:00,12.8,12.8,17.85693380584455 + 07/30 10:00:00,12.8,12.8,17.83807473471994 + 07/30 10:10:00,12.8,12.8,17.818087177927958 + 07/30 10:20:00,12.8,12.8,17.797431582845264 + 07/30 10:30:00,12.8,12.8,17.776097761661356 + 07/30 10:40:00,12.8,12.8,17.75460219672235 + 07/30 10:50:00,12.8,12.8,17.734007975241135 + 07/30 11:00:00,12.8,12.8,17.71458376550604 + 07/30 11:10:00,12.8,12.8,17.696636442181665 + 07/30 11:20:00,12.8,12.8,17.67960632833688 + 07/30 11:30:00,12.8,12.8,17.663408436647367 + 07/30 11:40:00,12.8,12.8,17.648268463661894 + 07/30 11:50:00,12.8,12.8,17.634663961799587 + 07/30 12:00:00,12.8,12.8,17.62292517422896 + 07/30 12:10:00,12.8,12.8,17.61252592132179 + 07/30 12:20:00,12.8,12.8,17.60344050593052 + 07/30 12:30:00,12.8,12.8,17.59546244070997 + 07/30 12:40:00,12.8,12.8,17.58783344091582 + 07/30 12:50:00,12.8,12.8,17.579399336954475 + 07/30 13:00:00,12.8,12.8,17.569718741317354 + 07/30 13:10:00,12.8,12.8,17.558988498936956 + 07/30 13:20:00,12.8,12.8,17.547872153041554 + 07/30 13:30:00,12.8,12.8,17.536605681295705 + 07/30 13:40:00,12.8,12.8,17.525807810916314 + 07/30 13:50:00,12.8,12.8,17.516074539966234 + 07/30 14:00:00,12.8,12.8,17.507540588622548 + 07/30 14:10:00,12.8,12.8,17.500626610188175 + 07/30 14:20:00,12.8,12.8,17.49426921841568 + 07/30 14:30:00,12.8,12.8,17.488178059152575 + 07/30 14:40:00,12.8,12.8,17.48230594875583 + 07/30 14:50:00,12.8,12.8,17.476962365488594 + 07/30 15:00:00,12.8,12.8,17.47214877894863 + 07/30 15:10:00,12.8,12.8,18.88638815831094 + 07/30 15:20:00,12.8,12.8,19.040329940195698 + 07/30 15:30:00,12.8,12.8,19.103364454847026 + 07/30 15:40:00,12.8,12.8,19.154231213572424 + 07/30 15:50:00,12.8,12.8,19.193100396151544 + 07/30 16:00:00,12.8,12.8,19.225251810238729 + 07/30 16:10:00,12.8,12.8,19.253267721181027 + 07/30 16:20:00,12.8,12.8,19.28708693039144 + 07/30 16:30:00,12.8,12.8,19.30997319102073 + 07/30 16:40:00,12.8,12.8,19.3306220737107 + 07/30 16:50:00,12.8,12.8,19.348454344465034 + 07/30 17:00:00,12.8,12.8,19.36397372463987 + 07/30 17:10:00,12.8,12.8,19.37768679157915 + 07/30 17:20:00,12.8,12.8,19.40745736342455 + 07/30 17:30:00,12.8,12.8,19.419097655274393 + 07/30 17:40:00,12.8,12.8,19.43038723900267 + 07/30 17:50:00,12.8,12.8,19.442342486505639 + 07/30 18:00:00,12.8,12.8,19.4553085424431 + 07/30 18:10:00,12.8,12.8,19.469301923702024 + 07/30 18:20:00,12.8,12.8,19.483588318801549 + 07/30 18:30:00,12.8,12.8,19.497915340600497 + 07/30 18:40:00,12.8,12.8,19.511904811982967 + 07/30 18:50:00,12.8,12.8,19.52541810431692 + 07/30 19:00:00,12.8,12.8,19.538386617221648 + 07/30 19:10:00,12.8,12.8,19.550582775629584 + 07/30 19:20:00,12.8,12.8,19.56213598597204 + 07/30 19:30:00,12.8,12.8,19.57308330768455 + 07/30 19:40:00,12.8,12.8,19.58364984057237 + 07/30 19:50:00,12.8,12.8,19.593881182186565 + 07/30 20:00:00,12.8,12.8,19.60345117543374 + 07/30 20:10:00,12.8,12.8,19.59008238695435 + 07/30 20:20:00,12.8,12.8,19.598255310141466 + 07/30 20:30:00,12.8,12.8,19.60609478560276 + 07/30 20:40:00,12.8,12.8,19.613718421290416 + 07/30 20:50:00,12.8,12.8,19.62116576147612 + 07/30 21:00:00,12.8,12.8,19.628428599980525 + 07/30 21:10:00,12.8,12.8,19.63524669448948 + 07/30 21:20:00,12.8,12.8,19.64160018363947 + 07/30 21:30:00,12.8,12.8,19.647661477917695 + 07/30 21:40:00,12.8,12.8,19.653353899738748 + 07/30 21:50:00,12.8,12.8,19.658707773910288 + 07/30 22:00:00,12.8,12.8,19.663756006695608 + 07/30 22:10:00,12.8,12.8,19.66866105957608 + 07/30 22:20:00,12.8,12.8,19.673873401926345 + 07/30 22:30:00,12.8,12.8,19.67951961959885 + 07/30 22:40:00,12.8,12.8,19.685588036345828 + 07/30 22:50:00,12.8,12.8,19.692100233942406 + 07/30 23:00:00,12.8,12.8,19.698864011023177 + 07/30 23:10:00,12.8,12.8,19.705697930232458 + 07/30 23:20:00,12.8,12.8,19.712616815408948 + 07/30 23:30:00,12.8,12.8,19.71891867614016 + 07/30 23:40:00,12.8,12.8,19.72486238016294 + 07/30 23:50:00,12.8,12.8,19.730289636122067 + 07/30 24:00:00,12.8,12.8,19.734085807948284 + 07/31 00:10:00,12.8,12.8,19.739274305316497 + 07/31 00:20:00,12.8,12.8,19.742931252442724 + 07/31 00:30:00,12.8,12.8,19.746889862097299 + 07/31 00:40:00,12.8,12.8,19.749078880932044 + 07/31 00:50:00,12.8,12.8,19.752898021027606 + 07/31 01:00:00,12.8,12.8,19.75547365069092 + 07/31 01:10:00,12.8,12.8,19.7586727257684 + 07/31 01:20:00,12.8,12.8,19.760420824343148 + 07/31 01:30:00,12.8,12.8,19.764363924507348 + 07/31 01:40:00,12.8,12.8,19.767313794041713 + 07/31 01:50:00,12.8,12.8,19.77118320895596 + 07/31 02:00:00,12.8,12.8,19.775031421603936 + 07/31 02:10:00,12.8,12.8,19.77747018535238 + 07/31 02:20:00,12.8,12.8,19.78228891808093 + 07/31 02:30:00,12.8,12.8,19.785959382313857 + 07/31 02:40:00,12.8,12.8,19.790520652241516 + 07/31 02:50:00,12.8,12.8,19.795017093319104 + 07/31 03:00:00,12.8,12.8,19.7980837497881 + 07/31 03:10:00,12.8,12.8,19.80356394997687 + 07/31 03:20:00,12.8,12.8,19.80776732054615 + 07/31 03:30:00,12.8,12.8,19.81272279247708 + 07/31 03:40:00,12.8,12.8,19.81751560082662 + 07/31 03:50:00,12.8,12.8,19.82082553486226 + 07/31 04:00:00,12.8,12.8,19.8265834454104 + 07/31 04:10:00,12.821021021021022,12.821021021021022,19.831568080299218 + 07/31 04:20:00,12.842042042042042,12.842042042042042,19.83704266801734 + 07/31 04:30:00,12.863063063063063,12.863063063063063,19.84210889702323 + 07/31 04:40:00,12.884084084084084,12.884084084084084,19.845472520310083 + 07/31 04:50:00,12.905105105105106,12.905105105105106,19.85093403397502 + 07/31 05:00:00,12.926126126126127,12.926126126126127,19.855001101003177 + 07/31 05:10:00,12.926126126126127,12.926126126126127,19.85896957622937 + 07/31 05:20:00,12.926126126126127,12.926126126126127,19.86131559871367 + 07/31 05:30:00,12.926126126126127,12.926126126126127,19.865522994240505 + 07/31 05:40:00,12.926126126126127,12.926126126126127,19.868482925129855 + 07/31 05:50:00,12.926126126126127,12.926126126126127,19.87088526558211 + 07/31 06:00:00,12.926126126126127,12.926126126126127,19.87425869186801 + 07/31 06:10:00,12.905105105105106,12.905105105105106,17.890978724764265 + 07/31 06:20:00,12.884084084084084,12.884084084084084,17.63650829167129 + 07/31 06:30:00,12.863063063063063,12.863063063063063,17.546667354092045 + 07/31 06:40:00,12.842042042042042,12.842042042042042,17.47304306005515 + 07/31 06:50:00,12.821021021021022,12.821021021021022,17.416905954248415 + 07/31 07:00:00,12.8,12.8,17.36906316659926 + 07/31 07:05:00,12.8,12.8,15.876744043976072 + 07/31 07:10:00,12.8,12.8,15.883275439499972 + 07/31 07:15:00,12.8,12.8,15.65091414014182 + 07/31 07:20:00,12.8,12.8,15.649180969452863 + 07/31 07:30:00,12.8,12.8,15.540051605121159 + 07/31 07:40:00,12.8,12.8,15.449862204538985 + 07/31 07:50:00,12.8,12.8,15.371335649121923 + 07/31 08:00:00,12.8,12.8,15.30229603250653 + 07/31 08:05:00,12.8,12.8,15.213800598811389 + 07/31 08:10:00,12.8,12.8,15.214035264491578 + 07/31 08:20:00,12.8,12.8,15.148088656524282 + 07/31 08:30:00,12.8,12.8,15.094433503487532 + 07/31 08:40:00,12.8,12.8,15.04429280536321 + 07/31 08:50:00,12.8,12.8,14.997076328843825 + 07/31 09:00:00,12.8,12.8,14.952487266738509 + 07/31 09:10:00,12.8,12.8,14.91049828091787 + 07/31 09:20:00,12.8,12.8,14.859964472649829 + 07/31 09:30:00,12.8,12.8,14.821520292761387 + 07/31 09:40:00,12.8,12.8,14.785061791357647 + 07/31 09:50:00,12.8,12.8,14.750837835459994 + 07/31 10:00:00,12.8,12.8,14.719015883972352 + 07/31 10:10:00,12.8,12.8,14.689311500715558 + 07/31 10:20:00,12.8,12.8,14.658362511187173 + 07/31 10:30:00,12.8,12.8,14.633049436317357 + 07/31 10:40:00,12.8,12.8,14.609004454814379 + 07/31 10:50:00,12.8,12.8,14.585006707165876 + 07/31 11:00:00,12.8,12.8,14.56055935272858 + 07/31 11:10:00,12.8,12.8,14.535753799154845 + 07/31 11:20:00,12.8,12.8,14.520479012838307 + 07/31 11:30:00,12.8,12.8,14.495711201123026 + 07/31 11:40:00,12.8,12.8,14.471584761273134 + 07/31 11:50:00,12.8,12.8,14.449416131334413 + 07/31 12:00:00,12.8,12.8,14.42933269277066 + 07/31 12:10:00,12.8,12.8,14.411066908767705 + 07/31 12:20:00,12.8,12.8,14.384917001423018 + 07/31 12:30:00,12.8,12.8,14.369782776857584 + 07/31 12:40:00,12.8,12.8,14.35564330950719 + 07/31 12:50:00,12.8,12.8,14.341569067392497 + 07/31 13:00:00,12.8,12.8,14.327338476178497 + 07/31 13:10:00,12.8,12.8,14.313386465435324 + 07/31 13:20:00,12.8,12.8,14.302944709159144 + 07/31 13:30:00,12.8,12.8,14.289095644624041 + 07/31 13:40:00,12.8,12.8,14.276151448955967 + 07/31 13:50:00,12.8,12.8,14.26549737991387 + 07/31 14:00:00,12.8,12.8,14.257279990280482 + 07/31 14:10:00,12.8,12.8,14.250642583905869 + 07/31 14:20:00,12.8,12.8,14.249579792683555 + 07/31 14:30:00,12.8,12.8,14.246772608289583 + 07/31 14:40:00,12.8,12.8,14.24445338038303 + 07/31 14:50:00,12.8,12.8,14.241179898189209 + 07/31 15:00:00,12.8,12.8,14.236385446583512 + 07/31 15:05:00,12.8,12.8,16.394010704290794 + 07/31 15:10:00,12.8,12.8,16.387727365569466 + 07/31 15:15:00,12.8,12.8,16.650426657941439 + 07/31 15:20:00,12.8,12.8,16.64810017201759 + 07/31 15:30:00,12.8,12.8,16.743024903050896 + 07/31 15:40:00,12.8,12.8,16.812265466277134 + 07/31 15:50:00,12.8,12.8,16.865863345347408 + 07/31 16:00:00,12.8,12.8,16.90877105913266 + 07/31 16:10:00,12.8,12.8,16.97090467538722 + 07/31 16:20:00,12.8,12.8,17.02198178637179 + 07/31 16:30:00,12.8,12.8,17.049604936763914 + 07/31 16:40:00,12.8,12.8,17.07406965167637 + 07/31 16:50:00,12.8,12.8,17.09657270411512 + 07/31 17:00:00,12.8,12.8,17.11757901758956 + 07/31 17:10:00,12.8,12.8,17.15059156311599 + 07/31 17:20:00,12.8,12.8,17.175624598935284 + 07/31 17:30:00,12.8,12.8,17.194311482857793 + 07/31 17:40:00,12.8,12.8,17.21230411243911 + 07/31 17:50:00,12.8,12.8,17.230242760576784 + 07/31 18:00:00,12.8,12.8,17.248158155183569 + 07/31 18:10:00,12.8,12.8,17.26593710082945 + 07/31 18:20:00,12.8,12.8,17.283318697370534 + 07/31 18:30:00,12.8,12.8,17.30023405970659 + 07/31 18:40:00,12.8,12.8,17.316498801392336 + 07/31 18:50:00,12.8,12.8,17.33183056438004 + 07/31 19:00:00,12.8,12.8,17.346241119707608 + 07/31 19:10:00,12.8,12.8,17.373087992527514 + 07/31 19:20:00,12.8,12.8,17.387436976807778 + 07/31 19:30:00,12.8,12.8,17.401199174345643 + 07/31 19:40:00,12.8,12.8,17.414932469785389 + 07/31 19:50:00,12.8,12.8,17.42846670282898 + 07/31 20:00:00,12.8,12.8,17.44161210248084 + 07/31 20:10:00,12.8,12.8,17.431656061076873 + 07/31 20:20:00,12.8,12.8,17.447503491382724 + 07/31 20:30:00,12.8,12.8,17.4586609812929 + 07/31 20:40:00,12.8,12.8,17.469119905686364 + 07/31 20:50:00,12.8,12.8,17.479216842699896 + 07/31 21:00:00,12.8,12.8,17.48892361931327 + 07/31 21:10:00,12.8,12.8,17.498257753043384 + 07/31 21:20:00,12.8,12.8,17.507053941279854 + 07/31 21:30:00,12.8,12.8,17.515437505898054 + 07/31 21:40:00,12.8,12.8,17.52340637177081 + 07/31 21:50:00,12.8,12.8,17.53096255255698 + 07/31 22:00:00,12.8,12.8,17.53827100769439 + 07/31 22:10:00,12.8,12.8,18.90259713849196 + 07/31 22:20:00,12.8,12.8,19.05470102194405 + 07/31 22:30:00,12.8,12.8,19.121494961207718 + 07/31 22:40:00,12.8,12.8,19.17334518211181 + 07/31 22:50:00,12.8,12.8,19.213815346336064 + 07/31 23:00:00,12.8,12.8,19.247003567003355 + 07/31 23:10:00,12.8,12.8,19.275759951308154 + 07/31 23:20:00,12.8,12.8,19.30152731334551 + 07/31 23:30:00,12.8,12.8,19.324890201742759 + 07/31 23:40:00,12.8,12.8,19.346539746989956 + 07/31 23:50:00,12.8,12.8,19.365923696284719 + 07/31 24:00:00,12.8,12.8,19.385371713364934 + 08/01 00:10:00,12.8,12.8,19.403109145056328 + 08/01 00:20:00,12.8,12.8,19.419472143034285 + 08/01 00:30:00,12.8,12.8,19.436109198795064 + 08/01 00:40:00,12.8,12.8,19.451410686713396 + 08/01 00:50:00,12.8,12.8,19.466450412147329 + 08/01 01:00:00,12.8,12.8,19.480785162824099 + 08/01 01:10:00,12.8,12.8,19.494504578694554 + 08/01 01:20:00,12.8,12.8,19.50757513569045 + 08/01 01:30:00,12.8,12.8,19.518972568662087 + 08/01 01:40:00,12.8,12.8,19.531465101346705 + 08/01 01:50:00,12.8,12.8,19.542508484789427 + 08/01 02:00:00,12.8,12.8,19.553596136327078 + 08/01 02:10:00,12.8,12.8,19.562827713563693 + 08/01 02:20:00,12.8,12.8,19.57351748080037 + 08/01 02:30:00,12.8,12.8,19.582898196500687 + 08/01 02:40:00,12.8,12.8,19.592513580162298 + 08/01 02:50:00,12.8,12.8,19.60056156730156 + 08/01 03:00:00,12.8,12.8,19.609872553053987 + 08/01 03:10:00,12.8,12.8,19.61811082101429 + 08/01 03:20:00,12.8,12.8,19.626613540675807 + 08/01 03:30:00,12.8,12.8,19.63358442392117 + 08/01 03:40:00,12.8,12.8,19.642035739668186 + 08/01 03:50:00,12.8,12.8,19.649261828315109 + 08/01 04:00:00,12.8,12.8,19.656866445566448 + 08/01 04:10:00,12.8,12.8,19.662987633972784 + 08/01 04:20:00,12.8,12.8,19.670776964762636 + 08/01 04:30:00,12.8,12.8,19.677419241684839 + 08/01 04:40:00,12.8,12.8,19.68448200789583 + 08/01 04:50:00,12.8,12.8,19.689927831196888 + 08/01 05:00:00,12.8,12.8,19.697282108770055 + 08/01 05:10:00,12.8,12.8,19.70331865450817 + 08/01 05:20:00,12.8,12.8,19.708780611149864 + 08/01 05:30:00,12.8,12.8,19.715429369140506 + 08/01 05:40:00,12.8,12.8,19.720252539560876 + 08/01 05:50:00,12.8,12.8,19.72661741615566 + 08/01 06:00:00,12.8,12.8,19.73182081215719 + 08/01 06:10:00,12.8,12.8,17.744775990646628 + 08/01 06:15:00,12.8,12.8,17.489960862485785 + 08/01 06:20:00,12.8,12.8,17.494743899272487 + 08/01 06:30:00,12.8,12.8,17.403963075787688 + 08/01 06:40:00,12.8,12.8,17.333191804611997 + 08/01 06:50:00,12.8,12.8,17.27984052300934 + 08/01 07:00:00,12.8,12.8,17.23422874796263 + 08/01 07:05:00,12.8,12.8,15.742408614922656 + 08/01 07:10:00,12.8,12.8,15.748374537024079 + 08/01 07:15:00,12.8,12.8,15.51816014438624 + 08/01 07:20:00,12.8,12.8,15.516381117769985 + 08/01 07:30:00,12.8,12.8,15.409279574675299 + 08/01 07:40:00,12.8,12.8,15.320772478636693 + 08/01 07:50:00,12.8,12.8,15.243333502799116 + 08/01 08:00:00,12.8,12.8,15.174836916937446 + 08/01 08:03:19,12.8,12.8,15.087327384559148 + 08/01 08:06:40,12.8,12.8,15.087013388760843 + 08/01 08:10:00,12.8,12.8,15.086912409618313 + 08/01 08:20:00,12.8,12.8,15.020984077379012 + 08/01 08:30:00,12.8,12.8,14.967901083929512 + 08/01 08:40:00,12.8,12.8,14.918607167702899 + 08/01 08:50:00,12.8,12.8,14.872640609186229 + 08/01 09:00:00,12.8,12.8,14.829725985485525 + 08/01 09:10:00,12.8,12.8,14.789690194729115 + 08/01 09:20:00,12.8,12.8,14.741151903622797 + 08/01 09:30:00,12.8,12.8,14.704620226128127 + 08/01 09:40:00,12.8,12.8,14.6696856741211 + 08/01 09:50:00,12.8,12.8,14.636172879882949 + 08/01 10:00:00,12.8,12.8,14.604058181835838 + 08/01 10:10:00,12.8,12.8,14.573586092617737 + 08/01 10:20:00,12.8,12.8,14.540736801324453 + 08/01 10:30:00,12.8,12.8,14.512331073968797 + 08/01 10:40:00,12.8,12.8,14.48505513945824 + 08/01 10:50:00,12.8,12.8,14.459041489722385 + 08/01 11:00:00,12.8,12.8,14.434365071506506 + 08/01 11:10:00,12.8,12.8,14.411653986227407 + 08/01 11:20:00,12.8,12.8,14.399567028982045 + 08/01 11:30:00,12.8,12.8,14.378677940201941 + 08/01 11:40:00,12.8,12.8,14.358230377543143 + 08/01 11:50:00,12.8,12.8,14.338159014898757 + 08/01 12:00:00,12.8,12.8,14.317723223236446 + 08/01 12:10:00,12.8,12.8,14.295840411893673 + 08/01 12:20:00,12.8,12.8,14.265015848937378 + 08/01 12:30:00,12.8,12.8,14.245030724203835 + 08/01 12:40:00,12.8,12.8,14.226429929311888 + 08/01 12:50:00,12.8,12.8,14.208711513056413 + 08/01 13:00:00,12.8,12.8,14.191772485738046 + 08/01 13:10:00,12.8,12.8,14.175043156454598 + 08/01 13:20:00,12.8,12.8,14.164385850746735 + 08/01 13:30:00,12.8,12.8,14.15217648419913 + 08/01 13:40:00,12.8,12.8,14.141599590882958 + 08/01 13:50:00,12.8,12.8,14.132851739439259 + 08/01 14:00:00,12.8,12.8,14.125779672348 + 08/01 14:10:00,12.8,12.8,14.121609527887229 + 08/01 14:20:00,12.8,12.8,14.12139831189828 + 08/01 14:30:00,12.8,12.8,14.117864033543429 + 08/01 14:40:00,12.8,12.8,14.114104881963721 + 08/01 14:50:00,12.8,12.8,14.10977803358789 + 08/01 15:00:00,12.8,12.8,14.104922709117372 + 08/01 15:05:00,12.8,12.8,16.26134098396325 + 08/01 15:10:00,12.8,12.8,16.2565932753887 + 08/01 15:20:00,12.8,12.8,16.511831638587393 + 08/01 15:30:00,12.8,12.8,16.61307566209814 + 08/01 15:40:00,12.8,12.8,16.688530678078555 + 08/01 15:50:00,12.8,12.8,16.746241237841298 + 08/01 16:00:00,12.8,12.8,16.791983238601877 + 08/01 16:10:00,12.8,12.8,16.855495006376196 + 08/01 16:20:00,12.8,12.8,16.9077477144492 + 08/01 16:30:00,12.8,12.8,16.936852898091087 + 08/01 16:40:00,12.8,12.8,16.962928099721134 + 08/01 16:50:00,12.8,12.8,16.9870975385587 + 08/01 17:00:00,12.8,12.8,17.009733058152965 + 08/01 17:10:00,12.8,12.8,17.047023077435627 + 08/01 17:15:00,12.8,12.8,17.076908818031947 + 08/01 17:20:00,12.8,12.8,17.076503677249784 + 08/01 17:30:00,12.8,12.8,17.098399115958018 + 08/01 17:40:00,12.8,12.8,17.120101208928494 + 08/01 17:50:00,12.8,12.8,17.14139829323991 + 08/01 18:00:00,12.8,12.8,17.16267203455785 + 08/01 18:10:00,12.8,12.8,17.182711985116805 + 08/01 18:20:00,12.8,12.8,17.202486940579168 + 08/01 18:30:00,12.8,12.8,17.221883369865937 + 08/01 18:40:00,12.8,12.8,17.240511297287048 + 08/01 18:50:00,12.8,12.8,17.257975043438518 + 08/01 19:00:00,12.8,12.8,17.2741545305206 + 08/01 19:10:00,12.8,12.8,17.30381549659522 + 08/01 19:20:00,12.8,12.8,17.32059254700583 + 08/01 19:30:00,12.8,12.8,17.3363685548575 + 08/01 19:40:00,12.8,12.8,17.35174323931882 + 08/01 19:50:00,12.8,12.8,17.366618851106656 + 08/01 20:00:00,12.8,12.8,17.38084104011361 + 08/01 20:10:00,12.8,12.8,17.371473882994196 + 08/01 20:20:00,12.8,12.8,17.387385975481619 + 08/01 20:30:00,12.8,12.8,17.397738100778306 + 08/01 20:40:00,12.8,12.8,17.406687374715124 + 08/01 20:50:00,12.8,12.8,17.41443373974449 + 08/01 21:00:00,12.8,12.8,17.42099720524825 + 08/01 21:10:00,12.8,12.8,17.427562463088259 + 08/01 21:20:00,12.8,12.8,17.433716004300444 + 08/01 21:30:00,12.8,12.8,17.439736134665084 + 08/01 21:40:00,12.8,12.8,17.445699192575689 + 08/01 21:50:00,12.8,12.8,17.45161727298537 + 08/01 22:00:00,12.8,12.8,17.457483271517075 + 08/01 22:10:00,12.8,12.8,18.82210111840746 + 08/01 22:20:00,12.8,12.8,18.972387291260664 + 08/01 22:30:00,12.8,12.8,19.038922988050947 + 08/01 22:40:00,12.8,12.8,19.093681171385364 + 08/01 22:50:00,12.8,12.8,19.138117220193715 + 08/01 23:00:00,12.8,12.8,19.17376059427999 + 08/01 23:10:00,12.8,12.8,19.20585939162802 + 08/01 23:20:00,12.8,12.8,19.234490480751579 + 08/01 23:30:00,12.8,12.8,19.26058133903214 + 08/01 23:40:00,12.8,12.8,19.284776107488548 + 08/01 23:50:00,12.8,12.8,19.307234506054987 + 08/01 24:00:00,12.8,12.8,19.32822348446559 + 08/02 00:10:00,12.8,12.8,19.347964868814285 + 08/02 00:20:00,12.8,12.8,19.365692748125718 + 08/02 00:30:00,12.8,12.8,19.38346343372867 + 08/02 00:40:00,12.8,12.8,19.399633007776754 + 08/02 00:50:00,12.8,12.8,19.415302509347954 + 08/02 01:00:00,12.8,12.8,19.42925371378302 + 08/02 01:10:00,12.8,12.8,19.443810172111094 + 08/02 01:20:00,12.8,12.8,19.45692886444988 + 08/02 01:30:00,12.8,12.8,19.46902801032962 + 08/02 01:40:00,12.8,12.8,19.48150166799839 + 08/02 01:50:00,12.8,12.8,19.492799848138909 + 08/02 02:00:00,12.8,12.8,19.503206781172595 + 08/02 02:10:00,12.8,12.8,19.5143624063081 + 08/02 02:20:00,12.8,12.8,19.524543913045024 + 08/02 02:30:00,12.8,12.8,19.53399470408126 + 08/02 02:40:00,12.8,12.8,19.54433580122155 + 08/02 02:50:00,12.8,12.8,19.553850807326968 + 08/02 03:00:00,12.8,12.8,19.562724563141989 + 08/02 03:10:00,12.8,12.8,19.57252925901625 + 08/02 03:20:00,12.8,12.8,19.581412190554138 + 08/02 03:30:00,12.8,12.8,19.590426817268928 + 08/02 03:40:00,12.8,12.8,19.598109384022146 + 08/02 03:50:00,12.8,12.8,19.607215644678417 + 08/02 04:00:00,12.8,12.8,19.615241772918546 + 08/02 04:10:00,12.8,12.8,19.62359988107388 + 08/02 04:20:00,12.8,12.8,19.630327860573087 + 08/02 04:30:00,12.8,12.8,19.638688666069734 + 08/02 04:40:00,12.8,12.8,19.645899634609717 + 08/02 04:50:00,12.8,12.8,19.65348667807022 + 08/02 05:00:00,12.8,12.8,19.659530727610318 + 08/02 05:10:00,12.8,12.8,19.666981956885594 + 08/02 05:20:00,12.8,12.8,19.673200529332016 + 08/02 05:30:00,12.8,12.8,19.678792540848897 + 08/02 05:40:00,12.8,12.8,19.68538929597811 + 08/02 05:50:00,12.8,12.8,19.690938872919 + 08/02 06:00:00,12.8,12.8,19.695491629894133 + 08/02 06:10:00,12.8,12.8,17.708743027062405 + 08/02 06:20:00,12.8,12.8,17.454827870974257 + 08/02 06:30:00,12.8,12.8,17.36733913670446 + 08/02 06:40:00,12.8,12.8,17.296235959756289 + 08/02 06:50:00,12.8,12.8,17.242418183895784 + 08/02 07:00:00,12.8,12.8,17.196727679152347 + 08/02 07:05:00,12.8,12.8,15.70265778086331 + 08/02 07:10:00,12.8,12.8,15.709254166935337 + 08/02 07:15:00,12.8,12.8,15.478085372954944 + 08/02 07:20:00,12.8,12.8,15.4763200006388 + 08/02 07:30:00,12.8,12.8,15.369273940464077 + 08/02 07:40:00,12.8,12.8,15.28152347116352 + 08/02 07:50:00,12.8,12.8,15.205794875429808 + 08/02 08:00:00,12.8,12.8,15.13976772826872 + 08/02 08:03:19,12.8,12.8,15.055442037506513 + 08/02 08:06:40,12.8,12.8,15.05503972902252 + 08/02 08:10:00,12.8,12.8,15.055019077766716 + 08/02 08:20:00,12.8,12.8,14.991800035898932 + 08/02 08:30:00,12.8,12.8,14.940919539978918 + 08/02 08:40:00,12.8,12.8,14.893146404316046 + 08/02 08:50:00,12.8,12.8,14.848065526622565 + 08/02 09:00:00,12.8,12.8,14.805438283762842 + 08/02 09:10:00,12.8,12.8,14.764527564529219 + 08/02 09:20:00,12.8,12.8,14.71501302654508 + 08/02 09:30:00,12.8,12.8,14.677634690898584 + 08/02 09:40:00,12.8,12.8,14.642071635249007 + 08/02 09:50:00,12.8,12.8,14.608193465097772 + 08/02 10:00:00,12.8,12.8,14.57599559585646 + 08/02 10:10:00,12.8,12.8,14.54566364676279 + 08/02 10:20:00,12.8,12.8,14.513261616745722 + 08/02 10:30:00,12.8,12.8,14.485666821409787 + 08/02 10:40:00,12.8,12.8,14.459343082661253 + 08/02 10:50:00,12.8,12.8,14.434351984852281 + 08/02 11:00:00,12.8,12.8,14.410719500029524 + 08/02 11:10:00,12.8,12.8,14.388980978127983 + 08/02 11:20:00,12.8,12.8,14.377726258630052 + 08/02 11:30:00,12.8,12.8,14.357630694477115 + 08/02 11:40:00,12.8,12.8,14.337919736454666 + 08/02 11:50:00,12.8,12.8,14.3186378212053 + 08/02 12:00:00,12.8,12.8,14.299649262666018 + 08/02 12:10:00,12.8,12.8,14.279338177058154 + 08/02 12:20:00,12.8,12.8,14.250348187671215 + 08/02 12:30:00,12.8,12.8,14.231891722510312 + 08/02 12:40:00,12.8,12.8,14.214765422152118 + 08/02 12:50:00,12.8,12.8,14.199113933795302 + 08/02 13:00:00,12.8,12.8,14.184989602992779 + 08/02 13:10:00,12.8,12.8,14.17523058197751 + 08/02 13:20:00,12.8,12.8,14.169791088889474 + 08/02 13:30:00,12.8,12.8,14.161398846205483 + 08/02 13:40:00,12.8,12.8,14.153279475507477 + 08/02 13:50:00,12.8,12.8,14.145074069539465 + 08/02 14:00:00,12.8,12.8,14.136678312398939 + 08/02 14:10:00,12.8,12.8,14.126095239065258 + 08/02 14:20:00,12.8,12.8,14.119603899278456 + 08/02 14:30:00,12.8,12.8,14.110401497566317 + 08/02 14:40:00,12.8,12.8,14.102071330675463 + 08/02 14:50:00,12.8,12.8,14.094771014442852 + 08/02 15:00:00,12.8,12.8,14.088328203763793 + 08/02 15:05:00,12.8,12.8,16.245401013285468 + 08/02 15:10:00,12.8,12.8,16.241145763449777 + 08/02 15:20:00,12.8,12.8,16.497227922790825 + 08/02 15:30:00,12.8,12.8,16.599055416264556 + 08/02 15:40:00,12.8,12.8,16.675056018743189 + 08/02 15:50:00,12.8,12.8,16.73566202278572 + 08/02 16:00:00,12.8,12.8,16.782718599814339 + 08/02 16:10:00,12.8,12.8,16.84743421925874 + 08/02 16:20:00,12.8,12.8,16.900870624859477 + 08/02 16:30:00,12.8,12.8,16.931354501753586 + 08/02 16:40:00,12.8,12.8,16.959026949741117 + 08/02 16:50:00,12.8,12.8,16.98467350943114 + 08/02 17:00:00,12.8,12.8,17.00866017828154 + 08/02 17:05:00,12.8,12.8,17.04513339307626 + 08/02 17:10:00,12.8,12.8,17.044743101284998 + 08/02 17:15:00,12.8,12.8,17.072420652983945 + 08/02 17:20:00,12.8,12.8,17.072476869083297 + 08/02 17:30:00,12.8,12.8,17.09317724894674 + 08/02 17:40:00,12.8,12.8,17.11385344519112 + 08/02 17:50:00,12.8,12.8,17.13431105881684 + 08/02 18:00:00,12.8,12.8,17.154582256419606 + 08/02 18:10:00,12.8,12.8,17.17443522550016 + 08/02 18:20:00,12.8,12.8,17.193356153556779 + 08/02 18:30:00,12.8,12.8,17.21122320492796 + 08/02 18:40:00,12.8,12.8,17.228013559351259 + 08/02 18:50:00,12.8,12.8,17.243740163860026 + 08/02 19:00:00,12.8,12.8,17.258535459934899 + 08/02 19:10:00,12.8,12.8,17.285215397430357 + 08/02 19:20:00,12.8,12.8,17.29934728686613 + 08/02 19:30:00,12.8,12.8,17.312769642167475 + 08/02 19:40:00,12.8,12.8,17.326018950853525 + 08/02 19:50:00,12.8,12.8,17.338899602616615 + 08/02 20:00:00,12.8,12.8,17.3511717173199 + 08/02 20:10:00,12.8,12.8,17.34291319306127 + 08/02 20:20:00,12.8,12.8,17.36031935519541 + 08/02 20:30:00,12.8,12.8,17.3730263676649 + 08/02 20:40:00,12.8,12.8,17.385001746753298 + 08/02 20:50:00,12.8,12.8,17.396628799575909 + 08/02 21:00:00,12.8,12.8,17.407640900541574 + 08/02 21:10:00,12.8,12.8,17.417494829303967 + 08/02 21:20:00,12.8,12.8,17.426773532655568 + 08/02 21:30:00,12.8,12.8,17.435488389507918 + 08/02 21:40:00,12.8,12.8,17.443646075918396 + 08/02 21:50:00,12.8,12.8,17.451240994524747 + 08/02 22:00:00,12.8,12.8,17.45847262597625 + 08/02 22:10:00,12.8,12.8,18.82410868889699 + 08/02 22:20:00,12.8,12.8,18.974880184864327 + 08/02 22:30:00,12.8,12.8,19.041331865197767 + 08/02 22:40:00,12.8,12.8,19.09545214183531 + 08/02 22:50:00,12.8,12.8,19.137764551856266 + 08/02 23:00:00,12.8,12.8,19.172522289739079 + 08/02 23:10:00,12.8,12.8,19.202442957632188 + 08/02 23:20:00,12.8,12.8,19.229097071192329 + 08/02 23:30:00,12.8,12.8,19.253092627166326 + 08/02 23:40:00,12.8,12.8,19.27515358473554 + 08/02 23:50:00,12.8,12.8,19.295499052846546 + 08/02 24:00:00,12.8,12.8,19.31441697934848 + 08/03 00:10:00,12.8,12.8,19.331373929597598 + 08/03 00:20:00,12.8,12.8,19.348607387630336 + 08/03 00:30:00,12.8,12.8,19.36461979979991 + 08/03 00:40:00,12.8,12.8,19.380532494620274 + 08/03 00:50:00,12.8,12.8,19.394963538648047 + 08/03 01:00:00,12.8,12.8,19.41034586310593 + 08/03 01:10:00,12.8,12.8,19.424646631124007 + 08/03 01:20:00,12.8,12.8,19.438156577176068 + 08/03 01:30:00,12.8,12.8,19.45245583376076 + 08/03 01:40:00,12.8,12.8,19.465768401112876 + 08/03 01:50:00,12.8,12.8,19.47836454664496 + 08/03 02:00:00,12.8,12.8,19.49175558242555 + 08/03 02:10:00,12.8,12.8,19.50403597358632 + 08/03 02:20:00,12.8,12.8,19.515497492224769 + 08/03 02:30:00,12.8,12.8,19.527410576440376 + 08/03 02:40:00,12.8,12.8,19.53809999073637 + 08/03 02:50:00,12.8,12.8,19.547865762694845 + 08/03 03:00:00,12.8,12.8,19.558061943590269 + 08/03 03:10:00,12.8,12.8,19.56725403248603 + 08/03 03:20:00,12.8,12.8,19.5756321389022 + 08/03 03:30:00,12.8,12.8,19.584803266666243 + 08/03 03:40:00,12.8,12.8,19.593007919302399 + 08/03 03:50:00,12.8,12.8,19.60035269921859 + 08/03 04:00:00,12.8,12.8,19.608753347577655 + 08/03 04:10:00,12.8,12.8,19.616231393315894 + 08/03 04:20:00,12.8,12.8,19.623095586066975 + 08/03 04:30:00,12.8,12.8,19.63116388049668 + 08/03 04:40:00,12.8,12.8,19.638363962265076 + 08/03 04:50:00,12.8,12.8,19.64507107159051 + 08/03 05:00:00,12.8,12.8,19.653125783736344 + 08/03 05:10:00,12.8,12.8,19.660485940309209 + 08/03 05:20:00,12.8,12.8,19.667217097192599 + 08/03 05:30:00,12.8,12.8,19.674845864041246 + 08/03 05:40:00,12.8,12.8,19.681331667192397 + 08/03 05:50:00,12.8,12.8,19.68712211188207 + 08/03 06:00:00,12.8,12.8,19.693552228814043 + 08/03 06:10:00,12.8,12.8,17.706482400033229 + 08/03 06:15:00,12.8,12.8,17.45093800731122 + 08/03 06:20:00,12.8,12.8,17.455895108694344 + 08/03 06:30:00,12.8,12.8,17.365387015086534 + 08/03 06:40:00,12.8,12.8,17.294587939638327 + 08/03 06:50:00,12.8,12.8,17.241319168998446 + 08/03 07:00:00,12.8,12.8,17.195706635395678 + 08/03 07:05:00,12.8,12.8,15.702972264302217 + 08/03 07:10:00,12.8,12.8,15.708980388447396 + 08/03 07:15:00,12.8,12.8,15.478923305718889 + 08/03 07:20:00,12.8,12.8,15.477142611928075 + 08/03 07:30:00,12.8,12.8,15.370966906225238 + 08/03 07:40:00,12.8,12.8,15.284034442355179 + 08/03 07:50:00,12.8,12.8,15.208943058604163 + 08/03 08:00:00,12.8,12.8,15.143367455804505 + 08/03 08:02:30,12.8,12.8,15.060441057044564 + 08/03 08:05:00,12.8,12.8,15.059079108214938 + 08/03 08:07:30,12.8,12.8,15.059348352859866 + 08/03 08:10:00,12.8,12.8,15.059112386992864 + 08/03 08:20:00,12.8,12.8,14.995927395910993 + 08/03 08:30:00,12.8,12.8,14.94537072001528 + 08/03 08:40:00,12.8,12.8,14.897713665866775 + 08/03 08:50:00,12.8,12.8,14.852916383817217 + 08/03 09:00:00,12.8,12.8,14.810664619236804 + 08/03 09:10:00,12.8,12.8,14.770492616079374 + 08/03 09:20:00,12.8,12.8,14.721816364025692 + 08/03 09:30:00,12.8,12.8,14.685343348963054 + 08/03 09:40:00,12.8,12.8,14.650696956279825 + 08/03 09:50:00,12.8,12.8,14.617661132739205 + 08/03 10:00:00,12.8,12.8,14.58620670198094 + 08/03 10:10:00,12.8,12.8,14.556093511660148 + 08/03 10:20:00,12.8,12.8,14.523642977688367 + 08/03 10:30:00,12.8,12.8,14.49565482342069 + 08/03 10:40:00,12.8,12.8,14.468714880878514 + 08/03 10:50:00,12.8,12.8,14.442894903973532 + 08/03 11:00:00,12.8,12.8,14.41805951623432 + 08/03 11:10:00,12.8,12.8,14.39368644097042 + 08/03 11:20:00,12.8,12.8,14.38035256009929 + 08/03 11:30:00,12.8,12.8,14.358785715942588 + 08/03 11:40:00,12.8,12.8,14.33840897011579 + 08/03 11:50:00,12.8,12.8,14.319464613214518 + 08/03 12:00:00,12.8,12.8,14.301752892293882 + 08/03 12:10:00,12.8,12.8,14.286022535822566 + 08/03 12:20:00,12.8,12.8,14.261254607341876 + 08/03 12:30:00,12.8,12.8,14.246463447204928 + 08/03 12:40:00,12.8,12.8,14.232369951868634 + 08/03 12:50:00,12.8,12.8,14.21849740857214 + 08/03 13:00:00,12.8,12.8,14.205127307577517 + 08/03 13:10:00,12.8,12.8,14.192498806251841 + 08/03 13:20:00,12.8,12.8,14.183797024594064 + 08/03 13:30:00,12.8,12.8,14.172312334131002 + 08/03 13:40:00,12.8,12.8,14.161824345547118 + 08/03 13:50:00,12.8,12.8,14.153123115378632 + 08/03 14:00:00,12.8,12.8,14.146331311201978 + 08/03 14:10:00,12.8,12.8,14.141221951224754 + 08/03 14:20:00,12.8,12.8,14.14107949587007 + 08/03 14:30:00,12.8,12.8,14.138655663295849 + 08/03 14:40:00,12.8,12.8,14.136347316918754 + 08/03 14:50:00,12.8,12.8,14.132853593228827 + 08/03 15:00:00,12.8,12.8,14.127773606663203 + 08/03 15:05:00,12.8,12.8,16.282607911378294 + 08/03 15:10:00,12.8,12.8,16.27751198499845 + 08/03 15:20:00,12.8,12.8,16.53054697471977 + 08/03 15:30:00,12.8,12.8,16.62905778366303 + 08/03 15:40:00,12.8,12.8,16.702057783190705 + 08/03 15:50:00,12.8,12.8,16.75516766367568 + 08/03 16:00:00,12.8,12.8,16.799482888972564 + 08/03 16:10:00,12.8,12.8,16.86449349406368 + 08/03 16:20:00,12.8,12.8,16.918856593083846 + 08/03 16:30:00,12.8,12.8,16.949927528113656 + 08/03 16:40:00,12.8,12.8,16.977825938021156 + 08/03 16:50:00,12.8,12.8,17.003770962684567 + 08/03 17:00:00,12.8,12.8,17.028187484128794 + 08/03 17:05:00,12.8,12.8,17.06563694969679 + 08/03 17:10:00,12.8,12.8,17.065227555665027 + 08/03 17:15:00,12.8,12.8,17.093764146034429 + 08/03 17:20:00,12.8,12.8,17.09380476114264 + 08/03 17:30:00,12.8,12.8,17.11508192182245 + 08/03 17:40:00,12.8,12.8,17.13608499451351 + 08/03 17:50:00,12.8,12.8,17.156685889059383 + 08/03 18:00:00,12.8,12.8,17.177033985834954 + 08/03 18:10:00,12.8,12.8,17.196667823409635 + 08/03 18:20:00,12.8,12.8,17.216178478349499 + 08/03 18:30:00,12.8,12.8,17.2356036738381 + 08/03 18:40:00,12.8,12.8,17.25451147974003 + 08/03 18:50:00,12.8,12.8,17.27236495373901 + 08/03 19:00:00,12.8,12.8,17.288919779720169 + 08/03 19:10:00,12.8,12.8,17.31708091722588 + 08/03 19:20:00,12.8,12.8,17.332140441809736 + 08/03 19:30:00,12.8,12.8,17.34584209090493 + 08/03 19:40:00,12.8,12.8,17.358937846951937 + 08/03 19:50:00,12.8,12.8,17.371516508114416 + 08/03 20:00:00,12.8,12.8,17.38350403236627 + 08/03 20:10:00,12.8,12.8,17.37264970874792 + 08/03 20:20:00,12.8,12.8,17.3878899571726 + 08/03 20:30:00,12.8,12.8,17.398821935018107 + 08/03 20:40:00,12.8,12.8,17.409486840510409 + 08/03 20:50:00,12.8,12.8,17.420063483905598 + 08/03 21:00:00,12.8,12.8,17.430493839980618 + 08/03 21:10:00,12.8,12.8,17.440470162367747 + 08/03 21:20:00,12.8,12.8,17.449800636319794 + 08/03 21:30:00,12.8,12.8,17.458504614704436 + 08/03 21:40:00,12.8,12.8,17.46659917190277 + 08/03 21:50:00,12.8,12.8,17.474082347570186 + 08/03 22:00:00,12.8,12.8,17.48101798597434 + 08/03 22:10:00,12.8,12.8,18.845691902850587 + 08/03 22:20:00,12.8,12.8,18.99732494961416 + 08/03 22:30:00,12.8,12.8,19.063564172521717 + 08/03 22:40:00,12.8,12.8,19.115531163964897 + 08/03 22:50:00,12.8,12.8,19.155654983530306 + 08/03 23:00:00,12.8,12.8,19.18865808742854 + 08/03 23:10:00,12.8,12.8,19.217853084347078 + 08/03 23:20:00,12.8,12.8,19.244222887339207 + 08/03 23:30:00,12.8,12.8,19.26829318695053 + 08/03 23:40:00,12.8,12.8,19.290623277178047 + 08/03 23:50:00,12.8,12.8,19.311507912343826 + 08/03 24:00:00,12.8,12.8,19.33112065450563 + 08/04 00:10:00,12.8,12.8,19.349673339647546 + 08/04 00:20:00,12.8,12.8,19.366323661972584 + 08/04 00:30:00,12.8,12.8,19.383258249115998 + 08/04 00:40:00,12.8,12.8,19.398584105657166 + 08/04 00:50:00,12.8,12.8,19.412664024715974 + 08/04 01:00:00,12.8,12.8,19.42708333929502 + 08/04 01:10:00,12.8,12.8,19.440209355057538 + 08/04 01:20:00,12.8,12.8,19.45237053560496 + 08/04 01:30:00,12.8,12.8,19.465104243678654 + 08/04 01:40:00,12.8,12.8,19.47671674340632 + 08/04 01:50:00,12.8,12.8,19.48755355194801 + 08/04 02:00:00,12.8,12.8,19.499222082402487 + 08/04 02:10:00,12.8,12.8,19.509836149012864 + 08/04 02:20:00,12.8,12.8,19.51947537050663 + 08/04 02:30:00,12.8,12.8,19.529564876686984 + 08/04 02:40:00,12.8,12.8,19.538393038125365 + 08/04 02:50:00,12.8,12.8,19.546316125969385 + 08/04 03:00:00,12.8,12.8,19.554904860959824 + 08/04 03:10:00,12.8,12.8,19.562582037623228 + 08/04 03:20:00,12.8,12.8,19.569588898626536 + 08/04 03:30:00,12.8,12.8,19.577636101139235 + 08/04 03:40:00,12.8,12.8,19.58498271225357 + 08/04 03:50:00,12.8,12.8,19.591788095803666 + 08/04 04:00:00,12.8,12.8,19.5997834296128 + 08/04 04:10:00,12.8,12.8,19.60610396766654 + 08/04 04:20:00,12.8,12.8,19.613744315854 + 08/04 04:30:00,12.8,12.8,19.620637115251463 + 08/04 04:40:00,12.8,12.8,19.62689895407463 + 08/04 04:50:00,12.8,12.8,19.634290419885603 + 08/04 05:00:00,12.8,12.8,19.64084607066545 + 08/04 05:10:00,12.8,12.8,19.6468188021912 + 08/04 05:20:00,12.8,12.8,19.654002536160456 + 08/04 05:30:00,12.8,12.8,19.65970821681449 + 08/04 05:40:00,12.8,12.8,19.66684722752921 + 08/04 05:50:00,12.8,12.8,19.673203525775177 + 08/04 06:00:00,12.8,12.8,19.678651469846977 + 08/04 06:05:00,12.8,12.8,17.67261221609396 + 08/04 06:10:00,12.8,12.8,17.68071598397605 + 08/04 06:20:00,12.8,12.8,17.439401357884294 + 08/04 06:30:00,12.8,12.8,17.347323866379836 + 08/04 06:40:00,12.8,12.8,17.28070977702125 + 08/04 06:50:00,12.8,12.8,17.226600243128574 + 08/04 07:00:00,12.8,12.8,17.18096617770913 + 08/04 07:05:00,12.8,12.8,15.687120966836883 + 08/04 07:10:00,12.8,12.8,15.693610316759008 + 08/04 07:15:00,12.8,12.8,15.463840436535918 + 08/04 07:20:00,12.8,12.8,15.462083204602238 + 08/04 07:30:00,12.8,12.8,15.357518010641633 + 08/04 07:40:00,12.8,12.8,15.273091701880866 + 08/04 07:50:00,12.8,12.8,15.200865344410977 + 08/04 08:00:00,12.8,12.8,15.13822481766801 + 08/04 08:02:30,12.8,12.8,15.05829343749961 + 08/04 08:05:00,12.8,12.8,15.056819271780336 + 08/04 08:07:30,12.8,12.8,15.05719569804334 + 08/04 08:10:00,12.8,12.8,15.056911461769296 + 08/04 08:20:00,12.8,12.8,14.996761782969559 + 08/04 08:30:00,12.8,12.8,14.949489223769433 + 08/04 08:40:00,12.8,12.8,14.90527036153705 + 08/04 08:50:00,12.8,12.8,14.863867277453668 + 08/04 09:00:00,12.8,12.8,14.824771709198819 + 08/04 09:10:00,12.8,12.8,14.787139767952981 + 08/04 09:20:00,12.8,12.8,14.740073523550729 + 08/04 09:30:00,12.8,12.8,14.704112034717117 + 08/04 09:40:00,12.8,12.8,14.669617772939484 + 08/04 09:50:00,12.8,12.8,14.637654941040065 + 08/04 10:00:00,12.8,12.8,14.608880158128962 + 08/04 10:10:00,12.8,12.8,14.583017365731152 + 08/04 10:20:00,12.8,12.8,14.556256297031915 + 08/04 10:30:00,12.8,12.8,14.535279760621084 + 08/04 10:40:00,12.8,12.8,14.515365669456062 + 08/04 10:50:00,12.8,12.8,14.494569941625139 + 08/04 11:00:00,12.8,12.8,14.472160511445996 + 08/04 11:10:00,12.8,12.8,14.448168429850645 + 08/04 11:20:00,12.8,12.8,14.432707130346865 + 08/04 11:30:00,12.8,12.8,14.407090246657127 + 08/04 11:40:00,12.8,12.8,14.381787399906214 + 08/04 11:50:00,12.8,12.8,14.358551951960897 + 08/04 12:00:00,12.8,12.8,14.337681691027856 + 08/04 12:10:00,12.8,12.8,14.320085563319749 + 08/04 12:20:00,12.8,12.8,14.294659952446745 + 08/04 12:30:00,12.8,12.8,14.280099211199609 + 08/04 12:40:00,12.8,12.8,14.266272571050916 + 08/04 12:50:00,12.8,12.8,14.252059891924052 + 08/04 13:00:00,12.8,12.8,14.236623308327328 + 08/04 13:10:00,12.8,12.8,14.219303912720818 + 08/04 13:20:00,12.8,12.8,14.206300849248644 + 08/04 13:30:00,12.8,12.8,14.190935180662344 + 08/04 13:40:00,12.8,12.8,14.176671688881163 + 08/04 13:50:00,12.8,12.8,14.163890861156892 + 08/04 14:00:00,12.8,12.8,14.152372332651697 + 08/04 14:10:00,12.8,12.8,14.14203434280446 + 08/04 14:20:00,12.8,12.8,14.138599368888821 + 08/04 14:30:00,12.8,12.8,14.135094682717862 + 08/04 14:40:00,12.8,12.8,14.134544857632678 + 08/04 14:50:00,12.8,12.8,14.136692923488763 + 08/04 15:00:00,12.8,12.8,14.141106537506872 + 08/04 15:05:00,12.8,12.8,16.307585178984629 + 08/04 15:10:00,12.8,12.8,16.301748135242144 + 08/04 15:20:00,12.8,12.8,16.564859785198693 + 08/04 15:30:00,12.8,12.8,16.67262593982354 + 08/04 15:40:00,12.8,12.8,16.748692024078247 + 08/04 15:50:00,12.8,12.8,16.80805675865289 + 08/04 16:00:00,12.8,12.8,16.856268623634717 + 08/04 16:10:00,12.8,12.8,16.922705210611054 + 08/04 16:20:00,12.8,12.8,16.97829655325284 + 08/04 16:30:00,12.8,12.8,17.01079468745344 + 08/04 16:40:00,12.8,12.8,17.039742237671388 + 08/04 16:50:00,12.8,12.8,17.06526702005474 + 08/04 17:00:00,12.8,12.8,17.08757533303541 + 08/04 17:05:00,12.8,12.8,17.122019413015975 + 08/04 17:10:00,12.8,12.8,17.12164140257746 + 08/04 17:15:00,12.8,12.8,17.146625499460929 + 08/04 17:20:00,12.8,12.8,17.146674340588438 + 08/04 17:30:00,12.8,12.8,17.16423822165351 + 08/04 17:40:00,12.8,12.8,17.182039378573273 + 08/04 17:50:00,12.8,12.8,17.20008469595191 + 08/04 18:00:00,12.8,12.8,17.218529138840098 + 08/04 18:10:00,12.8,12.8,17.23664685517762 + 08/04 18:20:00,12.8,12.8,17.254477626928567 + 08/04 18:30:00,12.8,12.8,17.271831071931435 + 08/04 18:40:00,12.8,12.8,17.28857741051478 + 08/04 18:50:00,12.8,12.8,17.304632312635584 + 08/04 19:00:00,12.8,12.8,17.31999982723371 + 08/04 19:10:00,12.8,12.8,17.348050177074727 + 08/04 19:20:00,12.8,12.8,17.363233806037206 + 08/04 19:30:00,12.8,12.8,17.377248305605069 + 08/04 19:40:00,12.8,12.8,17.390632831910108 + 08/04 19:50:00,12.8,12.8,17.40323245171306 + 08/04 20:00:00,12.8,12.8,17.414891826815219 + 08/04 20:10:00,12.8,12.8,17.40318655248846 + 08/04 20:20:00,12.8,12.8,17.417274596409528 + 08/04 20:30:00,12.8,12.8,17.42677235497341 + 08/04 20:40:00,12.8,12.8,17.43579562084791 + 08/04 20:50:00,12.8,12.8,17.444552191655345 + 08/04 21:00:00,12.8,12.8,17.453016863500126 + 08/04 21:10:00,12.8,12.8,17.46120521091941 + 08/04 21:20:00,12.8,12.8,17.46892888346604 + 08/04 21:30:00,12.8,12.8,17.47624086358232 + 08/04 21:40:00,12.8,12.8,17.483129686993327 + 08/04 21:50:00,12.8,12.8,17.489579253011415 + 08/04 22:00:00,12.8,12.8,17.495756132583069 + 08/04 22:10:00,12.8,12.8,18.859840150653949 + 08/04 22:15:00,12.8,12.8,19.014453883482756 + 08/04 22:20:00,12.8,12.8,19.011688350780014 + 08/04 22:30:00,12.8,12.8,19.078879697679708 + 08/04 22:40:00,12.8,12.8,19.130936237072285 + 08/04 22:50:00,12.8,12.8,19.171552037981394 + 08/04 23:00:00,12.8,12.8,19.205932987691399 + 08/04 23:10:00,12.8,12.8,19.23535350465324 + 08/04 23:20:00,12.8,12.8,19.26174442851306 + 08/04 23:30:00,12.8,12.8,19.285470902255068 + 08/04 23:40:00,12.8,12.8,19.307153792897258 + 08/04 23:50:00,12.8,12.8,19.327063414638596 + 08/04 24:00:00,12.8,12.8,19.3454893360775 + 08/05 00:10:00,12.8,12.8,19.362007481972016 + 08/05 00:20:00,12.8,12.8,19.37883048490947 + 08/05 00:30:00,12.8,12.8,19.394382352699048 + 08/05 00:40:00,12.8,12.8,19.409852957235196 + 08/05 00:50:00,12.8,12.8,19.423877019395783 + 08/05 01:00:00,12.8,12.8,19.438823988392636 + 08/05 01:10:00,12.8,12.8,19.45242504279967 + 08/05 01:20:00,12.8,12.8,19.46483314640111 + 08/05 01:30:00,12.8,12.8,19.477427651641464 + 08/05 01:40:00,12.8,12.8,19.48850493000414 + 08/05 01:50:00,12.8,12.8,19.498298117116545 + 08/05 02:00:00,12.8,12.8,19.50847389831033 + 08/05 02:10:00,12.8,12.8,19.517385850066064 + 08/05 02:20:00,12.8,12.8,19.525567861022816 + 08/05 02:30:00,12.8,12.8,19.53476557641407 + 08/05 02:40:00,12.8,12.8,19.543080125452513 + 08/05 02:50:00,12.8,12.8,19.55076761789942 + 08/05 03:00:00,12.8,12.8,19.55948255402142 + 08/05 03:10:00,12.8,12.8,19.56730854808906 + 08/05 03:20:00,12.8,12.8,19.574475365895219 + 08/05 03:30:00,12.8,12.8,19.582644620539744 + 08/05 03:40:00,12.8,12.8,19.58983754649472 + 08/05 03:50:00,12.8,12.8,19.596302153543598 + 08/05 04:00:00,12.8,12.8,19.603768227643383 + 08/05 04:10:00,12.8,12.8,19.61032370493753 + 08/05 04:20:00,12.8,12.8,19.6163090581114 + 08/05 04:30:00,12.8,12.8,19.62353096388721 + 08/05 04:40:00,12.8,12.8,19.62993354092258 + 08/05 04:50:00,12.8,12.8,19.63572698056307 + 08/05 05:00:00,12.8,12.8,19.64293202123135 + 08/05 05:10:00,12.8,12.8,19.649277557475857 + 08/05 05:20:00,12.8,12.8,19.654858450886189 + 08/05 05:30:00,12.8,12.8,19.661483321067075 + 08/05 05:40:00,12.8,12.8,19.66612214358247 + 08/05 05:50:00,12.8,12.8,19.672172056188694 + 08/05 06:00:00,12.8,12.8,19.676882896952159 + 08/05 06:10:00,12.8,12.8,19.022791288099279 + 08/05 06:15:00,12.8,12.8,18.950241136024084 + 08/05 06:20:00,12.8,12.8,18.95148634647782 + 08/05 06:30:00,12.8,12.8,18.924324028953916 + 08/05 06:40:00,12.8,12.8,18.90348790881877 + 08/05 06:50:00,12.8,12.8,18.887777344236694 + 08/05 07:00:00,12.8,12.8,18.87437139103201 + 08/05 07:10:00,12.8,12.8,17.792615862365709 + 08/05 07:20:00,12.8,12.8,17.634904102267986 + 08/05 07:30:00,12.8,12.8,17.571818065533529 + 08/05 07:40:00,12.8,12.8,17.51963685423476 + 08/05 07:50:00,12.8,12.8,17.478019944588675 + 08/05 08:00:00,12.8,12.8,17.44193759263184 + 08/05 08:05:00,12.8,12.8,17.40995297858397 + 08/05 08:10:00,12.8,12.8,17.409880795820724 + 08/05 08:20:00,12.8,12.8,17.37185746743244 + 08/05 08:30:00,12.8,12.8,17.345196470311377 + 08/05 08:40:00,12.8,12.8,17.32036823304825 + 08/05 08:50:00,12.8,12.8,17.2964100644043 + 08/05 09:00:00,12.8,12.8,17.27285827436085 + 08/05 09:10:00,12.8,12.8,17.249012897641653 + 08/05 09:20:00,12.8,12.8,17.216065526127414 + 08/05 09:30:00,12.8,12.8,17.19118038864807 + 08/05 09:40:00,12.8,12.8,17.166343967365085 + 08/05 09:50:00,12.8,12.8,17.142414683926334 + 08/05 10:00:00,12.8,12.8,17.119853926047278 + 08/05 10:10:00,12.8,12.8,17.098542356216599 + 08/05 10:20:00,12.8,12.8,17.0782512229116 + 08/05 10:30:00,12.8,12.8,17.058791566546547 + 08/05 10:40:00,12.8,12.8,17.04045106436626 + 08/05 10:50:00,12.8,12.8,17.02365013232844 + 08/05 11:00:00,12.8,12.8,17.008524144119187 + 08/05 11:10:00,12.8,12.8,16.994939215704009 + 08/05 11:20:00,12.8,12.8,16.983172662858658 + 08/05 11:30:00,12.8,12.8,16.97294015117621 + 08/05 11:40:00,12.8,12.8,16.964571949265346 + 08/05 11:50:00,12.8,12.8,16.95870121981171 + 08/05 12:00:00,12.8,12.8,16.955402702046209 + 08/05 12:10:00,12.8,12.8,16.953926574620387 + 08/05 12:20:00,12.8,12.8,16.954054039843027 + 08/05 12:30:00,12.8,12.8,16.95537540356314 + 08/05 12:40:00,12.8,12.8,16.95638654582299 + 08/05 12:50:00,12.8,12.8,16.954952915849263 + 08/05 13:00:00,12.8,12.8,16.950361705348777 + 08/05 13:10:00,12.8,12.8,16.944472412767547 + 08/05 13:20:00,12.8,12.8,16.93673255881197 + 08/05 13:30:00,12.8,12.8,16.92771300722162 + 08/05 13:40:00,12.8,12.8,16.918507613485667 + 08/05 13:50:00,12.8,12.8,16.910484304191845 + 08/05 14:00:00,12.8,12.8,16.90413137735571 + 08/05 14:10:00,12.8,12.8,16.89899315981961 + 08/05 14:20:00,12.8,12.8,16.895092773988073 + 08/05 14:30:00,12.8,12.8,16.892248381407084 + 08/05 14:40:00,12.8,12.8,16.890138294053963 + 08/05 14:50:00,12.8,12.8,16.888460004228717 + 08/05 15:00:00,12.8,12.8,16.8870367076114 + 08/05 15:10:00,12.8,12.8,16.885420723722505 + 08/05 15:20:00,12.8,12.8,16.88450242540941 + 08/05 15:30:00,12.8,12.8,16.884320599556568 + 08/05 15:40:00,12.8,12.8,16.884676816023729 + 08/05 15:50:00,12.8,12.8,16.8852732113777 + 08/05 16:00:00,12.8,12.8,16.88598753183978 + 08/05 16:10:00,12.8,12.8,16.899826547268483 + 08/05 16:15:00,12.8,12.8,16.91107247653001 + 08/05 16:20:00,12.8,12.8,16.910691944867609 + 08/05 16:30:00,12.8,12.8,16.911441641065119 + 08/05 16:40:00,12.8,12.8,16.91269362141147 + 08/05 16:50:00,12.8,12.8,16.913716621039919 + 08/05 17:00:00,12.8,12.8,16.914823142020656 + 08/05 17:10:00,12.8,12.8,18.674535748186636 + 08/05 17:20:00,12.8,12.8,18.893055536363716 + 08/05 17:30:00,12.8,12.8,18.978640197369619 + 08/05 17:40:00,12.8,12.8,19.047061324889787 + 08/05 17:50:00,12.8,12.8,19.101449066620839 + 08/05 18:00:00,12.8,12.8,19.145852389521936 + 08/05 18:10:00,12.8,12.8,19.19642251642215 + 08/05 18:20:00,12.8,12.8,19.230293524433948 + 08/05 18:30:00,12.8,12.8,19.26038938325198 + 08/05 18:40:00,12.8,12.8,19.287865604687384 + 08/05 18:50:00,12.8,12.8,19.313215861174848 + 08/05 19:00:00,12.8,12.8,19.33674955020394 + 08/05 19:10:00,12.8,12.8,19.35910651486331 + 08/05 19:20:00,12.8,12.8,19.380179249572625 + 08/05 19:30:00,12.8,12.8,19.400195554127025 + 08/05 19:40:00,12.8,12.8,19.419312955665469 + 08/05 19:50:00,12.8,12.8,19.437381515875356 + 08/05 20:00:00,12.8,12.8,19.454285308063935 + 08/05 20:10:00,12.8,12.8,19.447763369142643 + 08/05 20:20:00,12.8,12.8,19.46190662918334 + 08/05 20:30:00,12.8,12.8,19.474782975153194 + 08/05 20:40:00,12.8,12.8,19.48642983289829 + 08/05 20:50:00,12.8,12.8,19.497065821050897 + 08/05 21:00:00,12.8,12.8,19.50681814880243 + 08/05 21:10:00,12.8,12.8,19.515698964013326 + 08/05 21:20:00,12.8,12.8,19.524130528281398 + 08/05 21:30:00,12.8,12.8,19.53222855201237 + 08/05 21:40:00,12.8,12.8,19.540026577205575 + 08/05 21:50:00,12.8,12.8,19.54769291163346 + 08/05 22:00:00,12.8,12.8,19.555161905386073 + 08/05 22:10:00,12.8,12.8,19.562427845054445 + 08/05 22:20:00,12.8,12.8,19.56948846065055 + 08/05 22:30:00,12.8,12.8,19.576243801402677 + 08/05 22:40:00,12.8,12.8,19.582891531741454 + 08/05 22:50:00,12.8,12.8,19.58934745738841 + 08/05 23:00:00,12.8,12.8,19.5956153373769 + 08/05 23:10:00,12.8,12.8,19.60185377626874 + 08/05 23:20:00,12.8,12.8,19.60852448795678 + 08/05 23:30:00,12.8,12.8,19.615367263501818 + 08/05 23:40:00,12.8,12.8,19.622633677334226 + 08/05 23:50:00,12.8,12.8,19.62911379827071 + 08/05 24:00:00,12.8,12.8,19.63728359211791 + 08/06 00:10:00,12.8,12.8,19.6447410862046 + 08/06 00:20:00,12.8,12.8,19.652411558550555 + 08/06 00:30:00,12.8,12.8,19.658483548132858 + 08/06 00:40:00,12.8,12.8,19.6659351665488 + 08/06 00:50:00,12.8,12.8,19.672068224337108 + 08/06 01:00:00,12.8,12.8,19.678409918313137 + 08/06 01:10:00,12.8,12.8,19.683032608031668 + 08/06 01:20:00,12.8,12.8,19.689625343512657 + 08/06 01:30:00,12.8,12.8,19.695162072490239 + 08/06 01:40:00,12.8,12.8,19.701436270216598 + 08/06 01:50:00,12.8,12.8,19.70637485754359 + 08/06 02:00:00,12.8,12.8,19.713088776082889 + 08/06 02:10:00,12.8,12.8,19.71887385238126 + 08/06 02:20:00,12.8,12.8,19.725133564731704 + 08/06 02:30:00,12.8,12.8,19.729828758739218 + 08/06 02:40:00,12.8,12.8,19.736187713231645 + 08/06 02:50:00,12.8,12.8,19.7412650631374 + 08/06 03:00:00,12.8,12.8,19.746852662815898 + 08/06 03:10:00,12.8,12.8,19.750856167873765 + 08/06 03:20:00,12.8,12.8,19.75677329106583 + 08/06 03:30:00,12.8,12.8,19.76170064885976 + 08/06 03:40:00,12.8,12.8,19.767273652866515 + 08/06 03:50:00,12.8,12.8,19.77153999104404 + 08/06 04:00:00,12.8,12.8,19.777944950334438 + 08/06 04:10:00,12.8,12.8,19.783530196171168 + 08/06 04:20:00,12.8,12.8,19.789642101816989 + 08/06 04:30:00,12.8,12.8,19.79407361776927 + 08/06 04:40:00,12.8,12.8,19.800033815647617 + 08/06 04:50:00,12.8,12.8,19.80474741068128 + 08/06 05:00:00,12.8,12.8,19.80979477296901 + 08/06 05:10:00,12.8,12.8,19.813089060105214 + 08/06 05:20:00,12.8,12.8,19.817453160587929 + 08/06 05:30:00,12.8,12.8,19.819989188596567 + 08/06 05:40:00,12.8,12.8,19.822620187066684 + 08/06 05:50:00,12.8,12.8,19.823249072772528 + 08/06 06:00:00,12.8,12.8,19.825303896999608 + 08/06 06:10:00,12.8,12.8,19.847290488504777 + 08/06 06:20:00,12.8,12.8,19.845851322344175 + 08/06 06:30:00,12.8,12.8,19.844801249535935 + 08/06 06:40:00,12.8,12.8,19.843456692633624 + 08/06 06:50:00,12.8,12.8,19.8418466202504 + 08/06 07:00:00,12.8,12.8,19.839501573876 + 08/06 07:10:00,12.8,12.8,18.446283055795197 + 08/06 07:20:00,12.8,12.8,18.263931663813087 + 08/06 07:30:00,12.8,12.8,18.192700129439005 + 08/06 07:40:00,12.8,12.8,18.132832052647406 + 08/06 07:50:00,12.8,12.8,18.084770870114725 + 08/06 08:00:00,12.8,12.8,18.042876121137647 + 08/06 08:10:00,12.8,12.8,18.004848324295865 + 08/06 08:20:00,12.8,12.8,17.960928149416277 + 08/06 08:30:00,12.8,12.8,17.92774055590177 + 08/06 08:40:00,12.8,12.8,17.89648311403665 + 08/06 08:50:00,12.8,12.8,17.86715560584613 + 08/06 09:00:00,12.8,12.8,17.839771944421999 + 08/06 09:10:00,12.8,12.8,17.814254427190244 + 08/06 09:20:00,12.8,12.8,17.781590639775847 + 08/06 09:30:00,12.8,12.8,17.75886533505698 + 08/06 09:40:00,12.8,12.8,17.737215900032547 + 08/06 09:50:00,12.8,12.8,17.715918366685249 + 08/06 10:00:00,12.8,12.8,17.69466242023122 + 08/06 10:10:00,12.8,12.8,17.673578373121264 + 08/06 10:20:00,12.8,12.8,17.65273734611988 + 08/06 10:30:00,12.8,12.8,17.632130108005567 + 08/06 10:40:00,12.8,12.8,17.611939469893608 + 08/06 10:50:00,12.8,12.8,17.592739580911354 + 08/06 11:00:00,12.8,12.8,17.574613003180017 + 08/06 11:10:00,12.8,12.8,17.557188397665528 + 08/06 11:20:00,12.8,12.8,17.540823369995019 + 08/06 11:30:00,12.8,12.8,17.525564715568547 + 08/06 11:40:00,12.8,12.8,17.511196990775195 + 08/06 11:50:00,12.8,12.8,17.497555349979345 + 08/06 12:00:00,12.8,12.8,17.48475709135411 + 08/06 12:10:00,12.8,12.8,17.473297908443546 + 08/06 12:20:00,12.8,12.8,17.46215058053275 + 08/06 12:30:00,12.8,12.8,17.451250923977655 + 08/06 12:40:00,12.8,12.8,17.44090607013062 + 08/06 12:50:00,12.8,12.8,17.43149056234437 + 08/06 13:00:00,12.8,12.8,17.423137879945715 + 08/06 13:10:00,12.8,12.8,17.41407366602504 + 08/06 13:20:00,12.8,12.8,17.406432855979774 + 08/06 13:30:00,12.8,12.8,17.40008875218359 + 08/06 13:40:00,12.8,12.8,17.395000871949095 + 08/06 13:50:00,12.8,12.8,17.39108623057513 + 08/06 14:00:00,12.8,12.8,17.388108928796727 + 08/06 14:10:00,12.8,12.8,17.38866720880858 + 08/06 14:20:00,12.8,12.8,17.389764924763456 + 08/06 14:30:00,12.8,12.8,17.391201549609407 + 08/06 14:40:00,12.8,12.8,17.39258255129748 + 08/06 14:50:00,12.8,12.8,17.3936767445287 + 08/06 15:00:00,12.8,12.8,17.394324208382569 + 08/06 15:10:00,12.8,12.8,18.813660901302204 + 08/06 15:20:00,12.8,12.8,18.97031436866699 + 08/06 15:30:00,12.8,12.8,19.034853595407719 + 08/06 15:40:00,12.8,12.8,19.085743238534126 + 08/06 15:50:00,12.8,12.8,19.12430752229473 + 08/06 16:00:00,12.8,12.8,19.15250343866805 + 08/06 16:10:00,12.8,12.8,19.176451018479168 + 08/06 16:20:00,12.8,12.8,19.20522009247656 + 08/06 16:30:00,12.8,12.8,19.223023335532827 + 08/06 16:40:00,12.8,12.8,19.239335457911804 + 08/06 16:50:00,12.8,12.8,19.255755360588457 + 08/06 17:00:00,12.8,12.8,19.27259769142167 + 08/06 17:10:00,12.8,12.8,19.29084192552228 + 08/06 17:20:00,12.8,12.8,19.326338703650664 + 08/06 17:30:00,12.8,12.8,19.344152059191506 + 08/06 17:40:00,12.8,12.8,19.361119089259107 + 08/06 17:50:00,12.8,12.8,19.3770265286148 + 08/06 18:00:00,12.8,12.8,19.391965635337415 + 08/06 18:10:00,12.8,12.8,19.40576812021048 + 08/06 18:20:00,12.8,12.8,19.41910233407648 + 08/06 18:30:00,12.8,12.8,19.432169737725418 + 08/06 18:40:00,12.8,12.8,19.44502927322133 + 08/06 18:50:00,12.8,12.8,19.457796450338785 + 08/06 19:00:00,12.8,12.8,19.47041972697088 + 08/06 19:10:00,12.8,12.8,19.48307065676729 + 08/06 19:20:00,12.8,12.8,19.495374272429879 + 08/06 19:30:00,12.8,12.8,19.50731429764207 + 08/06 19:40:00,12.8,12.8,19.519012394945066 + 08/06 19:50:00,12.8,12.8,19.53044602834608 + 08/06 20:00:00,12.8,12.8,19.541309309003468 + 08/06 20:10:00,12.8,12.8,19.528684522115538 + 08/06 20:20:00,12.8,12.8,19.537399786844838 + 08/06 20:30:00,12.8,12.8,19.54569442742983 + 08/06 20:40:00,12.8,12.8,19.553565000090719 + 08/06 20:50:00,12.8,12.8,19.561050909298559 + 08/06 21:00:00,12.8,12.8,19.568177570310163 + 08/06 21:10:00,12.8,12.8,19.57520070130488 + 08/06 21:20:00,12.8,12.8,19.581862151610055 + 08/06 21:30:00,12.8,12.8,19.588422224742879 + 08/06 21:40:00,12.8,12.8,19.594813050044949 + 08/06 21:50:00,12.8,12.8,19.601058695596476 + 08/06 22:00:00,12.8,12.8,19.607175934706704 + 08/06 22:10:00,12.8,12.8,19.613083794547806 + 08/06 22:20:00,12.8,12.8,19.61888029576022 + 08/06 22:30:00,12.8,12.8,19.62450642228319 + 08/06 22:40:00,12.8,12.8,19.629948320547024 + 08/06 22:50:00,12.8,12.8,19.635218469147867 + 08/06 23:00:00,12.8,12.8,19.640279339714544 + 08/06 23:10:00,12.8,12.8,19.645236321573856 + 08/06 23:20:00,12.8,12.8,19.65055304538392 + 08/06 23:30:00,12.8,12.8,19.655721901351556 + 08/06 23:40:00,12.8,12.8,19.661027655157377 + 08/06 23:50:00,12.8,12.8,19.665251033610337 + 08/06 24:00:00,12.8,12.8,19.670975023296685 + 08/07 00:10:00,12.8,12.8,19.67617682021695 + 08/07 00:20:00,12.8,12.8,19.680777636654363 + 08/07 00:30:00,12.8,12.8,19.68671190109349 + 08/07 00:40:00,12.8,12.8,19.691837575398318 + 08/07 00:50:00,12.8,12.8,19.69642296197592 + 08/07 01:00:00,12.8,12.8,19.702536832252688 + 08/07 01:10:00,12.8,12.8,19.70773295665603 + 08/07 01:20:00,12.8,12.8,19.71322882876198 + 08/07 01:30:00,12.8,12.8,19.717119847166484 + 08/07 01:40:00,12.8,12.8,19.722438120527529 + 08/07 01:50:00,12.8,12.8,19.726605894831417 + 08/07 02:00:00,12.8,12.8,19.7301590519488 + 08/07 02:10:00,12.8,12.8,19.734938858936969 + 08/07 02:20:00,12.8,12.8,19.73875871841994 + 08/07 02:30:00,12.8,12.8,19.74290744641371 + 08/07 02:40:00,12.8,12.8,19.74564903462247 + 08/07 02:50:00,12.8,12.8,19.75015573539692 + 08/07 03:00:00,12.8,12.8,19.75358775094172 + 08/07 03:10:00,12.8,12.8,19.757529170364625 + 08/07 03:20:00,12.8,12.8,19.75994675090618 + 08/07 03:30:00,12.8,12.8,19.76415569661914 + 08/07 03:40:00,12.8,12.8,19.767320238211846 + 08/07 03:50:00,12.8,12.8,19.769983078846566 + 08/07 04:00:00,12.8,12.8,19.773993869182207 + 08/07 04:10:00,12.8,12.8,19.777105245614366 + 08/07 04:20:00,12.8,12.8,19.780696222197478 + 08/07 04:30:00,12.8,12.8,19.78295923921 + 08/07 04:40:00,12.8,12.8,19.787228136170847 + 08/07 04:50:00,12.8,12.8,19.790428755636957 + 08/07 05:00:00,12.8,12.8,19.79321322793465 + 08/07 05:10:00,12.8,12.8,19.797239368461 + 08/07 05:20:00,12.8,12.8,19.79954609562101 + 08/07 05:30:00,12.8,12.8,19.803453732322095 + 08/07 05:40:00,12.8,12.8,19.8055895953514 + 08/07 05:50:00,12.8,12.8,19.809138849869826 + 08/07 06:00:00,12.8,12.8,19.810782300238818 + 08/07 06:10:00,12.8,12.8,17.82552237073228 + 08/07 06:20:00,12.8,12.8,17.569881509950247 + 08/07 06:30:00,12.8,12.8,17.479660069155057 + 08/07 06:40:00,12.8,12.8,17.405782110742498 + 08/07 06:50:00,12.8,12.8,17.349555904840245 + 08/07 07:00:00,12.8,12.8,17.301568116271129 + 08/07 07:05:00,12.8,12.8,15.807436279371924 + 08/07 07:10:00,12.8,12.8,15.814012117142332 + 08/07 07:20:00,12.8,12.8,15.583599692866807 + 08/07 07:30:00,12.8,12.8,15.469786402159132 + 08/07 07:40:00,12.8,12.8,15.37947877482907 + 08/07 07:50:00,12.8,12.8,15.302287609864509 + 08/07 08:00:00,12.8,12.8,15.234721402242249 + 08/07 08:03:19,12.8,12.8,15.149305631711233 + 08/07 08:06:40,12.8,12.8,15.148470074636253 + 08/07 08:10:00,12.8,12.8,15.148657830202748 + 08/07 08:20:00,12.8,12.8,15.084243703887554 + 08/07 08:30:00,12.8,12.8,15.032823675945865 + 08/07 08:40:00,12.8,12.8,14.984732960047989 + 08/07 08:50:00,12.8,12.8,14.939029883258039 + 08/07 09:00:00,12.8,12.8,14.895204051173366 + 08/07 09:10:00,12.8,12.8,14.852911428219749 + 08/07 09:20:00,12.8,12.8,14.80139491382529 + 08/07 09:30:00,12.8,12.8,14.761422477954627 + 08/07 09:40:00,12.8,12.8,14.72307251795648 + 08/07 09:50:00,12.8,12.8,14.686824340215575 + 08/07 10:00:00,12.8,12.8,14.652954227013476 + 08/07 10:10:00,12.8,12.8,14.621467627187185 + 08/07 10:20:00,12.8,12.8,14.588408965428857 + 08/07 10:30:00,12.8,12.8,14.560488685455207 + 08/07 10:40:00,12.8,12.8,14.53456712268519 + 08/07 10:50:00,12.8,12.8,14.510976136538453 + 08/07 11:00:00,12.8,12.8,14.48985023660721 + 08/07 11:10:00,12.8,12.8,14.470495761685945 + 08/07 11:20:00,12.8,12.8,14.46342083654875 + 08/07 11:30:00,12.8,12.8,14.449089135392454 + 08/07 11:40:00,12.8,12.8,14.435784341627473 + 08/07 11:50:00,12.8,12.8,14.422172762811118 + 08/07 12:00:00,12.8,12.8,14.407556570466089 + 08/07 12:10:00,12.8,12.8,14.391718063004602 + 08/07 12:20:00,12.8,12.8,14.365340317296369 + 08/07 12:30:00,12.8,12.8,14.347770289161522 + 08/07 12:40:00,12.8,12.8,14.330433598748679 + 08/07 12:50:00,12.8,12.8,14.31430387472246 + 08/07 13:00:00,12.8,12.8,14.299928991281416 + 08/07 13:10:00,12.8,12.8,14.287413441041436 + 08/07 13:20:00,12.8,12.8,14.27997131067507 + 08/07 13:30:00,12.8,12.8,14.270421371476811 + 08/07 13:40:00,12.8,12.8,14.26183707857219 + 08/07 13:50:00,12.8,12.8,14.253893512829674 + 08/07 14:00:00,12.8,12.8,14.246395042280934 + 08/07 14:10:00,12.8,12.8,14.23814559327787 + 08/07 14:20:00,12.8,12.8,14.23371675541196 + 08/07 14:30:00,12.8,12.8,14.22617711062497 + 08/07 14:40:00,12.8,12.8,14.219185371935854 + 08/07 14:50:00,12.8,12.8,14.213173363527155 + 08/07 15:00:00,12.8,12.8,14.208070483916052 + 08/07 15:10:00,12.8,12.8,16.356097387945235 + 08/07 15:20:00,12.8,12.8,16.62140034843825 + 08/07 15:30:00,12.8,12.8,16.727768858816626 + 08/07 15:40:00,12.8,12.8,16.81064507201343 + 08/07 15:50:00,12.8,12.8,16.871892978660254 + 08/07 16:00:00,12.8,12.8,16.922341971199566 + 08/07 16:10:00,12.8,12.8,16.990618448351936 + 08/07 16:20:00,12.8,12.8,17.047203665467735 + 08/07 16:30:00,12.8,12.8,17.079901899685554 + 08/07 16:40:00,12.8,12.8,17.108665000981977 + 08/07 16:50:00,12.8,12.8,17.134333306508059 + 08/07 17:00:00,12.8,12.8,17.157223806317263 + 08/07 17:10:00,12.8,12.8,17.191894277174016 + 08/07 17:15:00,12.8,12.8,17.219240421443993 + 08/07 17:20:00,12.8,12.8,17.21883544898259 + 08/07 17:30:00,12.8,12.8,17.23867637171562 + 08/07 17:40:00,12.8,12.8,17.258530768947197 + 08/07 17:50:00,12.8,12.8,17.277686253622418 + 08/07 18:00:00,12.8,12.8,17.296320317352344 + 08/07 18:10:00,12.8,12.8,17.313956598232769 + 08/07 18:20:00,12.8,12.8,17.330898279067477 + 08/07 18:30:00,12.8,12.8,17.34692492974572 + 08/07 18:40:00,12.8,12.8,17.361850609800546 + 08/07 18:50:00,12.8,12.8,17.375487366014928 + 08/07 19:00:00,12.8,12.8,17.38778551356102 + 08/07 19:10:00,12.8,12.8,17.41391572307652 + 08/07 19:20:00,12.8,12.8,17.427158233371246 + 08/07 19:30:00,12.8,12.8,17.439728371989305 + 08/07 19:40:00,12.8,12.8,17.452337845217398 + 08/07 19:50:00,12.8,12.8,17.464459626306558 + 08/07 20:00:00,12.8,12.8,17.476269685571354 + 08/07 20:10:00,12.8,12.8,17.46516750990646 + 08/07 20:20:00,12.8,12.8,17.479935023920846 + 08/07 20:30:00,12.8,12.8,17.489926020499405 + 08/07 20:40:00,12.8,12.8,17.499206355254626 + 08/07 20:50:00,12.8,12.8,17.507969746659805 + 08/07 21:00:00,12.8,12.8,17.516207837405138 + 08/07 21:10:00,12.8,12.8,17.523747384599756 + 08/07 21:20:00,12.8,12.8,17.53081572275204 + 08/07 21:30:00,12.8,12.8,17.537637878645908 + 08/07 21:40:00,12.8,12.8,17.54420435711753 + 08/07 21:50:00,12.8,12.8,17.55050797903135 + 08/07 22:00:00,12.8,12.8,17.556683145142629 + 08/07 22:10:00,12.8,12.8,18.919925515404289 + 08/07 22:20:00,12.8,12.8,19.06920249788639 + 08/07 22:30:00,12.8,12.8,19.134625495873743 + 08/07 22:40:00,12.8,12.8,19.187700438921114 + 08/07 22:50:00,12.8,12.8,19.230107170941904 + 08/07 23:00:00,12.8,12.8,19.263601173323506 + 08/07 23:10:00,12.8,12.8,19.29331918182791 + 08/07 23:20:00,12.8,12.8,19.319852574277335 + 08/07 23:30:00,12.8,12.8,19.34414376075118 + 08/07 23:40:00,12.8,12.8,19.366956161230858 + 08/07 23:50:00,12.8,12.8,19.38836901547897 + 08/07 24:00:00,12.8,12.8,19.40880927206208 + 08/08 00:10:00,12.8,12.8,19.427853407218067 + 08/08 00:20:00,12.8,12.8,19.446015039816499 + 08/08 00:30:00,12.8,12.8,19.463091814652853 + 08/08 00:40:00,12.8,12.8,19.47839316043998 + 08/08 00:50:00,12.8,12.8,19.49450770146847 + 08/08 01:00:00,12.8,12.8,19.509136632652326 + 08/08 01:10:00,12.8,12.8,19.523556796753249 + 08/08 01:20:00,12.8,12.8,19.537074031537409 + 08/08 01:30:00,12.8,12.8,19.548837742234256 + 08/08 01:40:00,12.8,12.8,19.561567784183127 + 08/08 01:50:00,12.8,12.8,19.572773658893156 + 08/08 02:00:00,12.8,12.8,19.58392210493182 + 08/08 02:10:00,12.8,12.8,19.594557500152097 + 08/08 02:20:00,12.8,12.8,19.60363046160665 + 08/08 02:30:00,12.8,12.8,19.614236831594388 + 08/08 02:40:00,12.8,12.8,19.623456882293003 + 08/08 02:50:00,12.8,12.8,19.63299906387052 + 08/08 03:00:00,12.8,12.8,19.641993194125697 + 08/08 03:10:00,12.821021021021022,12.821021021021022,19.650383381388275 + 08/08 03:20:00,12.842042042042042,12.842042042042042,19.657146805834917 + 08/08 03:30:00,12.863063063063063,12.863063063063063,19.666092959271397 + 08/08 03:40:00,12.884084084084084,12.884084084084084,19.67370876785806 + 08/08 03:50:00,12.905105105105106,12.905105105105106,19.682036335849856 + 08/08 04:00:00,12.926126126126127,12.926126126126127,19.688870985929286 + 08/08 04:10:00,12.926126126126127,12.926126126126127,19.69830210504831 + 08/08 04:20:00,12.926126126126127,12.926126126126127,19.706220481415195 + 08/08 04:30:00,12.926126126126127,12.926126126126127,19.71428441837491 + 08/08 04:40:00,12.926126126126127,12.926126126126127,19.72162169985632 + 08/08 04:50:00,12.926126126126127,12.926126126126127,19.727124470502113 + 08/08 05:00:00,12.926126126126127,12.926126126126127,19.734389208958154 + 08/08 05:10:00,12.926126126126127,12.926126126126127,19.740127986299286 + 08/08 05:20:00,12.926126126126127,12.926126126126127,19.746375612683126 + 08/08 05:30:00,12.926126126126127,12.926126126126127,19.750986925570055 + 08/08 05:40:00,12.926126126126127,12.926126126126127,19.75658316909184 + 08/08 05:50:00,12.926126126126127,12.926126126126127,19.76187130931241 + 08/08 06:00:00,12.926126126126127,12.926126126126127,19.7670728950862 + 08/08 06:10:00,12.87987987987988,12.87987987987988,17.781606615812814 + 08/08 06:20:00,12.833633633633636,12.833633633633636,17.529142378860585 + 08/08 06:30:00,12.8,12.8,17.44098073140834 + 08/08 06:40:00,12.8,12.8,17.369218826620274 + 08/08 06:50:00,12.8,12.8,17.314419804362904 + 08/08 07:00:00,12.8,12.8,17.267613029537594 + 08/08 07:05:00,12.8,12.8,15.77415526309606 + 08/08 07:10:00,12.8,12.8,15.780712986594388 + 08/08 07:15:00,12.8,12.8,15.549361683176976 + 08/08 07:20:00,12.8,12.8,15.547607177861682 + 08/08 07:30:00,12.8,12.8,15.440534115250202 + 08/08 07:40:00,12.8,12.8,15.353209819840865 + 08/08 07:50:00,12.8,12.8,15.278142572737096 + 08/08 08:00:00,12.8,12.8,15.213054256550138 + 08/08 08:03:19,12.8,12.8,15.129993515311142 + 08/08 08:06:40,12.8,12.8,15.129608251696462 + 08/08 08:10:00,12.8,12.8,15.129550866398594 + 08/08 08:20:00,12.8,12.8,15.068005980415628 + 08/08 08:30:00,12.8,12.8,15.019361785174239 + 08/08 08:40:00,12.8,12.8,14.974231358358216 + 08/08 08:50:00,12.8,12.8,14.931859872485854 + 08/08 09:00:00,12.8,12.8,14.891792412881163 + 08/08 09:10:00,12.8,12.8,14.853551379806732 + 08/08 09:20:00,12.8,12.8,14.806406122895416 + 08/08 09:30:00,12.8,12.8,14.771021515687027 + 08/08 09:40:00,12.8,12.8,14.737030256358013 + 08/08 09:50:00,12.8,12.8,14.704229536371124 + 08/08 10:00:00,12.8,12.8,14.672612173483781 + 08/08 10:10:00,12.8,12.8,14.641925715135141 + 08/08 10:20:00,12.8,12.8,14.608456726637339 + 08/08 10:30:00,12.8,12.8,14.579001574353893 + 08/08 10:40:00,12.8,12.8,14.550198159820602 + 08/08 10:50:00,12.8,12.8,14.522131937606617 + 08/08 11:00:00,12.8,12.8,14.49480766104111 + 08/08 11:10:00,12.8,12.8,14.468618440443225 + 08/08 11:20:00,12.8,12.8,14.452841291630476 + 08/08 11:30:00,12.8,12.8,14.428190445556855 + 08/08 11:40:00,12.8,12.8,14.40483978482312 + 08/08 11:50:00,12.8,12.8,14.384213667829038 + 08/08 12:00:00,12.8,12.8,14.366400003878893 + 08/08 12:10:00,12.8,12.8,14.350648276646379 + 08/08 12:20:00,12.8,12.8,14.328011879092126 + 08/08 12:30:00,12.8,12.8,14.317216145199306 + 08/08 12:40:00,12.8,12.8,14.30780355218099 + 08/08 12:50:00,12.8,12.8,14.298097268403734 + 08/08 13:00:00,12.8,12.8,14.287533688445472 + 08/08 13:10:00,12.8,12.8,14.276834447756493 + 08/08 13:20:00,12.8,12.8,14.269092557651295 + 08/08 13:30:00,12.8,12.8,14.257533592517538 + 08/08 13:40:00,12.8,12.8,14.246216254717682 + 08/08 13:50:00,12.8,12.8,14.236017659194598 + 08/08 14:00:00,12.8,12.8,14.227161316857602 + 08/08 14:10:00,12.8,12.8,14.219474775438377 + 08/08 14:20:00,12.8,12.8,14.21636290127537 + 08/08 14:30:00,12.8,12.8,14.210654893003217 + 08/08 14:40:00,12.8,12.8,14.205668976029984 + 08/08 14:50:00,12.8,12.8,14.201432028358543 + 08/08 15:00:00,12.8,12.8,14.19788388983356 + 08/08 15:10:00,12.8,12.8,16.343790590105376 + 08/08 15:20:00,12.8,12.8,16.60711518694893 + 08/08 15:30:00,12.8,12.8,16.71075578104498 + 08/08 15:40:00,12.8,12.8,16.79089520060044 + 08/08 15:50:00,12.8,12.8,16.851101418225548 + 08/08 16:00:00,12.8,12.8,16.901638025074676 + 08/08 16:10:00,12.8,12.8,16.973852109600175 + 08/08 16:20:00,12.8,12.8,17.036269657958145 + 08/08 16:30:00,12.8,12.8,17.07668372387971 + 08/08 16:40:00,12.8,12.8,17.114109714727165 + 08/08 16:50:00,12.8,12.8,17.148000388155343 + 08/08 17:00:00,12.8,12.8,17.178180625333075 + 08/08 17:10:00,12.8,12.8,17.216158559278367 + 08/08 17:15:00,12.8,12.8,17.2441839892276 + 08/08 17:20:00,12.8,12.8,17.24375676560308 + 08/08 17:30:00,12.8,12.8,17.26121612859653 + 08/08 17:35:00,12.8,12.8,17.27710634778583 + 08/08 17:40:00,12.8,12.8,17.276917144492268 + 08/08 17:50:00,12.8,12.8,17.290561361322909 + 08/08 18:00:00,12.8,12.8,17.303890924173776 + 08/08 18:10:00,12.8,12.8,17.31613267838915 + 08/08 18:20:00,12.8,12.8,17.328355046419746 + 08/08 18:30:00,12.8,12.8,17.340779488408577 + 08/08 18:40:00,12.8,12.8,17.35316483700451 + 08/08 18:50:00,12.8,12.8,17.36516422060172 + 08/08 19:00:00,12.8,12.8,17.376537390393808 + 08/08 19:10:00,12.8,12.8,17.400142449227145 + 08/08 19:20:00,12.8,12.8,17.411483447295124 + 08/08 19:30:00,12.8,12.8,17.422432031584849 + 08/08 19:40:00,12.8,12.8,17.433540467594854 + 08/08 19:50:00,12.8,12.8,17.444457979979594 + 08/08 20:00:00,12.8,12.8,17.45497290401659 + 08/08 20:10:00,12.8,12.8,17.442788326439854 + 08/08 20:20:00,12.8,12.8,17.45650322298431 + 08/08 20:30:00,12.8,12.8,17.465594769933057 + 08/08 20:40:00,12.8,12.8,17.47411630506671 + 08/08 20:50:00,12.8,12.8,17.482291206241933 + 08/08 21:00:00,12.8,12.8,17.490084774434398 + 08/08 21:10:00,12.8,12.8,17.49782431019558 + 08/08 21:20:00,12.8,12.8,17.505536142266828 + 08/08 21:30:00,12.8,12.8,17.513524773877906 + 08/08 21:40:00,12.8,12.8,17.521820954075804 + 08/08 21:50:00,12.8,12.8,17.53038154274931 + 08/08 22:00:00,12.8,12.8,17.53923109505919 + 08/08 22:10:00,12.8,12.8,18.90535256304334 + 08/08 22:20:00,12.8,12.8,19.05953005996936 + 08/08 22:30:00,12.8,12.8,19.12808305509119 + 08/08 22:40:00,12.8,12.8,19.180764147336764 + 08/08 22:50:00,12.8,12.8,19.22248319622149 + 08/08 23:00:00,12.8,12.8,19.256815564620525 + 08/08 23:10:00,12.8,12.8,19.286280259969325 + 08/08 23:20:00,12.8,12.8,19.31213865136106 + 08/08 23:30:00,12.8,12.8,19.33497715053586 + 08/08 23:40:00,12.8,12.8,19.355231716192223 + 08/08 23:50:00,12.8,12.8,19.373345480803545 + 08/08 24:00:00,12.8,12.8,19.389579075942434 + 08/09 00:10:00,12.8,12.8,19.404426467880357 + 08/09 00:20:00,12.8,12.8,19.41777902911778 + 08/09 00:30:00,12.8,12.8,19.432008709175606 + 08/09 00:40:00,12.8,12.8,19.445437544400489 + 08/09 00:50:00,12.8,12.8,19.458318626832275 + 08/09 01:00:00,12.8,12.8,19.472199639727458 + 08/09 01:10:00,12.8,12.8,19.48544732155321 + 08/09 01:20:00,12.8,12.8,19.49802695474443 + 08/09 01:30:00,12.8,12.8,19.511349122081236 + 08/09 01:40:00,12.8,12.8,19.52368676085952 + 08/09 01:50:00,12.8,12.8,19.53537910567066 + 08/09 02:00:00,12.8,12.8,19.54798884313352 + 08/09 02:10:00,12.8,12.8,19.559714277096224 + 08/09 02:20:00,12.8,12.8,19.570562911738958 + 08/09 02:30:00,12.8,12.8,19.58179453432284 + 08/09 02:40:00,12.8,12.8,19.591728615569399 + 08/09 02:50:00,12.8,12.8,19.601491910629677 + 08/09 03:00:00,12.8,12.8,19.609569000205047 + 08/09 03:10:00,12.8,12.8,19.618661669283683 + 08/09 03:20:00,12.8,12.8,19.626537974731435 + 08/09 03:30:00,12.8,12.8,19.634514153318209 + 08/09 03:40:00,12.8,12.8,19.64105376071462 + 08/09 03:50:00,12.8,12.8,19.649005247353334 + 08/09 04:00:00,12.8,12.8,19.655817174341349 + 08/09 04:10:00,12.8,12.8,19.662815075302537 + 08/09 04:20:00,12.8,12.8,19.667977909386925 + 08/09 04:30:00,12.8,12.8,19.67463237229686 + 08/09 04:40:00,12.8,12.8,19.680097284085656 + 08/09 04:50:00,12.8,12.8,19.685954275422867 + 08/09 05:00:00,12.8,12.8,19.690284859035154 + 08/09 05:10:00,12.8,12.8,19.696347399751347 + 08/09 05:20:00,12.8,12.8,19.70137325497167 + 08/09 05:30:00,12.8,12.8,19.70594563026631 + 08/09 05:40:00,12.8,12.8,19.711890374950415 + 08/09 05:50:00,12.8,12.8,19.716153932733513 + 08/09 06:00:00,12.8,12.8,19.721823397800298 + 08/09 06:10:00,12.8,12.8,17.73436723404947 + 08/09 06:15:00,12.8,12.8,17.480313754585056 + 08/09 06:20:00,12.8,12.8,17.48505673879827 + 08/09 06:30:00,12.8,12.8,17.39535271308536 + 08/09 06:40:00,12.8,12.8,17.32569755457717 + 08/09 06:50:00,12.8,12.8,17.273509958252285 + 08/09 07:00:00,12.8,12.8,17.229310713532788 + 08/09 07:05:00,12.8,12.8,15.738863661641862 + 08/09 07:10:00,12.8,12.8,15.744838933067909 + 08/09 07:15:00,12.8,12.8,15.516540878569833 + 08/09 07:20:00,12.8,12.8,15.51477940191252 + 08/09 07:30:00,12.8,12.8,15.410023359637572 + 08/09 07:40:00,12.8,12.8,15.324191159625537 + 08/09 07:50:00,12.8,12.8,15.249632759904701 + 08/09 08:00:00,12.8,12.8,15.18399766054635 + 08/09 08:03:19,12.8,12.8,15.099593663491487 + 08/09 08:06:40,12.8,12.8,15.099172417084923 + 08/09 08:10:00,12.8,12.8,15.099160725651835 + 08/09 08:20:00,12.8,12.8,15.035864294247429 + 08/09 08:30:00,12.8,12.8,14.985246950664419 + 08/09 08:40:00,12.8,12.8,14.938105756807847 + 08/09 08:50:00,12.8,12.8,14.89393143606736 + 08/09 09:00:00,12.8,12.8,14.85240460930362 + 08/09 09:10:00,12.8,12.8,14.813057913465 + 08/09 09:20:00,12.8,12.8,14.764827321207424 + 08/09 09:30:00,12.8,12.8,14.728306407023329 + 08/09 09:40:00,12.8,12.8,14.693291329766844 + 08/09 09:50:00,12.8,12.8,14.659868180861333 + 08/09 10:00:00,12.8,12.8,14.6281438311963 + 08/09 10:10:00,12.8,12.8,14.597677470662834 + 08/09 10:20:00,12.8,12.8,14.565475009915656 + 08/09 10:30:00,12.8,12.8,14.538471131645164 + 08/09 10:40:00,12.8,12.8,14.513136412906214 + 08/09 10:50:00,12.8,12.8,14.489556689754865 + 08/09 11:00:00,12.8,12.8,14.467715279476753 + 08/09 11:10:00,12.8,12.8,14.448152842616516 + 08/09 11:20:00,12.8,12.8,14.439418607369712 + 08/09 11:30:00,12.8,12.8,14.42215388333549 + 08/09 11:40:00,12.8,12.8,14.405380294062667 + 08/09 11:50:00,12.8,12.8,14.388864370243855 + 08/09 12:00:00,12.8,12.8,14.372359844931463 + 08/09 12:10:00,12.8,12.8,14.355513815635117 + 08/09 12:20:00,12.8,12.8,14.329227227250245 + 08/09 12:30:00,12.8,12.8,14.312668523570279 + 08/09 12:40:00,12.8,12.8,14.296402166648824 + 08/09 12:50:00,12.8,12.8,14.280155512671998 + 08/09 13:00:00,12.8,12.8,14.263983470410631 + 08/09 13:10:00,12.8,12.8,14.248411050819652 + 08/09 13:20:00,12.8,12.8,14.236552946632326 + 08/09 13:30:00,12.8,12.8,14.221502878128402 + 08/09 13:40:00,12.8,12.8,14.207385589358136 + 08/09 13:50:00,12.8,12.8,14.195369006698654 + 08/09 14:00:00,12.8,12.8,14.185474558701778 + 08/09 14:10:00,12.8,12.8,14.177352371001064 + 08/09 14:20:00,12.8,12.8,14.174137636534648 + 08/09 14:30:00,12.8,12.8,14.168449112263515 + 08/09 14:40:00,12.8,12.8,14.163314993274428 + 08/09 14:50:00,12.8,12.8,14.158443028165513 + 08/09 15:00:00,12.8,12.8,14.153605300863989 + 08/09 15:05:00,12.8,12.8,16.309121954652203 + 08/09 15:10:00,12.8,12.8,16.304387674097958 + 08/09 15:20:00,12.8,12.8,16.560096395277307 + 08/09 15:30:00,12.8,12.8,16.66287717053115 + 08/09 15:40:00,12.8,12.8,16.740307103948014 + 08/09 15:50:00,12.8,12.8,16.799084652936004 + 08/09 16:00:00,12.8,12.8,16.846394758884317 + 08/09 16:10:00,12.8,12.8,16.91150226279258 + 08/09 16:20:00,12.8,12.8,16.96532632850804 + 08/09 16:30:00,12.8,12.8,16.99589361025599 + 08/09 16:40:00,12.8,12.8,17.02337436924097 + 08/09 16:50:00,12.8,12.8,17.04892993364388 + 08/09 17:00:00,12.8,12.8,17.0730506483903 + 08/09 17:10:00,12.8,12.8,17.11116288266141 + 08/09 17:15:00,12.8,12.8,17.141668746179307 + 08/09 17:20:00,12.8,12.8,17.141269293225386 + 08/09 17:30:00,12.8,12.8,17.163488908931187 + 08/09 17:40:00,12.8,12.8,17.18510462302843 + 08/09 17:50:00,12.8,12.8,17.205452847606887 + 08/09 18:00:00,12.8,12.8,17.225007687081005 + 08/09 18:10:00,12.8,12.8,17.243424626393158 + 08/09 18:20:00,12.8,12.8,17.261261670805177 + 08/09 18:30:00,12.8,12.8,17.278683764800264 + 08/09 18:40:00,12.8,12.8,17.295560927336927 + 08/09 18:50:00,12.8,12.8,17.311615452004859 + 08/09 19:00:00,12.8,12.8,17.326790832601426 + 08/09 19:10:00,12.8,12.8,17.353943394220634 + 08/09 19:20:00,12.8,12.8,17.36843270665527 + 08/09 19:30:00,12.8,12.8,17.382239219736407 + 08/09 19:40:00,12.8,12.8,17.395979928936187 + 08/09 19:50:00,12.8,12.8,17.40928417632804 + 08/09 20:00:00,12.8,12.8,17.422024668952706 + 08/09 20:10:00,12.8,12.8,17.411763746222236 + 08/09 20:20:00,12.8,12.8,17.427328008220728 + 08/09 20:30:00,12.8,12.8,17.438190911690925 + 08/09 20:40:00,12.8,12.8,17.448566025290199 + 08/09 20:50:00,12.8,12.8,17.458642014650516 + 08/09 21:00:00,12.8,12.8,17.468368378643054 + 08/09 21:10:00,12.8,12.8,17.477679584831266 + 08/09 21:20:00,12.8,12.8,17.486474432025167 + 08/09 21:30:00,12.8,12.8,17.49482399524348 + 08/09 21:40:00,12.8,12.8,17.502734643134344 + 08/09 21:50:00,12.8,12.8,17.510179617717897 + 08/09 22:00:00,12.8,12.8,17.517335189990889 + 08/09 22:10:00,12.8,12.8,18.881902061190379 + 08/09 22:20:00,12.8,12.8,19.031717652953984 + 08/09 22:30:00,12.8,12.8,19.09788466695014 + 08/09 22:40:00,12.8,12.8,19.151607700617644 + 08/09 22:50:00,12.8,12.8,19.19483327742082 + 08/09 23:00:00,12.8,12.8,19.22909895740966 + 08/09 23:10:00,12.8,12.8,19.25898290835374 + 08/09 23:20:00,12.8,12.8,19.28544524349897 + 08/09 23:30:00,12.8,12.8,19.309291517029437 + 08/09 23:40:00,12.8,12.8,19.331323389963079 + 08/09 23:50:00,12.8,12.8,19.35167493980112 + 08/09 24:00:00,12.8,12.8,19.37065259413547 + 08/10 00:10:00,12.8,12.8,19.38773804631009 + 08/10 00:20:00,12.8,12.8,19.404978433888546 + 08/10 00:30:00,12.8,12.8,19.420783487323726 + 08/10 00:40:00,12.8,12.8,19.436312453032536 + 08/10 00:50:00,12.8,12.8,19.450212974598807 + 08/10 01:00:00,12.8,12.8,19.46493186315468 + 08/10 01:10:00,12.8,12.8,19.478288500137894 + 08/10 01:20:00,12.8,12.8,19.490730744021144 + 08/10 01:30:00,12.8,12.8,19.503701280361768 + 08/10 01:40:00,12.8,12.8,19.515540113423936 + 08/10 01:50:00,12.8,12.8,19.526547255912566 + 08/10 02:00:00,12.8,12.8,19.538075789398968 + 08/10 02:10:00,12.8,12.8,19.54851313855726 + 08/10 02:20:00,12.8,12.8,19.55817794281693 + 08/10 02:30:00,12.8,12.8,19.568469804811934 + 08/10 02:40:00,12.8,12.8,19.577737008182948 + 08/10 02:50:00,12.8,12.8,19.586161607549554 + 08/10 03:00:00,12.8,12.8,19.59546943455134 + 08/10 03:10:00,12.8,12.8,19.60398391040775 + 08/10 03:20:00,12.8,12.8,19.611999445538357 + 08/10 03:30:00,12.8,12.8,19.62113398984607 + 08/10 03:40:00,12.8,12.8,19.62948744515204 + 08/10 03:50:00,12.8,12.8,19.63813423744329 + 08/10 04:00:00,12.8,12.8,19.64559813999589 + 08/10 04:10:00,12.8,12.8,19.654450418883003 + 08/10 04:20:00,12.8,12.8,19.662203987440589 + 08/10 04:30:00,12.8,12.8,19.670104277074804 + 08/10 04:40:00,12.8,12.8,19.676312907749705 + 08/10 04:50:00,12.8,12.8,19.68390369427516 + 08/10 05:00:00,12.8,12.8,19.69029370914427 + 08/10 05:10:00,12.8,12.8,19.695814135904138 + 08/10 05:20:00,12.8,12.8,19.702104090877545 + 08/10 05:30:00,12.8,12.8,19.70635140010135 + 08/10 05:40:00,12.8,12.8,19.711674139783115 + 08/10 05:50:00,12.8,12.8,19.716014721687054 + 08/10 06:00:00,12.8,12.8,19.7192757175443 + 08/10 06:05:00,12.8,12.8,17.712849750203796 + 08/10 06:10:00,12.8,12.8,17.720920126673545 + 08/10 06:20:00,12.8,12.8,17.478245302592599 + 08/10 06:30:00,12.8,12.8,17.384998751943266 + 08/10 06:40:00,12.8,12.8,17.317728610680527 + 08/10 06:50:00,12.8,12.8,17.263342949363989 + 08/10 07:00:00,12.8,12.8,17.21752615562212 + 08/10 07:05:00,12.8,12.8,15.72395802127766 + 08/10 07:10:00,12.8,12.8,15.730436261117463 + 08/10 07:15:00,12.8,12.8,15.499189634925504 + 08/10 07:20:00,12.8,12.8,15.497436678682249 + 08/10 07:30:00,12.8,12.8,15.390010972926464 + 08/10 07:40:00,12.8,12.8,15.301518836372564 + 08/10 07:50:00,12.8,12.8,15.224490203887 + 08/10 08:00:00,12.8,12.8,15.156904908194278 + 08/10 08:03:19,12.8,12.8,15.071124908631843 + 08/10 08:06:40,12.8,12.8,15.070769637905258 + 08/10 08:10:00,12.8,12.8,15.070692286109362 + 08/10 08:20:00,12.8,12.8,15.00649219241684 + 08/10 08:30:00,12.8,12.8,14.955274634022637 + 08/10 08:40:00,12.8,12.8,14.907841453270713 + 08/10 08:50:00,12.8,12.8,14.863619939649127 + 08/10 09:00:00,12.8,12.8,14.822228133339703 + 08/10 09:10:00,12.8,12.8,14.783490874239963 + 08/10 09:20:00,12.8,12.8,14.736262844593503 + 08/10 09:30:00,12.8,12.8,14.701132491357209 + 08/10 09:40:00,12.8,12.8,14.667623094160027 + 08/10 09:50:00,12.8,12.8,14.635412951544545 + 08/10 10:00:00,12.8,12.8,14.604446341333413 + 08/10 10:10:00,12.8,12.8,14.574975103790269 + 08/10 10:20:00,12.8,12.8,14.542831111761413 + 08/10 10:30:00,12.8,12.8,14.514782296183294 + 08/10 10:40:00,12.8,12.8,14.48795180734164 + 08/10 10:50:00,12.8,12.8,14.463246113324868 + 08/10 11:00:00,12.8,12.8,14.44049868582981 + 08/10 11:10:00,12.8,12.8,14.41892525429704 + 08/10 11:20:00,12.8,12.8,14.410343543104013 + 08/10 11:30:00,12.8,12.8,14.395502870062364 + 08/10 11:40:00,12.8,12.8,14.381891163659939 + 08/10 11:50:00,12.8,12.8,14.367264165298304 + 08/10 12:00:00,12.8,12.8,14.35075759463032 + 08/10 12:10:00,12.8,12.8,14.332657525511049 + 08/10 12:20:00,12.8,12.8,14.303421931128188 + 08/10 12:30:00,12.8,12.8,14.282611495845466 + 08/10 12:40:00,12.8,12.8,14.262772015728585 + 08/10 12:50:00,12.8,12.8,14.246286797821533 + 08/10 13:00:00,12.8,12.8,14.234084535448174 + 08/10 13:10:00,12.8,12.8,14.225467945299853 + 08/10 13:20:00,12.8,12.8,14.223312164138433 + 08/10 13:30:00,12.8,12.8,14.219988890739194 + 08/10 13:40:00,12.8,12.8,14.218175089811984 + 08/10 13:50:00,12.8,12.8,14.217204877387186 + 08/10 14:00:00,12.8,12.8,14.21669657659343 + 08/10 14:10:00,12.8,12.8,14.217372124742243 + 08/10 14:20:00,12.8,12.8,14.22146125674171 + 08/10 14:30:00,12.8,12.8,14.221964047032627 + 08/10 14:40:00,12.8,12.8,14.221648235297965 + 08/10 14:50:00,12.8,12.8,14.219521954701744 + 08/10 15:00:00,12.8,12.8,14.215042272133614 + 08/10 15:10:00,12.8,12.8,16.35670643427013 + 08/10 15:20:00,12.8,12.8,16.614876024414284 + 08/10 15:30:00,12.8,12.8,16.71249456994644 + 08/10 15:40:00,12.8,12.8,16.785348545038553 + 08/10 15:50:00,12.8,12.8,16.83659488695628 + 08/10 16:00:00,12.8,12.8,16.875988324269615 + 08/10 16:10:00,12.8,12.8,16.93281068602993 + 08/10 16:20:00,12.8,12.8,16.978480114655114 + 08/10 16:30:00,12.8,12.8,17.00092957719093 + 08/10 16:40:00,12.8,12.8,17.020871149799765 + 08/10 16:50:00,12.8,12.8,17.040803405027626 + 08/10 17:00:00,12.8,12.8,17.06129911594204 + 08/10 17:10:00,12.8,12.8,17.096377679699566 + 08/10 17:15:00,12.8,12.8,17.125350664905278 + 08/10 17:20:00,12.8,12.8,17.124961340428145 + 08/10 17:30:00,12.8,12.8,17.146961819724387 + 08/10 17:40:00,12.8,12.8,17.16892287185543 + 08/10 17:50:00,12.8,12.8,17.189579562805755 + 08/10 18:00:00,12.8,12.8,17.209132021722458 + 08/10 18:10:00,12.8,12.8,17.227185246631703 + 08/10 18:20:00,12.8,12.8,17.24425815267671 + 08/10 18:30:00,12.8,12.8,17.260528241344887 + 08/10 18:40:00,12.8,12.8,17.276123885020906 + 08/10 18:50:00,12.8,12.8,17.29120716936141 + 08/10 19:00:00,12.8,12.8,17.305808845667977 + 08/10 19:10:00,12.8,12.8,17.333620378920178 + 08/10 19:20:00,12.8,12.8,17.348866032272583 + 08/10 19:30:00,12.8,12.8,17.363394191891154 + 08/10 19:40:00,12.8,12.8,17.377730538518635 + 08/10 19:50:00,12.8,12.8,17.391422296564437 + 08/10 20:00:00,12.8,12.8,17.404266958378387 + 08/10 20:10:00,12.8,12.8,17.392412598822405 + 08/10 20:20:00,12.8,12.8,17.40607305638768 + 08/10 20:30:00,12.8,12.8,17.414902261923069 + 08/10 20:40:00,12.8,12.8,17.422993084128579 + 08/10 20:50:00,12.8,12.8,17.430596119221375 + 08/10 21:00:00,12.8,12.8,17.43776776992079 + 08/10 21:10:00,12.8,12.8,17.446424793347235 + 08/10 21:20:00,12.8,12.8,17.455109159909598 + 08/10 21:30:00,12.8,12.8,17.46410706496287 + 08/10 21:40:00,12.8,12.8,17.473455919569838 + 08/10 21:50:00,12.8,12.8,17.48306229262344 + 08/10 22:00:00,12.8,12.8,17.49288367423235 + 08/10 22:10:00,12.8,12.8,18.86032557760121 + 08/10 22:20:00,12.8,12.8,19.01433935688674 + 08/10 22:30:00,12.8,12.8,19.083524675392888 + 08/10 22:40:00,12.8,12.8,19.13991109778216 + 08/10 22:50:00,12.8,12.8,19.183553881076894 + 08/10 23:00:00,12.8,12.8,19.220911603123605 + 08/10 23:10:00,12.8,12.8,19.253366724358125 + 08/10 23:20:00,12.8,12.8,19.282018293426718 + 08/10 23:30:00,12.8,12.8,19.307304573845167 + 08/10 23:40:00,12.8,12.8,19.329594359852693 + 08/10 23:50:00,12.8,12.8,19.34960375626736 + 08/10 24:00:00,12.8,12.8,19.367599883505148 + 08/11 00:10:00,12.8,12.8,19.384855191941634 + 08/11 00:20:00,12.8,12.8,19.400444795130924 + 08/11 00:30:00,12.8,12.8,19.416730853364208 + 08/11 00:40:00,12.8,12.8,19.43196670583808 + 08/11 00:50:00,12.8,12.8,19.446443008081596 + 08/11 01:00:00,12.8,12.8,19.461697065781779 + 08/11 01:10:00,12.8,12.8,19.475979807173368 + 08/11 01:20:00,12.8,12.8,19.48934048242185 + 08/11 01:30:00,12.8,12.8,19.50304855520688 + 08/11 01:40:00,12.8,12.8,19.515472825874157 + 08/11 01:50:00,12.8,12.8,19.52769544685669 + 08/11 02:00:00,12.8,12.8,19.538413396208868 + 08/11 02:10:00,12.8,12.8,19.549936158407207 + 08/11 02:20:00,12.8,12.8,19.560300983032265 + 08/11 02:30:00,12.8,12.8,19.56985760669935 + 08/11 02:40:00,12.8,12.8,19.580206137458395 + 08/11 02:50:00,12.8,12.8,19.589626776815679 + 08/11 03:00:00,12.8,12.8,19.598299023316377 + 08/11 03:10:00,12.8,12.8,19.60772827625525 + 08/11 03:20:00,12.8,12.8,19.61609071636644 + 08/11 03:30:00,12.8,12.8,19.623564207686099 + 08/11 03:40:00,12.8,12.8,19.632025839151689 + 08/11 03:50:00,12.8,12.8,19.63944211555115 + 08/11 04:00:00,12.8,12.8,19.647025687458745 + 08/11 04:10:00,12.8,12.8,19.65323930432875 + 08/11 04:20:00,12.8,12.8,19.66094729533488 + 08/11 04:30:00,12.8,12.8,19.66761342321872 + 08/11 04:40:00,12.8,12.8,19.673728567429249 + 08/11 04:50:00,12.8,12.8,19.681026544631089 + 08/11 05:00:00,12.8,12.8,19.687375118926999 + 08/11 05:10:00,12.8,12.8,19.693786865497978 + 08/11 05:20:00,12.8,12.8,19.698548971058579 + 08/11 05:30:00,12.8,12.8,19.704109628930249 + 08/11 05:40:00,12.8,12.8,19.709461754385545 + 08/11 05:50:00,12.8,12.8,19.71445365174653 + 08/11 06:00:00,12.8,12.8,19.718482665845838 + 08/11 06:05:00,12.8,12.8,17.7126283347398 + 08/11 06:10:00,12.8,12.8,17.720715783646793 + 08/11 06:20:00,12.8,12.8,17.478609055534247 + 08/11 06:30:00,12.8,12.8,17.385822212842894 + 08/11 06:40:00,12.8,12.8,17.319102321686978 + 08/11 06:50:00,12.8,12.8,17.265711029066958 + 08/11 07:00:00,12.8,12.8,17.22168398197442 + 08/11 07:05:00,12.8,12.8,15.73103975531799 + 08/11 07:10:00,12.8,12.8,15.737505223301668 + 08/11 07:15:00,12.8,12.8,15.510429140014 + 08/11 07:20:00,12.8,12.8,15.508675861059413 + 08/11 07:30:00,12.8,12.8,15.4062112655641 + 08/11 07:40:00,12.8,12.8,15.323390624482599 + 08/11 07:50:00,12.8,12.8,15.252316067042365 + 08/11 08:00:00,12.8,12.8,15.190560036888574 + 08/11 08:03:19,12.8,12.8,15.110267240256509 + 08/11 08:06:40,12.8,12.8,15.109789731378124 + 08/11 08:10:00,12.8,12.8,15.10980995070169 + 08/11 08:20:00,12.8,12.8,15.050819176767707 + 08/11 08:30:00,12.8,12.8,15.004925229897586 + 08/11 08:40:00,12.8,12.8,14.962747924314272 + 08/11 08:50:00,12.8,12.8,14.923843233379963 + 08/11 09:00:00,12.8,12.8,14.887664897900232 + 08/11 09:10:00,12.8,12.8,14.853618518664927 + 08/11 09:20:00,12.8,12.8,14.810922765322332 + 08/11 09:30:00,12.8,12.8,14.780194922824438 + 08/11 09:40:00,12.8,12.8,14.750991690908068 + 08/11 09:50:00,12.8,12.8,14.722997563058403 + 08/11 10:00:00,12.8,12.8,14.696139461000053 + 08/11 10:10:00,12.8,12.8,14.670102496524758 + 08/11 10:20:00,12.8,12.8,14.641666043763966 + 08/11 10:30:00,12.8,12.8,14.617736337547438 + 08/11 10:40:00,12.8,12.8,14.594720968385858 + 08/11 10:50:00,12.8,12.8,14.572372491960844 + 08/11 11:00:00,12.8,12.8,14.550589880673427 + 08/11 11:10:00,12.8,12.8,14.529752021783065 + 08/11 11:20:00,12.8,12.8,14.518974881284262 + 08/11 11:30:00,12.8,12.8,14.499052643523985 + 08/11 11:40:00,12.8,12.8,14.479172392870736 + 08/11 11:50:00,12.8,12.8,14.459272150303594 + 08/11 12:00:00,12.8,12.8,14.439181155922473 + 08/11 12:10:00,12.8,12.8,14.418671926532209 + 08/11 12:20:00,12.8,12.8,14.388632253635472 + 08/11 12:30:00,12.8,12.8,14.368268937146694 + 08/11 12:40:00,12.8,12.8,14.348277051427133 + 08/11 12:50:00,12.8,12.8,14.32857146425146 + 08/11 13:00:00,12.8,12.8,14.30926690963058 + 08/11 13:10:00,12.8,12.8,14.291098991549948 + 08/11 13:20:00,12.8,12.8,14.27664617256954 + 08/11 13:30:00,12.8,12.8,14.258863768929066 + 08/11 13:40:00,12.8,12.8,14.242010522438477 + 08/11 13:50:00,12.8,12.8,14.22738254148408 + 08/11 14:00:00,12.8,12.8,14.215328907128644 + 08/11 14:10:00,12.8,12.8,14.204932626637963 + 08/11 14:20:00,12.8,12.8,14.199979763621747 + 08/11 14:30:00,12.8,12.8,14.193189430543836 + 08/11 14:40:00,12.8,12.8,14.187485325681495 + 08/11 14:50:00,12.8,12.8,14.18244254649126 + 08/11 15:00:00,12.8,12.8,14.17771867862669 + 08/11 15:05:00,12.8,12.8,16.33534152061095 + 08/11 15:10:00,12.8,12.8,16.329664145404885 + 08/11 15:20:00,12.8,12.8,16.586662105837605 + 08/11 15:30:00,12.8,12.8,16.690043134677368 + 08/11 15:40:00,12.8,12.8,16.763984599735268 + 08/11 15:50:00,12.8,12.8,16.822539622939485 + 08/11 16:00:00,12.8,12.8,16.87130032756692 + 08/11 16:10:00,12.8,12.8,16.94340815510528 + 08/11 16:20:00,12.8,12.8,17.00579814253308 + 08/11 16:30:00,12.8,12.8,17.046258688416257 + 08/11 16:40:00,12.8,12.8,17.083730192447385 + 08/11 16:50:00,12.8,12.8,17.11757437079083 + 08/11 17:00:00,12.8,12.8,17.147760243949067 + 08/11 17:10:00,12.8,12.8,17.185521422797458 + 08/11 17:15:00,12.8,12.8,17.213941468511178 + 08/11 17:20:00,12.8,12.8,17.213512016019228 + 08/11 17:30:00,12.8,12.8,17.232259294194369 + 08/11 17:40:00,12.8,12.8,17.24989130493958 + 08/11 17:50:00,12.8,12.8,17.26682769200688 + 08/11 18:00:00,12.8,12.8,17.284034301569574 + 08/11 18:10:00,12.8,12.8,17.301563249001359 + 08/11 18:20:00,12.8,12.8,17.31898710382358 + 08/11 18:30:00,12.8,12.8,17.3362260722735 + 08/11 18:40:00,12.8,12.8,17.353073047157414 + 08/11 18:50:00,12.8,12.8,17.3692343448916 + 08/11 19:00:00,12.8,12.8,17.38468118074887 + 08/11 19:10:00,12.8,12.8,17.412232042763585 + 08/11 19:20:00,12.8,12.8,17.426976529804329 + 08/11 19:30:00,12.8,12.8,17.440851080802788 + 08/11 19:40:00,12.8,12.8,17.454366224114016 + 08/11 19:50:00,12.8,12.8,17.467123241003308 + 08/11 20:00:00,12.8,12.8,17.47903246068869 + 08/11 20:10:00,12.8,12.8,17.467678613781957 + 08/11 20:20:00,12.8,12.8,17.48201566546404 + 08/11 20:30:00,12.8,12.8,17.491562396652104 + 08/11 20:40:00,12.8,12.8,17.500418118195538 + 08/11 20:50:00,12.8,12.8,17.50880263213075 + 08/11 21:00:00,12.8,12.8,17.516713984557034 + 08/11 21:10:00,12.8,12.8,17.52424252372588 + 08/11 21:20:00,12.8,12.8,17.531187996413885 + 08/11 21:30:00,12.8,12.8,17.537679245181356 + 08/11 21:40:00,12.8,12.8,17.543709616085196 + 08/11 21:50:00,12.8,12.8,17.549280173173579 + 08/11 22:00:00,12.8,12.8,17.554562669099665 + 08/11 22:05:00,12.8,12.8,18.924346939243394 + 08/11 22:10:00,12.8,12.8,18.92108491835822 + 08/11 22:20:00,12.8,12.8,19.069461015636955 + 08/11 22:30:00,12.8,12.8,19.134310134915446 + 08/11 22:40:00,12.8,12.8,19.182834131341047 + 08/11 22:50:00,12.8,12.8,19.221705566082858 + 08/11 23:00:00,12.8,12.8,19.25358902369579 + 08/11 23:10:00,12.8,12.8,19.28120204942681 + 08/11 23:20:00,12.8,12.8,19.30597476636677 + 08/11 23:30:00,12.8,12.8,19.32846315292044 + 08/11 23:40:00,12.8,12.8,19.349345820830089 + 08/11 23:50:00,12.8,12.8,19.368905306476916 + 08/11 24:00:00,12.8,12.8,19.387352730322893 + 08/12 00:10:00,12.8,12.8,19.404094051771499 + 08/12 00:20:00,12.8,12.8,19.421142253258638 + 08/12 00:30:00,12.8,12.8,19.436683398359969 + 08/12 00:40:00,12.8,12.8,19.451111754895647 + 08/12 00:50:00,12.8,12.8,19.465976616317549 + 08/12 01:00:00,12.8,12.8,19.479572064610197 + 08/12 01:10:00,12.8,12.8,19.492031891559536 + 08/12 01:20:00,12.8,12.8,19.50492651622136 + 08/12 01:30:00,12.8,12.8,19.51651947183791 + 08/12 01:40:00,12.8,12.8,19.52700823558153 + 08/12 01:50:00,12.8,12.8,19.538087641949944 + 08/12 02:00:00,12.8,12.8,19.54790831269786 + 08/12 02:10:00,12.8,12.8,19.556635959534103 + 08/12 02:20:00,12.8,12.8,19.566110433816438 + 08/12 02:30:00,12.8,12.8,19.5742553876745 + 08/12 02:40:00,12.8,12.8,19.581344506156378 + 08/12 02:50:00,12.8,12.8,19.589064320609788 + 08/12 03:00:00,12.8,12.8,19.5955296917674 + 08/12 03:10:00,12.8,12.8,19.601226139559967 + 08/12 03:20:00,12.8,12.8,19.60809630224425 + 08/12 03:30:00,12.8,12.8,19.61406141383801 + 08/12 03:40:00,12.8,12.8,19.619418328205346 + 08/12 03:50:00,12.8,12.8,19.626004425591288 + 08/12 04:00:00,12.8,12.8,19.631707335568998 + 08/12 04:10:00,12.8,12.8,19.637024071308156 + 08/12 04:20:00,12.8,12.8,19.64383688054098 + 08/12 04:30:00,12.8,12.8,19.649999434192709 + 08/12 04:40:00,12.8,12.8,19.65583424325515 + 08/12 04:50:00,12.8,12.8,19.66321879887887 + 08/12 05:00:00,12.8,12.8,19.669966717872847 + 08/12 05:10:00,12.8,12.8,19.677403269480274 + 08/12 05:20:00,12.8,12.8,19.683454482796443 + 08/12 05:30:00,12.8,12.8,19.69058189083015 + 08/12 05:40:00,12.8,12.8,19.69766778387632 + 08/12 05:50:00,12.8,12.8,19.70474845238877 + 08/12 06:00:00,12.8,12.8,19.711278476217794 + 08/12 06:10:00,12.8,12.8,19.060877170715015 + 08/12 06:20:00,12.8,12.8,18.9896502283612 + 08/12 06:30:00,12.8,12.8,18.96431834589467 + 08/12 06:40:00,12.8,12.8,18.943303122100404 + 08/12 06:50:00,12.8,12.8,18.927153749887905 + 08/12 07:00:00,12.8,12.8,18.91310796452897 + 08/12 07:10:00,12.8,12.8,17.831074023023417 + 08/12 07:20:00,12.8,12.8,17.672821062185446 + 08/12 07:30:00,12.8,12.8,17.60900491368784 + 08/12 07:40:00,12.8,12.8,17.556203846046615 + 08/12 07:50:00,12.8,12.8,17.51365370737352 + 08/12 08:00:00,12.8,12.8,17.476104857613877 + 08/12 08:10:00,12.8,12.8,17.441776587404456 + 08/12 08:20:00,12.8,12.8,17.401219898094607 + 08/12 08:30:00,12.8,12.8,17.371297377829817 + 08/12 08:40:00,12.8,12.8,17.34357839822635 + 08/12 08:50:00,12.8,12.8,17.31860959254633 + 08/12 09:00:00,12.8,12.8,17.296474850830209 + 08/12 09:10:00,12.8,12.8,17.276601006539683 + 08/12 09:20:00,12.8,12.8,17.249859870007794 + 08/12 09:30:00,12.8,12.8,17.233250874825076 + 08/12 09:40:00,12.8,12.8,17.217146450525634 + 08/12 09:50:00,12.8,12.8,17.19984619143932 + 08/12 10:00:00,12.8,12.8,17.18071186725039 + 08/12 10:10:00,12.8,12.8,17.159664108382868 + 08/12 10:20:00,12.8,12.8,17.137164046152465 + 08/12 10:30:00,12.8,12.8,17.113490053457519 + 08/12 10:40:00,12.8,12.8,17.09037383427611 + 08/12 10:50:00,12.8,12.8,17.070389049887436 + 08/12 11:00:00,12.8,12.8,17.05449647519195 + 08/12 11:10:00,12.8,12.8,17.04253481883337 + 08/12 11:20:00,12.8,12.8,17.03382576997896 + 08/12 11:30:00,12.8,12.8,17.02784893884214 + 08/12 11:40:00,12.8,12.8,17.022676257546999 + 08/12 11:50:00,12.8,12.8,17.015555485461019 + 08/12 12:00:00,12.8,12.8,17.00544412906216 + 08/12 12:10:00,12.8,12.8,16.99288077678824 + 08/12 12:20:00,12.8,12.8,16.97807463160396 + 08/12 12:30:00,12.8,12.8,16.961518298192325 + 08/12 12:40:00,12.8,12.8,16.944822136840054 + 08/12 12:50:00,12.8,12.8,16.930071268403738 + 08/12 13:00:00,12.8,12.8,16.91786375105464 + 08/12 13:10:00,12.8,12.8,16.90711031484199 + 08/12 13:20:00,12.8,12.8,16.898376420187625 + 08/12 13:30:00,12.8,12.8,16.891281351781424 + 08/12 13:40:00,12.8,12.8,16.88494239678376 + 08/12 13:50:00,12.8,12.8,16.878247860975525 + 08/12 14:00:00,12.8,12.8,16.87079266701638 + 08/12 14:10:00,12.8,12.8,16.86365717967604 + 08/12 14:20:00,12.8,12.8,16.85593720369942 + 08/12 14:30:00,12.8,12.8,16.847926701967503 + 08/12 14:40:00,12.8,12.8,16.840183564610638 + 08/12 14:50:00,12.8,12.8,16.833224173007989 + 08/12 15:00:00,12.8,12.8,16.82724601339529 + 08/12 15:10:00,12.8,12.8,16.822430998678827 + 08/12 15:20:00,12.8,12.8,16.818361782784139 + 08/12 15:30:00,12.8,12.8,16.814864928695085 + 08/12 15:40:00,12.8,12.8,16.811968091792204 + 08/12 15:50:00,12.8,12.8,16.80978035273888 + 08/12 16:00:00,12.8,12.8,16.80829778080771 + 08/12 16:10:00,12.8,12.8,16.820765900122177 + 08/12 16:20:00,12.8,12.8,16.830529843148058 + 08/12 16:30:00,12.8,12.8,16.83182869709743 + 08/12 16:40:00,12.8,12.8,16.83365570570358 + 08/12 16:50:00,12.8,12.8,16.836094579498345 + 08/12 17:00:00,12.8,12.8,16.83907678570834 + 08/12 17:10:00,12.8,12.8,18.60134506135668 + 08/12 17:20:00,12.8,12.8,18.819577055959955 + 08/12 17:30:00,12.8,12.8,18.905945245086739 + 08/12 17:40:00,12.8,12.8,18.974957920668744 + 08/12 17:50:00,12.8,12.8,19.03038400458171 + 08/12 18:00:00,12.8,12.8,19.07741474875838 + 08/12 18:10:00,12.8,12.8,19.13141697141421 + 08/12 18:20:00,12.8,12.8,19.169023177663246 + 08/12 18:30:00,12.8,12.8,19.202923592772224 + 08/12 18:40:00,12.8,12.8,19.234076167240319 + 08/12 18:50:00,12.8,12.8,19.261490634833007 + 08/12 19:00:00,12.8,12.8,19.286892627584267 + 08/12 19:10:00,12.8,12.8,19.310936992117065 + 08/12 19:20:00,12.8,12.8,19.333565076519855 + 08/12 19:30:00,12.8,12.8,19.354968074972466 + 08/12 19:40:00,12.8,12.8,19.37522553023564 + 08/12 19:50:00,12.8,12.8,19.3941046929855 + 08/12 20:00:00,12.8,12.8,19.41169420725366 + 08/12 20:10:00,12.8,12.8,19.405435218595437 + 08/12 20:20:00,12.8,12.8,19.420187711755326 + 08/12 20:30:00,12.8,12.8,19.434200158640487 + 08/12 20:40:00,12.8,12.8,19.447227863518646 + 08/12 20:50:00,12.8,12.8,19.45964424233275 + 08/12 21:00:00,12.8,12.8,19.471552544926593 + 08/12 21:10:00,12.8,12.8,19.483096029724338 + 08/12 21:20:00,12.8,12.8,19.49414967427809 + 08/12 21:30:00,12.8,12.8,19.50476020260799 + 08/12 21:40:00,12.8,12.8,19.514925569705257 + 08/12 21:50:00,12.8,12.8,19.5248285183405 + 08/12 22:00:00,12.8,12.8,19.53441886303859 + 08/12 22:10:00,12.8,12.8,19.54354235372982 + 08/12 22:20:00,12.8,12.8,19.552351204806504 + 08/12 22:30:00,12.8,12.8,19.56072891533279 + 08/12 22:40:00,12.8,12.8,19.568891036784846 + 08/12 22:50:00,12.8,12.8,19.576767997731506 + 08/12 23:00:00,12.8,12.8,19.58438120174208 + 08/12 23:10:00,12.8,12.8,19.591781993880404 + 08/12 23:20:00,12.8,12.8,19.599231297994245 + 08/12 23:30:00,12.8,12.8,19.606401002859294 + 08/12 23:40:00,12.8,12.8,19.61279436694192 + 08/12 23:50:00,12.8,12.8,19.62011896948815 + 08/12 24:00:00,12.8,12.8,19.626674996448999 + 08/13 00:10:00,12.8,12.8,19.632833721574145 + 08/13 00:20:00,12.8,12.8,19.640139867986684 + 08/13 00:30:00,12.8,12.8,19.646718353520435 + 08/13 00:40:00,12.8,12.8,19.653713512343527 + 08/13 00:50:00,12.8,12.8,19.659333577576495 + 08/13 01:00:00,12.8,12.8,19.666674141802067 + 08/13 01:10:00,12.8,12.8,19.6728940305596 + 08/13 01:20:00,12.8,12.8,19.679683886903569 + 08/13 01:30:00,12.8,12.8,19.684962654118377 + 08/13 01:40:00,12.8,12.8,19.692022314144557 + 08/13 01:50:00,12.8,12.8,19.69793111879892 + 08/13 02:00:00,12.8,12.8,19.704266434336519 + 08/13 02:10:00,12.8,12.8,19.709107772461374 + 08/13 02:20:00,12.8,12.8,19.71572146902326 + 08/13 02:30:00,12.8,12.8,19.721124592789317 + 08/13 02:40:00,12.8,12.8,19.72700377763724 + 08/13 02:50:00,12.8,12.8,19.731210820206809 + 08/13 03:00:00,12.8,12.8,19.737277834211676 + 08/13 03:10:00,12.8,12.8,19.742149280280335 + 08/13 03:20:00,12.8,12.8,19.74754308229237 + 08/13 03:30:00,12.8,12.8,19.751377474800277 + 08/13 03:40:00,12.8,12.8,19.756995698661265 + 08/13 03:50:00,12.8,12.8,19.76147205537464 + 08/13 04:00:00,12.8,12.8,19.766545166953429 + 08/13 04:10:00,12.8,12.8,19.77005780077824 + 08/13 04:20:00,12.8,12.8,19.77534196506611 + 08/13 04:30:00,12.8,12.8,19.779325088338927 + 08/13 04:40:00,12.8,12.8,19.78373046757695 + 08/13 04:50:00,12.8,12.8,19.786563279365848 + 08/13 05:00:00,12.8,12.8,19.79118187612005 + 08/13 05:10:00,12.8,12.8,19.7946704393639 + 08/13 05:20:00,12.8,12.8,19.798717467683248 + 08/13 05:30:00,12.8,12.8,19.80116817788479 + 08/13 05:40:00,12.8,12.8,19.805645302885304 + 08/13 05:50:00,12.8,12.8,19.809002053041099 + 08/13 06:00:00,12.8,12.8,19.81297508257469 + 08/13 06:10:00,12.8,12.8,19.836861679493386 + 08/13 06:20:00,12.8,12.8,19.838492136927596 + 08/13 06:30:00,12.8,12.8,19.83896525883089 + 08/13 06:40:00,12.8,12.8,19.839294832367949 + 08/13 06:50:00,12.8,12.8,19.83875953485799 + 08/13 07:00:00,12.8,12.8,19.83706675491774 + 08/13 07:10:00,12.8,12.8,18.44381142037052 + 08/13 07:20:00,12.8,12.8,18.261315102815055 + 08/13 07:30:00,12.8,12.8,18.189514014183258 + 08/13 07:40:00,12.8,12.8,18.12862971480108 + 08/13 07:50:00,12.8,12.8,18.079407155287343 + 08/13 08:00:00,12.8,12.8,18.03653002817772 + 08/13 08:10:00,12.8,12.8,17.998036329094754 + 08/13 08:20:00,12.8,12.8,17.95424669274445 + 08/13 08:30:00,12.8,12.8,17.921921652398948 + 08/13 08:40:00,12.8,12.8,17.89207430663123 + 08/13 08:50:00,12.8,12.8,17.864305549095485 + 08/13 09:00:00,12.8,12.8,17.838465715104144 + 08/13 09:10:00,12.8,12.8,17.814679070138945 + 08/13 09:20:00,12.8,12.8,17.78407622978353 + 08/13 09:30:00,12.8,12.8,17.763900125550394 + 08/13 09:40:00,12.8,12.8,17.74513751081954 + 08/13 09:50:00,12.8,12.8,17.726740466982596 + 08/13 10:00:00,12.8,12.8,17.708188403503287 + 08/13 10:10:00,12.8,12.8,17.68920743096738 + 08/13 10:20:00,12.8,12.8,17.670097299115434 + 08/13 10:30:00,12.8,12.8,17.65080561948943 + 08/13 10:40:00,12.8,12.8,17.63186204661784 + 08/13 10:50:00,12.8,12.8,17.614408589931935 + 08/13 11:00:00,12.8,12.8,17.598787203229013 + 08/13 11:10:00,12.8,12.8,17.585110154687049 + 08/13 11:20:00,12.8,12.8,17.572880370642165 + 08/13 11:30:00,12.8,12.8,17.56193521932733 + 08/13 11:40:00,12.8,12.8,17.551552075062625 + 08/13 11:50:00,12.8,12.8,17.540726796924735 + 08/13 12:00:00,12.8,12.8,17.52932667621533 + 08/13 12:10:00,12.8,12.8,17.517112001025344 + 08/13 12:20:00,12.8,12.8,17.504074926748623 + 08/13 12:30:00,12.8,12.8,17.490421461977058 + 08/13 12:40:00,12.8,12.8,17.476672191224006 + 08/13 12:50:00,12.8,12.8,17.463428390624118 + 08/13 13:00:00,12.8,12.8,17.450883683921857 + 08/13 13:10:00,12.8,12.8,17.43898788048245 + 08/13 13:20:00,12.8,12.8,17.4282397878662 + 08/13 13:30:00,12.8,12.8,17.418534866613294 + 08/13 13:40:00,12.8,12.8,17.41046668921279 + 08/13 13:50:00,12.8,12.8,17.40457553776435 + 08/13 14:00:00,12.8,12.8,17.40084757874979 + 08/13 14:10:00,12.8,12.8,17.399147771182855 + 08/13 14:20:00,12.8,12.8,17.39896404263495 + 08/13 14:30:00,12.8,12.8,17.399859351449327 + 08/13 14:40:00,12.8,12.8,17.400763587075489 + 08/13 14:50:00,12.8,12.8,17.40059194832731 + 08/13 15:00:00,12.8,12.8,17.39895290953948 + 08/13 15:10:00,12.8,12.8,18.816499555401909 + 08/13 15:20:00,12.8,12.8,18.969441963065984 + 08/13 15:30:00,12.8,12.8,19.031111330128974 + 08/13 15:40:00,12.8,12.8,19.079127673174527 + 08/13 15:50:00,12.8,12.8,19.11615262576079 + 08/13 16:00:00,12.8,12.8,19.146807051612496 + 08/13 16:10:00,12.8,12.8,19.17315212731107 + 08/13 16:20:00,12.8,12.8,19.20465472958127 + 08/13 16:30:00,12.8,12.8,19.22464031007277 + 08/13 16:40:00,12.8,12.8,19.241328480180358 + 08/13 16:50:00,12.8,12.8,19.258357614354936 + 08/13 17:00:00,12.8,12.8,19.27508379603377 + 08/13 17:10:00,12.8,12.8,19.292291721348595 + 08/13 17:20:00,12.8,12.8,19.326873381569258 + 08/13 17:30:00,12.8,12.8,19.344698980608727 + 08/13 17:40:00,12.8,12.8,19.360639863946319 + 08/13 17:50:00,12.8,12.8,19.37745066685645 + 08/13 18:00:00,12.8,12.8,19.392801249508435 + 08/13 18:10:00,12.8,12.8,19.40769297792542 + 08/13 18:20:00,12.8,12.8,19.42227717668254 + 08/13 18:30:00,12.8,12.8,19.436647209533019 + 08/13 18:40:00,12.8,12.8,19.45003178179047 + 08/13 18:50:00,12.8,12.8,19.464309408096434 + 08/13 19:00:00,12.8,12.8,19.476929293012227 + 08/13 19:10:00,12.8,12.8,19.491090749041743 + 08/13 19:20:00,12.8,12.8,19.503306631086596 + 08/13 19:30:00,12.8,12.8,19.516969217826678 + 08/13 19:40:00,12.8,12.8,19.528780266090526 + 08/13 19:50:00,12.8,12.8,19.54170020914531 + 08/13 20:00:00,12.8,12.8,19.553147903317425 + 08/13 20:10:00,12.8,12.8,19.54121428672625 + 08/13 20:20:00,12.8,12.8,19.55123406358107 + 08/13 20:30:00,12.8,12.8,19.561134162468038 + 08/13 20:40:00,12.8,12.8,19.56951314296688 + 08/13 20:50:00,12.8,12.8,19.578182842693395 + 08/13 21:00:00,12.8,12.8,19.586193767298558 + 08/13 21:10:00,12.8,12.8,19.593874557878477 + 08/13 21:20:00,12.8,12.8,19.60160707985372 + 08/13 21:30:00,12.8,12.8,19.608539400538438 + 08/13 21:40:00,12.8,12.8,19.615180496530465 + 08/13 21:50:00,12.8,12.8,19.621235841644834 + 08/13 22:00:00,12.8,12.8,19.61451696626107 + 08/13 22:10:00,12.8,12.8,19.626931963463855 + 08/13 22:20:00,12.8,12.8,19.629369730934767 + 08/13 22:30:00,12.8,12.8,19.638082024606228 + 08/13 22:40:00,12.8,12.8,19.645189733936605 + 08/13 22:50:00,12.8,12.8,19.652693591050434 + 08/13 23:00:00,12.8,12.8,19.66057057536615 + 08/13 23:10:00,12.8,12.8,19.66825373114865 + 08/13 23:20:00,12.8,12.8,19.673741442785756 + 08/13 23:30:00,12.8,12.8,19.679807833213883 + 08/13 23:40:00,12.8,12.8,19.684897475257196 + 08/13 23:50:00,12.8,12.8,19.689937864578615 + 08/13 24:00:00,12.8,12.8,19.69468995593102 + 08/14 00:10:00,12.8,12.8,19.699497642341897 + 08/14 00:20:00,12.8,12.8,19.704124791816523 + 08/14 00:30:00,12.8,12.8,19.708705804826495 + 08/14 00:40:00,12.8,12.8,19.713256380223215 + 08/14 00:50:00,12.8,12.8,19.71769939869781 + 08/14 01:00:00,12.8,12.8,19.722229712684375 + 08/14 01:10:00,12.8,12.8,19.726456712925079 + 08/14 01:20:00,12.8,12.8,19.73044975813695 + 08/14 01:30:00,12.8,12.8,19.73406592394553 + 08/14 01:40:00,12.8,12.8,19.73734320328845 + 08/14 01:50:00,12.8,12.8,19.740444733272697 + 08/14 02:00:00,12.8,12.8,19.74332083599141 + 08/14 02:10:00,12.8,12.8,19.74639882480646 + 08/14 02:20:00,12.8,12.8,19.74943592781861 + 08/14 02:30:00,12.8,12.8,19.75244351079598 + 08/14 02:40:00,12.8,12.8,19.75553343341409 + 08/14 02:50:00,12.8,12.8,19.75871774836983 + 08/14 03:00:00,12.8,12.8,19.761940429067989 + 08/14 03:10:00,12.8,12.8,19.765219572554956 + 08/14 03:20:00,12.8,12.8,19.768320555955435 + 08/14 03:30:00,12.8,12.8,19.771207838919456 + 08/14 03:40:00,12.8,12.8,19.773964963866029 + 08/14 03:50:00,12.8,12.8,19.776539592559908 + 08/14 04:00:00,12.8,12.8,19.778946953778033 + 08/14 04:10:00,12.8,12.8,19.779798389763607 + 08/14 04:20:00,12.8,12.8,19.78305435235462 + 08/14 04:30:00,12.8,12.8,19.785445460310954 + 08/14 04:40:00,12.8,12.8,19.788910235596278 + 08/14 04:50:00,12.8,12.8,19.791069764643706 + 08/14 05:00:00,12.8,12.8,19.795570728724568 + 08/14 05:10:00,12.8,12.8,19.79872664941465 + 08/14 05:20:00,12.8,12.8,19.802461070034434 + 08/14 05:30:00,12.8,12.8,19.804327079844378 + 08/14 05:40:00,12.8,12.8,19.807916559009905 + 08/14 05:50:00,12.8,12.8,19.810050329197467 + 08/14 06:00:00,12.8,12.8,19.811383803273516 + 08/14 06:10:00,12.8,12.8,17.825809484715486 + 08/14 06:20:00,12.8,12.8,17.569613654554315 + 08/14 06:30:00,12.8,12.8,17.479121525351986 + 08/14 06:40:00,12.8,12.8,17.40466008609506 + 08/14 06:50:00,12.8,12.8,17.347685149323377 + 08/14 07:00:00,12.8,12.8,17.299175248793259 + 08/14 07:05:00,12.8,12.8,15.805230188818163 + 08/14 07:10:00,12.8,12.8,15.811807159536804 + 08/14 07:15:00,12.8,12.8,15.579594956526444 + 08/14 07:20:00,12.8,12.8,15.577860117232892 + 08/14 07:30:00,12.8,12.8,15.470306723857514 + 08/14 07:40:00,12.8,12.8,15.382684941611509 + 08/14 07:50:00,12.8,12.8,15.307097944167172 + 08/14 08:00:00,12.8,12.8,15.240713315081332 + 08/14 08:03:19,12.8,12.8,15.155275160355167 + 08/14 08:06:40,12.8,12.8,15.154855712610054 + 08/14 08:10:00,12.8,12.8,15.15484183974888 + 08/14 08:20:00,12.8,12.8,15.09013817748664 + 08/14 08:30:00,12.8,12.8,15.037547526451217 + 08/14 08:40:00,12.8,12.8,14.988081612930105 + 08/14 08:50:00,12.8,12.8,14.941628123178653 + 08/14 09:00:00,12.8,12.8,14.898050953705626 + 08/14 09:10:00,12.8,12.8,14.856615209637875 + 08/14 09:20:00,12.8,12.8,14.806661870224908 + 08/14 09:30:00,12.8,12.8,14.768792872350526 + 08/14 09:40:00,12.8,12.8,14.732902629748923 + 08/14 09:50:00,12.8,12.8,14.699238281722887 + 08/14 10:00:00,12.8,12.8,14.667982869778986 + 08/14 10:10:00,12.8,12.8,14.639670784553973 + 08/14 10:20:00,12.8,12.8,14.60971594474278 + 08/14 10:30:00,12.8,12.8,14.584832849319879 + 08/14 10:40:00,12.8,12.8,14.561692432361538 + 08/14 10:50:00,12.8,12.8,14.540504293316746 + 08/14 11:00:00,12.8,12.8,14.521332542932834 + 08/14 11:10:00,12.8,12.8,14.504126592671302 + 08/14 11:20:00,12.8,12.8,14.498284333132052 + 08/14 11:30:00,12.8,12.8,14.48425789315214 + 08/14 11:40:00,12.8,12.8,14.4701879120003 + 08/14 11:50:00,12.8,12.8,14.454741706471478 + 08/14 12:00:00,12.8,12.8,14.437256937198475 + 08/14 12:10:00,12.8,12.8,14.41815944887713 + 08/14 12:20:00,12.8,12.8,14.388400975334282 + 08/14 12:30:00,12.8,12.8,14.367587248944496 + 08/14 12:40:00,12.8,12.8,14.347911491776893 + 08/14 12:50:00,12.8,12.8,14.331381241177608 + 08/14 13:00:00,12.8,12.8,14.31873331142668 + 08/14 13:10:00,12.8,12.8,14.30890893427814 + 08/14 13:20:00,12.8,12.8,14.30516174250546 + 08/14 13:30:00,12.8,12.8,14.299919744008692 + 08/14 13:40:00,12.8,12.8,14.295230612587784 + 08/14 13:50:00,12.8,12.8,14.289406146261973 + 08/14 14:00:00,12.8,12.8,14.281844313347296 + 08/14 14:10:00,12.8,12.8,14.27331700217602 + 08/14 14:20:00,12.8,12.8,14.267114840630758 + 08/14 14:30:00,12.8,12.8,14.256630920085291 + 08/14 14:40:00,12.8,12.8,14.245658709455027 + 08/14 14:50:00,12.8,12.8,14.234650292337565 + 08/14 15:00:00,12.8,12.8,14.223742503616452 + 08/14 15:10:00,12.8,12.8,16.36277772899171 + 08/14 15:20:00,12.8,12.8,16.61735583507621 + 08/14 15:30:00,12.8,12.8,16.713650959753683 + 08/14 15:40:00,12.8,12.8,16.789885209640074 + 08/14 15:50:00,12.8,12.8,16.843932794913376 + 08/14 16:00:00,12.8,12.8,16.887328258237845 + 08/14 16:10:00,12.8,12.8,16.948102111013279 + 08/14 16:20:00,12.8,12.8,16.998244846213475 + 08/14 16:30:00,12.8,12.8,17.02575768048011 + 08/14 16:40:00,12.8,12.8,17.050542421143974 + 08/14 16:50:00,12.8,12.8,17.073586160530775 + 08/14 17:00:00,12.8,12.8,17.09545519577622 + 08/14 17:10:00,12.8,12.8,17.129351079260588 + 08/14 17:15:00,12.8,12.8,17.15607411099547 + 08/14 17:20:00,12.8,12.8,17.15568123098373 + 08/14 17:30:00,12.8,12.8,17.174810302204528 + 08/14 17:40:00,12.8,12.8,17.193871868927699 + 08/14 17:50:00,12.8,12.8,17.21222409339408 + 08/14 18:00:00,12.8,12.8,17.230462852140158 + 08/14 18:10:00,12.8,12.8,17.249343593839379 + 08/14 18:20:00,12.8,12.8,17.267610709117244 + 08/14 18:30:00,12.8,12.8,17.2852067992019 + 08/14 18:40:00,12.8,12.8,17.30215446332138 + 08/14 18:50:00,12.8,12.8,17.31840271344739 + 08/14 19:00:00,12.8,12.8,17.33400406189047 + 08/14 19:10:00,12.8,12.8,17.361140473440899 + 08/14 19:20:00,12.8,12.8,17.375678173102356 + 08/14 19:30:00,12.8,12.8,17.389482597107905 + 08/14 19:40:00,12.8,12.8,17.402955800949809 + 08/14 19:50:00,12.8,12.8,17.415722718523214 + 08/14 20:00:00,12.8,12.8,17.42770621868148 + 08/14 20:10:00,12.8,12.8,17.416629256401764 + 08/14 20:20:00,12.8,12.8,17.43149077163367 + 08/14 20:30:00,12.8,12.8,17.441870901598184 + 08/14 20:40:00,12.8,12.8,17.4518793790285 + 08/14 20:50:00,12.8,12.8,17.46170692364415 + 08/14 21:00:00,12.8,12.8,17.471318473387407 + 08/14 21:10:00,12.8,12.8,17.48057038666614 + 08/14 21:20:00,12.8,12.8,17.489464906101074 + 08/14 21:30:00,12.8,12.8,17.498127609936029 + 08/14 21:40:00,12.8,12.8,17.50653517065342 + 08/14 21:50:00,12.8,12.8,17.514664032818517 + 08/14 22:00:00,12.8,12.8,17.52266015544601 + 08/14 22:10:00,12.8,12.8,18.888234857327917 + 08/14 22:20:00,12.8,12.8,19.040389676787226 + 08/14 22:30:00,12.8,12.8,19.108426302971126 + 08/14 22:40:00,12.8,12.8,19.164523869973875 + 08/14 22:50:00,12.8,12.8,19.206651194585203 + 08/14 23:00:00,12.8,12.8,19.243207737719158 + 08/14 23:10:00,12.8,12.8,19.274533934065297 + 08/14 23:20:00,12.8,12.8,19.30260766720401 + 08/14 23:30:00,12.8,12.8,19.327810146578814 + 08/14 23:40:00,12.8,12.8,19.350806188362925 + 08/14 23:50:00,12.8,12.8,19.371742974045167 + 08/14 24:00:00,12.8,12.8,19.391192663129727 + 08/15 00:10:00,12.8,12.8,19.409304098532958 + 08/15 00:20:00,12.8,12.8,19.425177251513003 + 08/15 00:30:00,12.8,12.8,19.44124386755828 + 08/15 00:40:00,12.8,12.8,19.45557221232998 + 08/15 00:50:00,12.8,12.8,19.468596168863529 + 08/15 01:00:00,12.8,12.8,19.48187331367665 + 08/15 01:10:00,12.8,12.8,19.493629500649825 + 08/15 01:20:00,12.8,12.8,19.50412454800454 + 08/15 01:30:00,12.8,12.8,19.515028798572826 + 08/15 01:40:00,12.8,12.8,19.52454398874348 + 08/15 01:50:00,12.8,12.8,19.532975093640237 + 08/15 02:00:00,12.8,12.8,19.54191635926591 + 08/15 02:10:00,12.8,12.8,19.549820259744928 + 08/15 02:20:00,12.8,12.8,19.557397538694315 + 08/15 02:30:00,12.8,12.8,19.566422824537029 + 08/15 02:40:00,12.8,12.8,19.575006177733603 + 08/15 02:50:00,12.8,12.8,19.583331281227868 + 08/15 03:00:00,12.8,12.8,19.593002671825539 + 08/15 03:10:00,12.8,12.8,19.601936266584457 + 08/15 03:20:00,12.8,12.8,19.61110255449617 + 08/15 03:30:00,12.8,12.8,19.618622061094727 + 08/15 03:40:00,12.8,12.8,19.627490995916248 + 08/15 03:50:00,12.8,12.8,19.6349785935478 + 08/15 04:00:00,12.8,12.8,19.642726711909299 + 08/15 04:10:00,12.8,12.8,19.648846179358434 + 08/15 04:20:00,12.8,12.8,19.65640582104278 + 08/15 04:30:00,12.8,12.8,19.66251098578435 + 08/15 04:40:00,12.8,12.8,19.66877214701237 + 08/15 04:50:00,12.8,12.8,19.673198635539948 + 08/15 05:00:00,12.8,12.8,19.67916467801279 + 08/15 05:10:00,12.8,12.8,19.683703416326787 + 08/15 05:20:00,12.8,12.8,19.687664816834908 + 08/15 05:30:00,12.8,12.8,19.692197933714703 + 08/15 05:40:00,12.8,12.8,19.696749806386749 + 08/15 05:50:00,12.8,12.8,19.701225524791619 + 08/15 06:00:00,12.8,12.8,19.705000399064109 + 08/15 06:10:00,12.8,12.8,17.718381494670625 + 08/15 06:15:00,12.8,12.8,17.462729681137394 + 08/15 06:20:00,12.8,12.8,17.467601905540137 + 08/15 06:30:00,12.8,12.8,17.377591537906363 + 08/15 06:40:00,12.8,12.8,17.307559469435828 + 08/15 06:50:00,12.8,12.8,17.25541923251128 + 08/15 07:00:00,12.8,12.8,17.211284768448178 + 08/15 07:05:00,12.8,12.8,15.720369841761629 + 08/15 07:10:00,12.8,12.8,15.726349583367592 + 08/15 07:15:00,12.8,12.8,15.498210783906487 + 08/15 07:20:00,12.8,12.8,15.496444622358159 + 08/15 07:30:00,12.8,12.8,15.392289090543592 + 08/15 07:40:00,12.8,12.8,15.30762177597567 + 08/15 07:50:00,12.8,12.8,15.234808673546553 + 08/15 08:00:00,12.8,12.8,15.171430502323938 + 08/15 08:03:19,12.8,12.8,15.089625531546643 + 08/15 08:06:40,12.8,12.8,15.08917639621672 + 08/15 08:10:00,12.8,12.8,15.08914904411049 + 08/15 08:20:00,12.8,12.8,15.028134804383243 + 08/15 08:30:00,12.8,12.8,14.979556865086864 + 08/15 08:40:00,12.8,12.8,14.934062141797823 + 08/15 08:50:00,12.8,12.8,14.891177312945404 + 08/15 09:00:00,12.8,12.8,14.850569294525857 + 08/15 09:10:00,12.8,12.8,14.811723062893487 + 08/15 09:20:00,12.8,12.8,14.763817996110206 + 08/15 09:30:00,12.8,12.8,14.727536103280969 + 08/15 09:40:00,12.8,12.8,14.692824914405297 + 08/15 09:50:00,12.8,12.8,14.659985020131169 + 08/15 10:00:00,12.8,12.8,14.629201346014954 + 08/15 10:10:00,12.8,12.8,14.600525048099684 + 08/15 10:20:00,12.8,12.8,14.570261693949686 + 08/15 10:30:00,12.8,12.8,14.545163826721215 + 08/15 10:40:00,12.8,12.8,14.52131993125485 + 08/15 10:50:00,12.8,12.8,14.497947224975399 + 08/15 11:00:00,12.8,12.8,14.474706142470298 + 08/15 11:10:00,12.8,12.8,14.452000435404555 + 08/15 11:20:00,12.8,12.8,14.439325806080954 + 08/15 11:30:00,12.8,12.8,14.417503738169895 + 08/15 11:40:00,12.8,12.8,14.396380879781468 + 08/15 11:50:00,12.8,12.8,14.376730575555956 + 08/15 12:00:00,12.8,12.8,14.35858310922247 + 08/15 12:10:00,12.8,12.8,14.341738912780903 + 08/15 12:20:00,12.8,12.8,14.316054543265246 + 08/15 12:30:00,12.8,12.8,14.300523205715538 + 08/15 12:40:00,12.8,12.8,14.285869739346813 + 08/15 12:50:00,12.8,12.8,14.272215292212364 + 08/15 13:00:00,12.8,12.8,14.259526407913697 + 08/15 13:10:00,12.8,12.8,14.247549715679688 + 08/15 13:20:00,12.8,12.8,14.240136156981356 + 08/15 13:30:00,12.8,12.8,14.23018973302303 + 08/15 13:40:00,12.8,12.8,14.220702172118385 + 08/15 13:50:00,12.8,12.8,14.211155286086095 + 08/15 14:00:00,12.8,12.8,14.201336259459314 + 08/15 14:10:00,12.8,12.8,14.191070869454313 + 08/15 14:20:00,12.8,12.8,14.183897706895774 + 08/15 14:30:00,12.8,12.8,14.173060635065238 + 08/15 14:40:00,12.8,12.8,14.162683831597726 + 08/15 14:50:00,12.8,12.8,14.153560101369282 + 08/15 15:00:00,12.8,12.8,14.145953214039916 + 08/15 15:10:00,12.8,12.8,16.29063552131387 + 08/15 15:20:00,12.8,12.8,16.55246298643498 + 08/15 15:30:00,12.8,12.8,16.65494568728734 + 08/15 15:40:00,12.8,12.8,16.735683266499668 + 08/15 15:50:00,12.8,12.8,16.794605060849773 + 08/15 16:00:00,12.8,12.8,16.843376404457066 + 08/15 16:10:00,12.8,12.8,16.910080248911244 + 08/15 16:20:00,12.8,12.8,16.96582774924913 + 08/15 16:30:00,12.8,12.8,16.998620748846215 + 08/15 16:40:00,12.8,12.8,17.028277683625679 + 08/15 16:50:00,12.8,12.8,17.05567506176985 + 08/15 17:00:00,12.8,12.8,17.0811373732948 + 08/15 17:10:00,12.8,12.8,17.117610224643266 + 08/15 17:15:00,12.8,12.8,17.146200152681005 + 08/15 17:20:00,12.8,12.8,17.14580442378191 + 08/15 17:30:00,12.8,12.8,17.166059600567633 + 08/15 17:40:00,12.8,12.8,17.18560137993154 + 08/15 17:50:00,12.8,12.8,17.20390775357577 + 08/15 18:00:00,12.8,12.8,17.221769967090446 + 08/15 18:10:00,12.8,12.8,17.24086365746829 + 08/15 18:20:00,12.8,12.8,17.259460761003916 + 08/15 18:30:00,12.8,12.8,17.2776180016082 + 08/15 18:40:00,12.8,12.8,17.295141729055826 + 08/15 18:50:00,12.8,12.8,17.31174242590521 + 08/15 19:00:00,12.8,12.8,17.327299177795518 + 08/15 19:10:00,12.8,12.8,17.35411261369433 + 08/15 19:20:00,12.8,12.8,17.368052737848865 + 08/15 19:30:00,12.8,12.8,17.38099805208747 + 08/15 19:40:00,12.8,12.8,17.39358555841652 + 08/15 19:50:00,12.8,12.8,17.40558736396951 + 08/15 20:00:00,12.8,12.8,17.416776981930746 + 08/15 20:10:00,12.8,12.8,17.405035626509159 + 08/15 20:20:00,12.8,12.8,17.419106617132333 + 08/15 20:30:00,12.8,12.8,17.42851181814637 + 08/15 20:40:00,12.8,12.8,17.437335647436944 + 08/15 20:50:00,12.8,12.8,17.445784782215065 + 08/15 21:00:00,12.8,12.8,17.45383715648589 + 08/15 21:10:00,12.8,12.8,17.461848249790316 + 08/15 21:20:00,12.8,12.8,17.469693765948514 + 08/15 21:30:00,12.8,12.8,17.477579836969708 + 08/15 21:40:00,12.8,12.8,17.48553708703045 + 08/15 21:50:00,12.8,12.8,17.493510978606769 + 08/15 22:00:00,12.8,12.8,17.501488969475188 + 08/15 22:10:00,12.8,12.8,18.86730548556406 + 08/15 22:20:00,12.8,12.8,19.019940906175724 + 08/15 22:30:00,12.8,12.8,19.087895434101225 + 08/15 22:40:00,12.8,12.8,19.14396213761083 + 08/15 22:50:00,12.8,12.8,19.185459729925595 + 08/15 23:00:00,12.8,12.8,19.221715877850014 + 08/15 23:10:00,12.8,12.8,19.252727703191803 + 08/15 23:20:00,12.8,12.8,19.280714146701155 + 08/15 23:30:00,12.8,12.8,19.306072702028886 + 08/15 23:40:00,12.8,12.8,19.329293117988365 + 08/15 23:50:00,12.8,12.8,19.350563885315859 + 08/15 24:00:00,12.8,12.8,19.37037653041926 + 08/16 00:10:00,12.8,12.8,19.388924514367664 + 08/16 00:20:00,12.8,12.8,19.40532102856587 + 08/16 00:30:00,12.8,12.8,19.421704782008577 + 08/16 00:40:00,12.8,12.8,19.43626272382496 + 08/16 00:50:00,12.8,12.8,19.449366847091278 + 08/16 01:00:00,12.8,12.8,19.4626322317952 + 08/16 01:10:00,12.8,12.8,19.474678149391225 + 08/16 01:20:00,12.8,12.8,19.48589866227857 + 08/16 01:30:00,12.8,12.8,19.497974417650974 + 08/16 01:40:00,12.8,12.8,19.509191222920728 + 08/16 01:50:00,12.8,12.8,19.519889382215508 + 08/16 02:00:00,12.8,12.8,19.53169862510952 + 08/16 02:10:00,12.8,12.8,19.54274366287596 + 08/16 02:20:00,12.8,12.8,19.55295463020172 + 08/16 02:30:00,12.8,12.8,19.563695899101924 + 08/16 02:40:00,12.8,12.8,19.57327593407132 + 08/16 02:50:00,12.8,12.8,19.582888968389946 + 08/16 03:00:00,12.8,12.8,19.59096883079157 + 08/16 03:10:00,12.8,12.8,19.600170900883584 + 08/16 03:20:00,12.8,12.8,19.608208490043589 + 08/16 03:30:00,12.8,12.8,19.616408753330079 + 08/16 03:40:00,12.8,12.8,19.62314370294115 + 08/16 03:50:00,12.8,12.8,19.631382831203064 + 08/16 04:00:00,12.8,12.8,19.638471877590889 + 08/16 04:10:00,12.8,12.8,19.645879714613917 + 08/16 04:20:00,12.8,12.8,19.651608722705384 + 08/16 04:30:00,12.8,12.8,19.659066408638574 + 08/16 04:40:00,12.8,12.8,19.665313818052373 + 08/16 04:50:00,12.8,12.8,19.67197636219574 + 08/16 05:00:00,12.8,12.8,19.677033200818788 + 08/16 05:10:00,12.8,12.8,19.683840258609629 + 08/16 05:20:00,12.8,12.8,19.68882895699395 + 08/16 05:30:00,12.8,12.8,19.69567059832016 + 08/16 05:40:00,12.8,12.8,19.701696133832358 + 08/16 05:50:00,12.8,12.8,19.707210574237089 + 08/16 06:00:00,12.8,12.8,19.71397038163871 + 08/16 06:05:00,12.8,12.8,17.709164072334109 + 08/16 06:10:00,12.8,12.8,17.71706323560109 + 08/16 06:20:00,12.8,12.8,17.477127705421525 + 08/16 06:30:00,12.8,12.8,17.386015574273978 + 08/16 06:40:00,12.8,12.8,17.320664814122919 + 08/16 06:50:00,12.8,12.8,17.267865991844027 + 08/16 07:00:00,12.8,12.8,17.22339000718088 + 08/16 07:05:00,12.8,12.8,15.731134525996258 + 08/16 07:10:00,12.8,12.8,15.737600488345898 + 08/16 07:15:00,12.8,12.8,15.507699417760574 + 08/16 07:20:00,12.8,12.8,15.505957756556333 + 08/16 07:30:00,12.8,12.8,15.399686513040218 + 08/16 07:40:00,12.8,12.8,15.312227036977096 + 08/16 07:50:00,12.8,12.8,15.23628474737298 + 08/16 08:00:00,12.8,12.8,15.16968013293085 + 08/16 08:03:19,12.8,12.8,15.084389680003496 + 08/16 08:06:40,12.8,12.8,15.083974905886358 + 08/16 08:10:00,12.8,12.8,15.083958674738444 + 08/16 08:20:00,12.8,12.8,15.019746410287006 + 08/16 08:30:00,12.8,12.8,14.96800756970329 + 08/16 08:40:00,12.8,12.8,14.919601698796934 + 08/16 08:50:00,12.8,12.8,14.874114356148845 + 08/16 09:00:00,12.8,12.8,14.831257511107462 + 08/16 09:10:00,12.8,12.8,14.791199025339117 + 08/16 09:20:00,12.8,12.8,14.742466464869379 + 08/16 09:30:00,12.8,12.8,14.705628234276319 + 08/16 09:40:00,12.8,12.8,14.670294277408898 + 08/16 09:50:00,12.8,12.8,14.636284725515429 + 08/16 10:00:00,12.8,12.8,14.603238649197147 + 08/16 10:10:00,12.8,12.8,14.57043230210443 + 08/16 10:20:00,12.8,12.8,14.535484788696753 + 08/16 10:30:00,12.8,12.8,14.505633498619059 + 08/16 10:40:00,12.8,12.8,14.477737455517092 + 08/16 10:50:00,12.8,12.8,14.452202419998298 + 08/16 11:00:00,12.8,12.8,14.428985723018693 + 08/16 11:10:00,12.8,12.8,14.407625147633322 + 08/16 11:20:00,12.8,12.8,14.399248739581495 + 08/16 11:30:00,12.8,12.8,14.384083069303346 + 08/16 11:40:00,12.8,12.8,14.370115474736267 + 08/16 11:50:00,12.8,12.8,14.356332634243666 + 08/16 12:00:00,12.8,12.8,14.342421210254589 + 08/16 12:10:00,12.8,12.8,14.330043235813605 + 08/16 12:20:00,12.8,12.8,14.30726003949864 + 08/16 12:30:00,12.8,12.8,14.29309028519876 + 08/16 12:40:00,12.8,12.8,14.278263704980964 + 08/16 12:50:00,12.8,12.8,14.262422053572406 + 08/16 13:00:00,12.8,12.8,14.245082942651493 + 08/16 13:10:00,12.8,12.8,14.225003822326333 + 08/16 13:20:00,12.8,12.8,14.209736396689657 + 08/16 13:30:00,12.8,12.8,14.19257923147015 + 08/16 13:40:00,12.8,12.8,14.177449986831944 + 08/16 13:50:00,12.8,12.8,14.165495336165332 + 08/16 14:00:00,12.8,12.8,14.156573654683117 + 08/16 14:10:00,12.8,12.8,14.151545475916802 + 08/16 14:20:00,12.8,12.8,14.151896877088977 + 08/16 14:30:00,12.8,12.8,14.150123476197037 + 08/16 14:40:00,12.8,12.8,14.148733053414368 + 08/16 14:50:00,12.8,12.8,14.146694830168907 + 08/16 15:00:00,12.8,12.8,14.143599659741322 + 08/16 15:05:00,12.8,12.8,16.302913386345645 + 08/16 15:10:00,12.8,12.8,16.297169401557058 + 08/16 15:20:00,12.8,12.8,16.554523082840153 + 08/16 15:30:00,12.8,12.8,16.657533936562403 + 08/16 15:40:00,12.8,12.8,16.729999475389645 + 08/16 15:50:00,12.8,12.8,16.78662519904667 + 08/16 16:00:00,12.8,12.8,16.8326013089222 + 08/16 16:10:00,12.8,12.8,16.898114400593128 + 08/16 16:20:00,12.8,12.8,16.952463196707858 + 08/16 16:30:00,12.8,12.8,16.983560105487375 + 08/16 16:40:00,12.8,12.8,17.011158420594897 + 08/16 16:50:00,12.8,12.8,17.03595946247701 + 08/16 17:00:00,12.8,12.8,17.058381842454556 + 08/16 17:05:00,12.8,12.8,17.0935524985892 + 08/16 17:10:00,12.8,12.8,17.093162352836825 + 08/16 17:15:00,12.8,12.8,17.11907593182609 + 08/16 17:20:00,12.8,12.8,17.119118698027376 + 08/16 17:30:00,12.8,12.8,17.13782631956925 + 08/16 17:40:00,12.8,12.8,17.156460144572848 + 08/16 17:50:00,12.8,12.8,17.174861326634358 + 08/16 18:00:00,12.8,12.8,17.19350225751756 + 08/16 18:10:00,12.8,12.8,17.211884765649669 + 08/16 18:20:00,12.8,12.8,17.229771591943427 + 08/16 18:30:00,12.8,12.8,17.24704129316583 + 08/16 18:40:00,12.8,12.8,17.263615691296115 + 08/16 18:50:00,12.8,12.8,17.27938495639518 + 08/16 19:00:00,12.8,12.8,17.29441846098238 + 08/16 19:10:00,12.8,12.8,17.322270550565344 + 08/16 19:20:00,12.8,12.8,17.33746391220448 + 08/16 19:30:00,12.8,12.8,17.351814617360526 + 08/16 19:40:00,12.8,12.8,17.365748630840267 + 08/16 19:50:00,12.8,12.8,17.378891752415738 + 08/16 20:00:00,12.8,12.8,17.391189975879138 + 08/16 20:10:00,12.8,12.8,17.37980788833788 + 08/16 20:20:00,12.8,12.8,17.394194236302078 + 08/16 20:30:00,12.8,12.8,17.40405764717478 + 08/16 20:40:00,12.8,12.8,17.41350045272131 + 08/16 20:50:00,12.8,12.8,17.4227054701521 + 08/16 21:00:00,12.8,12.8,17.431649189933766 + 08/16 21:10:00,12.8,12.8,17.44108873804019 + 08/16 21:20:00,12.8,12.8,17.45025409900192 + 08/16 21:30:00,12.8,12.8,17.45932840620548 + 08/16 21:40:00,12.8,12.8,17.468292577896749 + 08/16 21:50:00,12.8,12.8,17.477108225633076 + 08/16 22:00:00,12.8,12.8,17.485908485916135 + 08/16 22:10:00,12.8,12.8,18.852675687488543 + 08/16 22:15:00,12.8,12.8,19.009416450084044 + 08/16 22:20:00,12.8,12.8,19.00676897932681 + 08/16 22:30:00,12.8,12.8,19.076108754507158 + 08/16 22:40:00,12.8,12.8,19.1325871888432 + 08/16 22:50:00,12.8,12.8,19.173230127520129 + 08/16 23:00:00,12.8,12.8,19.209956269820695 + 08/16 23:10:00,12.8,12.8,19.241046442405179 + 08/16 23:20:00,12.8,12.8,19.269261401975034 + 08/16 23:30:00,12.8,12.8,19.29478139777625 + 08/16 23:40:00,12.8,12.8,19.31819393355967 + 08/16 23:50:00,12.8,12.8,19.339822105391936 + 08/16 24:00:00,12.8,12.8,19.359810094706555 + 08/17 00:10:00,12.8,12.8,19.37846468008089 + 08/17 00:20:00,12.8,12.8,19.39515889012967 + 08/17 00:30:00,12.8,12.8,19.411968186307204 + 08/17 00:40:00,12.8,12.8,19.427249232818295 + 08/17 00:50:00,12.8,12.8,19.441340405700616 + 08/17 01:00:00,12.8,12.8,19.455658897707666 + 08/17 01:10:00,12.8,12.8,19.468746324760077 + 08/17 01:20:00,12.8,12.8,19.480825435679898 + 08/17 01:30:00,12.8,12.8,19.493524533596746 + 08/17 01:40:00,12.8,12.8,19.505158033062366 + 08/17 01:50:00,12.8,12.8,19.51595096660577 + 08/17 02:00:00,12.8,12.8,19.527448845411017 + 08/17 02:10:00,12.8,12.8,19.53788902863024 + 08/17 02:20:00,12.8,12.8,19.547702613941796 + 08/17 02:30:00,12.8,12.8,19.558426124033468 + 08/17 02:40:00,12.8,12.8,19.568275718163524 + 08/17 02:50:00,12.8,12.8,19.577538241798686 + 08/17 03:00:00,12.8,12.8,19.587832064368283 + 08/17 03:10:00,12.8,12.8,19.597429915157023 + 08/17 03:20:00,12.8,12.8,19.606211516644536 + 08/17 03:30:00,12.8,12.8,19.615628935196303 + 08/17 03:40:00,12.8,12.8,19.62392708643067 + 08/17 03:50:00,12.8,12.8,19.6321971993685 + 08/17 04:00:00,12.8,12.8,19.63898239458122 + 08/17 04:10:00,12.8,12.8,19.647022311980764 + 08/17 04:20:00,12.8,12.8,19.65401136997728 + 08/17 04:30:00,12.8,12.8,19.661399954211068 + 08/17 04:40:00,12.8,12.8,19.667320610714925 + 08/17 04:50:00,12.8,12.8,19.67494106879498 + 08/17 05:00:00,12.8,12.8,19.68170863362416 + 08/17 05:10:00,12.8,12.8,19.688976359389224 + 08/17 05:20:00,12.8,12.8,19.69415300344657 + 08/17 05:30:00,12.8,12.8,19.699536585473589 + 08/17 05:40:00,12.8,12.8,19.70416964612912 + 08/17 05:50:00,12.8,12.8,19.70817890599624 + 08/17 06:00:00,12.8,12.8,19.710953957387475 + 08/17 06:05:00,12.8,12.8,17.703467423200743 + 08/17 06:10:00,12.8,12.8,17.711545050980978 + 08/17 06:20:00,12.8,12.8,17.468372270356875 + 08/17 06:30:00,12.8,12.8,17.375024348613434 + 08/17 06:40:00,12.8,12.8,17.307874547397917 + 08/17 06:50:00,12.8,12.8,17.253885062696584 + 08/17 07:00:00,12.8,12.8,17.208784594969985 + 08/17 07:05:00,12.8,12.8,15.716301812724727 + 08/17 07:10:00,12.8,12.8,15.722764229385602 + 08/17 07:15:00,12.8,12.8,15.493492332145314 + 08/17 07:20:00,12.8,12.8,15.491745618524677 + 08/17 07:30:00,12.8,12.8,15.386806386357052 + 08/17 07:40:00,12.8,12.8,15.301145440039369 + 08/17 07:50:00,12.8,12.8,15.226941951996741 + 08/17 08:00:00,12.8,12.8,15.161763755722298 + 08/17 08:02:30,12.8,12.8,15.07872257247458 + 08/17 08:05:00,12.8,12.8,15.077374966323678 + 08/17 08:07:30,12.8,12.8,15.077639216673465 + 08/17 08:10:00,12.8,12.8,15.077409192051127 + 08/17 08:20:00,12.8,12.8,15.013884080361234 + 08/17 08:30:00,12.8,12.8,14.962908851235241 + 08/17 08:40:00,12.8,12.8,14.914838169408295 + 08/17 08:50:00,12.8,12.8,14.869730438400359 + 08/17 09:00:00,12.8,12.8,14.827330553088015 + 08/17 09:10:00,12.8,12.8,14.787431407531269 + 08/17 09:20:00,12.8,12.8,14.739042212520453 + 08/17 09:30:00,12.8,12.8,14.702842924661326 + 08/17 09:40:00,12.8,12.8,14.66861827520652 + 08/17 09:50:00,12.8,12.8,14.636449524624373 + 08/17 10:00:00,12.8,12.8,14.606417595845635 + 08/17 10:10:00,12.8,12.8,14.57810348048769 + 08/17 10:20:00,12.8,12.8,14.54790728975301 + 08/17 10:30:00,12.8,12.8,14.522545773859229 + 08/17 10:40:00,12.8,12.8,14.498227038233449 + 08/17 10:50:00,12.8,12.8,14.474353958701164 + 08/17 11:00:00,12.8,12.8,14.450674211869604 + 08/17 11:10:00,12.8,12.8,14.42771866485852 + 08/17 11:20:00,12.8,12.8,14.414714395473919 + 08/17 11:30:00,12.8,12.8,14.392435189125969 + 08/17 11:40:00,12.8,12.8,14.37062784826638 + 08/17 11:50:00,12.8,12.8,14.3499256306205 + 08/17 12:00:00,12.8,12.8,14.330345556140358 + 08/17 12:10:00,12.8,12.8,14.311994993787222 + 08/17 12:20:00,12.8,12.8,14.284833237338324 + 08/17 12:30:00,12.8,12.8,14.267953165703649 + 08/17 12:40:00,12.8,12.8,14.251899274146093 + 08/17 12:50:00,12.8,12.8,14.236390732837649 + 08/17 13:00:00,12.8,12.8,14.221468526247163 + 08/17 13:10:00,12.8,12.8,14.206226884885873 + 08/17 13:20:00,12.8,12.8,14.195544629410703 + 08/17 13:30:00,12.8,12.8,14.182306980125308 + 08/17 13:40:00,12.8,12.8,14.17002507436701 + 08/17 13:50:00,12.8,12.8,14.15892909324025 + 08/17 14:00:00,12.8,12.8,14.148944486679856 + 08/17 14:10:00,12.8,12.8,14.14170154048218 + 08/17 14:20:00,12.8,12.8,14.138521090337129 + 08/17 14:30:00,12.8,12.8,14.132241535963767 + 08/17 14:40:00,12.8,12.8,14.126313589813755 + 08/17 14:50:00,12.8,12.8,14.120879257732117 + 08/17 15:00:00,12.8,12.8,14.115961833328628 + 08/17 15:05:00,12.8,12.8,16.273479104183609 + 08/17 15:10:00,12.8,12.8,16.268028521254654 + 08/17 15:20:00,12.8,12.8,16.52467441674751 + 08/17 15:30:00,12.8,12.8,16.62771499242244 + 08/17 15:40:00,12.8,12.8,16.702544164011678 + 08/17 15:50:00,12.8,12.8,16.760063771031253 + 08/17 16:00:00,12.8,12.8,16.80709788003564 + 08/17 16:10:00,12.8,12.8,16.874660966046894 + 08/17 16:20:00,12.8,12.8,16.9308195914014 + 08/17 16:30:00,12.8,12.8,16.963493933764356 + 08/17 16:40:00,12.8,12.8,16.992621040070266 + 08/17 16:50:00,12.8,12.8,17.01924301235021 + 08/17 17:00:00,12.8,12.8,17.04381855505588 + 08/17 17:05:00,12.8,12.8,17.080163266325678 + 08/17 17:10:00,12.8,12.8,17.0797580902913 + 08/17 17:15:00,12.8,12.8,17.107227897285008 + 08/17 17:20:00,12.8,12.8,17.107274146113264 + 08/17 17:30:00,12.8,12.8,17.127823583354929 + 08/17 17:40:00,12.8,12.8,17.148353190966565 + 08/17 17:50:00,12.8,12.8,17.16843141121803 + 08/17 18:00:00,12.8,12.8,17.188407454994747 + 08/17 18:10:00,12.8,12.8,17.208493486167236 + 08/17 18:20:00,12.8,12.8,17.2280221265775 + 08/17 18:30:00,12.8,12.8,17.246914139300008 + 08/17 18:40:00,12.8,12.8,17.265070153823069 + 08/17 18:50:00,12.8,12.8,17.28244026867698 + 08/17 19:00:00,12.8,12.8,17.29905858926517 + 08/17 19:10:00,12.8,12.8,17.32726755850069 + 08/17 19:20:00,12.8,12.8,17.34299679709207 + 08/17 19:30:00,12.8,12.8,17.35791035126397 + 08/17 19:40:00,12.8,12.8,17.37203703734543 + 08/17 19:50:00,12.8,12.8,17.385128002870517 + 08/17 20:00:00,12.8,12.8,17.3972016805879 + 08/17 20:10:00,12.8,12.8,17.386739269755265 + 08/17 20:20:00,12.8,12.8,17.401882873172658 + 08/17 20:30:00,12.8,12.8,17.41237801913423 + 08/17 20:40:00,12.8,12.8,17.422313264801337 + 08/17 20:50:00,12.8,12.8,17.43190960508208 + 08/17 21:00:00,12.8,12.8,17.441135452489634 + 08/17 21:10:00,12.8,12.8,17.44991733335438 + 08/17 21:20:00,12.8,12.8,17.458326045351098 + 08/17 21:30:00,12.8,12.8,17.466512145459406 + 08/17 21:40:00,12.8,12.8,17.474511450957885 + 08/17 21:50:00,12.8,12.8,17.482295683362066 + 08/17 22:00:00,12.8,12.8,17.48988434973616 + 08/17 22:10:00,12.8,12.8,18.855227856891994 + 08/17 22:20:00,12.8,12.8,19.006575980683409 + 08/17 22:30:00,12.8,12.8,19.073535201223995 + 08/17 22:40:00,12.8,12.8,19.128352232524266 + 08/17 22:50:00,12.8,12.8,19.169857604178377 + 08/17 23:00:00,12.8,12.8,19.204864262564816 + 08/17 23:10:00,12.8,12.8,19.23512180623267 + 08/17 23:20:00,12.8,12.8,19.262068244516155 + 08/17 23:30:00,12.8,12.8,19.286589927975585 + 08/17 23:40:00,12.8,12.8,19.30922226840196 + 08/17 23:50:00,12.8,12.8,19.330194098633208 + 08/17 24:00:00,12.8,12.8,19.349718327784549 + 08/18 00:10:00,12.8,12.8,19.36726600633168 + 08/18 00:20:00,12.8,12.8,19.384829652101435 + 08/18 00:30:00,12.8,12.8,19.40084686428733 + 08/18 00:40:00,12.8,12.8,19.416351907910383 + 08/18 00:50:00,12.8,12.8,19.430083846964995 + 08/18 01:00:00,12.8,12.8,19.444432400888169 + 08/18 01:10:00,12.8,12.8,19.4575060152821 + 08/18 01:20:00,12.8,12.8,19.469668231471304 + 08/18 01:30:00,12.8,12.8,19.482313797313198 + 08/18 01:40:00,12.8,12.8,19.493833545025678 + 08/18 01:50:00,12.8,12.8,19.50450421695957 + 08/18 02:00:00,12.8,12.8,19.515913591301034 + 08/18 02:10:00,12.8,12.8,19.526477736783009 + 08/18 02:20:00,12.8,12.8,19.5363351979 + 08/18 02:30:00,12.8,12.8,19.547078972127147 + 08/18 02:40:00,12.8,12.8,19.556923961971078 + 08/18 02:50:00,12.8,12.8,19.566208369028837 + 08/18 03:00:00,12.8,12.8,19.57646690025309 + 08/18 03:10:00,12.8,12.8,19.58581581645052 + 08/18 03:20:00,12.8,12.8,19.594490697227614 + 08/18 03:30:00,12.8,12.8,19.604002119440936 + 08/18 03:40:00,12.8,12.8,19.612669614178065 + 08/18 03:50:00,12.8,12.8,19.620665545521363 + 08/18 04:00:00,12.8,12.8,19.629615249768677 + 08/18 04:10:00,12.8,12.8,19.637535138805999 + 08/18 04:20:00,12.8,12.8,19.645485353959637 + 08/18 04:30:00,12.8,12.8,19.651947012941755 + 08/18 04:40:00,12.8,12.8,19.65979850151963 + 08/18 04:50:00,12.8,12.8,19.666442820452155 + 08/18 05:00:00,12.8,12.8,19.673372808894287 + 08/18 05:10:00,12.8,12.8,19.678660490477104 + 08/18 05:20:00,12.8,12.8,19.684970791270844 + 08/18 05:30:00,12.8,12.8,19.691324285497044 + 08/18 05:40:00,12.8,12.8,19.697597799052457 + 08/18 05:50:00,12.8,12.8,19.703271394175095 + 08/18 06:00:00,12.8,12.8,19.709814735582716 + 08/18 06:10:00,12.8,12.8,17.724072724503438 + 08/18 06:20:00,12.8,12.8,17.47144802986844 + 08/18 06:30:00,12.8,12.8,17.384472476480807 + 08/18 06:40:00,12.8,12.8,17.314000012327978 + 08/18 06:50:00,12.8,12.8,17.26081829012879 + 08/18 07:00:00,12.8,12.8,17.21570227827751 + 08/18 07:05:00,12.8,12.8,15.722494389544354 + 08/18 07:10:00,12.8,12.8,15.72907946153755 + 08/18 07:15:00,12.8,12.8,15.498095302855953 + 08/18 07:20:00,12.8,12.8,15.496352493458357 + 08/18 07:30:00,12.8,12.8,15.389151175067708 + 08/18 07:40:00,12.8,12.8,15.300586219657673 + 08/18 07:50:00,12.8,12.8,15.223345837825324 + 08/18 08:00:00,12.8,12.8,15.15541726576069 + 08/18 08:02:30,12.8,12.8,15.070329846160919 + 08/18 08:05:00,12.8,12.8,15.068928010842708 + 08/18 08:07:30,12.8,12.8,15.069260604941603 + 08/18 08:10:00,12.8,12.8,15.068961332299937 + 08/18 08:20:00,12.8,12.8,15.003898243780439 + 08/18 08:30:00,12.8,12.8,14.951786458728339 + 08/18 08:40:00,12.8,12.8,14.90301620200863 + 08/18 08:50:00,12.8,12.8,14.857491655614992 + 08/18 09:00:00,12.8,12.8,14.81487757600234 + 08/18 09:10:00,12.8,12.8,14.774395971060482 + 08/18 09:20:00,12.8,12.8,14.725726907547733 + 08/18 09:30:00,12.8,12.8,14.689569866727656 + 08/18 09:40:00,12.8,12.8,14.655377231090242 + 08/18 09:50:00,12.8,12.8,14.622681748846026 + 08/18 10:00:00,12.8,12.8,14.591330508312279 + 08/18 10:10:00,12.8,12.8,14.562453372878484 + 08/18 10:20:00,12.8,12.8,14.530787215123692 + 08/18 10:30:00,12.8,12.8,14.502999957855048 + 08/18 10:40:00,12.8,12.8,14.475659413743366 + 08/18 10:50:00,12.8,12.8,14.448762131040662 + 08/18 11:00:00,12.8,12.8,14.421757559456625 + 08/18 11:10:00,12.8,12.8,14.392978959154389 + 08/18 11:20:00,12.8,12.8,14.374636745327642 + 08/18 11:30:00,12.8,12.8,14.348168507552089 + 08/18 11:40:00,12.8,12.8,14.323165033177446 + 08/18 11:50:00,12.8,12.8,14.300075313378409 + 08/18 12:00:00,12.8,12.8,14.2786575673377 + 08/18 12:10:00,12.8,12.8,14.258664721698287 + 08/18 12:20:00,12.8,12.8,14.231969496267168 + 08/18 12:30:00,12.8,12.8,14.217200205652408 + 08/18 12:40:00,12.8,12.8,14.204017005350519 + 08/18 12:50:00,12.8,12.8,14.1917283180032 + 08/18 13:00:00,12.8,12.8,14.180144375249438 + 08/18 13:10:00,12.8,12.8,14.170089956093547 + 08/18 13:20:00,12.8,12.8,14.163993655678898 + 08/18 13:30:00,12.8,12.8,14.15483591320965 + 08/18 13:40:00,12.8,12.8,14.14611587112593 + 08/18 13:50:00,12.8,12.8,14.137990499146678 + 08/18 14:00:00,12.8,12.8,14.130462301498826 + 08/18 14:10:00,12.8,12.8,14.123041448430815 + 08/18 14:20:00,12.8,12.8,14.119404880700213 + 08/18 14:30:00,12.8,12.8,14.112486660231284 + 08/18 14:40:00,12.8,12.8,14.105849899144456 + 08/18 14:50:00,12.8,12.8,14.099707839948954 + 08/18 15:00:00,12.8,12.8,14.094008756296378 + 08/18 15:05:00,12.8,12.8,16.250063359123275 + 08/18 15:10:00,12.8,12.8,16.245846882527468 + 08/18 15:20:00,12.8,12.8,16.501296572081175 + 08/18 15:30:00,12.8,12.8,16.602730711954984 + 08/18 15:40:00,12.8,12.8,16.678720692338943 + 08/18 15:50:00,12.8,12.8,16.739543722569395 + 08/18 16:00:00,12.8,12.8,16.787085796372378 + 08/18 16:10:00,12.8,12.8,16.853513757280124 + 08/18 16:20:00,12.8,12.8,16.908244441511078 + 08/18 16:30:00,12.8,12.8,16.939927244029059 + 08/18 16:40:00,12.8,12.8,16.9685773115457 + 08/18 16:50:00,12.8,12.8,16.995044115155144 + 08/18 17:00:00,12.8,12.8,17.019712151038477 + 08/18 17:05:00,12.8,12.8,17.05671654638848 + 08/18 17:10:00,12.8,12.8,17.056295715064264 + 08/18 17:15:00,12.8,12.8,17.08408685285868 + 08/18 17:20:00,12.8,12.8,17.08413085144713 + 08/18 17:30:00,12.8,12.8,17.10449378818489 + 08/18 17:40:00,12.8,12.8,17.124383965312864 + 08/18 17:50:00,12.8,12.8,17.143477503467318 + 08/18 18:00:00,12.8,12.8,17.162168073865684 + 08/18 18:10:00,12.8,12.8,17.180792636823086 + 08/18 18:20:00,12.8,12.8,17.199002995672325 + 08/18 18:30:00,12.8,12.8,17.216834004696037 + 08/18 18:40:00,12.8,12.8,17.234278040625108 + 08/18 18:50:00,12.8,12.8,17.251275550569809 + 08/18 19:00:00,12.8,12.8,17.267868823329878 + 08/18 19:10:00,12.8,12.8,17.296782872857663 + 08/18 19:20:00,12.8,12.8,17.313197123775166 + 08/18 19:30:00,12.8,12.8,17.3287015083014 + 08/18 19:40:00,12.8,12.8,17.343296545895478 + 08/18 19:50:00,12.8,12.8,17.35672946068008 + 08/18 20:00:00,12.8,12.8,17.369121266567765 + 08/18 20:10:00,12.8,12.8,17.35871336103509 + 08/18 20:20:00,12.8,12.8,17.373824840871689 + 08/18 20:30:00,12.8,12.8,17.384164778298989 + 08/18 20:40:00,12.8,12.8,17.3938567124601 + 08/18 20:50:00,12.8,12.8,17.40311477326879 + 08/18 21:00:00,12.8,12.8,17.411940324078047 + 08/18 21:10:00,12.8,12.8,17.420375449726174 + 08/18 21:20:00,12.8,12.8,17.42850410959766 + 08/18 21:30:00,12.8,12.8,17.436524212375159 + 08/18 21:40:00,12.8,12.8,17.444418269212926 + 08/18 21:50:00,12.8,12.8,17.452154265460967 + 08/18 22:00:00,12.8,12.8,17.459867065796439 + 08/18 22:10:00,12.8,12.8,18.825917438616864 + 08/18 22:20:00,12.8,12.8,18.976993046229734 + 08/18 22:30:00,12.8,12.8,19.044137579788428 + 08/18 22:40:00,12.8,12.8,19.0988683985995 + 08/18 22:50:00,12.8,12.8,19.143088006044989 + 08/18 23:00:00,12.8,12.8,19.178052689402294 + 08/18 23:10:00,12.8,12.8,19.20910115307097 + 08/18 23:20:00,12.8,12.8,19.236493648614436 + 08/18 23:30:00,12.8,12.8,19.261025225320073 + 08/18 23:40:00,12.8,12.8,19.28379456884458 + 08/18 23:50:00,12.8,12.8,19.304910660956048 + 08/18 24:00:00,12.8,12.8,19.32463451464502 + 08/19 00:10:00,12.8,12.8,19.34215588473098 + 08/19 00:20:00,12.8,12.8,19.35972498918329 + 08/19 00:30:00,12.8,12.8,19.375751974782774 + 08/19 00:40:00,12.8,12.8,19.39137369286241 + 08/19 00:50:00,12.8,12.8,19.40523842333466 + 08/19 01:00:00,12.8,12.8,19.419844686662026 + 08/19 01:10:00,12.8,12.8,19.433157478042128 + 08/19 01:20:00,12.8,12.8,19.445491858601089 + 08/19 01:30:00,12.8,12.8,19.458497614554085 + 08/19 01:40:00,12.8,12.8,19.470374142002929 + 08/19 01:50:00,12.8,12.8,19.481376392100289 + 08/19 02:00:00,12.8,12.8,19.49312652633812 + 08/19 02:10:00,12.8,12.8,19.5036771790022 + 08/19 02:20:00,12.8,12.8,19.51350061401748 + 08/19 02:30:00,12.8,12.8,19.524158165705339 + 08/19 02:40:00,12.8,12.8,19.533783121456709 + 08/19 02:50:00,12.8,12.8,19.542634540427938 + 08/19 03:00:00,12.8,12.8,19.552320470132373 + 08/19 03:10:00,12.8,12.8,19.561176404103589 + 08/19 03:20:00,12.8,12.8,19.56934884563015 + 08/19 03:30:00,12.8,12.8,19.578557166486875 + 08/19 03:40:00,12.8,12.8,19.586841853919233 + 08/19 03:50:00,12.8,12.8,19.59440869779363 + 08/19 04:00:00,12.8,12.8,19.60307653018253 + 08/19 04:10:00,12.8,12.8,19.610845868489464 + 08/19 04:20:00,12.8,12.8,19.617966038718195 + 08/19 04:30:00,12.8,12.8,19.626165912974878 + 08/19 04:40:00,12.8,12.8,19.63270313553421 + 08/19 04:50:00,12.8,12.8,19.640558611533299 + 08/19 05:00:00,12.8,12.8,19.647598009099825 + 08/19 05:10:00,12.8,12.8,19.653825279049387 + 08/19 05:20:00,12.8,12.8,19.660937916451105 + 08/19 05:30:00,12.8,12.8,19.666950877725239 + 08/19 05:40:00,12.8,12.8,19.672030082186465 + 08/19 05:50:00,12.8,12.8,19.678137957925228 + 08/19 06:00:00,12.8,12.8,19.68245477344488 + 08/19 06:10:00,12.8,12.8,19.030125645681069 + 08/19 06:20:00,12.8,12.8,18.956989220580437 + 08/19 06:30:00,12.8,12.8,18.93031928073434 + 08/19 06:40:00,12.8,12.8,18.90812846076342 + 08/19 06:50:00,12.8,12.8,18.89083723520564 + 08/19 07:00:00,12.8,12.8,18.875358878406389 + 08/19 07:10:00,12.8,12.8,17.790971191229447 + 08/19 07:20:00,12.8,12.8,17.629545332750728 + 08/19 07:30:00,12.8,12.8,17.561858321097078 + 08/19 07:40:00,12.8,12.8,17.50462973124896 + 08/19 07:50:00,12.8,12.8,17.457805930686719 + 08/19 08:00:00,12.8,12.8,17.41654381545446 + 08/19 08:05:00,12.8,12.8,17.379185065786339 + 08/19 08:10:00,12.8,12.8,17.37915375497392 + 08/19 08:20:00,12.8,12.8,17.33549480599499 + 08/19 08:30:00,12.8,12.8,17.30265716179553 + 08/19 08:40:00,12.8,12.8,17.271611532342456 + 08/19 08:50:00,12.8,12.8,17.242154538115515 + 08/19 09:00:00,12.8,12.8,17.214276992171884 + 08/19 09:10:00,12.8,12.8,17.187584322380567 + 08/19 09:20:00,12.8,12.8,17.15327004914469 + 08/19 09:30:00,12.8,12.8,17.12847192866628 + 08/19 09:40:00,12.8,12.8,17.104643859474 + 08/19 09:50:00,12.8,12.8,17.08176931495067 + 08/19 10:00:00,12.8,12.8,17.05992610614062 + 08/19 10:10:00,12.8,12.8,17.039031032459726 + 08/19 10:20:00,12.8,12.8,17.019348344767299 + 08/19 10:30:00,12.8,12.8,17.00079741693513 + 08/19 10:40:00,12.8,12.8,16.983303543410753 + 08/19 10:50:00,12.8,12.8,16.96682906435492 + 08/19 11:00:00,12.8,12.8,16.95127033436397 + 08/19 11:10:00,12.8,12.8,16.93619013807552 + 08/19 11:20:00,12.8,12.8,16.921954439796104 + 08/19 11:30:00,12.8,12.8,16.908486464263789 + 08/19 11:40:00,12.8,12.8,16.895752421136149 + 08/19 11:50:00,12.8,12.8,16.883837275783763 + 08/19 12:00:00,12.8,12.8,16.872553155804789 + 08/19 12:10:00,12.8,12.8,16.863281285714814 + 08/19 12:20:00,12.8,12.8,16.85433833145642 + 08/19 12:30:00,12.8,12.8,16.845580183294869 + 08/19 12:40:00,12.8,12.8,16.836957566071417 + 08/19 12:50:00,12.8,12.8,16.828405817909166 + 08/19 13:00:00,12.8,12.8,16.819917053876375 + 08/19 13:10:00,12.8,12.8,16.81020588971867 + 08/19 13:20:00,12.8,12.8,16.800873584325737 + 08/19 13:30:00,12.8,12.8,16.79200775345928 + 08/19 13:40:00,12.8,12.8,16.78380270249795 + 08/19 13:50:00,12.8,12.8,16.776552209889098 + 08/19 14:00:00,12.8,12.8,16.77028662498664 + 08/19 14:10:00,12.8,12.8,16.76639400379523 + 08/19 14:20:00,12.8,12.8,16.763156701078715 + 08/19 14:30:00,12.8,12.8,16.760455925021309 + 08/19 14:40:00,12.8,12.8,16.758298770523657 + 08/19 14:50:00,12.8,12.8,16.756771456270337 + 08/19 15:00:00,12.8,12.8,16.75586032785038 + 08/19 15:10:00,12.8,12.8,16.754361634311118 + 08/19 15:20:00,12.8,12.8,16.753564334215036 + 08/19 15:30:00,12.8,12.8,16.753401433863929 + 08/19 15:40:00,12.8,12.8,16.753878229145238 + 08/19 15:50:00,12.8,12.8,16.75505245662962 + 08/19 16:00:00,12.8,12.8,16.75687831081989 + 08/19 16:10:00,12.8,12.8,16.774004525329887 + 08/19 16:15:00,12.8,12.8,16.789075679008368 + 08/19 16:20:00,12.8,12.8,16.78865855102237 + 08/19 16:30:00,12.8,12.8,16.793517871622258 + 08/19 16:40:00,12.8,12.8,16.79924240180394 + 08/19 16:50:00,12.8,12.8,16.80518549519237 + 08/19 17:00:00,12.8,12.8,16.811625377378407 + 08/19 17:10:00,12.8,12.8,18.576487877108833 + 08/19 17:20:00,12.8,12.8,18.801460892103248 + 08/19 17:30:00,12.8,12.8,18.892015860070655 + 08/19 17:40:00,12.8,12.8,18.964479592820007 + 08/19 17:50:00,12.8,12.8,19.02005496595282 + 08/19 18:00:00,12.8,12.8,19.066733368623657 + 08/19 18:10:00,12.8,12.8,19.119521823751403 + 08/19 18:20:00,12.8,12.8,19.155256977705485 + 08/19 18:30:00,12.8,12.8,19.186743449483747 + 08/19 18:40:00,12.8,12.8,19.215012907218914 + 08/19 18:50:00,12.8,12.8,19.24049724765203 + 08/19 19:00:00,12.8,12.8,19.263574762249019 + 08/19 19:10:00,12.8,12.8,19.285930771056884 + 08/19 19:20:00,12.8,12.8,19.306945958862586 + 08/19 19:30:00,12.8,12.8,19.326921367480005 + 08/19 19:40:00,12.8,12.8,19.345714417656855 + 08/19 19:50:00,12.8,12.8,19.36322765344319 + 08/19 20:00:00,12.8,12.8,19.37952383921207 + 08/19 20:10:00,12.8,12.8,19.372407341647255 + 08/19 20:20:00,12.8,12.8,19.386483177915616 + 08/19 20:30:00,12.8,12.8,19.399951581432384 + 08/19 20:40:00,12.8,12.8,19.41264546931174 + 08/19 20:50:00,12.8,12.8,19.424743195278205 + 08/19 21:00:00,12.8,12.8,19.43633661692641 + 08/19 21:10:00,12.8,12.8,19.44738579139585 + 08/19 21:20:00,12.8,12.8,19.458253197733887 + 08/19 21:30:00,12.8,12.8,19.469004010840384 + 08/19 21:40:00,12.8,12.8,19.479633391516836 + 08/19 21:50:00,12.8,12.8,19.490277309404339 + 08/19 22:00:00,12.8,12.8,19.500846168191619 + 08/19 22:10:00,12.8,12.8,19.511216628639873 + 08/19 22:20:00,12.8,12.8,19.521377140497383 + 08/19 22:30:00,12.8,12.8,19.53118919303376 + 08/19 22:40:00,12.8,12.8,19.54083877305805 + 08/19 22:50:00,12.8,12.8,19.550243950983483 + 08/19 23:00:00,12.8,12.8,19.559414378730638 + 08/19 23:10:00,12.8,12.8,19.568320946591205 + 08/19 23:20:00,12.8,12.8,19.577183356100379 + 08/19 23:30:00,12.8,12.8,19.585658233262025 + 08/19 23:40:00,12.8,12.8,19.593251963640495 + 08/19 23:50:00,12.8,12.8,19.601651854564599 + 08/19 24:00:00,12.8,12.8,19.609220853328269 + 08/20 00:10:00,12.8,12.8,19.616162688180038 + 08/20 00:20:00,12.8,12.8,19.624078843115695 + 08/20 00:30:00,12.8,12.8,19.6304831536385 + 08/20 00:40:00,12.8,12.8,19.638278113787604 + 08/20 00:50:00,12.8,12.8,19.645285874711698 + 08/20 01:00:00,12.8,12.8,19.651511468350735 + 08/20 01:10:00,12.8,12.8,19.65875671090369 + 08/20 01:20:00,12.8,12.8,19.66506544981651 + 08/20 01:30:00,12.8,12.8,19.670708431445847 + 08/20 01:40:00,12.8,12.8,19.677350358599115 + 08/20 01:50:00,12.8,12.8,19.683021857320989 + 08/20 02:00:00,12.8,12.8,19.68790190519734 + 08/20 02:10:00,12.8,12.8,19.69401798520612 + 08/20 02:20:00,12.8,12.8,19.699037708620588 + 08/20 02:30:00,12.8,12.8,19.703205600444457 + 08/20 02:40:00,12.8,12.8,19.708426636067878 + 08/20 02:50:00,12.8,12.8,19.712454315507189 + 08/20 03:00:00,12.8,12.8,19.715788935985665 + 08/20 03:10:00,12.8,12.8,19.72039020502001 + 08/20 03:20:00,12.8,12.8,19.723958490599484 + 08/20 03:30:00,12.8,12.8,19.7267874628171 + 08/20 03:40:00,12.8,12.8,19.73080389294968 + 08/20 03:50:00,12.8,12.8,19.73381117379254 + 08/20 04:00:00,12.8,12.8,19.73613957934857 + 08/20 04:10:00,12.8,12.8,19.739744672731644 + 08/20 04:20:00,12.8,12.8,19.742439633766265 + 08/20 04:30:00,12.8,12.8,19.74452289980293 + 08/20 04:40:00,12.8,12.8,19.748115329744633 + 08/20 04:50:00,12.8,12.8,19.75086646843198 + 08/20 05:00:00,12.8,12.8,19.75302206754884 + 08/20 05:10:00,12.8,12.8,19.756702880930879 + 08/20 05:20:00,12.8,12.8,19.75934171264729 + 08/20 05:30:00,12.8,12.8,19.76124016355769 + 08/20 05:40:00,12.8,12.8,19.764610625884417 + 08/20 05:50:00,12.8,12.8,19.766953098451574 + 08/20 06:00:00,12.8,12.8,19.76863527413122 + 08/20 06:10:00,12.8,12.8,19.793575726668494 + 08/20 06:20:00,12.8,12.8,19.79388117058296 + 08/20 06:30:00,12.8,12.8,19.794671799602719 + 08/20 06:40:00,12.8,12.8,19.794609438362178 + 08/20 06:50:00,12.8,12.8,19.79404264459274 + 08/20 07:00:00,12.8,12.8,19.792734692246463 + 08/20 07:10:00,12.8,12.8,18.39977875894653 + 08/20 07:20:00,12.8,12.8,18.219373112575548 + 08/20 07:30:00,12.8,12.8,18.15173684792744 + 08/20 07:40:00,12.8,12.8,18.096849979541405 + 08/20 07:50:00,12.8,12.8,18.054612340412676 + 08/20 08:00:00,12.8,12.8,18.019279566043346 + 08/20 08:10:00,12.8,12.8,17.988583294890046 + 08/20 08:20:00,12.8,12.8,17.952600288106777 + 08/20 08:30:00,12.8,12.8,17.927939599549274 + 08/20 08:40:00,12.8,12.8,17.905398764936455 + 08/20 08:50:00,12.8,12.8,17.884285104767998 + 08/20 09:00:00,12.8,12.8,17.864274690565684 + 08/20 09:10:00,12.8,12.8,17.845222098074446 + 08/20 09:20:00,12.8,12.8,17.81832763676262 + 08/20 09:30:00,12.8,12.8,17.800768234013057 + 08/20 09:40:00,12.8,12.8,17.783781534707889 + 08/20 09:50:00,12.8,12.8,17.766727315327555 + 08/20 10:00:00,12.8,12.8,17.749293409959749 + 08/20 10:10:00,12.8,12.8,17.731707089617517 + 08/20 10:20:00,12.8,12.8,17.71412348560526 + 08/20 10:30:00,12.8,12.8,17.696540453913025 + 08/20 10:40:00,12.8,12.8,17.679389926133447 + 08/20 10:50:00,12.8,12.8,17.663713015838494 + 08/20 11:00:00,12.8,12.8,17.649658059721504 + 08/20 11:10:00,12.8,12.8,17.636418686036018 + 08/20 11:20:00,12.8,12.8,17.623997772561155 + 08/20 11:30:00,12.8,12.8,17.612144964807848 + 08/20 11:40:00,12.8,12.8,17.600457405381296 + 08/20 11:50:00,12.8,12.8,17.58841967623024 + 08/20 12:00:00,12.8,12.8,17.57607909082428 + 08/20 12:10:00,12.8,12.8,17.565006259595568 + 08/20 12:20:00,12.8,12.8,17.554327060902219 + 08/20 12:30:00,12.8,12.8,17.54435170794647 + 08/20 12:40:00,12.8,12.8,17.53459855461568 + 08/20 12:50:00,12.8,12.8,17.524190432622214 + 08/20 13:00:00,12.8,12.8,17.512776200519306 + 08/20 13:10:00,12.8,12.8,17.499169605178304 + 08/20 13:20:00,12.8,12.8,17.484527092984036 + 08/20 13:30:00,12.8,12.8,17.468917711707954 + 08/20 13:40:00,12.8,12.8,17.453728328543954 + 08/20 13:50:00,12.8,12.8,17.440699799211488 + 08/20 14:00:00,12.8,12.8,17.43031302555177 + 08/20 14:10:00,12.8,12.8,17.425314934766058 + 08/20 14:20:00,12.8,12.8,17.42262541497771 + 08/20 14:30:00,12.8,12.8,17.421827659492054 + 08/20 14:40:00,12.8,12.8,17.421902778706163 + 08/20 14:50:00,12.8,12.8,17.421855433548627 + 08/20 15:00:00,12.8,12.8,17.421238476242104 + 08/20 15:10:00,12.8,12.8,18.838000182397573 + 08/20 15:20:00,12.8,12.8,18.995054872923399 + 08/20 15:30:00,12.8,12.8,19.057881558408483 + 08/20 15:40:00,12.8,12.8,19.10369353148393 + 08/20 15:50:00,12.8,12.8,19.139738485467537 + 08/20 16:00:00,12.8,12.8,19.170140716232276 + 08/20 16:10:00,12.8,12.8,19.19935626316661 + 08/20 16:20:00,12.8,12.8,19.235413521084508 + 08/20 16:30:00,12.8,12.8,19.26107847463281 + 08/20 16:40:00,12.8,12.8,19.2854076494215 + 08/20 16:50:00,12.8,12.8,19.30897297774707 + 08/20 17:00:00,12.8,12.8,19.331858524494004 + 08/20 17:10:00,12.8,12.8,19.353768236143489 + 08/20 17:20:00,12.8,12.8,19.392486883417605 + 08/20 17:30:00,12.8,12.8,19.413289313154608 + 08/20 17:40:00,12.8,12.8,19.43291296169057 + 08/20 17:50:00,12.8,12.8,19.450852986826506 + 08/20 18:00:00,12.8,12.8,19.46719662710806 + 08/20 18:10:00,12.8,12.8,19.483082771311357 + 08/20 18:20:00,12.8,12.8,19.498006751901035 + 08/20 18:30:00,12.8,12.8,19.512293326436696 + 08/20 18:40:00,12.8,12.8,19.52602357624396 + 08/20 18:50:00,12.8,12.8,19.5392867396598 + 08/20 19:00:00,12.8,12.8,19.552105998026666 + 08/20 19:10:00,12.8,12.8,19.564121086761486 + 08/20 19:20:00,12.8,12.8,19.575643204953555 + 08/20 19:30:00,12.8,12.8,19.58656017794464 + 08/20 19:40:00,12.8,12.8,19.596749171316938 + 08/20 19:50:00,12.8,12.8,19.60622982124633 + 08/20 20:00:00,12.8,12.8,19.615010214417447 + 08/20 20:10:00,12.8,12.8,19.601046737386864 + 08/20 20:20:00,12.8,12.8,19.608686273059303 + 08/20 20:30:00,12.8,12.8,19.616107961628204 + 08/20 20:40:00,12.8,12.8,19.62327522043979 + 08/20 20:50:00,12.8,12.8,19.630218089383605 + 08/20 21:00:00,12.8,12.8,19.636924028770506 + 08/20 21:10:00,12.8,12.8,19.643474666672817 + 08/20 21:20:00,12.8,12.8,19.649871661305068 + 08/20 21:30:00,12.8,12.8,19.65638962733123 + 08/20 21:40:00,12.8,12.8,19.66293780758332 + 08/20 21:50:00,12.8,12.8,19.6695080552178 + 08/20 22:00:00,12.8,12.8,19.676084655352619 + 08/20 22:10:00,12.8,12.8,19.682423144932245 + 08/20 22:20:00,12.8,12.8,19.688630967426069 + 08/20 22:30:00,12.8,12.8,19.69460240538727 + 08/20 22:40:00,12.8,12.8,19.700311815797585 + 08/20 22:50:00,12.8,12.8,19.70577414660322 + 08/20 23:00:00,12.8,12.8,19.710958929275898 + 08/20 23:10:00,12.8,12.8,19.716103861924496 + 08/20 23:20:00,12.8,12.8,19.721553185436105 + 08/20 23:30:00,12.8,12.8,19.726856295438794 + 08/20 23:40:00,12.8,12.8,19.7322056434713 + 08/20 23:50:00,12.8,12.8,19.7375190378446 + 08/20 24:00:00,12.8,12.8,19.74153515747502 + 08/21 00:10:00,12.8,12.8,19.74739704833776 + 08/21 00:20:00,12.8,12.8,19.751967987214568 + 08/21 00:30:00,12.8,12.8,19.756811242716457 + 08/21 00:40:00,12.8,12.8,19.759991416900886 + 08/21 00:50:00,12.8,12.8,19.764953651255053 + 08/21 01:00:00,12.8,12.8,19.768696059394878 + 08/21 01:10:00,12.8,12.8,19.77264758484737 + 08/21 01:20:00,12.8,12.8,19.774658301745583 + 08/21 01:30:00,12.8,12.8,19.77832185342968 + 08/21 01:40:00,12.8,12.8,19.78044298305365 + 08/21 01:50:00,12.8,12.8,19.782946649903385 + 08/21 02:00:00,12.8,12.8,19.78359229483913 + 08/21 02:10:00,12.8,12.8,19.78636475481893 + 08/21 02:20:00,12.8,12.8,19.78825945300781 + 08/21 02:30:00,12.8,12.8,19.790084825769634 + 08/21 02:40:00,12.8,12.8,19.793889989802034 + 08/21 02:50:00,12.8,12.8,19.797232426841079 + 08/21 03:00:00,12.8,12.8,19.80151047963059 + 08/21 03:10:00,12.8,12.8,19.804570679330756 + 08/21 03:20:00,12.8,12.8,19.809453240937388 + 08/21 03:30:00,12.8,12.8,19.812962593709974 + 08/21 03:40:00,12.8,12.8,19.816884458294397 + 08/21 03:50:00,12.8,12.8,19.81903247559319 + 08/21 04:00:00,12.8,12.8,19.82288938723443 + 08/21 04:10:00,12.8,12.8,19.8253942529378 + 08/21 04:20:00,12.8,12.8,19.828054280394978 + 08/21 04:30:00,12.8,12.8,19.828836593997065 + 08/21 04:40:00,12.8,12.8,19.831174658966569 + 08/21 04:50:00,12.8,12.8,19.83203908668109 + 08/21 05:00:00,12.8,12.8,19.833226628251074 + 08/21 05:10:00,12.8,12.8,19.8323505197443 + 08/21 05:20:00,12.8,12.8,19.83358189579227 + 08/21 05:30:00,12.8,12.8,19.832818247674468 + 08/21 05:40:00,12.8,12.8,19.834102168727754 + 08/21 05:50:00,12.8,12.8,19.833711108222887 + 08/21 06:00:00,12.8,12.8,19.834914437373486 + 08/21 06:10:00,12.8,12.8,17.847502999524797 + 08/21 06:20:00,12.8,12.8,17.592543348961628 + 08/21 06:30:00,12.8,12.8,17.501934888275814 + 08/21 06:40:00,12.8,12.8,17.428470732681235 + 08/21 06:50:00,12.8,12.8,17.37272326730869 + 08/21 07:00:00,12.8,12.8,17.32592338602651 + 08/21 07:05:00,12.8,12.8,15.834763413212868 + 08/21 07:10:00,12.8,12.8,15.841268882750866 + 08/21 07:20:00,12.8,12.8,15.614531481511128 + 08/21 07:30:00,12.8,12.8,15.505390571710706 + 08/21 07:40:00,12.8,12.8,15.42056270928677 + 08/21 07:50:00,12.8,12.8,15.34889964812317 + 08/21 08:00:00,12.8,12.8,15.286755250192279 + 08/21 08:05:00,12.8,12.8,15.205476462911867 + 08/21 08:10:00,12.8,12.8,15.205388006279625 + 08/21 08:20:00,12.8,12.8,15.146549041935807 + 08/21 08:30:00,12.8,12.8,15.100086518453847 + 08/21 08:40:00,12.8,12.8,15.057736013804855 + 08/21 08:50:00,12.8,12.8,15.019268432707757 + 08/21 09:00:00,12.8,12.8,14.984629431881004 + 08/21 09:10:00,12.8,12.8,14.953091426660777 + 08/21 09:20:00,12.8,12.8,14.913762783699746 + 08/21 09:30:00,12.8,12.8,14.887136385919427 + 08/21 09:40:00,12.8,12.8,14.862026127325539 + 08/21 09:50:00,12.8,12.8,14.837028970719395 + 08/21 10:00:00,12.8,12.8,14.811693824941918 + 08/21 10:10:00,12.8,12.8,14.785885070897728 + 08/21 10:20:00,12.8,12.8,14.756219345861288 + 08/21 10:30:00,12.8,12.8,14.729796287501863 + 08/21 10:40:00,12.8,12.8,14.703696097215213 + 08/21 10:50:00,12.8,12.8,14.678572658834005 + 08/21 11:00:00,12.8,12.8,14.654729990277977 + 08/21 11:10:00,12.8,12.8,14.632102274303163 + 08/21 11:20:00,12.8,12.8,14.62014540499076 + 08/21 11:30:00,12.8,12.8,14.599555827738057 + 08/21 11:40:00,12.8,12.8,14.57951469132768 + 08/21 11:50:00,12.8,12.8,14.560028936516967 + 08/21 12:00:00,12.8,12.8,14.540904966537767 + 08/21 12:10:00,12.8,12.8,14.522015905314494 + 08/21 12:20:00,12.8,12.8,14.494087559616665 + 08/21 12:30:00,12.8,12.8,14.47628497357361 + 08/21 12:40:00,12.8,12.8,14.45860247391552 + 08/21 12:50:00,12.8,12.8,14.439951695763896 + 08/21 13:00:00,12.8,12.8,14.42012911164693 + 08/21 13:10:00,12.8,12.8,14.399631575800088 + 08/21 13:20:00,12.8,12.8,14.382110244489557 + 08/21 13:30:00,12.8,12.8,14.360942574407128 + 08/21 13:40:00,12.8,12.8,14.340650819542809 + 08/21 13:50:00,12.8,12.8,14.32257545809872 + 08/21 14:00:00,12.8,12.8,14.30708163427344 + 08/21 14:10:00,12.8,12.8,14.293419444481682 + 08/21 14:20:00,12.8,12.8,14.284615774135635 + 08/21 14:30:00,12.8,12.8,14.273097627734936 + 08/21 14:40:00,12.8,12.8,14.262130360045026 + 08/21 14:50:00,12.8,12.8,14.251670932305596 + 08/21 15:00:00,12.8,12.8,14.241721822641243 + 08/21 15:05:00,12.8,12.8,16.396173214864488 + 08/21 15:10:00,12.8,12.8,16.38982287614419 + 08/21 15:20:00,12.8,12.8,16.644327230041008 + 08/21 15:30:00,12.8,12.8,16.744044997330986 + 08/21 15:40:00,12.8,12.8,16.814713277730119 + 08/21 15:50:00,12.8,12.8,16.87059828233557 + 08/21 16:00:00,12.8,12.8,16.916338151890775 + 08/21 16:10:00,12.8,12.8,16.98191124396856 + 08/21 16:20:00,12.8,12.8,17.034747626357765 + 08/21 16:30:00,12.8,12.8,17.065709671924549 + 08/21 16:40:00,12.8,12.8,17.09315571039728 + 08/21 16:50:00,12.8,12.8,17.11747403330664 + 08/21 17:00:00,12.8,12.8,17.139429055655119 + 08/21 17:10:00,12.8,12.8,17.172284003242333 + 08/21 17:20:00,12.8,12.8,17.19682964319081 + 08/21 17:30:00,12.8,12.8,17.215036064765856 + 08/21 17:40:00,12.8,12.8,17.23285676122501 + 08/21 17:50:00,12.8,12.8,17.250735770084608 + 08/21 18:00:00,12.8,12.8,17.268784836235996 + 08/21 18:10:00,12.8,12.8,17.28702720847089 + 08/21 18:20:00,12.8,12.8,17.305001375059044 + 08/21 18:30:00,12.8,12.8,17.32256438735738 + 08/21 18:40:00,12.8,12.8,17.33949384579917 + 08/21 18:50:00,12.8,12.8,17.355537571115556 + 08/21 19:00:00,12.8,12.8,17.37068164540554 + 08/21 19:10:00,12.8,12.8,17.398333803363295 + 08/21 19:20:00,12.8,12.8,17.41349065808703 + 08/21 19:30:00,12.8,12.8,17.427956414523196 + 08/21 19:40:00,12.8,12.8,17.441877624374557 + 08/21 19:50:00,12.8,12.8,17.45502446707541 + 08/21 20:00:00,12.8,12.8,17.46746011318845 + 08/21 20:10:00,12.8,12.8,17.45655692729102 + 08/21 20:20:00,12.8,12.8,17.47095569880017 + 08/21 20:30:00,12.8,12.8,17.48022619066924 + 08/21 20:40:00,12.8,12.8,17.48845854712803 + 08/21 20:50:00,12.8,12.8,17.49588702664262 + 08/21 21:00:00,12.8,12.8,17.502551444298434 + 08/21 21:10:00,12.8,12.8,17.50886154849816 + 08/21 21:20:00,12.8,12.8,17.51516641328494 + 08/21 21:30:00,12.8,12.8,17.521653664891735 + 08/21 21:40:00,12.8,12.8,17.52833103188642 + 08/21 21:50:00,12.8,12.8,17.5351568727259 + 08/21 22:00:00,12.8,12.8,17.542222103026896 + 08/21 22:10:00,12.8,12.8,18.906527224929464 + 08/21 22:15:00,12.8,12.8,19.06253866796492 + 08/21 22:20:00,12.8,12.8,19.059661352892357 + 08/21 22:30:00,12.8,12.8,19.12807845318617 + 08/21 22:40:00,12.8,12.8,19.180495926267697 + 08/21 22:50:00,12.8,12.8,19.222055564580189 + 08/21 23:00:00,12.8,12.8,19.257160855984144 + 08/21 23:10:00,12.8,12.8,19.28782464657403 + 08/21 23:20:00,12.8,12.8,19.31519818532278 + 08/21 23:30:00,12.8,12.8,19.339579983085714 + 08/21 23:40:00,12.8,12.8,19.361965185921308 + 08/21 23:50:00,12.8,12.8,19.382640215699607 + 08/21 24:00:00,12.8,12.8,19.40194633566687 + 08/22 00:10:00,12.8,12.8,19.419314398445196 + 08/22 00:20:00,12.8,12.8,19.43686471670971 + 08/22 00:30:00,12.8,12.8,19.45298003271543 + 08/22 00:40:00,12.8,12.8,19.468864260389993 + 08/22 00:50:00,12.8,12.8,19.48322159021779 + 08/22 01:00:00,12.8,12.8,19.49838172410471 + 08/22 01:10:00,12.8,12.8,19.512163101082316 + 08/22 01:20:00,12.8,12.8,19.525691644595626 + 08/22 01:30:00,12.8,12.8,19.537547781023798 + 08/22 01:40:00,12.8,12.8,19.550205948326025 + 08/22 01:50:00,12.8,12.8,19.56150743602286 + 08/22 02:00:00,12.8,12.8,19.57272735146016 + 08/22 02:10:00,12.8,12.8,19.582147535199529 + 08/22 02:20:00,12.8,12.8,19.59271543025622 + 08/22 02:30:00,12.8,12.8,19.601959063611067 + 08/22 02:40:00,12.8,12.8,19.611239500143595 + 08/22 02:50:00,12.8,12.8,19.618850889840354 + 08/22 03:00:00,12.8,12.8,19.627666005767766 + 08/22 03:10:00,12.8,12.8,19.63540832552632 + 08/22 03:20:00,12.8,12.8,19.643455531068147 + 08/22 03:30:00,12.8,12.8,19.649971938295683 + 08/22 03:40:00,12.8,12.8,19.658082273166565 + 08/22 03:50:00,12.8,12.8,19.6649815644058 + 08/22 04:00:00,12.8,12.8,19.672325723606656 + 08/22 04:10:00,12.8,12.8,19.678125463590268 + 08/22 04:20:00,12.8,12.8,19.68561288106795 + 08/22 04:30:00,12.8,12.8,19.691965109365179 + 08/22 04:40:00,12.8,12.8,19.6987462111452 + 08/22 04:50:00,12.8,12.8,19.703988683171038 + 08/22 05:00:00,12.8,12.8,19.711034911605809 + 08/22 05:10:00,12.8,12.8,19.716858973221436 + 08/22 05:20:00,12.8,12.8,19.722098558816137 + 08/22 05:30:00,12.8,12.8,19.72847472756359 + 08/22 05:40:00,12.8,12.8,19.73300179396425 + 08/22 05:50:00,12.8,12.8,19.73910480083951 + 08/22 06:00:00,12.8,12.8,19.743530327845006 + 08/22 06:10:00,12.8,12.8,17.758841632972496 + 08/22 06:15:00,12.8,12.8,17.503531247481367 + 08/22 06:20:00,12.8,12.8,17.50836771385929 + 08/22 06:30:00,12.8,12.8,17.417777368109556 + 08/22 06:40:00,12.8,12.8,17.34693485124021 + 08/22 06:50:00,12.8,12.8,17.293752600515693 + 08/22 07:00:00,12.8,12.8,17.248423116857269 + 08/22 07:05:00,12.8,12.8,15.757418018929588 + 08/22 07:10:00,12.8,12.8,15.763398542935482 + 08/22 07:15:00,12.8,12.8,15.534335946718502 + 08/22 07:20:00,12.8,12.8,15.532580669861869 + 08/22 07:30:00,12.8,12.8,15.42744701913681 + 08/22 07:40:00,12.8,12.8,15.341596284994964 + 08/22 07:50:00,12.8,12.8,15.26697678064649 + 08/22 08:00:00,12.8,12.8,15.201191196772373 + 08/22 08:03:19,12.8,12.8,15.116464499971754 + 08/22 08:06:40,12.8,12.8,15.116066872960945 + 08/22 08:10:00,12.8,12.8,15.116009875864505 + 08/22 08:20:00,12.8,12.8,15.052040238662253 + 08/22 08:30:00,12.8,12.8,15.000397751513802 + 08/22 08:40:00,12.8,12.8,14.952205349600464 + 08/22 08:50:00,12.8,12.8,14.907525988409287 + 08/22 09:00:00,12.8,12.8,14.866227775388916 + 08/22 09:10:00,12.8,12.8,14.827578760911925 + 08/22 09:20:00,12.8,12.8,14.780850237039278 + 08/22 09:30:00,12.8,12.8,14.746588608406924 + 08/22 09:40:00,12.8,12.8,14.71410981458325 + 08/22 09:50:00,12.8,12.8,14.682786344479995 + 08/22 10:00:00,12.8,12.8,14.65244658941766 + 08/22 10:10:00,12.8,12.8,14.623708231460082 + 08/22 10:20:00,12.8,12.8,14.59226368323287 + 08/22 10:30:00,12.8,12.8,14.565005518135753 + 08/22 10:40:00,12.8,12.8,14.539099003347467 + 08/22 10:50:00,12.8,12.8,14.515495758886637 + 08/22 11:00:00,12.8,12.8,14.49436580529251 + 08/22 11:10:00,12.8,12.8,14.475059801895539 + 08/22 11:20:00,12.8,12.8,14.467641362569662 + 08/22 11:30:00,12.8,12.8,14.452693079913022 + 08/22 11:40:00,12.8,12.8,14.438214040613938 + 08/22 11:50:00,12.8,12.8,14.422923668280007 + 08/22 12:00:00,12.8,12.8,14.406130754244656 + 08/22 12:10:00,12.8,12.8,14.388628409514617 + 08/22 12:20:00,12.8,12.8,14.360730680272127 + 08/22 12:30:00,12.8,12.8,14.342013101538399 + 08/22 12:40:00,12.8,12.8,14.323654524373993 + 08/22 12:50:00,12.8,12.8,14.306078755749292 + 08/22 13:00:00,12.8,12.8,14.289581094273319 + 08/22 13:10:00,12.8,12.8,14.273578121352303 + 08/22 13:20:00,12.8,12.8,14.261904277894346 + 08/22 13:30:00,12.8,12.8,14.24745450368121 + 08/22 13:40:00,12.8,12.8,14.23429061154435 + 08/22 13:50:00,12.8,12.8,14.223162578860683 + 08/22 14:00:00,12.8,12.8,14.214188278727307 + 08/22 14:10:00,12.8,12.8,14.207274901474993 + 08/22 14:20:00,12.8,12.8,14.205513969578448 + 08/22 14:30:00,12.8,12.8,14.201586722162327 + 08/22 14:40:00,12.8,12.8,14.198297289776905 + 08/22 14:50:00,12.8,12.8,14.195026284996495 + 08/22 15:00:00,12.8,12.8,14.191567328346386 + 08/22 15:05:00,12.8,12.8,16.353296220192179 + 08/22 15:10:00,12.8,12.8,16.347118044792258 + 08/22 15:20:00,12.8,12.8,16.606509207781117 + 08/22 15:30:00,12.8,12.8,16.71082576841572 + 08/22 15:40:00,12.8,12.8,16.784431431852324 + 08/22 15:50:00,12.8,12.8,16.84307625231328 + 08/22 16:00:00,12.8,12.8,16.89133109150346 + 08/22 16:10:00,12.8,12.8,16.95778329330448 + 08/22 16:20:00,12.8,12.8,17.01323073900639 + 08/22 16:30:00,12.8,12.8,17.046669401594433 + 08/22 16:40:00,12.8,12.8,17.076818334158934 + 08/22 16:50:00,12.8,12.8,17.104022207578603 + 08/22 17:00:00,12.8,12.8,17.12856566878129 + 08/22 17:10:00,12.8,12.8,17.164103939878318 + 08/22 17:15:00,12.8,12.8,17.19174530535214 + 08/22 17:20:00,12.8,12.8,17.191365297011648 + 08/22 17:30:00,12.8,12.8,17.21074443220015 + 08/22 17:40:00,12.8,12.8,17.229436165996306 + 08/22 17:50:00,12.8,12.8,17.246952105728647 + 08/22 18:00:00,12.8,12.8,17.26377686445965 + 08/22 18:10:00,12.8,12.8,17.279538611367188 + 08/22 18:20:00,12.8,12.8,17.295069844204546 + 08/22 18:30:00,12.8,12.8,17.31046107219907 + 08/22 18:40:00,12.8,12.8,17.325701998522246 + 08/22 18:50:00,12.8,12.8,17.34078192747905 + 08/22 19:00:00,12.8,12.8,17.355650707796199 + 08/22 19:10:00,12.8,12.8,17.38323891136894 + 08/22 19:20:00,12.8,12.8,17.398338409356425 + 08/22 19:30:00,12.8,12.8,17.412462520826705 + 08/22 19:40:00,12.8,12.8,17.425655117897788 + 08/22 19:50:00,12.8,12.8,17.437623952801827 + 08/22 20:00:00,12.8,12.8,17.448526970244424 + 08/22 20:10:00,12.8,12.8,17.435807397731055 + 08/22 20:20:00,12.8,12.8,17.448793663546 + 08/22 20:30:00,12.8,12.8,17.457072936591638 + 08/22 20:40:00,12.8,12.8,17.46477606905255 + 08/22 20:50:00,12.8,12.8,17.472113910975577 + 08/22 21:00:00,12.8,12.8,17.47907202675577 + 08/22 21:10:00,12.8,12.8,17.485875414819505 + 08/22 21:20:00,12.8,12.8,17.492453194485035 + 08/22 21:30:00,12.8,12.8,17.49889224729351 + 08/22 21:40:00,12.8,12.8,17.5052140722182 + 08/22 21:50:00,12.8,12.8,17.51140124119978 + 08/22 22:00:00,12.8,12.8,17.517459487778578 + 08/22 22:10:00,12.8,12.8,18.88100887039286 + 08/22 22:20:00,12.8,12.8,19.032303260458428 + 08/22 22:30:00,12.8,12.8,19.098630735137925 + 08/22 22:40:00,12.8,12.8,19.150488859005045 + 08/22 22:50:00,12.8,12.8,19.191020828677205 + 08/22 23:00:00,12.8,12.8,19.22450457326765 + 08/22 23:10:00,12.8,12.8,19.253689091139348 + 08/22 23:20:00,12.8,12.8,19.27985229632237 + 08/22 23:30:00,12.8,12.8,19.303430808136583 + 08/22 23:40:00,12.8,12.8,19.324980063117115 + 08/22 23:50:00,12.8,12.8,19.344829435951156 + 08/22 24:00:00,12.8,12.8,19.363189285591895 + 08/23 00:10:00,12.8,12.8,19.37953102997571 + 08/23 00:20:00,12.8,12.8,19.39617572250797 + 08/23 00:30:00,12.8,12.8,19.41117113663326 + 08/23 00:40:00,12.8,12.8,19.42496918572357 + 08/23 00:50:00,12.8,12.8,19.43907125637407 + 08/23 01:00:00,12.8,12.8,19.45193645880957 + 08/23 01:10:00,12.8,12.8,19.463685008955446 + 08/23 01:20:00,12.8,12.8,19.476027394109719 + 08/23 01:30:00,12.8,12.8,19.487133231672794 + 08/23 01:40:00,12.8,12.8,19.497257234313133 + 08/23 01:50:00,12.8,12.8,19.508069502774899 + 08/23 02:00:00,12.8,12.8,19.517817992424804 + 08/23 02:10:00,12.8,12.8,19.52672404506729 + 08/23 02:20:00,12.8,12.8,19.53642877885593 + 08/23 02:30:00,12.8,12.8,19.545059118587486 + 08/23 02:40:00,12.8,12.8,19.55282872433562 + 08/23 02:50:00,12.8,12.8,19.56164672803863 + 08/23 03:00:00,12.8,12.8,19.568693282830755 + 08/23 03:10:00,12.8,12.8,19.577176498252468 + 08/23 03:20:00,12.8,12.8,19.584716768139925 + 08/23 03:30:00,12.8,12.8,19.591466591574894 + 08/23 03:40:00,12.8,12.8,19.599459918354954 + 08/23 03:50:00,12.8,12.8,19.6065567806532 + 08/23 04:00:00,12.8,12.8,19.612983942052396 + 08/23 04:10:00,12.8,12.8,19.62101833909322 + 08/23 04:20:00,12.8,12.8,19.628216920677965 + 08/23 04:30:00,12.8,12.8,19.63505492494662 + 08/23 04:40:00,12.8,12.8,19.643458871416457 + 08/23 04:50:00,12.8,12.8,19.651101859926606 + 08/23 05:00:00,12.8,12.8,19.65831415615245 + 08/23 05:10:00,12.821021021021022,12.821021021021022,19.665625698517738 + 08/23 05:20:00,12.842042042042042,12.842042042042042,19.67259622750844 + 08/23 05:30:00,12.863063063063063,12.863063063063063,19.679516678020684 + 08/23 05:40:00,12.884084084084084,12.884084084084084,19.686145538149249 + 08/23 05:50:00,12.905105105105106,12.905105105105106,19.692485906647023 + 08/23 06:00:00,12.926126126126127,12.926126126126127,19.698533886658514 + 08/23 06:10:00,12.87987987987988,12.87987987987988,17.71218429436129 + 08/23 06:20:00,12.833633633633636,12.833633633633636,17.461169311145043 + 08/23 06:30:00,12.8,12.8,17.375581141798713 + 08/23 06:40:00,12.8,12.8,17.306473810895477 + 08/23 06:50:00,12.8,12.8,17.254814120417899 + 08/23 07:00:00,12.8,12.8,17.21187472387951 + 08/23 07:03:19,12.8,12.8,15.722487172332985 + 08/23 07:06:40,12.8,12.8,15.732276510310117 + 08/23 07:10:00,12.8,12.8,15.724655037316119 + 08/23 07:15:00,12.8,12.8,15.502789514096492 + 08/23 07:20:00,12.8,12.8,15.505289877942487 + 08/23 07:30:00,12.8,12.8,15.40035013313766 + 08/23 07:40:00,12.8,12.8,15.317546141775303 + 08/23 07:50:00,12.8,12.8,15.249735923813198 + 08/23 08:00:00,12.8,12.8,15.190695204954887 + 08/23 08:03:19,12.8,12.8,15.114376242551474 + 08/23 08:06:40,12.8,12.8,15.11285895032604 + 08/23 08:10:00,12.8,12.8,15.113425289524919 + 08/23 08:20:00,12.8,12.8,15.056991860407314 + 08/23 08:30:00,12.8,12.8,15.013472741779625 + 08/23 08:40:00,12.8,12.8,14.973434141075022 + 08/23 08:50:00,12.8,12.8,14.93679648438119 + 08/23 09:00:00,12.8,12.8,14.903283604952215 + 08/23 09:10:00,12.8,12.8,14.872454534447611 + 08/23 09:20:00,12.8,12.8,14.833343054296507 + 08/23 09:30:00,12.8,12.8,14.80652735793296 + 08/23 09:40:00,12.8,12.8,14.781213305631749 + 08/23 09:50:00,12.8,12.8,14.756591239222136 + 08/23 10:00:00,12.8,12.8,14.732437345684416 + 08/23 10:10:00,12.8,12.8,14.708500309006629 + 08/23 10:20:00,12.8,12.8,14.68134153812016 + 08/23 10:30:00,12.8,12.8,14.65790041423346 + 08/23 10:40:00,12.8,12.8,14.63513270047271 + 08/23 10:50:00,12.8,12.8,14.613574789549066 + 08/23 11:00:00,12.8,12.8,14.5934438051224 + 08/23 11:10:00,12.8,12.8,14.57469361166218 + 08/23 11:20:00,12.8,12.8,14.566912542980047 + 08/23 11:30:00,12.8,12.8,14.55059017385553 + 08/23 11:40:00,12.8,12.8,14.53487555924741 + 08/23 11:50:00,12.8,12.8,14.519736768035168 + 08/23 12:00:00,12.8,12.8,14.504944734706985 + 08/23 12:10:00,12.8,12.8,14.490351097137277 + 08/23 12:20:00,12.8,12.8,14.466432948546715 + 08/23 12:30:00,12.8,12.8,14.452272051881387 + 08/23 12:40:00,12.8,12.8,14.438515898993348 + 08/23 12:50:00,12.8,12.8,14.425061714118137 + 08/23 13:00:00,12.8,12.8,14.411993226542757 + 08/23 13:10:00,12.8,12.8,14.399101206029226 + 08/23 13:20:00,12.8,12.8,14.390087332418956 + 08/23 13:30:00,12.8,12.8,14.377943259784653 + 08/23 13:40:00,12.8,12.8,14.365197411948062 + 08/23 13:50:00,12.8,12.8,14.350442620367894 + 08/23 14:00:00,12.8,12.8,14.3334972510172 + 08/23 14:10:00,12.8,12.8,14.315350747099009 + 08/23 14:20:00,12.8,12.8,14.29986600436992 + 08/23 14:30:00,12.8,12.8,14.280603062870587 + 08/23 14:40:00,12.8,12.8,14.262591427835805 + 08/23 14:50:00,12.8,12.8,14.247993854531073 + 08/23 15:00:00,12.8,12.8,14.237321885971867 + 08/23 15:05:00,12.8,12.8,16.39465073045868 + 08/23 15:10:00,12.8,12.8,16.388043755682899 + 08/23 15:20:00,12.8,12.8,16.64590770439701 + 08/23 15:30:00,12.8,12.8,16.748663920452708 + 08/23 15:40:00,12.8,12.8,16.822919045496307 + 08/23 15:50:00,12.8,12.8,16.88199770004642 + 08/23 16:00:00,12.8,12.8,16.930674690755248 + 08/23 16:10:00,12.8,12.8,16.9968699274614 + 08/23 16:20:00,12.8,12.8,17.05286189373529 + 08/23 16:30:00,12.8,12.8,17.085610523972698 + 08/23 16:40:00,12.8,12.8,17.114601751846256 + 08/23 16:50:00,12.8,12.8,17.14027379298851 + 08/23 17:00:00,12.8,12.8,17.16302081639637 + 08/23 17:10:00,12.8,12.8,17.196684131265497 + 08/23 17:15:00,12.8,12.8,17.222714123263687 + 08/23 17:20:00,12.8,12.8,17.22233248886005 + 08/23 17:30:00,12.8,12.8,17.240850497720566 + 08/23 17:40:00,12.8,12.8,17.259457348315487 + 08/23 17:50:00,12.8,12.8,17.27796306464635 + 08/23 18:00:00,12.8,12.8,17.296874308147684 + 08/23 18:10:00,12.8,12.8,17.31585685654389 + 08/23 18:20:00,12.8,12.8,17.334405998718038 + 08/23 18:30:00,12.8,12.8,17.35232919428661 + 08/23 18:40:00,12.8,12.8,17.369248134977157 + 08/23 18:50:00,12.8,12.8,17.384651778734168 + 08/23 19:00:00,12.8,12.8,17.39846838349429 + 08/23 19:10:00,12.8,12.8,17.424090984189978 + 08/23 19:20:00,12.8,12.8,17.436907863425277 + 08/23 19:30:00,12.8,12.8,17.449077907027744 + 08/23 19:40:00,12.8,12.8,17.461031672597238 + 08/23 19:50:00,12.8,12.8,17.47261970957359 + 08/23 20:00:00,12.8,12.8,17.483923235241034 + 08/23 20:10:00,12.8,12.8,17.47222687033442 + 08/23 20:20:00,12.8,12.8,17.486486610712505 + 08/23 20:30:00,12.8,12.8,17.49615100560233 + 08/23 20:40:00,12.8,12.8,17.50527142909093 + 08/23 20:50:00,12.8,12.8,17.51403475034823 + 08/23 21:00:00,12.8,12.8,17.52241382067583 + 08/23 21:10:00,12.8,12.8,17.530501320382393 + 08/23 21:20:00,12.8,12.8,17.53813733375556 + 08/23 21:30:00,12.8,12.8,17.54540496047946 + 08/23 21:40:00,12.8,12.8,17.55229805918391 + 08/23 21:50:00,12.8,12.8,17.558799124509954 + 08/23 22:00:00,12.8,12.8,17.56507341809835 + 08/23 22:10:00,12.8,12.8,18.92810871085026 + 08/23 22:20:00,12.8,12.8,19.079472265132897 + 08/23 22:30:00,12.8,12.8,19.145574977416176 + 08/23 22:40:00,12.8,12.8,19.196524671216794 + 08/23 22:50:00,12.8,12.8,19.23651339159389 + 08/23 23:00:00,12.8,12.8,19.269256682343494 + 08/23 23:10:00,12.8,12.8,19.29748609687171 + 08/23 23:20:00,12.8,12.8,19.322522117629885 + 08/23 23:30:00,12.8,12.8,19.344925250330918 + 08/23 23:40:00,12.8,12.8,19.36535111596737 + 08/23 23:50:00,12.8,12.8,19.384138469514164 + 08/23 24:00:00,12.8,12.8,19.401543770233056 + 08/24 00:10:00,12.8,12.8,19.4179294713552 + 08/24 00:20:00,12.8,12.8,19.432427790336644 + 08/24 00:30:00,12.8,12.8,19.447447767684353 + 08/24 00:40:00,12.8,12.8,19.461092635498724 + 08/24 00:50:00,12.8,12.8,19.47374296049174 + 08/24 01:00:00,12.8,12.8,19.48690799121482 + 08/24 01:10:00,12.8,12.8,19.498625862207328 + 08/24 01:20:00,12.8,12.8,19.510179955638283 + 08/24 01:30:00,12.8,12.8,19.520167818452685 + 08/24 01:40:00,12.8,12.8,19.531227404557535 + 08/24 01:50:00,12.8,12.8,19.54102550410148 + 08/24 02:00:00,12.8,12.8,19.550907533251619 + 08/24 02:10:00,12.8,12.8,19.559170498994967 + 08/24 02:20:00,12.8,12.8,19.568777882444026 + 08/24 02:30:00,12.8,12.8,19.577195918020448 + 08/24 02:40:00,12.8,12.8,19.585818776083124 + 08/24 02:50:00,12.8,12.8,19.592831321543529 + 08/24 03:00:00,12.8,12.8,19.60123041422672 + 08/24 03:10:00,12.8,12.8,19.60840861297813 + 08/24 03:20:00,12.8,12.8,19.61614951114089 + 08/24 03:30:00,12.8,12.8,19.622112839536429 + 08/24 03:40:00,12.8,12.8,19.629726604824776 + 08/24 03:50:00,12.8,12.8,19.636109236492499 + 08/24 04:00:00,12.8,12.8,19.642929626644237 + 08/24 04:10:00,12.8,12.8,19.64822965920895 + 08/24 04:20:00,12.8,12.8,19.65520710647651 + 08/24 04:30:00,12.8,12.8,19.660940107013759 + 08/24 04:40:00,12.8,12.8,19.66704172479562 + 08/24 04:50:00,12.8,12.8,19.671550505683606 + 08/24 05:00:00,12.8,12.8,19.677761423518218 + 08/24 05:10:00,12.8,12.8,19.682520964114269 + 08/24 05:20:00,12.8,12.8,19.686673211788589 + 08/24 05:30:00,12.8,12.8,19.691298309620917 + 08/24 05:40:00,12.8,12.8,19.69589668029056 + 08/24 05:50:00,12.8,12.8,19.70034450023026 + 08/24 06:00:00,12.8,12.8,19.703972547940194 + 08/24 06:05:00,12.8,12.8,17.697863037861905 + 08/24 06:10:00,12.8,12.8,17.705912564747668 + 08/24 06:20:00,12.8,12.8,17.464437765438217 + 08/24 06:30:00,12.8,12.8,17.372744877367976 + 08/24 06:40:00,12.8,12.8,17.307221304425828 + 08/24 06:50:00,12.8,12.8,17.255108252462685 + 08/24 07:00:00,12.8,12.8,17.212325760151797 + 08/24 07:05:00,12.8,12.8,15.722944298481105 + 08/24 07:10:00,12.8,12.8,15.729377591245602 + 08/24 07:15:00,12.8,12.8,15.504151776491329 + 08/24 07:20:00,12.8,12.8,15.502421914668054 + 08/24 07:30:00,12.8,12.8,15.40237133653411 + 08/24 07:40:00,12.8,12.8,15.322535217275407 + 08/24 07:50:00,12.8,12.8,15.25490222745386 + 08/24 08:00:00,12.8,12.8,15.197037362006693 + 08/24 08:03:19,12.8,12.8,15.121087569383989 + 08/24 08:06:40,12.8,12.8,15.120600281451571 + 08/24 08:10:00,12.8,12.8,15.12060620572029 + 08/24 08:20:00,12.8,12.8,15.065682228899617 + 08/24 08:30:00,12.8,12.8,15.023690990841383 + 08/24 08:40:00,12.8,12.8,14.984827236763488 + 08/24 08:50:00,12.8,12.8,14.948096301147583 + 08/24 09:00:00,12.8,12.8,14.912919261681062 + 08/24 09:10:00,12.8,12.8,14.878834991728997 + 08/24 09:20:00,12.8,12.8,14.835199350582558 + 08/24 09:30:00,12.8,12.8,14.802788362199112 + 08/24 09:40:00,12.8,12.8,14.771855086872016 + 08/24 09:50:00,12.8,12.8,14.742614772806718 + 08/24 10:00:00,12.8,12.8,14.715271920461693 + 08/24 10:10:00,12.8,12.8,14.689597953480716 + 08/24 10:20:00,12.8,12.8,14.661938936117613 + 08/24 10:30:00,12.8,12.8,14.6389781758336 + 08/24 10:40:00,12.8,12.8,14.616679930514417 + 08/24 10:50:00,12.8,12.8,14.594100072623009 + 08/24 11:00:00,12.8,12.8,14.570857954230684 + 08/24 11:10:00,12.8,12.8,14.546720076794987 + 08/24 11:20:00,12.8,12.8,14.531310964768063 + 08/24 11:30:00,12.8,12.8,14.505598635288547 + 08/24 11:40:00,12.8,12.8,14.479644975537584 + 08/24 11:50:00,12.8,12.8,14.454527872842032 + 08/24 12:00:00,12.8,12.8,14.430486095562542 + 08/24 12:10:00,12.8,12.8,14.407688434552684 + 08/24 12:20:00,12.8,12.8,14.376546863927035 + 08/24 12:30:00,12.8,12.8,14.356043372608776 + 08/24 12:40:00,12.8,12.8,14.336930396224167 + 08/24 12:50:00,12.8,12.8,14.319221925278069 + 08/24 13:00:00,12.8,12.8,14.302987093934983 + 08/24 13:10:00,12.8,12.8,14.288000549607525 + 08/24 13:20:00,12.8,12.8,14.277932593674369 + 08/24 13:30:00,12.8,12.8,14.265494210435924 + 08/24 13:40:00,12.8,12.8,14.254242247257999 + 08/24 13:50:00,12.8,12.8,14.244531409445984 + 08/24 14:00:00,12.8,12.8,14.236292173209304 + 08/24 14:10:00,12.8,12.8,14.229403215493008 + 08/24 14:20:00,12.8,12.8,14.226744164225324 + 08/24 14:30:00,12.8,12.8,14.221105572780255 + 08/24 14:40:00,12.8,12.8,14.215981584772468 + 08/24 14:50:00,12.8,12.8,14.21168521493521 + 08/24 15:00:00,12.8,12.8,14.20846678484902 + 08/24 15:05:00,12.8,12.8,16.370314000034889 + 08/24 15:10:00,12.8,12.8,16.364010210211889 + 08/24 15:20:00,12.8,12.8,16.624718113559604 + 08/24 15:30:00,12.8,12.8,16.730638130216286 + 08/24 15:40:00,12.8,12.8,16.806492704264178 + 08/24 15:50:00,12.8,12.8,16.865644375874724 + 08/24 16:00:00,12.8,12.8,16.912885976199843 + 08/24 16:10:00,12.8,12.8,16.976132079011877 + 08/24 16:20:00,12.8,12.8,17.030590808057498 + 08/24 16:30:00,12.8,12.8,17.061206698966314 + 08/24 16:40:00,12.8,12.8,17.08849764388436 + 08/24 16:50:00,12.8,12.8,17.113707894902164 + 08/24 17:00:00,12.8,12.8,17.137141083551968 + 08/24 17:10:00,12.8,12.8,17.17260583716262 + 08/24 17:15:00,12.8,12.8,17.20064904108358 + 08/24 17:20:00,12.8,12.8,17.200251007912735 + 08/24 17:30:00,12.8,12.8,17.220241511120478 + 08/24 17:40:00,12.8,12.8,17.23969957499676 + 08/24 17:50:00,12.8,12.8,17.258110883274229 + 08/24 18:00:00,12.8,12.8,17.27596948905464 + 08/24 18:10:00,12.8,12.8,17.293108300352484 + 08/24 18:20:00,12.8,12.8,17.309917744668686 + 08/24 18:30:00,12.8,12.8,17.3264752927832 + 08/24 18:40:00,12.8,12.8,17.342790477413645 + 08/24 18:50:00,12.8,12.8,17.35886275236941 + 08/24 19:00:00,12.8,12.8,17.37461086564368 + 08/24 19:10:00,12.8,12.8,17.40317215400846 + 08/24 19:20:00,12.8,12.8,17.419563332087664 + 08/24 19:30:00,12.8,12.8,17.435333347784334 + 08/24 19:40:00,12.8,12.8,17.450596651730778 + 08/24 19:50:00,12.8,12.8,17.4651149388392 + 08/24 20:00:00,12.8,12.8,17.478892378718628 + 08/24 20:10:00,12.8,12.8,17.46950468165248 + 08/24 20:20:00,12.8,12.8,17.485710256573549 + 08/24 20:30:00,12.8,12.8,17.497005120013165 + 08/24 20:40:00,12.8,12.8,17.50748998166327 + 08/24 20:50:00,12.8,12.8,17.5173385067332 + 08/24 21:00:00,12.8,12.8,17.526678466706067 + 08/24 21:10:00,12.8,12.8,17.535649511821477 + 08/24 21:20:00,12.8,12.8,17.544136408051558 + 08/24 21:30:00,12.8,12.8,17.55231795835762 + 08/24 21:40:00,12.8,12.8,17.56024600708462 + 08/24 21:50:00,12.8,12.8,17.567903487813884 + 08/24 22:00:00,12.8,12.8,17.57532125245588 + 08/24 22:10:00,12.8,12.8,18.939103895984244 + 08/24 22:20:00,12.8,12.8,19.08928155224624 + 08/24 22:30:00,12.8,12.8,19.155907996128826 + 08/24 22:40:00,12.8,12.8,19.210383215373459 + 08/24 22:50:00,12.8,12.8,19.253240382562767 + 08/24 23:00:00,12.8,12.8,19.288434617377179 + 08/24 23:10:00,12.8,12.8,19.319002632045696 + 08/24 23:20:00,12.8,12.8,19.346308144966156 + 08/24 23:30:00,12.8,12.8,19.37107126544531 + 08/24 23:40:00,12.8,12.8,19.39394194579193 + 08/24 23:50:00,12.8,12.8,19.414993337911477 + 08/24 24:00:00,12.8,12.8,19.434859117578108 + 08/25 00:10:00,12.8,12.8,19.453416208872619 + 08/25 00:20:00,12.8,12.8,19.47090332435088 + 08/25 00:30:00,12.8,12.8,19.487418060399916 + 08/25 00:40:00,12.8,12.8,19.50315248741701 + 08/25 00:50:00,12.8,12.8,19.516582735142419 + 08/25 01:00:00,12.8,12.8,19.530529196487476 + 08/25 01:10:00,12.8,12.8,19.54372619627039 + 08/25 01:20:00,12.8,12.8,19.55645330384603 + 08/25 01:30:00,12.8,12.8,19.568495732712404 + 08/25 01:40:00,12.8,12.8,19.579836354590698 + 08/25 01:50:00,12.8,12.8,19.59066339618503 + 08/25 02:00:00,12.8,12.8,19.601048870961824 + 08/25 02:10:00,12.8,12.8,19.611070439267583 + 08/25 02:20:00,12.8,12.8,19.620872367625194 + 08/25 02:30:00,12.8,12.8,19.63055180319192 + 08/25 02:40:00,12.833633633633636,12.833633633633636,19.640033099383854 + 08/25 02:50:00,12.87987987987988,12.87987987987988,19.649423441149478 + 08/25 03:00:00,12.926126126126127,12.926126126126127,19.65867371205428 + 08/25 03:10:00,12.951351351351353,12.951351351351353,19.668222881865899 + 08/25 03:20:00,12.976576576576577,12.976576576576577,19.67554119883745 + 08/25 03:30:00,13.001801801801803,13.001801801801803,19.682874649938655 + 08/25 03:40:00,13.027027027027028,13.027027027027028,19.689776484112359 + 08/25 03:50:00,13.052252252252253,13.052252252252253,19.696608235494357 + 08/25 04:00:00,13.077477477477478,13.077477477477478,19.703308219555657 + 08/25 04:10:00,13.102702702702704,13.102702702702704,19.710172138161963 + 08/25 04:20:00,13.127927927927928,13.127927927927928,19.71792049850645 + 08/25 04:30:00,13.153153153153154,13.153153153153154,19.725410855530208 + 08/25 04:40:00,13.17837837837838,13.17837837837838,19.732879512521273 + 08/25 04:50:00,13.203603603603604,13.203603603603604,19.740073899226734 + 08/25 05:00:00,13.22882882882883,13.22882882882883,19.747056678714317 + 08/25 05:10:00,13.275075075075077,13.275075075075077,19.753425594709819 + 08/25 05:20:00,13.321321321321323,13.321321321321323,19.759218358084689 + 08/25 05:30:00,13.367567567567568,13.367567567567568,19.765059019726139 + 08/25 05:40:00,13.413813813813816,13.413813813813816,19.770784530330965 + 08/25 05:50:00,13.46006006006006,13.46006006006006,19.776507926716805 + 08/25 06:00:00,13.506306306306307,13.506306306306307,19.782155131083809 + 08/25 06:10:00,13.481081081081081,13.481081081081081,17.793817001105557 + 08/25 06:20:00,13.455855855855857,13.455855855855857,17.561031391968237 + 08/25 06:30:00,13.430630630630632,13.430630630630632,17.474432576545774 + 08/25 06:40:00,13.405405405405407,13.405405405405407,17.407684676308798 + 08/25 06:50:00,13.380180180180182,13.380180180180182,17.354618290934924 + 08/25 07:00:00,13.354954954954956,13.354954954954956,17.310489304365008 + 08/25 07:05:00,13.237237237237239,13.237237237237239,15.821050596118889 + 08/25 07:10:00,13.237237237237239,13.237237237237239,15.827530751231473 + 08/25 07:15:00,13.119519519519521,13.119519519519521,15.599578124179445 + 08/25 07:20:00,13.119519519519521,13.119519519519521,15.597829860306418 + 08/25 07:30:00,13.001801801801804,13.001801801801804,15.493405309072083 + 08/25 07:40:00,12.884084084084086,12.884084084084086,15.407913277956867 + 08/25 07:50:00,12.8,12.8,15.333701653477574 + 08/25 08:00:00,12.8,12.8,15.26826554070723 + 08/25 08:03:19,12.8,12.8,15.183571831837213 + 08/25 08:06:40,12.8,12.8,15.18317746088285 + 08/25 08:10:00,12.8,12.8,15.183146432839548 + 08/25 08:20:00,12.8,12.8,15.119232531739236 + 08/25 08:30:00,12.8,12.8,15.067437532766635 + 08/25 08:40:00,12.8,12.8,15.018737667204447 + 08/25 08:50:00,12.8,12.8,14.97276641407398 + 08/25 09:00:00,12.8,12.8,14.92933681001646 + 08/25 09:10:00,12.8,12.8,14.887887457735867 + 08/25 09:20:00,12.8,12.8,14.837627732372792 + 08/25 09:25:00,12.8,12.8,14.799966400406984 + 08/25 09:30:00,12.8,12.8,14.799773110529094 + 08/25 09:40:00,12.8,12.8,14.762262286899765 + 08/25 09:50:00,12.8,12.8,14.726757817425869 + 08/25 10:00:00,12.8,12.8,14.69243876366509 + 08/25 10:10:00,12.8,12.8,14.6595184546338 + 08/25 10:20:00,12.8,12.8,14.624721885729127 + 08/25 10:30:00,12.8,12.8,14.594951023072636 + 08/25 10:40:00,12.8,12.8,14.56673897962282 + 08/25 10:50:00,12.8,12.8,14.542150651563059 + 08/25 11:00:00,12.8,12.8,14.514718871017378 + 08/25 11:10:00,12.8,12.8,14.491567474378794 + 08/25 11:20:00,12.8,12.8,14.478346581943177 + 08/25 11:30:00,12.8,12.8,14.456919818870011 + 08/25 11:40:00,12.8,12.8,14.43619177165432 + 08/25 11:50:00,12.8,12.8,14.416471766100136 + 08/25 12:00:00,12.8,12.8,14.399004814044315 + 08/25 12:10:00,12.8,12.8,14.379438879841294 + 08/25 12:20:00,12.8,12.8,14.352805584125234 + 08/25 12:30:00,12.8,12.8,14.337871531597268 + 08/25 12:40:00,12.8,12.8,14.320276168151308 + 08/25 12:50:00,12.8,12.8,14.305735291998495 + 08/25 13:00:00,12.8,12.8,14.293836068557856 + 08/25 13:10:00,12.8,12.8,14.277906074980472 + 08/25 13:20:00,12.8,12.8,14.269082377697475 + 08/25 13:30:00,12.8,12.8,14.258651052807969 + 08/25 13:40:00,12.8,12.8,14.245223206411828 + 08/25 13:50:00,12.8,12.8,14.235022494356686 + 08/25 14:00:00,12.8,12.8,14.226008631854802 + 08/25 14:10:00,12.8,12.8,14.216537826690207 + 08/25 14:20:00,12.8,12.8,14.21251971486898 + 08/25 14:30:00,12.8,12.8,14.206508928063155 + 08/25 14:40:00,12.8,12.8,14.198471319616179 + 08/25 14:50:00,12.8,12.8,14.192779529230143 + 08/25 15:00:00,12.8,12.8,14.189762654442016 + 08/25 15:10:00,12.8,12.8,16.33234987095368 + 08/25 15:20:00,12.8,12.8,16.584346380249014 + 08/25 15:30:00,12.8,12.8,16.680818152554648 + 08/25 15:40:00,12.8,12.8,16.755285123780547 + 08/25 15:50:00,12.8,12.8,16.813394078463863 + 08/25 16:00:00,12.8,12.8,16.860704582293168 + 08/25 16:10:00,12.8,12.8,16.926707521282507 + 08/25 16:20:00,12.8,12.8,16.983704021209719 + 08/25 16:30:00,12.8,12.8,17.01675085627269 + 08/25 16:40:00,12.8,12.8,17.046409054445868 + 08/25 16:50:00,12.8,12.8,17.073809180294619 + 08/25 17:00:00,12.8,12.8,17.09949009251693 + 08/25 17:10:00,12.8,12.8,17.135807252421924 + 08/25 17:15:00,12.8,12.8,17.164766204403195 + 08/25 17:20:00,12.8,12.8,17.164439757825578 + 08/25 17:30:00,12.8,12.8,17.185897231103956 + 08/25 17:40:00,12.8,12.8,17.206974856397467 + 08/25 17:50:00,12.8,12.8,17.227244530473187 + 08/25 18:00:00,12.8,12.8,17.247067650456985 + 08/25 18:10:00,12.8,12.8,17.267182384086156 + 08/25 18:20:00,12.8,12.8,17.286661461018455 + 08/25 18:30:00,12.8,12.8,17.30552930937561 + 08/25 18:40:00,12.8,12.8,17.323737856706069 + 08/25 18:50:00,12.8,12.8,17.34114045847381 + 08/25 19:00:00,12.8,12.8,17.357750759134129 + 08/25 19:10:00,12.8,12.8,17.386832834621559 + 08/25 19:20:00,12.8,12.8,17.403816546917264 + 08/25 19:30:00,12.8,12.8,17.419998815577338 + 08/25 19:40:00,12.8,12.8,17.435587334701375 + 08/25 19:50:00,12.8,12.8,17.450461282911843 + 08/25 20:00:00,12.8,12.8,17.46472197245071 + 08/25 20:10:00,12.8,12.8,17.455693737173499 + 08/25 20:20:00,12.8,12.8,17.472292897041233 + 08/25 20:30:00,12.8,12.8,17.48361956528637 + 08/25 20:40:00,12.8,12.8,17.493901299217496 + 08/25 20:50:00,12.8,12.8,17.5034556255669 + 08/25 21:00:00,12.8,12.8,17.51235045359316 + 08/25 21:10:00,12.8,12.8,17.520787375879267 + 08/25 21:20:00,12.8,12.8,17.528754178521408 + 08/25 21:30:00,12.8,12.8,17.536395833738135 + 08/25 21:40:00,12.8,12.8,17.543742834245877 + 08/25 21:50:00,12.8,12.8,17.55077027591951 + 08/25 22:00:00,12.8,12.8,17.557634505705488 + 08/25 22:10:00,12.8,12.8,18.923474035734626 + 08/25 22:20:00,12.8,12.8,19.06908424710901 + 08/25 22:30:00,12.8,12.8,19.133784480891728 + 08/25 22:40:00,12.8,12.8,19.18508813061273 + 08/25 22:50:00,12.8,12.8,19.223836333266008 + 08/25 23:00:00,12.8,12.8,19.260920497497879 + 08/25 23:10:00,12.8,12.8,19.290808907748244 + 08/25 23:20:00,12.8,12.8,19.31882172175518 + 08/25 23:30:00,12.8,12.8,19.34345728162861 + 08/25 23:40:00,12.8,12.8,19.3658187077774 + 08/25 23:50:00,12.8,12.8,19.386445173315008 + 08/25 24:00:00,12.8,12.8,19.405586523540717 + 08/26 00:10:00,12.8,12.8,19.42362078756361 + 08/26 00:20:00,12.8,12.8,19.441847535233877 + 08/26 00:30:00,12.8,12.8,19.45834176190669 + 08/26 00:40:00,12.8,12.8,19.474513349332967 + 08/26 00:50:00,12.8,12.8,19.4900732152646 + 08/26 01:00:00,12.8,12.8,19.505246879144474 + 08/26 01:10:00,12.8,12.8,19.52017976216488 + 08/26 01:20:00,12.8,12.8,19.53372669868255 + 08/26 01:30:00,12.8,12.8,19.54652262095027 + 08/26 01:40:00,12.8,12.8,19.558313593461155 + 08/26 01:50:00,12.8,12.8,19.5692876005678 + 08/26 02:00:00,12.8,12.8,19.579384990670893 + 08/26 02:10:00,12.8,12.8,19.588833358352038 + 08/26 02:20:00,12.8,12.8,19.59856651836781 + 08/26 02:30:00,12.8,12.8,19.607586968227009 + 08/26 02:40:00,12.8,12.8,19.61633043563769 + 08/26 02:50:00,12.8,12.8,19.62470768939825 + 08/26 03:00:00,12.8,12.8,19.63274546146205 + 08/26 03:10:00,12.8,12.8,19.640357374818114 + 08/26 03:20:00,12.8,12.8,19.646653747823409 + 08/26 03:30:00,12.8,12.8,19.653141654994568 + 08/26 03:40:00,12.8,12.8,19.65949399078124 + 08/26 03:50:00,12.8,12.8,19.665916058376724 + 08/26 04:00:00,12.8,12.8,19.67242499118383 + 08/26 04:10:00,12.8,12.8,19.67913137977952 + 08/26 04:20:00,12.8,12.8,19.686487643181864 + 08/26 04:30:00,12.8,12.8,19.693481751313578 + 08/26 04:40:00,12.8,12.8,19.70022959162943 + 08/26 04:50:00,12.8,12.8,19.706711250545525 + 08/26 05:00:00,12.8,12.8,19.712915587445957 + 08/26 05:10:00,12.8,12.8,19.71884867345619 + 08/26 05:20:00,12.8,12.8,19.7250524704007 + 08/26 05:30:00,12.8,12.8,19.731002498047585 + 08/26 05:40:00,12.8,12.8,19.736777404586538 + 08/26 05:50:00,12.8,12.8,19.74244385515859 + 08/26 06:00:00,12.8,12.8,19.74794402071303 + 08/26 06:10:00,12.8,12.8,19.093434875730997 + 08/26 06:20:00,12.8,12.8,19.027483522072378 + 08/26 06:30:00,12.8,12.8,19.001413372948116 + 08/26 06:40:00,12.8,12.8,18.98107124724517 + 08/26 06:50:00,12.8,12.8,18.96462520193159 + 08/26 07:00:00,12.8,12.8,18.950092803752804 + 08/26 07:10:00,12.8,12.8,17.865354713161375 + 08/26 07:20:00,12.8,12.8,17.71524273966117 + 08/26 07:30:00,12.8,12.8,17.648910444210814 + 08/26 07:40:00,12.8,12.8,17.59362625973336 + 08/26 07:50:00,12.8,12.8,17.546633522560275 + 08/26 08:00:00,12.8,12.8,17.505236909262018 + 08/26 08:10:00,12.8,12.8,17.46780054821917 + 08/26 08:20:00,12.8,12.8,17.42324104289361 + 08/26 08:30:00,12.8,12.8,17.389629082019849 + 08/26 08:40:00,12.8,12.8,17.35774883252848 + 08/26 08:50:00,12.8,12.8,17.327598636326838 + 08/26 09:00:00,12.8,12.8,17.29903034552298 + 08/26 09:10:00,12.8,12.8,17.27164235750654 + 08/26 09:20:00,12.8,12.8,17.236576239399619 + 08/26 09:30:00,12.8,12.8,17.211043719978709 + 08/26 09:40:00,12.8,12.8,17.189097798269985 + 08/26 09:50:00,12.8,12.8,17.163115638269553 + 08/26 09:55:00,12.8,12.8,17.141650105996253 + 08/26 10:00:00,12.8,12.8,17.141728003333144 + 08/26 10:10:00,12.8,12.8,17.120564223317634 + 08/26 10:15:00,12.8,12.8,17.10185939970677 + 08/26 10:20:00,12.8,12.8,17.101736129589989 + 08/26 10:30:00,12.8,12.8,17.082919643207814 + 08/26 10:40:00,12.8,12.8,17.065335535522335 + 08/26 10:50:00,12.8,12.8,17.04827607632299 + 08/26 11:00:00,12.8,12.8,17.031629857114955 + 08/26 11:10:00,12.8,12.8,17.015515242012329 + 08/26 11:20:00,12.8,12.8,16.999818322944856 + 08/26 11:30:00,12.8,12.8,16.98450727491563 + 08/26 11:40:00,12.8,12.8,16.96943143498458 + 08/26 11:50:00,12.8,12.8,16.954346845561806 + 08/26 12:00:00,12.8,12.8,16.93916841040029 + 08/26 12:10:00,12.8,12.8,16.923223372798959 + 08/26 12:20:00,12.8,12.8,16.90792452519985 + 08/26 12:30:00,12.8,12.8,16.893433706994924 + 08/26 12:40:00,12.8,12.8,16.880021328409315 + 08/26 12:50:00,12.8,12.8,16.86808907302234 + 08/26 13:00:00,12.8,12.8,16.857722597576108 + 08/26 13:10:00,12.8,12.8,16.850474181933668 + 08/26 13:20:00,12.8,12.8,16.843721163369197 + 08/26 13:30:00,12.8,12.8,16.83707396514965 + 08/26 13:40:00,12.8,12.8,16.830654887873889 + 08/26 13:50:00,12.8,12.8,16.824685225444136 + 08/26 14:00:00,12.8,12.8,16.81937481210081 + 08/26 14:05:00,12.8,12.8,16.81203655304891 + 08/26 14:10:00,12.8,12.8,16.81148318766718 + 08/26 14:20:00,12.8,12.8,16.804855113321268 + 08/26 14:30:00,12.8,12.8,16.802643298930727 + 08/26 14:40:00,12.8,12.8,16.80231074063116 + 08/26 14:50:00,12.8,12.8,16.806013110252139 + 08/26 15:00:00,12.8,12.8,16.807490079971197 + 08/26 15:10:00,12.8,12.8,16.813909409936096 + 08/26 15:20:00,12.8,12.8,16.819705010535964 + 08/26 15:30:00,12.8,12.8,16.825704594827785 + 08/26 15:40:00,12.8,12.8,16.830719313830739 + 08/26 15:50:00,12.8,12.8,16.83381089967746 + 08/26 16:00:00,12.8,12.8,16.83490435331135 + 08/26 16:10:00,12.8,12.8,16.84694773865935 + 08/26 16:20:00,12.8,12.8,16.85466991151774 + 08/26 16:30:00,12.8,12.8,16.852872139164537 + 08/26 16:40:00,12.8,12.8,16.85133527994786 + 08/26 16:50:00,12.8,12.8,16.850954761575325 + 08/26 17:00:00,12.8,12.8,16.853106959056036 + 08/26 17:10:00,12.8,12.8,18.61399873279401 + 08/26 17:20:00,12.8,12.8,18.828423778547653 + 08/26 17:30:00,12.8,12.8,18.913485498038435 + 08/26 17:40:00,12.8,12.8,18.980347894406333 + 08/26 17:50:00,12.8,12.8,19.03451638677707 + 08/26 18:00:00,12.8,12.8,19.080505332078688 + 08/26 18:10:00,12.8,12.8,19.133812323750204 + 08/26 18:20:00,12.8,12.8,19.170894000691115 + 08/26 18:30:00,12.8,12.8,19.204562901661175 + 08/26 18:40:00,12.8,12.8,19.235737014172629 + 08/26 18:50:00,12.8,12.8,19.26473894837976 + 08/26 19:00:00,12.8,12.8,19.291681423853939 + 08/26 19:10:00,12.8,12.8,19.317401790059195 + 08/26 19:20:00,12.8,12.8,19.342051244059534 + 08/26 19:30:00,12.8,12.8,19.365180300313829 + 08/26 19:40:00,12.8,12.8,19.386762141865739 + 08/26 19:50:00,12.8,12.8,19.40681289733901 + 08/26 20:00:00,12.8,12.8,19.425589633894615 + 08/26 20:10:00,12.8,12.8,19.420664683578278 + 08/26 20:20:00,12.8,12.8,19.436732953483383 + 08/26 20:30:00,12.8,12.8,19.451718564469354 + 08/26 20:40:00,12.8,12.8,19.46565429582401 + 08/26 20:50:00,12.8,12.8,19.478602483476867 + 08/26 21:00:00,12.8,12.8,19.49089653181969 + 08/26 21:10:00,12.8,12.8,19.50189180602247 + 08/26 21:20:00,12.8,12.8,19.51318860963009 + 08/26 21:30:00,12.8,12.8,19.523919086067509 + 08/26 21:40:00,12.8,12.8,19.534475438143227 + 08/26 21:50:00,12.8,12.8,19.544849700777705 + 08/26 22:00:00,12.8,12.8,19.554972741945585 + 08/26 22:10:00,12.8,12.8,19.56481492989903 + 08/26 22:20:00,12.8,12.8,19.57518550412114 + 08/26 22:30:00,12.8,12.8,19.583641529212703 + 08/26 22:40:00,12.8,12.8,19.59373210231839 + 08/26 22:50:00,12.8,12.8,19.602499735983029 + 08/26 23:00:00,12.8,12.8,19.60963713669077 + 08/26 23:10:00,12.8,12.8,19.61687205616047 + 08/26 23:20:00,12.8,12.8,19.62564552779061 + 08/26 23:30:00,12.8,12.8,19.632220764251895 + 08/26 23:40:00,12.8,12.8,19.63990823005522 + 08/26 23:50:00,12.8,12.8,19.646736074167778 + 08/26 24:00:00,12.8,12.8,19.653439194055186 + 08/27 00:10:00,12.8,12.8,19.65994397806066 + 08/27 00:20:00,12.8,12.8,19.665658486001147 + 08/27 00:30:00,12.8,12.8,19.671419199545548 + 08/27 00:40:00,12.8,12.8,19.677051685342329 + 08/27 00:50:00,12.8,12.8,19.68268358941054 + 08/27 01:00:00,12.8,12.8,19.688253626661408 + 08/27 01:10:00,12.8,12.8,19.693763916091254 + 08/27 01:20:00,12.8,12.8,19.70064403789553 + 08/27 01:30:00,12.8,12.8,19.707339840920345 + 08/27 01:40:00,12.8,12.8,19.714181354785326 + 08/27 01:50:00,12.8,12.8,19.7208695276796 + 08/27 02:00:00,12.8,12.8,19.727368368359089 + 08/27 02:10:00,12.8,12.8,19.73391018279887 + 08/27 02:20:00,12.8,12.8,19.73948837438993 + 08/27 02:30:00,12.8,12.8,19.744981635054516 + 08/27 02:40:00,12.8,12.8,19.750185150182355 + 08/27 02:50:00,12.8,12.8,19.75520341580178 + 08/27 03:00:00,12.8,12.8,19.760168774072523 + 08/27 03:10:00,12.8,12.8,19.764922401204279 + 08/27 03:20:00,12.8,12.8,19.769910036780858 + 08/27 03:30:00,12.8,12.8,19.774783444490095 + 08/27 03:40:00,12.8,12.8,19.779568947711668 + 08/27 03:50:00,12.8,12.8,19.78427111657227 + 08/27 04:00:00,12.8,12.8,19.788924186280739 + 08/27 04:10:00,12.8,12.8,19.7936133494997 + 08/27 04:20:00,12.8,12.8,19.798062634872954 + 08/27 04:30:00,12.8,12.8,19.8024589055895 + 08/27 04:40:00,12.833633633633636,12.833633633633636,19.806764211893275 + 08/27 04:50:00,12.87987987987988,12.87987987987988,19.811113156954315 + 08/27 05:00:00,12.926126126126127,12.926126126126127,19.81543017510719 + 08/27 05:10:00,12.926126126126127,12.926126126126127,19.819681057968578 + 08/27 05:20:00,12.926126126126127,12.926126126126127,19.824499338923773 + 08/27 05:30:00,12.926126126126127,12.926126126126127,19.828984184086829 + 08/27 05:40:00,12.926126126126127,12.926126126126127,19.83348753227303 + 08/27 05:50:00,12.926126126126127,12.926126126126127,19.837774133225083 + 08/27 06:00:00,12.926126126126127,12.926126126126127,19.84188923295387 + 08/27 06:10:00,12.905105105105106,12.905105105105106,19.867846637480853 + 08/27 06:20:00,12.884084084084084,12.884084084084084,19.87082813317737 + 08/27 06:30:00,12.863063063063063,12.863063063063063,19.872782973937555 + 08/27 06:40:00,12.842042042042042,12.842042042042042,19.873960895776738 + 08/27 06:50:00,12.821021021021022,12.821021021021022,19.874281593891167 + 08/27 07:00:00,12.8,12.8,19.87162814081072 + 08/27 07:10:00,12.8,12.8,18.480176203520263 + 08/27 07:20:00,12.8,12.8,18.29827711272015 + 08/27 07:30:00,12.8,12.8,18.227087346786278 + 08/27 07:40:00,12.8,12.8,18.166613404265644 + 08/27 07:50:00,12.8,12.8,18.117406150764788 + 08/27 08:00:00,12.8,12.8,18.07416105034304 + 08/27 08:10:00,12.8,12.8,18.034720133448553 + 08/27 08:20:00,12.8,12.8,17.989558865218379 + 08/27 08:30:00,12.8,12.8,17.955341002699396 + 08/27 08:40:00,12.8,12.8,17.923007367640005 + 08/27 08:50:00,12.8,12.8,17.89207703184544 + 08/27 09:00:00,12.8,12.8,17.86203737995822 + 08/27 09:10:00,12.8,12.8,17.832963897995215 + 08/27 09:20:00,12.8,12.8,17.796687529707506 + 08/27 09:30:00,12.8,12.8,17.77050861933022 + 08/27 09:40:00,12.8,12.8,17.74587171160089 + 08/27 09:50:00,12.8,12.8,17.722528841382208 + 08/27 10:00:00,12.8,12.8,17.700358210874133 + 08/27 10:10:00,12.8,12.8,17.679194981191868 + 08/27 10:20:00,12.8,12.8,17.658671812958 + 08/27 10:30:00,12.8,12.8,17.638567429288658 + 08/27 10:40:00,12.8,12.8,17.618795657287618 + 08/27 10:50:00,12.8,12.8,17.599612793187707 + 08/27 11:00:00,12.8,12.8,17.580993214691135 + 08/27 11:10:00,12.8,12.8,17.56309320536579 + 08/27 11:20:00,12.8,12.8,17.546260733679249 + 08/27 11:30:00,12.8,12.8,17.53057852183008 + 08/27 11:40:00,12.8,12.8,17.516138139595513 + 08/27 11:50:00,12.8,12.8,17.50293831908381 + 08/27 12:00:00,12.8,12.8,17.491168641735766 + 08/27 12:10:00,12.8,12.8,17.480054490482439 + 08/27 12:20:00,12.8,12.8,17.469919266004518 + 08/27 12:30:00,12.8,12.8,17.46070759162338 + 08/27 12:40:00,12.8,12.8,17.45227140989965 + 08/27 12:50:00,12.8,12.8,17.444222371670727 + 08/27 13:00:00,12.8,12.8,17.43638477060808 + 08/27 13:10:00,12.8,12.8,17.429649421285509 + 08/27 13:20:00,12.8,12.8,17.423293456271993 + 08/27 13:30:00,12.8,12.8,17.417230842439016 + 08/27 13:40:00,12.8,12.8,17.41176737754215 + 08/27 13:50:00,12.8,12.8,17.407153308204259 + 08/27 14:00:00,12.8,12.8,17.4033758189783 + 08/27 14:10:00,12.8,12.8,17.400811643917309 + 08/27 14:20:00,12.8,12.8,17.398848495783424 + 08/27 14:30:00,12.8,12.8,17.39730978510137 + 08/27 14:40:00,12.8,12.8,17.395719914919427 + 08/27 14:50:00,12.8,12.8,17.393714868421264 + 08/27 15:00:00,12.8,12.8,17.391157729641756 + 08/27 15:10:00,12.8,12.8,18.80798871684636 + 08/27 15:20:00,12.8,12.8,18.959180877734988 + 08/27 15:30:00,12.8,12.8,19.02053528165319 + 08/27 15:40:00,12.8,12.8,19.06843949289345 + 08/27 15:50:00,12.8,12.8,19.107077724702838 + 08/27 16:00:00,12.8,12.8,19.14002398854285 + 08/27 16:10:00,12.8,12.8,19.16958145728725 + 08/27 16:20:00,12.8,12.8,19.20511071407908 + 08/27 16:30:00,12.8,12.8,19.22962682577357 + 08/27 16:40:00,12.8,12.8,19.2520838375093 + 08/27 16:50:00,12.8,12.8,19.272686593469495 + 08/27 17:00:00,12.8,12.8,19.291585850430957 + 08/27 17:10:00,12.8,12.8,19.30965896139267 + 08/27 17:20:00,12.8,12.8,19.34433914354439 + 08/27 17:30:00,12.8,12.8,19.360831082324699 + 08/27 17:40:00,12.8,12.8,19.37682512560506 + 08/27 17:50:00,12.8,12.8,19.392686931004307 + 08/27 18:00:00,12.8,12.8,19.408678140731845 + 08/27 18:10:00,12.8,12.8,19.42483505657784 + 08/27 18:20:00,12.8,12.8,19.440703418160113 + 08/27 18:30:00,12.8,12.8,19.456399088375436 + 08/27 18:40:00,12.8,12.8,19.471571415136304 + 08/27 18:50:00,12.8,12.8,19.48613255224339 + 08/27 19:00:00,12.8,12.8,19.500023825091316 + 08/27 19:10:00,12.8,12.8,19.5138038179702 + 08/27 19:20:00,12.8,12.8,19.52745556072198 + 08/27 19:30:00,12.8,12.8,19.540502010446138 + 08/27 19:40:00,12.8,12.8,19.552792185473306 + 08/27 19:50:00,12.8,12.8,19.56438527334273 + 08/27 20:00:00,12.8,12.8,19.57530538808833 + 08/27 20:10:00,12.8,12.8,19.563222502311484 + 08/27 20:20:00,12.8,12.8,19.57311676991535 + 08/27 20:30:00,12.8,12.8,19.582596647070525 + 08/27 20:40:00,12.8,12.8,19.591955093961759 + 08/27 20:50:00,12.8,12.8,19.599784969336736 + 08/27 21:00:00,12.8,12.8,19.607922246139404 + 08/27 21:10:00,12.8,12.8,19.615497070616038 + 08/27 21:20:00,12.8,12.8,19.623057840609329 + 08/27 21:30:00,12.8,12.8,19.630621109945705 + 08/27 21:40:00,12.8,12.8,19.638095250798377 + 08/27 21:50:00,12.8,12.8,19.645505279530029 + 08/27 22:00:00,12.8,12.8,19.65285925075218 + 08/27 22:10:00,12.8,12.8,19.660040903409948 + 08/27 22:20:00,12.8,12.8,19.667114121404145 + 08/27 22:30:00,12.8,12.8,19.674024313407754 + 08/27 22:40:00,12.8,12.8,19.680748231360057 + 08/27 22:50:00,12.8,12.8,19.687301970208986 + 08/27 23:00:00,12.8,12.8,19.693647949368978 + 08/27 23:10:00,12.8,12.8,19.699862707251464 + 08/27 23:20:00,12.8,12.8,19.70633228064337 + 08/27 23:30:00,12.8,12.8,19.712540740541127 + 08/27 23:40:00,12.8,12.8,19.718784683523496 + 08/27 23:50:00,12.8,12.8,19.724878399766788 + 08/27 24:00:00,12.8,12.8,19.729585459047696 + 08/28 00:10:00,12.8,12.8,19.73609824550186 + 08/28 00:20:00,12.8,12.8,19.74132143064962 + 08/28 00:30:00,12.8,12.8,19.747042286446186 + 08/28 00:40:00,12.8,12.8,19.752435034254455 + 08/28 00:50:00,12.8,12.8,19.756154956761156 + 08/28 01:00:00,12.8,12.8,19.762106010714939 + 08/28 01:10:00,12.8,12.8,19.766705118114673 + 08/28 01:20:00,12.8,12.8,19.771865887921199 + 08/28 01:30:00,12.8,12.8,19.776604632672116 + 08/28 01:40:00,12.8,12.8,19.779616485666975 + 08/28 01:50:00,12.8,12.8,19.78474151487844 + 08/28 02:00:00,12.8,12.8,19.78847091122801 + 08/28 02:10:00,12.8,12.8,19.792951830281156 + 08/28 02:20:00,12.8,12.8,19.797084350120249 + 08/28 02:30:00,12.8,12.8,19.79957882529426 + 08/28 02:40:00,12.8,12.8,19.804259208766746 + 08/28 02:50:00,12.8,12.8,19.807638064679268 + 08/28 03:00:00,12.8,12.8,19.811691929116728 + 08/28 03:10:00,12.8,12.8,19.81523207268887 + 08/28 03:20:00,12.8,12.8,19.817177359153566 + 08/28 03:30:00,12.8,12.8,19.82148674809063 + 08/28 03:40:00,12.8,12.8,19.824544071201193 + 08/28 03:50:00,12.8,12.8,19.82839451699632 + 08/28 04:00:00,12.8,12.8,19.83200977202048 + 08/28 04:10:00,12.8,12.8,19.833925069278196 + 08/28 04:20:00,12.8,12.8,19.838042222166604 + 08/28 04:30:00,12.8,12.8,19.84074791586488 + 08/28 04:40:00,12.8,12.8,19.844070442702344 + 08/28 04:50:00,12.8,12.8,19.846990513052444 + 08/28 05:00:00,12.8,12.8,19.848188235851 + 08/28 05:10:00,12.8,12.8,19.85197758938788 + 08/28 05:20:00,12.8,12.8,19.854297543549 + 08/28 05:30:00,12.8,12.8,19.856098706624587 + 08/28 05:40:00,12.8,12.8,19.859167788538615 + 08/28 05:50:00,12.8,12.8,19.861156914161286 + 08/28 06:00:00,12.8,12.8,19.862490915262965 + 08/28 06:10:00,12.8,12.8,17.878909486546058 + 08/28 06:20:00,12.8,12.8,17.624130144942737 + 08/28 06:30:00,12.8,12.8,17.534499839973884 + 08/28 06:40:00,12.8,12.8,17.460875768761829 + 08/28 06:50:00,12.8,12.8,17.40470753692516 + 08/28 07:00:00,12.8,12.8,17.35682925577719 + 08/28 07:05:00,12.8,12.8,15.863892696032233 + 08/28 07:10:00,12.8,12.8,15.870419839431618 + 08/28 07:20:00,12.8,12.8,15.640438633208998 + 08/28 07:30:00,12.8,12.8,15.526839857752814 + 08/28 07:40:00,12.8,12.8,15.43661228304767 + 08/28 07:50:00,12.8,12.8,15.359311916325249 + 08/28 08:00:00,12.8,12.8,15.291659220223016 + 08/28 08:05:00,12.8,12.8,15.204790664374177 + 08/28 08:10:00,12.8,12.8,15.20471597506637 + 08/28 08:20:00,12.8,12.8,15.140310475262546 + 08/28 08:30:00,12.8,12.8,15.088260667254423 + 08/28 08:40:00,12.8,12.8,15.040003500619245 + 08/28 08:50:00,12.8,12.8,14.994853919784673 + 08/28 09:00:00,12.8,12.8,14.952521332297677 + 08/28 09:10:00,12.8,12.8,14.912463061954745 + 08/28 09:20:00,12.8,12.8,14.863909208000687 + 08/28 09:30:00,12.8,12.8,14.827505470899773 + 08/28 09:40:00,12.8,12.8,14.792975636169898 + 08/28 09:50:00,12.8,12.8,14.760296236808964 + 08/28 10:00:00,12.8,12.8,14.729513811223378 + 08/28 10:10:00,12.8,12.8,14.70094923025742 + 08/28 10:20:00,12.8,12.8,14.670668939352746 + 08/28 10:30:00,12.8,12.8,14.645372822480292 + 08/28 10:40:00,12.8,12.8,14.620983564484446 + 08/28 10:50:00,12.8,12.8,14.596540201249218 + 08/28 11:00:00,12.8,12.8,14.57165711699491 + 08/28 11:10:00,12.8,12.8,14.546371704435427 + 08/28 11:20:00,12.8,12.8,14.530424511909578 + 08/28 11:30:00,12.8,12.8,14.504739216962708 + 08/28 11:40:00,12.8,12.8,14.479792026476686 + 08/28 11:50:00,12.8,12.8,14.457428826230304 + 08/28 12:00:00,12.8,12.8,14.437950907670054 + 08/28 12:10:00,12.8,12.8,14.421054584094997 + 08/28 12:20:00,12.8,12.8,14.396786516235766 + 08/28 12:30:00,12.8,12.8,14.384006580006453 + 08/28 12:40:00,12.8,12.8,14.372982531734815 + 08/28 12:50:00,12.8,12.8,14.363537404818745 + 08/28 13:00:00,12.8,12.8,14.35562061447276 + 08/28 13:10:00,12.8,12.8,14.349336124241244 + 08/28 13:20:00,12.8,12.8,14.347919691259598 + 08/28 13:30:00,12.8,12.8,14.34423495317548 + 08/28 13:40:00,12.8,12.8,14.341364749728078 + 08/28 13:50:00,12.8,12.8,14.338914575690005 + 08/28 14:00:00,12.8,12.8,14.336665505101554 + 08/28 14:10:00,12.8,12.8,14.334347019242813 + 08/28 14:20:00,12.8,12.8,14.335514737743277 + 08/28 14:30:00,12.8,12.8,14.33316373069687 + 08/28 14:40:00,12.8,12.8,14.3295909125348 + 08/28 14:50:00,12.8,12.8,14.32308052893479 + 08/28 15:00:00,12.8,12.8,14.313919623848495 + 08/28 15:10:00,12.8,12.8,16.44891827546592 + 08/28 15:20:00,12.8,12.8,16.696777696081953 + 08/28 15:30:00,12.8,12.8,16.78585083793852 + 08/28 15:40:00,12.8,12.8,16.85416756259788 + 08/28 15:50:00,12.8,12.8,16.90519693115456 + 08/28 16:00:00,12.8,12.8,16.940718810864927 + 08/28 16:10:00,12.8,12.8,16.999647032399979 + 08/28 16:20:00,12.8,12.8,17.048393841268948 + 08/28 16:30:00,12.8,12.8,17.074263864925486 + 08/28 16:40:00,12.8,12.8,17.097652694410017 + 08/28 16:50:00,12.8,12.8,17.119570779825737 + 08/28 17:00:00,12.8,12.8,17.140412200178944 + 08/28 17:10:00,12.8,12.8,17.17324006574745 + 08/28 17:20:00,12.8,12.8,17.19866490356862 + 08/28 17:30:00,12.8,12.8,17.217860812254434 + 08/28 17:40:00,12.8,12.8,17.236637140042168 + 08/28 17:50:00,12.8,12.8,17.255211037883737 + 08/28 18:00:00,12.8,12.8,17.273607861307548 + 08/28 18:10:00,12.8,12.8,17.292223332257625 + 08/28 18:20:00,12.8,12.8,17.31034899496748 + 08/28 18:30:00,12.8,12.8,17.327881336886699 + 08/28 18:40:00,12.8,12.8,17.344684983856149 + 08/28 18:50:00,12.8,12.8,17.3605284337713 + 08/28 19:00:00,12.8,12.8,17.375466297669 + 08/28 19:10:00,12.8,12.8,17.40293470758479 + 08/28 19:20:00,12.8,12.8,17.41802702765159 + 08/28 19:30:00,12.8,12.8,17.432089724323807 + 08/28 19:40:00,12.8,12.8,17.44532394133213 + 08/28 19:50:00,12.8,12.8,17.457676463525357 + 08/28 20:00:00,12.8,12.8,17.469289547594604 + 08/28 20:10:00,12.8,12.8,17.457644749093256 + 08/28 20:20:00,12.8,12.8,17.471893206812749 + 08/28 20:30:00,12.8,12.8,17.481516215643514 + 08/28 20:40:00,12.8,12.8,17.490589286040433 + 08/28 20:50:00,12.8,12.8,17.499325299564754 + 08/28 21:00:00,12.8,12.8,17.507699387940798 + 08/28 21:10:00,12.8,12.8,17.515910382007577 + 08/28 21:20:00,12.8,12.8,17.52386290743529 + 08/28 21:30:00,12.8,12.8,17.531767429727858 + 08/28 21:40:00,12.8,12.8,17.539597515399707 + 08/28 21:50:00,12.8,12.8,17.547321408373123 + 08/28 22:00:00,12.8,12.8,17.55507150746267 + 08/28 22:10:00,12.8,12.8,18.919797333886494 + 08/28 22:20:00,12.8,12.8,19.07062912769815 + 08/28 22:30:00,12.8,12.8,19.137800735546159 + 08/28 22:40:00,12.8,12.8,19.192723074054965 + 08/28 22:50:00,12.8,12.8,19.236144592833097 + 08/28 23:00:00,12.8,12.8,19.271892266078486 + 08/28 23:10:00,12.8,12.8,19.302896516732397 + 08/28 23:20:00,12.8,12.8,19.330357532885765 + 08/28 23:30:00,12.8,12.8,19.354937234352108 + 08/28 23:40:00,12.8,12.8,19.377263071771755 + 08/28 23:50:00,12.8,12.8,19.397841180885238 + 08/28 24:00:00,12.8,12.8,19.416946001934098 + 08/29 00:10:00,12.8,12.8,19.43405888067461 + 08/29 00:20:00,12.8,12.8,19.4510624109231 + 08/29 00:30:00,12.8,12.8,19.466455210837688 + 08/29 00:40:00,12.8,12.8,19.481361324100793 + 08/29 00:50:00,12.8,12.8,19.494463817594828 + 08/29 01:00:00,12.8,12.8,19.508295390413907 + 08/29 01:10:00,12.8,12.8,19.520579641450469 + 08/29 01:20:00,12.8,12.8,19.532783660305929 + 08/29 01:30:00,12.8,12.8,19.543382164920275 + 08/29 01:40:00,12.8,12.8,19.555255249076827 + 08/29 01:50:00,12.8,12.8,19.56587465976947 + 08/29 02:00:00,12.8,12.8,19.57668305584374 + 08/29 02:10:00,12.8,12.8,19.58557005841338 + 08/29 02:20:00,12.8,12.8,19.595985392592167 + 08/29 02:30:00,12.8,12.8,19.605075926146534 + 08/29 02:40:00,12.8,12.8,19.614415542510593 + 08/29 02:50:00,12.8,12.8,19.622103265824394 + 08/29 03:00:00,12.8,12.8,19.631180904179798 + 08/29 03:10:00,12.8,12.8,19.63921812600551 + 08/29 03:20:00,12.8,12.8,19.64758974410428 + 08/29 03:30:00,12.8,12.8,19.654339927891927 + 08/29 03:40:00,12.8,12.8,19.662715800567225 + 08/29 03:50:00,12.8,12.8,19.669789884595045 + 08/29 04:00:00,12.8,12.8,19.67728875898364 + 08/29 04:10:00,12.8,12.8,19.682928422067027 + 08/29 04:20:00,12.8,12.8,19.690312255037925 + 08/29 04:30:00,12.8,12.8,19.69643313821702 + 08/29 04:40:00,12.8,12.8,19.70295477504729 + 08/29 04:50:00,12.8,12.8,19.707785881175668 + 08/29 05:00:00,12.8,12.8,19.714487444715155 + 08/29 05:10:00,12.8,12.8,19.72028543980933 + 08/29 05:20:00,12.8,12.8,19.72553040869104 + 08/29 05:30:00,12.8,12.8,19.732084925687439 + 08/29 05:40:00,12.8,12.8,19.73678840491852 + 08/29 05:50:00,12.8,12.8,19.743250394163036 + 08/29 06:00:00,12.8,12.8,19.748024654868837 + 08/29 06:10:00,12.8,12.8,17.76383511816276 + 08/29 06:15:00,12.8,12.8,17.509762298607627 + 08/29 06:20:00,12.8,12.8,17.514614904079666 + 08/29 06:30:00,12.8,12.8,17.425101147079987 + 08/29 06:40:00,12.8,12.8,17.354728075875057 + 08/29 06:50:00,12.8,12.8,17.301802336658477 + 08/29 07:00:00,12.8,12.8,17.256881211803497 + 08/29 07:05:00,12.8,12.8,15.766355448076626 + 08/29 07:10:00,12.8,12.8,15.77230438426516 + 08/29 07:15:00,12.8,12.8,15.543613723124413 + 08/29 07:20:00,12.8,12.8,15.541862397734816 + 08/29 07:30:00,12.8,12.8,15.436523717023217 + 08/29 07:40:00,12.8,12.8,15.350482637901532 + 08/29 07:50:00,12.8,12.8,15.27605768090214 + 08/29 08:00:00,12.8,12.8,15.210946927828584 + 08/29 08:03:19,12.8,12.8,15.127148290230468 + 08/29 08:06:40,12.8,12.8,15.126693167774566 + 08/29 08:10:00,12.8,12.8,15.126663206533314 + 08/29 08:20:00,12.8,12.8,15.06360699382898 + 08/29 08:30:00,12.8,12.8,15.012961468792179 + 08/29 08:40:00,12.8,12.8,14.96545539386503 + 08/29 08:50:00,12.8,12.8,14.9207795181844 + 08/29 09:00:00,12.8,12.8,14.87869836020078 + 08/29 09:10:00,12.8,12.8,14.838951878497616 + 08/29 09:20:00,12.8,12.8,14.790613100797773 + 08/29 09:30:00,12.8,12.8,14.754365003438345 + 08/29 09:40:00,12.8,12.8,14.719791500501169 + 08/29 09:50:00,12.8,12.8,14.686648829447208 + 08/29 10:00:00,12.8,12.8,14.654926976527392 + 08/29 10:10:00,12.8,12.8,14.62497489374125 + 08/29 10:20:00,12.8,12.8,14.59286442230909 + 08/29 10:30:00,12.8,12.8,14.565390172254336 + 08/29 10:40:00,12.8,12.8,14.539266349267939 + 08/29 10:50:00,12.8,12.8,14.51471708517333 + 08/29 11:00:00,12.8,12.8,14.491656792719088 + 08/29 11:10:00,12.8,12.8,14.470036835284537 + 08/29 11:20:00,12.8,12.8,14.4593796677951 + 08/29 11:30:00,12.8,12.8,14.44036639799583 + 08/29 11:40:00,12.8,12.8,14.422634244366354 + 08/29 11:50:00,12.8,12.8,14.406780459834494 + 08/29 12:00:00,12.8,12.8,14.392820495642443 + 08/29 12:10:00,12.8,12.8,14.380480290366961 + 08/29 12:20:00,12.8,12.8,14.360107200247886 + 08/29 12:30:00,12.8,12.8,14.350751808371218 + 08/29 12:40:00,12.8,12.8,14.34207207741693 + 08/29 12:50:00,12.8,12.8,14.332425283917337 + 08/29 13:00:00,12.8,12.8,14.32155370321044 + 08/29 13:10:00,12.8,12.8,14.309261211618543 + 08/29 13:20:00,12.8,12.8,14.299527575317397 + 08/29 13:30:00,12.8,12.8,14.28557298098435 + 08/29 13:40:00,12.8,12.8,14.271377814751494 + 08/29 13:50:00,12.8,12.8,14.257644067781636 + 08/29 14:00:00,12.8,12.8,14.244615245809934 + 08/29 14:10:00,12.8,12.8,14.231981240453387 + 08/29 14:20:00,12.8,12.8,14.22369305457775 + 08/29 14:30:00,12.8,12.8,14.212810615622269 + 08/29 14:40:00,12.8,12.8,14.202757628964913 + 08/29 14:50:00,12.8,12.8,14.19364537564337 + 08/29 15:00:00,12.8,12.8,14.186226610205443 + 08/29 15:05:00,12.8,12.8,16.337310990735796 + 08/29 15:10:00,12.8,12.8,16.333785552064755 + 08/29 15:20:00,12.8,12.8,16.5857049137684 + 08/29 15:30:00,12.8,12.8,16.68511154827715 + 08/29 15:40:00,12.8,12.8,16.75995248578645 + 08/29 15:50:00,12.8,12.8,16.818479112073676 + 08/29 16:00:00,12.8,12.8,16.86663160379711 + 08/29 16:10:00,12.8,12.8,16.934975589395969 + 08/29 16:20:00,12.8,12.8,16.98937283071197 + 08/29 16:30:00,12.8,12.8,17.020600273228696 + 08/29 16:40:00,12.8,12.8,17.04805504969655 + 08/29 16:50:00,12.8,12.8,17.0734116451272 + 08/29 17:00:00,12.8,12.8,17.096821757877224 + 08/29 17:10:00,12.8,12.8,17.132534284258825 + 08/29 17:15:00,12.8,12.8,17.161415120557505 + 08/29 17:20:00,12.8,12.8,17.16103057986227 + 08/29 17:30:00,12.8,12.8,17.182692152088224 + 08/29 17:40:00,12.8,12.8,17.2044725665074 + 08/29 17:50:00,12.8,12.8,17.225761594176988 + 08/29 18:00:00,12.8,12.8,17.246881018538298 + 08/29 18:10:00,12.8,12.8,17.267426419139018 + 08/29 18:20:00,12.8,12.8,17.287218850607759 + 08/29 18:30:00,12.8,12.8,17.306147115326156 + 08/29 18:40:00,12.8,12.8,17.324151989850145 + 08/29 18:50:00,12.8,12.8,17.34135858630312 + 08/29 19:00:00,12.8,12.8,17.357807485953168 + 08/29 19:10:00,12.8,12.8,17.38626854409747 + 08/29 19:20:00,12.8,12.8,17.401844625812968 + 08/29 19:30:00,12.8,12.8,17.415942902712876 + 08/29 19:40:00,12.8,12.8,17.428993253590748 + 08/29 19:50:00,12.8,12.8,17.441063314325363 + 08/29 20:00:00,12.8,12.8,17.452187761269298 + 08/29 20:10:00,12.8,12.8,17.440455662690494 + 08/29 20:20:00,12.8,12.8,17.454642745142626 + 08/29 20:30:00,12.8,12.8,17.464273904107363 + 08/29 20:40:00,12.8,12.8,17.473441577214328 + 08/29 20:50:00,12.8,12.8,17.482336068140094 + 08/29 21:00:00,12.8,12.8,17.490939134063895 + 08/29 21:10:00,12.8,12.8,17.499364632997599 + 08/29 21:20:00,12.8,12.8,17.50755900809657 + 08/29 21:30:00,12.8,12.8,17.51568622087147 + 08/29 21:40:00,12.8,12.8,17.52378342106049 + 08/29 21:50:00,12.8,12.8,17.53179301602381 + 08/29 22:00:00,12.8,12.8,17.539708270971933 + 08/29 22:10:00,12.8,12.8,18.904528088968136 + 08/29 22:20:00,12.8,12.8,19.053784410180645 + 08/29 22:30:00,12.8,12.8,19.12023078444006 + 08/29 22:40:00,12.8,12.8,19.17411767786195 + 08/29 22:50:00,12.8,12.8,19.217735079015787 + 08/29 23:00:00,12.8,12.8,19.25498372321425 + 08/29 23:10:00,12.8,12.8,19.28755712707586 + 08/29 23:20:00,12.8,12.8,19.31520780981493 + 08/29 23:30:00,12.8,12.8,19.340829416182289 + 08/29 23:40:00,12.8,12.8,19.363769002849254 + 08/29 23:50:00,12.8,12.8,19.3849998438533 + 08/29 24:00:00,12.8,12.8,19.404786270863498 + 08/30 00:10:00,12.8,12.8,19.423239357336337 + 08/30 00:20:00,12.8,12.8,19.44058945498264 + 08/30 00:30:00,12.8,12.8,19.456960379467696 + 08/30 00:40:00,12.8,12.8,19.472468423244714 + 08/30 00:50:00,12.8,12.8,19.487129399022885 + 08/30 01:00:00,12.8,12.8,19.501183065872714 + 08/30 01:10:00,12.8,12.8,19.51474401619572 + 08/30 01:20:00,12.8,12.8,19.52683310614712 + 08/30 01:30:00,12.8,12.8,19.539791132239409 + 08/30 01:40:00,12.8,12.8,19.55146629814454 + 08/30 01:50:00,12.8,12.8,19.56318134385946 + 08/30 02:00:00,12.8,12.8,19.574407910971574 + 08/30 02:10:00,12.8,12.8,19.5841622572768 + 08/30 02:20:00,12.8,12.8,19.595312990300493 + 08/30 02:30:00,12.8,12.8,19.60525097753804 + 08/30 02:40:00,12.8,12.8,19.615487950753257 + 08/30 02:50:00,12.8,12.8,19.62540822285515 + 08/30 03:00:00,12.8,12.8,19.633908455290795 + 08/30 03:10:00,12.8,12.8,19.64401241214687 + 08/30 03:20:00,12.8,12.8,19.652537220403909 + 08/30 03:30:00,12.8,12.8,19.661070621673895 + 08/30 03:40:00,12.8,12.8,19.667912077523025 + 08/30 03:50:00,12.8,12.8,19.675382849539245 + 08/30 04:00:00,12.8,12.8,19.68219901974812 + 08/30 04:10:00,12.821021021021022,12.821021021021022,19.68893055596743 + 08/30 04:20:00,12.842042042042042,12.842042042042042,19.695224285216626 + 08/30 04:30:00,12.863063063063063,12.863063063063063,19.701227272388676 + 08/30 04:40:00,12.884084084084084,12.884084084084084,19.706927448308414 + 08/30 04:50:00,12.905105105105106,12.905105105105106,19.71233633153279 + 08/30 05:00:00,12.926126126126127,12.926126126126127,19.717473865269154 + 08/30 05:10:00,12.926126126126127,12.926126126126127,19.721940316955985 + 08/30 05:20:00,12.926126126126127,12.926126126126127,19.72626028723225 + 08/30 05:30:00,12.926126126126127,12.926126126126127,19.73052688324349 + 08/30 05:40:00,12.926126126126127,12.926126126126127,19.73470898477689 + 08/30 05:50:00,12.926126126126127,12.926126126126127,19.738815493565097 + 08/30 06:00:00,12.926126126126127,12.926126126126127,19.742787054319913 + 08/30 06:10:00,12.951351351351353,12.951351351351353,17.756956536237138 + 08/30 06:20:00,12.976576576576577,12.976576576576577,17.505566078477256 + 08/30 06:30:00,13.001801801801803,13.001801801801803,17.419163314060904 + 08/30 06:40:00,13.027027027027028,13.027027027027028,17.34961432177175 + 08/30 06:50:00,13.052252252252253,13.052252252252253,17.297715155255113 + 08/30 07:00:00,13.077477477477478,13.077477477477478,17.25486763189167 + 08/30 07:05:00,13.031231231231232,13.031231231231232,15.765766724350474 + 08/30 07:10:00,13.031231231231232,13.031231231231232,15.772304150974073 + 08/30 07:15:00,12.984984984984987,12.984984984984987,15.546094422351889 + 08/30 07:20:00,12.984984984984987,12.984984984984987,15.544351679360688 + 08/30 07:30:00,12.938738738738739,12.938738738738739,15.442346856292702 + 08/30 07:40:00,12.892492492492494,12.892492492492494,15.359690091302842 + 08/30 07:50:00,12.846246246246248,12.846246246246248,15.288496335013301 + 08/30 08:00:00,12.8,12.8,15.226238690012965 + 08/30 08:03:19,12.8,12.8,15.1445936095622 + 08/30 08:06:40,12.8,12.8,15.144197938381986 + 08/30 08:10:00,12.8,12.8,15.144182525486084 + 08/30 08:20:00,12.8,12.8,15.083173698144169 + 08/30 08:30:00,12.8,12.8,15.03424354391269 + 08/30 08:40:00,12.8,12.8,14.988512469111225 + 08/30 08:50:00,12.8,12.8,14.946046428980639 + 08/30 09:00:00,12.8,12.8,14.906848027852995 + 08/30 09:10:00,12.8,12.8,14.870203842316599 + 08/30 09:20:00,12.8,12.8,14.825408229882468 + 08/30 09:30:00,12.8,12.8,14.793053653069258 + 08/30 09:40:00,12.8,12.8,14.762554641286985 + 08/30 09:50:00,12.8,12.8,14.733510115122069 + 08/30 10:00:00,12.8,12.8,14.705624156083595 + 08/30 10:10:00,12.8,12.8,14.678968693346317 + 08/30 10:20:00,12.8,12.8,14.650233417390267 + 08/30 10:30:00,12.8,12.8,14.626408433273781 + 08/30 10:40:00,12.8,12.8,14.60472033698115 + 08/30 10:50:00,12.8,12.8,14.58625432249915 + 08/30 11:00:00,12.8,12.8,14.571381471070208 + 08/30 11:10:00,12.8,12.8,14.559622770929563 + 08/30 11:20:00,12.8,12.8,14.559882227398555 + 08/30 11:30:00,12.8,12.8,14.552620216020904 + 08/30 11:40:00,12.8,12.8,14.545813520145489 + 08/30 11:50:00,12.8,12.8,14.537716665490662 + 08/30 12:00:00,12.8,12.8,14.527502634155749 + 08/30 12:10:00,12.8,12.8,14.515141308744696 + 08/30 12:20:00,12.8,12.8,14.49171941185383 + 08/30 12:30:00,12.8,12.8,14.476774848490705 + 08/30 12:40:00,12.8,12.8,14.460858190833588 + 08/30 12:50:00,12.8,12.8,14.44386841745361 + 08/30 13:00:00,12.8,12.8,14.425919130067943 + 08/30 13:10:00,12.8,12.8,14.407242995108807 + 08/30 13:20:00,12.8,12.8,14.391443003048812 + 08/30 13:30:00,12.8,12.8,14.371594583363537 + 08/30 13:40:00,12.8,12.8,14.352704983028398 + 08/30 13:50:00,12.8,12.8,14.337120295839553 + 08/30 14:00:00,12.8,12.8,14.325562981003382 + 08/30 14:10:00,12.8,12.8,14.317113897386845 + 08/30 14:20:00,12.8,12.8,14.3151357859761 + 08/30 14:30:00,12.8,12.8,14.312194207001389 + 08/30 14:40:00,12.8,12.8,14.309591863445466 + 08/30 14:50:00,12.8,12.8,14.3047864413713 + 08/30 15:00:00,12.8,12.8,14.297247127124143 + 08/30 15:05:00,12.8,12.8,16.44438780497482 + 08/30 15:10:00,12.8,12.8,16.440074352664966 + 08/30 15:20:00,12.8,12.8,16.686355251115307 + 08/30 15:30:00,12.8,12.8,16.778640996150324 + 08/30 15:40:00,12.8,12.8,16.846267963312799 + 08/30 15:50:00,12.8,12.8,16.89705703177567 + 08/30 16:00:00,12.8,12.8,16.939122233352223 + 08/30 16:10:00,12.8,12.8,17.002553821896226 + 08/30 16:20:00,12.8,12.8,17.056832165168005 + 08/30 16:30:00,12.8,12.8,17.088719933220778 + 08/30 16:40:00,12.8,12.8,17.11765361259105 + 08/30 16:50:00,12.8,12.8,17.143589913704618 + 08/30 17:00:00,12.8,12.8,17.166644218948837 + 08/30 17:10:00,12.8,12.8,17.20060264473474 + 08/30 17:15:00,12.8,12.8,17.226765761235204 + 08/30 17:20:00,12.8,12.8,17.226399838547537 + 08/30 17:30:00,12.8,12.8,17.244758023253028 + 08/30 17:40:00,12.8,12.8,17.262628905669979 + 08/30 17:50:00,12.8,12.8,17.279465493600378 + 08/30 18:00:00,12.8,12.8,17.295747256385746 + 08/30 18:10:00,12.8,12.8,17.31262552402365 + 08/30 18:20:00,12.8,12.8,17.329661439829207 + 08/30 18:30:00,12.8,12.8,17.347110269524415 + 08/30 18:40:00,12.8,12.8,17.364922876329336 + 08/30 18:50:00,12.8,12.8,17.382906979511476 + 08/30 19:00:00,12.8,12.8,17.400747437672139 + 08/30 19:10:00,12.8,12.8,17.431084450499449 + 08/30 19:20:00,12.8,12.8,17.44875098786427 + 08/30 19:30:00,12.8,12.8,17.465062336127248 + 08/30 19:40:00,12.8,12.8,17.480353190895433 + 08/30 19:50:00,12.8,12.8,17.494617617380187 + 08/30 20:00:00,12.8,12.8,17.508038076887229 + 08/30 20:10:00,12.8,12.8,17.498016770218844 + 08/30 20:20:00,12.8,12.8,17.513235999816396 + 08/30 20:30:00,12.8,12.8,17.52301915660331 + 08/30 20:40:00,12.8,12.8,17.531614817653585 + 08/30 20:50:00,12.8,12.8,17.539276406970637 + 08/30 21:00:00,12.8,12.8,17.54603703069492 + 08/30 21:10:00,12.8,12.8,17.552269404911376 + 08/30 21:20:00,12.8,12.8,17.55829166867877 + 08/30 21:30:00,12.8,12.8,17.564276810423018 + 08/30 21:40:00,12.8,12.8,17.570245109372008 + 08/30 21:50:00,12.8,12.8,17.576166626702205 + 08/30 22:00:00,12.8,12.8,17.582162001524404 + 08/30 22:10:00,12.8,12.8,18.944729804011144 + 08/30 22:20:00,12.8,12.8,19.09290602169471 + 08/30 22:30:00,12.8,12.8,19.158502513646 + 08/30 22:40:00,12.8,12.8,19.211850535048045 + 08/30 22:50:00,12.8,12.8,19.2551362172821 + 08/30 23:00:00,12.8,12.8,19.292016091752296 + 08/30 23:10:00,12.8,12.8,19.322233373882278 + 08/30 23:20:00,12.8,12.8,19.3496044455635 + 08/30 23:30:00,12.8,12.8,19.373227409590773 + 08/30 23:40:00,12.8,12.8,19.394831200106738 + 08/30 23:50:00,12.8,12.8,19.41454002889101 + 08/30 24:00:00,12.8,12.8,19.43257879814547 + 08/31 00:10:00,12.8,12.8,19.44938245548294 + 08/31 00:20:00,12.8,12.8,19.465199733838383 + 08/31 00:30:00,12.8,12.8,19.479115071798515 + 08/31 00:40:00,12.8,12.8,19.494332947132795 + 08/31 00:50:00,12.8,12.8,19.508055111560574 + 08/31 01:00:00,12.8,12.8,19.52192411394162 + 08/31 01:10:00,12.8,12.8,19.53514971808562 + 08/31 01:20:00,12.8,12.8,19.546511830000573 + 08/31 01:30:00,12.8,12.8,19.559168157663316 + 08/31 01:40:00,12.8,12.8,19.570170052670386 + 08/31 01:50:00,12.8,12.8,19.581201492359427 + 08/31 02:00:00,12.8,12.8,19.591517468260656 + 08/31 02:10:00,12.8,12.8,19.59977776119149 + 08/31 02:20:00,12.8,12.8,19.609476293732528 + 08/31 02:30:00,12.8,12.8,19.61740051109181 + 08/31 02:40:00,12.8,12.8,19.62534025578277 + 08/31 02:50:00,12.8,12.8,19.63235537895659 + 08/31 03:00:00,12.8,12.8,19.637391419702717 + 08/31 03:10:00,12.8,12.8,19.644545450013547 + 08/31 03:20:00,12.8,12.8,19.650390453085636 + 08/31 03:30:00,12.8,12.8,19.657108157268377 + 08/31 03:40:00,12.8,12.8,19.662277973759819 + 08/31 03:50:00,12.8,12.8,19.66941114977117 + 08/31 04:00:00,12.8,12.8,19.675468272128858 + 08/31 04:10:00,12.8,12.8,19.682237096192336 + 08/31 04:20:00,12.8,12.8,19.687259068332577 + 08/31 04:30:00,12.8,12.8,19.69382599469162 + 08/31 04:40:00,12.8,12.8,19.69909605292126 + 08/31 04:50:00,12.8,12.8,19.704556141964426 + 08/31 05:00:00,12.8,12.8,19.708287883977208 + 08/31 05:10:00,12.8,12.8,19.713492769541586 + 08/31 05:20:00,12.8,12.8,19.71736458450347 + 08/31 05:30:00,12.8,12.8,19.72081427563412 + 08/31 05:40:00,12.8,12.8,19.725551706606958 + 08/31 05:50:00,12.8,12.8,19.729543046842275 + 08/31 06:00:00,12.8,12.8,19.732847288398888 + 08/31 06:10:00,12.8,12.8,17.747493283925079 + 08/31 06:20:00,12.8,12.8,17.494402575129425 + 08/31 06:30:00,12.8,12.8,17.40791019928462 + 08/31 06:40:00,12.8,12.8,17.337953380624687 + 08/31 06:50:00,12.8,12.8,17.286142772550748 + 08/31 07:00:00,12.8,12.8,17.243531230827978 + 08/31 07:05:00,12.8,12.8,15.755049454562068 + 08/31 07:10:00,12.8,12.8,15.761573212606813 + 08/31 07:15:00,12.8,12.8,15.537001438725337 + 08/31 07:20:00,12.8,12.8,15.535266962906447 + 08/31 07:30:00,12.8,12.8,15.435845775130245 + 08/31 07:40:00,12.8,12.8,15.356709043182745 + 08/31 07:50:00,12.8,12.8,15.289874591876611 + 08/31 08:00:00,12.8,12.8,15.232752751288153 + 08/31 08:03:19,12.8,12.8,15.157537657036633 + 08/31 08:06:40,12.8,12.8,15.157117966426876 + 08/31 08:10:00,12.8,12.8,15.157085181330562 + 08/31 08:20:00,12.8,12.8,15.102947386404456 + 08/31 08:30:00,12.8,12.8,15.061589491220705 + 08/31 08:40:00,12.8,12.8,15.023397565507909 + 08/31 08:50:00,12.8,12.8,14.987477571685515 + 08/31 09:00:00,12.8,12.8,14.95333560901234 + 08/31 09:10:00,12.8,12.8,14.920270817157136 + 08/31 09:20:00,12.8,12.8,14.877768785123635 + 08/31 09:30:00,12.8,12.8,14.846579517703953 + 08/31 09:40:00,12.8,12.8,14.81686494022551 + 08/31 09:50:00,12.8,12.8,14.78914565716611 + 08/31 10:00:00,12.8,12.8,14.763662463358032 + 08/31 10:10:00,12.8,12.8,14.740293020528542 + 08/31 10:20:00,12.8,12.8,14.715267055853822 + 08/31 10:30:00,12.8,12.8,14.695244927724153 + 08/31 10:40:00,12.8,12.8,14.676570972094672 + 08/31 10:50:00,12.8,12.8,14.658517752142153 + 08/31 11:00:00,12.8,12.8,14.640889646294923 + 08/31 11:10:00,12.8,12.8,14.623628386675878 + 08/31 11:20:00,12.8,12.8,14.61639453952919 + 08/31 11:30:00,12.8,12.8,14.599910283612897 + 08/31 11:40:00,12.8,12.8,14.58372219750881 + 08/31 11:50:00,12.8,12.8,14.568073781000498 + 08/31 12:00:00,12.8,12.8,14.552878890405932 + 08/31 12:10:00,12.8,12.8,14.538371527299422 + 08/31 12:20:00,12.8,12.8,14.51481168598768 + 08/31 12:30:00,12.8,12.8,14.50137478886863 + 08/31 12:40:00,12.8,12.8,14.488696968247023 + 08/31 12:50:00,12.8,12.8,14.476574049203047 + 08/31 13:00:00,12.8,12.8,14.46506457614863 + 08/31 13:10:00,12.8,12.8,14.454334068977208 + 08/31 13:20:00,12.8,12.8,14.447579908069587 + 08/31 13:30:00,12.8,12.8,14.437731240582942 + 08/31 13:40:00,12.8,12.8,14.428421271882117 + 08/31 13:50:00,12.8,12.8,14.420097460086195 + 08/31 14:00:00,12.8,12.8,14.412952704774027 + 08/31 14:10:00,12.8,12.8,14.406549522033341 + 08/31 14:20:00,12.8,12.8,14.404424818452659 + 08/31 14:30:00,12.8,12.8,14.399558301933226 + 08/31 14:40:00,12.8,12.8,14.395039080184639 + 08/31 14:50:00,12.8,12.8,14.390819767169007 + 08/31 15:00:00,12.8,12.8,14.3868795114 + 08/31 15:10:00,12.8,12.8,16.528400183239304 + 08/31 15:15:00,12.8,12.8,16.79013516056905 + 08/31 15:20:00,12.8,12.8,16.78587222714598 + 08/31 15:30:00,12.8,12.8,16.885744817369468 + 08/31 15:40:00,12.8,12.8,16.962575546602559 + 08/31 15:50:00,12.8,12.8,17.018784138907259 + 08/31 16:00:00,12.8,12.8,17.065214469195884 + 08/31 16:10:00,12.8,12.8,17.129945837571645 + 08/31 16:20:00,12.8,12.8,17.183593901037104 + 08/31 16:30:00,12.8,12.8,17.213616526908035 + 08/31 16:40:00,12.8,12.8,17.240131463141457 + 08/31 16:50:00,12.8,12.8,17.264258847114687 + 08/31 17:00:00,12.8,12.8,17.28632329265892 + 08/31 17:10:00,12.8,12.8,17.319633200298598 + 08/31 17:20:00,12.8,12.8,17.344228735544215 + 08/31 17:30:00,12.8,12.8,17.361979145810009 + 08/31 17:40:00,12.8,12.8,17.378733478368173 + 08/31 17:50:00,12.8,12.8,17.394604899279729 + 08/31 18:00:00,12.8,12.8,17.409733567311787 + 08/31 18:10:00,12.8,12.8,17.42442117120236 + 08/31 18:20:00,12.8,12.8,17.438658086872445 + 08/31 18:30:00,12.8,12.8,17.452542615283634 + 08/31 18:40:00,12.8,12.8,17.466000648913096 + 08/31 18:50:00,12.8,12.8,17.478964285588057 + 08/31 19:00:00,12.8,12.8,17.491394353873518 + 08/31 19:10:00,12.8,12.8,17.5161148079136 + 08/31 19:20:00,12.8,12.8,17.5283524648304 + 08/31 19:30:00,12.8,12.8,17.539445577173724 + 08/31 19:40:00,12.8,12.8,17.549790800915035 + 08/31 19:50:00,12.8,12.8,17.559393865915188 + 08/31 20:00:00,12.8,12.8,17.56831959905088 + 08/31 20:10:00,12.8,12.8,17.55465322609976 + 08/31 20:20:00,12.8,12.8,17.56707167620077 + 08/31 20:30:00,12.8,12.8,17.575159187526539 + 08/31 20:40:00,12.8,12.8,17.58298466311384 + 08/31 20:50:00,12.8,12.8,17.590714970802379 + 08/31 21:00:00,12.8,12.8,17.598287736451487 + 08/31 21:10:00,12.8,12.8,17.60550718532652 + 08/31 21:20:00,12.8,12.8,17.61231170575401 + 08/31 21:30:00,12.8,12.8,17.618673422351134 + 08/31 21:40:00,12.8,12.8,17.624604455614838 + 08/31 21:50:00,12.8,12.8,17.62999183768911 + 08/31 22:00:00,12.8,12.8,17.635054934533323 + 08/31 22:10:00,12.8,12.8,18.9958959604011 + 08/31 22:20:00,12.8,12.8,19.14109007757331 + 08/31 22:30:00,12.8,12.8,19.204331600615487 + 08/31 22:40:00,12.8,12.8,19.2548680809551 + 08/31 22:50:00,12.8,12.8,19.301199249594509 + 08/31 23:00:00,12.8,12.8,19.333619461318386 + 08/31 23:10:00,12.8,12.8,19.361604414210978 + 08/31 23:20:00,12.8,12.8,19.385659159131817 + 08/31 23:30:00,12.8,12.8,19.40713333444662 + 08/31 23:40:00,12.8,12.8,19.42684866477849 + 08/31 23:50:00,12.8,12.8,19.444851811188728 + 08/31 24:00:00,12.8,12.8,19.461290156845224 + 09/01 00:10:00,12.8,12.8,19.47680716971503 + 09/01 00:20:00,12.8,12.8,19.49273906063504 + 09/01 00:30:00,12.8,12.8,19.508389127350186 + 09/01 00:40:00,12.8,12.8,19.524190669972155 + 09/01 00:50:00,12.8,12.8,19.53968541202023 + 09/01 01:00:00,12.8,12.8,19.555065038480508 + 09/01 01:10:00,12.8,12.8,19.570082573071223 + 09/01 01:20:00,12.8,12.8,19.584561455176 + 09/01 01:30:00,12.8,12.8,19.598036828792446 + 09/01 01:40:00,12.8,12.8,19.610525178284744 + 09/01 01:50:00,12.8,12.8,19.622131501186215 + 09/01 02:00:00,12.8,12.8,19.63298168269695 + 09/01 02:10:00,12.8,12.8,19.64305865628801 + 09/01 02:20:00,12.8,12.8,19.651877378644348 + 09/01 02:30:00,12.8,12.8,19.659836787580994 + 09/01 02:40:00,12.8,12.8,19.666996700487866 + 09/01 02:50:00,12.8,12.8,19.67359729901485 + 09/01 03:00:00,12.8,12.8,19.679599717077595 + 09/01 03:10:00,12.8,12.8,19.685127889812486 + 09/01 03:20:00,12.8,12.8,19.690352210601664 + 09/01 03:30:00,12.8,12.8,19.69531773805099 + 09/01 03:40:00,12.8,12.8,19.700122821103805 + 09/01 03:50:00,12.8,12.8,19.704936227277089 + 09/01 04:00:00,12.8,12.8,19.709503552191835 + 09/01 04:10:00,12.821021021021022,12.821021021021022,19.714309411793694 + 09/01 04:20:00,12.842042042042042,12.842042042042042,19.719881787928779 + 09/01 04:30:00,12.863063063063063,12.863063063063063,19.72544384409656 + 09/01 04:40:00,12.884084084084084,12.884084084084084,19.731163854536605 + 09/01 04:50:00,12.905105105105106,12.905105105105106,19.736831798037863 + 09/01 05:00:00,12.926126126126127,12.926126126126127,19.742469019867504 + 09/01 05:10:00,12.926126126126127,12.926126126126127,19.747847622527674 + 09/01 05:20:00,12.926126126126127,12.926126126126127,19.751845015742114 + 09/01 05:30:00,12.926126126126127,12.926126126126127,19.755924564153319 + 09/01 05:40:00,12.926126126126127,12.926126126126127,19.759707770912067 + 09/01 05:50:00,12.926126126126127,12.926126126126127,19.763482910988335 + 09/01 06:00:00,12.926126126126127,12.926126126126127,19.767150949959097 + 09/01 06:10:00,12.926126126126127,12.926126126126127,17.77773034158263 + 09/01 06:20:00,12.926126126126127,12.926126126126127,17.537469296933247 + 09/01 06:30:00,12.926126126126127,12.926126126126127,17.449955962622206 + 09/01 06:40:00,12.926126126126127,12.926126126126127,17.38149621239601 + 09/01 06:50:00,12.926126126126127,12.926126126126127,17.32816540386501 + 09/01 07:00:00,12.926126126126127,12.926126126126127,17.283993485468974 + 09/01 07:05:00,12.951351351351353,12.951351351351353,15.794950324163363 + 09/01 07:10:00,12.951351351351353,12.951351351351353,15.80143622755295 + 09/01 07:15:00,12.976576576576577,12.976576576576577,15.575307043243243 + 09/01 07:20:00,12.976576576576577,12.976576576576577,15.573561591298935 + 09/01 07:30:00,13.001801801801803,13.001801801801803,15.472085970441265 + 09/01 07:40:00,13.027027027027028,13.027027027027028,15.39068960927599 + 09/01 07:50:00,13.052252252252253,13.052252252252253,15.321687435225542 + 09/01 08:00:00,13.077477477477478,13.077477477477478,15.262561458459038 + 09/01 08:03:19,13.031231231231232,13.031231231231232,15.184407060807438 + 09/01 08:06:40,13.031231231231232,13.031231231231232,15.18396957236109 + 09/01 08:10:00,13.031231231231232,13.031231231231232,15.183989840882385 + 09/01 08:20:00,12.984984984984987,12.984984984984987,15.126887930450664 + 09/01 08:30:00,12.938738738738739,12.938738738738739,15.08226520891797 + 09/01 08:40:00,12.892492492492494,12.892492492492494,15.040926580338923 + 09/01 08:50:00,12.846246246246248,12.846246246246248,15.002573283588517 + 09/01 09:00:00,12.8,12.8,14.966982151464564 + 09/01 09:10:00,12.8,12.8,14.934105988439086 + 09/01 09:20:00,12.8,12.8,14.892780512035483 + 09/01 09:30:00,12.8,12.8,14.863722789731355 + 09/01 09:40:00,12.8,12.8,14.836374088952232 + 09/01 09:50:00,12.8,12.8,14.810199383767769 + 09/01 10:00:00,12.8,12.8,14.785010256310484 + 09/01 10:10:00,12.8,12.8,14.760245418515812 + 09/01 10:20:00,12.8,12.8,14.732574175944949 + 09/01 10:30:00,12.8,12.8,14.708762206579028 + 09/01 10:40:00,12.8,12.8,14.6850707258246 + 09/01 10:50:00,12.8,12.8,14.660970591661311 + 09/01 11:00:00,12.8,12.8,14.6362711753917 + 09/01 11:10:00,12.8,12.8,14.611458435364583 + 09/01 11:20:00,12.8,12.8,14.596424006408637 + 09/01 11:30:00,12.8,12.8,14.572185786842159 + 09/01 11:40:00,12.8,12.8,14.549243845289802 + 09/01 11:50:00,12.8,12.8,14.52918412320963 + 09/01 12:00:00,12.8,12.8,14.512338094314418 + 09/01 12:10:00,12.8,12.8,14.498310094333478 + 09/01 12:20:00,12.8,12.8,14.476679028031777 + 09/01 12:30:00,12.8,12.8,14.466107630565786 + 09/01 12:40:00,12.8,12.8,14.456898917561214 + 09/01 12:50:00,12.8,12.8,14.448558458672386 + 09/01 13:00:00,12.8,12.8,14.44099290616857 + 09/01 13:10:00,12.8,12.8,14.434059684979399 + 09/01 13:20:00,12.8,12.8,14.431109599980737 + 09/01 13:30:00,12.8,12.8,14.425052392599378 + 09/01 13:40:00,12.8,12.8,14.418752066189665 + 09/01 13:50:00,12.8,12.8,14.41142907055831 + 09/01 14:00:00,12.8,12.8,14.402857256105018 + 09/01 14:10:00,12.8,12.8,14.393182507293633 + 09/01 14:20:00,12.8,12.8,14.386399438935222 + 09/01 14:30:00,12.8,12.8,14.375690528795408 + 09/01 14:40:00,12.8,12.8,14.365328033941259 + 09/01 14:50:00,12.8,12.8,14.356561983315716 + 09/01 15:00:00,12.8,12.8,14.349328297421089 + 09/01 15:05:00,12.8,12.8,16.4987926613585 + 09/01 15:10:00,12.8,12.8,16.495206598006324 + 09/01 15:20:00,12.8,12.8,16.74766203942766 + 09/01 15:30:00,12.8,12.8,16.848831917666425 + 09/01 15:40:00,12.8,12.8,16.92375063973281 + 09/01 15:50:00,12.8,12.8,16.984826791308515 + 09/01 16:00:00,12.8,12.8,17.03636688421716 + 09/01 16:10:00,12.8,12.8,17.106477006178897 + 09/01 16:20:00,12.8,12.8,17.165235895536037 + 09/01 16:30:00,12.8,12.8,17.200088627132215 + 09/01 16:40:00,12.8,12.8,17.229746689543594 + 09/01 16:50:00,12.8,12.8,17.257096062539977 + 09/01 17:00:00,12.8,12.8,17.281627591910835 + 09/01 17:10:00,12.8,12.8,17.317164783043674 + 09/01 17:20:00,12.8,12.8,17.343872949126 + 09/01 17:30:00,12.8,12.8,17.363271788725187 + 09/01 17:40:00,12.8,12.8,17.381373350555817 + 09/01 17:50:00,12.8,12.8,17.397919754584036 + 09/01 18:00:00,12.8,12.8,17.413218695831714 + 09/01 18:10:00,12.8,12.8,17.42752929027386 + 09/01 18:20:00,12.8,12.8,17.441013851741447 + 09/01 18:30:00,12.8,12.8,17.45385931222455 + 09/01 18:40:00,12.8,12.8,17.46616454008442 + 09/01 18:50:00,12.8,12.8,17.477937614549114 + 09/01 19:00:00,12.8,12.8,17.489265985580958 + 09/01 19:10:00,12.8,12.8,17.5132113708615 + 09/01 19:20:00,12.8,12.8,17.524744571388298 + 09/01 19:30:00,12.8,12.8,17.535369326511444 + 09/01 19:40:00,12.8,12.8,17.545447728311737 + 09/01 19:50:00,12.8,12.8,17.554919083983998 + 09/01 20:00:00,12.8,12.8,17.56388536654105 + 09/01 20:10:00,12.8,12.8,17.54998717240401 + 09/01 20:20:00,12.8,12.8,17.562057423346258 + 09/01 20:30:00,12.8,12.8,17.569584205313129 + 09/01 20:40:00,12.8,12.8,17.576640456052954 + 09/01 20:50:00,12.8,12.8,17.583402308997124 + 09/01 21:00:00,12.8,12.8,17.58983199063064 + 09/01 21:10:00,12.8,12.8,17.596053581656208 + 09/01 21:20:00,12.8,12.8,17.602061816518078 + 09/01 21:30:00,12.8,12.8,17.60792256099982 + 09/01 21:40:00,12.8,12.8,17.613606136645719 + 09/01 21:50:00,12.8,12.8,17.619094289938358 + 09/01 22:00:00,12.8,12.8,17.6245238360883 + 09/01 22:10:00,12.8,12.8,18.986074578948949 + 09/01 22:20:00,12.8,12.8,19.131666612168794 + 09/01 22:30:00,12.8,12.8,19.19547408160929 + 09/01 22:40:00,12.8,12.8,19.25034504345478 + 09/01 22:50:00,12.8,12.8,19.2878180388854 + 09/01 23:00:00,12.8,12.8,19.320339742392709 + 09/01 23:10:00,12.888288288288289,12.888288288288289,19.347321489186059 + 09/01 23:20:00,12.976576576576577,12.976576576576577,19.37526237859214 + 09/01 23:30:00,13.064864864864866,13.064864864864866,19.40033920415366 + 09/01 23:40:00,13.153153153153154,13.153153153153154,19.423768490055964 + 09/01 23:50:00,13.241441441441442,13.241441441441442,19.445321068753854 + 09/01 24:00:00,13.329729729729732,13.329729729729732,19.46540329257314 + 09/02 00:10:00,13.287687687687689,13.287687687687689,19.483358596408466 + 09/02 00:20:00,13.245645645645645,13.245645645645645,19.500208148263999 + 09/02 00:30:00,13.203603603603604,13.203603603603604,19.515851735546737 + 09/02 00:40:00,13.161561561561563,13.161561561561563,19.530494450694336 + 09/02 00:50:00,13.11951951951952,13.11951951951952,19.54417440718248 + 09/02 01:00:00,13.077477477477478,13.077477477477478,19.557010399017764 + 09/02 01:10:00,13.077477477477478,13.077477477477478,19.56947970779152 + 09/02 01:20:00,13.077477477477478,13.077477477477478,19.580398516153865 + 09/02 01:30:00,13.077477477477478,13.077477477477478,19.59098919320661 + 09/02 01:40:00,13.077477477477478,13.077477477477478,19.601010687119449 + 09/02 01:50:00,13.077477477477478,13.077477477477478,19.610700882384955 + 09/02 02:00:00,13.077477477477478,13.077477477477478,19.620044560811527 + 09/02 02:10:00,13.077477477477478,13.077477477477478,19.628794049872057 + 09/02 02:20:00,13.077477477477478,13.077477477477478,19.636708605655245 + 09/02 02:30:00,13.077477477477478,13.077477477477478,19.644394152194207 + 09/02 02:40:00,13.077477477477478,13.077477477477478,19.651716939495406 + 09/02 02:50:00,13.077477477477478,13.077477477477478,19.658823703927248 + 09/02 03:00:00,13.077477477477478,13.077477477477478,19.665615612471588 + 09/02 03:10:00,13.052252252252253,13.052252252252253,19.672502504638854 + 09/02 03:20:00,13.027027027027028,13.027027027027028,19.67972904395637 + 09/02 03:30:00,13.001801801801803,13.001801801801803,19.686572052758195 + 09/02 03:40:00,12.976576576576577,12.976576576576577,19.693199223467916 + 09/02 03:50:00,12.951351351351353,12.951351351351353,19.699426781335668 + 09/02 04:00:00,12.926126126126127,12.926126126126127,19.705387500999295 + 09/02 04:10:00,12.951351351351353,12.951351351351353,19.711238588073674 + 09/02 04:20:00,12.976576576576577,12.976576576576577,19.71760093272045 + 09/02 04:30:00,13.001801801801803,13.001801801801803,19.723821096591214 + 09/02 04:40:00,13.027027027027028,13.027027027027028,19.730023673294498 + 09/02 04:50:00,13.052252252252253,13.052252252252253,19.736093091970507 + 09/02 05:00:00,13.077477477477478,13.077477477477478,19.74213271805644 + 09/02 05:10:00,13.052252252252253,13.052252252252253,19.74782192130737 + 09/02 05:20:00,13.027027027027028,13.027027027027028,19.753404452406657 + 09/02 05:30:00,13.001801801801803,13.001801801801803,19.758729326974036 + 09/02 05:40:00,12.976576576576577,12.976576576576577,19.763769464692275 + 09/02 05:50:00,12.951351351351353,12.951351351351353,19.76867134882353 + 09/02 06:00:00,12.926126126126127,12.926126126126127,19.773368367055917 + 09/02 06:10:00,12.926126126126127,12.926126126126127,19.12117791487614 + 09/02 06:20:00,12.926126126126127,12.926126126126127,19.049560130017363 + 09/02 06:30:00,12.926126126126127,12.926126126126127,19.023401384725767 + 09/02 06:40:00,12.926126126126127,12.926126126126127,19.002463293440394 + 09/02 06:50:00,12.926126126126127,12.926126126126127,18.986866083761343 + 09/02 07:00:00,12.926126126126127,12.926126126126127,18.973946775166327 + 09/02 07:10:00,12.905105105105106,12.905105105105106,17.894935709419607 + 09/02 07:20:00,12.884084084084084,12.884084084084084,17.738979704317253 + 09/02 07:30:00,12.863063063063063,12.863063063063063,17.677130026103798 + 09/02 07:40:00,12.842042042042042,12.842042042042042,17.62666781209636 + 09/02 07:50:00,12.821021021021022,12.821021021021022,17.587105633139154 + 09/02 08:00:00,12.8,12.8,17.553493675056207 + 09/02 08:10:00,12.821021021021022,12.821021021021022,17.524091126174189 + 09/02 08:20:00,12.842042042042042,12.842042042042042,17.48936771794185 + 09/02 08:30:00,12.863063063063063,12.863063063063063,17.466033662569509 + 09/02 08:40:00,12.884084084084084,12.884084084084084,17.444969586464937 + 09/02 08:50:00,12.905105105105106,12.905105105105106,17.42562011848084 + 09/02 08:55:00,12.926126126126127,12.926126126126127,17.408179171625535 + 09/02 09:00:00,12.926126126126127,12.926126126126127,17.40803597845362 + 09/02 09:10:00,12.905105105105106,12.905105105105106,17.390938933255563 + 09/02 09:15:00,12.884084084084084,12.884084084084084,17.366665252008347 + 09/02 09:20:00,12.884084084084084,12.884084084084084,17.366631112991866 + 09/02 09:30:00,12.863063063063063,12.863063063063063,17.351125381410328 + 09/02 09:35:00,12.842042042042042,12.842042042042042,17.337196652178699 + 09/02 09:40:00,12.842042042042042,12.842042042042042,17.33717017347928 + 09/02 09:50:00,12.821021021021022,12.821021021021022,17.323234945024557 + 09/02 10:00:00,12.8,12.8,17.31063359362351 + 09/02 10:10:00,12.8,12.8,17.298723231498867 + 09/02 10:20:00,12.8,12.8,17.287632846007086 + 09/02 10:30:00,12.8,12.8,17.277106348196438 + 09/02 10:40:00,12.8,12.8,17.26702541873296 + 09/02 10:50:00,12.8,12.8,17.25732973584714 + 09/02 10:55:00,12.8,12.8,17.248604513660376 + 09/02 11:00:00,12.8,12.8,17.24832474974843 + 09/02 11:10:00,12.8,12.8,17.23867901232475 + 09/02 11:20:00,12.8,12.8,17.229733943062283 + 09/02 11:30:00,12.8,12.8,17.220821553821378 + 09/02 11:35:00,12.8,12.8,17.212825150557256 + 09/02 11:40:00,12.8,12.8,17.21260419747933 + 09/02 11:50:00,12.8,12.8,17.20389220476419 + 09/02 11:55:00,12.8,12.8,17.19643357047317 + 09/02 12:00:00,12.8,12.8,17.196321293785645 + 09/02 12:10:00,12.8,12.8,17.188134968098784 + 09/02 12:20:00,12.8,12.8,17.180720917173887 + 09/02 12:30:00,12.8,12.8,17.173380380297908 + 09/02 12:40:00,12.8,12.8,17.16635244549805 + 09/02 12:50:00,12.8,12.8,17.15963017760955 + 09/02 13:00:00,12.8,12.8,17.153189718173249 + 09/02 13:10:00,12.8,12.8,17.14724863815802 + 09/02 13:20:00,12.8,12.8,17.14168967798039 + 09/02 13:30:00,12.8,12.8,17.136497477614449 + 09/02 13:40:00,12.8,12.8,17.131653418478409 + 09/02 13:50:00,12.8,12.8,17.12717493639642 + 09/02 14:00:00,12.8,12.8,17.123032632049534 + 09/02 14:10:00,12.8,12.8,17.119021923731667 + 09/02 14:20:00,12.8,12.8,17.115246328313128 + 09/02 14:30:00,12.8,12.8,17.111584360908286 + 09/02 14:40:00,12.8,12.8,17.108028358060737 + 09/02 14:50:00,12.8,12.8,17.104656126119047 + 09/02 15:00:00,12.8,12.8,17.10148169485226 + 09/02 15:10:00,12.8,12.8,17.09858156182307 + 09/02 15:20:00,12.8,12.8,17.095933100460888 + 09/02 15:30:00,12.8,12.8,17.093506392882654 + 09/02 15:40:00,12.8,12.8,17.091319895273548 + 09/02 15:50:00,12.8,12.8,17.089398056492408 + 09/02 16:00:00,12.8,12.8,17.087744789505604 + 09/02 16:10:00,12.8,12.8,17.09931685336376 + 09/02 16:20:00,12.8,12.8,17.10778183986649 + 09/02 16:30:00,12.8,12.8,17.107353334771479 + 09/02 16:40:00,12.8,12.8,17.10706904407211 + 09/02 16:50:00,12.8,12.8,17.106974303184417 + 09/02 17:00:00,12.8,12.8,17.107063148150634 + 09/02 17:05:00,12.8,12.8,18.865780595715049 + 09/02 17:10:00,12.8,12.8,18.86348583469893 + 09/02 17:20:00,12.8,12.8,19.07503049622248 + 09/02 17:30:00,12.8,12.8,19.158737719709487 + 09/02 17:40:00,12.8,12.8,19.22287614989678 + 09/02 17:50:00,12.8,12.8,19.274507896276348 + 09/02 18:00:00,12.8,12.8,19.316976269998344 + 09/02 18:10:00,12.8,12.8,19.364674623312003 + 09/02 18:20:00,12.8,12.8,19.395744245006747 + 09/02 18:30:00,12.8,12.8,19.422524859683248 + 09/02 18:40:00,12.8,12.8,19.446773413112667 + 09/02 18:50:00,12.8,12.8,19.468853296989058 + 09/02 19:00:00,12.8,12.8,19.48909700559846 + 09/02 19:10:00,12.8,12.8,19.508009991422889 + 09/02 19:20:00,12.8,12.8,19.525502453212128 + 09/02 19:30:00,12.8,12.8,19.541631977773819 + 09/02 19:40:00,12.8,12.8,19.556523369418597 + 09/02 19:50:00,12.8,12.8,19.570251063228914 + 09/02 20:00:00,12.8,12.8,19.583046529054835 + 09/02 20:10:00,12.8,12.8,19.572966083518528 + 09/02 20:20:00,12.8,12.8,19.58428885800961 + 09/02 20:30:00,12.8,12.8,19.595209358036038 + 09/02 20:40:00,12.8,12.8,19.605555672318375 + 09/02 20:50:00,12.8,12.8,19.61548079784216 + 09/02 21:00:00,12.8,12.8,19.625062115776438 + 09/02 21:10:00,12.8,12.8,19.634054064606745 + 09/02 21:20:00,12.8,12.8,19.64263865893475 + 09/02 21:30:00,12.8,12.8,19.65080539348854 + 09/02 21:40:00,12.8,12.8,19.658538257003799 + 09/02 21:50:00,12.8,12.8,19.666007102282529 + 09/02 22:00:00,12.8,12.8,19.673158467781144 + 09/02 22:10:00,12.8,12.8,19.679910410094935 + 09/02 22:20:00,12.8,12.8,19.686432439022583 + 09/02 22:30:00,12.8,12.8,19.69266383188041 + 09/02 22:40:00,12.8,12.8,19.698813698569145 + 09/02 22:50:00,12.8,12.8,19.704800594809869 + 09/02 23:00:00,12.8,12.8,19.710626621483465 + 09/02 23:10:00,12.8,12.8,19.716477074807327 + 09/02 23:20:00,12.8,12.8,19.72237441626565 + 09/02 23:30:00,12.8,12.8,19.727954993568905 + 09/02 23:40:00,12.8,12.8,19.733477390274325 + 09/02 23:50:00,12.8,12.8,19.73876636137672 + 09/02 24:00:00,12.8,12.8,19.74388187968939 + 09/03 00:10:00,12.8,12.8,19.747364917418197 + 09/03 00:20:00,12.8,12.8,19.752834493585305 + 09/03 00:30:00,12.8,12.8,19.757020307684706 + 09/03 00:40:00,12.8,12.8,19.761789157508376 + 09/03 00:50:00,12.8,12.8,19.764899497684178 + 09/03 01:00:00,12.8,12.8,19.769850882760787 + 09/03 01:10:00,12.8,12.8,19.77377843929191 + 09/03 01:20:00,12.8,12.8,19.778238648258296 + 09/03 01:30:00,12.8,12.8,19.78230108502303 + 09/03 01:40:00,12.8,12.8,19.784743727909424 + 09/03 01:50:00,12.8,12.8,19.789155229046349 + 09/03 02:00:00,12.8,12.8,19.79211945750483 + 09/03 02:10:00,12.8,12.8,19.795486818203906 + 09/03 02:20:00,12.8,12.8,19.797311482046987 + 09/03 02:30:00,12.8,12.8,19.801055240697737 + 09/03 02:40:00,12.8,12.8,19.80371091966956 + 09/03 02:50:00,12.8,12.8,19.806893050837915 + 09/03 03:00:00,12.8,12.8,19.808505350099585 + 09/03 03:10:00,12.8,12.8,19.812461659433457 + 09/03 03:20:00,12.8,12.8,19.81515664479332 + 09/03 03:30:00,12.8,12.8,19.818467849659905 + 09/03 03:40:00,12.8,12.8,19.820039458086275 + 09/03 03:50:00,12.8,12.8,19.823632651331939 + 09/03 04:00:00,12.8,12.8,19.82602751293821 + 09/03 04:10:00,12.8,12.8,19.82887031040361 + 09/03 04:20:00,12.8,12.8,19.830079019959997 + 09/03 04:30:00,12.8,12.8,19.833240695206905 + 09/03 04:40:00,12.8,12.8,19.835171829628587 + 09/03 04:50:00,12.8,12.8,19.837777072384385 + 09/03 05:00:00,12.8,12.8,19.83876244375315 + 09/03 05:10:00,12.8,12.8,19.84179688535472 + 09/03 05:20:00,12.8,12.8,19.84361897010331 + 09/03 05:30:00,12.8,12.8,19.84598099988161 + 09/03 05:40:00,12.8,12.8,19.846767904931029 + 09/03 05:50:00,12.8,12.8,19.849629296270476 + 09/03 06:00:00,12.8,12.8,19.851256257620017 + 09/03 06:10:00,12.8,12.8,19.87582649900869 + 09/03 06:20:00,12.8,12.8,19.876491537281337 + 09/03 06:30:00,12.8,12.8,19.878169708086927 + 09/03 06:40:00,12.8,12.8,19.879360446795518 + 09/03 06:50:00,12.8,12.8,19.88052308105025 + 09/03 07:00:00,12.8,12.8,19.88138029683016 + 09/03 07:10:00,12.8,12.8,18.492941357523216 + 09/03 07:20:00,12.8,12.8,18.315931810391836 + 09/03 07:30:00,12.8,12.8,18.251035936107337 + 09/03 07:40:00,12.8,12.8,18.19829930525679 + 09/03 07:50:00,12.8,12.8,18.15793715860425 + 09/03 08:00:00,12.8,12.8,18.12448380588142 + 09/03 08:10:00,12.8,12.8,18.095221783189925 + 09/03 08:20:00,12.8,12.8,18.060542220354948 + 09/03 08:30:00,12.8,12.8,18.03722014050503 + 09/03 08:40:00,12.8,12.8,18.016083821872525 + 09/03 08:50:00,12.8,12.8,17.99645769546285 + 09/03 09:00:00,12.8,12.8,17.977865390190435 + 09/03 09:10:00,12.8,12.8,17.96034951036082 + 09/03 09:20:00,12.8,12.8,17.93491416689446 + 09/03 09:30:00,12.8,12.8,17.91865284511722 + 09/03 09:40:00,12.8,12.8,17.903011335344638 + 09/03 09:50:00,12.8,12.8,17.88774716748948 + 09/03 10:00:00,12.8,12.8,17.872786153999156 + 09/03 10:10:00,12.8,12.8,17.85817452539137 + 09/03 10:20:00,12.8,12.8,17.844049362611579 + 09/03 10:30:00,12.8,12.8,17.830362485841176 + 09/03 10:40:00,12.8,12.8,17.817103676252598 + 09/03 10:50:00,12.8,12.8,17.804575205232486 + 09/03 11:00:00,12.8,12.8,17.792736606616658 + 09/03 11:10:00,12.8,12.8,17.781351969384479 + 09/03 11:20:00,12.8,12.8,17.770305940502128 + 09/03 11:30:00,12.8,12.8,17.75954936890656 + 09/03 11:40:00,12.8,12.8,17.748176028772904 + 09/03 11:50:00,12.8,12.8,17.734740443281305 + 09/03 12:00:00,12.8,12.8,17.719040647508309 + 09/03 12:10:00,12.8,12.8,17.701159476137876 + 09/03 12:20:00,12.8,12.8,17.681911864499399 + 09/03 12:30:00,12.8,12.8,17.661863765727376 + 09/03 12:40:00,12.8,12.8,17.643079024955776 + 09/03 12:50:00,12.8,12.8,17.628339724906519 + 09/03 13:00:00,12.8,12.8,17.618444853373299 + 09/03 13:10:00,12.8,12.8,17.613420964057498 + 09/03 13:20:00,12.8,12.8,17.611451380269359 + 09/03 13:30:00,12.8,12.8,17.61162970565406 + 09/03 13:40:00,12.8,12.8,17.61227797231356 + 09/03 13:50:00,12.8,12.8,17.610986163601923 + 09/03 14:00:00,12.8,12.8,17.606764548183457 + 09/03 14:10:00,12.8,12.8,17.59964287726269 + 09/03 14:20:00,12.8,12.8,17.590741820091759 + 09/03 14:30:00,12.8,12.8,17.58052139561458 + 09/03 14:40:00,12.8,12.8,17.569445417406447 + 09/03 14:50:00,12.8,12.8,17.558350381220998 + 09/03 15:00:00,12.8,12.8,17.547554253512226 + 09/03 15:10:00,12.8,12.8,18.95469299774198 + 09/03 15:20:00,12.8,12.8,19.101647615922233 + 09/03 15:30:00,12.8,12.8,19.15895363255904 + 09/03 15:40:00,12.8,12.8,19.204784175019318 + 09/03 15:50:00,12.8,12.8,19.242259905368614 + 09/03 16:00:00,12.8,12.8,19.274046812248078 + 09/03 16:10:00,12.8,12.8,19.304308734679134 + 09/03 16:20:00,12.8,12.8,19.34085929805201 + 09/03 16:30:00,12.8,12.8,19.367097649464218 + 09/03 16:40:00,12.8,12.8,19.391189584719549 + 09/03 16:50:00,12.8,12.8,19.412552460080499 + 09/03 17:00:00,12.8,12.8,19.430945737108226 + 09/03 17:10:00,12.8,12.8,19.445662119562159 + 09/03 17:20:00,12.8,12.8,19.476803687700344 + 09/03 17:30:00,12.8,12.8,19.4901339070097 + 09/03 17:40:00,12.8,12.8,19.502940914169348 + 09/03 17:50:00,12.8,12.8,19.51561294178648 + 09/03 18:00:00,12.8,12.8,19.528169218822375 + 09/03 18:10:00,12.8,12.8,19.541021591254919 + 09/03 18:20:00,12.8,12.8,19.553907498362407 + 09/03 18:30:00,12.8,12.8,19.566902590504406 + 09/03 18:40:00,12.8,12.8,19.579885729925715 + 09/03 18:50:00,12.8,12.8,19.592854589142854 + 09/03 19:00:00,12.8,12.8,19.60646454233114 + 09/03 19:10:00,12.8,12.8,19.619773223839038 + 09/03 19:20:00,12.8,12.8,19.632986956151894 + 09/03 19:30:00,12.8,12.8,19.645422427326804 + 09/03 19:40:00,12.8,12.8,19.655072702310578 + 09/03 19:50:00,12.8,12.8,19.666004838596387 + 09/03 20:00:00,12.8,12.8,19.675954906849559 + 09/03 20:10:00,12.8,12.8,19.663233369338465 + 09/03 20:20:00,12.8,12.8,19.67369617246367 + 09/03 20:30:00,12.8,12.8,19.683271358266244 + 09/03 20:40:00,12.8,12.8,19.692582739133827 + 09/03 20:50:00,12.8,12.8,19.701282615355898 + 09/03 21:00:00,12.8,12.8,19.709498739990957 + 09/03 21:10:00,12.8,12.8,19.71716525954256 + 09/03 21:20:00,12.8,12.8,19.72402468348869 + 09/03 21:30:00,12.8,12.8,19.7285778563376 + 09/03 21:40:00,12.8,12.8,19.733605817147834 + 09/03 21:50:00,12.8,12.8,19.737647265413338 + 09/03 22:00:00,12.8,12.8,19.741340001174284 + 09/03 22:10:00,12.8,12.8,19.745595668331135 + 09/03 22:20:00,12.8,12.8,19.74861944057572 + 09/03 22:30:00,12.8,12.8,19.7534392490873 + 09/03 22:40:00,12.8,12.8,19.756223865141999 + 09/03 22:50:00,12.8,12.8,19.759951254529619 + 09/03 23:00:00,12.8,12.8,19.763684065797908 + 09/03 23:10:00,12.8,12.8,19.76768383763524 + 09/03 23:20:00,12.8,12.8,19.77354293932937 + 09/03 23:30:00,12.8,12.8,19.779279463050135 + 09/03 23:40:00,12.8,12.8,19.785258141629286 + 09/03 23:50:00,12.8,12.8,19.791090304944598 + 09/03 24:00:00,12.8,12.8,19.796828421863475 + 09/04 00:10:00,12.8,12.8,19.80240084611229 + 09/04 00:20:00,12.8,12.8,19.808568201420809 + 09/04 00:30:00,12.8,12.8,19.814418168844474 + 09/04 00:40:00,12.8,12.8,19.820161413678325 + 09/04 00:50:00,12.8,12.8,19.82559952027711 + 09/04 01:00:00,12.8,12.8,19.83107880340431 + 09/04 01:10:00,12.821021021021022,12.821021021021022,19.83689703068091 + 09/04 01:20:00,12.842042042042042,12.842042042042042,19.841808438460533 + 09/04 01:30:00,12.863063063063063,12.863063063063063,19.846333588648933 + 09/04 01:40:00,12.884084084084084,12.884084084084084,19.850341659593178 + 09/04 01:50:00,12.905105105105106,12.905105105105106,19.8541801333686 + 09/04 02:00:00,12.926126126126127,12.926126126126127,19.857840466474174 + 09/04 02:10:00,12.926126126126127,12.926126126126127,19.860862597915387 + 09/04 02:20:00,12.926126126126127,12.926126126126127,19.86362479964208 + 09/04 02:30:00,12.926126126126127,12.926126126126127,19.866145486415545 + 09/04 02:40:00,12.926126126126127,12.926126126126127,19.868509034019629 + 09/04 02:50:00,12.926126126126127,12.926126126126127,19.87076134408825 + 09/04 03:00:00,12.926126126126127,12.926126126126127,19.872872778945575 + 09/04 03:10:00,12.951351351351353,12.951351351351353,19.874993632752394 + 09/04 03:20:00,12.976576576576577,12.976576576576577,19.876733192935164 + 09/04 03:30:00,13.001801801801803,13.001801801801803,19.87812228979336 + 09/04 03:40:00,13.027027027027028,13.027027027027028,19.879237112359907 + 09/04 03:50:00,13.052252252252253,13.052252252252253,19.880050095713288 + 09/04 04:00:00,13.077477477477478,13.077477477477478,19.880588177926634 + 09/04 04:10:00,13.077477477477478,13.077477477477478,19.881041270132397 + 09/04 04:20:00,13.077477477477478,13.077477477477478,19.88194475185415 + 09/04 04:30:00,13.077477477477478,13.077477477477478,19.88360585394186 + 09/04 04:40:00,13.077477477477478,13.077477477477478,19.88596399426429 + 09/04 04:50:00,13.077477477477478,13.077477477477478,19.888968915391954 + 09/04 05:00:00,13.077477477477478,13.077477477477478,19.892499411016986 + 09/04 05:10:00,13.077477477477478,13.077477477477478,19.89565706698479 + 09/04 05:20:00,13.077477477477478,13.077477477477478,19.899396571680538 + 09/04 05:30:00,13.077477477477478,13.077477477477478,19.9028251400491 + 09/04 05:40:00,13.077477477477478,13.077477477477478,19.906058146802005 + 09/04 05:50:00,13.077477477477478,13.077477477477478,19.90900877780092 + 09/04 06:00:00,13.077477477477478,13.077477477477478,19.911766763490069 + 09/04 06:10:00,13.031231231231232,13.031231231231232,19.93720619882363 + 09/04 06:20:00,12.984984984984987,12.984984984984987,19.93965790601779 + 09/04 06:30:00,12.938738738738739,12.938738738738739,19.94142751988394 + 09/04 06:40:00,12.892492492492494,12.892492492492494,19.941845864311625 + 09/04 06:50:00,12.846246246246248,12.846246246246248,19.941221894505916 + 09/04 07:00:00,12.8,12.8,19.939805576168877 + 09/04 07:10:00,12.8,12.8,18.549935479532516 + 09/04 07:20:00,12.8,12.8,18.371229191870513 + 09/04 07:30:00,12.8,12.8,18.299712266716079 + 09/04 07:40:00,12.8,12.8,18.239317415681229 + 09/04 07:50:00,12.8,12.8,18.18998647568319 + 09/04 08:00:00,12.8,12.8,18.146767534068798 + 09/04 08:10:00,12.8,12.8,18.10750145421844 + 09/04 08:20:00,12.8,12.8,18.06319085203817 + 09/04 08:30:00,12.8,12.8,18.03046901060704 + 09/04 08:40:00,12.8,12.8,18.00008659333073 + 09/04 08:50:00,12.8,12.8,17.97128286984275 + 09/04 09:00:00,12.8,12.8,17.943710158223167 + 09/04 09:10:00,12.8,12.8,17.916999857764556 + 09/04 09:20:00,12.8,12.8,17.882212501820118 + 09/04 09:30:00,12.8,12.8,17.85674264966115 + 09/04 09:40:00,12.8,12.8,17.832555499980559 + 09/04 09:50:00,12.8,12.8,17.810573226877648 + 09/04 10:00:00,12.8,12.8,17.791298215220857 + 09/04 10:10:00,12.8,12.8,17.774703121435946 + 09/04 10:20:00,12.8,12.8,17.760334174586885 + 09/04 10:30:00,12.8,12.8,17.74780225484984 + 09/04 10:40:00,12.8,12.8,17.73651870152294 + 09/04 10:50:00,12.8,12.8,17.725331121283195 + 09/04 11:00:00,12.8,12.8,17.713751248852938 + 09/04 11:10:00,12.8,12.8,17.70198625640745 + 09/04 11:20:00,12.8,12.8,17.690452538857529 + 09/04 11:30:00,12.8,12.8,17.679268200727824 + 09/04 11:40:00,12.8,12.8,17.669073812841217 + 09/04 11:50:00,12.8,12.8,17.66101714973131 + 09/04 12:00:00,12.8,12.8,17.655221194571454 + 09/04 12:10:00,12.8,12.8,17.651608079286743 + 09/04 12:20:00,12.8,12.8,17.649542689721167 + 09/04 12:30:00,12.8,12.8,17.648668376806407 + 09/04 12:40:00,12.8,12.8,17.647823279621208 + 09/04 12:50:00,12.8,12.8,17.645341939180115 + 09/04 13:00:00,12.8,12.8,17.640425745095404 + 09/04 13:10:00,12.8,12.8,17.649732004758464 + 09/04 13:20:00,12.8,12.8,17.676526339899277 + 09/04 13:30:00,12.8,12.8,17.697727447024606 + 09/04 13:40:00,12.8,12.8,17.708598686019934 + 09/04 13:50:00,12.8,12.8,17.71336426597757 + 09/04 14:00:00,12.8,12.8,17.715147800316257 + 09/04 14:10:00,12.8,12.8,17.71549581919615 + 09/04 14:20:00,12.8,12.8,17.715269765471925 + 09/04 14:30:00,12.8,12.8,17.71469020742586 + 09/04 14:40:00,12.8,12.8,17.71412318835249 + 09/04 14:50:00,12.8,12.8,17.71356047540702 + 09/04 15:00:00,12.8,12.8,17.704032730171947 + 09/04 15:10:00,12.8,12.8,19.094569471184067 + 09/04 15:20:00,12.8,12.8,19.221606946249929 + 09/04 15:30:00,12.8,12.8,19.262149171919888 + 09/04 15:40:00,12.8,12.8,19.29410672213597 + 09/04 15:50:00,12.8,12.8,19.320117202687596 + 09/04 16:00:00,12.8,12.8,19.34181616610093 + 09/04 16:10:00,12.8,12.8,19.362367279614906 + 09/04 16:20:00,12.8,12.8,19.39002582323658 + 09/04 16:30:00,12.8,12.8,19.40811041972635 + 09/04 16:40:00,12.8,12.8,19.42534197766018 + 09/04 16:50:00,12.8,12.8,19.44218140162129 + 09/04 17:00:00,12.8,12.8,19.45856842621418 + 09/04 17:10:00,12.8,12.8,19.474473531667536 + 09/04 17:20:00,12.8,12.8,19.50737215654424 + 09/04 17:30:00,12.8,12.8,19.52250336424501 + 09/04 17:40:00,12.8,12.8,19.53692847504219 + 09/04 17:50:00,12.8,12.8,19.551104180898947 + 09/04 18:00:00,12.8,12.8,19.564775499532915 + 09/04 18:10:00,12.8,12.8,19.57903514773638 + 09/04 18:20:00,12.8,12.8,19.59127911407256 + 09/04 18:30:00,12.8,12.8,19.60459238271479 + 09/04 18:40:00,12.8,12.8,19.618331678243899 + 09/04 18:50:00,12.8,12.8,19.63022497391215 + 09/04 19:00:00,12.8,12.8,19.644110520048387 + 09/04 19:10:00,12.8,12.8,19.654832530919899 + 09/04 19:20:00,12.8,12.8,19.666313781971497 + 09/04 19:30:00,12.8,12.8,19.677220993447194 + 09/04 19:40:00,12.8,12.8,19.685690788418616 + 09/04 19:50:00,12.8,12.8,19.69429846334985 + 09/04 20:00:00,12.8,12.8,19.702551378235805 + 09/04 20:10:00,12.8,12.8,19.68636962201337 + 09/04 20:20:00,12.8,12.8,19.692764179788378 + 09/04 20:30:00,12.8,12.8,19.699227555405295 + 09/04 20:40:00,12.8,12.8,19.70318880095223 + 09/04 20:50:00,12.8,12.8,19.70802371009034 + 09/04 21:00:00,12.8,12.8,19.711855042598058 + 09/04 21:10:00,12.8,12.8,19.715879192909527 + 09/04 21:20:00,12.8,12.8,19.720078888996363 + 09/04 21:30:00,12.8,12.8,19.72461632948182 + 09/04 21:40:00,12.8,12.8,19.729529430991837 + 09/04 21:50:00,12.8,12.8,19.734738448412839 + 09/04 22:00:00,12.8,12.8,19.740253447406638 + 09/04 22:10:00,12.8,12.8,19.745834804443516 + 09/04 22:20:00,12.8,12.8,19.751063090200604 + 09/04 22:30:00,12.8,12.8,19.75582212469118 + 09/04 22:40:00,12.8,12.8,19.76006278443551 + 09/04 22:50:00,12.8,12.8,19.76379464977846 + 09/04 23:00:00,12.8,12.8,19.76717016962313 + 09/04 23:10:00,12.8,12.8,19.7701716538017 + 09/04 23:20:00,12.8,12.8,19.77336906787541 + 09/04 23:30:00,12.8,12.8,19.776340167507724 + 09/04 23:40:00,12.8,12.8,19.77933614238298 + 09/04 23:50:00,12.8,12.8,19.782375105761049 + 09/04 24:00:00,12.8,12.8,19.78541316165574 + 09/05 00:10:00,12.8,12.8,19.787063080911016 + 09/05 00:20:00,12.8,12.8,19.790776005917345 + 09/05 00:30:00,12.8,12.8,19.79305748084559 + 09/05 00:40:00,12.8,12.8,19.7960716930312 + 09/05 00:50:00,12.8,12.8,19.798783067026805 + 09/05 01:00:00,12.8,12.8,19.799933032350809 + 09/05 01:10:00,12.8,12.8,19.803430022620604 + 09/05 01:20:00,12.8,12.8,19.80570256697374 + 09/05 01:30:00,12.8,12.8,19.808820087910559 + 09/05 01:40:00,12.8,12.8,19.81182934482484 + 09/05 01:50:00,12.8,12.8,19.813355671163259 + 09/05 02:00:00,12.8,12.8,19.817339669242267 + 09/05 02:10:00,12.8,12.8,19.819511645901163 + 09/05 02:20:00,12.8,12.8,19.822308024556869 + 09/05 02:30:00,12.8,12.8,19.823313711912577 + 09/05 02:40:00,12.8,12.8,19.82620066069421 + 09/05 02:50:00,12.8,12.8,19.82769274365449 + 09/05 03:00:00,12.8,12.8,19.829650218084777 + 09/05 03:10:00,12.8,12.8,19.83037363833792 + 09/05 03:20:00,12.8,12.8,19.833747961437646 + 09/05 03:30:00,12.8,12.8,19.836659638402055 + 09/05 03:40:00,12.8,12.8,19.840939150870967 + 09/05 03:50:00,12.8,12.8,19.844302244457617 + 09/05 04:00:00,12.8,12.8,19.84938221695928 + 09/05 04:10:00,12.8,12.8,19.853853482915647 + 09/05 04:20:00,12.8,12.8,19.857909529972834 + 09/05 04:30:00,12.8,12.8,19.861015409100785 + 09/05 04:40:00,12.8,12.8,19.863468471483654 + 09/05 04:50:00,12.8,12.8,19.86476473493788 + 09/05 05:00:00,12.8,12.8,19.865451466530965 + 09/05 05:10:00,12.8,12.8,19.86577086713091 + 09/05 05:20:00,12.8,12.8,19.86465620256044 + 09/05 05:30:00,12.8,12.8,19.865579625065906 + 09/05 05:40:00,12.8,12.8,19.865504154867069 + 09/05 05:50:00,12.8,12.8,19.865118446655573 + 09/05 06:00:00,12.8,12.8,19.86637306715928 + 09/05 06:10:00,12.8,12.8,17.88121543189805 + 09/05 06:20:00,12.8,12.8,17.62579352856522 + 09/05 06:30:00,12.8,12.8,17.5357873864131 + 09/05 06:40:00,12.8,12.8,17.462319377321948 + 09/05 06:50:00,12.8,12.8,17.40696786148934 + 09/05 07:00:00,12.8,12.8,17.360665596195095 + 09/05 07:05:00,12.8,12.8,15.870980648571305 + 09/05 07:10:00,12.8,12.8,15.877485943701759 + 09/05 07:20:00,12.8,12.8,15.651874260569427 + 09/05 07:30:00,12.8,12.8,15.543817174890542 + 09/05 07:40:00,12.8,12.8,15.45970421205941 + 09/05 07:50:00,12.8,12.8,15.387953700889146 + 09/05 08:00:00,12.8,12.8,15.324631528371825 + 09/05 08:05:00,12.8,12.8,15.240836398531816 + 09/05 08:10:00,12.8,12.8,15.240750789629672 + 09/05 08:20:00,12.8,12.8,15.178467103410185 + 09/05 08:30:00,12.8,12.8,15.127708118344085 + 09/05 08:40:00,12.8,12.8,15.080342558404335 + 09/05 08:50:00,12.8,12.8,15.036337017643766 + 09/05 09:00:00,12.8,12.8,14.995649066446934 + 09/05 09:10:00,12.8,12.8,14.957915238738732 + 09/05 09:20:00,12.8,12.8,14.912068370983027 + 09/05 09:30:00,12.8,12.8,14.878653273783673 + 09/05 09:40:00,12.8,12.8,14.847632983681333 + 09/05 09:50:00,12.8,12.8,14.819427958694588 + 09/05 10:00:00,12.8,12.8,14.79425208313892 + 09/05 10:10:00,12.8,12.8,14.77223557087272 + 09/05 10:20:00,12.8,12.8,14.749228204587219 + 09/05 10:30:00,12.8,12.8,14.731829718642855 + 09/05 10:40:00,12.8,12.8,14.714846998263479 + 09/05 10:50:00,12.8,12.8,14.695539723922466 + 09/05 11:00:00,12.8,12.8,14.672894380476132 + 09/05 11:10:00,12.8,12.8,14.64639585933345 + 09/05 11:20:00,12.8,12.8,14.626818920758625 + 09/05 11:30:00,12.8,12.8,14.59547640509084 + 09/05 11:40:00,12.8,12.8,14.564332532257709 + 09/05 11:50:00,12.8,12.8,14.537031638119732 + 09/05 12:00:00,12.8,12.8,14.514676597174967 + 09/05 12:10:00,12.8,12.8,14.496933301444216 + 09/05 12:20:00,12.8,12.8,14.473518043954364 + 09/05 12:30:00,12.8,12.8,14.463007304210527 + 09/05 12:40:00,12.8,12.8,14.454388260592112 + 09/05 12:50:00,12.8,12.8,14.445561941947715 + 09/05 13:00:00,12.8,12.8,14.435867945482582 + 09/05 13:10:00,12.8,12.8,14.42559455823732 + 09/05 13:20:00,12.8,12.8,14.41835702613789 + 09/05 13:30:00,12.8,12.8,14.407405701207893 + 09/05 13:40:00,12.8,12.8,14.396429983364794 + 09/05 13:50:00,12.8,12.8,14.385304813533072 + 09/05 14:00:00,12.8,12.8,14.374039904832042 + 09/05 14:10:00,12.8,12.8,14.3623497085815 + 09/05 14:20:00,12.8,12.8,14.354258070025585 + 09/05 14:30:00,12.8,12.8,14.342594904709117 + 09/05 14:40:00,12.8,12.8,14.331308370310579 + 09/05 14:50:00,12.8,12.8,14.32042598636041 + 09/05 15:00:00,12.8,12.8,14.309531588257748 + 09/05 15:05:00,12.8,12.8,16.457437169576019 + 09/05 15:10:00,12.8,12.8,16.45263832303666 + 09/05 15:15:00,12.8,12.8,16.705940387767929 + 09/05 15:20:00,12.8,12.8,16.702926082598098 + 09/05 15:30:00,12.8,12.8,16.79837640879611 + 09/05 15:40:00,12.8,12.8,16.86954722172529 + 09/05 15:50:00,12.8,12.8,16.92340402044195 + 09/05 16:00:00,12.8,12.8,16.96870335401808 + 09/05 16:10:00,12.8,12.8,17.032601630115879 + 09/05 16:20:00,12.8,12.8,17.085638531182569 + 09/05 16:30:00,12.8,12.8,17.115397282897129 + 09/05 16:40:00,12.8,12.8,17.141925092379187 + 09/05 16:50:00,12.8,12.8,17.166541562016083 + 09/05 17:00:00,12.8,12.8,17.189369825479355 + 09/05 17:10:00,12.8,12.8,17.223980538954323 + 09/05 17:20:00,12.8,12.8,17.250378282319013 + 09/05 17:30:00,12.8,12.8,17.27012105223032 + 09/05 17:40:00,12.8,12.8,17.288782806977815 + 09/05 17:50:00,12.8,12.8,17.306619822685133 + 09/05 18:00:00,12.8,12.8,17.323787886824755 + 09/05 18:10:00,12.8,12.8,17.340360202986099 + 09/05 18:20:00,12.8,12.8,17.356692627495688 + 09/05 18:30:00,12.8,12.8,17.372912519366765 + 09/05 18:40:00,12.8,12.8,17.38890226899141 + 09/05 18:50:00,12.8,12.8,17.40446614732525 + 09/05 19:00:00,12.8,12.8,17.4196097381783 + 09/05 19:10:00,12.8,12.8,17.447179511339927 + 09/05 19:20:00,12.8,12.8,17.461668508131479 + 09/05 19:30:00,12.8,12.8,17.47456987185518 + 09/05 19:40:00,12.8,12.8,17.486349699125414 + 09/05 19:50:00,12.8,12.8,17.497235002057349 + 09/05 20:00:00,12.8,12.8,17.507334103638095 + 09/05 20:10:00,12.8,12.8,17.494136277605795 + 09/05 20:20:00,12.8,12.8,17.506352117885617 + 09/05 20:30:00,12.8,12.8,17.513411063211366 + 09/05 20:40:00,12.8,12.8,17.519410101432535 + 09/05 20:50:00,12.8,12.8,17.524594194390084 + 09/05 21:00:00,12.8,12.8,17.528913888257489 + 09/05 21:10:00,12.8,12.8,17.532995057654416 + 09/05 21:20:00,12.8,12.8,17.5369935245662 + 09/05 21:30:00,12.8,12.8,17.54101023159365 + 09/05 21:40:00,12.8,12.8,17.545219520429855 + 09/05 21:50:00,12.8,12.8,17.54954137476244 + 09/05 22:00:00,12.8,12.8,17.55394815946565 + 09/05 22:10:00,12.8,12.8,18.91537267268547 + 09/05 22:20:00,12.8,12.8,19.061275919204005 + 09/05 22:30:00,12.8,12.8,19.124834940531757 + 09/05 22:40:00,12.8,12.8,19.175823227332239 + 09/05 22:50:00,12.8,12.8,19.216673220560464 + 09/05 23:00:00,12.8,12.8,19.25079820603437 + 09/05 23:10:00,12.8,12.8,19.280543589564006 + 09/05 23:20:00,12.8,12.8,19.306646887314878 + 09/05 23:30:00,12.8,12.8,19.33182361038347 + 09/05 23:40:00,12.8,12.8,19.35575702073826 + 09/05 23:50:00,12.8,12.8,19.379033203372424 + 09/05 24:00:00,12.8,12.8,19.401586157933119 + 09/06 00:10:00,12.8,12.8,19.42340291665328 + 09/06 00:20:00,12.8,12.8,19.44402548763557 + 09/06 00:30:00,12.8,12.8,19.463307607987958 + 09/06 00:40:00,12.8,12.8,19.481348392337304 + 09/06 00:50:00,12.8,12.8,19.498249623539289 + 09/06 01:00:00,12.8,12.8,19.514203984858459 + 09/06 01:10:00,12.8,12.8,19.529001526543536 + 09/06 01:20:00,12.8,12.8,19.54300719969151 + 09/06 01:30:00,12.8,12.8,19.556294811931875 + 09/06 01:40:00,12.8,12.8,19.56892207544765 + 09/06 01:50:00,12.8,12.8,19.581082682718184 + 09/06 02:00:00,12.8,12.8,19.59247547188382 + 09/06 02:10:00,12.8,12.8,19.60338270991284 + 09/06 02:20:00,12.8,12.8,19.61375529313884 + 09/06 02:30:00,12.8,12.8,19.62369282623829 + 09/06 02:40:00,12.8,12.8,19.633117907793058 + 09/06 02:50:00,12.8,12.8,19.642237901194585 + 09/06 03:00:00,12.8,12.8,19.651286290519118 + 09/06 03:10:00,12.8,12.8,19.65984588722985 + 09/06 03:20:00,12.8,12.8,19.668199817651414 + 09/06 03:30:00,12.8,12.8,19.676158360756177 + 09/06 03:40:00,12.8,12.8,19.683919396876889 + 09/06 03:50:00,12.8,12.8,19.691402015111139 + 09/06 04:00:00,12.8,12.8,19.69723410893799 + 09/06 04:10:00,12.8,12.8,19.70513814603397 + 09/06 04:20:00,12.8,12.8,19.711645062403066 + 09/06 04:30:00,12.8,12.8,19.71871199958857 + 09/06 04:40:00,12.8,12.8,19.7255533215487 + 09/06 04:50:00,12.8,12.8,19.730804797683179 + 09/06 05:00:00,12.8,12.8,19.737347098389685 + 09/06 05:10:00,12.8,12.8,19.743231662874384 + 09/06 05:20:00,12.8,12.8,19.749109150401968 + 09/06 05:30:00,12.8,12.8,19.754711414467324 + 09/06 05:40:00,12.8,12.8,19.760439983943188 + 09/06 05:50:00,12.8,12.8,19.765690368595086 + 09/06 06:00:00,12.8,12.8,19.770844595288474 + 09/06 06:10:00,12.8,12.8,17.785564269251 + 09/06 06:20:00,12.8,12.8,17.534700500172808 + 09/06 06:30:00,12.8,12.8,17.448099617273607 + 09/06 06:40:00,12.8,12.8,17.37802527596557 + 09/06 06:50:00,12.8,12.8,17.325360317046277 + 09/06 07:00:00,12.8,12.8,17.281274965934878 + 09/06 07:05:00,12.8,12.8,15.790823903106759 + 09/06 07:10:00,12.8,12.8,15.797355670285837 + 09/06 07:15:00,12.8,12.8,15.568426818970595 + 09/06 07:20:00,12.8,12.8,15.566706607115224 + 09/06 07:30:00,12.8,12.8,15.461317802015016 + 09/06 07:40:00,12.8,12.8,15.374790763779336 + 09/06 07:50:00,12.8,12.8,15.299425307895964 + 09/06 08:00:00,12.8,12.8,15.232904115285079 + 09/06 08:03:19,12.8,12.8,15.147431129991745 + 09/06 08:06:40,12.8,12.8,15.147031143313037 + 09/06 08:10:00,12.8,12.8,15.147006572421036 + 09/06 08:20:00,12.8,12.8,15.082381356372647 + 09/06 08:30:00,12.8,12.8,15.030073162923392 + 09/06 08:40:00,12.8,12.8,14.981094088124902 + 09/06 08:50:00,12.8,12.8,14.935259859103459 + 09/06 09:00:00,12.8,12.8,14.892428473449874 + 09/06 09:10:00,12.8,12.8,14.852475568419925 + 09/06 09:20:00,12.8,12.8,14.804434679884312 + 09/06 09:30:00,12.8,12.8,14.768954877790316 + 09/06 09:40:00,12.8,12.8,14.735448947896782 + 09/06 09:50:00,12.8,12.8,14.703434811572107 + 09/06 10:00:00,12.8,12.8,14.672780832194475 + 09/06 10:10:00,12.8,12.8,14.64309389103781 + 09/06 10:20:00,12.8,12.8,14.61117627039915 + 09/06 10:30:00,12.8,12.8,14.583922559454717 + 09/06 10:40:00,12.8,12.8,14.557968885529922 + 09/06 10:50:00,12.8,12.8,14.533456096518455 + 09/06 11:00:00,12.8,12.8,14.510273739995736 + 09/06 11:10:00,12.8,12.8,14.488258772026344 + 09/06 11:20:00,12.8,12.8,14.476780763515638 + 09/06 11:30:00,12.8,12.8,14.456540401594204 + 09/06 11:40:00,12.8,12.8,14.436678939409214 + 09/06 11:50:00,12.8,12.8,14.417136481087646 + 09/06 12:00:00,12.8,12.8,14.397749240068457 + 09/06 12:10:00,12.8,12.8,14.379308124122498 + 09/06 12:20:00,12.8,12.8,14.351656215580532 + 09/06 12:30:00,12.8,12.8,14.333930559500724 + 09/06 12:40:00,12.8,12.8,14.31707495615378 + 09/06 12:50:00,12.8,12.8,14.301392202705033 + 09/06 13:00:00,12.8,12.8,14.287043761126523 + 09/06 13:10:00,12.8,12.8,14.27416982896152 + 09/06 13:20:00,12.8,12.8,14.265884613241008 + 09/06 13:30:00,12.8,12.8,14.255089118158825 + 09/06 13:40:00,12.8,12.8,14.24509930430028 + 09/06 13:50:00,12.8,12.8,14.23598085476921 + 09/06 14:00:00,12.8,12.8,14.227509920320589 + 09/06 14:10:00,12.8,12.8,14.219453485696898 + 09/06 14:20:00,12.8,12.8,14.215918449185736 + 09/06 14:30:00,12.8,12.8,14.209933158722658 + 09/06 14:40:00,12.8,12.8,14.205776494219709 + 09/06 14:50:00,12.8,12.8,14.203721796154217 + 09/06 15:00:00,12.8,12.8,14.20336162104293 + 09/06 15:05:00,12.8,12.8,16.365026020540485 + 09/06 15:10:00,12.8,12.8,16.35996896087167 + 09/06 15:20:00,12.8,12.8,16.617878831430166 + 09/06 15:30:00,12.8,12.8,16.725396702805637 + 09/06 15:40:00,12.8,12.8,16.806798509826068 + 09/06 15:50:00,12.8,12.8,16.866037193797504 + 09/06 16:00:00,12.8,12.8,16.913737443860808 + 09/06 16:10:00,12.8,12.8,16.978383738729364 + 09/06 16:20:00,12.8,12.8,17.031162552919928 + 09/06 16:30:00,12.8,12.8,17.060117783946227 + 09/06 16:40:00,12.8,12.8,17.085600427707378 + 09/06 16:50:00,12.8,12.8,17.10933373645652 + 09/06 17:00:00,12.8,12.8,17.13205030188712 + 09/06 17:10:00,12.8,12.8,17.16661542033105 + 09/06 17:15:00,12.8,12.8,17.194078106484363 + 09/06 17:20:00,12.8,12.8,17.193696760450949 + 09/06 17:30:00,12.8,12.8,17.213647326623339 + 09/06 17:40:00,12.8,12.8,17.233539878298669 + 09/06 17:50:00,12.8,12.8,17.25267040371296 + 09/06 18:00:00,12.8,12.8,17.27163864912664 + 09/06 18:10:00,12.8,12.8,17.2906747040575 + 09/06 18:20:00,12.8,12.8,17.30926420963667 + 09/06 18:30:00,12.8,12.8,17.32742901951096 + 09/06 18:40:00,12.8,12.8,17.345040975562609 + 09/06 18:50:00,12.8,12.8,17.361944552336547 + 09/06 19:00:00,12.8,12.8,17.378350126906935 + 09/06 19:10:00,12.8,12.8,17.40692489109164 + 09/06 19:20:00,12.8,12.8,17.42258618262624 + 09/06 19:30:00,12.8,12.8,17.436899951439729 + 09/06 19:40:00,12.8,12.8,17.45035316219288 + 09/06 19:50:00,12.8,12.8,17.462971160771788 + 09/06 20:00:00,12.8,12.8,17.474915954157198 + 09/06 20:10:00,12.8,12.8,17.463909723302764 + 09/06 20:20:00,12.8,12.8,17.47856468629476 + 09/06 20:30:00,12.8,12.8,17.488519160743004 + 09/06 20:40:00,12.8,12.8,17.497857215330357 + 09/06 20:50:00,12.8,12.8,17.506754030964389 + 09/06 21:00:00,12.8,12.8,17.515196832805498 + 09/06 21:10:00,12.8,12.8,17.522959788115409 + 09/06 21:20:00,12.8,12.8,17.5299588252366 + 09/06 21:30:00,12.8,12.8,17.53620694840436 + 09/06 21:40:00,12.8,12.8,17.541723587103779 + 09/06 21:50:00,12.8,12.8,17.546416022750987 + 09/06 22:00:00,12.8,12.8,17.550676703710335 + 09/06 22:10:00,12.8,12.8,18.91245965508314 + 09/06 22:20:00,12.8,12.8,19.060961346690364 + 09/06 22:30:00,12.8,12.8,19.126527229342316 + 09/06 22:40:00,12.8,12.8,19.180543316365826 + 09/06 22:50:00,12.8,12.8,19.223781462963737 + 09/06 23:00:00,12.8,12.8,19.25986646439237 + 09/06 23:10:00,12.8,12.8,19.291474317958586 + 09/06 23:20:00,12.8,12.8,19.31965156821653 + 09/06 23:30:00,12.8,12.8,19.344936144429956 + 09/06 23:40:00,12.8,12.8,19.36804953458479 + 09/06 23:50:00,12.8,12.8,19.389069125677293 + 09/06 24:00:00,12.8,12.8,19.408563257753096 + 09/07 00:10:00,12.8,12.8,19.42673817209001 + 09/07 00:20:00,12.8,12.8,19.44286881961666 + 09/07 00:30:00,12.8,12.8,19.459221302529394 + 09/07 00:40:00,12.8,12.8,19.474065370703636 + 09/07 00:50:00,12.8,12.8,19.488526862471937 + 09/07 01:00:00,12.8,12.8,19.501256130041445 + 09/07 01:10:00,12.8,12.8,19.514737418575728 + 09/07 01:20:00,12.8,12.8,19.526868145128089 + 09/07 01:30:00,12.8,12.8,19.53901216758521 + 09/07 01:40:00,12.8,12.8,19.54954822923532 + 09/07 01:50:00,12.8,12.8,19.561189918393859 + 09/07 02:00:00,12.8,12.8,19.57161886055771 + 09/07 02:10:00,12.8,12.8,19.5819757395771 + 09/07 02:20:00,12.8,12.8,19.590839721581543 + 09/07 02:30:00,12.8,12.8,19.600996827060294 + 09/07 02:40:00,12.8,12.8,19.609959032157904 + 09/07 02:50:00,12.8,12.8,19.61913427416136 + 09/07 03:00:00,12.8,12.8,19.62666337159514 + 09/07 03:10:00,12.8,12.8,19.63578559596597 + 09/07 03:20:00,12.8,12.8,19.643778812300693 + 09/07 03:30:00,12.8,12.8,19.652128838700919 + 09/07 03:40:00,12.8,12.8,19.66012623037629 + 09/07 03:50:00,12.8,12.8,19.666531043906219 + 09/07 04:00:00,12.8,12.8,19.674855738583394 + 09/07 04:10:00,12.8,12.8,19.68193536689571 + 09/07 04:20:00,12.8,12.8,19.68952225645425 + 09/07 04:30:00,12.8,12.8,19.696737174872358 + 09/07 04:40:00,12.8,12.8,19.702324064728136 + 09/07 04:50:00,12.8,12.8,19.70991896332217 + 09/07 05:00:00,12.8,12.8,19.71621021142049 + 09/07 05:10:00,12.8,12.8,19.72294932370629 + 09/07 05:20:00,12.8,12.8,19.727990348229235 + 09/07 05:30:00,12.8,12.8,19.73478761925074 + 09/07 05:40:00,12.8,12.8,19.74022093966473 + 09/07 05:50:00,12.8,12.8,19.74512099248978 + 09/07 06:00:00,12.8,12.8,19.751247626875128 + 09/07 06:10:00,12.8,12.8,17.765401561408838 + 09/07 06:15:00,12.8,12.8,17.5125443320637 + 09/07 06:20:00,12.8,12.8,17.51724868420842 + 09/07 06:30:00,12.8,12.8,17.42822742614831 + 09/07 06:40:00,12.8,12.8,17.358793367742579 + 09/07 06:50:00,12.8,12.8,17.306799540274136 + 09/07 07:00:00,12.8,12.8,17.26314256797387 + 09/07 07:05:00,12.8,12.8,15.774533649068273 + 09/07 07:10:00,12.8,12.8,15.780470951784823 + 09/07 07:15:00,12.8,12.8,15.552999242117665 + 09/07 07:20:00,12.8,12.8,15.551257227990697 + 09/07 07:30:00,12.8,12.8,15.446537655009678 + 09/07 07:40:00,12.8,12.8,15.36024533513062 + 09/07 07:50:00,12.8,12.8,15.28499203560749 + 09/07 08:00:00,12.8,12.8,15.218502057152373 + 09/07 08:03:19,12.8,12.8,15.132995802490712 + 09/07 08:06:40,12.8,12.8,15.13263459093265 + 09/07 08:10:00,12.8,12.8,15.132566094656492 + 09/07 08:20:00,12.8,12.8,15.067943867365284 + 09/07 08:30:00,12.8,12.8,15.015665656567972 + 09/07 08:40:00,12.8,12.8,14.9666563542187 + 09/07 08:50:00,12.8,12.8,14.920637529275963 + 09/07 09:00:00,12.8,12.8,14.877383526116278 + 09/07 09:10:00,12.8,12.8,14.83663142661909 + 09/07 09:20:00,12.8,12.8,14.78756175140298 + 09/07 09:30:00,12.8,12.8,14.750895154323216 + 09/07 09:40:00,12.8,12.8,14.716273556280632 + 09/07 09:50:00,12.8,12.8,14.683554748245684 + 09/07 10:00:00,12.8,12.8,14.652741627453308 + 09/07 10:10:00,12.8,12.8,14.62362146742633 + 09/07 10:20:00,12.8,12.8,14.592319975195516 + 09/07 10:30:00,12.8,12.8,14.56558849943873 + 09/07 10:40:00,12.8,12.8,14.540068780827438 + 09/07 10:50:00,12.8,12.8,14.515652790509991 + 09/07 11:00:00,12.8,12.8,14.492342184816883 + 09/07 11:10:00,12.8,12.8,14.470329162299203 + 09/07 11:20:00,12.8,12.8,14.459081196603894 + 09/07 11:30:00,12.8,12.8,14.439201915953407 + 09/07 11:40:00,12.8,12.8,14.420032895692256 + 09/07 11:50:00,12.8,12.8,14.401622314024485 + 09/07 12:00:00,12.8,12.8,14.38378502974041 + 09/07 12:10:00,12.8,12.8,14.366800509950325 + 09/07 12:20:00,12.8,12.8,14.340970229777473 + 09/07 12:30:00,12.8,12.8,14.325580382823294 + 09/07 12:40:00,12.8,12.8,14.311320375229379 + 09/07 12:50:00,12.8,12.8,14.298079057643664 + 09/07 13:00:00,12.8,12.8,14.285915778837732 + 09/07 13:10:00,12.8,12.8,14.27423693029127 + 09/07 13:20:00,12.8,12.8,14.267001608933113 + 09/07 13:30:00,12.8,12.8,14.2571555366512 + 09/07 13:40:00,12.8,12.8,14.247750649698347 + 09/07 13:50:00,12.8,12.8,14.238807683333402 + 09/07 14:00:00,12.8,12.8,14.23011589119168 + 09/07 14:10:00,12.8,12.8,14.221797696677422 + 09/07 14:20:00,12.8,12.8,14.217257115533654 + 09/07 14:30:00,12.8,12.8,14.209558700847186 + 09/07 14:40:00,12.8,12.8,14.20283500405752 + 09/07 14:50:00,12.8,12.8,14.19633375541399 + 09/07 15:00:00,12.8,12.8,14.190028312912159 + 09/07 15:10:00,12.8,12.8,16.333592480578767 + 09/07 15:20:00,12.8,12.8,16.588036429398117 + 09/07 15:30:00,12.8,12.8,16.686874901676917 + 09/07 15:40:00,12.8,12.8,16.76586885246361 + 09/07 15:50:00,12.8,12.8,16.824941155874407 + 09/07 16:00:00,12.8,12.8,16.872404022701539 + 09/07 16:10:00,12.8,12.8,16.939000566451488 + 09/07 16:20:00,12.8,12.8,16.994591964263266 + 09/07 16:30:00,12.8,12.8,17.027436919502969 + 09/07 16:40:00,12.8,12.8,17.05730350110827 + 09/07 16:50:00,12.8,12.8,17.08493976213524 + 09/07 17:00:00,12.8,12.8,17.11063036814999 + 09/07 17:10:00,12.8,12.8,17.147731576055109 + 09/07 17:15:00,12.8,12.8,17.17711089629781 + 09/07 17:20:00,12.8,12.8,17.176713494610995 + 09/07 17:30:00,12.8,12.8,17.19797392982545 + 09/07 17:40:00,12.8,12.8,17.218747355822985 + 09/07 17:50:00,12.8,12.8,17.238558571902219 + 09/07 18:00:00,12.8,12.8,17.25803222463213 + 09/07 18:10:00,12.8,12.8,17.27726207071201 + 09/07 18:20:00,12.8,12.8,17.295952306948914 + 09/07 18:30:00,12.8,12.8,17.314027635619863 + 09/07 18:40:00,12.8,12.8,17.331340380479536 + 09/07 18:50:00,12.8,12.8,17.347843253279483 + 09/07 19:00:00,12.8,12.8,17.363690123038766 + 09/07 19:10:00,12.8,12.8,17.391488248214654 + 09/07 19:20:00,12.8,12.8,17.406337650456089 + 09/07 19:30:00,12.8,12.8,17.41979422479087 + 09/07 19:40:00,12.8,12.8,17.432395993519504 + 09/07 19:50:00,12.8,12.8,17.44420936054964 + 09/07 20:00:00,12.8,12.8,17.45523346909309 + 09/07 20:10:00,12.8,12.8,17.443643245536817 + 09/07 20:20:00,12.8,12.8,17.458206126615754 + 09/07 20:30:00,12.8,12.8,17.468453259173168 + 09/07 20:40:00,12.8,12.8,17.478452568111636 + 09/07 20:50:00,12.8,12.8,17.48836785328178 + 09/07 21:00:00,12.8,12.8,17.498135751757954 + 09/07 21:10:00,12.8,12.8,17.50787067034323 + 09/07 21:20:00,12.8,12.8,17.517189717656256 + 09/07 21:30:00,12.8,12.8,17.526251369336089 + 09/07 21:40:00,12.8,12.8,17.535104862539276 + 09/07 21:50:00,12.8,12.8,17.5436963638206 + 09/07 22:00:00,12.8,12.8,17.55207233686037 + 09/07 22:10:00,12.8,12.8,18.917237412371447 + 09/07 22:20:00,12.8,12.8,19.066341450351925 + 09/07 22:30:00,12.8,12.8,19.133062651876679 + 09/07 22:40:00,12.8,12.8,19.187058485674524 + 09/07 22:50:00,12.8,12.8,19.23088051327658 + 09/07 23:00:00,12.8,12.8,19.268263668279415 + 09/07 23:10:00,12.8,12.8,19.301061867173169 + 09/07 23:20:00,12.8,12.8,19.329139054401535 + 09/07 23:30:00,12.8,12.8,19.354949408629844 + 09/07 23:40:00,12.8,12.8,19.377943346029725 + 09/07 23:50:00,12.8,12.8,19.399107204528748 + 09/07 24:00:00,12.8,12.8,19.4183056317671 + 09/08 00:10:00,12.8,12.8,19.43629702566724 + 09/08 00:20:00,12.8,12.8,19.45326361060931 + 09/08 00:30:00,12.8,12.8,19.469377395969926 + 09/08 00:40:00,12.8,12.8,19.48477234496273 + 09/08 00:50:00,12.8,12.8,19.499458714765333 + 09/08 01:00:00,12.8,12.8,19.513653856797338 + 09/08 01:10:00,12.8,12.8,19.52734276874976 + 09/08 01:20:00,12.8,12.8,19.54021188317224 + 09/08 01:30:00,12.8,12.8,19.552355934591568 + 09/08 01:40:00,12.8,12.8,19.563877728614189 + 09/08 01:50:00,12.8,12.8,19.575356939696535 + 09/08 02:00:00,12.8,12.8,19.58592303988273 + 09/08 02:10:00,12.8,12.8,19.59587972556931 + 09/08 02:20:00,12.8,12.8,19.605408305295425 + 09/08 02:30:00,12.8,12.8,19.614630491938884 + 09/08 02:40:00,12.8,12.8,19.6235630481186 + 09/08 02:50:00,12.8,12.8,19.63230698488438 + 09/08 03:00:00,12.8,12.8,19.64080844586239 + 09/08 03:10:00,12.8,12.8,19.649380673915556 + 09/08 03:20:00,12.8,12.8,19.657351830284207 + 09/08 03:30:00,12.8,12.8,19.665095400352077 + 09/08 03:40:00,12.8,12.8,19.672645205963144 + 09/08 03:50:00,12.8,12.8,19.680005434539298 + 09/08 04:00:00,12.8,12.8,19.687178776969149 + 09/08 04:10:00,12.8,12.8,19.694250809796125 + 09/08 04:20:00,12.8,12.8,19.701066450336737 + 09/08 04:30:00,12.8,12.8,19.707850982521877 + 09/08 04:40:00,12.8,12.8,19.714534035104454 + 09/08 04:50:00,12.8,12.8,19.72111135894917 + 09/08 05:00:00,12.8,12.8,19.727637645142864 + 09/08 05:10:00,12.8,12.8,19.7337599331096 + 09/08 05:20:00,12.8,12.8,19.739873536118716 + 09/08 05:30:00,12.8,12.8,19.745792139213426 + 09/08 05:40:00,12.8,12.8,19.751611669892414 + 09/08 05:50:00,12.8,12.8,19.75720952971231 + 09/08 06:00:00,12.8,12.8,19.76266972576724 + 09/08 06:10:00,12.8,12.8,17.778319445895627 + 09/08 06:20:00,12.8,12.8,17.528892357885576 + 09/08 06:30:00,12.8,12.8,17.443084639111075 + 09/08 06:40:00,12.8,12.8,17.37364437101885 + 09/08 06:50:00,12.8,12.8,17.321253852190737 + 09/08 07:00:00,12.8,12.8,17.27763658299727 + 09/08 07:05:00,12.8,12.8,15.787864924371446 + 09/08 07:10:00,12.8,12.8,15.79439587979617 + 09/08 07:15:00,12.8,12.8,15.566179313314022 + 09/08 07:20:00,12.8,12.8,15.564446652177315 + 09/08 07:30:00,12.8,12.8,15.459216808876708 + 09/08 07:40:00,12.8,12.8,15.372587309169516 + 09/08 07:50:00,12.8,12.8,15.296937223704316 + 09/08 08:00:00,12.8,12.8,15.23003977507547 + 09/08 08:03:19,12.8,12.8,15.144082676196314 + 09/08 08:06:40,12.8,12.8,15.143715175674253 + 09/08 08:10:00,12.8,12.8,15.143677419554655 + 09/08 08:20:00,12.8,12.8,15.078620177881952 + 09/08 08:30:00,12.8,12.8,15.025825693425264 + 09/08 08:40:00,12.8,12.8,14.976313813471215 + 09/08 08:50:00,12.8,12.8,14.929741185057166 + 09/08 09:00:00,12.8,12.8,14.885912594638752 + 09/08 09:10:00,12.8,12.8,14.844796302382616 + 09/08 09:20:00,12.8,12.8,14.795375710542645 + 09/08 09:30:00,12.8,12.8,14.758357653039882 + 09/08 09:40:00,12.8,12.8,14.723392827540362 + 09/08 09:50:00,12.8,12.8,14.690348042561475 + 09/08 10:00:00,12.8,12.8,14.659222293710503 + 09/08 10:10:00,12.8,12.8,14.629538752712213 + 09/08 10:20:00,12.8,12.8,14.597649605400271 + 09/08 10:30:00,12.8,12.8,14.57034250552908 + 09/08 10:40:00,12.8,12.8,14.544640399856029 + 09/08 10:50:00,12.8,12.8,14.521095100745035 + 09/08 11:00:00,12.8,12.8,14.499963227499535 + 09/08 11:10:00,12.8,12.8,14.481333218587042 + 09/08 11:20:00,12.8,12.8,14.474765553362348 + 09/08 11:30:00,12.8,12.8,14.460896021153256 + 09/08 11:40:00,12.8,12.8,14.447891769279626 + 09/08 11:50:00,12.8,12.8,14.434732542381778 + 09/08 12:00:00,12.8,12.8,14.420797615269486 + 09/08 12:10:00,12.8,12.8,14.406603392418086 + 09/08 12:20:00,12.8,12.8,14.382313829815715 + 09/08 12:30:00,12.8,12.8,14.367294630017059 + 09/08 12:40:00,12.8,12.8,14.35290966173989 + 09/08 12:50:00,12.8,12.8,14.340117438568944 + 09/08 13:00:00,12.8,12.8,14.329144855966482 + 09/08 13:10:00,12.8,12.8,14.31974724973459 + 09/08 13:20:00,12.8,12.8,14.315275701778783 + 09/08 13:30:00,12.8,12.8,14.30852396555087 + 09/08 13:40:00,12.8,12.8,14.301788480413264 + 09/08 13:50:00,12.8,12.8,14.293727470501251 + 09/08 14:00:00,12.8,12.8,14.283872370577584 + 09/08 14:10:00,12.8,12.8,14.272489537571598 + 09/08 14:20:00,12.8,12.8,14.26377022113506 + 09/08 14:30:00,12.8,12.8,14.251230333575928 + 09/08 14:40:00,12.8,12.8,14.240061553248493 + 09/08 14:50:00,12.8,12.8,14.23051342597372 + 09/08 15:00:00,12.8,12.8,14.22282146215681 + 09/08 15:05:00,12.8,12.8,16.373516627202706 + 09/08 15:10:00,12.8,12.8,16.36936671575814 + 09/08 15:20:00,12.8,12.8,16.619909074778496 + 09/08 15:30:00,12.8,12.8,16.7206470337034 + 09/08 15:40:00,12.8,12.8,16.7962440774886 + 09/08 15:50:00,12.8,12.8,16.85634678063848 + 09/08 16:00:00,12.8,12.8,16.90242918288187 + 09/08 16:10:00,12.8,12.8,16.967886474563334 + 09/08 16:20:00,12.8,12.8,17.021396263849053 + 09/08 16:30:00,12.8,12.8,17.051724695654568 + 09/08 16:40:00,12.8,12.8,17.079190180349039 + 09/08 16:50:00,12.8,12.8,17.104885925653649 + 09/08 17:00:00,12.8,12.8,17.129267555840558 + 09/08 17:10:00,12.8,12.8,17.16543751990376 + 09/08 17:15:00,12.8,12.8,17.19441860471033 + 09/08 17:20:00,12.8,12.8,17.194029254362193 + 09/08 17:30:00,12.8,12.8,17.215422587807497 + 09/08 17:40:00,12.8,12.8,17.236753089079469 + 09/08 17:50:00,12.8,12.8,17.25741368241784 + 09/08 18:00:00,12.8,12.8,17.277877236658804 + 09/08 18:10:00,12.8,12.8,17.298005423699409 + 09/08 18:20:00,12.8,12.8,17.317481388139308 + 09/08 18:30:00,12.8,12.8,17.336216599987304 + 09/08 18:40:00,12.8,12.8,17.3541925473316 + 09/08 18:50:00,12.8,12.8,17.371309798451877 + 09/08 19:00:00,12.8,12.8,17.387467437171197 + 09/08 19:10:00,12.8,12.8,17.415391492508396 + 09/08 19:20:00,12.8,12.8,17.43005397509791 + 09/08 19:30:00,12.8,12.8,17.443121239130979 + 09/08 19:40:00,12.8,12.8,17.455152108961966 + 09/08 19:50:00,12.8,12.8,17.46621886955946 + 09/08 20:00:00,12.8,12.8,17.47645168924964 + 09/08 20:10:00,12.8,12.8,17.46449132034534 + 09/08 20:20:00,12.8,12.8,17.478621118432647 + 09/08 20:30:00,12.8,12.8,17.48842212309554 + 09/08 20:40:00,12.8,12.8,17.498018382288138 + 09/08 20:50:00,12.8,12.8,17.507587899019506 + 09/08 21:00:00,12.8,12.8,17.517186522899136 + 09/08 21:10:00,12.8,12.8,17.526766779609156 + 09/08 21:20:00,12.8,12.8,17.5361708144219 + 09/08 21:30:00,12.8,12.8,17.54513560591951 + 09/08 21:40:00,12.8,12.8,17.553717619900714 + 09/08 21:50:00,12.8,12.8,17.561872481027554 + 09/08 22:00:00,12.8,12.8,17.56973879492154 + 09/08 22:10:00,12.8,12.8,18.93409732537646 + 09/08 22:20:00,12.8,12.8,19.083613316047548 + 09/08 22:30:00,12.8,12.8,19.150191505957979 + 09/08 22:40:00,12.8,12.8,19.20424427259904 + 09/08 22:50:00,12.8,12.8,19.247977088448495 + 09/08 23:00:00,12.8,12.8,19.28509344806713 + 09/08 23:10:00,12.8,12.8,19.316422652159248 + 09/08 23:20:00,12.8,12.8,19.343923272236258 + 09/08 23:30:00,12.8,12.8,19.368680673659165 + 09/08 23:40:00,12.8,12.8,19.391172979802037 + 09/08 23:50:00,12.8,12.8,19.41182758951373 + 09/08 24:00:00,12.8,12.8,19.431051147194887 + 09/09 00:10:00,12.8,12.8,19.449050991903968 + 09/09 00:20:00,12.8,12.8,19.465905881533908 + 09/09 00:30:00,12.8,12.8,19.481821833900399 + 09/09 00:40:00,12.8,12.8,19.495888485491066 + 09/09 00:50:00,12.8,12.8,19.510796383375856 + 09/09 01:00:00,12.8,12.8,19.52417907853127 + 09/09 01:10:00,12.8,12.8,19.53739089095708 + 09/09 01:20:00,12.8,12.8,19.549583326842805 + 09/09 01:30:00,12.8,12.8,19.561141228559135 + 09/09 01:40:00,12.8,12.8,19.570811430884853 + 09/09 01:50:00,12.8,12.8,19.58196602253095 + 09/09 02:00:00,12.8,12.8,19.591627251363 + 09/09 02:10:00,12.8,12.8,19.601241475887766 + 09/09 02:20:00,12.8,12.8,19.61052820875432 + 09/09 02:30:00,12.8,12.8,19.619666540818949 + 09/09 02:40:00,12.8,12.8,19.62718219715394 + 09/09 02:50:00,12.8,12.8,19.63602000649482 + 09/09 03:00:00,12.8,12.8,19.64444843911015 + 09/09 03:10:00,12.8,12.8,19.65347122028389 + 09/09 03:20:00,12.8,12.8,19.66233514546917 + 09/09 03:30:00,12.8,12.8,19.670948009227425 + 09/09 03:40:00,12.8,12.8,19.679321601153576 + 09/09 03:50:00,12.8,12.8,19.68767020498539 + 09/09 04:00:00,12.8,12.8,19.695673078323435 + 09/09 04:10:00,12.8,12.8,19.703578026285699 + 09/09 04:20:00,12.8,12.8,19.71033086411308 + 09/09 04:30:00,12.8,12.8,19.717592660862246 + 09/09 04:40:00,12.8,12.8,19.724391762482484 + 09/09 04:50:00,12.8,12.8,19.7310884792875 + 09/09 05:00:00,12.8,12.8,19.737610712345398 + 09/09 05:10:00,12.8,12.8,19.743882544521147 + 09/09 05:20:00,12.8,12.8,19.749879747491855 + 09/09 05:30:00,12.8,12.8,19.75560714739178 + 09/09 05:40:00,12.8,12.8,19.761017154153369 + 09/09 05:50:00,12.8,12.8,19.766280151699154 + 09/09 06:00:00,12.8,12.8,19.7713261618801 + 09/09 06:10:00,12.8,12.8,19.119670028367815 + 09/09 06:20:00,12.8,12.8,19.04905606540787 + 09/09 06:30:00,12.8,12.8,19.02373754599843 + 09/09 06:40:00,12.8,12.8,19.00321554932977 + 09/09 06:50:00,12.8,12.8,18.987485242562987 + 09/09 07:00:00,12.8,12.8,18.973949006697006 + 09/09 07:10:00,12.8,12.8,17.893459375184486 + 09/09 07:20:00,12.8,12.8,17.73435242600301 + 09/09 07:30:00,12.8,12.8,17.66753807628594 + 09/09 07:40:00,12.8,12.8,17.610197249741394 + 09/09 07:50:00,12.8,12.8,17.56230284929777 + 09/09 08:00:00,12.8,12.8,17.51897453406638 + 09/09 08:10:00,12.8,12.8,17.478421936467425 + 09/09 08:20:00,12.8,12.8,17.431440482250129 + 09/09 08:30:00,12.8,12.8,17.39504249180958 + 09/09 08:40:00,12.8,12.8,17.36045743432749 + 09/09 08:50:00,12.8,12.8,17.32751300008029 + 09/09 09:00:00,12.8,12.8,17.29616011126398 + 09/09 09:10:00,12.8,12.8,17.26696819240204 + 09/09 09:20:00,12.8,12.8,17.230618086456745 + 09/09 09:30:00,12.8,12.8,17.204346543843525 + 09/09 09:40:00,12.8,12.8,17.1798220076924 + 09/09 09:50:00,12.8,12.8,17.15739771323077 + 09/09 10:00:00,12.8,12.8,17.13726110173107 + 09/09 10:10:00,12.8,12.8,17.11900788869434 + 09/09 10:20:00,12.8,12.8,17.102372841883548 + 09/09 10:30:00,12.8,12.8,17.087124863829716 + 09/09 10:40:00,12.8,12.8,17.072737801171365 + 09/09 10:50:00,12.8,12.8,17.05849612059543 + 09/09 11:00:00,12.8,12.8,17.044084475316436 + 09/09 11:10:00,12.8,12.8,17.030152465027429 + 09/09 11:20:00,12.8,12.8,17.016492749503127 + 09/09 11:30:00,12.8,12.8,17.003230242591504 + 09/09 11:40:00,12.8,12.8,16.99064517336697 + 09/09 11:50:00,12.8,12.8,16.97911190404509 + 09/09 12:00:00,12.8,12.8,16.96872355746604 + 09/09 12:10:00,12.8,12.8,16.959217466568988 + 09/09 12:20:00,12.8,12.8,16.950565330814596 + 09/09 12:30:00,12.8,12.8,16.942625521135928 + 09/09 12:40:00,12.8,12.8,16.935191491992009 + 09/09 12:50:00,12.8,12.8,16.927978682913634 + 09/09 13:00:00,12.8,12.8,16.920876267199277 + 09/09 13:10:00,12.8,12.8,16.913037452253339 + 09/09 13:20:00,12.8,12.8,16.906962002809608 + 09/09 13:30:00,12.8,12.8,16.902859839766998 + 09/09 13:40:00,12.8,12.8,16.900825781569887 + 09/09 13:50:00,12.8,12.8,16.90107226915741 + 09/09 14:00:00,12.8,12.8,16.903451508295256 + 09/09 14:10:00,12.8,12.8,16.907862479427196 + 09/09 14:20:00,12.8,12.8,16.912315890224819 + 09/09 14:30:00,12.8,12.8,16.935492818522513 + 09/09 14:40:00,12.8,12.8,16.977529202722658 + 09/09 14:50:00,12.8,12.8,17.01005427095384 + 09/09 15:00:00,12.8,12.8,17.02845142458084 + 09/09 15:10:00,12.8,12.8,17.038305164096003 + 09/09 15:20:00,12.8,12.8,17.044179026482678 + 09/09 15:30:00,12.8,12.8,17.048106052509167 + 09/09 15:40:00,12.8,12.8,17.044948069270938 + 09/09 15:50:00,12.8,12.8,17.031715635945529 + 09/09 16:00:00,12.8,12.8,17.015530596100669 + 09/09 16:10:00,12.8,12.8,17.014246528713433 + 09/09 16:20:00,12.8,12.8,17.012499607181327 + 09/09 16:30:00,12.8,12.8,17.004402392110916 + 09/09 16:40:00,12.8,12.8,16.998602306723318 + 09/09 16:50:00,12.8,12.8,16.995041646172539 + 09/09 17:00:00,12.8,12.8,16.993271739670818 + 09/09 17:10:00,12.8,12.8,18.74881279938356 + 09/09 17:20:00,12.8,12.8,18.963985150415604 + 09/09 17:30:00,12.8,12.8,19.049634838629339 + 09/09 17:40:00,12.8,12.8,19.118658758261796 + 09/09 17:50:00,12.8,12.8,19.174416218322216 + 09/09 18:00:00,12.8,12.8,19.221778215878634 + 09/09 18:10:00,12.8,12.8,19.27599208825724 + 09/09 18:20:00,12.8,12.8,19.313343518877443 + 09/09 18:30:00,12.8,12.8,19.34508497671468 + 09/09 18:40:00,12.8,12.8,19.374432205617944 + 09/09 18:50:00,12.8,12.8,19.40096215274121 + 09/09 19:00:00,12.8,12.8,19.42557373437745 + 09/09 19:10:00,12.8,12.8,19.448626084977563 + 09/09 19:20:00,12.8,12.8,19.46997878593685 + 09/09 19:30:00,12.8,12.8,19.489714567847164 + 09/09 19:40:00,12.8,12.8,19.507997419152269 + 09/09 19:50:00,12.8,12.8,19.52494138720257 + 09/09 20:00:00,12.8,12.8,19.540809155746456 + 09/09 20:10:00,12.8,12.8,19.533270816963268 + 09/09 20:20:00,12.8,12.8,19.546448496645959 + 09/09 20:30:00,12.8,12.8,19.558623799166907 + 09/09 20:40:00,12.8,12.8,19.569614710505549 + 09/09 20:50:00,12.8,12.8,19.579607763463704 + 09/09 21:00:00,12.8,12.8,19.58878602484422 + 09/09 21:10:00,12.8,12.8,19.597538797578168 + 09/09 21:20:00,12.8,12.8,19.60592637251765 + 09/09 21:30:00,12.8,12.8,19.614127764870724 + 09/09 21:40:00,12.8,12.8,19.6222214444393 + 09/09 21:50:00,12.8,12.8,19.630387152716968 + 09/09 22:00:00,12.8,12.8,19.638549482773337 + 09/09 22:10:00,12.8,12.8,19.64660526003856 + 09/09 22:20:00,12.8,12.8,19.65459390390742 + 09/09 22:30:00,12.8,12.8,19.66239309173494 + 09/09 22:40:00,12.8,12.8,19.670182808841493 + 09/09 22:50:00,12.8,12.8,19.677867193287996 + 09/09 23:00:00,12.8,12.8,19.685439445626629 + 09/09 23:10:00,12.8,12.8,19.69276353420621 + 09/09 23:20:00,12.8,12.8,19.700257855162439 + 09/09 23:30:00,12.8,12.8,19.70767103126587 + 09/09 23:40:00,12.8,12.8,19.715160697709025 + 09/09 23:50:00,12.8,12.8,19.72255613076881 + 09/09 24:00:00,12.8,12.8,19.72991602956105 + 09/10 00:10:00,12.8,12.8,19.73727662082868 + 09/10 00:20:00,12.8,12.8,19.742995415458503 + 09/10 00:30:00,12.8,12.8,19.750733350813264 + 09/10 00:40:00,12.8,12.8,19.756991324024594 + 09/10 00:50:00,12.8,12.8,19.76373249012552 + 09/10 01:00:00,12.8,12.8,19.770010993894446 + 09/10 01:10:00,12.8,12.8,19.77435726662647 + 09/10 01:20:00,12.8,12.8,19.780643782658588 + 09/10 01:30:00,12.8,12.8,19.78533990313251 + 09/10 01:40:00,12.8,12.8,19.790428718833586 + 09/10 01:50:00,12.8,12.8,19.795009565446845 + 09/10 02:00:00,12.8,12.8,19.797848462192428 + 09/10 02:10:00,12.8,12.8,19.803305928849697 + 09/10 02:20:00,12.8,12.8,19.807214897911629 + 09/10 02:30:00,12.8,12.8,19.811654003139787 + 09/10 02:40:00,12.8,12.8,19.814438234888525 + 09/10 02:50:00,12.8,12.8,19.818305092020898 + 09/10 03:00:00,12.8,12.8,19.821937142977107 + 09/10 03:10:00,12.8,12.8,19.825307280939158 + 09/10 03:20:00,12.8,12.8,19.828504319198669 + 09/10 03:30:00,12.8,12.8,19.831497954986497 + 09/10 03:40:00,12.8,12.8,19.834582647642497 + 09/10 03:50:00,12.8,12.8,19.837345107415769 + 09/10 04:00:00,12.8,12.8,19.840115863460537 + 09/10 04:10:00,12.8,12.8,19.842759936540248 + 09/10 04:20:00,12.8,12.8,19.84535465316499 + 09/10 04:30:00,12.8,12.8,19.846341287272204 + 09/10 04:40:00,12.8,12.8,19.849478822645705 + 09/10 04:50:00,12.8,12.8,19.851374751528163 + 09/10 05:00:00,12.8,12.8,19.85284731222321 + 09/10 05:10:00,12.8,12.8,19.85483242602943 + 09/10 05:20:00,12.8,12.8,19.856859860622778 + 09/10 05:30:00,12.8,12.8,19.859686583810754 + 09/10 05:40:00,12.8,12.8,19.86283042942915 + 09/10 05:50:00,12.8,12.8,19.86645374160127 + 09/10 06:00:00,12.8,12.8,19.870503649467083 + 09/10 06:10:00,12.8,12.8,19.897309778964613 + 09/10 06:20:00,12.8,12.8,19.900260401051655 + 09/10 06:30:00,12.8,12.8,19.903710987929693 + 09/10 06:40:00,12.8,12.8,19.905301659089635 + 09/10 06:50:00,12.8,12.8,19.90546570306979 + 09/10 07:00:00,12.8,12.8,19.903970703998384 + 09/10 07:10:00,12.8,12.8,18.51258594474833 + 09/10 07:20:00,12.8,12.8,18.33036038083524 + 09/10 07:30:00,12.8,12.8,18.25847644604347 + 09/10 07:40:00,12.8,12.8,18.198132925849767 + 09/10 07:50:00,12.8,12.8,18.15048578988803 + 09/10 08:00:00,12.8,12.8,18.11035978641358 + 09/10 08:10:00,12.8,12.8,18.075725807359999 + 09/10 08:20:00,12.8,12.8,18.03704992002163 + 09/10 08:30:00,12.8,12.8,18.011074465258579 + 09/10 08:40:00,12.8,12.8,17.987994145218264 + 09/10 08:50:00,12.8,12.8,17.966370265472614 + 09/10 09:00:00,12.8,12.8,17.945363634061594 + 09/10 09:10:00,12.8,12.8,17.92484565545159 + 09/10 09:20:00,12.8,12.8,17.89605773426273 + 09/10 09:30:00,12.8,12.8,17.87631821199294 + 09/10 09:40:00,12.8,12.8,17.857194052891346 + 09/10 09:50:00,12.8,12.8,17.838526535285117 + 09/10 10:00:00,12.8,12.8,17.820263658205208 + 09/10 10:10:00,12.8,12.8,17.802779994228655 + 09/10 10:20:00,12.8,12.8,17.78628373743509 + 09/10 10:30:00,12.8,12.8,17.7704913083867 + 09/10 10:40:00,12.8,12.8,17.755254524150197 + 09/10 10:50:00,12.8,12.8,17.74091137478878 + 09/10 11:00:00,12.8,12.8,17.72741767920219 + 09/10 11:10:00,12.8,12.8,17.714620902112296 + 09/10 11:20:00,12.8,12.8,17.702329770010345 + 09/10 11:30:00,12.8,12.8,17.69049138933919 + 09/10 11:40:00,12.8,12.8,17.67957805131024 + 09/10 11:50:00,12.8,12.8,17.670277923982768 + 09/10 12:00:00,12.8,12.8,17.663034199519779 + 09/10 12:10:00,12.8,12.8,17.65750356879441 + 09/10 12:20:00,12.8,12.8,17.653235388950088 + 09/10 12:30:00,12.8,12.8,17.65000816387134 + 09/10 12:40:00,12.8,12.8,17.64688891181004 + 09/10 12:50:00,12.8,12.8,17.64236866795855 + 09/10 13:00:00,12.8,12.8,17.63554677722874 + 09/10 13:10:00,12.8,12.8,17.62681012553743 + 09/10 13:20:00,12.8,12.8,17.61736767502196 + 09/10 13:30:00,12.8,12.8,17.607545953457888 + 09/10 13:40:00,12.8,12.8,17.598039357953039 + 09/10 13:50:00,12.8,12.8,17.589670323210265 + 09/10 14:00:00,12.8,12.8,17.582638604514423 + 09/10 14:10:00,12.8,12.8,17.577003537677017 + 09/10 14:20:00,12.8,12.8,17.5720871419172 + 09/10 14:30:00,12.8,12.8,17.56754005553617 + 09/10 14:40:00,12.8,12.8,17.562938765053695 + 09/10 14:50:00,12.8,12.8,17.55801871463976 + 09/10 15:00:00,12.8,12.8,17.552391126410006 + 09/10 15:10:00,12.8,12.8,18.963349600691104 + 09/10 15:20:00,12.8,12.8,19.11375651018976 + 09/10 15:30:00,12.8,12.8,19.174633430631027 + 09/10 15:40:00,12.8,12.8,19.22302778047724 + 09/10 15:50:00,12.8,12.8,19.260797921835154 + 09/10 16:00:00,12.8,12.8,19.292423971546087 + 09/10 16:10:00,12.8,12.8,19.319378826158539 + 09/10 16:20:00,12.8,12.8,19.351603915678436 + 09/10 16:30:00,12.8,12.8,19.372397119893014 + 09/10 16:40:00,12.8,12.8,19.391317293068015 + 09/10 16:50:00,12.8,12.8,19.40935481387156 + 09/10 17:00:00,12.8,12.8,19.426255156902096 + 09/10 17:10:00,12.8,12.8,19.44205506632571 + 09/10 17:20:00,12.8,12.8,19.474957729058866 + 09/10 17:30:00,12.8,12.8,19.490209168954629 + 09/10 17:40:00,12.8,12.8,19.504707998107283 + 09/10 17:50:00,12.8,12.8,19.518381244253498 + 09/10 18:00:00,12.8,12.8,19.53133636600674 + 09/10 18:10:00,12.8,12.8,19.544285451699133 + 09/10 18:20:00,12.8,12.8,19.557047260137915 + 09/10 18:30:00,12.8,12.8,19.569871560892236 + 09/10 18:40:00,12.8,12.8,19.58270631497382 + 09/10 18:50:00,12.8,12.8,19.59562976995784 + 09/10 19:00:00,12.8,12.8,19.60864469172274 + 09/10 19:10:00,12.8,12.8,19.621190761665117 + 09/10 19:20:00,12.8,12.8,19.633332288088327 + 09/10 19:30:00,12.8,12.8,19.644899395382077 + 09/10 19:40:00,12.8,12.8,19.655921269427908 + 09/10 19:50:00,12.8,12.8,19.666494552489107 + 09/10 20:00:00,12.8,12.8,19.676608757887835 + 09/10 20:10:00,12.8,12.8,19.66432074437124 + 09/10 20:20:00,12.8,12.8,19.67359685018384 + 09/10 20:30:00,12.8,12.8,19.682607318666919 + 09/10 20:40:00,12.8,12.8,19.69133629679248 + 09/10 20:50:00,12.8,12.8,19.69984223106638 + 09/10 21:00:00,12.8,12.8,19.708224200554747 + 09/10 21:10:00,12.8,12.8,19.716596055101605 + 09/10 21:20:00,12.8,12.8,19.724647796375959 + 09/10 21:30:00,12.8,12.8,19.73243977177745 + 09/10 21:40:00,12.8,12.8,19.739860540767205 + 09/10 21:50:00,12.8,12.8,19.74691835715722 + 09/10 22:00:00,12.8,12.8,19.753641022873905 + 09/10 22:10:00,12.8,12.8,19.759799228957559 + 09/10 22:20:00,12.8,12.8,19.765233623657488 + 09/10 22:30:00,12.8,12.8,19.76978642326347 + 09/10 22:40:00,12.8,12.8,19.773433230004558 + 09/10 22:50:00,12.8,12.8,19.77621001852617 + 09/10 23:00:00,12.8,12.8,19.778166458864605 + 09/10 23:10:00,12.8,12.8,19.779706143558096 + 09/10 23:20:00,12.8,12.8,19.781760054791126 + 09/10 23:30:00,12.8,12.8,19.784075736171805 + 09/10 23:40:00,12.8,12.8,19.78702806218266 + 09/10 23:50:00,12.8,12.8,19.790406775509124 + 09/10 24:00:00,12.8,12.8,19.794206920720776 + 09/11 00:10:00,12.8,12.8,19.7970881566192 + 09/11 00:20:00,12.8,12.8,19.80148662221577 + 09/11 00:30:00,12.8,12.8,19.805732251899149 + 09/11 00:40:00,12.8,12.8,19.81044305385251 + 09/11 00:50:00,12.8,12.8,19.815214139092597 + 09/11 01:00:00,12.8,12.8,19.82022798333112 + 09/11 01:10:00,12.8,12.8,19.825208833399544 + 09/11 01:20:00,12.8,12.8,19.829986674380554 + 09/11 01:30:00,12.8,12.8,19.834545893821976 + 09/11 01:40:00,12.8,12.8,19.838698120451516 + 09/11 01:50:00,12.8,12.8,19.842658272844337 + 09/11 02:00:00,12.8,12.8,19.846419923089529 + 09/11 02:10:00,12.846246246246248,12.846246246246248,19.849683135527486 + 09/11 02:20:00,12.892492492492494,12.892492492492494,19.8529250252558 + 09/11 02:30:00,12.938738738738739,12.938738738738739,19.856199918368227 + 09/11 02:40:00,12.984984984984987,12.984984984984987,19.859619550451787 + 09/11 02:50:00,13.031231231231232,13.031231231231232,19.863400978060925 + 09/11 03:00:00,13.077477477477478,13.077477477477478,19.866650741905944 + 09/11 03:10:00,13.077477477477478,13.077477477477478,19.870688826547757 + 09/11 03:20:00,13.077477477477478,13.077477477477478,19.875177150107839 + 09/11 03:30:00,13.077477477477478,13.077477477477478,19.87945889845608 + 09/11 03:40:00,13.077477477477478,13.077477477477478,19.88369859647854 + 09/11 03:50:00,13.077477477477478,13.077477477477478,19.887673114505163 + 09/11 04:00:00,13.077477477477478,13.077477477477478,19.89141560774732 + 09/11 04:10:00,13.052252252252253,13.052252252252253,19.89472413477127 + 09/11 04:20:00,13.027027027027028,13.027027027027028,19.897806580874645 + 09/11 04:30:00,13.001801801801803,13.001801801801803,19.899971457356373 + 09/11 04:40:00,12.976576576576577,12.976576576576577,19.901272389971724 + 09/11 04:50:00,12.951351351351353,12.951351351351353,19.901640579788244 + 09/11 05:00:00,12.926126126126127,12.926126126126127,19.90113570889038 + 09/11 05:10:00,12.976576576576577,12.976576576576577,19.89775883740272 + 09/11 05:20:00,13.027027027027028,13.027027027027028,19.89698793608965 + 09/11 05:30:00,13.077477477477478,13.077477477477478,19.896479295241876 + 09/11 05:40:00,13.127927927927928,13.127927927927928,19.896150956415945 + 09/11 05:50:00,13.17837837837838,13.17837837837838,19.896878698866087 + 09/11 06:00:00,13.22882882882883,13.22882882882883,19.89819317403698 + 09/11 06:10:00,13.203603603603604,13.203603603603604,17.91215067527103 + 09/11 06:20:00,13.17837837837838,13.17837837837838,17.668234297254249 + 09/11 06:30:00,13.153153153153154,13.153153153153154,17.579686082939398 + 09/11 06:40:00,13.12792792792793,13.12792792792793,17.508785823433184 + 09/11 06:50:00,13.102702702702704,13.102702702702704,17.453291453327656 + 09/11 07:00:00,13.077477477477478,13.077477477477478,17.406813133372109 + 09/11 07:05:00,13.006006006006008,13.006006006006008,15.918052160812378 + 09/11 07:10:00,13.006006006006008,13.006006006006008,15.924513888581228 + 09/11 07:15:00,12.934534534534535,12.934534534534535,15.69483383668072 + 09/11 07:20:00,12.934534534534535,12.934534534534535,15.693100412305716 + 09/11 07:25:00,12.863063063063063,12.863063063063063,15.58743149912231 + 09/11 07:30:00,12.863063063063063,12.863063063063063,15.587352801481126 + 09/11 07:40:00,12.8,12.8,15.497043566975814 + 09/11 07:50:00,12.8,12.8,15.419577056553056 + 09/11 08:00:00,12.8,12.8,15.350790248548826 + 09/11 08:05:00,12.8,12.8,15.262620893626404 + 09/11 08:10:00,12.8,12.8,15.262585595215864 + 09/11 08:20:00,12.8,12.8,15.1967042895164 + 09/11 08:30:00,12.8,12.8,15.142738694860629 + 09/11 08:40:00,12.8,12.8,15.092218505943931 + 09/11 08:50:00,12.8,12.8,15.04460309676996 + 09/11 09:00:00,12.8,12.8,14.999706768999906 + 09/11 09:10:00,12.8,12.8,14.957166181666486 + 09/11 09:20:00,12.8,12.8,14.90618378034747 + 09/11 09:30:00,12.8,12.8,14.867472288750158 + 09/11 09:40:00,12.8,12.8,14.830778953303149 + 09/11 09:50:00,12.8,12.8,14.796201115244744 + 09/11 10:00:00,12.8,12.8,14.763884142471408 + 09/11 10:10:00,12.8,12.8,14.733631677665059 + 09/11 10:20:00,12.8,12.8,14.701703844048044 + 09/11 10:30:00,12.8,12.8,14.674861578341073 + 09/11 10:40:00,12.8,12.8,14.649259270924649 + 09/11 10:50:00,12.8,12.8,14.624303302343602 + 09/11 11:00:00,12.8,12.8,14.599799714339213 + 09/11 11:10:00,12.8,12.8,14.576097267787205 + 09/11 11:20:00,12.8,12.8,14.562690367911295 + 09/11 11:30:00,12.8,12.8,14.540458453246539 + 09/11 11:40:00,12.8,12.8,14.518984480287728 + 09/11 11:50:00,12.8,12.8,14.498810459018895 + 09/11 12:00:00,12.8,12.8,14.47983908456068 + 09/11 12:10:00,12.8,12.8,14.461919610699529 + 09/11 12:20:00,12.8,12.8,14.435773379167529 + 09/11 12:30:00,12.8,12.8,14.42050189504411 + 09/11 12:40:00,12.8,12.8,14.406278928862414 + 09/11 12:50:00,12.8,12.8,14.39238274122771 + 09/11 13:00:00,12.8,12.8,14.37866154414277 + 09/11 13:10:00,12.8,12.8,14.365307001101304 + 09/11 13:20:00,12.8,12.8,14.355274285108056 + 09/11 13:30:00,12.8,12.8,14.341527464743882 + 09/11 13:40:00,12.8,12.8,14.32794519498684 + 09/11 13:50:00,12.8,12.8,14.315204031097434 + 09/11 14:00:00,12.8,12.8,14.303473807538463 + 09/11 14:10:00,12.8,12.8,14.292182325446177 + 09/11 14:20:00,12.8,12.8,14.285319222531408 + 09/11 14:30:00,12.8,12.8,14.276555150170007 + 09/11 14:40:00,12.8,12.8,14.268694340113884 + 09/11 14:50:00,12.8,12.8,14.26161614605333 + 09/11 15:00:00,12.8,12.8,14.254986382336933 + 09/11 15:05:00,12.8,12.8,16.406555627840818 + 09/11 15:10:00,12.8,12.8,16.401278324162097 + 09/11 15:20:00,12.8,12.8,16.65621749885517 + 09/11 15:30:00,12.8,12.8,16.758759895247299 + 09/11 15:40:00,12.8,12.8,16.834148531251473 + 09/11 15:50:00,12.8,12.8,16.89183799325602 + 09/11 16:00:00,12.8,12.8,16.939229806916999 + 09/11 16:10:00,12.8,12.8,17.00541353440802 + 09/11 16:20:00,12.8,12.8,17.060174797060016 + 09/11 16:30:00,12.8,12.8,17.092628649270645 + 09/11 16:40:00,12.8,12.8,17.121901381347575 + 09/11 16:50:00,12.8,12.8,17.148698345230107 + 09/11 17:00:00,12.8,12.8,17.173419560026724 + 09/11 17:10:00,12.8,12.8,17.209262410756577 + 09/11 17:20:00,12.8,12.8,17.236961206912633 + 09/11 17:30:00,12.8,12.8,17.257886761907046 + 09/11 17:40:00,12.8,12.8,17.277968227979348 + 09/11 17:50:00,12.8,12.8,17.297599290408834 + 09/11 18:00:00,12.8,12.8,17.316962683455058 + 09/11 18:10:00,12.8,12.8,17.336059128832987 + 09/11 18:20:00,12.8,12.8,17.354719652190224 + 09/11 18:30:00,12.8,12.8,17.372960114848696 + 09/11 18:40:00,12.8,12.8,17.390637122355217 + 09/11 18:50:00,12.8,12.8,17.407681373541498 + 09/11 19:00:00,12.8,12.8,17.423973273530949 + 09/11 19:10:00,12.8,12.8,17.452364170913936 + 09/11 19:20:00,12.8,12.8,17.467788107614454 + 09/11 19:30:00,12.8,12.8,17.482065128981753 + 09/11 19:40:00,12.8,12.8,17.495744129826094 + 09/11 19:50:00,12.8,12.8,17.508870059605476 + 09/11 20:00:00,12.8,12.8,17.521573838128945 + 09/11 20:10:00,12.8,12.8,17.51143095226019 + 09/11 20:20:00,12.8,12.8,17.527118559503628 + 09/11 20:30:00,12.8,12.8,17.537950267772925 + 09/11 20:40:00,12.8,12.8,17.548138773396049 + 09/11 20:50:00,12.8,12.8,17.55786937023033 + 09/11 21:00:00,12.8,12.8,17.567114051738665 + 09/11 21:10:00,12.8,12.8,17.575806502553193 + 09/11 21:20:00,12.8,12.8,17.583896317305255 + 09/11 21:30:00,12.8,12.8,17.591500998849875 + 09/11 21:40:00,12.8,12.8,17.598620805590238 + 09/11 21:50:00,12.8,12.8,17.605263782224279 + 09/11 22:00:00,12.8,12.8,17.61159922091104 + 09/11 22:10:00,12.8,12.8,18.973849632017449 + 09/11 22:20:00,12.8,12.8,19.12027871745053 + 09/11 22:30:00,12.8,12.8,19.184887513431677 + 09/11 22:40:00,12.8,12.8,19.23664899870307 + 09/11 22:50:00,12.8,12.8,19.278450720502858 + 09/11 23:00:00,12.8,12.8,19.31373958455123 + 09/11 23:10:00,12.8,12.8,19.344162521338764 + 09/11 23:20:00,12.8,12.8,19.370530568521809 + 09/11 23:30:00,12.8,12.8,19.394969131926155 + 09/11 23:40:00,12.8,12.8,19.416908971076837 + 09/11 23:50:00,12.8,12.8,19.43755816312907 + 09/11 24:00:00,12.8,12.8,19.45664070220591 + 09/12 00:10:00,12.8,12.8,19.47452114238832 + 09/12 00:20:00,12.8,12.8,19.491182788339918 + 09/12 00:30:00,12.8,12.8,19.507172112869005 + 09/12 00:40:00,12.8,12.8,19.5223264301267 + 09/12 00:50:00,12.8,12.8,19.54001270629975 + 09/12 01:00:00,12.8,12.8,19.55388521116802 + 09/12 01:10:00,12.846246246246248,12.846246246246248,19.568567822549484 + 09/12 01:20:00,12.892492492492494,12.892492492492494,19.581880293167328 + 09/12 01:30:00,12.938738738738739,12.938738738738739,19.594658952984763 + 09/12 01:40:00,12.984984984984987,12.984984984984987,19.606887279360778 + 09/12 01:50:00,13.031231231231232,13.031231231231232,19.618581386672717 + 09/12 02:00:00,13.077477477477478,13.077477477477478,19.62979532662789 + 09/12 02:10:00,13.052252252252253,13.052252252252253,19.64042350793457 + 09/12 02:20:00,13.027027027027028,13.027027027027028,19.650157363773407 + 09/12 02:30:00,13.001801801801803,13.001801801801803,19.659545041598205 + 09/12 02:40:00,12.976576576576577,12.976576576576577,19.66840765683328 + 09/12 02:50:00,12.951351351351353,12.951351351351353,19.67690019340532 + 09/12 03:00:00,12.926126126126127,12.926126126126127,19.684957824126806 + 09/12 03:10:00,12.905105105105106,12.905105105105106,19.69274691335336 + 09/12 03:20:00,12.884084084084084,12.884084084084084,19.70066474426344 + 09/12 03:30:00,12.863063063063063,12.863063063063063,19.70809402431682 + 09/12 03:40:00,12.842042042042042,12.842042042042042,19.71329626737701 + 09/12 03:50:00,12.821021021021022,12.821021021021022,19.71969573909694 + 09/12 04:00:00,12.8,12.8,19.725377263413717 + 09/12 04:10:00,12.8,12.8,19.73129242825045 + 09/12 04:20:00,12.8,12.8,19.737025032234685 + 09/12 04:30:00,12.8,12.8,19.742598703601315 + 09/12 04:40:00,12.8,12.8,19.74802717013244 + 09/12 04:50:00,12.8,12.8,19.75334751870417 + 09/12 05:00:00,12.8,12.8,19.75862939330577 + 09/12 05:10:00,12.8,12.8,19.763790218338966 + 09/12 05:20:00,12.8,12.8,19.768797378335465 + 09/12 05:30:00,12.8,12.8,19.77361672871945 + 09/12 05:40:00,12.8,12.8,19.77820734558521 + 09/12 05:50:00,12.8,12.8,19.78271804926661 + 09/12 06:00:00,12.8,12.8,19.78707475940155 + 09/12 06:10:00,12.846246246246248,12.846246246246248,17.802389210224236 + 09/12 06:20:00,12.892492492492494,12.892492492492494,17.55120676577738 + 09/12 06:30:00,12.938738738738739,12.938738738738739,17.465142213370084 + 09/12 06:40:00,12.984984984984987,12.984984984984987,17.395874546515026 + 09/12 06:50:00,13.031231231231232,13.031231231231232,17.3443883269534 + 09/12 07:00:00,13.077477477477478,13.077477477477478,17.30164093843875 + 09/12 07:05:00,12.95975975975976,12.95975975975976,15.814837026247666 + 09/12 07:10:00,12.95975975975976,12.95975975975976,15.821349657891834 + 09/12 07:15:00,12.842042042042042,12.842042042042042,15.595909222239773 + 09/12 07:20:00,12.842042042042042,12.842042042042042,15.594215805040017 + 09/12 07:30:00,12.8,12.8,15.491984570637687 + 09/12 07:35:00,12.8,12.8,15.409245139528366 + 09/12 07:40:00,12.8,12.8,15.407827587115288 + 09/12 07:50:00,12.8,12.8,15.335724202609205 + 09/12 08:00:00,12.8,12.8,15.271352369138555 + 09/12 08:03:19,12.8,12.8,15.187751164983537 + 09/12 08:06:40,12.8,12.8,15.187131296219038 + 09/12 08:10:00,12.8,12.8,15.187168598928489 + 09/12 08:20:00,12.8,12.8,15.123989578385317 + 09/12 08:30:00,12.8,12.8,15.073256297317546 + 09/12 08:40:00,12.8,12.8,15.025778257210249 + 09/12 08:50:00,12.8,12.8,14.981282590200838 + 09/12 09:00:00,12.8,12.8,14.939551177739724 + 09/12 09:10:00,12.8,12.8,14.899997988108146 + 09/12 09:20:00,12.8,12.8,14.851747446992274 + 09/12 09:30:00,12.8,12.8,14.815327051308725 + 09/12 09:40:00,12.8,12.8,14.780515442341939 + 09/12 09:50:00,12.8,12.8,14.747409736241539 + 09/12 10:00:00,12.8,12.8,14.716119712511903 + 09/12 10:10:00,12.8,12.8,14.686496687887387 + 09/12 10:20:00,12.8,12.8,14.654766045663596 + 09/12 10:30:00,12.8,12.8,14.627734661626075 + 09/12 10:40:00,12.8,12.8,14.601969968630288 + 09/12 10:50:00,12.8,12.8,14.577501077275948 + 09/12 11:00:00,12.8,12.8,14.554189750472748 + 09/12 11:10:00,12.8,12.8,14.532002176855283 + 09/12 11:20:00,12.8,12.8,14.520636757784266 + 09/12 11:30:00,12.8,12.8,14.500806383970188 + 09/12 11:40:00,12.8,12.8,14.482191186369063 + 09/12 11:50:00,12.8,12.8,14.465425230630294 + 09/12 12:00:00,12.8,12.8,14.45045605410075 + 09/12 12:10:00,12.8,12.8,14.43729385398996 + 09/12 12:20:00,12.8,12.8,14.416232597007895 + 09/12 12:30:00,12.8,12.8,14.406304932650672 + 09/12 12:40:00,12.8,12.8,14.397131234247509 + 09/12 12:50:00,12.8,12.8,14.387189795698694 + 09/12 13:00:00,12.8,12.8,14.376051695173056 + 09/12 13:10:00,12.8,12.8,14.363644247615545 + 09/12 13:20:00,12.8,12.8,14.353894440950203 + 09/12 13:30:00,12.8,12.8,14.34007558798189 + 09/12 13:40:00,12.8,12.8,14.326518069025007 + 09/12 13:50:00,12.8,12.8,14.314163930753593 + 09/12 14:00:00,12.8,12.8,14.303342271370785 + 09/12 14:10:00,12.8,12.8,14.294289229308453 + 09/12 14:20:00,12.8,12.8,14.289696702783952 + 09/12 14:30:00,12.8,12.8,14.28330104542669 + 09/12 14:40:00,12.8,12.8,14.277136010394664 + 09/12 14:50:00,12.8,12.8,14.270748755219657 + 09/12 15:00:00,12.8,12.8,14.26295126861254 + 09/12 15:05:00,12.8,12.8,16.410395058420847 + 09/12 15:10:00,12.8,12.8,16.406395502316309 + 09/12 15:20:00,12.8,12.8,16.657198247477426 + 09/12 15:30:00,12.8,12.8,16.75513140994262 + 09/12 15:40:00,12.8,12.8,16.828699488321584 + 09/12 15:50:00,12.8,12.8,16.887945045542037 + 09/12 16:00:00,12.8,12.8,16.93699807876897 + 09/12 16:10:00,12.8,12.8,17.000544337433398 + 09/12 16:20:00,12.8,12.8,17.05623773720759 + 09/12 16:30:00,12.8,12.8,17.088447023783276 + 09/12 16:40:00,12.8,12.8,17.11779400463614 + 09/12 16:50:00,12.8,12.8,17.14490680655976 + 09/12 17:00:00,12.8,12.8,17.170076966266124 + 09/12 17:10:00,12.8,12.8,17.2069461614442 + 09/12 17:15:00,12.8,12.8,17.236618495301376 + 09/12 17:20:00,12.8,12.8,17.236232776529876 + 09/12 17:30:00,12.8,12.8,17.258229153608619 + 09/12 17:40:00,12.8,12.8,17.279949679068044 + 09/12 17:50:00,12.8,12.8,17.30078176386455 + 09/12 18:00:00,12.8,12.8,17.32111010484534 + 09/12 18:10:00,12.8,12.8,17.341061662643413 + 09/12 18:20:00,12.8,12.8,17.360380083865807 + 09/12 18:30:00,12.8,12.8,17.379102751781379 + 09/12 18:40:00,12.8,12.8,17.39709768261097 + 09/12 18:50:00,12.8,12.8,17.414343184362069 + 09/12 19:00:00,12.8,12.8,17.430815987291017 + 09/12 19:10:00,12.8,12.8,17.45934471893223 + 09/12 19:20:00,12.8,12.8,17.47470903428187 + 09/12 19:30:00,12.8,12.8,17.488634196338006 + 09/12 19:40:00,12.8,12.8,17.501726919943605 + 09/12 19:50:00,12.8,12.8,17.51407739190071 + 09/12 20:00:00,12.8,12.8,17.525779777678936 + 09/12 20:10:00,12.8,12.8,17.514517393004739 + 09/12 20:20:00,12.8,12.8,17.52926429279565 + 09/12 20:30:00,12.8,12.8,17.539500315483815 + 09/12 20:40:00,12.8,12.8,17.549299684544729 + 09/12 20:50:00,12.8,12.8,17.558875633655448 + 09/12 21:00:00,12.8,12.8,17.56832745750268 + 09/12 21:10:00,12.8,12.8,17.577796115521737 + 09/12 21:20:00,12.8,12.8,17.586580038294735 + 09/12 21:30:00,12.8,12.8,17.59473253768799 + 09/12 21:40:00,12.8,12.8,17.602314912491147 + 09/12 21:50:00,12.8,12.8,17.60936038603051 + 09/12 22:00:00,12.8,12.8,17.61594576588469 + 09/12 22:10:00,12.8,12.8,18.978064009252319 + 09/12 22:20:00,12.8,12.8,19.124338294612174 + 09/12 22:30:00,12.8,12.8,19.188854477118065 + 09/12 22:40:00,12.8,12.8,19.240572203903019 + 09/12 22:50:00,12.8,12.8,19.28220853176817 + 09/12 23:00:00,12.8,12.8,19.317277623609959 + 09/12 23:10:00,12.8,12.8,19.347819844323554 + 09/12 23:20:00,12.8,12.8,19.37790331536496 + 09/12 23:30:00,12.8,12.8,19.401144252841399 + 09/12 23:40:00,12.8,12.8,19.423175436580594 + 09/12 23:50:00,12.8,12.8,19.442829267980924 + 09/12 24:00:00,12.8,12.8,19.461256965599504 + 09/13 00:10:00,12.821021021021022,12.821021021021022,19.478349067586089 + 09/13 00:20:00,12.842042042042042,12.842042042042042,19.495227391232115 + 09/13 00:30:00,12.863063063063063,12.863063063063063,19.510920740159596 + 09/13 00:40:00,12.884084084084084,12.884084084084084,19.52594823126961 + 09/13 00:50:00,12.905105105105106,12.905105105105106,19.54012200174228 + 09/13 01:00:00,12.926126126126127,12.926126126126127,19.55378960280644 + 09/13 01:10:00,12.976576576576577,12.976576576576577,19.566941847986116 + 09/13 01:20:00,13.027027027027028,13.027027027027028,19.57948263305037 + 09/13 01:30:00,13.077477477477478,13.077477477477478,19.591618404138328 + 09/13 01:40:00,13.127927927927928,13.127927927927928,19.60330027684128 + 09/13 01:50:00,13.17837837837838,13.17837837837838,19.614662126104883 + 09/13 02:00:00,13.22882882882883,13.22882882882883,19.625741970613054 + 09/13 02:10:00,13.22882882882883,13.22882882882883,19.63640339268499 + 09/13 02:20:00,13.22882882882883,13.22882882882883,19.646169635625254 + 09/13 02:30:00,13.22882882882883,13.22882882882883,19.655518522361594 + 09/13 02:40:00,13.22882882882883,13.22882882882883,19.664367079935418 + 09/13 02:50:00,13.22882882882883,13.22882882882883,19.672938724692324 + 09/13 03:00:00,13.22882882882883,13.22882882882883,19.681179221303798 + 09/13 03:10:00,13.22882882882883,13.22882882882883,19.68910797349689 + 09/13 03:20:00,13.22882882882883,13.22882882882883,19.696722621606314 + 09/13 03:30:00,13.22882882882883,13.22882882882883,19.704006021264829 + 09/13 03:40:00,13.22882882882883,13.22882882882883,19.711124354653174 + 09/13 03:50:00,13.22882882882883,13.22882882882883,19.718003597276696 + 09/13 04:00:00,13.22882882882883,13.22882882882883,19.724656001638388 + 09/13 04:10:00,13.24984984984985,13.24984984984985,19.731105825208006 + 09/13 04:20:00,13.270870870870871,13.270870870870871,19.737397415433393 + 09/13 04:30:00,13.291891891891894,13.291891891891894,19.743652132569549 + 09/13 04:40:00,13.312912912912914,13.312912912912914,19.749821477955245 + 09/13 04:50:00,13.333933933933935,13.333933933933935,19.755881393429726 + 09/13 05:00:00,13.354954954954956,13.354954954954956,19.761833972675015 + 09/13 05:10:00,13.401201201201202,13.401201201201202,19.76762510846427 + 09/13 05:20:00,13.447447447447449,13.447447447447449,19.773964398277543 + 09/13 05:30:00,13.493693693693695,13.493693693693695,19.780230147762468 + 09/13 05:40:00,13.539939939939942,13.539939939939942,19.7865329667902 + 09/13 05:50:00,13.586186186186187,13.586186186186187,19.792750808237373 + 09/13 06:00:00,13.632432432432433,13.632432432432433,19.79884717554583 + 09/13 06:10:00,13.611411411411412,13.611411411411412,17.808769956823214 + 09/13 06:20:00,13.590390390390392,13.590390390390392,17.57857147787013 + 09/13 06:30:00,13.56936936936937,13.56936936936937,17.494973651826436 + 09/13 06:40:00,13.548348348348349,13.548348348348349,17.430082224321518 + 09/13 06:50:00,13.527327327327328,13.527327327327328,17.378626050335876 + 09/13 07:00:00,13.506306306306307,13.506306306306307,17.335884487405879 + 09/13 07:05:00,13.481081081081081,13.481081081081081,15.847859766310192 + 09/13 07:10:00,13.481081081081081,13.481081081081081,15.854961724383298 + 09/13 07:15:00,13.455855855855857,13.455855855855857,15.628197877004184 + 09/13 07:20:00,13.455855855855857,13.455855855855857,15.626390681963342 + 09/13 07:30:00,13.430630630630632,13.430630630630632,15.524241458100582 + 09/13 07:40:00,13.405405405405407,13.405405405405407,15.44155401245745 + 09/13 07:50:00,13.380180180180182,13.380180180180182,15.369932271297307 + 09/13 08:00:00,13.354954954954956,13.354954954954956,15.306907922073963 + 09/13 08:03:19,13.283483483483485,13.283483483483485,15.22418530869229 + 09/13 08:06:40,13.283483483483485,13.283483483483485,15.223827393058226 + 09/13 08:10:00,13.283483483483485,13.283483483483485,15.223784289760705 + 09/13 08:20:00,13.212012012012013,13.212012012012013,15.16193012069896 + 09/13 08:30:00,13.140540540540542,13.140540540540542,15.112329287352355 + 09/13 08:40:00,13.06906906906907,13.06906906906907,15.064384583233739 + 09/13 08:50:00,12.997597597597599,12.997597597597599,15.013160710761279 + 09/13 09:00:00,12.926126126126127,12.926126126126127,14.9642832294533 + 09/13 09:10:00,12.87987987987988,12.87987987987988,14.916440761133897 + 09/13 09:20:00,12.833633633633636,12.833633633633636,14.867109755442942 + 09/13 09:30:00,12.8,12.8,14.829491470893912 + 09/13 09:40:00,12.8,12.8,14.794299047503222 + 09/13 09:50:00,12.8,12.8,14.760663185067008 + 09/13 10:00:00,12.8,12.8,14.729029455401016 + 09/13 10:10:00,12.8,12.8,14.6990991547304 + 09/13 10:20:00,12.8,12.8,14.670989963283846 + 09/13 10:30:00,12.8,12.8,14.647269574639902 + 09/13 10:40:00,12.8,12.8,14.625484278716794 + 09/13 10:50:00,12.8,12.8,14.605710358373435 + 09/13 11:00:00,12.8,12.8,14.588335963497615 + 09/13 11:10:00,12.8,12.8,14.57373236746764 + 09/13 11:20:00,12.8,12.8,14.570195482911665 + 09/13 11:30:00,12.8,12.8,14.559080337105917 + 09/13 11:40:00,12.8,12.8,14.547961357925294 + 09/13 11:50:00,12.8,12.8,14.534542208890084 + 09/13 12:00:00,12.8,12.8,14.51779453973064 + 09/13 12:10:00,12.8,12.8,14.497773716421803 + 09/13 12:20:00,12.8,12.8,14.467068685558897 + 09/13 12:30:00,12.8,12.8,14.444658774381895 + 09/13 12:40:00,12.8,12.8,14.4225970785347 + 09/13 12:50:00,12.8,12.8,14.402573527733069 + 09/13 13:00:00,12.8,12.8,14.385308331354164 + 09/13 13:10:00,12.8,12.8,14.370650929022661 + 09/13 13:20:00,12.8,12.8,14.359297415733474 + 09/13 13:30:00,12.8,12.8,14.34607690829742 + 09/13 13:40:00,12.8,12.8,14.333795616623034 + 09/13 13:50:00,12.8,12.8,14.322784433766638 + 09/13 14:00:00,12.8,12.8,14.312853344772038 + 09/13 14:10:00,12.8,12.8,14.303354963776789 + 09/13 14:20:00,12.8,12.8,14.299131601826977 + 09/13 14:30:00,12.8,12.8,14.294711609251364 + 09/13 14:40:00,12.8,12.8,14.289725374664427 + 09/13 14:50:00,12.8,12.8,14.286175858858944 + 09/13 15:00:00,12.8,12.8,14.28114649337149 + 09/13 15:05:00,12.8,12.8,16.432327295143446 + 09/13 15:10:00,12.8,12.8,16.43126529987269 + 09/13 15:20:00,12.8,12.8,16.682592637459896 + 09/13 15:30:00,12.8,12.8,16.775102255839529 + 09/13 15:40:00,12.8,12.8,16.85511763194965 + 09/13 15:50:00,12.8,12.8,16.913474034392583 + 09/13 16:00:00,12.8,12.8,16.959590556072436 + 09/13 16:10:00,12.8,12.8,17.02585321968378 + 09/13 16:20:00,12.8,12.8,17.08239085733802 + 09/13 16:30:00,12.8,12.8,17.115685892651415 + 09/13 16:40:00,12.8,12.8,17.14590063078183 + 09/13 16:50:00,12.8,12.8,17.17399601013451 + 09/13 17:00:00,12.8,12.8,17.200522900661189 + 09/13 17:10:00,12.8,12.8,17.2389602158608 + 09/13 17:20:00,12.8,12.8,17.268454904582467 + 09/13 17:30:00,12.8,12.8,17.291328140943987 + 09/13 17:40:00,12.8,12.8,17.31318401551853 + 09/13 17:50:00,12.8,12.8,17.334260798562427 + 09/13 18:00:00,12.8,12.8,17.35457130412533 + 09/13 18:10:00,12.8,12.8,17.37404990223002 + 09/13 18:20:00,12.8,12.8,17.395152541235125 + 09/13 18:30:00,12.8,12.8,17.415397932969058 + 09/13 18:40:00,12.8,12.8,17.435143113284008 + 09/13 18:50:00,12.85885885885886,12.85885885885886,17.45381351376793 + 09/13 19:00:00,12.926126126126127,12.926126126126127,17.471547875061515 + 09/13 19:10:00,13.022822822822823,13.022822822822823,17.501424678608978 + 09/13 19:20:00,13.11951951951952,13.11951951951952,17.517479284367508 + 09/13 19:30:00,13.216216216216216,13.216216216216216,17.5322563869816 + 09/13 19:40:00,13.312912912912914,13.312912912912914,17.546101391633046 + 09/13 19:50:00,13.40960960960961,13.40960960960961,17.559183272391093 + 09/13 20:00:00,13.506306306306307,13.506306306306307,17.571623305260663 + 09/13 20:10:00,13.527327327327328,13.527327327327328,17.561277086185219 + 09/13 20:20:00,13.548348348348349,13.548348348348349,17.577354661461326 + 09/13 20:30:00,13.56936936936937,13.56936936936937,17.588277665950863 + 09/13 20:40:00,13.590390390390392,13.590390390390392,17.598673978102057 + 09/13 20:50:00,13.611411411411412,13.611411411411412,17.608548145436087 + 09/13 21:00:00,13.632432432432433,13.632432432432433,17.617938591989068 + 09/13 21:10:00,13.67867867867868,13.67867867867868,17.626953632061139 + 09/13 21:20:00,13.724924924924924,13.724924924924924,17.6351746578762 + 09/13 21:30:00,13.771171171171173,13.771171171171173,17.643219624606379 + 09/13 21:40:00,13.817417417417419,13.817417417417419,17.65099670743517 + 09/13 21:50:00,13.863663663663666,13.863663663663666,17.658558360344239 + 09/13 22:00:00,13.90990990990991,13.90990990990991,17.666033312218425 + 09/13 22:10:00,13.939339339339341,13.939339339339341,19.035781972983867 + 09/13 22:20:00,13.968768768768769,13.968768768768769,19.181695218741724 + 09/13 22:30:00,13.998198198198198,13.998198198198198,19.246934270340807 + 09/13 22:40:00,14.027627627627627,14.027627627627627,19.298779731333043 + 09/13 22:50:00,14.057057057057058,14.057057057057058,19.340998535689637 + 09/13 23:00:00,14.086486486486488,14.086486486486488,19.376719727437714 + 09/13 23:10:00,14.103303303303303,14.103303303303303,19.407756088070465 + 09/13 23:20:00,14.12012012012012,14.12012012012012,19.435005515897559 + 09/13 23:30:00,14.136936936936938,14.136936936936938,19.45944709668666 + 09/13 23:40:00,14.153753753753755,14.153753753753755,19.481698130849734 + 09/13 23:50:00,14.170570570570572,14.170570570570572,19.502187800088494 + 09/13 24:00:00,14.187387387387388,14.187387387387388,19.521186347553127 + 09/14 00:10:00,14.237837837837838,14.237837837837838,19.538690543483498 + 09/14 00:20:00,14.288288288288289,14.288288288288289,19.554939221296619 + 09/14 00:30:00,14.338738738738739,14.338738738738739,19.57036793199011 + 09/14 00:40:00,14.389189189189189,14.389189189189189,19.585078640116828 + 09/14 00:50:00,14.43963963963964,14.43963963963964,19.59916112085747 + 09/14 01:00:00,14.49009009009009,14.49009009009009,19.61268164423881 + 09/14 01:10:00,14.49009009009009,14.49009009009009,19.62613191158107 + 09/14 01:20:00,14.49009009009009,14.49009009009009,19.63920097059536 + 09/14 01:30:00,14.49009009009009,14.49009009009009,19.651756575647185 + 09/14 01:40:00,14.49009009009009,14.49009009009009,19.663820708168957 + 09/14 01:50:00,14.49009009009009,14.49009009009009,19.675366636214908 + 09/14 02:00:00,14.49009009009009,14.49009009009009,19.686422486911025 + 09/14 02:10:00,14.511111111111111,14.511111111111111,19.696611896799955 + 09/14 02:20:00,14.532132132132132,14.532132132132132,19.706497946716227 + 09/14 02:30:00,14.553153153153153,14.553153153153153,19.716090249193277 + 09/14 02:40:00,14.574174174174175,14.574174174174175,19.725400508348636 + 09/14 02:50:00,14.595195195195196,14.595195195195196,19.734461104500605 + 09/14 03:00:00,14.616216216216217,14.616216216216217,19.74319713373958 + 09/14 03:10:00,14.662462462462463,14.662462462462463,19.752310232156945 + 09/14 03:20:00,14.70870870870871,14.70870870870871,19.76111603665781 + 09/14 03:30:00,14.754954954954954,14.754954954954954,19.769750772250029 + 09/14 03:40:00,14.8012012012012,14.8012012012012,19.778186814944683 + 09/14 03:50:00,14.847447447447447,14.847447447447447,19.786405636838546 + 09/14 04:00:00,14.893693693693694,14.893693693693694,19.79450801167934 + 09/14 04:10:00,14.91891891891892,14.91891891891892,19.802428907071339 + 09/14 04:20:00,14.944144144144144,14.944144144144144,19.810140992426545 + 09/14 04:30:00,14.96936936936937,14.96936936936937,19.81764672864073 + 09/14 04:40:00,14.994594594594595,14.994594594594595,19.82490485016282 + 09/14 04:50:00,15.01981981981982,15.01981981981982,19.831952032969565 + 09/14 05:00:00,15.045045045045045,15.045045045045045,19.8388835026861 + 09/14 05:10:00,15.045045045045045,15.045045045045045,19.84528104481238 + 09/14 05:20:00,15.045045045045045,15.045045045045045,19.85164850773804 + 09/14 05:30:00,15.045045045045045,15.045045045045045,19.85782552337456 + 09/14 05:40:00,15.045045045045045,15.045045045045045,19.863808846435089 + 09/14 05:50:00,15.045045045045045,15.045045045045045,19.869716353786246 + 09/14 06:00:00,15.045045045045045,15.045045045045045,19.87546522685387 + 09/14 06:10:00,15.01981981981982,15.01981981981982,17.875865689130089 + 09/14 06:20:00,14.994594594594594,14.994594594594594,17.644859108617874 + 09/14 06:30:00,14.96936936936937,14.96936936936937,17.561104807992053 + 09/14 06:40:00,14.944144144144144,14.944144144144144,17.49590268166141 + 09/14 06:50:00,14.91891891891892,14.91891891891892,17.444517000117306 + 09/14 07:00:00,14.893693693693694,14.893693693693694,17.401776921799944 + 09/14 07:05:00,14.8012012012012,14.8012012012012,15.923837426746353 + 09/14 07:10:00,14.8012012012012,14.8012012012012,15.923000037827594 + 09/14 07:15:00,14.70870870870871,14.70870870870871,15.70642555884187 + 09/14 07:20:00,14.70870870870871,14.70870870870871,15.706531718527988 + 09/14 07:30:00,14.616216216216217,14.616216216216217,15.601982459897203 + 09/14 07:40:00,14.523723723723723,14.523723723723723,15.516630223495833 + 09/14 07:50:00,14.431231231231232,14.431231231231232,15.444302430424527 + 09/14 08:00:00,14.338738738738739,14.338738738738739,15.380762670190537 + 09/14 08:05:00,14.2,14.2,15.297589619223074 + 09/14 08:10:00,14.2,14.2,15.297062265222733 + 09/14 08:20:00,14.061261261261262,14.061261261261262,15.233078334112067 + 09/14 08:30:00,13.922522522522524,13.922522522522524,15.180817612671034 + 09/14 08:40:00,13.783783783783785,13.783783783783785,15.13092345755971 + 09/14 08:50:00,13.645045045045047,13.645045045045047,15.083744850920552 + 09/14 09:00:00,13.506306306306307,13.506306306306307,15.038725714248719 + 09/14 09:10:00,13.40960960960961,13.40960960960961,14.996444996309477 + 09/14 09:20:00,13.312912912912913,13.312912912912913,14.94470538551963 + 09/14 09:30:00,13.216216216216216,13.216216216216216,14.905201006769337 + 09/14 09:40:00,13.11951951951952,13.11951951951952,14.867167233731351 + 09/14 09:50:00,13.022822822822823,13.022822822822823,14.830653225907073 + 09/14 10:00:00,12.926126126126127,12.926126126126127,14.795563332356183 + 09/14 10:10:00,12.85885885885886,12.85885885885886,14.761395209162796 + 09/14 10:20:00,12.8,12.8,14.726974810757258 + 09/14 10:30:00,12.8,12.8,14.696953381068053 + 09/14 10:40:00,12.8,12.8,14.668184676461534 + 09/14 10:50:00,12.8,12.8,14.640301053997036 + 09/14 11:00:00,12.8,12.8,14.613318764435358 + 09/14 11:10:00,12.8,12.8,14.587685875579896 + 09/14 11:20:00,12.8,12.8,14.572290880010929 + 09/14 11:30:00,12.8,12.8,14.548405242214887 + 09/14 11:40:00,12.8,12.8,14.525618205197143 + 09/14 11:50:00,12.8,12.8,14.503999757923955 + 09/14 12:00:00,12.8,12.8,14.483371614317793 + 09/14 12:10:00,12.8,12.8,14.46334593675708 + 09/14 12:20:00,12.8,12.8,14.434818054295207 + 09/14 12:30:00,12.8,12.8,14.416312567951067 + 09/14 12:40:00,12.8,12.8,14.398337540484162 + 09/14 12:50:00,12.8,12.8,14.380778217274589 + 09/14 13:00:00,12.8,12.8,14.363740808177747 + 09/14 13:10:00,12.8,12.8,14.35270317449097 + 09/14 13:20:00,12.8,12.8,14.343708150917083 + 09/14 13:30:00,12.8,12.8,14.333482758776642 + 09/14 13:40:00,12.8,12.8,14.31503643142655 + 09/14 13:50:00,12.8,12.8,14.310194734398479 + 09/14 14:00:00,12.8,12.8,14.299716659610864 + 09/14 14:10:00,12.8,12.8,14.293520727710547 + 09/14 14:20:00,12.8,12.8,14.290851017585505 + 09/14 14:30:00,12.8,12.8,14.285841254223666 + 09/14 14:40:00,12.8,12.8,14.28138714676361 + 09/14 14:50:00,12.8,12.8,14.2775744222194 + 09/14 15:00:00,12.8,12.8,14.271617450112548 + 09/14 15:05:00,12.8,12.8,16.428594499249649 + 09/14 15:10:00,12.8,12.8,16.427497277049935 + 09/14 15:20:00,12.8,12.8,16.678484038016 + 09/14 15:30:00,12.8,12.8,16.777028342839999 + 09/14 15:40:00,12.8,12.8,16.85185745237218 + 09/14 15:50:00,12.8,12.8,16.91114908209755 + 09/14 16:00:00,12.8,12.8,16.957857113333899 + 09/14 16:10:00,12.8,12.8,17.025386360495188 + 09/14 16:20:00,12.8,12.8,17.082595638175705 + 09/14 16:30:00,12.8,12.8,17.11585180586888 + 09/14 16:40:00,12.8,12.8,17.1458941922786 + 09/14 16:50:00,12.8,12.8,17.173809497016813 + 09/14 17:00:00,12.8,12.8,17.200009062323063 + 09/14 17:10:00,12.8,12.8,17.238102922694624 + 09/14 17:20:00,12.8,12.8,17.267983691162966 + 09/14 17:30:00,12.8,12.8,17.288406184992973 + 09/14 17:40:00,12.8,12.8,17.311173434220377 + 09/14 17:50:00,12.8,12.8,17.33271197371961 + 09/14 18:00:00,12.8,12.8,17.354277186728518 + 09/14 18:10:00,12.8,12.8,17.37506879326827 + 09/14 18:20:00,12.8,12.8,17.3948683335884 + 09/14 18:30:00,12.8,12.8,17.4140921551576 + 09/14 18:40:00,12.8,12.8,17.43246749616757 + 09/14 18:50:00,12.8,12.8,17.45005789920705 + 09/14 19:00:00,12.8,12.8,17.466770486532526 + 09/14 19:10:00,12.8,12.8,17.495103477010028 + 09/14 19:20:00,12.8,12.8,17.510324340676037 + 09/14 19:30:00,12.8,12.8,17.52396749076296 + 09/14 19:40:00,12.8,12.8,17.536620601948564 + 09/14 19:50:00,12.8,12.8,17.54834747485678 + 09/14 20:00:00,12.8,12.8,17.559175897801468 + 09/14 20:10:00,12.8,12.8,17.54727280666685 + 09/14 20:20:00,12.8,12.8,17.561551457125458 + 09/14 20:30:00,12.863063063063063,12.863063063063063,17.5710661761592 + 09/14 20:40:00,12.934534534534535,12.934534534534535,17.580221574417889 + 09/14 20:50:00,13.006006006006008,13.006006006006008,17.58911154534531 + 09/14 21:00:00,13.077477477477478,13.077477477477478,17.59774283847319 + 09/14 21:10:00,13.123723723723725,13.123723723723725,17.605648754555348 + 09/14 21:20:00,13.169969969969971,13.169969969969971,17.614922185850284 + 09/14 21:30:00,13.216216216216218,13.216216216216218,17.623880382696105 + 09/14 21:40:00,13.262462462462464,13.262462462462464,17.632926377523878 + 09/14 21:50:00,13.30870870870871,13.30870870870871,17.641720761250395 + 09/14 22:00:00,13.354954954954956,13.354954954954956,17.650479103154873 + 09/14 22:10:00,13.426426426426428,13.426426426426428,19.023653966656377 + 09/14 22:20:00,13.497897897897899,13.497897897897899,19.170080473426517 + 09/14 22:30:00,13.56936936936937,13.56936936936937,19.235958405886217 + 09/14 22:40:00,13.640840840840842,13.640840840840842,19.288332414841756 + 09/14 22:50:00,13.712312312312314,13.712312312312314,19.33105484845749 + 09/14 23:00:00,13.783783783783785,13.783783783783785,19.367269197029569 + 09/14 23:10:00,13.783783783783785,13.783783783783785,19.39873175233273 + 09/14 23:20:00,13.783783783783785,13.783783783783785,19.427078714006787 + 09/14 23:30:00,13.783783783783785,13.783783783783785,19.45254846352872 + 09/14 23:40:00,13.783783783783785,13.783783783783785,19.47578486314963 + 09/14 23:50:00,13.783783783783785,13.783783783783785,19.49705867908914 + 09/14 24:00:00,13.783783783783785,13.783783783783785,19.516611187310727 + 09/15 00:10:00,13.83003003003003,13.83003003003003,19.534918017609365 + 09/15 00:20:00,13.876276276276276,13.876276276276276,19.551880718534066 + 09/15 00:30:00,13.922522522522524,13.922522522522524,19.567924547988086 + 09/15 00:40:00,13.968768768768769,13.968768768768769,19.58313136565931 + 09/15 00:50:00,14.015015015015015,14.015015015015015,19.59754203821973 + 09/15 01:00:00,14.061261261261262,14.061261261261262,19.611398364991176 + 09/15 01:10:00,14.082282282282283,14.082282282282283,19.624689405577234 + 09/15 01:20:00,14.103303303303303,14.103303303303303,19.637503018192647 + 09/15 01:30:00,14.124324324324324,14.124324324324324,19.649794593766705 + 09/15 01:40:00,14.145345345345346,14.145345345345346,19.661561460888057 + 09/15 01:50:00,14.166366366366367,14.166366366366367,19.672901106697159 + 09/15 02:00:00,14.187387387387388,14.187387387387388,19.683870126798845 + 09/15 02:10:00,14.212612612612613,14.212612612612613,19.6944621418544 + 09/15 02:20:00,14.237837837837838,14.237837837837838,19.70435813279159 + 09/15 02:30:00,14.263063063063063,14.263063063063063,19.713878335062235 + 09/15 02:40:00,14.288288288288289,14.288288288288289,19.72296940674605 + 09/15 02:50:00,14.313513513513513,14.313513513513513,19.73183764160227 + 09/15 03:00:00,14.338738738738739,14.338738738738739,19.740439198519508 + 09/15 03:10:00,14.338738738738739,14.338738738738739,19.74877187491596 + 09/15 03:20:00,14.338738738738739,14.338738738738739,19.757065850192534 + 09/15 03:30:00,14.338738738738739,14.338738738738739,19.765026880914989 + 09/15 03:40:00,14.338738738738739,14.338738738738739,19.772885631726049 + 09/15 03:50:00,14.338738738738739,14.338738738738739,19.78049545316913 + 09/15 04:00:00,14.338738738738739,14.338738738738739,19.787863853887754 + 09/15 04:10:00,14.338738738738739,14.338738738738739,19.795001818595229 + 09/15 04:20:00,14.338738738738739,14.338738738738739,19.80181454619012 + 09/15 04:30:00,14.338738738738739,14.338738738738739,19.80850262570602 + 09/15 04:40:00,14.338738738738739,14.338738738738739,19.814999958902253 + 09/15 04:50:00,14.338738738738739,14.338738738738739,19.821309480776724 + 09/15 05:00:00,14.338738738738739,14.338738738738739,19.827441703586666 + 09/15 05:10:00,14.363963963963965,14.363963963963965,19.833353492064999 + 09/15 05:20:00,14.389189189189189,14.389189189189189,19.839209776987997 + 09/15 05:30:00,14.414414414414415,14.414414414414415,19.845012100574299 + 09/15 05:40:00,14.439639639639639,14.439639639639639,19.850737224245618 + 09/15 05:50:00,14.464864864864865,14.464864864864865,19.856381255083187 + 09/15 06:00:00,14.49009009009009,14.49009009009009,19.861898191657397 + 09/15 06:10:00,14.464864864864865,14.464864864864865,17.862719012445028 + 09/15 06:20:00,14.439639639639639,14.439639639639639,17.631303512327145 + 09/15 06:30:00,14.414414414414415,14.414414414414415,17.546981128787459 + 09/15 06:40:00,14.389189189189189,14.389189189189189,17.48106001292799 + 09/15 06:50:00,14.363963963963965,14.363963963963965,17.42866177609073 + 09/15 07:00:00,14.338738738738739,14.338738738738739,17.38497626610502 + 09/15 07:05:00,14.174774774774776,14.174774774774776,15.907089154662098 + 09/15 07:10:00,14.174774774774776,14.174774774774776,15.906351957091874 + 09/15 07:15:00,14.010810810810812,14.010810810810812,15.688564545994142 + 09/15 07:20:00,14.010810810810812,14.010810810810812,15.688671551613119 + 09/15 07:25:00,13.846846846846848,13.846846846846848,15.583928117165924 + 09/15 07:30:00,13.846846846846848,13.846846846846848,15.5841847044012 + 09/15 07:40:00,13.682882882882885,13.682882882882885,15.494867172154244 + 09/15 07:50:00,13.518918918918919,13.518918918918919,15.41951208654118 + 09/15 08:00:00,13.354954954954956,13.354954954954956,15.35199252530941 + 09/15 08:05:00,13.237237237237239,13.237237237237239,15.264042790734353 + 09/15 08:10:00,13.237237237237239,13.237237237237239,15.264318095544926 + 09/15 08:20:00,13.119519519519521,13.119519519519521,15.197250603268215 + 09/15 08:30:00,13.001801801801804,13.001801801801804,15.141034581589386 + 09/15 08:40:00,12.884084084084086,12.884084084084086,15.088160513769394 + 09/15 08:50:00,12.8,12.8,15.03812889149821 + 09/15 09:00:00,12.8,12.8,14.990812988407175 + 09/15 09:10:00,12.8,12.8,14.945578836738753 + 09/15 09:20:00,12.8,12.8,14.895714963812278 + 09/15 09:30:00,12.8,12.8,14.858084751017236 + 09/15 09:40:00,12.8,12.8,14.822597388986573 + 09/15 09:50:00,12.8,12.8,14.788485740153514 + 09/15 10:00:00,12.8,12.8,14.755798735342723 + 09/15 10:10:00,12.8,12.8,14.724657610232296 + 09/15 10:20:00,12.8,12.8,14.692317994561114 + 09/15 10:30:00,12.8,12.8,14.664451947974636 + 09/15 10:40:00,12.8,12.8,14.6381810810644 + 09/15 10:50:00,12.8,12.8,14.613093059743229 + 09/15 11:00:00,12.8,12.8,14.589228425827253 + 09/15 11:10:00,12.8,12.8,14.566613264651368 + 09/15 11:20:00,12.8,12.8,14.554530897842833 + 09/15 11:30:00,12.8,12.8,14.533656650476726 + 09/15 11:40:00,12.8,12.8,14.5134033913101 + 09/15 11:50:00,12.8,12.8,14.494073668764724 + 09/15 12:00:00,12.8,12.8,14.475533605976685 + 09/15 12:10:00,12.8,12.8,14.457860587362506 + 09/15 12:20:00,12.8,12.8,14.431153392436034 + 09/15 12:30:00,12.8,12.8,14.41443432508449 + 09/15 12:35:00,12.8,12.8,14.400367321926879 + 09/15 12:40:00,12.8,12.8,14.399546162630948 + 09/15 12:50:00,12.8,12.8,14.382725821713575 + 09/15 13:00:00,12.8,12.8,14.367008090557422 + 09/15 13:10:00,12.8,12.8,14.34858755302929 + 09/15 13:20:00,12.8,12.8,14.337372971236715 + 09/15 13:30:00,12.8,12.8,14.327130279670634 + 09/15 13:40:00,12.8,12.8,14.314529051993026 + 09/15 13:50:00,12.8,12.8,14.30588132512785 + 09/15 14:00:00,12.8,12.8,14.3003369543686 + 09/15 14:10:00,12.8,12.8,14.29083615526691 + 09/15 14:20:00,12.8,12.8,14.289081117308167 + 09/15 14:30:00,12.8,12.8,14.283116025807657 + 09/15 14:40:00,12.8,12.8,14.277760596463417 + 09/15 14:50:00,12.8,12.8,14.272311923184235 + 09/15 15:00:00,12.8,12.8,14.264452658000991 + 09/15 15:05:00,12.8,12.8,16.411929073009128 + 09/15 15:10:00,12.8,12.8,16.409996142729225 + 09/15 15:15:00,12.8,12.8,16.662962723847238 + 09/15 15:20:00,12.8,12.8,16.662140262957906 + 09/15 15:30:00,12.8,12.8,16.75972842418382 + 09/15 15:40:00,12.8,12.8,16.834384304406507 + 09/15 15:50:00,12.8,12.8,16.89339229690303 + 09/15 16:00:00,12.8,12.8,16.941853772016147 + 09/15 16:10:00,12.8,12.8,17.011736289253194 + 09/15 16:20:00,12.8,12.8,17.070512389951355 + 09/15 16:30:00,12.8,12.8,17.10514366601963 + 09/15 16:40:00,12.8,12.8,17.135890221265585 + 09/15 16:50:00,12.8,12.8,17.16342609146045 + 09/15 17:00:00,12.8,12.8,17.188268930360793 + 09/15 17:10:00,12.8,12.8,17.224013830253548 + 09/15 17:20:00,12.8,12.8,17.251578732609077 + 09/15 17:30:00,12.8,12.8,17.272824088596765 + 09/15 17:40:00,12.8,12.8,17.29375998076676 + 09/15 17:50:00,12.8,12.8,17.314589432015425 + 09/15 18:00:00,12.8,12.8,17.335328342823538 + 09/15 18:10:00,12.8,12.8,17.355834811126653 + 09/15 18:20:00,12.8,12.8,17.375724454032743 + 09/15 18:30:00,12.8,12.8,17.395016886570376 + 09/15 18:40:00,12.8,12.8,17.413493745895687 + 09/15 18:50:00,12.8,12.8,17.43101308663598 + 09/15 19:00:00,12.8,12.8,17.447548478623369 + 09/15 19:10:00,12.8,12.8,17.475812729465326 + 09/15 19:20:00,12.8,12.8,17.490562303195078 + 09/15 19:30:00,12.8,12.8,17.503779783451788 + 09/15 19:40:00,12.8,12.8,17.515959643059796 + 09/15 19:50:00,12.8,12.8,17.527128851066647 + 09/15 20:00:00,12.8,12.8,17.53759793176333 + 09/15 20:10:00,12.8,12.8,17.52503566990756 + 09/15 20:20:00,12.8,12.8,17.538465608764299 + 09/15 20:30:00,12.8,12.8,17.54698169354959 + 09/15 20:40:00,12.8,12.8,17.554941388048979 + 09/15 20:50:00,12.8,12.8,17.556942185486439 + 09/15 21:00:00,12.8,12.8,17.567038537010089 + 09/15 21:10:00,12.8,12.8,17.572560574230683 + 09/15 21:20:00,12.8,12.8,17.576893584150306 + 09/15 21:30:00,12.8,12.8,17.58569969400335 + 09/15 21:40:00,12.8,12.8,17.591592066786544 + 09/15 21:50:00,12.8,12.8,17.596561586471798 + 09/15 22:00:00,12.8,12.8,17.603007426737898 + 09/15 22:10:00,12.8,12.8,18.968061551188513 + 09/15 22:20:00,12.8,12.8,19.112114613265488 + 09/15 22:30:00,12.8,12.8,19.174890587492507 + 09/15 22:40:00,12.8,12.8,19.223693636511429 + 09/15 22:50:00,12.8,12.8,19.262535742518979 + 09/15 23:00:00,12.8,12.8,19.29522301779864 + 09/15 23:10:00,12.8,12.8,19.32160152635264 + 09/15 23:20:00,12.8,12.8,19.346958275865889 + 09/15 23:30:00,12.8,12.8,19.36791099153379 + 09/15 23:40:00,12.8,12.8,19.387639465847749 + 09/15 23:50:00,12.8,12.8,19.405187421435504 + 09/15 24:00:00,12.8,12.8,19.421200891349487 + 09/16 00:10:00,12.8,12.8,19.435872975486736 + 09/16 00:20:00,12.8,12.8,19.449221853740334 + 09/16 00:30:00,12.8,12.8,19.461868220996096 + 09/16 00:40:00,12.8,12.8,19.473906095916058 + 09/16 00:50:00,12.8,12.8,19.48542819037651 + 09/16 01:00:00,12.8,12.8,19.496475984334528 + 09/16 01:10:00,12.8,12.8,19.5072591223444 + 09/16 01:20:00,12.8,12.8,19.51857484045524 + 09/16 01:30:00,12.8,12.8,19.530038635847438 + 09/16 01:40:00,12.8,12.8,19.541729070049347 + 09/16 01:50:00,12.8,12.8,19.553494637032828 + 09/16 02:00:00,12.8,12.8,19.565290099028837 + 09/16 02:10:00,12.8,12.8,19.57664735614755 + 09/16 02:20:00,12.8,12.8,19.587595451160796 + 09/16 02:30:00,12.8,12.8,19.597596147915757 + 09/16 02:40:00,12.8,12.8,19.60668030911691 + 09/16 02:50:00,12.8,12.8,19.614870275312425 + 09/16 03:00:00,12.8,12.8,19.62202674876838 + 09/16 03:10:00,12.8,12.8,19.62904509846516 + 09/16 03:20:00,12.8,12.8,19.636325669184648 + 09/16 03:30:00,12.8,12.8,19.643578224051198 + 09/16 03:40:00,12.8,12.8,19.650990788615585 + 09/16 03:50:00,12.8,12.8,19.658401285815608 + 09/16 04:00:00,12.8,12.8,19.665893608852057 + 09/16 04:10:00,12.8,12.8,19.673239141647835 + 09/16 04:20:00,12.8,12.8,19.68046652750928 + 09/16 04:30:00,12.8,12.8,19.687331990244748 + 09/16 04:40:00,12.8,12.8,19.693812508040485 + 09/16 04:50:00,12.8,12.8,19.69980502247664 + 09/16 05:00:00,12.8,12.8,19.705585403273788 + 09/16 05:10:00,12.8,12.8,19.711011848702197 + 09/16 05:20:00,12.8,12.8,19.716423615786256 + 09/16 05:30:00,12.8,12.8,19.721648667923547 + 09/16 05:40:00,12.8,12.8,19.726698999072803 + 09/16 05:50:00,12.8,12.8,19.730110388198928 + 09/16 06:00:00,12.8,12.8,19.733767719538208 + 09/16 06:10:00,12.8,12.8,19.080799609994516 + 09/16 06:20:00,12.8,12.8,19.008379721272246 + 09/16 06:30:00,12.8,12.8,18.982593736967656 + 09/16 06:40:00,12.8,12.8,18.962021747517839 + 09/16 06:50:00,12.8,12.8,18.946989574771498 + 09/16 07:00:00,12.8,12.8,18.93472528389075 + 09/16 07:10:00,12.8,12.8,17.855586680238923 + 09/16 07:20:00,12.8,12.8,17.699958292824996 + 09/16 07:30:00,12.8,12.8,17.63888554007643 + 09/16 07:40:00,12.8,12.8,17.58905841098592 + 09/16 07:50:00,12.8,12.8,17.552309605711394 + 09/16 08:00:00,12.8,12.8,17.524294168268989 + 09/16 08:10:00,12.8,12.8,17.500040745663044 + 09/16 08:20:00,12.8,12.8,17.469351347030825 + 09/16 08:30:00,12.8,12.8,17.449443683738463 + 09/16 08:40:00,12.8,12.8,17.431545204335735 + 09/16 08:50:00,12.8,12.8,17.415307622438218 + 09/16 09:00:00,12.8,12.8,17.400563184083788 + 09/16 09:10:00,12.8,12.8,17.387629237890683 + 09/16 09:20:00,12.8,12.8,17.367081502376594 + 09/16 09:30:00,12.8,12.8,17.35615296886624 + 09/16 09:40:00,12.8,12.8,17.346202834247167 + 09/16 09:50:00,12.8,12.8,17.336973226944914 + 09/16 10:00:00,12.8,12.8,17.328415821814404 + 09/16 10:10:00,12.8,12.8,17.319908614373884 + 09/16 10:20:00,12.8,12.8,17.31145675008821 + 09/16 10:30:00,12.8,12.8,17.303297022290268 + 09/16 10:40:00,12.8,12.8,17.295456347569365 + 09/16 10:50:00,12.8,12.8,17.287910113088654 + 09/16 11:00:00,12.8,12.8,17.277755253566306 + 09/16 11:10:00,12.8,12.8,17.263008923722255 + 09/16 11:20:00,12.8,12.8,17.246219022930036 + 09/16 11:30:00,12.8,12.8,17.229655383697318 + 09/16 11:40:00,12.8,12.8,17.2137882178242 + 09/16 11:50:00,12.8,12.8,17.198205794824124 + 09/16 12:00:00,12.8,12.8,17.18268238390086 + 09/16 12:10:00,12.8,12.8,17.16719390575409 + 09/16 12:20:00,12.8,12.8,17.151976928285515 + 09/16 12:30:00,12.8,12.8,17.13701574966521 + 09/16 12:40:00,12.8,12.8,17.122103654430238 + 09/16 12:50:00,12.8,12.8,17.10686474240626 + 09/16 13:00:00,12.8,12.8,17.091182300702007 + 09/16 13:10:00,12.8,12.8,17.07586876722675 + 09/16 13:20:00,12.8,12.8,17.06052418895691 + 09/16 13:30:00,12.8,12.8,17.045346899076376 + 09/16 13:40:00,12.8,12.8,17.03178527612947 + 09/16 13:50:00,12.8,12.8,17.04211113658564 + 09/16 14:00:00,12.8,12.8,17.076910134508688 + 09/16 14:10:00,12.8,12.8,17.105300616524525 + 09/16 14:20:00,12.8,12.8,17.12054563861369 + 09/16 14:30:00,12.8,12.8,17.128146368746785 + 09/16 14:40:00,12.8,12.8,17.131928609569095 + 09/16 14:50:00,12.8,12.8,17.133853636812569 + 09/16 15:00:00,12.8,12.8,17.134835619664359 + 09/16 15:10:00,12.8,12.8,17.134867222405945 + 09/16 15:20:00,12.8,12.8,17.134413048066006 + 09/16 15:30:00,12.8,12.8,17.133647719657124 + 09/16 15:40:00,12.8,12.8,17.132765300132655 + 09/16 15:50:00,12.8,12.8,17.131832127856066 + 09/16 16:00:00,12.8,12.8,17.1309094922708 + 09/16 16:10:00,12.8,12.8,17.142162980796834 + 09/16 16:20:00,12.8,12.8,17.149875191132609 + 09/16 16:30:00,12.8,12.8,17.148398166119184 + 09/16 16:40:00,12.8,12.8,17.146806502386839 + 09/16 16:50:00,12.8,12.8,17.145301094791067 + 09/16 17:00:00,12.8,12.8,17.143766194460949 + 09/16 17:10:00,12.8,12.8,18.894484273998438 + 09/16 17:20:00,12.8,12.8,19.107405692620465 + 09/16 17:30:00,12.8,12.8,19.186481553080946 + 09/16 17:40:00,12.8,12.8,19.247491117074615 + 09/16 17:50:00,12.8,12.8,19.29253248497472 + 09/16 18:00:00,12.8,12.8,19.329781197776677 + 09/16 18:10:00,12.8,12.8,19.374521572067605 + 09/16 18:20:00,12.8,12.8,19.40399305829377 + 09/16 18:30:00,12.8,12.8,19.430734076851324 + 09/16 18:40:00,12.8,12.8,19.455561321019976 + 09/16 18:50:00,12.8,12.8,19.479043399262964 + 09/16 19:00:00,12.8,12.8,19.501092796480966 + 09/16 19:10:00,12.8,12.8,19.521644578275884 + 09/16 19:20:00,12.8,12.8,19.54061669902385 + 09/16 19:30:00,12.8,12.8,19.557991759780977 + 09/16 19:40:00,12.8,12.8,19.573889751136059 + 09/16 19:50:00,12.8,12.8,19.588286676419349 + 09/16 20:00:00,12.8,12.8,19.601627733802905 + 09/16 20:10:00,12.8,12.8,19.591665321723434 + 09/16 20:20:00,12.8,12.8,19.60261473567586 + 09/16 20:30:00,12.8,12.8,19.612620505588695 + 09/16 20:40:00,12.8,12.8,19.621525082519076 + 09/16 20:50:00,12.8,12.8,19.629533382357363 + 09/16 21:00:00,12.8,12.8,19.636632194016163 + 09/16 21:10:00,12.8,12.8,19.64323583909893 + 09/16 21:20:00,12.8,12.8,19.649419129550699 + 09/16 21:30:00,12.8,12.8,19.655234644598033 + 09/16 21:40:00,12.8,12.8,19.660690370371396 + 09/16 21:50:00,12.8,12.8,19.665954704463088 + 09/16 22:00:00,12.8,12.8,19.670960118696234 + 09/16 22:10:00,12.8,12.8,19.675803966505585 + 09/16 22:20:00,12.8,12.8,19.680699246456994 + 09/16 22:30:00,12.8,12.8,19.6856690256766 + 09/16 22:40:00,12.8,12.8,19.69103507282422 + 09/16 22:50:00,12.8,12.8,19.696557817020499 + 09/16 23:00:00,12.8,12.8,19.7020965470689 + 09/16 23:10:00,12.8,12.8,19.70750822120791 + 09/16 23:20:00,12.8,12.8,19.712959564421909 + 09/16 23:30:00,12.8,12.8,19.718298756133728 + 09/16 23:40:00,12.8,12.8,19.723441581263953 + 09/16 23:50:00,12.8,12.8,19.72726459007362 + 09/16 24:00:00,12.8,12.8,19.732486992383003 + 09/17 00:10:00,12.8,12.8,19.73687301631768 + 09/17 00:20:00,12.8,12.8,19.740678199022143 + 09/17 00:30:00,12.8,12.8,19.745902162622586 + 09/17 00:40:00,12.8,12.8,19.750334922096365 + 09/17 00:50:00,12.8,12.8,19.755291641608549 + 09/17 01:00:00,12.8,12.8,19.758806319065714 + 09/17 01:10:00,12.8,12.8,19.76414518567192 + 09/17 01:20:00,12.8,12.8,19.76844044185188 + 09/17 01:30:00,12.8,12.8,19.77328142394803 + 09/17 01:40:00,12.8,12.8,19.776544786478167 + 09/17 01:50:00,12.8,12.8,19.78170648300462 + 09/17 02:00:00,12.8,12.8,19.78560300148202 + 09/17 02:10:00,12.8,12.8,19.78989452935236 + 09/17 02:20:00,12.8,12.8,19.792520956467457 + 09/17 02:30:00,12.8,12.8,19.796944624608654 + 09/17 02:40:00,12.8,12.8,19.800148932955886 + 09/17 02:50:00,12.8,12.8,19.803731658152086 + 09/17 03:00:00,12.8,12.8,19.805720738207375 + 09/17 03:10:00,12.8,12.8,19.80962040909623 + 09/17 03:20:00,12.8,12.8,19.81229384845058 + 09/17 03:30:00,12.8,12.8,19.815514732860973 + 09/17 03:40:00,12.8,12.8,19.817039463209015 + 09/17 03:50:00,12.8,12.8,19.820516536792263 + 09/17 04:00:00,12.8,12.8,19.822830408649336 + 09/17 04:10:00,12.8,12.8,19.825886968243894 + 09/17 04:20:00,12.8,12.8,19.82728641964416 + 09/17 04:30:00,12.8,12.8,19.830617905268729 + 09/17 04:40:00,12.8,12.8,19.832689424648746 + 09/17 04:50:00,12.8,12.8,19.835412398486644 + 09/17 05:00:00,12.8,12.8,19.83641564733336 + 09/17 05:10:00,12.8,12.8,19.839392319166934 + 09/17 05:20:00,12.8,12.8,19.841097368762047 + 09/17 05:30:00,12.8,12.8,19.84338497531203 + 09/17 05:40:00,12.8,12.8,19.844075192348979 + 09/17 05:50:00,12.8,12.8,19.846878033747033 + 09/17 06:00:00,12.8,12.8,19.848443525568876 + 09/17 06:10:00,12.8,12.8,19.872583198299809 + 09/17 06:20:00,12.8,12.8,19.87285675971488 + 09/17 06:30:00,12.8,12.8,19.874172485051916 + 09/17 06:40:00,12.8,12.8,19.874918918016854 + 09/17 06:50:00,12.8,12.8,19.875487744666189 + 09/17 07:00:00,12.8,12.8,19.875629566233564 + 09/17 07:10:00,12.8,12.8,18.48652704987643 + 09/17 07:20:00,12.8,12.8,18.308731744586845 + 09/17 07:30:00,12.8,12.8,18.243074166810005 + 09/17 07:40:00,12.8,12.8,18.189572866382464 + 09/17 07:50:00,12.8,12.8,18.148441131473754 + 09/17 08:00:00,12.8,12.8,18.113944117772108 + 09/17 08:10:00,12.8,12.8,18.083709855454069 + 09/17 08:20:00,12.8,12.8,18.04803813486258 + 09/17 08:30:00,12.8,12.8,18.02363161491295 + 09/17 08:40:00,12.8,12.8,18.001239178991808 + 09/17 08:50:00,12.8,12.8,17.980063182211319 + 09/17 09:00:00,12.8,12.8,17.959711355519017 + 09/17 09:10:00,12.8,12.8,17.94076679561852 + 09/17 09:20:00,12.8,12.8,17.91387579913136 + 09/17 09:30:00,12.8,12.8,17.8962341223303 + 09/17 09:40:00,12.8,12.8,17.879672025067089 + 09/17 09:50:00,12.8,12.8,17.86455025324106 + 09/17 10:00:00,12.8,12.8,17.851015201104013 + 09/17 10:10:00,12.8,12.8,17.838439377381847 + 09/17 10:20:00,12.8,12.8,17.826982352175496 + 09/17 10:30:00,12.8,12.8,17.816373906186933 + 09/17 10:40:00,12.8,12.8,17.805469226259498 + 09/17 10:50:00,12.8,12.8,17.792863886029104 + 09/17 11:00:00,12.8,12.8,17.77783582614377 + 09/17 11:10:00,12.8,12.8,17.76045714557387 + 09/17 11:20:00,12.8,12.8,17.741384980345143 + 09/17 11:30:00,12.8,12.8,17.72105750565442 + 09/17 11:40:00,12.8,12.8,17.700578507812943 + 09/17 11:50:00,12.8,12.8,17.681373950535599 + 09/17 12:00:00,12.8,12.8,17.664208097437898 + 09/17 12:10:00,12.8,12.8,17.649508799284548 + 09/17 12:20:00,12.8,12.8,17.63625469854029 + 09/17 12:30:00,12.8,12.8,17.624240719705055 + 09/17 12:40:00,12.8,12.8,17.61350912692518 + 09/17 12:50:00,12.8,12.8,17.604227318865765 + 09/17 13:00:00,12.8,12.8,17.596244772305213 + 09/17 13:10:00,12.8,12.8,17.589457781343066 + 09/17 13:20:00,12.8,12.8,17.583450782097335 + 09/17 13:30:00,12.8,12.8,17.577971747624514 + 09/17 13:40:00,12.8,12.8,17.572787472604387 + 09/17 13:50:00,12.8,12.8,17.567767259118904 + 09/17 14:00:00,12.8,12.8,17.56273384630268 + 09/17 14:10:00,12.8,12.8,17.55740569721447 + 09/17 14:20:00,12.8,12.8,17.552657402902125 + 09/17 14:30:00,12.8,12.8,17.54851570395418 + 09/17 14:40:00,12.8,12.8,17.544820375860245 + 09/17 14:50:00,12.8,12.8,17.541544075254686 + 09/17 15:00:00,12.8,12.8,17.53852124054098 + 09/17 15:10:00,12.8,12.8,18.953815621421748 + 09/17 15:20:00,12.8,12.8,19.107891486520804 + 09/17 15:30:00,12.8,12.8,19.17175422420776 + 09/17 15:40:00,12.8,12.8,19.222678248076784 + 09/17 15:50:00,12.8,12.8,19.26303561076994 + 09/17 16:00:00,12.8,12.8,19.296723795312319 + 09/17 16:10:00,12.8,12.8,19.326341849196287 + 09/17 16:20:00,12.8,12.8,19.35984323270544 + 09/17 16:30:00,12.8,12.8,19.383116497216368 + 09/17 16:40:00,12.8,12.8,19.404223620638335 + 09/17 16:50:00,12.8,12.8,19.42436759332258 + 09/17 17:00:00,12.8,12.8,19.44332514579832 + 09/17 17:10:00,12.8,12.8,19.46117882804368 + 09/17 17:20:00,12.8,12.8,19.495707100221116 + 09/17 17:30:00,12.8,12.8,19.513127249691118 + 09/17 17:40:00,12.8,12.8,19.529446531202895 + 09/17 17:50:00,12.8,12.8,19.544388128539688 + 09/17 18:00:00,12.8,12.8,19.560974062036018 + 09/17 18:10:00,12.8,12.8,19.576623018282125 + 09/17 18:20:00,12.8,12.8,19.590196196080567 + 09/17 18:30:00,12.8,12.8,19.60331974830833 + 09/17 18:40:00,12.8,12.8,19.616054688276806 + 09/17 18:50:00,12.8,12.8,19.628799796577728 + 09/17 19:00:00,12.8,12.8,19.64115546188439 + 09/17 19:10:00,12.8,12.8,19.652750119282449 + 09/17 19:20:00,12.8,12.8,19.664731434131715 + 09/17 19:30:00,12.8,12.8,19.67561684850808 + 09/17 19:40:00,12.8,12.8,19.685851326983859 + 09/17 19:50:00,12.8,12.8,19.695341272284936 + 09/17 20:00:00,12.8,12.8,19.704163641706797 + 09/17 20:10:00,12.846246246246248,12.846246246246248,19.689953981041144 + 09/17 20:20:00,12.892492492492494,12.892492492492494,19.698703133768377 + 09/17 20:30:00,12.938738738738739,12.938738738738739,19.706903304763196 + 09/17 20:40:00,12.984984984984987,12.984984984984987,19.715022346444515 + 09/17 20:50:00,13.031231231231232,13.031231231231232,19.72278660849842 + 09/17 21:00:00,13.077477477477478,13.077477477477478,19.73027542031525 + 09/17 21:10:00,13.123723723723725,13.123723723723725,19.737564125903285 + 09/17 21:20:00,13.169969969969971,13.169969969969971,19.74456511599375 + 09/17 21:30:00,13.216216216216218,13.216216216216218,19.751490363444725 + 09/17 21:40:00,13.262462462462464,13.262462462462464,19.758257811875084 + 09/17 21:50:00,13.30870870870871,13.30870870870871,19.764877983867167 + 09/17 22:00:00,13.354954954954956,13.354954954954956,19.771361911823733 + 09/17 22:10:00,13.401201201201202,13.401201201201202,19.77786280033703 + 09/17 22:20:00,13.447447447447449,13.447447447447449,19.784463767717918 + 09/17 22:30:00,13.493693693693695,13.493693693693695,19.790930940906756 + 09/17 22:40:00,13.539939939939942,13.539939939939942,19.79729268745157 + 09/17 22:50:00,13.586186186186187,13.586186186186187,19.803525283110397 + 09/17 23:00:00,13.632432432432433,13.632432432432433,19.809586952047697 + 09/17 23:10:00,13.657657657657659,13.657657657657659,19.815156371747287 + 09/17 23:20:00,13.682882882882883,13.682882882882883,19.820132020568303 + 09/17 23:30:00,13.708108108108109,13.708108108108109,19.82499666141534 + 09/17 23:40:00,13.733333333333335,13.733333333333335,19.829648680223529 + 09/17 23:50:00,13.758558558558559,13.758558558558559,19.834186126253095 + 09/17 24:00:00,13.783783783783785,13.783783783783785,19.83859259522917 + 09/18 00:10:00,13.83003003003003,13.83003003003003,19.8430780327577 + 09/18 00:20:00,13.876276276276276,13.876276276276276,19.84787034735981 + 09/18 00:30:00,13.922522522522524,13.922522522522524,19.852607387066425 + 09/18 00:40:00,13.968768768768769,13.968768768768769,19.85739755520341 + 09/18 00:50:00,14.015015015015015,14.015015015015015,19.862040065844213 + 09/18 01:00:00,14.061261261261262,14.061261261261262,19.86673233171394 + 09/18 01:10:00,14.082282282282283,14.082282282282283,19.87113843910703 + 09/18 01:20:00,14.103303303303303,14.103303303303303,19.875198950094608 + 09/18 01:30:00,14.124324324324324,14.124324324324324,19.879149930094259 + 09/18 01:40:00,14.145345345345346,14.145345345345346,19.882862196591707 + 09/18 01:50:00,14.166366366366367,14.166366366366367,19.886565321454137 + 09/18 02:00:00,14.187387387387388,14.187387387387388,19.890217895950099 + 09/18 02:10:00,14.212612612612613,14.212612612612613,19.894372611282 + 09/18 02:20:00,14.237837837837838,14.237837837837838,19.898664568331058 + 09/18 02:30:00,14.263063063063063,14.263063063063063,19.902820941297717 + 09/18 02:40:00,14.288288288288289,14.288288288288289,19.906975552713968 + 09/18 02:50:00,14.313513513513513,14.313513513513513,19.91109234991861 + 09/18 03:00:00,14.338738738738739,14.338738738738739,19.91513190531228 + 09/18 03:10:00,14.338738738738739,14.338738738738739,19.918600569463437 + 09/18 03:20:00,14.338738738738739,14.338738738738739,19.9217178445248 + 09/18 03:30:00,14.338738738738739,14.338738738738739,19.92467403720772 + 09/18 03:40:00,14.338738738738739,14.338738738738739,19.9275222368814 + 09/18 03:50:00,14.338738738738739,14.338738738738739,19.93026528273736 + 09/18 04:00:00,14.338738738738739,14.338738738738739,19.932918542545204 + 09/18 04:10:00,14.363963963963965,14.363963963963965,19.935696432212369 + 09/18 04:20:00,14.389189189189189,14.389189189189189,19.938407138505374 + 09/18 04:30:00,14.414414414414415,14.414414414414415,19.940960457146333 + 09/18 04:40:00,14.439639639639639,14.439639639639639,19.943354815890574 + 09/18 04:50:00,14.464864864864865,14.464864864864865,19.94554069210386 + 09/18 05:00:00,14.49009009009009,14.49009009009009,19.947524736516237 + 09/18 05:10:00,14.49009009009009,14.49009009009009,19.949522436320899 + 09/18 05:20:00,14.49009009009009,14.49009009009009,19.95129479513096 + 09/18 05:30:00,14.49009009009009,14.49009009009009,19.952703723219856 + 09/18 05:40:00,14.49009009009009,14.49009009009009,19.953762270112035 + 09/18 05:50:00,14.49009009009009,14.49009009009009,19.954492886657254 + 09/18 06:00:00,14.49009009009009,14.49009009009009,19.954858658668614 + 09/18 06:10:00,14.464864864864865,14.464864864864865,17.95827402571465 + 09/18 06:20:00,14.439639639639639,14.439639639639639,17.722305618599287 + 09/18 06:30:00,14.414414414414415,14.414414414414415,17.63365721905451 + 09/18 06:40:00,14.389189189189189,14.389189189189189,17.564366777342589 + 09/18 06:50:00,14.363963963963965,14.363963963963965,17.50938384358993 + 09/18 07:00:00,14.338738738738739,14.338738738738739,17.46372984065868 + 09/18 07:10:00,14.292492492492493,14.292492492492493,15.987152804481957 + 09/18 07:20:00,14.246246246246246,14.246246246246246,15.768668588399097 + 09/18 07:30:00,14.2,14.2,15.665083150357866 + 09/18 07:40:00,14.153753753753755,14.153753753753755,15.579270043362096 + 09/18 07:50:00,14.107507507507508,14.107507507507508,15.506565084952828 + 09/18 08:00:00,14.061261261261262,14.061261261261262,15.44246597190254 + 09/18 08:05:00,13.943543543543545,13.943543543543545,15.36033840217288 + 09/18 08:10:00,13.943543543543545,13.943543543543545,15.359511159709939 + 09/18 08:20:00,13.825825825825826,13.825825825825826,15.296519292874484 + 09/18 08:30:00,13.708108108108109,13.708108108108109,15.245744819451213 + 09/18 08:40:00,13.590390390390392,13.590390390390392,15.1930610316076 + 09/18 08:50:00,13.472672672672673,13.472672672672673,15.14598282124684 + 09/18 09:00:00,13.354954954954956,13.354954954954956,15.100766354306093 + 09/18 09:10:00,13.237237237237239,13.237237237237239,15.058290367317739 + 09/18 09:20:00,13.119519519519521,13.119519519519521,15.007077010440416 + 09/18 09:30:00,13.001801801801804,13.001801801801804,14.967783747156178 + 09/18 09:40:00,12.884084084084086,12.884084084084086,14.930147477419766 + 09/18 09:50:00,12.8,12.8,14.894264240482914 + 09/18 10:00:00,12.8,12.8,14.860249106693436 + 09/18 10:10:00,12.8,12.8,14.828001277635265 + 09/18 10:20:00,12.8,12.8,14.793787052580792 + 09/18 10:30:00,12.8,12.8,14.76438994962404 + 09/18 10:40:00,12.8,12.8,14.73611345934714 + 09/18 10:50:00,12.8,12.8,14.709795101813885 + 09/18 11:00:00,12.8,12.8,14.681739171935867 + 09/18 11:10:00,12.8,12.8,14.654554152948574 + 09/18 11:20:00,12.8,12.8,14.639394343262863 + 09/18 11:30:00,12.8,12.8,14.615570991142821 + 09/18 11:40:00,12.8,12.8,14.593185567903298 + 09/18 11:50:00,12.8,12.8,14.572279035485975 + 09/18 12:00:00,12.8,12.8,14.552900901631464 + 09/18 12:10:00,12.8,12.8,14.533256745314459 + 09/18 12:20:00,12.8,12.8,14.506871849953689 + 09/18 12:30:00,12.8,12.8,14.491085948840345 + 09/18 12:35:00,12.8,12.8,14.478106299297963 + 09/18 12:40:00,12.8,12.8,14.477687560506582 + 09/18 12:50:00,12.8,12.8,14.463848792909897 + 09/18 13:00:00,12.8,12.8,14.452086696785529 + 09/18 13:10:00,12.8,12.8,14.441578730149138 + 09/18 13:20:00,12.8,12.8,14.43562783470625 + 09/18 13:30:00,12.8,12.8,14.427076980096866 + 09/18 13:40:00,12.8,12.8,14.418822283997154 + 09/18 13:50:00,12.8,12.8,14.410187156621376 + 09/18 14:00:00,12.8,12.8,14.400863055806286 + 09/18 14:10:00,12.8,12.8,14.391768922800374 + 09/18 14:20:00,12.8,12.8,14.38673016498966 + 09/18 14:30:00,12.8,12.8,14.37831305339696 + 09/18 14:40:00,12.8,12.8,14.37059012563859 + 09/18 14:50:00,12.8,12.8,14.361225842211202 + 09/18 15:00:00,12.8,12.8,14.3559932400147 + 09/18 15:05:00,12.8,12.8,16.50194329287373 + 09/18 15:10:00,12.8,12.8,16.50009058731323 + 09/18 15:20:00,12.8,12.8,16.748414554901414 + 09/18 15:30:00,12.8,12.8,16.844909814144374 + 09/18 15:40:00,12.8,12.8,16.915594012720946 + 09/18 15:50:00,12.8,12.8,16.972040449889187 + 09/18 16:00:00,12.8,12.8,17.018971411087145 + 09/18 16:10:00,12.8,12.8,17.085213894670284 + 09/18 16:20:00,12.8,12.8,17.140577943551678 + 09/18 16:30:00,12.8,12.8,17.165691985956806 + 09/18 16:40:00,12.8,12.8,17.193982043107768 + 09/18 16:50:00,12.8,12.8,17.222156265042018 + 09/18 17:00:00,12.8,12.8,17.24304435932678 + 09/18 17:10:00,12.8,12.8,17.279494557916729 + 09/18 17:20:00,12.8,12.8,17.30807788665858 + 09/18 17:30:00,12.8,12.8,17.330562721409515 + 09/18 17:40:00,12.8,12.8,17.35244147747382 + 09/18 17:50:00,12.8,12.8,17.373644913053036 + 09/18 18:00:00,12.8,12.8,17.39427352024322 + 09/18 18:10:00,12.8,12.8,17.414461232831394 + 09/18 18:20:00,12.8,12.8,17.433721393659956 + 09/18 18:30:00,12.8,12.8,17.452384040070215 + 09/18 18:40:00,12.8,12.8,17.4704108971405 + 09/18 18:50:00,12.833633633633636,12.833633633633636,17.487612465928544 + 09/18 19:00:00,12.926126126126127,12.926126126126127,17.503722434060714 + 09/18 19:10:00,12.997597597597599,12.997597597597599,17.531660772438689 + 09/18 19:20:00,13.06906906906907,13.06906906906907,17.54668896192641 + 09/18 19:30:00,13.140540540540542,13.140540540540542,17.56032031994579 + 09/18 19:40:00,13.212012012012015,13.212012012012015,17.573118555011577 + 09/18 19:50:00,13.283483483483485,13.283483483483485,17.58507839657772 + 09/18 20:00:00,13.354954954954956,13.354954954954956,17.596372708435248 + 09/18 20:10:00,13.380180180180182,13.380180180180182,17.584351821220215 + 09/18 20:20:00,13.405405405405407,13.405405405405407,17.598628754563735 + 09/18 20:30:00,13.430630630630632,13.430630630630632,17.608016455993999 + 09/18 20:40:00,13.455855855855857,13.455855855855857,17.6169316417657 + 09/18 20:50:00,13.481081081081081,13.481081081081081,17.625435857508714 + 09/18 21:00:00,13.506306306306307,13.506306306306307,17.633568666617216 + 09/18 21:10:00,13.552552552552554,13.552552552552554,17.641535841544358 + 09/18 21:20:00,13.5987987987988,13.5987987987988,17.649442161342117 + 09/18 21:30:00,13.645045045045047,13.645045045045047,17.657135519328358 + 09/18 21:40:00,13.691291291291293,13.691291291291293,17.664654903042228 + 09/18 21:50:00,13.737537537537538,13.737537537537538,17.671920255483827 + 09/18 22:00:00,13.783783783783785,13.783783783783785,17.679078940092326 + 09/18 22:10:00,13.758558558558559,13.758558558558559,19.04855240413551 + 09/18 22:20:00,13.733333333333335,13.733333333333335,19.19331715485888 + 09/18 22:30:00,13.708108108108109,13.708108108108109,19.257357421093336 + 09/18 22:40:00,13.682882882882883,13.682882882882883,19.30769354009572 + 09/18 22:50:00,13.657657657657659,13.657657657657659,19.34828320748045 + 09/18 23:00:00,13.632432432432433,13.632432432432433,19.382242280024625 + 09/18 23:10:00,13.632432432432433,13.632432432432433,19.41146022970608 + 09/18 23:20:00,13.632432432432433,13.632432432432433,19.43765205580388 + 09/18 23:30:00,13.632432432432433,13.632432432432433,19.46104762266986 + 09/18 23:40:00,13.632432432432433,13.632432432432433,19.482448503109496 + 09/18 23:50:00,13.632432432432433,13.632432432432433,19.50209692681864 + 09/18 24:00:00,13.632432432432433,13.632432432432433,19.520274440101475 + 09/19 00:10:00,13.67867867867868,13.67867867867868,19.536933487974744 + 09/19 00:20:00,13.724924924924924,13.724924924924924,19.55268997042118 + 09/19 00:30:00,13.771171171171173,13.771171171171173,19.567685216544335 + 09/19 00:40:00,13.817417417417419,13.817417417417419,19.582078360731527 + 09/19 00:50:00,13.863663663663666,13.863663663663666,19.595851522652699 + 09/19 01:00:00,13.90990990990991,13.90990990990991,19.60909773567829 + 09/19 01:10:00,13.956156156156157,13.956156156156157,19.622290560997429 + 09/19 01:20:00,14.002402402402403,14.002402402402403,19.635353004158927 + 09/19 01:30:00,14.04864864864865,14.04864864864865,19.6480145874976 + 09/19 01:40:00,14.094894894894896,14.094894894894896,19.660306402381445 + 09/19 01:50:00,14.14114114114114,14.14114114114114,19.672183504842253 + 09/19 02:00:00,14.187387387387388,14.187387387387388,19.683660170733938 + 09/19 02:10:00,14.212612612612613,14.212612612612613,19.694238869130616 + 09/19 02:20:00,14.237837837837838,14.237837837837838,19.704299075267337 + 09/19 02:30:00,14.263063063063063,14.263063063063063,19.71401624802602 + 09/19 02:40:00,14.288288288288289,14.288288288288289,19.72335989248102 + 09/19 02:50:00,14.313513513513513,14.313513513513513,19.732408020193657 + 09/19 03:00:00,14.338738738738739,14.338738738738739,19.74109977735661 + 09/19 03:10:00,14.363963963963965,14.363963963963965,19.75041260445689 + 09/19 03:20:00,14.389189189189189,14.389189189189189,19.75919720713072 + 09/19 03:30:00,14.414414414414415,14.414414414414415,19.767674760772555 + 09/19 03:40:00,14.439639639639639,14.439639639639639,19.775801205421858 + 09/19 03:50:00,14.464864864864865,14.464864864864865,19.783599804045786 + 09/19 04:00:00,14.49009009009009,14.49009009009009,19.791196608941406 + 09/19 04:10:00,14.49009009009009,14.49009009009009,19.7980879458623 + 09/19 04:20:00,14.49009009009009,14.49009009009009,19.804970231647287 + 09/19 04:30:00,14.49009009009009,14.49009009009009,19.811651537654954 + 09/19 04:40:00,14.49009009009009,14.49009009009009,19.818148750441048 + 09/19 04:50:00,14.49009009009009,14.49009009009009,19.824441165522534 + 09/19 05:00:00,14.49009009009009,14.49009009009009,19.830609140904217 + 09/19 05:10:00,14.511111111111111,14.511111111111111,19.836268748234106 + 09/19 05:20:00,14.532132132132132,14.532132132132132,19.841556894234864 + 09/19 05:30:00,14.553153153153153,14.553153153153153,19.846728082530388 + 09/19 05:40:00,14.574174174174175,14.574174174174175,19.851686557816213 + 09/19 05:50:00,14.595195195195196,14.595195195195196,19.85665595037583 + 09/19 06:00:00,14.616216216216217,14.616216216216217,19.861559187188584 + 09/19 06:10:00,14.523723723723723,14.523723723723723,17.861757616594944 + 09/19 06:20:00,14.431231231231232,14.431231231231232,17.62952356339363 + 09/19 06:30:00,14.338738738738739,14.338738738738739,17.544485606806995 + 09/19 06:40:00,14.246246246246246,14.246246246246246,17.477719460086634 + 09/19 06:50:00,14.153753753753755,14.153753753753755,17.424442429944248 + 09/19 07:00:00,14.061261261261262,14.061261261261262,17.379596660605466 + 09/19 07:05:00,13.989789789789791,13.989789789789791,15.899154659624353 + 09/19 07:10:00,13.989789789789791,13.989789789789791,15.899148009322702 + 09/19 07:15:00,13.918318318318317,13.918318318318317,15.679069975367878 + 09/19 07:20:00,13.918318318318317,13.918318318318317,15.679261783124965 + 09/19 07:30:00,13.846846846846847,13.846846846846847,15.574682532644184 + 09/19 07:40:00,13.775375375375376,13.775375375375376,15.488316661086233 + 09/19 07:50:00,13.703903903903905,13.703903903903905,15.414775616387779 + 09/19 08:00:00,13.632432432432433,13.632432432432433,15.349330729479683 + 09/19 08:05:00,13.565165165165166,13.565165165165166,15.265328704361462 + 09/19 08:10:00,13.565165165165166,13.565165165165166,15.26439494518466 + 09/19 08:20:00,13.497897897897899,13.497897897897899,15.200740123862062 + 09/19 08:30:00,13.430630630630632,13.430630630630632,15.15047953224507 + 09/19 08:40:00,13.363363363363364,13.363363363363364,15.102664647932329 + 09/19 08:50:00,13.296096096096097,13.296096096096097,15.058160807811124 + 09/19 09:00:00,13.22882882882883,13.22882882882883,15.016242508577637 + 09/19 09:10:00,13.157357357357359,13.157357357357359,14.976798411877653 + 09/19 09:20:00,13.085885885885887,13.085885885885887,14.92467406505592 + 09/19 09:30:00,13.014414414414415,13.014414414414415,14.884570684660235 + 09/19 09:40:00,12.942942942942946,12.942942942942946,14.845335321874336 + 09/19 09:50:00,12.871471471471472,12.871471471471472,14.808019648534485 + 09/19 10:00:00,12.8,12.8,14.772575190538097 + 09/19 10:10:00,12.8,12.8,14.738266379663962 + 09/19 10:20:00,12.8,12.8,14.706355483459286 + 09/19 10:30:00,12.8,12.8,14.678590621121723 + 09/19 10:40:00,12.8,12.8,14.652276876041377 + 09/19 10:50:00,12.8,12.8,14.626576690968428 + 09/19 11:00:00,12.8,12.8,14.601643274281017 + 09/19 11:10:00,12.8,12.8,14.578199650282745 + 09/19 11:20:00,12.8,12.8,14.56481351811007 + 09/19 11:30:00,12.8,12.8,14.543574831274802 + 09/19 11:40:00,12.8,12.8,14.52414133821987 + 09/19 11:50:00,12.8,12.8,14.507070774184565 + 09/19 12:00:00,12.8,12.8,14.49217870872633 + 09/19 12:10:00,12.8,12.8,14.47879176923202 + 09/19 12:20:00,12.8,12.8,14.456878477772117 + 09/19 12:30:00,12.8,12.8,14.446547619450481 + 09/19 12:40:00,12.8,12.8,14.435869204982197 + 09/19 12:50:00,12.8,12.8,14.42502943206112 + 09/19 13:00:00,12.8,12.8,14.413338631716958 + 09/19 13:10:00,12.8,12.8,14.401544504148282 + 09/19 13:20:00,12.8,12.8,14.387475491618565 + 09/19 13:30:00,12.8,12.8,14.379870517082992 + 09/19 13:40:00,12.8,12.8,14.368806943914441 + 09/19 13:50:00,12.8,12.8,14.357197073583406 + 09/19 14:00:00,12.8,12.8,14.351111270243177 + 09/19 14:10:00,12.8,12.8,14.348687365068578 + 09/19 14:20:00,12.8,12.8,14.350920456956743 + 09/19 14:30:00,12.8,12.8,14.346463116049833 + 09/19 14:40:00,12.8,12.8,14.348131464084125 + 09/19 14:50:00,12.8,12.8,14.342751519581759 + 09/19 15:00:00,12.8,12.8,14.334412143927964 + 09/19 15:05:00,12.8,12.8,16.48347629853279 + 09/19 15:10:00,12.8,12.8,16.482162238778295 + 09/19 15:20:00,12.8,12.8,16.728397406880946 + 09/19 15:30:00,12.8,12.8,16.821375690086307 + 09/19 15:40:00,12.8,12.8,16.889613590635535 + 09/19 15:50:00,12.8,12.8,16.944642093147239 + 09/19 16:00:00,12.8,12.8,16.990522122904609 + 09/19 16:10:00,12.8,12.8,17.05639251847251 + 09/19 16:20:00,12.8,12.8,17.111704481402446 + 09/19 16:30:00,12.8,12.8,17.144151220090227 + 09/19 16:40:00,12.8,12.8,17.17366771112411 + 09/19 16:50:00,12.8,12.8,17.20094443930691 + 09/19 17:00:00,12.8,12.8,17.226262243486784 + 09/19 17:10:00,12.8,12.8,17.263116319091034 + 09/19 17:20:00,12.8,12.8,17.2862286641065 + 09/19 17:30:00,12.8,12.8,17.30725708413177 + 09/19 17:40:00,12.8,12.8,17.328348146322047 + 09/19 17:50:00,12.8,12.8,17.34613276815183 + 09/19 18:00:00,12.8,12.8,17.365828898003927 + 09/19 18:10:00,12.8,12.8,17.384421118967056 + 09/19 18:20:00,12.8,12.8,17.40495141228566 + 09/19 18:30:00,12.8,12.8,17.424867725177778 + 09/19 18:40:00,12.8,12.8,17.444574846813418 + 09/19 18:50:00,12.8,12.8,17.463429353931319 + 09/19 19:00:00,12.8,12.8,17.481261057241697 + 09/19 19:10:00,12.8,12.8,17.51087211326651 + 09/19 19:20:00,12.8,12.8,17.5272163530839 + 09/19 19:30:00,12.8,12.8,17.542020617027626 + 09/19 19:40:00,12.833633633633636,12.833633633633636,17.555810393367204 + 09/19 19:50:00,12.87987987987988,12.87987987987988,17.56868519443804 + 09/19 20:00:00,12.926126126126127,12.926126126126127,17.580740145635454 + 09/19 20:10:00,12.951351351351353,12.951351351351353,17.569755820078166 + 09/19 20:20:00,12.976576576576577,12.976576576576577,17.584123951509868 + 09/19 20:30:00,13.001801801801803,13.001801801801803,17.59363517135399 + 09/19 20:40:00,13.027027027027028,13.027027027027028,17.602579613667584 + 09/19 20:50:00,13.052252252252253,13.052252252252253,17.611143514340119 + 09/19 21:00:00,13.077477477477478,13.077477477477478,17.619337312423807 + 09/19 21:10:00,13.148948948948949,13.148948948948949,17.627024986759243 + 09/19 21:20:00,13.220420420420421,13.220420420420421,17.63464243112441 + 09/19 21:30:00,13.291891891891894,13.291891891891894,17.642164880943669 + 09/19 21:40:00,13.363363363363364,13.363363363363364,17.64968379683841 + 09/19 21:50:00,13.434834834834835,13.434834834834835,17.6571273821894 + 09/19 22:00:00,13.506306306306307,13.506306306306307,17.66471742022388 + 09/19 22:10:00,13.506306306306307,13.506306306306307,19.03371253930067 + 09/19 22:20:00,13.506306306306307,13.506306306306307,19.179998735993125 + 09/19 22:30:00,13.506306306306307,13.506306306306307,19.245876992143054 + 09/19 22:40:00,13.506306306306307,13.506306306306307,19.297947888767113 + 09/19 22:50:00,13.506306306306307,13.506306306306307,19.34018083795379 + 09/19 23:00:00,13.506306306306307,13.506306306306307,19.375774618926127 + 09/19 23:10:00,13.527327327327328,13.527327327327328,19.406555719806293 + 09/19 23:20:00,13.548348348348349,13.548348348348349,19.43401223738659 + 09/19 23:30:00,13.56936936936937,13.56936936936937,19.45869130897828 + 09/19 23:40:00,13.590390390390392,13.590390390390392,19.481177090175199 + 09/19 23:50:00,13.611411411411412,13.611411411411412,19.501830508527925 + 09/19 24:00:00,13.632432432432433,13.632432432432433,19.520869626945165 + 09/20 00:10:00,13.703903903903905,13.703903903903905,19.538755496084066 + 09/20 00:20:00,13.775375375375376,13.775375375375376,19.555545282124894 + 09/20 00:30:00,13.846846846846847,13.846846846846847,19.571498472179007 + 09/20 00:40:00,13.918318318318319,13.918318318318319,19.586671331835175 + 09/20 00:50:00,13.989789789789791,13.989789789789791,19.60113233860907 + 09/20 01:00:00,14.061261261261262,14.061261261261262,19.615076503717384 + 09/20 01:10:00,14.061261261261262,14.061261261261262,19.628462944240185 + 09/20 01:20:00,14.061261261261262,14.061261261261262,19.641318669193049 + 09/20 01:30:00,14.061261261261262,14.061261261261262,19.6535865636916 + 09/20 01:40:00,14.061261261261262,14.061261261261262,19.665259453129687 + 09/20 01:50:00,14.061261261261262,14.061261261261262,19.676441593702689 + 09/20 02:00:00,14.061261261261262,14.061261261261262,19.687184402934564 + 09/20 02:10:00,14.061261261261262,14.061261261261262,19.698035638896998 + 09/20 02:20:00,14.061261261261262,14.061261261261262,19.70775036690286 + 09/20 02:30:00,14.061261261261262,14.061261261261262,19.716702297370149 + 09/20 02:40:00,14.061261261261262,14.061261261261262,19.724985666963364 + 09/20 02:50:00,14.061261261261262,14.061261261261262,19.73289972073622 + 09/20 03:00:00,14.061261261261262,14.061261261261262,19.74046683947107 + 09/20 03:10:00,14.061261261261262,14.061261261261262,19.746329377251027 + 09/20 03:20:00,14.061261261261262,14.061261261261262,19.752429821031194 + 09/20 03:30:00,14.061261261261262,14.061261261261262,19.75847636228387 + 09/20 03:40:00,14.061261261261262,14.061261261261262,19.76473627299763 + 09/20 03:50:00,14.061261261261262,14.061261261261262,19.77105777485996 + 09/20 04:00:00,14.061261261261262,14.061261261261262,19.77755640603845 + 09/20 04:10:00,14.082282282282283,14.082282282282283,19.784995118276034 + 09/20 04:20:00,14.103303303303303,14.103303303303303,19.792301575373985 + 09/20 04:30:00,14.124324324324324,14.124324324324324,19.799576389999939 + 09/20 04:40:00,14.145345345345346,14.145345345345346,19.806679481766176 + 09/20 04:50:00,14.166366366366367,14.166366366366367,19.813598901120544 + 09/20 05:00:00,14.187387387387388,14.187387387387388,19.820333028802833 + 09/20 05:10:00,14.187387387387388,14.187387387387388,19.826799163837746 + 09/20 05:20:00,14.187387387387388,14.187387387387388,19.833141527066056 + 09/20 05:30:00,14.187387387387388,14.187387387387388,19.839297787532379 + 09/20 05:40:00,14.187387387387389,14.187387387387389,19.845254055880376 + 09/20 05:50:00,14.187387387387388,14.187387387387388,19.85100563439569 + 09/20 06:00:00,14.187387387387388,14.187387387387388,19.856518695627974 + 09/20 06:10:00,14.166366366366367,14.166366366366367,17.8607914989988 + 09/20 06:20:00,14.145345345345346,14.145345345345346,17.628353605091303 + 09/20 06:30:00,14.124324324324324,14.124324324324324,17.54250338786248 + 09/20 06:40:00,14.103303303303303,14.103303303303303,17.47481496555336 + 09/20 06:50:00,14.082282282282283,14.082282282282283,17.420692418312549 + 09/20 07:00:00,14.061261261261262,14.061261261261262,17.375307378912959 + 09/20 07:05:00,13.968768768768769,13.968768768768769,15.895949069717535 + 09/20 07:10:00,13.968768768768769,13.968768768768769,15.894932142474346 + 09/20 07:15:00,13.876276276276276,13.876276276276276,15.678680926110089 + 09/20 07:20:00,13.876276276276276,13.876276276276276,15.678470943533205 + 09/20 07:30:00,13.783783783783785,13.783783783783785,15.573445513462469 + 09/20 07:40:00,13.691291291291293,13.691291291291293,15.488344056293374 + 09/20 07:50:00,13.5987987987988,13.5987987987988,15.416439505830823 + 09/20 08:00:00,13.506306306306307,13.506306306306307,15.353474027644874 + 09/20 08:05:00,13.434834834834835,13.434834834834835,15.272059465233783 + 09/20 08:10:00,13.434834834834835,13.434834834834835,15.271222830811313 + 09/20 08:20:00,13.363363363363364,13.363363363363364,15.208021237869387 + 09/20 08:30:00,13.291891891891894,13.291891891891894,15.15729581959581 + 09/20 08:40:00,13.220420420420421,13.220420420420421,15.10908755057661 + 09/20 08:50:00,13.148948948948949,13.148948948948949,15.064202301250735 + 09/20 09:00:00,13.077477477477478,13.077477477477478,15.021878180837616 + 09/20 09:10:00,12.95975975975976,12.95975975975976,14.981502838482312 + 09/20 09:20:00,12.842042042042042,12.842042042042042,14.930465822034704 + 09/20 09:30:00,12.8,12.8,14.891386261106387 + 09/20 09:40:00,12.8,12.8,14.853278102338493 + 09/20 09:50:00,12.8,12.8,14.816429808171075 + 09/20 10:00:00,12.8,12.8,14.780741765820638 + 09/20 10:10:00,12.8,12.8,14.746369980273184 + 09/20 10:20:00,12.8,12.8,14.71243335641299 + 09/20 10:30:00,12.8,12.8,14.683118924848584 + 09/20 10:40:00,12.8,12.8,14.655616563525234 + 09/20 10:50:00,12.8,12.8,14.629770292359801 + 09/20 11:00:00,12.8,12.8,14.605738896509413 + 09/20 11:10:00,12.8,12.8,14.583790181999369 + 09/20 11:20:00,12.8,12.8,14.57582027233909 + 09/20 11:30:00,12.8,12.8,14.555376917291867 + 09/20 11:40:00,12.8,12.8,14.53844478086754 + 09/20 11:50:00,12.8,12.8,14.521308592445858 + 09/20 12:00:00,12.8,12.8,14.504908441255156 + 09/20 12:10:00,12.8,12.8,14.488603582662093 + 09/20 12:20:00,12.8,12.8,14.464056934196329 + 09/20 12:30:00,12.8,12.8,14.450109627038355 + 09/20 12:40:00,12.8,12.8,14.437677330039959 + 09/20 12:50:00,12.8,12.8,14.428338463559431 + 09/20 13:00:00,12.8,12.8,14.42202910608955 + 09/20 13:10:00,12.8,12.8,14.418747608810313 + 09/20 13:20:00,12.8,12.8,14.418493743078383 + 09/20 13:30:00,12.8,12.8,14.4173815396446 + 09/20 13:40:00,12.8,12.8,14.41168090313808 + 09/20 13:50:00,12.8,12.8,14.414338340995242 + 09/20 14:00:00,12.8,12.8,14.411245668581089 + 09/20 14:10:00,12.8,12.8,14.401559755509938 + 09/20 14:20:00,12.8,12.8,14.406711951601333 + 09/20 14:30:00,12.8,12.8,14.401235389576386 + 09/20 14:40:00,12.8,12.8,14.396433448158814 + 09/20 14:50:00,12.8,12.8,14.388055691837844 + 09/20 15:00:00,12.8,12.8,14.379301358603853 + 09/20 15:05:00,12.8,12.8,16.512632283236465 + 09/20 15:10:00,12.8,12.8,16.511557150889524 + 09/20 15:20:00,12.8,12.8,16.75322559290269 + 09/20 15:30:00,12.8,12.8,16.839186476031978 + 09/20 15:40:00,12.8,12.8,16.90583876306154 + 09/20 15:50:00,12.8,12.8,16.95851930108135 + 09/20 16:00:00,12.8,12.8,17.003178531555208 + 09/20 16:10:00,12.8,12.8,17.06850976234416 + 09/20 16:20:00,12.8,12.8,17.12321353557273 + 09/20 16:30:00,12.8,12.8,17.15504545848822 + 09/20 16:40:00,12.8,12.8,17.177041896373333 + 09/20 16:50:00,12.8,12.8,17.20679144555173 + 09/20 17:00:00,12.8,12.8,17.229164772478986 + 09/20 17:10:00,12.8,12.8,17.261225533645406 + 09/20 17:20:00,12.8,12.8,17.29149870716954 + 09/20 17:30:00,12.8,12.8,17.31187011068531 + 09/20 17:40:00,12.8,12.8,17.33132571274682 + 09/20 17:50:00,12.8,12.8,17.352206218850058 + 09/20 18:00:00,12.8,12.8,17.372458710242066 + 09/20 18:10:00,12.8,12.8,17.392961834048799 + 09/20 18:20:00,12.8,12.8,17.413565612860908 + 09/20 18:30:00,12.8,12.8,17.4333182322466 + 09/20 18:40:00,12.8,12.8,17.452403152977199 + 09/20 18:50:00,12.8,12.8,17.470497584959526 + 09/20 19:00:00,12.8,12.8,17.48739967868885 + 09/20 19:10:00,12.8,12.8,17.516038671859666 + 09/20 19:20:00,12.8,12.8,17.531563092502006 + 09/20 19:30:00,12.8,12.8,17.545719456981659 + 09/20 19:40:00,12.8,12.8,17.55904746130821 + 09/20 19:50:00,12.8,12.8,17.571608438443975 + 09/20 20:00:00,12.8,12.8,17.583671435045195 + 09/20 20:10:00,12.821021021021022,12.821021021021022,17.57314627837129 + 09/20 20:20:00,12.842042042042042,12.842042042042042,17.588270378214348 + 09/20 20:30:00,12.863063063063063,12.863063063063063,17.598493429125015 + 09/20 20:40:00,12.884084084084084,12.884084084084084,17.60809016356689 + 09/20 20:50:00,12.905105105105106,12.905105105105106,17.617148751896527 + 09/20 21:00:00,12.926126126126127,12.926126126126127,17.62579292820296 + 09/20 21:10:00,13.022822822822823,13.022822822822823,17.63440297153685 + 09/20 21:20:00,13.11951951951952,13.11951951951952,17.643604354053168 + 09/20 21:30:00,13.216216216216216,13.216216216216216,17.65224341015898 + 09/20 21:40:00,13.312912912912914,13.312912912912914,17.66071963564999 + 09/20 21:50:00,13.40960960960961,13.40960960960961,17.66884912028501 + 09/20 22:00:00,13.506306306306307,13.506306306306307,17.676888789174254 + 09/20 22:10:00,13.506306306306307,13.506306306306307,19.042599899023114 + 09/20 22:20:00,13.506306306306307,13.506306306306307,19.18681499508221 + 09/20 22:30:00,13.506306306306307,13.506306306306307,19.250616257324795 + 09/20 22:40:00,13.506306306306307,13.506306306306307,19.30092792527718 + 09/20 22:50:00,13.506306306306307,13.506306306306307,19.34169180550657 + 09/20 23:00:00,13.506306306306307,13.506306306306307,19.375995302105765 + 09/20 23:10:00,13.506306306306307,13.506306306306307,19.405801594550245 + 09/20 23:20:00,13.506306306306307,13.506306306306307,19.432150729045114 + 09/20 23:30:00,13.506306306306307,13.506306306306307,19.45572688120598 + 09/20 23:40:00,13.506306306306307,13.506306306306307,19.477198186074383 + 09/20 23:50:00,13.506306306306307,13.506306306306307,19.496916101193859 + 09/20 24:00:00,13.506306306306307,13.506306306306307,19.51515072327593 + 09/21 00:10:00,13.506306306306307,13.506306306306307,19.531435299535258 + 09/21 00:20:00,13.506306306306307,13.506306306306307,19.5465237034622 + 09/21 00:30:00,13.506306306306307,13.506306306306307,19.560082083389245 + 09/21 00:40:00,13.506306306306307,13.506306306306307,19.572248087853894 + 09/21 00:50:00,13.506306306306307,13.506306306306307,19.58317706880213 + 09/21 01:00:00,13.506306306306307,13.506306306306307,19.59302856955989 + 09/21 01:10:00,13.46006006006006,13.46006006006006,19.603085415620158 + 09/21 01:20:00,13.413813813813814,13.413813813813814,19.610903399263365 + 09/21 01:30:00,13.367567567567568,13.367567567567568,19.618505024170454 + 09/21 01:40:00,13.321321321321323,13.321321321321323,19.62529558996788 + 09/21 01:50:00,13.275075075075077,13.275075075075077,19.631944613603499 + 09/21 02:00:00,13.22882882882883,13.22882882882883,19.638119454150585 + 09/21 02:10:00,13.275075075075077,13.275075075075077,19.644135335930149 + 09/21 02:20:00,13.321321321321323,13.321321321321323,19.6517697379944 + 09/21 02:30:00,13.367567567567568,13.367567567567568,19.659842964247546 + 09/21 02:40:00,13.413813813813816,13.413813813813816,19.66866488687183 + 09/21 02:50:00,13.46006006006006,13.46006006006006,19.677912709508424 + 09/21 03:00:00,13.506306306306307,13.506306306306307,19.687533428727496 + 09/21 03:10:00,13.506306306306307,13.506306306306307,19.696713588817639 + 09/21 03:20:00,13.506306306306307,13.506306306306307,19.706378818202248 + 09/21 03:30:00,13.506306306306307,13.506306306306307,19.715790842700455 + 09/21 03:40:00,13.506306306306307,13.506306306306307,19.725066185535338 + 09/21 03:50:00,13.506306306306307,13.506306306306307,19.734028798100206 + 09/21 04:00:00,13.506306306306307,13.506306306306307,19.74281313812601 + 09/21 04:10:00,13.527327327327328,13.527327327327328,19.751841339134267 + 09/21 04:20:00,13.548348348348349,13.548348348348349,19.760314259192876 + 09/21 04:30:00,13.56936936936937,13.56936936936937,19.768451319035085 + 09/21 04:40:00,13.590390390390392,13.590390390390392,19.77615687571207 + 09/21 04:50:00,13.611411411411412,13.611411411411412,19.78352814703021 + 09/21 05:00:00,13.632432432432433,13.632432432432433,19.790668101791476 + 09/21 05:10:00,13.611411411411412,13.611411411411412,19.797256606508247 + 09/21 05:20:00,13.590390390390392,13.590390390390392,19.80284215829478 + 09/21 05:30:00,13.56936936936937,13.56936936936937,19.80744922057331 + 09/21 05:40:00,13.548348348348349,13.548348348348349,19.81096504835106 + 09/21 05:50:00,13.527327327327328,13.527327327327328,19.813697108337043 + 09/21 06:00:00,13.506306306306307,13.506306306306307,19.815622458971676 + 09/21 06:10:00,13.527327327327328,13.527327327327328,17.81892959116082 + 09/21 06:20:00,13.548348348348349,13.548348348348349,17.585096156892953 + 09/21 06:30:00,13.56936936936937,13.56936936936937,17.49934427414301 + 09/21 06:40:00,13.590390390390392,13.590390390390392,17.433359343172577 + 09/21 06:50:00,13.611411411411412,13.611411411411412,17.38209107455284 + 09/21 07:00:00,13.632432432432433,13.632432432432433,17.34026959066894 + 09/21 07:05:00,13.586186186186187,13.586186186186187,15.862626883935415 + 09/21 07:10:00,13.586186186186187,13.586186186186187,15.864976860140386 + 09/21 07:15:00,13.539939939939942,13.539939939939942,15.643610693831399 + 09/21 07:20:00,13.539939939939942,13.539939939939942,15.643360140213476 + 09/21 07:30:00,13.493693693693695,13.493693693693695,15.540767286943439 + 09/21 07:40:00,13.447447447447449,13.447447447447449,15.456079430923094 + 09/21 07:50:00,13.401201201201202,13.401201201201202,15.383844056252393 + 09/21 08:00:00,13.354954954954956,13.354954954954956,15.32050242348612 + 09/21 08:05:00,13.283483483483485,13.283483483483485,15.237282608719294 + 09/21 08:10:00,13.283483483483485,13.283483483483485,15.237363133470183 + 09/21 08:20:00,13.212012012012013,13.212012012012013,15.175935412328839 + 09/21 08:30:00,13.140540540540542,13.140540540540542,15.126034909973184 + 09/21 08:40:00,13.06906906906907,13.06906906906907,15.079422878520838 + 09/21 08:50:00,12.997597597597599,12.997597597597599,15.035878577949197 + 09/21 08:55:00,12.926126126126127,12.926126126126127,14.996128843665638 + 09/21 09:00:00,12.926126126126127,12.926126126126127,14.995890248751957 + 09/21 09:10:00,12.833633633633636,12.833633633633636,14.957655050063128 + 09/21 09:20:00,12.8,12.8,14.911959207875283 + 09/21 09:30:00,12.8,12.8,14.878755632855896 + 09/21 09:40:00,12.8,12.8,14.84739900071544 + 09/21 09:50:00,12.8,12.8,14.816981086447758 + 09/21 10:00:00,12.8,12.8,14.787124447847665 + 09/21 10:10:00,12.8,12.8,14.757670281408775 + 09/21 10:20:00,12.8,12.8,14.725157856832931 + 09/21 10:30:00,12.8,12.8,14.696538598385289 + 09/21 10:40:00,12.8,12.8,14.669785665765449 + 09/21 10:50:00,12.8,12.8,14.64703235331789 + 09/21 11:00:00,12.8,12.8,14.628856576656329 + 09/21 11:10:00,12.8,12.8,14.615267388195122 + 09/21 11:20:00,12.8,12.8,14.61519260540017 + 09/21 11:30:00,12.8,12.8,14.608881257226022 + 09/21 11:40:00,12.8,12.8,14.604140113974934 + 09/21 11:50:00,12.8,12.8,14.598867655770344 + 09/21 12:00:00,12.8,12.8,14.592068050004622 + 09/21 12:10:00,12.8,12.8,14.583830369363014 + 09/21 12:20:00,12.8,12.8,14.564719180680429 + 09/21 12:30:00,12.8,12.8,14.554177159497997 + 09/21 12:40:00,12.8,12.8,14.5427499904727 + 09/21 12:50:00,12.8,12.8,14.529847767305308 + 09/21 13:00:00,12.8,12.8,14.515403349505455 + 09/21 13:10:00,12.8,12.8,14.500018136469091 + 09/21 13:20:00,12.8,12.8,14.488039457000657 + 09/21 13:30:00,12.8,12.8,14.472897791511562 + 09/21 13:40:00,12.8,12.8,14.459074628876256 + 09/21 13:50:00,12.8,12.8,14.44820866020267 + 09/21 14:00:00,12.8,12.8,14.44046817331404 + 09/21 14:10:00,12.8,12.8,14.436640659038562 + 09/21 14:20:00,12.8,12.8,14.437907494063234 + 09/21 14:30:00,12.8,12.8,14.437013319941979 + 09/21 14:40:00,12.8,12.8,14.434135856080668 + 09/21 14:50:00,12.8,12.8,14.444412251129649 + 09/21 15:00:00,12.8,12.8,14.467166435480728 + 09/21 15:05:00,12.8,12.8,16.63714122186426 + 09/21 15:10:00,12.8,12.8,16.63302788546999 + 09/21 15:15:00,12.8,12.8,16.89962625990249 + 09/21 15:20:00,12.8,12.8,16.89712899389185 + 09/21 15:30:00,12.863063063063063,12.863063063063063,17.00361512713264 + 09/21 15:40:00,13.027027027027028,13.027027027027028,17.083154476050269 + 09/21 15:50:00,13.190990990990992,13.190990990990992,17.146350915146685 + 09/21 16:00:00,13.354954954954956,13.354954954954956,17.19585564680606 + 09/21 16:10:00,13.333933933933935,13.333933933933935,17.263389351671888 + 09/21 16:20:00,13.312912912912914,13.312912912912914,17.318252607998909 + 09/21 16:30:00,13.291891891891894,13.291891891891894,17.348840747540355 + 09/21 16:40:00,13.270870870870873,13.270870870870873,17.3755195550601 + 09/21 16:50:00,13.24984984984985,13.24984984984985,17.399134303372948 + 09/21 17:00:00,13.22882882882883,13.22882882882883,17.419416580165668 + 09/21 17:10:00,13.203603603603604,13.203603603603604,17.449571796238204 + 09/21 17:20:00,13.17837837837838,13.17837837837838,17.470871339862609 + 09/21 17:30:00,13.153153153153154,13.153153153153154,17.486054098489498 + 09/21 17:40:00,13.12792792792793,13.12792792792793,17.50079969070761 + 09/21 17:50:00,13.102702702702704,13.102702702702704,17.514923916912826 + 09/21 18:00:00,13.077477477477478,13.077477477477478,17.52825006015135 + 09/21 18:10:00,13.102702702702704,13.102702702702704,17.540809694743559 + 09/21 18:20:00,13.127927927927928,13.127927927927928,17.55289028119777 + 09/21 18:30:00,13.153153153153154,13.153153153153154,17.564567987569796 + 09/21 18:40:00,13.17837837837838,13.17837837837838,17.575908312811565 + 09/21 18:50:00,13.203603603603604,13.203603603603604,17.586940134914714 + 09/21 19:00:00,13.22882882882883,13.22882882882883,17.597527321375194 + 09/21 19:10:00,13.22882882882883,13.22882882882883,17.620740923987968 + 09/21 19:20:00,13.22882882882883,13.22882882882883,17.631406885578686 + 09/21 19:30:00,13.22882882882883,13.22882882882883,17.64118569239759 + 09/21 19:40:00,13.22882882882883,13.22882882882883,17.650591026186789 + 09/21 19:50:00,13.22882882882883,13.22882882882883,17.65962530196096 + 09/21 20:00:00,13.22882882882883,13.22882882882883,17.668289449257317 + 09/21 20:10:00,13.22882882882883,13.22882882882883,17.653979314321889 + 09/21 20:20:00,13.22882882882883,13.22882882882883,17.665612594721087 + 09/21 20:30:00,13.22882882882883,13.22882882882883,17.67258625233855 + 09/21 20:40:00,13.22882882882883,13.22882882882883,17.67895333992117 + 09/21 20:50:00,13.22882882882883,13.22882882882883,17.684891076124 + 09/21 21:00:00,13.22882882882883,13.22882882882883,17.690374404211469 + 09/21 21:10:00,13.24984984984985,13.24984984984985,17.696001225382568 + 09/21 21:20:00,13.270870870870871,13.270870870870871,17.701780421802018 + 09/21 21:30:00,13.291891891891894,13.291891891891894,17.70792312668535 + 09/21 21:40:00,13.312912912912914,13.312912912912914,17.714449430791036 + 09/21 21:50:00,13.333933933933935,13.333933933933935,17.721289380474624 + 09/21 22:00:00,13.354954954954956,13.354954954954956,17.728386969338826 + 09/21 22:10:00,13.354954954954956,13.354954954954956,19.089139501566426 + 09/21 22:20:00,13.354954954954956,13.354954954954956,19.24259130632846 + 09/21 22:30:00,13.354954954954956,13.354954954954956,19.30450483935089 + 09/21 22:40:00,13.354954954954956,13.354954954954956,19.354909171272838 + 09/21 22:50:00,13.354954954954956,13.354954954954956,19.393113871527328 + 09/21 23:00:00,13.354954954954956,13.354954954954956,19.424779621518018 + 09/21 23:10:00,13.354954954954956,13.354954954954956,19.451655704838968 + 09/21 23:20:00,13.354954954954956,13.354954954954956,19.475299753855255 + 09/21 23:30:00,13.354954954954956,13.354954954954956,19.496418461836436 + 09/21 23:40:00,13.354954954954956,13.354954954954956,19.51555519887889 + 09/21 23:50:00,13.354954954954956,13.354954954954956,19.533100197990778 + 09/21 24:00:00,13.354954954954956,13.354954954954956,19.54923777138023 + 09/22 00:10:00,13.380180180180182,13.380180180180182,19.56437818076313 + 09/22 00:20:00,13.405405405405407,13.405405405405407,19.57746951325591 + 09/22 00:30:00,13.430630630630632,13.430630630630632,19.590081476249286 + 09/22 00:40:00,13.455855855855857,13.455855855855857,19.602007831455713 + 09/22 00:50:00,13.481081081081081,13.481081081081081,19.6134971273221 + 09/22 01:00:00,13.506306306306307,13.506306306306307,19.62479816777155 + 09/22 01:10:00,13.527327327327328,13.527327327327328,19.635900069289428 + 09/22 01:20:00,13.548348348348349,13.548348348348349,19.64771537450457 + 09/22 01:30:00,13.56936936936937,13.56936936936937,19.65891440769652 + 09/22 01:40:00,13.590390390390392,13.590390390390392,19.669760280187547 + 09/22 01:50:00,13.611411411411412,13.611411411411412,19.68010501055745 + 09/22 02:00:00,13.632432432432433,13.632432432432433,19.690051298146245 + 09/22 02:10:00,13.632432432432433,13.632432432432433,19.699904796333266 + 09/22 02:20:00,13.632432432432433,13.632432432432433,19.709144803504296 + 09/22 02:30:00,13.632432432432433,13.632432432432433,19.717838161258155 + 09/22 02:40:00,13.632432432432433,13.632432432432433,19.726003478460635 + 09/22 02:50:00,13.632432432432433,13.632432432432433,19.73376277400309 + 09/22 03:00:00,13.632432432432433,13.632432432432433,19.74109422005187 + 09/22 03:10:00,13.657657657657659,13.657657657657659,19.747391909778849 + 09/22 03:20:00,13.682882882882883,13.682882882882883,19.752819857347857 + 09/22 03:30:00,13.708108108108109,13.708108108108109,19.758552447560317 + 09/22 03:40:00,13.733333333333335,13.733333333333335,19.764610007303568 + 09/22 03:50:00,13.758558558558559,13.758558558558559,19.771005423959659 + 09/22 04:00:00,13.783783783783785,13.783783783783785,19.777669967729567 + 09/22 04:10:00,13.804804804804805,13.804804804804805,19.785047352739995 + 09/22 04:20:00,13.825825825825828,13.825825825825828,19.792722736012207 + 09/22 04:30:00,13.846846846846848,13.846846846846848,19.800287808064789 + 09/22 04:40:00,13.867867867867869,13.867867867867869,19.80774744635693 + 09/22 04:50:00,13.88888888888889,13.88888888888889,19.81497391203737 + 09/22 05:00:00,13.90990990990991,13.90990990990991,19.821984060220005 + 09/22 05:10:00,13.956156156156157,13.956156156156157,19.828299925614386 + 09/22 05:20:00,14.002402402402403,14.002402402402403,19.83432635517241 + 09/22 05:30:00,14.04864864864865,14.04864864864865,19.840088886668995 + 09/22 05:40:00,14.094894894894896,14.094894894894896,19.845559680474019 + 09/22 05:50:00,14.14114114114114,14.14114114114114,19.850771224152447 + 09/22 06:00:00,14.187387387387388,14.187387387387388,19.855701254456418 + 09/22 06:10:00,14.187387387387388,14.187387387387388,17.86424133180749 + 09/22 06:20:00,14.187387387387388,14.187387387387388,17.633340742092565 + 09/22 06:30:00,14.187387387387388,14.187387387387388,17.549723179442326 + 09/22 06:40:00,14.187387387387389,14.187387387387389,17.484960910647169 + 09/22 06:50:00,14.187387387387388,14.187387387387388,17.434222098730659 + 09/22 07:00:00,14.187387387387388,14.187387387387388,17.39230044108331 + 09/22 07:05:00,14.12012012012012,14.12012012012012,15.921204517863567 + 09/22 07:10:00,14.12012012012012,14.12012012012012,15.920301779155979 + 09/22 07:15:00,14.052852852852853,14.052852852852853,15.701103199013165 + 09/22 07:20:00,14.052852852852853,14.052852852852853,15.701999303892006 + 09/22 07:30:00,13.985585585585586,13.985585585585586,15.598875578716037 + 09/22 07:40:00,13.91831831831832,13.91831831831832,15.51312533870292 + 09/22 07:50:00,13.851051051051052,13.851051051051052,15.440834099357616 + 09/22 08:00:00,13.783783783783785,13.783783783783785,15.37699805029762 + 09/22 08:05:00,13.737537537537538,13.737537537537538,15.293992422471009 + 09/22 08:10:00,13.737537537537538,13.737537537537538,15.293954694595794 + 09/22 08:20:00,13.691291291291293,13.691291291291293,15.232753242837408 + 09/22 08:30:00,13.645045045045047,13.645045045045047,15.183254396019708 + 09/22 08:40:00,13.5987987987988,13.5987987987988,15.13732148967663 + 09/22 08:50:00,13.552552552552554,13.552552552552554,15.094729525786257 + 09/22 09:00:00,13.506306306306307,13.506306306306307,15.055408807731208 + 09/22 09:10:00,13.40960960960961,13.40960960960961,15.018456323734835 + 09/22 09:20:00,13.312912912912913,13.312912912912913,14.973054282264603 + 09/22 09:30:00,13.216216216216216,13.216216216216216,14.939674642210015 + 09/22 09:40:00,13.11951951951952,13.11951951951952,14.907582574396195 + 09/22 09:50:00,13.022822822822823,13.022822822822823,14.875973914041707 + 09/22 09:55:00,12.926126126126127,12.926126126126127,14.845565414606887 + 09/22 10:00:00,12.926126126126127,12.926126126126127,14.845256880288663 + 09/22 10:10:00,12.812612612612615,12.812612612612615,14.813088576183628 + 09/22 10:20:00,12.8,12.8,14.778509539153369 + 09/22 10:30:00,12.8,12.8,14.747463331465104 + 09/22 10:40:00,12.8,12.8,14.717219779541097 + 09/22 10:50:00,12.8,12.8,14.688310494522535 + 09/22 11:00:00,12.8,12.8,14.660907130541889 + 09/22 11:10:00,12.8,12.8,14.635154421658685 + 09/22 11:20:00,12.8,12.8,14.620365071090737 + 09/22 11:30:00,12.8,12.8,14.597260061979256 + 09/22 11:40:00,12.8,12.8,14.575390863606613 + 09/22 11:50:00,12.8,12.8,14.557886448851577 + 09/22 12:00:00,12.8,12.8,14.533213015045443 + 09/22 12:10:00,12.8,12.8,14.511302083670218 + 09/22 12:20:00,12.8,12.8,14.490219325091259 + 09/22 12:30:00,12.8,12.8,14.475170926549055 + 09/22 12:40:00,12.8,12.8,14.453710081426035 + 09/22 12:50:00,12.8,12.8,14.446393397895469 + 09/22 13:00:00,12.8,12.8,14.43092041965967 + 09/22 13:10:00,12.8,12.8,14.419579394507276 + 09/22 13:20:00,12.8,12.8,14.41069812542903 + 09/22 13:30:00,12.8,12.8,14.398647726462864 + 09/22 13:40:00,12.8,12.8,14.387418768277156 + 09/22 13:50:00,12.8,12.8,14.377354275252929 + 09/22 14:00:00,12.8,12.8,14.368829541371392 + 09/22 14:10:00,12.8,12.8,14.36295454264691 + 09/22 14:20:00,12.8,12.8,14.361140492045206 + 09/22 14:30:00,12.8,12.8,14.356365419362657 + 09/22 14:40:00,12.8,12.8,14.346871026157645 + 09/22 14:50:00,12.8,12.8,14.343746602712507 + 09/22 15:00:00,12.8,12.8,14.337038161914766 + 09/22 15:05:00,12.8,12.8,16.48194442497372 + 09/22 15:10:00,12.8,12.8,16.48086705880903 + 09/22 15:20:00,12.8,12.8,16.72602900262377 + 09/22 15:30:00,12.8,12.8,16.822710044953998 + 09/22 15:40:00,12.8,12.8,16.89615252894294 + 09/22 15:50:00,12.8,12.8,16.9540849463116 + 09/22 16:00:00,12.8,12.8,17.002098438984313 + 09/22 16:10:00,12.8,12.8,17.056986079469007 + 09/22 16:20:00,12.8,12.8,17.119681902355397 + 09/22 16:30:00,12.8,12.8,17.149234029962935 + 09/22 16:40:00,12.8,12.8,17.18116818423693 + 09/22 16:50:00,12.8,12.8,17.209049789352865 + 09/22 17:00:00,12.8,12.8,17.235277042399085 + 09/22 17:10:00,12.8,12.8,17.273408306777129 + 09/22 17:20:00,12.8,12.8,17.30296227359652 + 09/22 17:30:00,12.8,12.8,17.325887006243794 + 09/22 17:40:00,12.8,12.8,17.347698419638154 + 09/22 17:50:00,12.8,12.8,17.36302120546151 + 09/22 18:00:00,12.8,12.8,17.382603739339577 + 09/22 18:10:00,12.8,12.8,17.402049064607945 + 09/22 18:20:00,12.8,12.8,17.420288447619308 + 09/22 18:30:00,12.8,12.8,17.4395535322952 + 09/22 18:40:00,12.8,12.8,17.45762932564399 + 09/22 18:50:00,12.8,12.8,17.47505202775656 + 09/22 19:00:00,12.8,12.8,17.491367204864298 + 09/22 19:10:00,12.8,12.8,17.519458332804285 + 09/22 19:20:00,12.8,12.8,17.534586090830194 + 09/22 19:30:00,12.8,12.8,17.548296654840646 + 09/22 19:40:00,12.8,12.8,17.561121568530255 + 09/22 19:50:00,12.8,12.8,17.57306021580924 + 09/22 20:00:00,12.8,12.8,17.58419390927649 + 09/22 20:10:00,12.8,12.8,17.572634969971778 + 09/22 20:20:00,12.842042042042042,12.842042042042042,17.58768727057267 + 09/22 20:30:00,12.93873873873874,12.93873873873874,17.59797180893283 + 09/22 20:40:00,13.035435435435437,13.035435435435437,17.607975852493895 + 09/22 20:50:00,13.132132132132134,13.132132132132134,17.617679168254939 + 09/22 21:00:00,13.22882882882883,13.22882882882883,17.62709978782681 + 09/22 21:10:00,13.24984984984985,13.24984984984985,17.636391247427313 + 09/22 21:20:00,13.270870870870871,13.270870870870871,17.64476326497262 + 09/22 21:30:00,13.291891891891894,13.291891891891894,17.652775079550734 + 09/22 21:40:00,13.312912912912914,13.312912912912914,17.660334289631885 + 09/22 21:50:00,13.333933933933935,13.333933933933935,17.667517049174493 + 09/22 22:00:00,13.354954954954956,13.354954954954956,17.674475701670219 + 09/22 22:10:00,13.380180180180182,13.380180180180182,19.040910821651545 + 09/22 22:20:00,13.405405405405407,13.405405405405407,19.185524719827148 + 09/22 22:30:00,13.430630630630632,13.430630630630632,19.249665298018006 + 09/22 22:40:00,13.455855855855857,13.455855855855857,19.3004349894746 + 09/22 22:50:00,13.481081081081081,13.481081081081081,19.341657729276528 + 09/22 23:00:00,13.506306306306307,13.506306306306307,19.376442435146744 + 09/22 23:10:00,13.527327327327328,13.527327327327328,19.406496380984544 + 09/22 23:20:00,13.548348348348349,13.548348348348349,19.43302848964772 + 09/22 23:30:00,13.56936936936937,13.56936936936937,19.45683712851824 + 09/22 23:40:00,13.590390390390392,13.590390390390392,19.478561723332974 + 09/22 23:50:00,13.611411411411412,13.611411411411412,19.498578178895167 + 09/22 24:00:00,13.632432432432433,13.632432432432433,19.517141741854407 + 09/23 00:10:00,13.632432432432433,13.632432432432433,19.534654107963946 + 09/23 00:20:00,13.632432432432433,13.632432432432433,19.55103923938114 + 09/23 00:30:00,13.632432432432433,13.632432432432433,19.566423984885139 + 09/23 00:40:00,13.632432432432433,13.632432432432433,19.580977184075438 + 09/23 00:50:00,13.632432432432433,13.632432432432433,19.59474148295711 + 09/23 01:00:00,13.632432432432433,13.632432432432433,19.60780455226599 + 09/23 01:10:00,13.657657657657659,13.657657657657659,19.619923919180694 + 09/23 01:20:00,13.682882882882883,13.682882882882883,19.631561649402295 + 09/23 01:30:00,13.708108108108109,13.708108108108109,19.642863026655925 + 09/23 01:40:00,13.733333333333335,13.733333333333335,19.653773618295529 + 09/23 01:50:00,13.758558558558559,13.758558558558559,19.664350544286685 + 09/23 02:00:00,13.783783783783785,13.783783783783785,19.674597086694534 + 09/23 02:10:00,13.783783783783785,13.783783783783785,19.684660579502315 + 09/23 02:20:00,13.783783783783785,13.783783783783785,19.694020938361633 + 09/23 02:30:00,13.783783783783785,13.783783783783785,19.70301917400438 + 09/23 02:40:00,13.783783783783785,13.783783783783785,19.711571773813675 + 09/23 02:50:00,13.783783783783785,13.783783783783785,19.719809822159485 + 09/23 03:00:00,13.783783783783785,13.783783783783785,19.72766139007796 + 09/23 03:10:00,13.804804804804805,13.804804804804805,19.735522370746638 + 09/23 03:20:00,13.825825825825828,13.825825825825828,19.743666959588233 + 09/23 03:30:00,13.846846846846848,13.846846846846848,19.75158053681575 + 09/23 03:40:00,13.867867867867869,13.867867867867869,19.759398497818205 + 09/23 03:50:00,13.88888888888889,13.88888888888889,19.7669407159334 + 09/23 04:00:00,13.90990990990991,13.90990990990991,19.77431341586966 + 09/23 04:10:00,13.935135135135136,13.935135135135136,19.781240182797949 + 09/23 04:20:00,13.960360360360362,13.960360360360362,19.787972497919669 + 09/23 04:30:00,13.985585585585586,13.985585585585586,19.794585104210659 + 09/23 04:40:00,14.010810810810812,14.010810810810812,19.80102998742734 + 09/23 04:50:00,14.036036036036038,14.036036036036038,19.807345038207126 + 09/23 05:00:00,14.061261261261262,14.061261261261262,19.813612599794646 + 09/23 05:10:00,14.061261261261262,14.061261261261262,19.820191060266603 + 09/23 05:20:00,14.061261261261262,14.061261261261262,19.826233103481156 + 09/23 05:30:00,14.061261261261262,14.061261261261262,19.831999954501446 + 09/23 05:40:00,14.061261261261262,14.061261261261262,19.837374510483828 + 09/23 05:50:00,14.061261261261262,14.061261261261262,19.842614185468734 + 09/23 06:00:00,14.061261261261262,14.061261261261262,19.847655246262599 + 09/23 06:10:00,13.989789789789791,13.989789789789791,19.191028875645345 + 09/23 06:20:00,13.918318318318317,13.918318318318317,19.12521998205872 + 09/23 06:30:00,13.846846846846847,13.846846846846847,19.09985193390306 + 09/23 06:40:00,13.775375375375376,13.775375375375376,19.08020718299384 + 09/23 06:50:00,13.703903903903905,13.703903903903905,19.064338294689475 + 09/23 07:00:00,13.632432432432433,13.632432432432433,19.050692613313083 + 09/23 07:10:00,13.539939939939942,13.539939939939942,17.96527646581117 + 09/23 07:20:00,13.447447447447449,13.447447447447449,17.816123329880975 + 09/23 07:30:00,13.354954954954956,13.354954954954956,17.750404801772058 + 09/23 07:40:00,13.262462462462464,13.262462462462464,17.69546745077374 + 09/23 07:50:00,13.169969969969971,13.169969969969971,17.648448687121858 + 09/23 08:00:00,13.077477477477478,13.077477477477478,17.606396931587186 + 09/23 08:10:00,12.984984984984987,12.984984984984987,17.567645507044405 + 09/23 08:20:00,12.892492492492494,12.892492492492494,17.52395406422552 + 09/23 08:30:00,12.8,12.8,17.49099601178336 + 09/23 08:40:00,12.8,12.8,17.459967155206397 + 09/23 08:50:00,12.8,12.8,17.430522347454354 + 09/23 09:00:00,12.8,12.8,17.402585229958239 + 09/23 09:10:00,12.8,12.8,17.375986056324366 + 09/23 09:20:00,12.8,12.8,17.340695681024937 + 09/23 09:30:00,12.8,12.8,17.315044648202247 + 09/23 09:40:00,12.8,12.8,17.29005503455909 + 09/23 09:50:00,12.8,12.8,17.265923470582508 + 09/23 10:00:00,12.8,12.8,17.24363638733213 + 09/23 10:10:00,12.8,12.8,17.22205488982506 + 09/23 10:20:00,12.8,12.8,17.201501005611769 + 09/23 10:30:00,12.8,12.8,17.181534685881194 + 09/23 10:40:00,12.8,12.8,17.16223270281064 + 09/23 10:50:00,12.8,12.8,17.143631207431946 + 09/23 11:00:00,12.8,12.8,17.125692030833244 + 09/23 11:10:00,12.8,12.8,17.108466458361737 + 09/23 11:20:00,12.8,12.8,17.09205012910965 + 09/23 11:30:00,12.8,12.8,17.076372727219128 + 09/23 11:40:00,12.8,12.8,17.061448521592817 + 09/23 11:50:00,12.8,12.8,17.047316953102226 + 09/23 12:00:00,12.8,12.8,17.033877402640564 + 09/23 12:10:00,12.8,12.8,17.021202949933654 + 09/23 12:20:00,12.8,12.8,17.009100172201188 + 09/23 12:30:00,12.8,12.8,16.997477597002715 + 09/23 12:40:00,12.8,12.8,16.98636625989957 + 09/23 12:50:00,12.8,12.8,16.97580909025782 + 09/23 13:00:00,12.8,12.8,16.96581577315102 + 09/23 13:10:00,12.8,12.8,16.956443044342934 + 09/23 13:20:00,12.8,12.8,16.94794007205131 + 09/23 13:30:00,12.8,12.8,16.940052629908999 + 09/23 13:40:00,12.8,12.8,16.93294337013674 + 09/23 13:50:00,12.8,12.8,16.926616997845448 + 09/23 14:00:00,12.8,12.8,16.9210277918382 + 09/23 14:10:00,12.8,12.8,16.91629158133759 + 09/23 14:20:00,12.8,12.8,16.912285078803558 + 09/23 14:30:00,12.8,12.8,16.908999975095225 + 09/23 14:40:00,12.8,12.8,16.90641752699723 + 09/23 14:50:00,12.8,12.8,16.904550494072166 + 09/23 15:00:00,12.8,12.8,16.903361415047557 + 09/23 15:10:00,12.8,12.8,16.902723670664764 + 09/23 15:20:00,12.8,12.8,16.902303260608244 + 09/23 15:30:00,12.8,12.8,16.902146209230958 + 09/23 15:40:00,12.8,12.8,16.902248137902718 + 09/23 15:50:00,12.8,12.8,16.902736939015897 + 09/23 16:00:00,12.8,12.8,16.903641853792846 + 09/23 16:10:00,12.8,12.8,16.918405114044498 + 09/23 16:20:00,12.8,12.8,16.930317331138356 + 09/23 16:30:00,12.8,12.8,16.93358954778147 + 09/23 16:40:00,12.8,12.8,16.937378522451565 + 09/23 16:50:00,12.8,12.8,16.941890385768997 + 09/23 17:00:00,12.8,12.8,16.94714203305519 + 09/23 17:10:00,12.8,12.8,18.711596572281438 + 09/23 17:20:00,12.8,12.8,18.92787085941812 + 09/23 17:30:00,12.8,12.8,19.01546085515062 + 09/23 17:40:00,12.8,12.8,19.084791408789259 + 09/23 17:50:00,12.8,12.8,19.141393988446127 + 09/23 18:00:00,12.8,12.8,19.189726901227027 + 09/23 18:10:00,12.8,12.8,19.24515521041786 + 09/23 18:20:00,12.8,12.8,19.283780812086918 + 09/23 18:30:00,12.8,12.8,19.318573272779529 + 09/23 18:40:00,12.8,12.8,19.350372139269547 + 09/23 18:50:00,12.8,12.8,19.379420477764286 + 09/23 19:00:00,12.8,12.8,19.405762908749109 + 09/23 19:10:00,12.8,12.8,19.429764480785378 + 09/23 19:20:00,12.8,12.8,19.451871722159287 + 09/23 19:30:00,12.8,12.8,19.472336572165163 + 09/23 19:40:00,12.8,12.8,19.492596451482038 + 09/23 19:50:00,12.8,12.8,19.510495551602597 + 09/23 20:00:00,12.8,12.8,19.52780415946276 + 09/23 20:10:00,12.8,12.8,19.521995003118766 + 09/23 20:20:00,12.8,12.8,19.53688870880546 + 09/23 20:30:00,12.8,12.8,19.550757935765505 + 09/23 20:40:00,12.8,12.8,19.563432148554793 + 09/23 20:50:00,12.8,12.8,19.57534575022071 + 09/23 21:00:00,12.8,12.8,19.586651652918154 + 09/23 21:10:00,12.8,12.8,19.597141150900336 + 09/23 21:20:00,12.8,12.8,19.607280448670815 + 09/23 21:30:00,12.8,12.8,19.61709655231086 + 09/23 21:40:00,12.8,12.8,19.626505501834886 + 09/23 21:50:00,12.8,12.8,19.635675048837549 + 09/23 22:00:00,12.8,12.8,19.644572718339128 + 09/23 22:10:00,12.8,12.8,19.653247995792925 + 09/23 22:20:00,12.8,12.8,19.662011318715167 + 09/23 22:30:00,12.863063063063063,12.863063063063063,19.670579537941859 + 09/23 22:40:00,12.934534534534535,12.934534534534535,19.6792214004849 + 09/23 22:50:00,13.006006006006008,13.006006006006008,19.68780523675499 + 09/23 23:00:00,13.077477477477478,13.077477477477478,19.696417243286534 + 09/23 23:10:00,13.102702702702704,13.102702702702704,19.70531776249481 + 09/23 23:20:00,13.127927927927928,13.127927927927928,19.714029981548966 + 09/23 23:30:00,13.153153153153154,13.153153153153154,19.722507595062007 + 09/23 23:40:00,13.17837837837838,13.17837837837838,19.730703176064119 + 09/23 23:50:00,13.203603603603604,13.203603603603604,19.73858308847119 + 09/23 24:00:00,13.22882882882883,13.22882882882883,19.746163697096465 + 09/24 00:10:00,13.275075075075077,13.275075075075077,19.753466907598406 + 09/24 00:20:00,13.321321321321323,13.321321321321323,19.760108020725519 + 09/24 00:30:00,13.367567567567568,13.367567567567568,19.76669598603713 + 09/24 00:40:00,13.413813813813816,13.413813813813816,19.773049394227706 + 09/24 00:50:00,13.46006006006006,13.46006006006006,19.779310012989268 + 09/24 01:00:00,13.506306306306307,13.506306306306307,19.785428154858026 + 09/24 01:10:00,13.506306306306307,13.506306306306307,19.791591234371024 + 09/24 01:20:00,13.506306306306307,13.506306306306307,19.797260161334859 + 09/24 01:30:00,13.506306306306307,13.506306306306307,19.802435230207679 + 09/24 01:40:00,13.506306306306307,13.506306306306307,19.807203133326106 + 09/24 01:50:00,13.506306306306307,13.506306306306307,19.811655898114535 + 09/24 02:00:00,13.506306306306307,13.506306306306307,19.815770367399865 + 09/24 02:10:00,13.506306306306307,13.506306306306307,19.819075978626438 + 09/24 02:20:00,13.506306306306307,13.506306306306307,19.822891604137128 + 09/24 02:30:00,13.506306306306307,13.506306306306307,19.826703468222349 + 09/24 02:40:00,13.506306306306307,13.506306306306307,19.830680824045197 + 09/24 02:50:00,13.506306306306307,13.506306306306307,19.834644942371747 + 09/24 03:00:00,13.506306306306307,13.506306306306307,19.838866139387883 + 09/24 03:10:00,13.527327327327328,13.527327327327328,19.844082937840129 + 09/24 03:20:00,13.548348348348349,13.548348348348349,19.84911083782201 + 09/24 03:30:00,13.56936936936937,13.56936936936937,19.85381345328024 + 09/24 03:40:00,13.590390390390392,13.590390390390392,19.85821457674142 + 09/24 03:50:00,13.611411411411412,13.611411411411412,19.862445230218364 + 09/24 04:00:00,13.632432432432433,13.632432432432433,19.86658129311292 + 09/24 04:10:00,13.703903903903905,13.703903903903905,19.87049074214229 + 09/24 04:20:00,13.775375375375376,13.775375375375376,19.87399860711446 + 09/24 04:30:00,13.846846846846847,13.846846846846847,19.87762885287379 + 09/24 04:40:00,13.918318318318319,13.918318318318319,19.881281722696934 + 09/24 04:50:00,13.989789789789791,13.989789789789791,19.88515573283977 + 09/24 05:00:00,14.061261261261262,14.061261261261262,19.889159997819467 + 09/24 05:10:00,14.061261261261262,14.061261261261262,19.892617718741968 + 09/24 05:20:00,14.061261261261262,14.061261261261262,19.896049726931567 + 09/24 05:30:00,14.061261261261262,14.061261261261262,19.89930213598608 + 09/24 05:40:00,14.061261261261262,14.061261261261262,19.90254414761199 + 09/24 05:50:00,14.061261261261262,14.061261261261262,19.905677348004376 + 09/24 06:00:00,14.061261261261262,14.061261261261262,19.908709546519764 + 09/24 06:10:00,14.015015015015015,14.015015015015015,19.933631959086726 + 09/24 06:20:00,13.968768768768769,13.968768768768769,19.936248324114879 + 09/24 06:30:00,13.922522522522524,13.922522522522524,19.938771737942369 + 09/24 06:40:00,13.876276276276278,13.876276276276278,19.940868079407566 + 09/24 06:50:00,13.83003003003003,13.83003003003003,19.941983303424327 + 09/24 07:00:00,13.783783783783785,13.783783783783785,19.942144976515846 + 09/24 07:10:00,13.61981981981982,13.61981981981982,18.545525657546379 + 09/24 07:20:00,13.455855855855857,13.455855855855857,18.379731216615725 + 09/24 07:30:00,13.291891891891894,13.291891891891894,18.313181309223073 + 09/24 07:40:00,13.127927927927928,13.127927927927928,18.259120733808297 + 09/24 07:50:00,12.963963963963965,12.963963963963965,18.213682859282519 + 09/24 08:00:00,12.8,12.8,18.1735761490539 + 09/24 08:10:00,12.8,12.8,18.13703362480268 + 09/24 08:20:00,12.8,12.8,18.092950766775848 + 09/24 08:30:00,12.8,12.8,18.059733262445549 + 09/24 08:40:00,12.8,12.8,18.028108668257297 + 09/24 08:50:00,12.8,12.8,17.998134377976453 + 09/24 09:00:00,12.8,12.8,17.969557334428687 + 09/24 09:10:00,12.8,12.8,17.94226399505651 + 09/24 09:20:00,12.8,12.8,17.904817265148706 + 09/24 09:30:00,12.8,12.8,17.876829115513706 + 09/24 09:40:00,12.8,12.8,17.849170646910804 + 09/24 09:50:00,12.8,12.8,17.82649792864968 + 09/24 10:00:00,12.8,12.8,17.79578516601683 + 09/24 10:10:00,12.8,12.8,17.77752736843383 + 09/24 10:20:00,12.8,12.8,17.754407139530885 + 09/24 10:30:00,12.8,12.8,17.73521220395495 + 09/24 10:40:00,12.8,12.8,17.715831313638817 + 09/24 10:50:00,12.8,12.8,17.697481882047318 + 09/24 11:00:00,12.8,12.8,17.680013237564155 + 09/24 11:10:00,12.8,12.8,17.663459904449398 + 09/24 11:20:00,12.8,12.8,17.647768235282283 + 09/24 11:30:00,12.8,12.8,17.633019477976494 + 09/24 11:40:00,12.8,12.8,17.619115848500117 + 09/24 11:50:00,12.8,12.8,17.605979557738775 + 09/24 12:00:00,12.8,12.8,17.593766088097135 + 09/24 12:10:00,12.8,12.8,17.58223724302414 + 09/24 12:20:00,12.8,12.8,17.57110856710627 + 09/24 12:30:00,12.8,12.8,17.56042076967338 + 09/24 12:40:00,12.8,12.8,17.550456811508476 + 09/24 12:50:00,12.8,12.8,17.541519730681104 + 09/24 13:00:00,12.8,12.8,17.533637865813316 + 09/24 13:10:00,12.8,12.8,17.527258972763236 + 09/24 13:20:00,12.8,12.8,17.52201449292096 + 09/24 13:30:00,12.8,12.8,17.51772719927386 + 09/24 13:40:00,12.8,12.8,17.514097308353084 + 09/24 13:50:00,12.8,12.8,17.509752193163764 + 09/24 14:00:00,12.8,12.8,17.506997843165473 + 09/24 14:10:00,12.8,12.8,17.502359546169186 + 09/24 14:20:00,12.8,12.8,17.49892250766832 + 09/24 14:30:00,12.8,12.8,17.49525174678348 + 09/24 14:40:00,12.8,12.8,17.492491207359927 + 09/24 14:50:00,12.8,12.8,17.49171376090232 + 09/24 15:00:00,12.8,12.8,17.49307517367607 + 09/24 15:10:00,12.8,12.8,18.915203463484234 + 09/24 15:20:00,12.8,12.8,19.073453843862369 + 09/24 15:30:00,12.8,12.8,19.143681358034607 + 09/24 15:40:00,12.8,12.8,19.199257824216745 + 09/24 15:50:00,12.8,12.8,19.24247398023722 + 09/24 16:00:00,12.8,12.8,19.27656145916356 + 09/24 16:10:00,12.8,12.8,19.303720413779755 + 09/24 16:20:00,12.8,12.8,19.334970087676746 + 09/24 16:30:00,12.8,12.8,19.354177916596738 + 09/24 16:40:00,12.8,12.8,19.37133993897857 + 09/24 16:50:00,12.8,12.8,19.388176957888598 + 09/24 17:00:00,12.8,12.8,19.405188399857395 + 09/24 17:10:00,12.8,12.8,19.42292037892674 + 09/24 17:20:00,12.8,12.8,19.4581173608857 + 09/24 17:30:00,12.8,12.8,19.475615589649416 + 09/24 17:40:00,12.8,12.8,19.492778942602184 + 09/24 17:50:00,12.8,12.8,19.509652955918467 + 09/24 18:00:00,12.8,12.8,19.52639158608298 + 09/24 18:10:00,12.8,12.8,19.542520954862636 + 09/24 18:20:00,12.8,12.8,19.558447248239664 + 09/24 18:30:00,12.8,12.8,19.574254104017574 + 09/24 18:40:00,12.8,12.8,19.58954857065359 + 09/24 18:50:00,12.8,12.8,19.60394602289211 + 09/24 19:00:00,12.8,12.8,19.61723651868394 + 09/24 19:10:00,12.8,12.8,19.629516419852576 + 09/24 19:20:00,12.8,12.8,19.640697966628119 + 09/24 19:30:00,12.8,12.8,19.650957793565295 + 09/24 19:40:00,12.8,12.8,19.656130584946618 + 09/24 19:50:00,12.8,12.8,19.667388939904094 + 09/24 20:00:00,12.8,12.8,19.67106750561515 + 09/24 20:10:00,12.8,12.8,19.659358567851034 + 09/24 20:20:00,12.8,12.8,19.66607495297802 + 09/24 20:30:00,12.8,12.8,19.67201293257156 + 09/24 20:40:00,12.8,12.8,19.680650228213066 + 09/24 20:50:00,12.8,12.8,19.68635319906591 + 09/24 21:00:00,12.8,12.8,19.693772260010936 + 09/24 21:10:00,12.8,12.8,19.700293273485678 + 09/24 21:20:00,12.8,12.8,19.70667425703994 + 09/24 21:30:00,12.8,12.8,19.71287442104942 + 09/24 21:40:00,12.8,12.8,19.718802151512823 + 09/24 21:50:00,12.8,12.8,19.724488488292005 + 09/24 22:00:00,12.8,12.8,19.72996088284048 + 09/24 22:10:00,12.8,12.8,19.735266177524687 + 09/24 22:20:00,12.8,12.8,19.741028451782186 + 09/24 22:30:00,12.8,12.8,19.74667864632583 + 09/24 22:40:00,12.8,12.8,19.752330522426225 + 09/24 22:50:00,12.8,12.8,19.757878628233436 + 09/24 23:00:00,12.8,12.8,19.76327677547833 + 09/24 23:10:00,12.8,12.8,19.768510308120189 + 09/24 23:20:00,12.8,12.8,19.7737169450677 + 09/24 23:30:00,12.8,12.8,19.778723109226758 + 09/24 23:40:00,12.8,12.8,19.783545426506025 + 09/24 23:50:00,12.8,12.8,19.78815084646612 + 09/24 24:00:00,12.8,12.8,19.79254746242287 + 09/25 00:10:00,12.8,12.8,19.796921877523095 + 09/25 00:20:00,12.8,12.8,19.79965022052333 + 09/25 00:30:00,12.8,12.8,19.802492019781359 + 09/25 00:40:00,12.8,12.8,19.805072121515523 + 09/25 00:50:00,12.8,12.8,19.80763931655635 + 09/25 01:00:00,12.8,12.8,19.81032581007426 + 09/25 01:10:00,12.8,12.8,19.812933005425284 + 09/25 01:20:00,12.8,12.8,19.817162344340699 + 09/25 01:30:00,12.8,12.8,19.821309153894533 + 09/25 01:40:00,12.8,12.8,19.825704374273934 + 09/25 01:50:00,12.8,12.8,19.830209005721593 + 09/25 02:00:00,12.8,12.8,19.834867857798338 + 09/25 02:10:00,12.846246246246248,12.846246246246248,19.839912297949434 + 09/25 02:20:00,12.892492492492494,12.892492492492494,19.84521583097143 + 09/25 02:30:00,12.938738738738739,12.938738738738739,19.85033819979403 + 09/25 02:40:00,12.984984984984987,12.984984984984987,19.855375816891426 + 09/25 02:50:00,13.031231231231232,13.031231231231232,19.860287865056209 + 09/25 03:00:00,13.077477477477478,13.077477477477478,19.865047126591756 + 09/25 03:10:00,13.052252252252253,13.052252252252253,19.869823219510825 + 09/25 03:20:00,13.027027027027028,13.027027027027028,19.872845984296256 + 09/25 03:30:00,13.001801801801803,13.001801801801803,19.875391015812779 + 09/25 03:40:00,12.976576576576577,12.976576576576577,19.877380223441 + 09/25 03:50:00,12.951351351351353,12.951351351351353,19.879078072043474 + 09/25 04:00:00,12.926126126126127,12.926126126126127,19.880518353537707 + 09/25 04:10:00,12.976576576576577,12.976576576576577,19.88135784664946 + 09/25 04:20:00,13.027027027027028,13.027027027027028,19.882967123341957 + 09/25 04:30:00,13.077477477477478,13.077477477477478,19.88483508846953 + 09/25 04:40:00,13.127927927927928,13.127927927927928,19.88708788346473 + 09/25 04:50:00,13.17837837837838,13.17837837837838,19.889571581149324 + 09/25 05:00:00,13.22882882882883,13.22882882882883,19.89239669997197 + 09/25 05:10:00,13.22882882882883,13.22882882882883,19.895922113865287 + 09/25 05:20:00,13.22882882882883,13.22882882882883,19.898706728016895 + 09/25 05:30:00,13.22882882882883,13.22882882882883,19.90150141047811 + 09/25 05:40:00,13.22882882882883,13.22882882882883,19.904007560162158 + 09/25 05:50:00,13.22882882882883,13.22882882882883,19.90641023871895 + 09/25 06:00:00,13.22882882882883,13.22882882882883,19.908606843797857 + 09/25 06:10:00,13.22882882882883,13.22882882882883,17.916968757273929 + 09/25 06:20:00,13.22882882882883,13.22882882882883,17.684749053937734 + 09/25 06:30:00,13.22882882882883,13.22882882882883,17.598687690665824 + 09/25 06:40:00,13.22882882882883,13.22882882882883,17.531523033104887 + 09/25 06:50:00,13.22882882882883,13.22882882882883,17.477411078512174 + 09/25 07:00:00,13.22882882882883,13.22882882882883,17.431688690545977 + 09/25 07:10:00,13.132132132132134,13.132132132132134,15.958177774801812 + 09/25 07:15:00,13.035435435435437,13.035435435435437,15.72286679620899 + 09/25 07:20:00,13.035435435435437,13.035435435435437,15.726142169298403 + 09/25 07:30:00,12.93873873873874,12.93873873873874,15.615208065018999 + 09/25 07:40:00,12.842042042042044,12.842042042042044,15.521631937236862 + 09/25 07:50:00,12.8,12.8,15.443503372385843 + 09/25 08:00:00,12.8,12.8,15.373590406957233 + 09/25 08:05:00,12.8,12.8,15.28423658674476 + 09/25 08:10:00,12.8,12.8,15.284005535761088 + 09/25 08:20:00,12.8,12.8,15.216449944195669 + 09/25 08:30:00,12.8,12.8,15.160517898573009 + 09/25 08:40:00,12.8,12.8,15.108054528916849 + 09/25 08:45:00,12.8,12.8,15.059115410577697 + 09/25 08:50:00,12.8,12.8,15.058977644887163 + 09/25 09:00:00,12.8,12.8,15.011855323233818 + 09/25 09:10:00,12.8,12.8,14.967660956334516 + 09/25 09:20:00,12.8,12.8,14.915108147151504 + 09/25 09:25:00,12.8,12.8,14.87564854734502 + 09/25 09:30:00,12.8,12.8,14.8755079822562 + 09/25 09:40:00,12.8,12.8,14.836726161869479 + 09/25 09:50:00,12.8,12.8,14.800379010674403 + 09/25 10:00:00,12.8,12.8,14.765537886900603 + 09/25 10:10:00,12.8,12.8,14.732734185458064 + 09/25 10:20:00,12.8,12.8,14.697654532437815 + 09/25 10:30:00,12.8,12.8,14.666975090370248 + 09/25 10:40:00,12.8,12.8,14.637157447826985 + 09/25 10:50:00,12.8,12.8,14.608070916971608 + 09/25 11:00:00,12.8,12.8,14.579218647005332 + 09/25 11:10:00,12.8,12.8,14.550238777468973 + 09/25 11:20:00,12.8,12.8,14.533052476915083 + 09/25 11:30:00,12.8,12.8,14.508701790386608 + 09/25 11:40:00,12.8,12.8,14.486994852728318 + 09/25 11:50:00,12.8,12.8,14.469060225527514 + 09/25 12:00:00,12.8,12.8,14.454796704836708 + 09/25 12:10:00,12.8,12.8,14.444338184993196 + 09/25 12:20:00,12.8,12.8,14.42650046817769 + 09/25 12:30:00,12.8,12.8,14.419933108847632 + 09/25 12:40:00,12.8,12.8,14.414633063693632 + 09/25 12:50:00,12.8,12.8,14.40968105119658 + 09/25 13:00:00,12.8,12.8,14.404604618687833 + 09/25 13:10:00,12.8,12.8,14.399006276995067 + 09/25 13:20:00,12.8,12.8,14.397330924199896 + 09/25 13:30:00,12.8,12.8,14.392551575831055 + 09/25 13:40:00,12.8,12.8,14.386475067460977 + 09/25 13:50:00,12.8,12.8,14.377015978655257 + 09/25 14:00:00,12.8,12.8,14.36463517536424 + 09/25 14:10:00,12.8,12.8,14.350305293796963 + 09/25 14:20:00,12.8,12.8,14.337498587707982 + 09/25 14:30:00,12.8,12.8,14.317321069595844 + 09/25 14:40:00,12.8,12.8,14.300049671448909 + 09/25 14:50:00,12.8,12.8,14.285714238508695 + 09/25 15:00:00,12.8,12.8,14.273783136352725 + 09/25 15:05:00,12.8,12.8,16.41337360459628 + 09/25 15:10:00,12.8,12.8,16.411201218179977 + 09/25 15:20:00,12.8,12.8,16.658052212518024 + 09/25 15:30:00,12.8,12.8,16.75507923803578 + 09/25 15:40:00,12.8,12.8,16.829081523962129 + 09/25 15:50:00,12.8,12.8,16.88797517367722 + 09/25 16:00:00,12.8,12.8,16.9364372857071 + 09/25 16:10:00,12.8,12.8,17.002449387103995 + 09/25 16:20:00,12.8,12.8,17.058778113073119 + 09/25 16:30:00,12.8,12.8,17.091697240787597 + 09/25 16:40:00,12.8,12.8,17.121419319204308 + 09/25 16:50:00,12.8,12.8,17.149096581775678 + 09/25 17:00:00,12.8,12.8,17.17525515747472 + 09/25 17:10:00,12.8,12.8,17.21339351246292 + 09/25 17:20:00,12.8,12.8,17.243496562979187 + 09/25 17:30:00,12.8,12.8,17.26696659740241 + 09/25 17:40:00,12.8,12.8,17.289656803525156 + 09/25 17:50:00,12.8,12.8,17.31184425919686 + 09/25 18:00:00,12.8,12.8,17.333642715111496 + 09/25 18:10:00,12.8,12.8,17.354964667325846 + 09/25 18:20:00,12.8,12.8,17.375681123306984 + 09/25 18:30:00,12.8,12.8,17.39593401611364 + 09/25 18:40:00,12.8,12.8,17.415612193388907 + 09/25 18:50:00,12.8,12.8,17.432970014669267 + 09/25 19:00:00,12.8,12.8,17.449751118966046 + 09/25 19:10:00,12.8,12.8,17.477885432803548 + 09/25 19:20:00,12.8,12.8,17.492636336917728 + 09/25 19:30:00,12.8,12.8,17.50561935911231 + 09/25 19:40:00,12.8,12.8,17.51744501329668 + 09/25 19:50:00,12.8,12.8,17.528144669764108 + 09/25 20:00:00,12.8,12.8,17.538077807933349 + 09/25 20:10:00,12.8,12.8,17.525047258180444 + 09/25 20:20:00,12.8,12.8,17.537819098160307 + 09/25 20:30:00,12.8,12.8,17.545956623349345 + 09/25 20:40:00,12.8,12.8,17.55355617276004 + 09/25 20:50:00,12.8,12.8,17.56081683768062 + 09/25 21:00:00,12.8,12.8,17.567711366986076 + 09/25 21:10:00,12.8,12.8,17.574411894871476 + 09/25 21:20:00,12.8,12.8,17.58060833920142 + 09/25 21:30:00,12.8,12.8,17.58622571553452 + 09/25 21:40:00,12.8,12.8,17.5912415594782 + 09/25 21:50:00,12.8,12.8,17.595652928357916 + 09/25 22:00:00,12.8,12.8,17.599646472800175 + 09/25 22:10:00,12.8,12.8,18.959939439210925 + 09/25 22:20:00,12.8,12.8,19.10395117434317 + 09/25 22:30:00,12.8,12.8,19.167240271987 + 09/25 22:40:00,12.8,12.8,19.218126967331068 + 09/25 22:50:00,12.8,12.8,19.264169075237115 + 09/25 23:00:00,12.8,12.8,19.298899413239885 + 09/25 23:10:00,12.8,12.8,19.329394253434349 + 09/25 23:20:00,12.8,12.8,19.354039120387954 + 09/25 23:30:00,12.8,12.8,19.375650914311107 + 09/25 23:40:00,12.8,12.8,19.394524419923856 + 09/25 23:50:00,12.8,12.8,19.41104673732777 + 09/25 24:00:00,12.8,12.8,19.425463369601098 + 09/26 00:10:00,12.8,12.8,19.438987748753865 + 09/26 00:20:00,12.8,12.8,19.454566366276823 + 09/26 00:30:00,12.8,12.8,19.469992941618246 + 09/26 00:40:00,12.8,12.8,19.48605437586935 + 09/26 00:50:00,12.8,12.8,19.502169934857784 + 09/26 01:00:00,12.8,12.8,19.518516194667943 + 09/26 01:10:00,12.8,12.8,19.533604655053965 + 09/26 01:20:00,12.8,12.8,19.54774657550458 + 09/26 01:30:00,12.8,12.8,19.561169907396719 + 09/26 01:40:00,12.8,12.8,19.573742561786653 + 09/26 01:50:00,12.8,12.8,19.585598280771739 + 09/26 02:00:00,12.8,12.8,19.596804031031405 + 09/26 02:10:00,12.8,12.8,19.607829037496875 + 09/26 02:20:00,12.8,12.8,19.61858637284966 + 09/26 02:30:00,12.8,12.8,19.628945644757886 + 09/26 02:40:00,12.833633633633636,12.833633633633636,19.63897877457203 + 09/26 02:50:00,12.87987987987988,12.87987987987988,19.648699091452639 + 09/26 03:00:00,12.926126126126127,12.926126126126127,19.65804456733482 + 09/26 03:10:00,12.926126126126127,12.926126126126127,19.666943515703929 + 09/26 03:20:00,12.926126126126127,12.926126126126127,19.674920067328519 + 09/26 03:30:00,12.926126126126127,12.926126126126127,19.682584594981188 + 09/26 03:40:00,12.926126126126127,12.926126126126127,19.689812549257874 + 09/26 03:50:00,12.926126126126127,12.926126126126127,19.696687707066905 + 09/26 04:00:00,12.926126126126127,12.926126126126127,19.703314573385279 + 09/26 04:10:00,12.951351351351353,12.951351351351353,19.709668436479839 + 09/26 04:20:00,12.976576576576577,12.976576576576577,19.716531284898776 + 09/26 04:30:00,13.001801801801803,13.001801801801803,19.723205137582658 + 09/26 04:40:00,13.027027027027028,13.027027027027028,19.72983036250426 + 09/26 04:50:00,13.052252252252253,13.052252252252253,19.736292696561635 + 09/26 05:00:00,13.077477477477478,13.077477477477478,19.742691176677555 + 09/26 05:10:00,13.077477477477478,13.077477477477478,19.748892285428508 + 09/26 05:20:00,13.077477477477478,13.077477477477478,19.755488719805056 + 09/26 05:30:00,13.077477477477478,13.077477477477478,19.761821698336115 + 09/26 05:40:00,13.077477477477478,13.077477477477478,19.76799320884152 + 09/26 05:50:00,13.077477477477478,13.077477477477478,19.774036206998518 + 09/26 06:00:00,13.077477477477478,13.077477477477478,19.77990137501667 + 09/26 06:10:00,13.077477477477478,13.077477477477478,17.791478218260076 + 09/26 06:20:00,13.077477477477478,13.077477477477478,17.557598960155955 + 09/26 06:30:00,13.077477477477478,13.077477477477478,17.470945295265556 + 09/26 06:40:00,13.077477477477478,13.077477477477478,17.404004953679249 + 09/26 06:50:00,13.077477477477478,13.077477477477478,17.350639294040069 + 09/26 07:00:00,13.077477477477478,13.077477477477478,17.30605239030421 + 09/26 07:05:00,13.031231231231232,13.031231231231232,15.816370433724839 + 09/26 07:10:00,13.031231231231232,13.031231231231232,15.822883782160679 + 09/26 07:15:00,12.984984984984987,12.984984984984987,15.594648832505389 + 09/26 07:20:00,12.984984984984987,12.984984984984987,15.592892359979267 + 09/26 07:30:00,12.938738738738739,12.938738738738739,15.48814405265203 + 09/26 07:40:00,12.892492492492494,12.892492492492494,15.402794228254269 + 09/26 07:50:00,12.846246246246248,12.846246246246248,15.329831296697736 + 09/26 08:00:00,12.8,12.8,15.2674510409961 + 09/26 08:03:19,12.8,12.8,15.187826614293423 + 09/26 08:06:40,12.8,12.8,15.187431166411596 + 09/26 08:10:00,12.8,12.8,15.187382808545314 + 09/26 08:20:00,12.8,12.8,15.129962734928034 + 09/26 08:30:00,12.8,12.8,15.086116770869998 + 09/26 08:40:00,12.8,12.8,15.046349459881477 + 09/26 08:50:00,12.8,12.8,15.009697976518379 + 09/26 09:00:00,12.8,12.8,14.975607817905044 + 09/26 09:10:00,12.8,12.8,14.943590823706185 + 09/26 09:20:00,12.8,12.8,14.90310058737765 + 09/26 09:30:00,12.8,12.8,14.874824819293235 + 09/26 09:40:00,12.8,12.8,14.848221270549218 + 09/26 09:50:00,12.8,12.8,14.822709725617044 + 09/26 10:00:00,12.8,12.8,14.798156266126054 + 09/26 10:10:00,12.8,12.8,14.774579872574387 + 09/26 10:20:00,12.8,12.8,14.748464461521165 + 09/26 10:30:00,12.8,12.8,14.726773765629947 + 09/26 10:40:00,12.8,12.8,14.705293931064455 + 09/26 10:50:00,12.8,12.8,14.682630282170992 + 09/26 11:00:00,12.8,12.8,14.658194105310674 + 09/26 11:10:00,12.8,12.8,14.63199018093844 + 09/26 11:20:00,12.8,12.8,14.614233840898656 + 09/26 11:30:00,12.8,12.8,14.58598197801447 + 09/26 11:40:00,12.8,12.8,14.557909189890097 + 09/26 11:50:00,12.8,12.8,14.531895159838824 + 09/26 12:00:00,12.8,12.8,14.508437689852846 + 09/26 12:10:00,12.8,12.8,14.48796696600807 + 09/26 12:20:00,12.8,12.8,14.460098075831026 + 09/26 12:30:00,12.8,12.8,14.44368772316377 + 09/26 12:40:00,12.8,12.8,14.42883327494746 + 09/26 12:50:00,12.8,12.8,14.414767744335649 + 09/26 13:00:00,12.8,12.8,14.40126365618215 + 09/26 13:10:00,12.8,12.8,14.388064258643281 + 09/26 13:20:00,12.8,12.8,14.378545267748463 + 09/26 13:30:00,12.8,12.8,14.365704575014812 + 09/26 13:40:00,12.8,12.8,14.353486420591099 + 09/26 13:50:00,12.8,12.8,14.342554537987695 + 09/26 14:00:00,12.8,12.8,14.333953332876556 + 09/26 14:10:00,12.8,12.8,14.326110645077034 + 09/26 14:20:00,12.8,12.8,14.32202767239975 + 09/26 14:30:00,12.8,12.8,14.313124772438738 + 09/26 14:40:00,12.8,12.8,14.307755966597277 + 09/26 14:50:00,12.8,12.8,14.304057835009836 + 09/26 15:00:00,12.8,12.8,14.301267634001242 + 09/26 15:05:00,12.8,12.8,16.452529268717755 + 09/26 15:10:00,12.8,12.8,16.449325697868678 + 09/26 15:20:00,12.8,12.8,16.705406602711059 + 09/26 15:30:00,12.8,12.8,16.809574581444573 + 09/26 15:40:00,12.8,12.8,16.888604658837786 + 09/26 15:45:00,12.8,12.8,16.952979450346704 + 09/26 15:50:00,12.8,12.8,16.951915922629689 + 09/26 16:00:00,12.8,12.8,16.998603978222105 + 09/26 16:05:00,12.8,12.8,17.0651920103251 + 09/26 16:10:00,12.8,12.8,17.06462053571606 + 09/26 16:20:00,12.8,12.8,17.1178131365964 + 09/26 16:25:00,12.8,12.8,17.149363796956025 + 09/26 16:30:00,12.8,12.8,17.148939360447018 + 09/26 16:40:00,12.8,12.8,17.173212773388664 + 09/26 16:45:00,12.8,12.8,17.199779278424928 + 09/26 16:50:00,12.8,12.8,17.19693501832389 + 09/26 17:00:00,12.8,12.8,17.220057519255705 + 09/26 17:10:00,12.8,12.8,17.25816024774394 + 09/26 17:20:00,12.8,12.8,17.282634262790248 + 09/26 17:30:00,12.8,12.8,17.306200481390868 + 09/26 17:40:00,12.8,12.8,17.322626119555225 + 09/26 17:50:00,12.8,12.8,17.34455471854931 + 09/26 18:00:00,12.8,12.8,17.359638150438398 + 09/26 18:10:00,12.8,12.8,17.37811928098352 + 09/26 18:20:00,12.8,12.8,17.395096882417254 + 09/26 18:30:00,12.8,12.8,17.412253708970675 + 09/26 18:40:00,12.8,12.8,17.428946078188138 + 09/26 18:50:00,12.8,12.8,17.444757274500775 + 09/26 19:00:00,12.8,12.8,17.459553044068476 + 09/26 19:10:00,12.8,12.8,17.485939597909917 + 09/26 19:20:00,12.8,12.8,17.499115807512909 + 09/26 19:30:00,12.8,12.8,17.510610059454277 + 09/26 19:40:00,12.8,12.8,17.521167666522893 + 09/26 19:50:00,12.8,12.8,17.53085632072118 + 09/26 20:00:00,12.8,12.8,17.539757322391908 + 09/26 20:10:00,12.8,12.8,17.525737004642573 + 09/26 20:20:00,12.8,12.8,17.53733620997366 + 09/26 20:30:00,12.8,12.8,17.544042440935088 + 09/26 20:40:00,12.8,12.8,17.549944464471616 + 09/26 20:50:00,12.8,12.8,17.555256291936 + 09/26 21:00:00,12.8,12.8,17.559884124136393 + 09/26 21:10:00,12.8,12.8,17.564013448645214 + 09/26 21:20:00,12.8,12.8,17.567918513553804 + 09/26 21:30:00,12.8,12.8,17.571674918456517 + 09/26 21:40:00,12.8,12.8,17.57544909729789 + 09/26 21:50:00,12.8,12.8,17.57922126113831 + 09/26 22:00:00,12.8,12.8,17.582970639756537 + 09/26 22:10:00,12.8,12.8,18.944221783797866 + 09/26 22:20:00,12.8,12.8,19.089262436475374 + 09/26 22:30:00,12.8,12.8,19.15369015477271 + 09/26 22:40:00,12.8,12.8,19.205968782064219 + 09/26 22:50:00,12.8,12.8,19.249096311448996 + 09/26 23:00:00,12.8,12.8,19.286341845767024 + 09/26 23:10:00,12.8,12.8,19.318901001684166 + 09/26 23:20:00,12.8,12.8,19.346740949945933 + 09/26 23:30:00,12.8,12.8,19.371110142138656 + 09/26 23:40:00,12.8,12.8,19.392209555634 + 09/26 23:50:00,12.8,12.8,19.410798831822967 + 09/26 24:00:00,12.8,12.8,19.427023748948856 + 09/27 00:10:00,12.8,12.8,19.441502709921584 + 09/27 00:20:00,12.8,12.8,19.454851897908534 + 09/27 00:30:00,12.8,12.8,19.467442235302067 + 09/27 00:40:00,12.8,12.8,19.47945057930562 + 09/27 00:50:00,12.8,12.8,19.490640089735856 + 09/27 01:00:00,12.8,12.8,19.501568928608245 + 09/27 01:10:00,12.8,12.8,19.51231113013094 + 09/27 01:20:00,12.8,12.8,19.52273686789496 + 09/27 01:30:00,12.8,12.8,19.53287598425365 + 09/27 01:40:00,12.8,12.8,19.5429004596742 + 09/27 01:50:00,12.8,12.8,19.552580937847677 + 09/27 02:00:00,12.8,12.8,19.56197243410028 + 09/27 02:10:00,12.8,12.8,19.570875446679727 + 09/27 02:20:00,12.8,12.8,19.57955838424857 + 09/27 02:30:00,12.8,12.8,19.587977068067425 + 09/27 02:40:00,12.8,12.8,19.59609399453335 + 09/27 02:50:00,12.8,12.8,19.604005999440113 + 09/27 03:00:00,12.8,12.8,19.611660848312984 + 09/27 03:10:00,12.8,12.8,19.619337023657655 + 09/27 03:20:00,12.8,12.8,19.62674581090217 + 09/27 03:30:00,12.8,12.8,19.633881569561276 + 09/27 03:40:00,12.8,12.8,19.640956048807995 + 09/27 03:50:00,12.8,12.8,19.647881929857055 + 09/27 04:00:00,12.8,12.8,19.654661236345029 + 09/27 04:10:00,12.8,12.8,19.661133749513664 + 09/27 04:20:00,12.8,12.8,19.667322726224044 + 09/27 04:30:00,12.8,12.8,19.67326408562876 + 09/27 04:40:00,12.8,12.8,19.6792127903566 + 09/27 04:50:00,12.8,12.8,19.68483527057104 + 09/27 05:00:00,12.8,12.8,19.68948477609915 + 09/27 05:10:00,12.8,12.8,19.695181471074208 + 09/27 05:20:00,12.8,12.8,19.69942045284206 + 09/27 05:30:00,12.8,12.8,19.704414459138165 + 09/27 05:40:00,12.8,12.8,19.709107844159026 + 09/27 05:50:00,12.8,12.8,19.713689197975925 + 09/27 06:00:00,12.8,12.8,19.719095352830594 + 09/27 06:10:00,12.8,12.8,17.73151332106224 + 09/27 06:20:00,12.8,12.8,17.480245062513366 + 09/27 06:30:00,12.8,12.8,17.394727510282473 + 09/27 06:40:00,12.8,12.8,17.32639094568719 + 09/27 06:50:00,12.8,12.8,17.275907544093429 + 09/27 07:00:00,12.8,12.8,17.23446844073773 + 09/27 07:05:00,12.8,12.8,15.746562649363858 + 09/27 07:10:00,12.8,12.8,15.753103640639111 + 09/27 07:15:00,12.8,12.8,15.529013392105754 + 09/27 07:20:00,12.8,12.8,15.527280785322418 + 09/27 07:30:00,12.8,12.8,15.42808618878567 + 09/27 07:40:00,12.8,12.8,15.349069914077316 + 09/27 07:50:00,12.8,12.8,15.282633329695957 + 09/27 08:00:00,12.8,12.8,15.22600978170512 + 09/27 08:03:19,12.8,12.8,15.151184431229844 + 09/27 08:06:40,12.8,12.8,15.150720781595265 + 09/27 08:10:00,12.8,12.8,15.150744270543662 + 09/27 08:20:00,12.8,12.8,15.09718216530628 + 09/27 08:30:00,12.8,12.8,15.056510829923587 + 09/27 08:40:00,12.8,12.8,15.019329152378184 + 09/27 08:50:00,12.8,12.8,14.98511713160041 + 09/27 09:00:00,12.8,12.8,14.953503713861851 + 09/27 09:10:00,12.8,12.8,14.923763717449143 + 09/27 09:20:00,12.8,12.8,14.885361598270482 + 09/27 09:30:00,12.8,12.8,14.858914113146307 + 09/27 09:40:00,12.8,12.8,14.833902995497754 + 09/27 09:50:00,12.8,12.8,14.809892226386405 + 09/27 10:00:00,12.8,12.8,14.786796103268554 + 09/27 10:10:00,12.8,12.8,14.764622780521636 + 09/27 10:20:00,12.8,12.8,14.739708518663685 + 09/27 10:30:00,12.8,12.8,14.7189526059223 + 09/27 10:40:00,12.8,12.8,14.69899404220104 + 09/27 10:50:00,12.8,12.8,14.679918614629385 + 09/27 11:00:00,12.8,12.8,14.661915036057547 + 09/27 11:10:00,12.8,12.8,14.644751109053582 + 09/27 11:20:00,12.8,12.8,14.638012911536315 + 09/27 11:30:00,12.8,12.8,14.622517005564586 + 09/27 11:40:00,12.8,12.8,14.607690793283446 + 09/27 11:50:00,12.8,12.8,14.593882088703803 + 09/27 12:00:00,12.8,12.8,14.581031345453266 + 09/27 12:10:00,12.8,12.8,14.569018155460672 + 09/27 12:20:00,12.8,12.8,14.54817498933832 + 09/27 12:30:00,12.8,12.8,14.537498131756263 + 09/27 12:40:00,12.8,12.8,14.527459917144782 + 09/27 12:50:00,12.8,12.8,14.517977578681562 + 09/27 13:00:00,12.8,12.8,14.508756701806727 + 09/27 13:10:00,12.8,12.8,14.499438183689377 + 09/27 13:20:00,12.8,12.8,14.493884926399506 + 09/27 13:30:00,12.8,12.8,14.485065442894346 + 09/27 13:40:00,12.8,12.8,14.476307732016254 + 09/27 13:50:00,12.8,12.8,14.468023075003048 + 09/27 14:00:00,12.8,12.8,14.460495263245854 + 09/27 14:10:00,12.8,12.8,14.453063211252749 + 09/27 14:20:00,12.8,12.8,14.447359760890278 + 09/27 14:30:00,12.8,12.8,14.437837459480564 + 09/27 14:40:00,12.8,12.8,14.430195338134034 + 09/27 14:50:00,12.8,12.8,14.422965792089704 + 09/27 15:00:00,12.8,12.8,14.41438940424616 + 09/27 15:10:00,12.8,12.8,16.55064498525761 + 09/27 15:20:00,12.8,12.8,16.80608778777847 + 09/27 15:30:00,12.8,12.8,16.904051009827876 + 09/27 15:40:00,12.8,12.8,16.98211666735378 + 09/27 15:50:00,12.8,12.8,17.03729780955068 + 09/27 16:00:00,12.8,12.8,17.080552578174623 + 09/27 16:10:00,12.8,12.8,17.144179978673856 + 09/27 16:20:00,12.8,12.8,17.198107619246366 + 09/27 16:30:00,12.8,12.8,17.2284944626943 + 09/27 16:40:00,12.8,12.8,17.255629523961745 + 09/27 16:50:00,12.8,12.8,17.28002879401764 + 09/27 17:00:00,12.8,12.8,17.302357928502454 + 09/27 17:10:00,12.8,12.8,17.336074297183253 + 09/27 17:20:00,12.8,12.8,17.3611575362174 + 09/27 17:30:00,12.8,12.8,17.379409687790223 + 09/27 17:40:00,12.8,12.8,17.39675166866398 + 09/27 17:50:00,12.8,12.8,17.41666692148202 + 09/27 18:00:00,12.8,12.8,17.438940670973464 + 09/27 18:10:00,12.8,12.8,17.458177303269783 + 09/27 18:20:00,12.8,12.8,17.47358380618745 + 09/27 18:30:00,12.8,12.8,17.486247193561768 + 09/27 18:40:00,12.8,12.8,17.49765138543345 + 09/27 18:50:00,12.8,12.8,17.508340337553688 + 09/27 19:00:00,12.8,12.8,17.518530060768833 + 09/27 19:10:00,12.8,12.8,17.541402830901768 + 09/27 19:20:00,12.8,12.8,17.551599119470624 + 09/27 19:30:00,12.8,12.8,17.560836874889085 + 09/27 19:40:00,12.8,12.8,17.56958122152771 + 09/27 19:50:00,12.8,12.8,17.577811829449908 + 09/27 20:00:00,12.8,12.8,17.585627401876296 + 09/27 20:10:00,12.8,12.8,17.570520749269475 + 09/27 20:20:00,12.8,12.8,17.581519410977838 + 09/27 20:30:00,12.8,12.8,17.587942376317 + 09/27 20:40:00,12.8,12.8,17.594069572689226 + 09/27 20:50:00,12.8,12.8,17.6000446878001 + 09/27 21:00:00,12.8,12.8,17.60579403195363 + 09/27 21:10:00,12.8,12.8,17.61162051742543 + 09/27 21:20:00,12.8,12.8,17.617154420627967 + 09/27 21:30:00,12.8,12.8,17.62273673070477 + 09/27 21:40:00,12.8,12.8,17.62817063079013 + 09/27 21:50:00,12.8,12.8,17.633414931361189 + 09/27 22:00:00,12.8,12.8,17.638634054246077 + 09/27 22:10:00,12.8,12.8,18.999647131439948 + 09/27 22:20:00,12.8,12.8,19.14706052293458 + 09/27 22:30:00,12.8,12.8,19.211746009566487 + 09/27 22:40:00,12.8,12.8,19.264295978581683 + 09/27 22:50:00,12.8,12.8,19.306636570132527 + 09/27 23:00:00,12.8,12.8,19.341214357341934 + 09/27 23:10:00,12.8,12.8,19.370911703618444 + 09/27 23:20:00,12.8,12.8,19.397124172725407 + 09/27 23:30:00,12.8,12.8,19.420234820528198 + 09/27 23:40:00,12.8,12.8,19.44139735444238 + 09/27 23:50:00,12.8,12.8,19.460810169076603 + 09/27 24:00:00,12.8,12.8,19.478696948920203 + 09/28 00:10:00,12.8,12.8,19.495242224452104 + 09/28 00:20:00,12.8,12.8,19.510492860753776 + 09/28 00:30:00,12.8,12.8,19.52460064860078 + 09/28 00:40:00,12.8,12.8,19.537731819776 + 09/28 00:50:00,12.8,12.8,19.548656997933148 + 09/28 01:00:00,12.8,12.8,19.560680815475636 + 09/28 01:10:00,12.8,12.8,19.570980644817796 + 09/28 01:20:00,12.8,12.8,19.58125477357259 + 09/28 01:30:00,12.8,12.8,19.590906126447569 + 09/28 01:40:00,12.8,12.8,19.600163471847908 + 09/28 01:50:00,12.8,12.8,19.60762004894292 + 09/28 02:00:00,12.8,12.8,19.616921194073986 + 09/28 02:10:00,12.8,12.8,19.62468547888964 + 09/28 02:20:00,12.8,12.8,19.63334180803985 + 09/28 02:30:00,12.8,12.8,19.641984384478059 + 09/28 02:40:00,12.8,12.8,19.64950813711912 + 09/28 02:50:00,12.8,12.8,19.659247999142438 + 09/28 03:00:00,12.8,12.8,19.667885939058175 + 09/28 03:10:00,12.8,12.8,19.67735801440072 + 09/28 03:20:00,12.8,12.8,19.686370510176439 + 09/28 03:30:00,12.8,12.8,19.6936977029277 + 09/28 03:40:00,12.8,12.8,19.70268657805937 + 09/28 03:50:00,12.8,12.8,19.710126880938149 + 09/28 04:00:00,12.8,12.8,19.717933864617025 + 09/28 04:10:00,12.8,12.8,19.725383284366147 + 09/28 04:20:00,12.8,12.8,19.731407019478714 + 09/28 04:30:00,12.8,12.8,19.7396294306291 + 09/28 04:40:00,12.8,12.8,19.745898743424588 + 09/28 04:50:00,12.8,12.8,19.753540904814594 + 09/28 05:00:00,12.8,12.8,19.76088915397836 + 09/28 05:10:00,12.8,12.8,19.76803933244212 + 09/28 05:20:00,12.8,12.8,19.77471852869309 + 09/28 05:30:00,12.8,12.8,19.780765081035999 + 09/28 05:40:00,12.8,12.8,19.786139146318953 + 09/28 05:50:00,12.8,12.8,19.79160422206803 + 09/28 06:00:00,12.8,12.8,19.795258728225705 + 09/28 06:10:00,12.8,12.8,17.809845244129119 + 09/28 06:20:00,12.8,12.8,17.559439003043317 + 09/28 06:30:00,12.8,12.8,17.472414035716154 + 09/28 06:40:00,12.8,12.8,17.402421031537533 + 09/28 06:50:00,12.8,12.8,17.34975768265369 + 09/28 07:00:00,12.8,12.8,17.305636888806604 + 09/28 07:05:00,12.8,12.8,15.816617923734022 + 09/28 07:10:00,12.8,12.8,15.823129474028472 + 09/28 07:15:00,12.8,12.8,15.59676697739532 + 09/28 07:20:00,12.8,12.8,15.595042777129095 + 09/28 07:30:00,12.8,12.8,15.493390335682122 + 09/28 07:35:00,12.8,12.8,15.412529524109822 + 09/28 07:40:00,12.8,12.8,15.411096470699827 + 09/28 07:50:00,12.8,12.8,15.34158420601828 + 09/28 08:00:00,12.8,12.8,15.280489221232484 + 09/28 08:03:19,12.8,12.8,15.200432769263445 + 09/28 08:06:40,12.8,12.8,15.199734301810656 + 09/28 08:10:00,12.8,12.8,15.199814729665074 + 09/28 08:20:00,12.8,12.8,15.140022688919343 + 09/28 08:30:00,12.8,12.8,15.09256305020266 + 09/28 08:40:00,12.8,12.8,15.048617883347159 + 09/28 08:50:00,12.8,12.8,15.008750813932887 + 09/28 09:00:00,12.8,12.8,14.973067188471016 + 09/28 09:10:00,12.8,12.8,14.941172417702309 + 09/28 09:20:00,12.8,12.8,14.90185900338215 + 09/28 09:30:00,12.8,12.8,14.875580932642386 + 09/28 09:40:00,12.8,12.8,14.851403595399065 + 09/28 09:50:00,12.8,12.8,14.828313031146081 + 09/28 10:00:00,12.8,12.8,14.805946892085507 + 09/28 10:10:00,12.8,12.8,14.784720210649473 + 09/28 10:20:00,12.8,12.8,14.760826251115944 + 09/28 10:30:00,12.8,12.8,14.741245283029983 + 09/28 10:40:00,12.8,12.8,14.722738585090184 + 09/28 10:50:00,12.8,12.8,14.71461089050848 + 09/28 11:00:00,12.8,12.8,14.717397583793363 + 09/28 11:10:00,12.8,12.8,14.717462002376424 + 09/28 11:20:00,12.8,12.8,14.721839261905972 + 09/28 11:30:00,12.8,12.8,14.713910573704413 + 09/28 11:40:00,12.8,12.8,14.704617616833663 + 09/28 11:50:00,12.8,12.8,14.694992156176158 + 09/28 12:00:00,12.8,12.8,14.685350033762104 + 09/28 12:10:00,12.8,12.8,14.676367859020259 + 09/28 12:20:00,12.8,12.8,14.658364340288707 + 09/28 12:30:00,12.8,12.8,14.650423982336687 + 09/28 12:40:00,12.8,12.8,14.6431208546487 + 09/28 12:50:00,12.8,12.8,14.636161816891251 + 09/28 13:00:00,12.8,12.8,14.629604091752965 + 09/28 13:10:00,12.8,12.8,14.623992347401444 + 09/28 13:20:00,12.842042042042042,12.842042042042042,14.62284197307581 + 09/28 13:30:00,12.93873873873874,12.93873873873874,14.619126684550782 + 09/28 13:40:00,13.035435435435437,13.035435435435437,14.615992383955133 + 09/28 13:50:00,13.132132132132134,13.132132132132134,14.614166056523415 + 09/28 14:00:00,13.22882882882883,13.22882882882883,14.61332855455104 + 09/28 14:10:00,13.22882882882883,13.22882882882883,14.610763742271417 + 09/28 14:20:00,13.22882882882883,13.22882882882883,14.608634052028375 + 09/28 14:30:00,13.22882882882883,13.22882882882883,14.604083771774827 + 09/28 14:40:00,13.22882882882883,13.22882882882883,14.600593435311096 + 09/28 14:50:00,13.22882882882883,13.22882882882883,14.594452105496093 + 09/28 15:00:00,13.22882882882883,13.22882882882883,14.581408022652678 + 09/28 15:05:00,13.275075075075077,13.275075075075077,16.71712066210219 + 09/28 15:10:00,13.275075075075077,13.275075075075077,16.714050427047355 + 09/28 15:15:00,13.321321321321323,13.321321321321323,16.971883403567909 + 09/28 15:20:00,13.321321321321323,13.321321321321323,16.955807133348853 + 09/28 15:30:00,13.367567567567568,13.367567567567568,17.05880428686312 + 09/28 15:40:00,13.413813813813816,13.413813813813816,17.128532487983063 + 09/28 15:50:00,13.46006006006006,13.46006006006006,17.1814831873455 + 09/28 16:00:00,13.506306306306307,13.506306306306307,17.224685073555514 + 09/28 16:10:00,13.552552552552554,13.552552552552554,17.28589809540368 + 09/28 16:20:00,13.5987987987988,13.5987987987988,17.33866649753172 + 09/28 16:30:00,13.645045045045047,13.645045045045047,17.368010713542227 + 09/28 16:40:00,13.691291291291293,13.691291291291293,17.39466627107838 + 09/28 16:50:00,13.737537537537538,13.737537537537538,17.418607328048496 + 09/28 17:00:00,13.783783783783785,13.783783783783785,17.440011349517194 + 09/28 17:10:00,13.83003003003003,13.83003003003003,17.472490810481628 + 09/28 17:20:00,13.876276276276276,13.876276276276276,17.495879816527649 + 09/28 17:30:00,13.922522522522524,13.922522522522524,17.512560478957977 + 09/28 17:40:00,13.968768768768769,13.968768768768769,17.528343735920278 + 09/28 17:50:00,14.015015015015015,14.015015015015015,17.543505014285686 + 09/28 18:00:00,14.061261261261262,14.061261261261262,17.55818692834886 + 09/28 18:10:00,14.082282282282283,14.082282282282283,17.570986586633507 + 09/28 18:20:00,14.103303303303303,14.103303303303303,17.58423436132489 + 09/28 18:30:00,14.124324324324324,14.124324324324324,17.597018289503049 + 09/28 18:40:00,14.145345345345346,14.145345345345346,17.60951306345039 + 09/28 18:50:00,14.166366366366367,14.166366366366367,17.621432528632967 + 09/28 19:00:00,14.187387387387388,14.187387387387388,17.63269235011342 + 09/28 19:10:00,14.187387387387388,14.187387387387388,17.657159789473643 + 09/28 19:20:00,14.187387387387388,14.187387387387388,17.66920242350988 + 09/28 19:30:00,14.187387387387388,14.187387387387388,17.68017505799849 + 09/28 19:40:00,14.187387387387389,14.187387387387389,17.690587150897366 + 09/28 19:50:00,14.187387387387388,14.187387387387388,17.700404589919047 + 09/28 20:00:00,14.187387387387388,14.187387387387388,17.70959269174856 + 09/28 20:10:00,14.187387387387388,14.187387387387388,17.695887975835377 + 09/28 20:20:00,14.187387387387388,14.187387387387388,17.707642657240315 + 09/28 20:30:00,14.187387387387388,14.187387387387388,17.714325908164086 + 09/28 20:40:00,14.187387387387389,14.187387387387389,17.720218872987429 + 09/28 20:50:00,14.187387387387388,14.187387387387388,17.72554563740742 + 09/28 21:00:00,14.187387387387388,14.187387387387388,17.730342164587865 + 09/28 21:10:00,14.212612612612613,14.212612612612613,17.734826344857827 + 09/28 21:20:00,14.237837837837838,14.237837837837838,17.739647940093158 + 09/28 21:30:00,14.263063063063063,14.263063063063063,17.74429584084732 + 09/28 21:40:00,14.288288288288289,14.288288288288289,17.748931704776326 + 09/28 21:50:00,14.313513513513513,14.313513513513513,17.753395682138718 + 09/28 22:00:00,14.338738738738739,14.338738738738739,17.757720076367997 + 09/28 22:10:00,14.384984984984986,14.384984984984986,19.122111019008686 + 09/28 22:20:00,14.431231231231232,14.431231231231232,19.26417749601667 + 09/28 22:30:00,14.477477477477479,14.477477477477479,19.326850212927135 + 09/28 22:40:00,14.523723723723723,14.523723723723723,19.376964827789189 + 09/28 22:50:00,14.56996996996997,14.56996996996997,19.41809387553933 + 09/28 23:00:00,14.616216216216217,14.616216216216217,19.45331702909449 + 09/28 23:10:00,14.641441441441442,14.641441441441442,19.484818187505888 + 09/28 23:20:00,14.666666666666666,14.666666666666666,19.512776971860228 + 09/28 23:30:00,14.691891891891892,14.691891891891892,19.537774175282853 + 09/28 23:40:00,14.717117117117118,14.717117117117118,19.56027341297891 + 09/28 23:50:00,14.742342342342342,14.742342342342342,19.58069715654966 + 09/28 24:00:00,14.767567567567568,14.767567567567568,19.59928477827315 + 09/29 00:10:00,14.788588588588589,14.788588588588589,19.616811747397379 + 09/29 00:20:00,14.809609609609609,14.809609609609609,19.63349992876676 + 09/29 00:30:00,14.83063063063063,14.83063063063063,19.64943165989851 + 09/29 00:40:00,14.85165165165165,14.85165165165165,19.664781311572374 + 09/29 00:50:00,14.872672672672673,14.872672672672673,19.679499577100456 + 09/29 01:00:00,14.893693693693694,14.893693693693694,19.693793924055794 + 09/29 01:10:00,14.91891891891892,14.91891891891892,19.706860800118116 + 09/29 01:20:00,14.944144144144144,14.944144144144144,19.71926995227506 + 09/29 01:30:00,14.96936936936937,14.96936936936937,19.731101753653879 + 09/29 01:40:00,14.994594594594595,14.994594594594595,19.742304337628079 + 09/29 01:50:00,15.01981981981982,15.01981981981982,19.753030471830749 + 09/29 02:00:00,15.045045045045045,15.045045045045045,19.76335071816237 + 09/29 02:10:00,15.045045045045045,15.045045045045045,19.774746853126499 + 09/29 02:20:00,15.045045045045045,15.045045045045045,19.785766203265426 + 09/29 02:30:00,15.045045045045045,15.045045045045045,19.79625063361099 + 09/29 02:40:00,15.045045045045045,15.045045045045045,19.806270638430587 + 09/29 02:50:00,15.045045045045045,15.045045045045045,19.815924883020533 + 09/29 03:00:00,15.045045045045045,15.045045045045045,19.825184025563947 + 09/29 03:10:00,15.066066066066066,15.066066066066066,19.832361441727806 + 09/29 03:20:00,15.087087087087087,15.087087087087087,19.839319404948026 + 09/29 03:30:00,15.108108108108109,15.108108108108109,19.84605237836551 + 09/29 03:40:00,15.12912912912913,15.12912912912913,19.852747084708569 + 09/29 03:50:00,15.15015015015015,15.15015015015015,19.859317277722054 + 09/29 04:00:00,15.17117117117117,15.17117117117117,19.86576480482202 + 09/29 04:10:00,15.15015015015015,15.15015015015015,19.87377453395147 + 09/29 04:20:00,15.12912912912913,15.12912912912913,19.881197590677638 + 09/29 04:30:00,15.108108108108109,15.108108108108109,19.888114257328156 + 09/29 04:40:00,15.087087087087087,15.087087087087087,19.89445676154231 + 09/29 04:50:00,15.066066066066066,15.066066066066066,19.900262350346244 + 09/29 05:00:00,15.045045045045045,15.045045045045045,19.905584967576666 + 09/29 05:10:00,15.01981981981982,15.01981981981982,19.908518839022738 + 09/29 05:20:00,14.994594594594594,14.994594594594594,19.911068063218698 + 09/29 05:30:00,14.96936936936937,14.96936936936937,19.913239211122009 + 09/29 05:40:00,14.944144144144144,14.944144144144144,19.9150545434091 + 09/29 05:50:00,14.91891891891892,14.91891891891892,19.916531968153444 + 09/29 06:00:00,14.893693693693694,14.893693693693694,19.917638487380814 + 09/29 06:10:00,14.872672672672673,14.872672672672673,17.91573724841485 + 09/29 06:20:00,14.85165165165165,14.85165165165165,17.680872697186389 + 09/29 06:30:00,14.83063063063063,14.83063063063063,17.59360188057963 + 09/29 06:40:00,14.809609609609609,14.809609609609609,17.525834957788157 + 09/29 06:50:00,14.788588588588589,14.788588588588589,17.472504974168517 + 09/29 07:00:00,14.767567567567568,14.767567567567568,17.428655628076894 + 09/29 07:05:00,14.721321321321322,14.721321321321322,15.952858452868816 + 09/29 07:10:00,14.721321321321322,14.721321321321322,15.952060233984693 + 09/29 07:15:00,14.675075075075075,14.675075075075075,15.737425780750002 + 09/29 07:20:00,14.675075075075075,14.675075075075075,15.737561363438794 + 09/29 07:30:00,14.628828828828829,14.628828828828829,15.636297749385623 + 09/29 07:40:00,14.582582582582582,14.582582582582582,15.555149440593457 + 09/29 07:50:00,14.536336336336337,14.536336336336337,15.487717486790615 + 09/29 08:00:00,14.49009009009009,14.49009009009009,15.42957337073604 + 09/29 08:05:00,14.393393393393394,14.393393393393394,15.353926534856605 + 09/29 08:10:00,14.393393393393394,14.393393393393394,15.353050266245717 + 09/29 08:20:00,14.296696696696696,14.296696696696696,15.296584297522714 + 09/29 08:30:00,14.2,14.2,15.253012295249804 + 09/29 08:40:00,14.103303303303303,14.103303303303303,15.212159156931762 + 09/29 08:50:00,14.006606606606607,14.006606606606607,15.174969359622207 + 09/29 09:00:00,13.90990990990991,13.90990990990991,15.140786382592815 + 09/29 09:10:00,13.88888888888889,13.88888888888889,15.109836440021106 + 09/29 09:20:00,13.867867867867869,13.867867867867869,15.0708679462831 + 09/29 09:30:00,13.846846846846848,13.846846846846848,15.044550560323263 + 09/29 09:40:00,13.825825825825828,13.825825825825828,15.019988696577338 + 09/29 09:50:00,13.804804804804805,13.804804804804805,14.996792468217726 + 09/29 10:00:00,13.783783783783785,13.783783783783785,14.974644376734217 + 09/29 10:10:00,13.691291291291293,13.691291291291293,14.952314773659279 + 09/29 10:20:00,13.5987987987988,13.5987987987988,14.928387607050257 + 09/29 10:30:00,13.506306306306307,13.506306306306307,14.908465403559522 + 09/29 10:40:00,13.413813813813816,13.413813813813816,14.884969609769483 + 09/29 10:50:00,13.32132132132132,13.32132132132132,14.86419036693077 + 09/29 11:00:00,13.22882882882883,13.22882882882883,14.843423927969427 + 09/29 11:10:00,13.203603603603604,13.203603603603604,14.823947027306433 + 09/29 11:20:00,13.17837837837838,13.17837837837838,14.814840135296804 + 09/29 11:30:00,13.153153153153154,13.153153153153154,14.796912654970868 + 09/29 11:40:00,13.12792792792793,13.12792792792793,14.779544280753618 + 09/29 11:50:00,13.102702702702704,13.102702702702704,14.762958285850214 + 09/29 12:00:00,13.077477477477478,13.077477477477478,14.747047242349144 + 09/29 12:10:00,13.102702702702704,13.102702702702704,14.732039983539158 + 09/29 12:20:00,13.127927927927928,13.127927927927928,14.708129928446044 + 09/29 12:30:00,13.153153153153154,13.153153153153154,14.694412448408297 + 09/29 12:40:00,13.17837837837838,13.17837837837838,14.68118662444543 + 09/29 12:50:00,13.203603603603604,13.203603603603604,14.667848859334367 + 09/29 13:00:00,13.22882882882883,13.22882882882883,14.654289197719355 + 09/29 13:10:00,13.203603603603604,13.203603603603604,14.640801922691143 + 09/29 13:20:00,13.17837837837838,13.17837837837838,14.630777178317674 + 09/29 13:30:00,13.153153153153154,13.153153153153154,14.617286598819732 + 09/29 13:40:00,13.12792792792793,13.12792792792793,14.604114761019494 + 09/29 13:50:00,13.102702702702704,13.102702702702704,14.592715587401026 + 09/29 14:00:00,13.077477477477478,13.077477477477478,14.58247037507146 + 09/29 14:10:00,13.006006006006008,13.006006006006008,14.572807414101773 + 09/29 14:20:00,12.934534534534535,12.934534534534535,14.563726405222108 + 09/29 14:30:00,12.863063063063063,12.863063063063063,14.554449466249747 + 09/29 14:40:00,12.8,12.8,14.545954904358993 + 09/29 14:50:00,12.8,12.8,14.537864119099242 + 09/29 15:00:00,12.8,12.8,14.527356645512074 + 09/29 15:05:00,12.8,12.8,16.669023683700666 + 09/29 15:10:00,12.8,12.8,16.666597000778976 + 09/29 15:20:00,12.8,12.8,16.91409868686315 + 09/29 15:30:00,12.8,12.8,17.011166241462253 + 09/29 15:40:00,12.833633633633636,12.833633633633636,17.094347102802109 + 09/29 15:50:00,12.87987987987988,12.87987987987988,17.146943097267856 + 09/29 16:00:00,12.926126126126127,12.926126126126127,17.194532050173934 + 09/29 16:10:00,12.926126126126127,12.926126126126127,17.259111569571514 + 09/29 16:20:00,12.926126126126127,12.926126126126127,17.315067511500116 + 09/29 16:30:00,12.926126126126127,12.926126126126127,17.347567847755056 + 09/29 16:40:00,12.926126126126127,12.926126126126127,17.376877947401768 + 09/29 16:50:00,12.926126126126127,12.926126126126127,17.402866132771466 + 09/29 17:00:00,12.926126126126127,12.926126126126127,17.425980709980377 + 09/29 17:10:00,12.926126126126127,12.926126126126127,17.460076379466746 + 09/29 17:20:00,12.926126126126127,12.926126126126127,17.484212900962559 + 09/29 17:30:00,12.926126126126127,12.926126126126127,17.50134592049961 + 09/29 17:40:00,12.926126126126127,12.926126126126127,17.51697704913248 + 09/29 17:50:00,12.926126126126127,12.926126126126127,17.531777507056323 + 09/29 18:00:00,12.926126126126127,12.926126126126127,17.545728732609537 + 09/29 18:10:00,12.951351351351353,12.951351351351353,17.558920450208896 + 09/29 18:20:00,12.976576576576577,12.976576576576577,17.57219287596042 + 09/29 18:30:00,13.001801801801803,13.001801801801803,17.58489745355329 + 09/29 18:40:00,13.027027027027028,13.027027027027028,17.59722266020378 + 09/29 18:50:00,13.052252252252253,13.052252252252253,17.608871570611908 + 09/29 19:00:00,13.077477477477478,13.077477477477478,17.619868234729517 + 09/29 19:10:00,13.102702702702704,13.102702702702704,17.64346919420813 + 09/29 19:20:00,13.127927927927928,13.127927927927928,17.653049072466936 + 09/29 19:30:00,13.153153153153154,13.153153153153154,17.661874887254315 + 09/29 19:40:00,13.17837837837838,13.17837837837838,17.670061772853143 + 09/29 19:50:00,13.203603603603604,13.203603603603604,17.677875190702819 + 09/29 20:00:00,13.22882882882883,13.22882882882883,17.685349401419975 + 09/29 20:10:00,13.22882882882883,13.22882882882883,17.66945556610468 + 09/29 20:20:00,13.22882882882883,13.22882882882883,17.678731729144308 + 09/29 20:30:00,13.22882882882883,13.22882882882883,17.68339415187316 + 09/29 20:40:00,13.22882882882883,13.22882882882883,17.68761111729409 + 09/29 20:50:00,13.22882882882883,13.22882882882883,17.691643559237126 + 09/29 21:00:00,13.22882882882883,13.22882882882883,17.69533050006311 + 09/29 21:10:00,13.275075075075077,13.275075075075077,17.699480540395805 + 09/29 21:20:00,13.321321321321323,13.321321321321323,17.70530067620949 + 09/29 21:30:00,13.367567567567568,13.367567567567568,17.711038944396454 + 09/29 21:40:00,13.413813813813816,13.413813813813816,17.717041321437255 + 09/29 21:50:00,13.46006006006006,13.46006006006006,17.72292691141193 + 09/29 22:00:00,13.506306306306307,13.506306306306307,17.728877437079136 + 09/29 22:10:00,13.506306306306307,13.506306306306307,19.092390890171005 + 09/29 22:20:00,13.506306306306307,13.506306306306307,19.235724991260093 + 09/29 22:30:00,13.506306306306307,13.506306306306307,19.298610359029895 + 09/29 22:40:00,13.506306306306307,13.506306306306307,19.347850653017486 + 09/29 22:50:00,13.506306306306307,13.506306306306307,19.38729551982932 + 09/29 23:00:00,13.506306306306307,13.506306306306307,19.420084082916625 + 09/29 23:10:00,13.527327327327328,13.527327327327328,19.4481439350154 + 09/29 23:20:00,13.548348348348349,13.548348348348349,19.472721989014724 + 09/29 23:30:00,13.56936936936937,13.56936936936937,19.494662695443453 + 09/29 23:40:00,13.590390390390392,13.590390390390392,19.51462800776904 + 09/29 23:50:00,13.611411411411412,13.611411411411412,19.532979324619139 + 09/29 24:00:00,13.632432432432433,13.632432432432433,19.549964080119908 + 09/30 00:10:00,13.67867867867868,13.67867867867868,19.566243991786004 + 09/30 00:20:00,13.724924924924924,13.724924924924924,19.582352984412329 + 09/30 00:30:00,13.771171171171173,13.771171171171173,19.597563544831837 + 09/30 00:40:00,13.817417417417419,13.817417417417419,19.612257052847004 + 09/30 00:50:00,13.863663663663666,13.863663663663666,19.626317261316335 + 09/30 01:00:00,13.90990990990991,13.90990990990991,19.639782178057837 + 09/30 01:10:00,13.90990990990991,13.90990990990991,19.651498744819454 + 09/30 01:20:00,13.90990990990991,13.90990990990991,19.661626951972957 + 09/30 01:30:00,13.90990990990991,13.90990990990991,19.671263299085639 + 09/30 01:40:00,13.90990990990991,13.90990990990991,19.680078843656724 + 09/30 01:50:00,13.90990990990991,13.90990990990991,19.688579347489083 + 09/30 02:00:00,13.90990990990991,13.90990990990991,19.69657782968487 + 09/30 02:10:00,13.90990990990991,13.90990990990991,19.704814061785578 + 09/30 02:20:00,13.90990990990991,13.90990990990991,19.71382664782686 + 09/30 02:30:00,13.90990990990991,13.90990990990991,19.7225372143928 + 09/30 02:40:00,13.90990990990991,13.90990990990991,19.731187981911405 + 09/30 02:50:00,13.90990990990991,13.90990990990991,19.739536225891969 + 09/30 03:00:00,13.90990990990991,13.90990990990991,19.747512038862959 + 09/30 03:10:00,13.90990990990991,13.90990990990991,19.755337365643844 + 09/30 03:20:00,13.90990990990991,13.90990990990991,19.762439209796267 + 09/30 03:30:00,13.90990990990991,13.90990990990991,19.769297462406873 + 09/30 03:40:00,13.90990990990991,13.90990990990991,19.775813297595179 + 09/30 03:50:00,13.90990990990991,13.90990990990991,19.78206690009778 + 09/30 04:00:00,13.90990990990991,13.90990990990991,19.788161168609059 + 09/30 04:10:00,13.90990990990991,13.90990990990991,19.794078899726416 + 09/30 04:20:00,13.90990990990991,13.90990990990991,19.799821850026175 + 09/30 04:30:00,13.90990990990991,13.90990990990991,19.80539980610733 + 09/30 04:40:00,13.90990990990991,13.90990990990991,19.81077942743769 + 09/30 04:50:00,13.90990990990991,13.90990990990991,19.815986774076309 + 09/30 05:00:00,13.90990990990991,13.90990990990991,19.82111089976071 + 09/30 05:10:00,13.90990990990991,13.90990990990991,19.82625932734031 + 09/30 05:20:00,13.90990990990991,13.90990990990991,19.831259752667429 + 09/30 05:30:00,13.90990990990991,13.90990990990991,19.836110787159563 + 09/30 05:40:00,13.90990990990991,13.90990990990991,19.8407647820798 + 09/30 05:50:00,13.90990990990991,13.90990990990991,19.845384028688274 + 09/30 06:00:00,13.90990990990991,13.90990990990991,19.849886503657574 + 09/30 06:10:00,13.90990990990991,13.90990990990991,19.194900849449394 + 09/30 06:20:00,13.90990990990991,13.90990990990991,19.128463116471033 + 09/30 06:30:00,13.90990990990991,13.90990990990991,19.10293067229481 + 09/30 06:40:00,13.90990990990991,13.90990990990991,19.08356413276658 + 09/30 06:50:00,13.90990990990991,13.90990990990991,19.068600633091145 + 09/30 07:00:00,13.90990990990991,13.90990990990991,19.05641215395417 + 09/30 07:10:00,13.90990990990991,13.90990990990991,17.975544274008916 + 09/30 07:20:00,13.90990990990991,13.90990990990991,17.830212555329568 + 09/30 07:30:00,13.90990990990991,13.90990990990991,17.76980731001312 + 09/30 07:40:00,13.90990990990991,13.90990990990991,17.72167604316649 + 09/30 07:50:00,13.90990990990991,13.90990990990991,17.68269410019912 + 09/30 08:00:00,13.90990990990991,13.90990990990991,17.64987943730857 + 09/30 08:10:00,13.88888888888889,13.88888888888889,17.62189554646041 + 09/30 08:20:00,13.867867867867869,13.867867867867869,17.58829050332417 + 09/30 08:30:00,13.846846846846848,13.846846846846848,17.56591718030877 + 09/30 08:40:00,13.825825825825828,13.825825825825828,17.545529049611195 + 09/30 08:50:00,13.804804804804805,13.804804804804805,17.52676104043314 + 09/30 09:00:00,13.783783783783785,13.783783783783785,17.50936819617116 + 09/30 09:10:00,13.783783783783785,13.783783783783785,17.493161730428704 + 09/30 09:20:00,13.783783783783785,13.783783783783785,17.469370679669454 + 09/30 09:30:00,13.783783783783785,13.783783783783785,17.45526099589367 + 09/30 09:40:00,13.783783783783785,13.783783783783785,17.442029034309859 + 09/30 09:50:00,13.783783783783785,13.783783783783785,17.42955364805277 + 09/30 10:00:00,13.783783783783785,13.783783783783785,17.417781796247007 + 09/30 10:10:00,13.758558558558559,13.758558558558559,17.406368711128054 + 09/30 10:20:00,13.733333333333335,13.733333333333335,17.395438240263759 + 09/30 10:30:00,13.708108108108109,13.708108108108109,17.384868926167159 + 09/30 10:40:00,13.682882882882883,13.682882882882883,17.374596036745264 + 09/30 10:50:00,13.657657657657659,13.657657657657659,17.36451144941021 + 09/30 11:00:00,13.632432432432433,13.632432432432433,17.354484264123437 + 09/30 11:10:00,13.632432432432433,13.632432432432433,17.34477740129486 + 09/30 11:20:00,13.632432432432433,13.632432432432433,17.335168452372917 + 09/30 11:30:00,13.632432432432433,13.632432432432433,17.325794523783768 + 09/30 11:40:00,13.632432432432433,13.632432432432433,17.31682673448966 + 09/30 11:50:00,13.632432432432433,13.632432432432433,17.308283833118357 + 09/30 12:00:00,13.632432432432433,13.632432432432433,17.300214615120887 + 09/30 12:10:00,13.632432432432433,13.632432432432433,17.293315712400529 + 09/30 12:20:00,13.632432432432433,13.632432432432433,17.2858142343851 + 09/30 12:30:00,13.632432432432433,13.632432432432433,17.278806637041023 + 09/30 12:40:00,13.632432432432433,13.632432432432433,17.27206092425794 + 09/30 12:50:00,13.632432432432433,13.632432432432433,17.265791731413889 + 09/30 13:00:00,13.632432432432433,13.632432432432433,17.25993233235412 + 09/30 13:10:00,13.632432432432433,13.632432432432433,17.253271024869148 + 09/30 13:20:00,13.632432432432433,13.632432432432433,17.24898144334306 + 09/30 13:30:00,13.632432432432433,13.632432432432433,17.244702335764968 + 09/30 13:40:00,13.632432432432433,13.632432432432433,17.240880586986529 + 09/30 13:50:00,13.632432432432433,13.632432432432433,17.237134161773928 + 09/30 14:00:00,13.632432432432433,13.632432432432433,17.233562492637849 + 09/30 14:10:00,13.632432432432433,13.632432432432433,17.2310075385207 + 09/30 14:20:00,13.632432432432433,13.632432432432433,17.22757831275499 + 09/30 14:30:00,13.632432432432433,13.632432432432433,17.224436046059787 + 09/30 14:40:00,13.632432432432433,13.632432432432433,17.22139728241413 + 09/30 14:50:00,13.632432432432433,13.632432432432433,17.218717162388125 + 09/30 15:00:00,13.632432432432433,13.632432432432433,17.216354821612794 + 09/30 15:10:00,13.611411411411412,13.611411411411412,17.21380446356424 + 09/30 15:20:00,13.590390390390392,13.590390390390392,17.21131473433064 + 09/30 15:30:00,13.56936936936937,13.56936936936937,17.20895031851218 + 09/30 15:40:00,13.548348348348349,13.548348348348349,17.20670270294127 + 09/30 15:50:00,13.527327327327328,13.527327327327328,17.204623367186085 + 09/30 16:00:00,13.506306306306307,13.506306306306307,17.2027223753457 + 09/30 16:10:00,13.527327327327328,13.527327327327328,17.21463181696737 + 09/30 16:20:00,13.548348348348349,13.548348348348349,17.222535803713599 + 09/30 16:30:00,13.56936936936937,13.56936936936937,17.221764885291994 + 09/30 16:40:00,13.590390390390392,13.590390390390392,17.221180442756184 + 09/30 16:50:00,13.611411411411412,13.611411411411412,17.22094611454562 + 09/30 17:00:00,13.632432432432433,13.632432432432433,17.220966719432466 + 09/30 17:10:00,13.657657657657659,13.657657657657659,18.975548003411438 + 09/30 17:20:00,13.682882882882883,13.682882882882883,19.184321357703675 + 09/30 17:30:00,13.708108108108109,13.708108108108109,19.265999364480796 + 09/30 17:40:00,13.733333333333335,13.733333333333335,19.329541270293963 + 09/30 17:50:00,13.758558558558559,13.758558558558559,19.37979367476143 + 09/30 18:00:00,13.783783783783785,13.783783783783785,19.42143328295189 + 09/30 18:10:00,13.804804804804805,13.804804804804805,19.46982059160638 + 09/30 18:20:00,13.825825825825828,13.825825825825828,19.500849054260514 + 09/30 18:30:00,13.846846846846848,13.846846846846848,19.52808912173794 + 09/30 18:40:00,13.867867867867869,13.867867867867869,19.55239933768485 + 09/30 18:50:00,13.88888888888889,13.88888888888889,19.57433683985142 + 09/30 19:00:00,13.90990990990991,13.90990990990991,19.594147598057029 + 09/30 19:10:00,13.935135135135136,13.935135135135136,19.61184367310497 + 09/30 19:20:00,13.960360360360362,13.960360360360362,19.62876267388927 + 09/30 19:30:00,13.985585585585586,13.985585585585586,19.64441036301629 + 09/30 19:40:00,14.010810810810812,14.010810810810812,19.65912253815751 + 09/30 19:50:00,14.036036036036038,14.036036036036038,19.672790478752306 + 09/30 20:00:00,14.061261261261262,14.061261261261262,19.685650714908463 + 09/30 20:10:00,14.061261261261262,14.061261261261262,19.67582599153235 + 09/30 20:20:00,14.061261261261262,14.061261261261262,19.687364353395965 + 09/30 20:30:00,14.061261261261262,14.061261261261262,19.69825008510987 + 09/30 20:40:00,14.061261261261262,14.061261261261262,19.7084166347664 + 09/30 20:50:00,14.061261261261262,14.061261261261262,19.71803445373054 + 09/30 21:00:00,14.061261261261262,14.061261261261262,19.727230593078216 + 09/30 21:10:00,14.052852852852853,14.052852852852853,19.735891730733035 + 09/30 21:20:00,14.044444444444445,14.044444444444445,19.74425210510909 + 09/30 21:30:00,14.036036036036036,14.036036036036036,19.752198422786415 + 09/30 21:40:00,14.027627627627627,14.027627627627627,19.75975387653895 + 09/30 21:50:00,14.01921921921922,14.01921921921922,19.766986098672218 + 09/30 22:00:00,14.010810810810812,14.010810810810812,19.773993551510317 + 09/30 22:10:00,13.998198198198198,13.998198198198198,19.780651834565686 + 09/30 22:20:00,13.985585585585586,13.985585585585586,19.787110407268665 + 09/30 22:30:00,13.972972972972972,13.972972972972972,19.793243325559094 + 09/30 22:40:00,13.960360360360362,13.960360360360362,19.799238582591064 + 09/30 22:50:00,13.947747747747748,13.947747747747748,19.805012677289527 + 09/30 23:00:00,13.935135135135136,13.935135135135136,19.81057365234996 + 09/30 23:10:00,13.926726726726728,13.926726726726728,19.81592866821085 + 09/30 23:20:00,13.918318318318319,13.918318318318319,19.820966369977766 + 09/30 23:30:00,13.90990990990991,13.90990990990991,19.825884541218515 + 09/30 23:40:00,13.901501501501502,13.901501501501502,19.830648540081634 + 09/30 23:50:00,13.893093093093093,13.893093093093093,19.8352552974365 + 09/30 24:00:00,13.884684684684686,13.884684684684686,19.839712074643879 + 10/01 00:10:00,13.872072072072072,13.872072072072072,19.843980259369766 + 10/01 00:20:00,13.85945945945946,13.85945945945946,19.84921791666486 + 10/01 00:30:00,13.846846846846847,13.846846846846847,19.854437574046409 + 10/01 00:40:00,13.834234234234235,13.834234234234235,19.859845815241788 + 10/01 00:50:00,13.821621621621622,13.821621621621622,19.865143277048863 + 10/01 01:00:00,13.80900900900901,13.80900900900901,19.87029494007249 + 10/01 01:10:00,13.8006006006006,13.8006006006006,19.875351688574868 + 10/01 01:20:00,13.792192192192193,13.792192192192193,19.879177536365586 + 10/01 01:30:00,13.783783783783785,13.783783783783785,19.88287580534987 + 10/01 01:40:00,13.775375375375376,13.775375375375376,19.8861822145332 + 10/01 01:50:00,13.766966966966969,13.766966966966969,19.88943468119898 + 10/01 02:00:00,13.758558558558559,13.758558558558559,19.892516470599156 + 10/01 02:10:00,13.745945945945947,13.745945945945947,19.89560957275288 + 10/01 02:20:00,13.733333333333335,13.733333333333335,19.8986855589606 + 10/01 02:30:00,13.72072072072072,13.72072072072072,19.90165709901047 + 10/01 02:40:00,13.708108108108109,13.708108108108109,19.904551490076508 + 10/01 02:50:00,13.695495495495497,13.695495495495497,19.907266985842808 + 10/01 03:00:00,13.682882882882883,13.682882882882883,19.90995865140224 + 10/01 03:10:00,13.674474474474476,13.674474474474476,19.91257997111334 + 10/01 03:20:00,13.666066066066066,13.666066066066066,19.915016602838017 + 10/01 03:30:00,13.657657657657659,13.657657657657659,19.917414710761464 + 10/01 03:40:00,13.64924924924925,13.64924924924925,19.919639839611194 + 10/01 03:50:00,13.640840840840842,13.640840840840842,19.92182190621888 + 10/01 04:00:00,13.632432432432433,13.632432432432433,19.923986421038408 + 10/01 04:10:00,13.632432432432433,13.632432432432433,19.92630879555773 + 10/01 04:20:00,13.632432432432433,13.632432432432433,19.928398993687894 + 10/01 04:30:00,13.632432432432433,13.632432432432433,19.930440440649386 + 10/01 04:40:00,13.632432432432433,13.632432432432433,19.93237107754558 + 10/01 04:50:00,13.632432432432433,13.632432432432433,19.934355625738964 + 10/01 05:00:00,13.632432432432433,13.632432432432433,19.93631650612264 + 10/01 05:10:00,13.632432432432433,13.632432432432433,19.937974582464727 + 10/01 05:20:00,13.632432432432433,13.632432432432433,19.93960407835474 + 10/01 05:30:00,13.632432432432433,13.632432432432433,19.941126988068804 + 10/01 05:40:00,13.632432432432433,13.632432432432433,19.942712102606508 + 10/01 05:50:00,13.632432432432433,13.632432432432433,19.94426583472739 + 10/01 06:00:00,13.632432432432433,13.632432432432433,19.945787371999459 + 10/01 06:10:00,13.632432432432433,13.632432432432433,19.969447035625849 + 10/01 06:20:00,13.632432432432433,13.632432432432433,19.97097537873709 + 10/01 06:30:00,13.632432432432433,13.632432432432433,19.97288823785285 + 10/01 06:40:00,13.632432432432433,13.632432432432433,19.974935592193867 + 10/01 06:50:00,13.632432432432433,13.632432432432433,19.9768281258823 + 10/01 07:00:00,13.632432432432433,13.632432432432433,19.978402158567144 + 10/01 07:10:00,13.565165165165166,13.565165165165166,18.59101107754033 + 10/01 07:20:00,13.497897897897899,13.497897897897899,18.427996657150499 + 10/01 07:30:00,13.430630630630632,13.430630630630632,18.36095842739324 + 10/01 07:40:00,13.363363363363364,13.363363363363364,18.309678930717543 + 10/01 07:50:00,13.296096096096097,13.296096096096097,18.267464504234427 + 10/01 08:00:00,13.22882882882883,13.22882882882883,18.23264779551859 + 10/01 08:10:00,13.22882882882883,13.22882882882883,18.20239635911841 + 10/01 08:20:00,13.22882882882883,13.22882882882883,18.166488953748 + 10/01 08:30:00,13.22882882882883,13.22882882882883,18.141741864160318 + 10/01 08:40:00,13.22882882882883,13.22882882882883,18.119357688023876 + 10/01 08:50:00,13.22882882882883,13.22882882882883,18.099134717513615 + 10/01 09:00:00,13.22882882882883,13.22882882882883,18.080908081974436 + 10/01 09:10:00,13.203603603603604,13.203603603603604,18.0642724686276 + 10/01 09:20:00,13.17837837837838,13.17837837837838,18.040605409683566 + 10/01 09:30:00,13.153153153153154,13.153153153153154,18.027277161191664 + 10/01 09:40:00,13.12792792792793,13.12792792792793,18.01471833245216 + 10/01 09:50:00,13.102702702702704,13.102702702702704,18.002672859571267 + 10/01 10:00:00,13.077477477477478,13.077477477477478,17.99086122538923 + 10/01 10:10:00,13.077477477477478,13.077477477477478,17.97917269589898 + 10/01 10:20:00,13.077477477477478,13.077477477477478,17.967701460633898 + 10/01 10:30:00,13.077477477477478,13.077477477477478,17.956409086730603 + 10/01 10:40:00,13.077477477477478,13.077477477477478,17.944790713369867 + 10/01 10:50:00,13.077477477477478,13.077477477477478,17.932228926736586 + 10/01 11:00:00,13.077477477477478,13.077477477477478,17.918568649588086 + 10/01 11:10:00,13.031231231231232,13.031231231231232,17.90379104419299 + 10/01 11:20:00,12.984984984984987,12.984984984984987,17.887970640786308 + 10/01 11:30:00,12.938738738738739,12.938738738738739,17.87143442312314 + 10/01 11:40:00,12.892492492492494,12.892492492492494,17.854843600520885 + 10/01 11:50:00,12.846246246246248,12.846246246246248,17.839095071335629 + 10/01 12:00:00,12.8,12.8,17.824765657422839 + 10/01 12:10:00,12.8,12.8,17.811548702748234 + 10/01 12:20:00,12.8,12.8,17.799294685925834 + 10/01 12:30:00,12.8,12.8,17.787894980916407 + 10/01 12:40:00,12.8,12.8,17.77725780446906 + 10/01 12:50:00,12.8,12.8,17.7673580473638 + 10/01 13:00:00,12.8,12.8,17.75809370851164 + 10/01 13:10:00,12.8,12.8,17.749401949881344 + 10/01 13:20:00,12.8,12.8,17.74117228350868 + 10/01 13:30:00,12.8,12.8,17.73318361315779 + 10/01 13:40:00,12.8,12.8,17.725517729633226 + 10/01 13:50:00,12.8,12.8,17.71815116694725 + 10/01 14:00:00,12.8,12.8,17.710736439497567 + 10/01 14:10:00,12.8,12.8,17.703996208373427 + 10/01 14:20:00,12.8,12.8,17.69859196393506 + 10/01 14:30:00,12.8,12.8,17.694554151004536 + 10/01 14:40:00,12.8,12.8,17.691317907578186 + 10/01 14:50:00,12.8,12.8,17.688603290125184 + 10/01 15:00:00,12.8,12.8,17.686190237132604 + 10/01 15:10:00,12.8,12.8,19.098279744179928 + 10/01 15:20:00,12.8,12.8,19.249089404598317 + 10/01 15:30:00,12.8,12.8,19.31085261107108 + 10/01 15:40:00,12.8,12.8,19.359119565869528 + 10/01 15:50:00,12.8,12.8,19.396407762157943 + 10/01 16:00:00,12.8,12.8,19.427145396217225 + 10/01 16:10:00,12.8,12.8,19.45344016954235 + 10/01 16:20:00,12.8,12.8,19.485350509758626 + 10/01 16:30:00,12.8,12.8,19.50630270293415 + 10/01 16:40:00,12.8,12.8,19.52558747982408 + 10/01 16:50:00,12.8,12.8,19.542195323425273 + 10/01 17:00:00,12.8,12.8,19.559005922663507 + 10/01 17:10:00,12.8,12.8,19.57523362416816 + 10/01 17:20:00,12.8,12.8,19.60948304921668 + 10/01 17:30:00,12.8,12.8,19.62397021635087 + 10/01 17:40:00,12.8,12.8,19.639081889607554 + 10/01 17:50:00,12.8,12.8,19.6539775856133 + 10/01 18:00:00,12.8,12.8,19.66802191262576 + 10/01 18:10:00,12.8,12.8,19.680151167578559 + 10/01 18:20:00,12.8,12.8,19.69304677327321 + 10/01 18:30:00,12.8,12.8,19.70610089399505 + 10/01 18:40:00,12.8,12.8,19.717181096341169 + 10/01 18:50:00,12.8,12.8,19.72843113304434 + 10/01 19:00:00,12.8,12.8,19.738533891250705 + 10/01 19:10:00,12.8,12.8,19.748054249112717 + 10/01 19:20:00,12.8,12.8,19.75667121306421 + 10/01 19:30:00,12.8,12.8,19.76437196963288 + 10/01 19:40:00,12.8,12.8,19.771276817450663 + 10/01 19:50:00,12.8,12.8,19.777553026630757 + 10/01 20:00:00,12.8,12.8,19.783191769284519 + 10/01 20:10:00,12.8,12.8,19.766034591162084 + 10/01 20:20:00,12.8,12.8,19.770578325117535 + 10/01 20:30:00,12.8,12.8,19.774975392877129 + 10/01 20:40:00,12.8,12.8,19.7792053592743 + 10/01 20:50:00,12.8,12.8,19.78327992861442 + 10/01 21:00:00,12.8,12.8,19.787177022053027 + 10/01 21:10:00,12.8,12.8,19.790944445641388 + 10/01 21:20:00,12.8,12.8,19.79465353630445 + 10/01 21:30:00,12.8,12.8,19.79853718499701 + 10/01 21:40:00,12.8,12.8,19.8025118561659 + 10/01 21:50:00,12.8,12.8,19.806559007330966 + 10/01 22:00:00,12.8,12.8,19.81066129736429 + 10/01 22:10:00,12.821021021021022,12.821021021021022,19.81470829113919 + 10/01 22:20:00,12.842042042042042,12.842042042042042,19.818773837818087 + 10/01 22:30:00,12.863063063063063,12.863063063063063,19.82277739326029 + 10/01 22:40:00,12.884084084084084,12.884084084084084,19.82668614682281 + 10/01 22:50:00,12.905105105105106,12.905105105105106,19.830496925599147 + 10/01 23:00:00,12.926126126126127,12.926126126126127,19.834159892086324 + 10/01 23:10:00,12.951351351351353,12.951351351351353,19.837990781013958 + 10/01 23:20:00,12.976576576576577,12.976576576576577,19.84179371262447 + 10/01 23:30:00,13.001801801801803,13.001801801801803,19.845547269572039 + 10/01 23:40:00,13.027027027027028,13.027027027027028,19.849241090864845 + 10/01 23:50:00,13.052252252252253,13.052252252252253,19.852871163352537 + 10/01 24:00:00,13.077477477477478,13.077477477477478,19.856421141278106 + 10/02 00:10:00,13.077477477477478,13.077477477477478,19.85940856111614 + 10/02 00:20:00,13.077477477477478,13.077477477477478,19.862037191380357 + 10/02 00:30:00,13.077477477477478,13.077477477477478,19.864416509804778 + 10/02 00:40:00,13.077477477477478,13.077477477477478,19.86654581500871 + 10/02 00:50:00,13.077477477477478,13.077477477477478,19.868343554696318 + 10/02 01:00:00,13.077477477477478,13.077477477477478,19.87002174958253 + 10/02 01:10:00,13.077477477477478,13.077477477477478,19.871901663604374 + 10/02 01:20:00,13.077477477477478,13.077477477477478,19.87371923748481 + 10/02 01:30:00,13.077477477477478,13.077477477477478,19.875521176147097 + 10/02 01:40:00,13.077477477477478,13.077477477477478,19.87723912012578 + 10/02 01:50:00,13.077477477477478,13.077477477477478,19.879028658301487 + 10/02 02:00:00,13.077477477477478,13.077477477477478,19.880835121434637 + 10/02 02:10:00,13.077477477477478,13.077477477477478,19.88254965984112 + 10/02 02:20:00,13.077477477477478,13.077477477477478,19.884255823519596 + 10/02 02:30:00,13.077477477477478,13.077477477477478,19.885889929755458 + 10/02 02:40:00,13.077477477477478,13.077477477477478,19.887531873527786 + 10/02 02:50:00,13.077477477477478,13.077477477477478,19.889197057776653 + 10/02 03:00:00,13.077477477477478,13.077477477477478,19.89084245424128 + 10/02 03:10:00,13.123723723723725,13.123723723723725,19.892757503547558 + 10/02 03:20:00,13.169969969969971,13.169969969969971,19.895085882591429 + 10/02 03:30:00,13.216216216216218,13.216216216216218,19.89787076452316 + 10/02 03:40:00,13.262462462462464,13.262462462462464,19.901202590428825 + 10/02 03:50:00,13.30870870870871,13.30870870870871,19.904975010619859 + 10/02 04:00:00,13.354954954954956,13.354954954954956,19.909127761456639 + 10/02 04:10:00,13.380180180180182,13.380180180180182,19.913476794193444 + 10/02 04:20:00,13.405405405405407,13.405405405405407,19.91756765995678 + 10/02 04:30:00,13.430630630630632,13.430630630630632,19.9214352290022 + 10/02 04:40:00,13.455855855855857,13.455855855855857,19.92538165681579 + 10/02 04:50:00,13.481081081081081,13.481081081081081,19.92786037380817 + 10/02 05:00:00,13.506306306306307,13.506306306306307,19.93025317262928 + 10/02 05:10:00,13.527327327327328,13.527327327327328,19.93191308872504 + 10/02 05:20:00,13.548348348348349,13.548348348348349,19.933788520873855 + 10/02 05:30:00,13.56936936936937,13.56936936936937,19.935757866904816 + 10/02 05:40:00,13.590390390390392,13.590390390390392,19.937825591057388 + 10/02 05:50:00,13.611411411411412,13.611411411411412,19.939970821221345 + 10/02 06:00:00,13.632432432432433,13.632432432432433,19.942121743211229 + 10/02 06:10:00,13.657657657657659,13.657657657657659,17.9594504916693 + 10/02 06:20:00,13.682882882882883,13.682882882882883,17.716435326963649 + 10/02 06:30:00,13.708108108108109,13.708108108108109,17.629805725821215 + 10/02 06:40:00,13.733333333333335,13.733333333333335,17.561693972723949 + 10/02 06:50:00,13.758558558558559,13.758558558558559,17.50957026963183 + 10/02 07:00:00,13.783783783783785,13.783783783783785,17.466252298682087 + 10/02 07:10:00,13.737537537537538,13.737537537537538,15.996070822038473 + 10/02 07:20:00,13.691291291291293,13.691291291291293,15.763364143054853 + 10/02 07:30:00,13.645045045045047,13.645045045045047,15.65961265731466 + 10/02 07:40:00,13.5987987987988,13.5987987987988,15.571999233099037 + 10/02 07:50:00,13.552552552552554,13.552552552552554,15.500157193752461 + 10/02 08:00:00,13.506306306306307,13.506306306306307,15.436631619777382 + 10/02 08:05:00,13.388588588588588,13.388588588588588,15.352822157780356 + 10/02 08:10:00,13.388588588588588,13.388588588588588,15.35282333706457 + 10/02 08:20:00,13.270870870870871,13.270870870870871,15.290325372925948 + 10/02 08:30:00,13.153153153153154,13.153153153153154,15.23903848282217 + 10/02 08:40:00,13.035435435435435,13.035435435435435,15.190665816177864 + 10/02 08:50:00,12.917717717717718,12.917717717717718,15.14485204250338 + 10/02 09:00:00,12.8,12.8,15.101599360526726 + 10/02 09:10:00,12.8,12.8,15.060650846649905 + 10/02 09:20:00,12.8,12.8,15.011324129420427 + 10/02 09:30:00,12.8,12.8,14.974327322950625 + 10/02 09:40:00,12.8,12.8,14.938981528567844 + 10/02 09:50:00,12.8,12.8,14.904540717869406 + 10/02 10:00:00,12.8,12.8,14.870748200151697 + 10/02 10:10:00,12.8,12.8,14.837988030472298 + 10/02 10:20:00,12.8,12.8,14.802705292281282 + 10/02 10:30:00,12.8,12.8,14.771958025020839 + 10/02 10:40:00,12.8,12.8,14.74250140607311 + 10/02 10:50:00,12.8,12.8,14.714678884260538 + 10/02 11:00:00,12.8,12.8,14.688620729861168 + 10/02 11:10:00,12.8,12.8,14.66389479391548 + 10/02 11:20:00,12.8,12.8,14.6498942345446 + 10/02 11:30:00,12.8,12.8,14.627251743475858 + 10/02 11:40:00,12.8,12.8,14.605572387992155 + 10/02 11:50:00,12.8,12.8,14.585509252387196 + 10/02 12:00:00,12.8,12.8,14.567081282933158 + 10/02 12:10:00,12.8,12.8,14.55049224360627 + 10/02 12:20:00,12.8,12.8,14.525965190447226 + 10/02 12:30:00,12.8,12.8,14.512389664705863 + 10/02 12:40:00,12.8,12.8,14.499904418844335 + 10/02 12:50:00,12.8,12.8,14.48775064954813 + 10/02 13:00:00,12.8,12.8,14.475748228515539 + 10/02 13:10:00,12.8,12.8,14.463423094163659 + 10/02 13:20:00,12.8,12.8,14.454556874367745 + 10/02 13:30:00,12.8,12.8,14.442205388531845 + 10/02 13:40:00,12.8,12.8,14.43064126428593 + 10/02 13:50:00,12.8,12.8,14.420197407916899 + 10/02 14:00:00,12.8,12.8,14.410306125918865 + 10/02 14:10:00,12.8,12.8,14.398353487834422 + 10/02 14:20:00,12.8,12.8,14.392196439667995 + 10/02 14:30:00,12.8,12.8,14.384499109760169 + 10/02 14:40:00,12.8,12.8,14.377615832304765 + 10/02 14:50:00,12.8,12.8,14.368517766311838 + 10/02 15:00:00,12.8,12.8,14.362989735664295 + 10/02 15:05:00,12.8,12.8,16.512844680667834 + 10/02 15:10:00,12.8,12.8,16.509427509088103 + 10/02 15:20:00,12.8,12.8,16.761828976309898 + 10/02 15:30:00,12.8,12.8,16.860943753801118 + 10/02 15:35:00,12.8,12.8,16.939261133510319 + 10/02 15:40:00,12.8,12.8,16.938196250687349 + 10/02 15:50:00,12.8,12.8,16.997664227424126 + 10/02 15:55:00,12.8,12.8,17.049329700777365 + 10/02 16:00:00,12.8,12.8,17.048723692247415 + 10/02 16:10:00,12.8,12.8,17.114575690287677 + 10/02 16:15:00,12.8,12.8,17.17190598300067 + 10/02 16:20:00,12.8,12.8,17.169176461251185 + 10/02 16:30:00,12.8,12.8,17.20078543641473 + 10/02 16:35:00,12.8,12.8,17.232728471533805 + 10/02 16:40:00,12.8,12.8,17.230071363074857 + 10/02 16:50:00,12.8,12.8,17.257598250930529 + 10/02 17:00:00,12.8,12.8,17.28474486374082 + 10/02 17:10:00,12.8,12.8,17.32465914428121 + 10/02 17:20:00,12.8,12.8,17.352335774301208 + 10/02 17:30:00,12.8,12.8,17.374987860210106 + 10/02 17:40:00,12.8,12.8,17.395152993973349 + 10/02 17:50:00,12.8,12.8,17.414036006525419 + 10/02 18:00:00,12.8,12.8,17.431350066027414 + 10/02 18:10:00,12.8,12.8,17.447495561502288 + 10/02 18:20:00,12.8,12.8,17.46316483152485 + 10/02 18:30:00,12.8,12.8,17.4783671529612 + 10/02 18:40:00,12.8,12.8,17.492651045452296 + 10/02 18:50:00,12.8,12.8,17.505991737536634 + 10/02 19:00:00,12.8,12.8,17.51843426769419 + 10/02 19:10:00,12.8,12.8,17.54306693074658 + 10/02 19:20:00,12.8,12.8,17.554740995608556 + 10/02 19:30:00,12.8,12.8,17.565198217918306 + 10/02 19:40:00,12.8,12.8,17.57498331223634 + 10/02 19:50:00,12.8,12.8,17.584129576018705 + 10/02 20:00:00,12.8,12.8,17.592788356765 + 10/02 20:10:00,12.8,12.8,17.578370951152246 + 10/02 20:20:00,12.8,12.8,17.58997497111588 + 10/02 20:30:00,12.8,12.8,17.59714967025492 + 10/02 20:40:00,12.833633633633636,12.833633633633636,17.603962626759747 + 10/02 20:50:00,12.87987987987988,12.87987987987988,17.610583197038797 + 10/02 21:00:00,12.926126126126127,12.926126126126127,17.616957079101224 + 10/02 21:10:00,13.043843843843846,13.043843843843846,17.62376452764542 + 10/02 21:20:00,13.16156156156156,13.16156156156156,17.631126711103119 + 10/02 21:30:00,13.27927927927928,13.27927927927928,17.63924536475997 + 10/02 21:40:00,13.396996996996997,13.396996996996997,17.644588631499688 + 10/02 21:50:00,13.514714714714716,13.514714714714716,17.646838872551894 + 10/02 22:00:00,13.632432432432433,13.632432432432433,17.64986882495735 + 10/02 22:10:00,13.657657657657659,13.657657657657659,19.012772526030479 + 10/02 22:20:00,13.682882882882883,13.682882882882883,19.159688320037998 + 10/02 22:30:00,13.708108108108109,13.708108108108109,19.225429892947248 + 10/02 22:40:00,13.733333333333335,13.733333333333335,19.27790895553965 + 10/02 22:50:00,13.758558558558559,13.758558558558559,19.32015971080006 + 10/02 23:00:00,13.783783783783785,13.783783783783785,19.355572440100027 + 10/02 23:10:00,13.83003003003003,13.83003003003003,19.386603308823529 + 10/02 23:20:00,13.876276276276276,13.876276276276276,19.414656053372494 + 10/02 23:30:00,13.922522522522524,13.922522522522524,19.439823082821826 + 10/02 23:40:00,13.968768768768769,13.968768768768769,19.462947373939579 + 10/02 23:50:00,14.015015015015015,14.015015015015015,19.484242160075678 + 10/02 24:00:00,14.061261261261262,14.061261261261262,19.50401993217021 + 10/03 00:10:00,14.107507507507508,14.107507507507508,19.52253795363975 + 10/03 00:20:00,14.153753753753755,14.153753753753755,19.539965092864028 + 10/03 00:30:00,14.2,14.2,19.556538787930017 + 10/03 00:40:00,14.246246246246246,14.246246246246246,19.572404679062378 + 10/03 00:50:00,14.292492492492493,14.292492492492493,19.587608150864168 + 10/03 01:00:00,14.338738738738739,14.338738738738739,19.602220593693205 + 10/03 01:10:00,14.384984984984986,14.384984984984986,19.616673536175154 + 10/03 01:20:00,14.431231231231232,14.431231231231232,19.630534212694099 + 10/03 01:30:00,14.477477477477479,14.477477477477479,19.64391012220106 + 10/03 01:40:00,14.523723723723723,14.523723723723723,19.656774536644705 + 10/03 01:50:00,14.56996996996997,14.56996996996997,19.66916999669729 + 10/03 02:00:00,14.616216216216217,14.616216216216217,19.68112767093304 + 10/03 02:10:00,14.662462462462463,14.662462462462463,19.690523985131195 + 10/03 02:20:00,14.70870870870871,14.70870870870871,19.699797378851814 + 10/03 02:30:00,14.754954954954954,14.754954954954954,19.70886612027838 + 10/03 02:40:00,14.8012012012012,14.8012012012012,19.717771125406356 + 10/03 02:50:00,14.847447447447447,14.847447447447447,19.72650477806252 + 10/03 03:00:00,14.893693693693694,14.893693693693694,19.7349836511891 + 10/03 03:10:00,14.91891891891892,14.91891891891892,19.74690386737616 + 10/03 03:20:00,14.944144144144144,14.944144144144144,19.75832759258164 + 10/03 03:30:00,14.96936936936937,14.96936936936937,19.76938731505205 + 10/03 03:40:00,14.994594594594595,14.994594594594595,19.780041205255736 + 10/03 03:50:00,15.01981981981982,15.01981981981982,19.790317571827566 + 10/03 04:00:00,15.045045045045045,15.045045045045045,19.800357723836688 + 10/03 04:10:00,15.066066066066066,15.066066066066066,19.80799112555276 + 10/03 04:20:00,15.087087087087087,15.087087087087087,19.81541647297713 + 10/03 04:30:00,15.108108108108109,15.108108108108109,19.822626976980194 + 10/03 04:40:00,15.12912912912913,15.12912912912913,19.829602984161917 + 10/03 04:50:00,15.15015015015015,15.15015015015015,19.83637362128126 + 10/03 05:00:00,15.17117117117117,15.17117117117117,19.843021438733414 + 10/03 05:10:00,15.196396396396397,15.196396396396397,19.849803806538494 + 10/03 05:20:00,15.22162162162162,15.22162162162162,19.85641144545203 + 10/03 05:30:00,15.246846846846847,15.246846846846847,19.862864314023349 + 10/03 05:40:00,15.272072072072073,15.272072072072073,19.869119486767809 + 10/03 05:50:00,15.297297297297297,15.297297297297297,19.875337679749938 + 10/03 06:00:00,15.322522522522523,15.322522522522523,19.88144103321968 + 10/03 06:10:00,15.322522522522523,15.322522522522523,17.8841876210127 + 10/03 06:20:00,15.322522522522523,15.322522522522523,17.652851298853358 + 10/03 06:30:00,15.322522522522523,15.322522522522523,17.569037218018253 + 10/03 06:40:00,15.322522522522523,15.322522522522523,17.50423301586051 + 10/03 06:50:00,15.322522522522523,15.322522522522523,17.453549899196159 + 10/03 07:00:00,15.322522522522523,15.322522522522523,17.411442185766103 + 10/03 07:10:00,15.276276276276276,15.276276276276276,15.933607490260139 + 10/03 07:20:00,15.23003003003003,15.23003003003003,15.718379160849472 + 10/03 07:30:00,15.183783783783785,15.183783783783785,15.618902516515485 + 10/03 07:40:00,15.137537537537538,15.137537537537538,15.537612921064737 + 10/03 07:50:00,15.091291291291292,15.091291291291292,15.469660893058075 + 10/03 08:00:00,15.045045045045045,15.045045045045045,15.410330696245343 + 10/03 08:05:00,14.855855855855856,14.855855855855856,15.332622043711283 + 10/03 08:10:00,14.855855855855856,14.855855855855856,15.331461889389033 + 10/03 08:20:00,14.666666666666666,14.666666666666666,15.271450420981582 + 10/03 08:30:00,14.477477477477479,14.477477477477479,15.223583597136733 + 10/03 08:40:00,14.288288288288289,14.288288288288289,15.177032378194819 + 10/03 08:50:00,14.0990990990991,14.0990990990991,15.132994173196835 + 10/03 09:00:00,13.90990990990991,13.90990990990991,15.0906389639349 + 10/03 09:10:00,13.796396396396398,13.796396396396398,15.05031098581943 + 10/03 09:20:00,13.682882882882883,13.682882882882883,14.998779842596316 + 10/03 09:30:00,13.56936936936937,13.56936936936937,14.959016002178693 + 10/03 09:40:00,13.455855855855857,13.455855855855857,14.920099487986568 + 10/03 09:50:00,13.342342342342344,13.342342342342344,14.882513010981548 + 10/03 10:00:00,13.22882882882883,13.22882882882883,14.846207507745313 + 10/03 10:10:00,13.132132132132134,13.132132132132134,14.811371241947361 + 10/03 10:20:00,13.035435435435437,13.035435435435437,14.780778192764128 + 10/03 10:30:00,12.93873873873874,12.93873873873874,14.754757721023527 + 10/03 10:40:00,12.842042042042044,12.842042042042044,14.730909263040651 + 10/03 10:50:00,12.8,12.8,14.70807864225243 + 10/03 11:00:00,12.8,12.8,14.686438756267249 + 10/03 11:10:00,12.8,12.8,14.666860294752678 + 10/03 11:20:00,12.8,12.8,14.647206132295132 + 10/03 11:30:00,12.8,12.8,14.61995463766283 + 10/03 11:40:00,12.8,12.8,14.593004113840437 + 10/03 11:50:00,12.8,12.8,14.568891573510973 + 10/03 12:00:00,12.8,12.8,14.547153049970638 + 10/03 12:10:00,12.8,12.8,14.52693970573857 + 10/03 12:20:00,12.8,12.8,14.506642566986353 + 10/03 12:30:00,12.8,12.8,14.496760906857587 + 10/03 12:40:00,12.8,12.8,14.488283192606593 + 10/03 12:50:00,12.8,12.8,14.478802451984322 + 10/03 13:00:00,12.8,12.8,14.468390322094053 + 10/03 13:10:00,12.8,12.8,14.45766553699039 + 10/03 13:20:00,12.8,12.8,14.449086188529615 + 10/03 13:30:00,12.8,12.8,14.43709279461487 + 10/03 13:40:00,12.8,12.8,14.426405525086757 + 10/03 13:50:00,12.8,12.8,14.41701068063172 + 10/03 14:00:00,12.8,12.8,14.408448523198077 + 10/03 14:10:00,12.8,12.8,14.397498256577992 + 10/03 14:20:00,12.8,12.8,14.39277657765108 + 10/03 14:30:00,12.8,12.8,14.38542662533274 + 10/03 14:40:00,12.8,12.8,14.377143481033566 + 10/03 14:50:00,12.8,12.8,14.368227729629157 + 10/03 15:00:00,12.8,12.8,14.361781567418858 + 10/03 15:05:00,12.8,12.8,16.518539908021148 + 10/03 15:10:00,12.8,12.8,16.517394248441144 + 10/03 15:20:00,12.8,12.8,16.76516705118903 + 10/03 15:30:00,12.8,12.8,16.861989526524988 + 10/03 15:40:00,12.8,12.8,16.936850798124703 + 10/03 15:50:00,12.8,12.8,16.996305073994909 + 10/03 16:00:00,12.8,12.8,17.045811817557057 + 10/03 16:10:00,12.8,12.8,17.114448018497634 + 10/03 16:20:00,12.8,12.8,17.17049971655007 + 10/03 16:30:00,12.8,12.8,17.203163525343 + 10/03 16:40:00,12.8,12.8,17.232520614278557 + 10/03 16:50:00,12.8,12.8,17.25956155770742 + 10/03 17:00:00,12.8,12.8,17.28465278784023 + 10/03 17:10:00,12.892492492492494,12.892492492492494,17.321530605654055 + 10/03 17:20:00,12.984984984984987,12.984984984984987,17.35003407172843 + 10/03 17:30:00,13.077477477477478,13.077477477477478,17.372160466416124 + 10/03 17:40:00,13.169969969969971,13.169969969969971,17.393473137899766 + 10/03 17:50:00,13.262462462462464,13.262462462462464,17.414033750470567 + 10/03 18:00:00,13.354954954954956,13.354954954954956,17.433889950571279 + 10/03 18:10:00,13.447447447447449,13.447447447447449,17.45342941908494 + 10/03 18:20:00,13.539939939939942,13.539939939939942,17.473916338966239 + 10/03 18:30:00,13.632432432432435,13.632432432432435,17.49338383364573 + 10/03 18:40:00,13.724924924924926,13.724924924924926,17.511788008504796 + 10/03 18:50:00,13.817417417417419,13.817417417417419,17.52879407270407 + 10/03 19:00:00,13.90990990990991,13.90990990990991,17.544551002906446 + 10/03 19:10:00,14.027627627627627,14.027627627627627,17.57277349154958 + 10/03 19:20:00,14.145345345345346,14.145345345345346,17.587777500951199 + 10/03 19:30:00,14.263063063063063,14.263063063063063,17.601661201489955 + 10/03 19:40:00,14.380780780780782,14.380780780780782,17.61489026110889 + 10/03 19:50:00,14.498498498498499,14.498498498498499,17.62756264398307 + 10/03 20:00:00,14.616216216216217,14.616216216216217,17.639718865877954 + 10/03 20:10:00,14.662462462462463,14.662462462462463,17.629111882303044 + 10/03 20:20:00,14.70870870870871,14.70870870870871,17.645566024828903 + 10/03 20:30:00,14.754954954954954,14.754954954954954,17.657150455883376 + 10/03 20:40:00,14.8012012012012,14.8012012012012,17.668469021887498 + 10/03 20:50:00,14.847447447447447,14.847447447447447,17.679396955247566 + 10/03 21:00:00,14.893693693693694,14.893693693693694,17.689976463137318 + 10/03 21:10:00,14.893693693693694,14.893693693693694,17.699483801166765 + 10/03 21:20:00,14.893693693693694,14.893693693693694,17.70775096275389 + 10/03 21:30:00,14.893693693693694,14.893693693693694,17.71555365294081 + 10/03 21:40:00,14.893693693693694,14.893693693693694,17.722790451578953 + 10/03 21:50:00,14.893693693693694,14.893693693693694,17.729621141114938 + 10/03 22:00:00,14.893693693693694,14.893693693693694,17.73618347545377 + 10/03 22:10:00,14.93993993993994,14.93993993993994,19.10800993625113 + 10/03 22:20:00,14.986186186186187,14.986186186186187,19.253036155183467 + 10/03 22:30:00,15.032432432432433,15.032432432432433,19.317783360900738 + 10/03 22:40:00,15.078678678678678,15.078678678678678,19.369389371658927 + 10/03 22:50:00,15.124924924924925,15.124924924924925,19.41137817987676 + 10/03 23:00:00,15.17117117117117,15.17117117117117,19.446923827884907 + 10/03 23:10:00,15.196396396396397,15.196396396396397,19.477741337609915 + 10/03 23:20:00,15.22162162162162,15.22162162162162,19.505218883640624 + 10/03 23:30:00,15.246846846846847,15.246846846846847,19.53000062938697 + 10/03 23:40:00,15.272072072072073,15.272072072072073,19.552624195627403 + 10/03 23:50:00,15.297297297297297,15.297297297297297,19.57346078994572 + 10/03 24:00:00,15.322522522522523,15.322522522522523,19.592717384252368 + 10/04 00:10:00,15.368768768768769,15.368768768768769,19.610341780179807 + 10/04 00:20:00,15.415015015015016,15.415015015015016,19.626962526588568 + 10/04 00:30:00,15.46126126126126,15.46126126126126,19.64272439382984 + 10/04 00:40:00,15.507507507507507,15.507507507507507,19.657743174415928 + 10/04 00:50:00,15.553753753753754,15.553753753753754,19.672011384021589 + 10/04 01:00:00,15.6,15.6,19.68575115687642 + 10/04 01:10:00,15.6,15.6,19.70070980231677 + 10/04 01:20:00,15.6,15.6,19.715017661459137 + 10/04 01:30:00,15.6,15.6,19.728664039601676 + 10/04 01:40:00,15.6,15.6,19.741634595386125 + 10/04 01:50:00,15.6,15.6,19.75406749018031 + 10/04 02:00:00,15.6,15.6,19.766036683736325 + 10/04 02:10:00,15.6,15.6,19.775207399460049 + 10/04 02:20:00,15.6,15.6,19.784137586560577 + 10/04 02:30:00,15.6,15.6,19.792848762766086 + 10/04 02:40:00,15.6,15.6,19.80138326910025 + 10/04 02:50:00,15.6,15.6,19.809828648318584 + 10/04 03:00:00,15.6,15.6,19.81811659663045 + 10/04 03:10:00,15.6,15.6,19.82970527790875 + 10/04 03:20:00,15.6,15.6,19.840891243791689 + 10/04 03:30:00,15.6,15.6,19.851674993436256 + 10/04 03:40:00,15.6,15.6,19.862192981411299 + 10/04 03:50:00,15.6,15.6,19.872408804376787 + 10/04 04:00:00,15.6,15.6,19.88235427492463 + 10/04 04:10:00,15.6,15.6,19.88726121415877 + 10/04 04:20:00,15.6,15.6,19.8919313770299 + 10/04 04:30:00,15.6,15.6,19.896583946169554 + 10/04 04:40:00,15.6,15.6,19.901167825889016 + 10/04 04:50:00,15.6,15.6,19.905678322807835 + 10/04 05:00:00,15.6,15.6,19.910122645430378 + 10/04 05:10:00,15.6,15.6,19.917037040820266 + 10/04 05:20:00,15.6,15.6,19.92383227947486 + 10/04 05:30:00,15.6,15.6,19.930362932480713 + 10/04 05:40:00,15.6,15.6,19.936613479214338 + 10/04 05:50:00,15.6,15.6,19.942572766479115 + 10/04 06:00:00,15.6,15.6,19.948210777723916 + 10/04 06:10:00,15.6,15.6,17.946085445608916 + 10/04 06:20:00,15.6,15.6,17.714582396692888 + 10/04 06:30:00,15.6,15.6,17.630226566692099 + 10/04 06:40:00,15.6,15.6,17.564978648861979 + 10/04 06:50:00,15.6,15.6,17.513831929305029 + 10/04 07:00:00,15.6,15.6,17.471259731399159 + 10/04 07:10:00,15.6,15.6,15.990359856023119 + 10/04 07:20:00,15.6,15.6,15.773559333307553 + 10/04 07:30:00,15.6,15.6,15.672014653895854 + 10/04 07:40:00,15.6,15.6,15.588229538012988 + 10/04 07:50:00,15.6,15.6,15.517582112879318 + 10/04 08:00:00,15.6,15.6,15.45542019937884 + 10/04 08:10:00,15.6,15.6,15.372065220964285 + 10/04 08:20:00,15.6,15.6,15.310895156513709 + 10/04 08:30:00,15.6,15.6,15.260775296248202 + 10/04 08:40:00,15.6,15.6,15.213471774036032 + 10/04 08:50:00,15.6,15.6,15.168696965072547 + 10/04 09:00:00,15.6,15.6,15.126281201420792 + 10/04 09:10:00,15.436036036036036,15.436036036036036,15.085927429974227 + 10/04 09:20:00,15.272072072072073,15.272072072072073,15.03699121143619 + 10/04 09:30:00,15.108108108108109,15.108108108108109,14.999900047837592 + 10/04 09:40:00,14.944144144144144,14.944144144144144,14.964011986450485 + 10/04 09:50:00,14.78018018018018,14.78018018018018,14.929056330816748 + 10/04 10:00:00,14.616216216216217,14.616216216216217,14.894948796469184 + 10/04 10:10:00,14.56996996996997,14.56996996996997,14.862217742319278 + 10/04 10:20:00,14.523723723723723,14.523723723723723,14.82918125782679 + 10/04 10:30:00,14.477477477477479,14.477477477477479,14.800841170687834 + 10/04 10:40:00,14.431231231231232,14.431231231231232,14.773872726145142 + 10/04 10:50:00,14.384984984984986,14.384984984984986,14.747765426635312 + 10/04 11:00:00,14.338738738738739,14.338738738738739,14.722475384252857 + 10/04 11:10:00,14.267267267267269,14.267267267267269,14.698965572461673 + 10/04 11:20:00,14.195795795795796,14.195795795795796,14.684714424475337 + 10/04 11:30:00,14.124324324324326,14.124324324324326,14.661587105559578 + 10/04 11:40:00,14.052852852852853,14.052852852852853,14.639249546269534 + 10/04 11:50:00,13.981381381381383,13.981381381381383,14.618400198756485 + 10/04 12:00:00,13.90990990990991,13.90990990990991,14.599005271866219 + 10/04 12:10:00,13.817417417417419,13.817417417417419,14.579115600466434 + 10/04 12:20:00,13.724924924924926,13.724924924924926,14.552987170583535 + 10/04 12:30:00,13.632432432432435,13.632432432432435,14.537014105831855 + 10/04 12:40:00,13.539939939939942,13.539939939939942,14.52189445469886 + 10/04 12:50:00,13.447447447447449,13.447447447447449,14.507063250171932 + 10/04 13:00:00,13.354954954954956,13.354954954954956,14.492657184679004 + 10/04 13:10:00,13.333933933933935,13.333933933933935,14.480139289723029 + 10/04 13:20:00,13.312912912912914,13.312912912912914,14.472475154607404 + 10/04 13:30:00,13.291891891891894,13.291891891891894,14.462961216065358 + 10/04 13:40:00,13.270870870870873,13.270870870870873,14.45536520069751 + 10/04 13:50:00,13.24984984984985,13.24984984984985,14.448942394561256 + 10/04 14:00:00,13.22882882882883,13.22882882882883,14.441035461478645 + 10/04 14:10:00,13.157357357357359,13.157357357357359,14.43454758916784 + 10/04 14:20:00,13.085885885885887,13.085885885885887,14.432334488122374 + 10/04 14:30:00,13.014414414414415,13.014414414414415,14.426628017781855 + 10/04 14:40:00,12.942942942942946,12.942942942942946,14.41905443621661 + 10/04 14:50:00,12.871471471471472,12.871471471471472,14.416354679087008 + 10/04 15:00:00,12.8,12.8,14.416083432118305 + 10/04 15:05:00,12.821021021021022,12.821021021021022,16.575257019790045 + 10/04 15:10:00,12.821021021021022,12.821021021021022,16.574207144734339 + 10/04 15:20:00,12.842042042042042,12.842042042042042,16.82625113905954 + 10/04 15:30:00,12.863063063063063,12.863063063063063,16.930406129270744 + 10/04 15:40:00,12.884084084084084,12.884084084084084,17.011344416484435 + 10/04 15:50:00,12.905105105105106,12.905105105105106,17.075750373848427 + 10/04 16:00:00,12.926126126126127,12.926126126126127,17.128939008581289 + 10/04 16:10:00,12.926126126126127,12.926126126126127,17.19949957867039 + 10/04 16:20:00,12.926126126126127,12.926126126126127,17.257103941114847 + 10/04 16:30:00,12.926126126126127,12.926126126126127,17.291692248705198 + 10/04 16:40:00,12.926126126126127,12.926126126126127,17.322694840008759 + 10/04 16:50:00,12.926126126126127,12.926126126126127,17.350684589790136 + 10/04 17:00:00,12.926126126126127,12.926126126126127,17.376102755403417 + 10/04 17:10:00,12.951351351351353,12.951351351351353,17.412198240816385 + 10/04 17:20:00,12.976576576576577,12.976576576576577,17.44059033710394 + 10/04 17:30:00,13.001801801801803,13.001801801801803,17.46188791075749 + 10/04 17:40:00,13.027027027027028,13.027027027027028,17.48204191853206 + 10/04 17:50:00,13.052252252252253,13.052252252252253,17.500687207443474 + 10/04 18:00:00,13.077477477477478,13.077477477477478,17.517863652458723 + 10/04 18:10:00,13.123723723723725,13.123723723723725,17.534106548568816 + 10/04 18:20:00,13.169969969969971,13.169969969969971,17.548889734391339 + 10/04 18:30:00,13.216216216216218,13.216216216216218,17.56288460797092 + 10/04 18:40:00,13.262462462462464,13.262462462462464,17.576052088962468 + 10/04 18:50:00,13.30870870870871,13.30870870870871,17.58850465092724 + 10/04 19:00:00,13.354954954954956,13.354954954954956,17.600235245239167 + 10/04 19:10:00,13.472672672672673,13.472672672672673,17.62448297250507 + 10/04 19:20:00,13.590390390390392,13.590390390390392,17.636609543623167 + 10/04 19:30:00,13.708108108108109,13.708108108108109,17.648023236213715 + 10/04 19:40:00,13.825825825825826,13.825825825825826,17.659214615835645 + 10/04 19:50:00,13.943543543543545,13.943543543543545,17.670067344794327 + 10/04 20:00:00,14.061261261261262,14.061261261261262,17.680641055301416 + 10/04 20:10:00,14.015015015015015,14.015015015015015,17.668840588580708 + 10/04 20:20:00,13.968768768768769,13.968768768768769,17.68240058826636 + 10/04 20:30:00,13.922522522522524,13.922522522522524,17.690832907516119 + 10/04 20:40:00,13.876276276276278,13.876276276276278,17.698323292858534 + 10/04 20:50:00,13.83003003003003,13.83003003003003,17.705210633291857 + 10/04 21:00:00,13.783783783783785,13.783783783783785,17.71150492072418 + 10/04 21:10:00,13.783783783783785,13.783783783783785,17.717281991629109 + 10/04 21:20:00,13.783783783783785,13.783783783783785,17.724006257512849 + 10/04 21:30:00,13.783783783783785,13.783783783783785,17.730287314733276 + 10/04 21:40:00,13.783783783783785,13.783783783783785,17.73642792693188 + 10/04 21:50:00,13.783783783783785,13.783783783783785,17.742130028981064 + 10/04 22:00:00,13.783783783783785,13.783783783783785,17.74761001020864 + 10/04 22:10:00,13.804804804804805,13.804804804804805,19.116223768191995 + 10/04 22:20:00,13.825825825825828,13.825825825825828,19.258813597337406 + 10/04 22:30:00,13.846846846846848,13.846846846846848,19.321333102328454 + 10/04 22:40:00,13.867867867867869,13.867867867867869,19.37047128855997 + 10/04 22:50:00,13.88888888888889,13.88888888888889,19.410206163469469 + 10/04 23:00:00,13.90990990990991,13.90990990990991,19.44358661427851 + 10/04 23:10:00,13.935135135135136,13.935135135135136,19.472429095738918 + 10/04 23:20:00,13.960360360360362,13.960360360360362,19.49780431409905 + 10/04 23:30:00,13.985585585585586,13.985585585585586,19.520417452747567 + 10/04 23:40:00,14.010810810810812,14.010810810810812,19.54090592904707 + 10/04 23:50:00,14.036036036036038,14.036036036036038,19.559623658670444 + 10/04 24:00:00,14.061261261261262,14.061261261261262,19.576837778912425 + 10/05 00:10:00,14.061261261261262,14.061261261261262,19.592714931902895 + 10/05 00:20:00,14.061261261261262,14.061261261261262,19.607515817065914 + 10/05 00:30:00,14.061261261261262,14.061261261261262,19.62140942286318 + 10/05 00:40:00,14.061261261261262,14.061261261261262,19.634560942761277 + 10/05 00:50:00,14.061261261261262,14.061261261261262,19.64700556141222 + 10/05 01:00:00,14.061261261261262,14.061261261261262,19.65881961782363 + 10/05 01:10:00,14.107507507507508,14.107507507507508,19.669817058776503 + 10/05 01:20:00,14.153753753753755,14.153753753753755,19.680420053375636 + 10/05 01:30:00,14.2,14.2,19.690773425159479 + 10/05 01:40:00,14.246246246246246,14.246246246246246,19.700852682299997 + 10/05 01:50:00,14.292492492492493,14.292492492492493,19.710664063861559 + 10/05 02:00:00,14.338738738738739,14.338738738738739,19.720209481600166 + 10/05 02:10:00,14.363963963963965,14.363963963963965,19.72978833812515 + 10/05 02:20:00,14.389189189189189,14.389189189189189,19.739128058077946 + 10/05 02:30:00,14.414414414414415,14.414414414414415,19.74808083097315 + 10/05 02:40:00,14.439639639639639,14.439639639639639,19.756659297650704 + 10/05 02:50:00,14.464864864864865,14.464864864864865,19.764877401859274 + 10/05 03:00:00,14.49009009009009,14.49009009009009,19.77267089080904 + 10/05 03:10:00,14.536336336336337,14.536336336336337,19.780339160869035 + 10/05 03:20:00,14.582582582582582,14.582582582582582,19.787908961129334 + 10/05 03:30:00,14.628828828828829,14.628828828828829,19.795470284764556 + 10/05 03:40:00,14.675075075075075,14.675075075075075,19.803033603933718 + 10/05 03:50:00,14.721321321321322,14.721321321321322,19.810536753683228 + 10/05 04:00:00,14.767567567567568,14.767567567567568,19.81806059817432 + 10/05 04:10:00,14.788588588588589,14.788588588588589,19.82550084430336 + 10/05 04:20:00,14.809609609609609,14.809609609609609,19.833013017460027 + 10/05 04:30:00,14.83063063063063,14.83063063063063,19.84031767696229 + 10/05 04:40:00,14.85165165165165,14.85165165165165,19.847420237048938 + 10/05 04:50:00,14.872672672672673,14.872672672672673,19.85428434953388 + 10/05 05:00:00,14.893693693693694,14.893693693693694,19.86097790190826 + 10/05 05:10:00,14.965165165165164,14.965165165165164,19.869181569159104 + 10/05 05:20:00,15.036636636636637,15.036636636636637,19.87733191508523 + 10/05 05:30:00,15.108108108108109,15.108108108108109,19.885380288335985 + 10/05 05:40:00,15.17957957957958,15.17957957957958,19.893316357376564 + 10/05 05:50:00,15.251051051051052,15.251051051051052,19.90129482527667 + 10/05 06:00:00,15.322522522522523,15.322522522522523,19.90924518057164 + 10/05 06:10:00,15.393993993993995,15.393993993993995,17.91290940466304 + 10/05 06:20:00,15.465465465465466,15.465465465465466,17.68193537394602 + 10/05 06:30:00,15.536936936936936,15.536936936936936,17.59786597262641 + 10/05 06:40:00,15.6,15.6,17.53253672746441 + 10/05 06:50:00,15.6,15.6,17.481195697514609 + 10/05 07:00:00,15.6,15.6,17.43888686356059 + 10/05 07:10:00,15.6,15.6,15.959564968995757 + 10/05 07:20:00,15.6,15.6,15.742553855458251 + 10/05 07:30:00,15.6,15.6,15.641498755921516 + 10/05 07:40:00,15.6,15.6,15.558413550440445 + 10/05 07:50:00,15.6,15.6,15.488686922061256 + 10/05 08:00:00,15.6,15.6,15.42755925663535 + 10/05 08:10:00,15.6,15.6,15.345636562978998 + 10/05 08:15:00,15.557957957957957,15.557957957957957,15.287622115936936 + 10/05 08:20:00,15.557957957957957,15.557957957957957,15.287126838936376 + 10/05 08:30:00,15.46126126126126,15.46126126126126,15.238655607239572 + 10/05 08:35:00,15.364564564564564,15.364564564564564,15.19473691657838 + 10/05 08:40:00,15.364564564564564,15.364564564564564,15.194555082309045 + 10/05 08:50:00,15.267867867867868,15.267867867867868,15.151630844190694 + 10/05 09:00:00,15.17117117117117,15.17117117117117,15.112333195185439 + 10/05 09:10:00,15.057657657657657,15.057657657657657,15.074492684005758 + 10/05 09:20:00,14.944144144144144,14.944144144144144,15.029279858130959 + 10/05 09:30:00,14.83063063063063,14.83063063063063,14.99594890550736 + 10/05 09:40:00,14.717117117117118,14.717117117117118,14.964174704839492 + 10/05 09:50:00,14.603603603603604,14.603603603603604,14.933861696502018 + 10/05 10:00:00,14.49009009009009,14.49009009009009,14.905234461962829 + 10/05 10:10:00,14.418618618618618,14.418618618618618,14.8788933117072 + 10/05 10:20:00,14.347147147147148,14.347147147147148,14.850354275742293 + 10/05 10:30:00,14.275675675675675,14.275675675675675,14.827127551489495 + 10/05 10:40:00,14.204204204204205,14.204204204204205,14.805215768817675 + 10/05 10:50:00,14.132732732732734,14.132732732732734,14.784072429656425 + 10/05 11:00:00,14.061261261261262,14.061261261261262,14.763388611434085 + 10/05 11:10:00,13.943543543543545,13.943543543543545,14.742543323615802 + 10/05 11:20:00,13.825825825825826,13.825825825825826,14.732594065088769 + 10/05 11:30:00,13.708108108108109,13.708108108108109,14.713132406424862 + 10/05 11:40:00,13.590390390390392,13.590390390390392,14.694191217206999 + 10/05 11:50:00,13.472672672672673,13.472672672672673,14.675924664386619 + 10/05 12:00:00,13.354954954954956,13.354954954954956,14.658363843314849 + 10/05 12:10:00,13.30870870870871,13.30870870870871,14.64204634401678 + 10/05 12:20:00,13.262462462462464,13.262462462462464,14.615400252827652 + 10/05 12:30:00,13.216216216216218,13.216216216216218,14.599281900864872 + 10/05 12:40:00,13.169969969969971,13.169969969969971,14.58370907060869 + 10/05 12:50:00,13.123723723723725,13.123723723723725,14.568693231215855 + 10/05 13:00:00,13.077477477477478,13.077477477477478,14.554140410963168 + 10/05 13:10:00,13.077477477477478,13.077477477477478,14.53986994716202 + 10/05 13:20:00,13.077477477477478,13.077477477477478,14.529613764257313 + 10/05 13:30:00,13.077477477477478,13.077477477477478,14.516529045346096 + 10/05 13:40:00,13.077477477477478,13.077477477477478,14.505162646940932 + 10/05 13:50:00,13.077477477477478,13.077477477477478,14.49481510537966 + 10/05 14:00:00,13.077477477477478,13.077477477477478,14.483779975773203 + 10/05 14:10:00,13.052252252252253,13.052252252252253,14.474948923374506 + 10/05 14:20:00,13.027027027027028,13.027027027027028,14.473614829971499 + 10/05 14:30:00,13.001801801801803,13.001801801801803,14.470192798090764 + 10/05 14:40:00,12.976576576576577,12.976576576576577,14.464838192012671 + 10/05 14:50:00,12.951351351351353,12.951351351351353,14.462356240461025 + 10/05 15:00:00,12.926126126126127,12.926126126126127,14.46091969516675 + 10/05 15:05:00,12.951351351351353,12.951351351351353,16.605069867415624 + 10/05 15:10:00,12.951351351351353,12.951351351351353,16.60492991609489 + 10/05 15:20:00,12.976576576576577,12.976576576576577,16.849935108660398 + 10/05 15:30:00,13.001801801801803,13.001801801801803,16.945730259820438 + 10/05 15:40:00,13.027027027027028,13.027027027027028,17.01873723461346 + 10/05 15:50:00,13.052252252252253,13.052252252252253,17.075440861092269 + 10/05 16:00:00,13.077477477477478,13.077477477477478,17.12174009448195 + 10/05 16:10:00,13.148948948948949,13.148948948948949,17.18667821546314 + 10/05 16:20:00,13.220420420420421,13.220420420420421,17.23951251540737 + 10/05 16:30:00,13.291891891891894,13.291891891891894,17.270722395140415 + 10/05 16:40:00,13.363363363363364,13.363363363363364,17.299533104030837 + 10/05 16:50:00,13.434834834834835,13.434834834834835,17.326580193926625 + 10/05 17:00:00,13.506306306306307,13.506306306306307,17.352235893259186 + 10/05 17:10:00,13.573573573573574,13.573573573573574,17.38910929933831 + 10/05 17:20:00,13.640840840840842,13.640840840840842,17.418282490972325 + 10/05 17:30:00,13.708108108108109,13.708108108108109,17.44054871764464 + 10/05 17:40:00,13.775375375375376,13.775375375375376,17.461715844250774 + 10/05 17:50:00,13.842642642642645,13.842642642642645,17.481788534181495 + 10/05 18:00:00,13.90990990990991,13.90990990990991,17.500833916428655 + 10/05 18:10:00,13.981381381381383,13.981381381381383,17.520061771324856 + 10/05 18:20:00,14.052852852852853,14.052852852852853,17.538092670731304 + 10/05 18:30:00,14.124324324324326,14.124324324324326,17.555282717125217 + 10/05 18:40:00,14.195795795795796,14.195795795795796,17.571375035310149 + 10/05 18:50:00,14.267267267267269,14.267267267267269,17.586355605466005 + 10/05 19:00:00,14.338738738738739,14.338738738738739,17.600315211992297 + 10/05 19:10:00,14.41021021021021,14.41021021021021,17.6257092506951 + 10/05 19:20:00,14.481681681681682,14.481681681681682,17.638233415097635 + 10/05 19:30:00,14.553153153153153,14.553153153153153,17.64976190431501 + 10/05 19:40:00,14.624624624624625,14.624624624624625,17.66079219496415 + 10/05 19:50:00,14.696096096096096,14.696096096096096,17.67136084242792 + 10/05 20:00:00,14.767567567567568,14.767567567567568,17.68149301925993 + 10/05 20:10:00,14.788588588588589,14.788588588588589,17.669011611071505 + 10/05 20:20:00,14.809609609609609,14.809609609609609,17.682616653349439 + 10/05 20:30:00,14.83063063063063,14.83063063063063,17.691159875233365 + 10/05 20:40:00,14.85165165165165,14.85165165165165,17.698959267648509 + 10/05 20:50:00,14.872672672672673,14.872672672672673,17.706252059266686 + 10/05 21:00:00,14.893693693693694,14.893693693693694,17.713077828831197 + 10/05 21:10:00,14.91891891891892,14.91891891891892,17.719911147934046 + 10/05 21:20:00,14.944144144144144,14.944144144144144,17.726593345076375 + 10/05 21:30:00,14.96936936936937,14.96936936936937,17.73332087282769 + 10/05 21:40:00,14.994594594594595,14.994594594594595,17.74013780630975 + 10/05 21:50:00,15.01981981981982,15.01981981981982,17.74698296674763 + 10/05 22:00:00,15.045045045045045,15.045045045045045,17.753841179836649 + 10/05 22:10:00,15.091291291291292,15.091291291291292,19.125108037268704 + 10/05 22:20:00,15.137537537537538,15.137537537537538,19.269626524592235 + 10/05 22:30:00,15.183783783783785,15.183783783783785,19.33416414835212 + 10/05 22:40:00,15.23003003003003,15.23003003003003,19.38534452017196 + 10/05 22:50:00,15.276276276276276,15.276276276276276,19.426968363764574 + 10/05 23:00:00,15.322522522522523,15.322522522522523,19.46221577542249 + 10/05 23:10:00,15.343543543543543,15.343543543543543,19.493582647016259 + 10/05 23:20:00,15.364564564564564,15.364564564564564,19.521440617154789 + 10/05 23:30:00,15.385585585585586,15.385585585585586,19.546402198861786 + 10/05 23:40:00,15.406606606606607,15.406606606606607,19.568997880145028 + 10/05 23:50:00,15.427627627627628,15.427627627627628,19.58962270327781 + 10/05 24:00:00,15.448648648648648,15.448648648648648,19.60850282350387 + 10/06 00:10:00,15.473873873873874,15.473873873873874,19.625156645357966 + 10/06 00:20:00,15.499099099099098,15.499099099099098,19.640695831170289 + 10/06 00:30:00,15.524324324324324,15.524324324324324,19.655338301297737 + 10/06 00:40:00,15.54954954954955,15.54954954954955,19.66920782967294 + 10/06 00:50:00,15.574774774774774,15.574774774774774,19.68232143093482 + 10/06 01:00:00,15.6,15.6,19.69490861085307 + 10/06 01:10:00,15.6,15.6,19.709001791294186 + 10/06 01:20:00,15.6,15.6,19.722705156337378 + 10/06 01:30:00,15.6,15.6,19.735904446507317 + 10/06 01:40:00,15.6,15.6,19.74861992639203 + 10/06 01:50:00,15.6,15.6,19.760932696545717 + 10/06 02:00:00,15.6,15.6,19.77289863641511 + 10/06 02:10:00,15.6,15.6,19.78363472973467 + 10/06 02:20:00,15.6,15.6,19.793814980550736 + 10/06 02:30:00,15.6,15.6,19.803754614900539 + 10/06 02:40:00,15.6,15.6,19.813386967566939 + 10/06 02:50:00,15.6,15.6,19.82290847022818 + 10/06 03:00:00,15.6,15.6,19.83226365675463 + 10/06 03:10:00,15.6,15.6,19.841161007842744 + 10/06 03:20:00,15.6,15.6,19.84991481505324 + 10/06 03:30:00,15.6,15.6,19.858289605632068 + 10/06 03:40:00,15.6,15.6,19.866503787094446 + 10/06 03:50:00,15.6,15.6,19.874439129434994 + 10/06 04:00:00,15.6,15.6,19.882109849164629 + 10/06 04:10:00,15.6,15.6,19.88891415411653 + 10/06 04:20:00,15.6,15.6,19.895389899503237 + 10/06 04:30:00,15.6,15.6,19.90184637668596 + 10/06 04:40:00,15.6,15.6,19.90819546848076 + 10/06 04:50:00,15.6,15.6,19.91445953936962 + 10/06 05:00:00,15.6,15.6,19.920642428587649 + 10/06 05:10:00,15.6,15.6,19.92849374798593 + 10/06 05:20:00,15.6,15.6,19.93624345152152 + 10/06 05:30:00,15.6,15.6,19.943765915247064 + 10/06 05:40:00,15.6,15.6,19.95105313531295 + 10/06 05:50:00,15.6,15.6,19.958095539873548 + 10/06 06:00:00,15.6,15.6,19.964864880609423 + 10/06 06:10:00,15.6,15.6,17.9629895045126 + 10/06 06:20:00,15.6,15.6,17.731644256706525 + 10/06 06:30:00,15.6,15.6,17.64733165347004 + 10/06 06:40:00,15.6,15.6,17.582184629549216 + 10/06 06:50:00,15.6,15.6,17.53103248819483 + 10/06 07:00:00,15.6,15.6,17.488321957459239 + 10/06 07:10:00,15.6,15.6,16.006139754951574 + 10/06 07:20:00,15.6,15.6,15.789605515403397 + 10/06 07:30:00,15.6,15.6,15.68830498512765 + 10/06 07:40:00,15.6,15.6,15.604592634419117 + 10/06 07:50:00,15.6,15.6,15.533877953824764 + 10/06 08:00:00,15.6,15.6,15.471723196078124 + 10/06 08:10:00,15.46126126126126,15.46126126126126,15.3907185369434 + 10/06 08:20:00,15.322522522522523,15.322522522522523,15.329760954419586 + 10/06 08:30:00,15.183783783783783,15.183783783783783,15.279330239712982 + 10/06 08:40:00,15.045045045045045,15.045045045045045,15.231022649942581 + 10/06 08:50:00,14.906306306306306,14.906306306306306,15.185041642740324 + 10/06 09:00:00,14.767567567567568,14.767567567567568,15.141151887157236 + 10/06 09:10:00,14.721321321321322,14.721321321321322,15.099730110378817 + 10/06 09:20:00,14.675075075075075,14.675075075075075,15.05092144581371 + 10/06 09:30:00,14.628828828828829,14.628828828828829,15.014706082441812 + 10/06 09:40:00,14.582582582582582,14.582582582582582,14.980627977927814 + 10/06 09:50:00,14.536336336336337,14.536336336336337,14.948321560984465 + 10/06 10:00:00,14.49009009009009,14.49009009009009,14.91773523222306 + 10/06 10:10:00,14.418618618618618,14.418618618618618,14.886243982882 + 10/06 10:20:00,14.347147147147148,14.347147147147148,14.85317245066369 + 10/06 10:30:00,14.275675675675675,14.275675675675675,14.824522090866378 + 10/06 10:40:00,14.204204204204205,14.204204204204205,14.796792830620774 + 10/06 10:50:00,14.132732732732734,14.132732732732734,14.769767183623447 + 10/06 11:00:00,14.061261261261262,14.061261261261262,14.743445013993578 + 10/06 11:10:00,13.989789789789791,13.989789789789791,14.719352084218333 + 10/06 11:20:00,13.918318318318317,13.918318318318317,14.704823937236846 + 10/06 11:30:00,13.846846846846847,13.846846846846847,14.681593075122539 + 10/06 11:40:00,13.775375375375376,13.775375375375376,14.659142552751984 + 10/06 11:50:00,13.703903903903905,13.703903903903905,14.637823713173212 + 10/06 12:00:00,13.632432432432433,13.632432432432433,14.617503113533632 + 10/06 12:10:00,13.611411411411412,13.611411411411412,14.597719324915735 + 10/06 12:20:00,13.590390390390392,13.590390390390392,14.570423062971603 + 10/06 12:30:00,13.56936936936937,13.56936936936937,14.553623873683519 + 10/06 12:40:00,13.548348348348349,13.548348348348349,14.537781660672561 + 10/06 12:50:00,13.527327327327328,13.527327327327328,14.52262452379525 + 10/06 13:00:00,13.506306306306307,13.506306306306307,14.508218924808056 + 10/06 13:10:00,13.46006006006006,13.46006006006006,14.494707313673107 + 10/06 13:20:00,13.413813813813814,13.413813813813814,14.486888981969031 + 10/06 13:30:00,13.367567567567568,13.367567567567568,14.476639110209469 + 10/06 13:40:00,13.321321321321323,13.321321321321323,14.468008382113295 + 10/06 13:50:00,13.275075075075077,13.275075075075077,14.460020340600487 + 10/06 14:00:00,13.22882882882883,13.22882882882883,14.450066508310217 + 10/06 14:10:00,13.203603603603604,13.203603603603604,14.442195836809355 + 10/06 14:20:00,13.17837837837838,13.17837837837838,14.439752601475539 + 10/06 14:30:00,13.153153153153154,13.153153153153154,14.433819716385117 + 10/06 14:40:00,13.12792792792793,13.12792792792793,14.426310114778078 + 10/06 14:50:00,13.102702702702704,13.102702702702704,14.422068557141799 + 10/06 15:00:00,13.077477477477478,13.077477477477478,14.418698460372865 + 10/06 15:05:00,13.052252252252253,13.052252252252253,16.57010620008044 + 10/06 15:10:00,13.052252252252253,13.052252252252253,16.5700859538742 + 10/06 15:20:00,13.027027027027028,13.027027027027028,16.816198525837906 + 10/06 15:30:00,13.001801801801803,13.001801801801803,16.911429769771126 + 10/06 15:40:00,12.976576576576577,12.976576576576577,16.984253006214144 + 10/06 15:50:00,12.951351351351353,12.951351351351353,17.041164593730259 + 10/06 16:00:00,12.926126126126127,12.926126126126127,17.08808303441638 + 10/06 16:10:00,12.951351351351353,12.951351351351353,17.152456510935815 + 10/06 16:20:00,12.976576576576577,12.976576576576577,17.208688265732396 + 10/06 16:30:00,13.001801801801803,13.001801801801803,17.241800351575564 + 10/06 16:40:00,13.027027027027028,13.027027027027028,17.272274196784268 + 10/06 16:50:00,13.052252252252253,13.052252252252253,17.300518093593725 + 10/06 17:00:00,13.077477477477478,13.077477477477478,17.326996460483615 + 10/06 17:10:00,13.148948948948949,13.148948948948949,17.365180252101458 + 10/06 17:20:00,13.220420420420421,13.220420420420421,17.393859433132794 + 10/06 17:30:00,13.291891891891894,13.291891891891894,17.416005315497544 + 10/06 17:40:00,13.363363363363364,13.363363363363364,17.43705449211504 + 10/06 17:50:00,13.434834834834835,13.434834834834835,17.45731611782502 + 10/06 18:00:00,13.506306306306307,13.506306306306307,17.476795623830307 + 10/06 18:10:00,13.573573573573574,13.573573573573574,17.495386863867457 + 10/06 18:20:00,13.640840840840842,13.640840840840842,17.514032388920226 + 10/06 18:30:00,13.708108108108109,13.708108108108109,17.531298648650748 + 10/06 18:40:00,13.775375375375376,13.775375375375376,17.54744042168878 + 10/06 18:50:00,13.842642642642645,13.842642642642645,17.562244039072824 + 10/06 19:00:00,13.90990990990991,13.90990990990991,17.575938268065238 + 10/06 19:10:00,13.981381381381383,13.981381381381383,17.60163727231944 + 10/06 19:20:00,14.052852852852853,14.052852852852853,17.61616149467882 + 10/06 19:30:00,14.124324324324326,14.124324324324326,17.62939362862862 + 10/06 19:40:00,14.195795795795796,14.195795795795796,17.642162489732585 + 10/06 19:50:00,14.267267267267269,14.267267267267269,17.65415902704495 + 10/06 20:00:00,14.338738738738739,14.338738738738739,17.665611234645156 + 10/06 20:10:00,14.41021021021021,14.41021021021021,17.65465478977344 + 10/06 20:20:00,14.481681681681682,14.481681681681682,17.67072611494617 + 10/06 20:30:00,14.553153153153153,14.553153153153153,17.681929897295818 + 10/06 20:40:00,14.624624624624625,14.624624624624625,17.692826781100217 + 10/06 20:50:00,14.696096096096096,14.696096096096096,17.703343591696485 + 10/06 21:00:00,14.767567567567568,14.767567567567568,17.713447679419177 + 10/06 21:10:00,14.813813813813815,14.813813813813815,17.723252084103373 + 10/06 21:20:00,14.860060060060059,14.860060060060059,17.732073576047747 + 10/06 21:30:00,14.906306306306306,14.906306306306306,17.740574055339818 + 10/06 21:40:00,14.952552552552552,14.952552552552552,17.748567748168847 + 10/06 21:50:00,14.998798798798799,14.998798798798799,17.75629358686311 + 10/06 22:00:00,15.045045045045045,15.045045045045045,17.763932116700297 + 10/06 22:10:00,15.066066066066066,15.066066066066066,19.135971260425909 + 10/06 22:20:00,15.087087087087087,15.087087087087087,19.280895001716723 + 10/06 22:30:00,15.108108108108109,15.108108108108109,19.34559402149743 + 10/06 22:40:00,15.12912912912913,15.12912912912913,19.396864094366387 + 10/06 22:50:00,15.15015015015015,15.15015015015015,19.4385601773333 + 10/06 23:00:00,15.17117117117117,15.17117117117117,19.47377355824569 + 10/06 23:10:00,15.17117117117117,15.17117117117117,19.5028298371152 + 10/06 23:20:00,15.17117117117117,15.17117117117117,19.52828969070554 + 10/06 23:30:00,15.17117117117117,15.17117117117117,19.551004298895589 + 10/06 23:40:00,15.17117117117117,15.17117117117117,19.57160977487187 + 10/06 23:50:00,15.17117117117117,15.17117117117117,19.59051054092173 + 10/06 24:00:00,15.17117117117117,15.17117117117117,19.60798683915003 + 10/07 00:10:00,15.17117117117117,15.17117117117117,19.624597155636587 + 10/07 00:20:00,15.17117117117117,15.17117117117117,19.640276002429766 + 10/07 00:30:00,15.17117117117117,15.17117117117117,19.655101247398315 + 10/07 00:40:00,15.17117117117117,15.17117117117117,19.669272882724714 + 10/07 00:50:00,15.17117117117117,15.17117117117117,19.682820376512639 + 10/07 01:00:00,15.17117117117117,15.17117117117117,19.69592674561784 + 10/07 01:10:00,15.196396396396397,15.196396396396397,19.70948876421851 + 10/07 01:20:00,15.22162162162162,15.22162162162162,19.722562425750874 + 10/07 01:30:00,15.246846846846847,15.246846846846847,19.73519346045688 + 10/07 01:40:00,15.272072072072073,15.272072072072073,19.747298842851746 + 10/07 01:50:00,15.297297297297297,15.297297297297297,19.758897930945179 + 10/07 02:00:00,15.322522522522523,15.322522522522523,19.77001311205314 + 10/07 02:10:00,15.343543543543543,15.343543543543543,19.780605263754788 + 10/07 02:20:00,15.364564564564564,15.364564564564564,19.79077870122715 + 10/07 02:30:00,15.385585585585586,15.385585585585586,19.800561954188447 + 10/07 02:40:00,15.406606606606607,15.406606606606607,19.80995741138636 + 10/07 02:50:00,15.427627627627628,15.427627627627628,19.81902090804318 + 10/07 03:00:00,15.448648648648648,15.448648648648648,19.827692039629019 + 10/07 03:10:00,15.52012012012012,15.52012012012012,19.836187360016596 + 10/07 03:20:00,15.591591591591591,15.591591591591591,19.84466528693064 + 10/07 03:30:00,15.6,15.6,19.853025447083373 + 10/07 03:40:00,15.6,15.6,19.86131941247029 + 10/07 03:50:00,15.6,15.6,19.869444908143899 + 10/07 04:00:00,15.6,15.6,19.877491032211858 + 10/07 04:10:00,15.6,15.6,19.8867549126233 + 10/07 04:20:00,15.6,15.6,19.895575305192439 + 10/07 04:30:00,15.6,15.6,19.90397386763125 + 10/07 04:40:00,15.6,15.6,19.912028225104508 + 10/07 04:50:00,15.6,15.6,19.91984181218646 + 10/07 05:00:00,15.6,15.6,19.92756046493057 + 10/07 05:10:00,15.6,15.6,19.933463713973777 + 10/07 05:20:00,15.6,15.6,19.93923239060434 + 10/07 05:30:00,15.6,15.6,19.9448523632625 + 10/07 05:40:00,15.6,15.6,19.950281246426387 + 10/07 05:50:00,15.6,15.6,19.955677627543606 + 10/07 06:00:00,15.6,15.6,19.960960659940207 + 10/07 06:10:00,15.6,15.6,19.30400835919032 + 10/07 06:20:00,15.6,15.6,19.23899811565376 + 10/07 06:30:00,15.6,15.6,19.214629487672818 + 10/07 06:40:00,15.6,15.6,19.196421437923939 + 10/07 06:50:00,15.6,15.6,19.18216828755679 + 10/07 07:00:00,15.6,15.6,19.16981572158541 + 10/07 07:10:00,15.6,15.6,18.08140230496593 + 10/07 07:20:00,15.6,15.6,17.933445523510366 + 10/07 07:30:00,15.6,15.6,17.869140456682144 + 10/07 07:40:00,15.6,15.6,17.815610639603915 + 10/07 07:50:00,15.461261261261262,15.461261261261262,17.769782825573726 + 10/07 08:00:00,15.322522522522523,15.322522522522523,17.72866579087494 + 10/07 08:10:00,15.204804804804806,15.204804804804806,17.693116274748033 + 10/07 08:20:00,15.087087087087087,15.087087087087087,17.65093068854014 + 10/07 08:30:00,14.96936936936937,14.96936936936937,17.618691648156778 + 10/07 08:40:00,14.851651651651653,14.851651651651653,17.587838536496464 + 10/07 08:50:00,14.733933933933934,14.733933933933934,17.558309051423785 + 10/07 09:00:00,14.616216216216217,14.616216216216217,17.53012130126008 + 10/07 09:10:00,14.544744744744746,14.544744744744746,17.503138165334087 + 10/07 09:20:00,14.473273273273274,14.473273273273274,17.46856239413794 + 10/07 09:30:00,14.401801801801803,14.401801801801803,17.444045084210129 + 10/07 09:40:00,14.33033033033033,14.33033033033033,17.420727687846587 + 10/07 09:50:00,14.25885885885886,14.25885885885886,17.398485012291933 + 10/07 10:00:00,14.187387387387388,14.187387387387388,17.377257569124067 + 10/07 10:10:00,14.027627627627627,14.027627627627627,17.35526224934935 + 10/07 10:20:00,13.867867867867869,13.867867867867869,17.33254323187282 + 10/07 10:30:00,13.708108108108109,13.708108108108109,17.310075814712758 + 10/07 10:40:00,13.548348348348349,13.548348348348349,17.287569442755719 + 10/07 10:50:00,13.38858858858859,13.38858858858859,17.265383302139648 + 10/07 11:00:00,13.22882882882883,13.22882882882883,17.243489894019356 + 10/07 11:10:00,13.17837837837838,13.17837837837838,17.22300146278659 + 10/07 11:20:00,13.127927927927928,13.127927927927928,17.207128044635739 + 10/07 11:30:00,13.077477477477478,13.077477477477478,17.192128237695774 + 10/07 11:40:00,13.027027027027028,13.027027027027028,17.17868833993777 + 10/07 11:50:00,12.976576576576579,12.976576576576579,17.16595009068694 + 10/07 12:00:00,12.926126126126127,12.926126126126127,17.153928409871019 + 10/07 12:10:00,12.87987987987988,12.87987987987988,17.142373718632557 + 10/07 12:20:00,12.833633633633636,12.833633633633636,17.130978582288458 + 10/07 12:30:00,12.8,12.8,17.1200980724059 + 10/07 12:40:00,12.8,12.8,17.10968439432767 + 10/07 12:50:00,12.8,12.8,17.099905975106628 + 10/07 13:00:00,12.8,12.8,17.090793628216614 + 10/07 13:10:00,12.8,12.8,17.082147869816635 + 10/07 13:20:00,12.8,12.8,17.07223003913743 + 10/07 13:30:00,12.8,12.8,17.062891900331928 + 10/07 13:40:00,12.8,12.8,17.053793537332678 + 10/07 13:50:00,12.8,12.8,17.045326160136626 + 10/07 14:00:00,12.8,12.8,17.037408304127994 + 10/07 14:10:00,12.8,12.8,17.030104686802227 + 10/07 14:20:00,12.8,12.8,17.024419678690387 + 10/07 14:30:00,12.8,12.8,17.01919578122936 + 10/07 14:40:00,12.8,12.8,17.014691565583435 + 10/07 14:50:00,12.8,12.8,17.010745261459939 + 10/07 15:00:00,12.8,12.8,17.007385517652819 + 10/07 15:10:00,12.8,12.8,17.00456519417419 + 10/07 15:20:00,12.8,12.8,17.002663650121318 + 10/07 15:30:00,12.8,12.8,17.001194650488388 + 10/07 15:40:00,12.8,12.8,17.0002496799 + 10/07 15:50:00,12.8,12.8,16.999817937716949 + 10/07 16:00:00,12.8,12.8,16.999897784508378 + 10/07 16:10:00,12.8,12.8,17.013988549299947 + 10/07 16:20:00,12.8,12.8,17.027173143496687 + 10/07 16:30:00,12.8,12.8,17.02963077811888 + 10/07 16:40:00,12.8,12.8,17.034033195517137 + 10/07 16:50:00,12.8,12.8,17.03870984174037 + 10/07 17:00:00,12.8,12.8,17.044287174941809 + 10/07 17:10:00,12.8,12.8,18.823725300327245 + 10/07 17:20:00,12.8,12.8,19.042351069368587 + 10/07 17:30:00,12.8,12.8,19.131770584324209 + 10/07 17:40:00,12.8,12.8,19.202988166902377 + 10/07 17:50:00,12.8,12.8,19.260868192188594 + 10/07 18:00:00,12.8,12.8,19.309954730434673 + 10/07 18:10:00,12.892492492492494,12.892492492492494,19.365763819734246 + 10/07 18:20:00,12.984984984984987,12.984984984984987,19.403830943550369 + 10/07 18:30:00,13.077477477477478,13.077477477477478,19.437591167906576 + 10/07 18:40:00,13.169969969969971,13.169969969969971,19.4677726910696 + 10/07 18:50:00,13.262462462462464,13.262462462462464,19.494971926486586 + 10/07 19:00:00,13.354954954954956,13.354954954954956,19.519581810185004 + 10/07 19:10:00,13.401201201201202,13.401201201201202,19.54202477601261 + 10/07 19:20:00,13.447447447447449,13.447447447447449,19.561582373374415 + 10/07 19:30:00,13.493693693693695,13.493693693693695,19.57970105873014 + 10/07 19:40:00,13.539939939939942,13.539939939939942,19.59628662126624 + 10/07 19:50:00,13.586186186186187,13.586186186186187,19.611776785643455 + 10/07 20:00:00,13.632432432432433,13.632432432432433,19.626403315778764 + 10/07 20:10:00,13.657657657657659,13.657657657657659,19.617115411026214 + 10/07 20:20:00,13.682882882882883,13.682882882882883,19.630288050649328 + 10/07 20:30:00,13.708108108108109,13.708108108108109,19.64279612037376 + 10/07 20:40:00,13.733333333333335,13.733333333333335,19.654841310712805 + 10/07 20:50:00,13.758558558558559,13.758558558558559,19.66640074328381 + 10/07 21:00:00,13.783783783783785,13.783783783783785,19.67775347096262 + 10/07 21:10:00,13.83003003003003,13.83003003003003,19.689579002682085 + 10/07 21:20:00,13.876276276276276,13.876276276276276,19.70127939907701 + 10/07 21:30:00,13.922522522522524,13.922522522522524,19.71253394441747 + 10/07 21:40:00,13.968768768768769,13.968768768768769,19.72333830430049 + 10/07 21:50:00,14.015015015015015,14.015015015015015,19.733804504597264 + 10/07 22:00:00,14.061261261261262,14.061261261261262,19.743874232372656 + 10/07 22:10:00,14.107507507507508,14.107507507507508,19.75397255318611 + 10/07 22:20:00,14.153753753753755,14.153753753753755,19.763124240292759 + 10/07 22:30:00,14.2,14.2,19.77164051113863 + 10/07 22:40:00,14.246246246246246,14.246246246246246,19.779742649329479 + 10/07 22:50:00,14.292492492492493,14.292492492492493,19.787532006473 + 10/07 23:00:00,14.338738738738739,14.338738738738739,19.795075287382468 + 10/07 23:10:00,14.363963963963965,14.363963963963965,19.80260282696688 + 10/07 23:20:00,14.389189189189189,14.389189189189189,19.80966312601017 + 10/07 23:30:00,14.414414414414415,14.414414414414415,19.81654232470425 + 10/07 23:40:00,14.439639639639639,14.439639639639639,19.823207042069485 + 10/07 23:50:00,14.464864864864865,14.464864864864865,19.82970117416471 + 10/07 24:00:00,14.49009009009009,14.49009009009009,19.836052874259303 + 10/08 00:10:00,14.536336336336337,14.536336336336337,19.841035834659903 + 10/08 00:20:00,14.582582582582582,14.582582582582582,19.84623760561357 + 10/08 00:30:00,14.628828828828829,14.628828828828829,19.85158953150284 + 10/08 00:40:00,14.675075075075075,14.675075075075075,19.857038656562748 + 10/08 00:50:00,14.721321321321322,14.721321321321322,19.862528102607866 + 10/08 01:00:00,14.767567567567568,14.767567567567568,19.868001151302125 + 10/08 01:10:00,14.767567567567568,14.767567567567568,19.87372172034666 + 10/08 01:20:00,14.767567567567568,14.767567567567568,19.879378245490537 + 10/08 01:30:00,14.767567567567568,14.767567567567568,19.884843587147349 + 10/08 01:40:00,14.767567567567568,14.767567567567568,19.890115153799245 + 10/08 01:50:00,14.767567567567568,14.767567567567568,19.89519551564526 + 10/08 02:00:00,14.767567567567568,14.767567567567568,19.900010708975875 + 10/08 02:10:00,14.788588588588589,14.788588588588589,19.90507985949121 + 10/08 02:20:00,14.809609609609609,14.809609609609609,19.910073733400144 + 10/08 02:30:00,14.83063063063063,14.83063063063063,19.91497703260771 + 10/08 02:40:00,14.85165165165165,14.85165165165165,19.919808706235349 + 10/08 02:50:00,14.872672672672673,14.872672672672673,19.924478842890794 + 10/08 03:00:00,14.893693693693694,14.893693693693694,19.929141809246297 + 10/08 03:10:00,14.93993993993994,14.93993993993994,19.93361021091382 + 10/08 03:20:00,14.986186186186187,14.986186186186187,19.93802516059623 + 10/08 03:30:00,15.032432432432433,15.032432432432433,19.94245084892871 + 10/08 03:40:00,15.078678678678678,15.078678678678678,19.946813926655506 + 10/08 03:50:00,15.124924924924925,15.124924924924925,19.951202499620555 + 10/08 04:00:00,15.17117117117117,15.17117117117117,19.955633934191185 + 10/08 04:10:00,15.17117117117117,15.17117117117117,19.958988078412685 + 10/08 04:20:00,15.17117117117117,15.17117117117117,19.962303607689394 + 10/08 04:30:00,15.17117117117117,15.17117117117117,19.965501221108548 + 10/08 04:40:00,15.17117117117117,15.17117117117117,19.96860234252128 + 10/08 04:50:00,15.17117117117117,15.17117117117117,19.971703544139733 + 10/08 05:00:00,15.17117117117117,15.17117117117117,19.974749073615443 + 10/08 05:10:00,15.196396396396397,15.196396396396397,19.978671094691597 + 10/08 05:20:00,15.22162162162162,15.22162162162162,19.982512973700076 + 10/08 05:30:00,15.246846846846847,15.246846846846847,19.986211872991438 + 10/08 05:40:00,15.272072072072073,15.272072072072073,19.98993184883315 + 10/08 05:50:00,15.297297297297297,15.297297297297297,19.993584860929567 + 10/08 06:00:00,15.322522522522523,15.322522522522523,19.99717276541463 + 10/08 06:10:00,15.322522522522523,15.322522522522523,20.022263708712314 + 10/08 06:20:00,15.322522522522523,15.322522522522523,20.024764658865114 + 10/08 06:30:00,15.322522522522523,15.322522522522523,20.027335074708974 + 10/08 06:40:00,15.322522522522523,15.322522522522523,20.029929961502135 + 10/08 06:50:00,15.322522522522523,15.322522522522523,20.03218818511237 + 10/08 07:00:00,15.322522522522523,15.322522522522523,20.033540717699766 + 10/08 07:10:00,15.23003003003003,15.23003003003003,18.63528550672873 + 10/08 07:20:00,15.137537537537538,15.137537537537538,18.472042369492266 + 10/08 07:30:00,15.045045045045045,15.045045045045045,18.408043106144598 + 10/08 07:40:00,14.952552552552552,14.952552552552552,18.356630132009167 + 10/08 07:50:00,14.86006006006006,14.86006006006006,18.31377353071676 + 10/08 08:00:00,14.767567567567568,14.767567567567568,18.276479611380578 + 10/08 08:10:00,14.578378378378379,14.578378378378379,18.241773672376064 + 10/08 08:20:00,14.389189189189189,14.389189189189189,18.19982922216576 + 10/08 08:30:00,14.2,14.2,18.16753525974733 + 10/08 08:40:00,14.010810810810812,14.010810810810812,18.135793571103606 + 10/08 08:50:00,13.821621621621622,13.821621621621622,18.104643577763789 + 10/08 09:00:00,13.632432432432433,13.632432432432433,18.074145270266585 + 10/08 09:10:00,13.539939939939942,13.539939939939942,18.045494446100667 + 10/08 09:20:00,13.447447447447449,13.447447447447449,18.012270268286703 + 10/08 09:30:00,13.354954954954956,13.354954954954956,17.988935125855634 + 10/08 09:40:00,13.262462462462464,13.262462462462464,17.967453458923936 + 10/08 09:50:00,13.169969969969971,13.169969969969971,17.947176888772288 + 10/08 10:00:00,13.077477477477478,13.077477477477478,17.92809426156129 + 10/08 10:10:00,12.938738738738739,12.938738738738739,17.909459225070319 + 10/08 10:20:00,12.8,12.8,17.890512584777406 + 10/08 10:30:00,12.8,12.8,17.872149389915543 + 10/08 10:40:00,12.8,12.8,17.85401300965144 + 10/08 10:50:00,12.8,12.8,17.836542117928553 + 10/08 11:00:00,12.8,12.8,17.819636365895997 + 10/08 11:10:00,12.8,12.8,17.803765844100089 + 10/08 11:20:00,12.8,12.8,17.788154926493968 + 10/08 11:30:00,12.8,12.8,17.773457333834807 + 10/08 11:40:00,12.8,12.8,17.759452527984519 + 10/08 11:50:00,12.8,12.8,17.74607103080138 + 10/08 12:00:00,12.8,12.8,17.73341915210362 + 10/08 12:10:00,12.8,12.8,17.721398711061306 + 10/08 12:20:00,12.8,12.8,17.709818241749859 + 10/08 12:30:00,12.8,12.8,17.698894028053237 + 10/08 12:40:00,12.8,12.8,17.68900112311698 + 10/08 12:50:00,12.8,12.8,17.67962629536099 + 10/08 13:00:00,12.8,12.8,17.670990204694186 + 10/08 13:10:00,12.8,12.8,17.66271322177846 + 10/08 13:20:00,12.8,12.8,17.654910060239904 + 10/08 13:30:00,12.8,12.8,17.647410247396043 + 10/08 13:40:00,12.8,12.8,17.640335880459874 + 10/08 13:50:00,12.8,12.8,17.633729184419818 + 10/08 14:00:00,12.8,12.8,17.627486619409525 + 10/08 14:10:00,12.8,12.8,17.622554834986599 + 10/08 14:20:00,12.8,12.8,17.61810953399833 + 10/08 14:30:00,12.8,12.8,17.614080953077495 + 10/08 14:40:00,12.8,12.8,17.610395022226859 + 10/08 14:50:00,12.8,12.8,17.607269281537055 + 10/08 15:00:00,12.8,12.8,17.604650289740108 + 10/08 15:10:00,12.8,12.8,19.021045310340058 + 10/08 15:20:00,12.8,12.8,19.170891454559404 + 10/08 15:30:00,12.8,12.8,19.233434888949036 + 10/08 15:40:00,12.8,12.8,19.28225160535043 + 10/08 15:50:00,12.8,12.8,19.32151356177269 + 10/08 16:00:00,12.8,12.8,19.354605705981766 + 10/08 16:10:00,12.8,12.8,19.383482774623326 + 10/08 16:20:00,12.8,12.8,19.418045821421786 + 10/08 16:30:00,12.8,12.8,19.44149975895841 + 10/08 16:40:00,12.8,12.8,19.463127930421459 + 10/08 16:50:00,12.8,12.8,19.48352362818081 + 10/08 17:00:00,12.8,12.8,19.502883344947578 + 10/08 17:10:00,12.8,12.8,19.521821538522589 + 10/08 17:20:00,12.8,12.8,19.557851620997725 + 10/08 17:30:00,12.8,12.8,19.576001215903636 + 10/08 17:40:00,12.8,12.8,19.589276452393528 + 10/08 17:50:00,12.8,12.8,19.60882749872971 + 10/08 18:00:00,12.8,12.8,19.622969057977828 + 10/08 18:10:00,12.8,12.8,19.63980243056243 + 10/08 18:20:00,12.8,12.8,19.6554649661718 + 10/08 18:30:00,12.8,12.8,19.67039887700637 + 10/08 18:40:00,12.8,12.8,19.684236611331529 + 10/08 18:50:00,12.8,12.8,19.696987327980705 + 10/08 19:00:00,12.8,12.8,19.708819508721655 + 10/08 19:10:00,12.8,12.8,19.719788665072906 + 10/08 19:20:00,12.8,12.8,19.72996253499749 + 10/08 19:30:00,12.8,12.8,19.73951446135605 + 10/08 19:40:00,12.8,12.8,19.748574108142415 + 10/08 19:50:00,12.85885885885886,12.85885885885886,19.757305565454847 + 10/08 20:00:00,12.926126126126127,12.926126126126127,19.76569497661993 + 10/08 20:10:00,12.997597597597599,12.997597597597599,19.751407823138999 + 10/08 20:20:00,13.06906906906907,13.06906906906907,19.7596600971372 + 10/08 20:30:00,13.140540540540542,13.140540540540542,19.76754312941003 + 10/08 20:40:00,13.212012012012015,13.212012012012015,19.775352702649369 + 10/08 20:50:00,13.283483483483485,13.283483483483485,19.782913219645726 + 10/08 21:00:00,13.354954954954956,13.354954954954956,19.790264423435688 + 10/08 21:10:00,13.380180180180182,13.380180180180182,19.797606296398184 + 10/08 21:20:00,13.405405405405407,13.405405405405407,19.803755084208903 + 10/08 21:30:00,13.430630630630632,13.430630630630632,19.80981616666896 + 10/08 21:40:00,13.455855855855857,13.455855855855857,19.815492601576094 + 10/08 21:50:00,13.481081081081081,13.481081081081081,19.820990528156185 + 10/08 22:00:00,13.506306306306307,13.506306306306307,19.8263075799495 + 10/08 22:10:00,13.527327327327328,13.527327327327328,19.831110814606043 + 10/08 22:20:00,13.548348348348349,13.548348348348349,19.83591300407172 + 10/08 22:30:00,13.56936936936937,13.56936936936937,19.840605716580684 + 10/08 22:40:00,13.590390390390392,13.590390390390392,19.845183452778206 + 10/08 22:50:00,13.611411411411412,13.611411411411412,19.849662404854486 + 10/08 23:00:00,13.632432432432433,13.632432432432433,19.853990288905036 + 10/08 23:10:00,13.657657657657659,13.657657657657659,19.85824388942304 + 10/08 23:20:00,13.682882882882883,13.682882882882883,19.862409284419447 + 10/08 23:30:00,13.708108108108109,13.708108108108109,19.866518070616146 + 10/08 23:40:00,13.733333333333335,13.733333333333335,19.870555011894873 + 10/08 23:50:00,13.758558558558559,13.758558558558559,19.874508175897849 + 10/08 24:00:00,13.783783783783785,13.783783783783785,19.878365911311695 + 10/09 00:10:00,13.804804804804805,13.804804804804805,19.88236845002775 + 10/09 00:20:00,13.825825825825828,13.825825825825828,19.88636941358125 + 10/09 00:30:00,13.846846846846848,13.846846846846848,19.890288001716077 + 10/09 00:40:00,13.867867867867869,13.867867867867869,19.894137702632663 + 10/09 00:50:00,13.88888888888889,13.88888888888889,19.897820856311374 + 10/09 01:00:00,13.90990990990991,13.90990990990991,19.901528452025337 + 10/09 01:10:00,13.90990990990991,13.90990990990991,19.904897885890084 + 10/09 01:20:00,13.90990990990991,13.90990990990991,19.908438757899679 + 10/09 01:30:00,13.90990990990991,13.90990990990991,19.911873567390495 + 10/09 01:40:00,13.90990990990991,13.90990990990991,19.91518260406098 + 10/09 01:50:00,13.90990990990991,13.90990990990991,19.91845403905198 + 10/09 02:00:00,13.90990990990991,13.90990990990991,19.92164204581512 + 10/09 02:10:00,13.956156156156157,13.956156156156157,19.924982785604386 + 10/09 02:20:00,14.002402402402403,14.002402402402403,19.928054927468005 + 10/09 02:30:00,14.04864864864865,14.04864864864865,19.931117169150043 + 10/09 02:40:00,14.094894894894896,14.094894894894896,19.934185166029989 + 10/09 02:50:00,14.14114114114114,14.14114114114114,19.937346935701617 + 10/09 03:00:00,14.187387387387388,14.187387387387388,19.940550545345308 + 10/09 03:10:00,14.212612612612613,14.212612612612613,19.9436727733621 + 10/09 03:20:00,14.237837837837838,14.237837837837838,19.946694358016999 + 10/09 03:30:00,14.263063063063063,14.263063063063063,19.949645986872495 + 10/09 03:40:00,14.288288288288289,14.288288288288289,19.95260457902027 + 10/09 03:50:00,14.313513513513513,14.313513513513513,19.955517685214866 + 10/09 04:00:00,14.338738738738739,14.338738738738739,19.958388329037154 + 10/09 04:10:00,14.363963963963965,14.363963963963965,19.96120438520361 + 10/09 04:20:00,14.389189189189189,14.389189189189189,19.964157882483197 + 10/09 04:30:00,14.414414414414415,14.414414414414415,19.967193534020998 + 10/09 04:40:00,14.439639639639639,14.439639639639639,19.97027975595553 + 10/09 04:50:00,14.464864864864865,14.464864864864865,19.973348449095405 + 10/09 05:00:00,14.49009009009009,14.49009009009009,19.97639296529859 + 10/09 05:10:00,14.49009009009009,14.49009009009009,19.979180790813193 + 10/09 05:20:00,14.49009009009009,14.49009009009009,19.981990534179745 + 10/09 05:30:00,14.49009009009009,14.49009009009009,19.98470963771048 + 10/09 05:40:00,14.49009009009009,14.49009009009009,19.987335752570304 + 10/09 05:50:00,14.49009009009009,14.49009009009009,19.98986976598161 + 10/09 06:00:00,14.49009009009009,14.49009009009009,19.992250017628 + 10/09 06:10:00,14.536336336336337,14.536336336336337,20.016801847859236 + 10/09 06:20:00,14.582582582582582,14.582582582582582,20.018817023764606 + 10/09 06:30:00,14.628828828828829,14.628828828828829,20.020884283699844 + 10/09 06:40:00,14.675075075075075,14.675075075075075,20.022956803374308 + 10/09 06:50:00,14.721321321321322,14.721321321321322,20.024667922769873 + 10/09 07:00:00,14.767567567567568,14.767567567567568,20.025536642463064 + 10/09 07:10:00,14.578378378378379,14.578378378378379,18.628890248553529 + 10/09 07:20:00,14.389189189189189,14.389189189189189,18.463988559151603 + 10/09 07:30:00,14.2,14.2,18.39900680234569 + 10/09 07:40:00,14.010810810810812,14.010810810810812,18.346918517803034 + 10/09 07:50:00,13.821621621621622,13.821621621621622,18.303931688953754 + 10/09 08:00:00,13.632432432432433,13.632432432432433,18.26642812723265 + 10/09 08:10:00,13.493693693693695,13.493693693693695,18.232064175408348 + 10/09 08:20:00,13.354954954954956,13.354954954954956,18.191283009743964 + 10/09 08:30:00,13.216216216216216,13.216216216216216,18.16059065115131 + 10/09 08:40:00,13.077477477477478,13.077477477477478,18.130864574130685 + 10/09 08:50:00,12.938738738738739,12.938738738738739,18.10218517695788 + 10/09 09:00:00,12.8,12.8,18.074742404829473 + 10/09 09:10:00,12.8,12.8,18.048897956435586 + 10/09 09:20:00,12.8,12.8,18.014296423531126 + 10/09 09:30:00,12.8,12.8,17.989803242340075 + 10/09 09:40:00,12.8,12.8,17.96629632817493 + 10/09 09:50:00,12.8,12.8,17.943900914979627 + 10/09 10:00:00,12.8,12.8,17.922546747957918 + 10/09 10:10:00,12.8,12.8,17.901891098569505 + 10/09 10:20:00,12.8,12.8,17.882561937956916 + 10/09 10:30:00,12.8,12.8,17.863573376005179 + 10/09 10:40:00,12.8,12.8,17.845285381374553 + 10/09 10:50:00,12.8,12.8,17.82755214432453 + 10/09 11:00:00,12.8,12.8,17.810366471376488 + 10/09 11:10:00,12.8,12.8,17.794720926712086 + 10/09 11:20:00,12.8,12.8,17.77999659293838 + 10/09 11:30:00,12.8,12.8,17.76641077787439 + 10/09 11:40:00,12.8,12.8,17.753730185177714 + 10/09 11:50:00,12.8,12.8,17.74212063653134 + 10/09 12:00:00,12.8,12.8,17.731253637325435 + 10/09 12:10:00,12.8,12.8,17.720647327495049 + 10/09 12:20:00,12.8,12.8,17.708716343680057 + 10/09 12:30:00,12.8,12.8,17.699217981666118 + 10/09 12:40:00,12.8,12.8,17.688698481076075 + 10/09 12:50:00,12.8,12.8,17.679327632560726 + 10/09 13:00:00,12.8,12.8,17.67042333154627 + 10/09 13:10:00,12.8,12.8,17.66235856593004 + 10/09 13:20:00,12.8,12.8,17.655027272690754 + 10/09 13:30:00,12.8,12.8,17.64838607801288 + 10/09 13:40:00,12.8,12.8,17.642218737300209 + 10/09 13:50:00,12.8,12.8,17.6361402907719 + 10/09 14:00:00,12.8,12.8,17.63003754771999 + 10/09 14:10:00,12.8,12.8,17.624120050084739 + 10/09 14:20:00,12.8,12.8,17.61845776128052 + 10/09 14:30:00,12.8,12.8,17.613130647880899 + 10/09 14:40:00,12.8,12.8,17.608475321196776 + 10/09 14:50:00,12.8,12.8,17.604626769132286 + 10/09 15:00:00,12.8,12.8,17.60155162309422 + 10/09 15:10:00,12.8,12.8,19.015840133823585 + 10/09 15:20:00,12.8,12.8,19.165765312203467 + 10/09 15:30:00,12.8,12.8,19.228340845872084 + 10/09 15:40:00,12.8,12.8,19.277098816798114 + 10/09 15:50:00,12.8,12.8,19.31611294114971 + 10/09 16:00:00,12.8,12.8,19.348967793843966 + 10/09 16:10:00,12.8,12.8,19.378009115879534 + 10/09 16:20:00,12.8,12.8,19.412673330810788 + 10/09 16:30:00,12.8,12.8,19.43630044069539 + 10/09 16:40:00,12.8,12.8,19.458058521867309 + 10/09 16:50:00,12.8,12.8,19.478706849662843 + 10/09 17:00:00,12.8,12.8,19.498455151620253 + 10/09 17:10:00,12.8,12.8,19.517565491125617 + 10/09 17:20:00,12.8,12.8,19.553566126009966 + 10/09 17:30:00,12.8,12.8,19.571602164095265 + 10/09 17:40:00,12.8,12.8,19.589004415761033 + 10/09 17:50:00,12.8,12.8,19.605889728273526 + 10/09 18:00:00,12.8,12.8,19.622250841832064 + 10/09 18:10:00,12.8,12.8,19.63597657996846 + 10/09 18:20:00,12.8,12.8,19.651325836919527 + 10/09 18:30:00,12.8,12.8,19.66518325134052 + 10/09 18:40:00,12.8,12.8,19.67847450364085 + 10/09 18:50:00,12.8,12.8,19.69068966719507 + 10/09 19:00:00,12.8,12.8,19.701982921232888 + 10/09 19:10:00,12.8,12.8,19.712486573238665 + 10/09 19:20:00,12.8,12.8,19.722509845809243 + 10/09 19:30:00,12.8,12.8,19.731984720441767 + 10/09 19:40:00,12.8,12.8,19.740947473486817 + 10/09 19:50:00,12.8,12.8,19.74941728898298 + 10/09 20:00:00,12.8,12.8,19.757466180639307 + 10/09 20:10:00,12.8,12.8,19.74272026926362 + 10/09 20:20:00,12.8,12.8,19.750050486098688 + 10/09 20:30:00,12.8,12.8,19.757123024088643 + 10/09 20:40:00,12.833633633633636,12.833633633633636,19.763965666646784 + 10/09 20:50:00,12.87987987987988,12.87987987987988,19.77060477381647 + 10/09 21:00:00,12.926126126126127,12.926126126126127,19.776980644816314 + 10/09 21:10:00,12.951351351351353,12.951351351351353,19.783253297464556 + 10/09 21:20:00,12.976576576576577,12.976576576576577,19.78919125963125 + 10/09 21:30:00,13.001801801801803,13.001801801801803,19.79493741203124 + 10/09 21:40:00,13.027027027027028,13.027027027027028,19.800464611811419 + 10/09 21:50:00,13.052252252252253,13.052252252252253,19.80576611145902 + 10/09 22:00:00,13.077477477477478,13.077477477477478,19.81091640522863 + 10/09 22:10:00,13.123723723723725,13.123723723723725,19.816041398308529 + 10/09 22:20:00,13.169969969969971,13.169969969969971,19.821400784385927 + 10/09 22:30:00,13.216216216216218,13.216216216216218,19.82665195096202 + 10/09 22:40:00,13.262462462462464,13.262462462462464,19.831853540745926 + 10/09 22:50:00,13.30870870870871,13.30870870870871,19.836932033022845 + 10/09 23:00:00,13.354954954954956,13.354954954954956,19.842014001133813 + 10/09 23:10:00,13.354954954954956,13.354954954954956,19.846736577669689 + 10/09 23:20:00,13.354954954954956,13.354954954954956,19.85126593104549 + 10/09 23:30:00,13.354954954954956,13.354954954954956,19.855619958124675 + 10/09 23:40:00,13.354954954954956,13.354954954954956,19.859714122534827 + 10/09 23:50:00,13.354954954954956,13.354954954954956,19.863751773153344 + 10/09 24:00:00,13.354954954954956,13.354954954954956,19.867650299711195 + 10/10 00:10:00,13.426426426426428,13.426426426426428,19.871001949112789 + 10/10 00:20:00,13.497897897897899,13.497897897897899,19.87381304462532 + 10/10 00:30:00,13.56936936936937,13.56936936936937,19.876745109925559 + 10/10 00:40:00,13.640840840840842,13.640840840840842,19.87985364423895 + 10/10 00:50:00,13.712312312312314,13.712312312312314,19.883156637710657 + 10/10 01:00:00,13.783783783783785,13.783783783783785,19.886758707423195 + 10/10 01:10:00,13.783783783783785,13.783783783783785,19.892598875084106 + 10/10 01:20:00,13.783783783783785,13.783783783783785,19.89839876491114 + 10/10 01:30:00,13.783783783783785,13.783783783783785,19.903669875572207 + 10/10 01:40:00,13.783783783783785,13.783783783783785,19.90858466964788 + 10/10 01:50:00,13.783783783783785,13.783783783783785,19.91308214852427 + 10/10 02:00:00,13.783783783783785,13.783783783783785,19.917249118340246 + 10/10 02:10:00,13.83003003003003,13.83003003003003,19.92016495739744 + 10/10 02:20:00,13.876276276276276,13.876276276276276,19.92228803017801 + 10/10 02:30:00,13.922522522522524,13.922522522522524,19.92458761074026 + 10/10 02:40:00,13.968768768768769,13.968768768768769,19.92682563222615 + 10/10 02:50:00,14.015015015015015,14.015015015015015,19.929198109062268 + 10/10 03:00:00,14.061261261261262,14.061261261261262,19.931668914440828 + 10/10 03:10:00,14.061261261261262,14.061261261261262,19.933568940558879 + 10/10 03:20:00,14.061261261261262,14.061261261261262,19.936145754451276 + 10/10 03:30:00,14.061261261261262,14.061261261261262,19.938708277870778 + 10/10 03:40:00,14.061261261261262,14.061261261261262,19.941379203265094 + 10/10 03:50:00,14.061261261261262,14.061261261261262,19.943991928353197 + 10/10 04:00:00,14.061261261261262,14.061261261261262,19.94644729920841 + 10/10 04:10:00,14.061261261261262,14.061261261261262,19.949276146350095 + 10/10 04:20:00,14.061261261261262,14.061261261261262,19.952033093523889 + 10/10 04:30:00,14.061261261261262,14.061261261261262,19.95470616932503 + 10/10 04:40:00,14.061261261261262,14.061261261261262,19.95729835647338 + 10/10 04:50:00,14.061261261261262,14.061261261261262,19.959742185479909 + 10/10 05:00:00,14.061261261261262,14.061261261261262,19.962157376267787 + 10/10 05:10:00,14.107507507507508,14.107507507507508,19.96455956667363 + 10/10 05:20:00,14.153753753753755,14.153753753753755,19.96669721287143 + 10/10 05:30:00,14.2,14.2,19.968913144254246 + 10/10 05:40:00,14.246246246246246,14.246246246246246,19.971084511627468 + 10/10 05:50:00,14.292492492492493,14.292492492492493,19.973329844245954 + 10/10 06:00:00,14.338738738738739,14.338738738738739,19.975699568209558 + 10/10 06:10:00,14.338738738738739,14.338738738738739,17.98315327924638 + 10/10 06:20:00,14.338738738738739,14.338738738738739,17.74905752510539 + 10/10 06:30:00,14.338738738738739,14.338738738738739,17.66185984519954 + 10/10 06:40:00,14.338738738738739,14.338738738738739,17.59397485231699 + 10/10 06:50:00,14.338738738738739,14.338738738738739,17.540385878436113 + 10/10 07:00:00,14.338738738738739,14.338738738738739,17.495683017526856 + 10/10 07:10:00,14.174774774774776,14.174774774774776,16.023948082320368 + 10/10 07:20:00,14.010810810810812,14.010810810810812,15.810824237740104 + 10/10 07:30:00,13.846846846846848,13.846846846846848,15.71134238079245 + 10/10 07:40:00,13.682882882882885,13.682882882882885,15.624031370077292 + 10/10 07:50:00,13.518918918918919,13.518918918918919,15.550069608855308 + 10/10 08:00:00,13.354954954954956,13.354954954954956,15.483621782235348 + 10/10 08:05:00,13.283483483483485,13.283483483483485,15.39717693202094 + 10/10 08:10:00,13.283483483483485,13.283483483483485,15.397201690452576 + 10/10 08:20:00,13.212012012012013,13.212012012012013,15.33260361347976 + 10/10 08:30:00,13.140540540540542,13.140540540540542,15.279365770304958 + 10/10 08:40:00,13.06906906906907,13.06906906906907,15.229245895967262 + 10/10 08:50:00,12.997597597597599,12.997597597597599,15.181962272441338 + 10/10 09:00:00,12.926126126126127,12.926126126126127,15.137450454960995 + 10/10 09:10:00,12.812612612612615,12.812612612612615,15.095312688724509 + 10/10 09:15:00,12.8,12.8,15.045238106727006 + 10/10 09:20:00,12.8,12.8,15.045031622425315 + 10/10 09:30:00,12.8,12.8,15.006132324980534 + 10/10 09:35:00,12.8,12.8,14.96993359495044 + 10/10 09:40:00,12.8,12.8,14.969897609430197 + 10/10 09:50:00,12.8,12.8,14.933935197972696 + 10/10 10:00:00,12.8,12.8,14.900024499730172 + 10/10 10:10:00,12.8,12.8,14.86719572305366 + 10/10 10:20:00,12.8,12.8,14.83209918637225 + 10/10 10:30:00,12.8,12.8,14.801479627816182 + 10/10 10:40:00,12.8,12.8,14.771892277565565 + 10/10 10:45:00,12.8,12.8,14.744326563161817 + 10/10 10:50:00,12.8,12.8,14.743908334637906 + 10/10 11:00:00,12.8,12.8,14.715568083496964 + 10/10 11:10:00,12.8,12.8,14.688935691190747 + 10/10 11:20:00,12.8,12.8,14.672723865692026 + 10/10 11:30:00,12.8,12.8,14.648053007733003 + 10/10 11:40:00,12.8,12.8,14.624331414810458 + 10/10 11:50:00,12.8,12.8,14.601765945341466 + 10/10 12:00:00,12.8,12.8,14.580227504392524 + 10/10 12:10:00,12.8,12.8,14.55992240810292 + 10/10 12:20:00,12.8,12.8,14.531029907576077 + 10/10 12:30:00,12.8,12.8,14.512747873196143 + 10/10 12:40:00,12.8,12.8,14.495523873486361 + 10/10 12:50:00,12.8,12.8,14.479003454181298 + 10/10 13:00:00,12.8,12.8,14.463159582483766 + 10/10 13:10:00,12.8,12.8,14.447816589364367 + 10/10 13:20:00,12.8,12.8,14.436954659063732 + 10/10 13:30:00,12.8,12.8,14.424061974924534 + 10/10 13:40:00,12.8,12.8,14.411909611188298 + 10/10 13:50:00,12.8,12.8,14.398507292732387 + 10/10 14:00:00,12.8,12.8,14.387921451914629 + 10/10 14:10:00,12.8,12.8,14.380342702096334 + 10/10 14:20:00,12.8,12.8,14.375998029624159 + 10/10 14:30:00,12.8,12.8,14.368493853026369 + 10/10 14:40:00,12.8,12.8,14.36373160225143 + 10/10 14:50:00,12.8,12.8,14.359662878065088 + 10/10 15:00:00,12.8,12.8,14.353483897330726 + 10/10 15:05:00,12.8,12.8,16.50153608546858 + 10/10 15:10:00,12.8,12.8,16.49843830951588 + 10/10 15:20:00,12.8,12.8,16.749939626769554 + 10/10 15:30:00,12.8,12.8,16.849098274281908 + 10/10 15:40:00,12.8,12.8,16.923459960485276 + 10/10 15:45:00,12.8,12.8,16.982116367464493 + 10/10 15:50:00,12.8,12.8,16.98126643223876 + 10/10 16:00:00,12.8,12.8,17.028617720525355 + 10/10 16:10:00,12.8,12.8,17.096651617249127 + 10/10 16:20:00,12.8,12.8,17.152609741370179 + 10/10 16:25:00,12.8,12.8,17.187481995635957 + 10/10 16:30:00,12.8,12.8,17.186881477305727 + 10/10 16:40:00,12.8,12.8,17.216522100038384 + 10/10 16:45:00,12.8,12.8,17.245505717608784 + 10/10 16:50:00,12.8,12.8,17.24519936676207 + 10/10 17:00:00,12.8,12.8,17.270967911970645 + 10/10 17:10:00,12.8,12.8,17.309175060305717 + 10/10 17:20:00,12.8,12.8,17.338838683847823 + 10/10 17:30:00,12.8,12.8,17.360689810130986 + 10/10 17:40:00,12.8,12.8,17.382345690442994 + 10/10 17:50:00,12.8,12.8,17.40284900404824 + 10/10 18:00:00,12.8,12.8,17.422685756322374 + 10/10 18:10:00,12.8,12.8,17.44182233979321 + 10/10 18:20:00,12.8,12.8,17.460109993791755 + 10/10 18:30:00,12.8,12.8,17.47735411977673 + 10/10 18:40:00,12.8,12.8,17.493481176955908 + 10/10 18:50:00,12.8,12.8,17.50859378014129 + 10/10 19:00:00,12.8,12.8,17.52279314775813 + 10/10 19:10:00,12.8,12.8,17.5488607078663 + 10/10 19:20:00,12.8,12.8,17.56188243249252 + 10/10 19:30:00,12.8,12.8,17.573691154633509 + 10/10 19:40:00,12.8,12.8,17.584859923337736 + 10/10 19:50:00,12.8,12.8,17.595404771845275 + 10/10 20:00:00,12.8,12.8,17.605396963846517 + 10/10 20:10:00,12.8,12.8,17.592707753898094 + 10/10 20:20:00,12.8,12.8,17.60600954653475 + 10/10 20:30:00,12.8,12.8,17.614835092055068 + 10/10 20:40:00,12.8,12.8,17.623245208229883 + 10/10 20:50:00,12.8,12.8,17.631422467820536 + 10/10 21:00:00,12.8,12.8,17.63932641559255 + 10/10 21:10:00,12.8,12.8,17.646720115550417 + 10/10 21:20:00,12.8,12.8,17.653767435513509 + 10/10 21:30:00,12.8,12.8,17.66048403165688 + 10/10 21:40:00,12.8,12.8,17.66700580401751 + 10/10 21:50:00,12.8,12.8,17.673260337207354 + 10/10 22:00:00,12.8,12.8,17.679299000470129 + 10/10 22:10:00,12.821021021021022,12.821021021021022,19.04033792877471 + 10/10 22:20:00,12.842042042042042,12.842042042042042,19.191850528795418 + 10/10 22:30:00,12.863063063063063,12.863063063063063,19.25509898226613 + 10/10 22:40:00,12.884084084084084,12.884084084084084,19.30683486772648 + 10/10 22:50:00,12.905105105105106,12.905105105105106,19.34739711160796 + 10/10 23:00:00,12.926126126126127,12.926126126126127,19.381798433473816 + 10/10 23:10:00,12.951351351351353,12.951351351351353,19.411800686039144 + 10/10 23:20:00,12.976576576576577,12.976576576576577,19.437286526818914 + 10/10 23:30:00,13.001801801801803,13.001801801801803,19.460269046633099 + 10/10 23:40:00,13.027027027027028,13.027027027027028,19.480993369106327 + 10/10 23:50:00,13.052252252252253,13.052252252252253,19.50011060088812 + 10/10 24:00:00,13.077477477477478,13.077477477477478,19.51778038114018 + 10/11 00:10:00,13.102702702702704,13.102702702702704,19.534120109746408 + 10/11 00:20:00,13.127927927927928,13.127927927927928,19.54946322160935 + 10/11 00:30:00,13.153153153153154,13.153153153153154,19.56391660997248 + 10/11 00:40:00,13.17837837837838,13.17837837837838,19.577589587598234 + 10/11 00:50:00,13.203603603603604,13.203603603603604,19.590524875031649 + 10/11 01:00:00,13.22882882882883,13.22882882882883,19.602839221762179 + 10/11 01:10:00,13.296096096096097,13.296096096096097,19.6146919836507 + 10/11 01:20:00,13.363363363363364,13.363363363363364,19.62573302134416 + 10/11 01:30:00,13.430630630630632,13.430630630630632,19.63650986565462 + 10/11 01:40:00,13.497897897897899,13.497897897897899,19.646926345734735 + 10/11 01:50:00,13.565165165165166,13.565165165165166,19.657060547794303 + 10/11 02:00:00,13.632432432432433,13.632432432432433,19.66709718267921 + 10/11 02:10:00,13.632432432432433,13.632432432432433,19.677001169864878 + 10/11 02:20:00,13.632432432432433,13.632432432432433,19.68735587804988 + 10/11 02:30:00,13.632432432432433,13.632432432432433,19.697202753497068 + 10/11 02:40:00,13.632432432432433,13.632432432432433,19.706640131849363 + 10/11 02:50:00,13.632432432432433,13.632432432432433,19.715743491737635 + 10/11 03:00:00,13.632432432432433,13.632432432432433,19.7244308197579 + 10/11 03:10:00,13.67867867867868,13.67867867867868,19.7328545680543 + 10/11 03:20:00,13.724924924924924,13.724924924924924,19.740111532389905 + 10/11 03:30:00,13.771171171171173,13.771171171171173,19.747148337139615 + 10/11 03:40:00,13.817417417417419,13.817417417417419,19.75389803492662 + 10/11 03:50:00,13.863663663663666,13.863663663663666,19.760553020374134 + 10/11 04:00:00,13.90990990990991,13.90990990990991,19.767073303058589 + 10/11 04:10:00,13.817417417417419,13.817417417417419,19.772755187737766 + 10/11 04:20:00,13.724924924924926,13.724924924924926,19.779489687610736 + 10/11 04:30:00,13.632432432432435,13.632432432432435,19.78594463119063 + 10/11 04:40:00,13.539939939939942,13.539939939939942,19.792396820927299 + 10/11 04:50:00,13.447447447447449,13.447447447447449,19.798442730691833 + 10/11 05:00:00,13.354954954954956,13.354954954954956,19.804063576499524 + 10/11 05:10:00,13.401201201201202,13.401201201201202,19.809979750238193 + 10/11 05:20:00,13.447447447447449,13.447447447447449,19.814868424553209 + 10/11 05:30:00,13.493693693693695,13.493693693693695,19.819861968446035 + 10/11 05:40:00,13.539939939939942,13.539939939939942,19.824746530085556 + 10/11 05:50:00,13.586186186186187,13.586186186186187,19.829698635121333 + 10/11 06:00:00,13.632432432432433,13.632432432432433,19.8346461889952 + 10/11 06:10:00,13.657657657657659,13.657657657657659,17.844500358308065 + 10/11 06:20:00,13.682882882882883,13.682882882882883,17.612384279298238 + 10/11 06:30:00,13.708108108108109,13.708108108108109,17.527410797200738 + 10/11 06:40:00,13.733333333333335,13.733333333333335,17.461622903477268 + 10/11 06:50:00,13.758558558558559,13.758558558558559,17.41004388775311 + 10/11 07:00:00,13.783783783783785,13.783783783783785,17.367299765196603 + 10/11 07:05:00,13.737537537537538,13.737537537537538,15.889598818805649 + 10/11 07:10:00,13.737537537537538,13.737537537537538,15.891816263274194 + 10/11 07:15:00,13.691291291291293,13.691291291291293,15.671875299213524 + 10/11 07:20:00,13.691291291291293,13.691291291291293,15.671478119544345 + 10/11 07:30:00,13.645045045045047,13.645045045045047,15.570603194266847 + 10/11 07:40:00,13.5987987987988,13.5987987987988,15.48789319382444 + 10/11 07:50:00,13.552552552552554,13.552552552552554,15.418048796099584 + 10/11 08:00:00,13.506306306306307,13.506306306306307,15.35718301593169 + 10/11 08:05:00,13.40960960960961,13.40960960960961,15.276224635195746 + 10/11 08:10:00,13.40960960960961,13.40960960960961,15.276305406420868 + 10/11 08:20:00,13.312912912912913,13.312912912912913,15.216807510623527 + 10/11 08:30:00,13.216216216216216,13.216216216216216,15.16846913605383 + 10/11 08:40:00,13.11951951951952,13.11951951951952,15.12297130631136 + 10/11 08:50:00,13.022822822822823,13.022822822822823,15.07989457559272 + 10/11 09:00:00,12.926126126126127,12.926126126126127,15.039119083052923 + 10/11 09:05:00,12.833633633633636,12.833633633633636,15.001162641097532 + 10/11 09:10:00,12.833633633633636,12.833633633633636,15.000879691807116 + 10/11 09:20:00,12.8,12.8,14.953017474716509 + 10/11 09:30:00,12.8,12.8,14.91757472820065 + 10/11 09:40:00,12.8,12.8,14.883556836399908 + 10/11 09:50:00,12.8,12.8,14.850903099134076 + 10/11 10:00:00,12.8,12.8,14.819596147570002 + 10/11 10:10:00,12.8,12.8,14.78912629240622 + 10/11 10:20:00,12.8,12.8,14.756103977629648 + 10/11 10:30:00,12.8,12.8,14.727329859943966 + 10/11 10:40:00,12.8,12.8,14.699405764837119 + 10/11 10:50:00,12.8,12.8,14.67239226000428 + 10/11 11:00:00,12.8,12.8,14.646337290332504 + 10/11 11:10:00,12.8,12.8,14.621672885616903 + 10/11 11:20:00,12.8,12.8,14.607858745095517 + 10/11 11:30:00,12.8,12.8,14.58576286666928 + 10/11 11:40:00,12.8,12.8,14.564734012418358 + 10/11 11:50:00,12.8,12.8,14.545062907080219 + 10/11 12:00:00,12.8,12.8,14.526491253882979 + 10/11 12:10:00,12.8,12.8,14.508698035026342 + 10/11 12:20:00,12.8,12.8,14.482262151567218 + 10/11 12:30:00,12.8,12.8,14.466196385430074 + 10/11 12:40:00,12.8,12.8,14.451096581327317 + 10/11 12:50:00,12.8,12.8,14.436870020986114 + 10/11 13:00:00,12.8,12.8,14.423522403197837 + 10/11 13:10:00,12.8,12.8,14.41169533765867 + 10/11 13:20:00,12.8,12.8,14.404984134157705 + 10/11 13:30:00,12.8,12.8,14.395441181994857 + 10/11 13:40:00,12.8,12.8,14.383298921928113 + 10/11 13:50:00,12.8,12.8,14.374374331449858 + 10/11 14:00:00,12.8,12.8,14.366867844041377 + 10/11 14:10:00,12.8,12.8,14.35801559051525 + 10/11 14:20:00,12.8,12.8,14.354002931517613 + 10/11 14:30:00,12.8,12.8,14.348687790708615 + 10/11 14:40:00,12.8,12.8,14.343889915601255 + 10/11 14:50:00,12.8,12.8,14.336751314528938 + 10/11 15:00:00,12.8,12.8,14.332960540700306 + 10/11 15:05:00,12.8,12.8,16.483230888544506 + 10/11 15:10:00,12.8,12.8,16.480404821672339 + 10/11 15:15:00,12.8,12.8,16.735200737215505 + 10/11 15:20:00,12.8,12.8,16.733841124587586 + 10/11 15:30:00,12.8,12.8,16.831248287480599 + 10/11 15:40:00,12.8,12.8,16.90634673710732 + 10/11 15:50:00,12.8,12.8,16.965793382492018 + 10/11 16:00:00,12.8,12.8,17.002516821890489 + 10/11 16:10:00,12.8,12.8,17.064349388952225 + 10/11 16:20:00,12.8,12.8,17.112973735509198 + 10/11 16:30:00,12.8,12.8,17.140355154409187 + 10/11 16:40:00,12.8,12.8,17.165208779821464 + 10/11 16:50:00,12.8,12.8,17.188301612012809 + 10/11 17:00:00,12.8,12.8,17.210196650738689 + 10/11 17:10:00,12.8,12.8,17.24415817387303 + 10/11 17:20:00,12.8,12.8,17.276552474968328 + 10/11 17:30:00,12.8,12.8,17.301575234117075 + 10/11 17:40:00,12.8,12.8,17.32629345540746 + 10/11 17:50:00,12.8,12.8,17.34946357930426 + 10/11 18:00:00,12.8,12.8,17.371465033987727 + 10/11 18:10:00,12.8,12.8,17.392991172972775 + 10/11 18:20:00,12.8,12.8,17.41137492915646 + 10/11 18:30:00,12.875675675675677,12.875675675675677,17.428762252584485 + 10/11 18:40:00,12.993393393393394,12.993393393393394,17.444828153209657 + 10/11 18:50:00,13.111111111111113,13.111111111111113,17.459926487215186 + 10/11 19:00:00,13.22882882882883,13.22882882882883,17.47414172909315 + 10/11 19:10:00,13.275075075075077,13.275075075075077,17.50026477973636 + 10/11 19:20:00,13.321321321321323,13.321321321321323,17.51314763091745 + 10/11 19:30:00,13.367567567567568,13.367567567567568,17.52489174860894 + 10/11 19:40:00,13.413813813813816,13.413813813813816,17.535927610703518 + 10/11 19:50:00,13.46006006006006,13.46006006006006,17.546323204020334 + 10/11 20:00:00,13.506306306306307,13.506306306306307,17.556116327505369 + 10/11 20:10:00,13.598798798798799,13.598798798798799,17.54292838380383 + 10/11 20:20:00,13.691291291291292,13.691291291291292,17.557898493992825 + 10/11 20:30:00,13.783783783783785,13.783783783783785,17.568068249945676 + 10/11 20:40:00,13.876276276276276,13.876276276276276,17.57818968591089 + 10/11 20:50:00,13.968768768768769,13.968768768768769,17.588022467857145 + 10/11 21:00:00,14.061261261261262,14.061261261261262,17.597612502635138 + 10/11 21:10:00,14.132732732732733,14.132732732732733,17.606803798456128 + 10/11 21:20:00,14.204204204204205,14.204204204204205,17.61606499872197 + 10/11 21:30:00,14.275675675675675,14.275675675675675,17.625055329176399 + 10/11 21:40:00,14.347147147147148,14.347147147147148,17.633839226069637 + 10/11 21:50:00,14.418618618618618,14.418618618618618,17.64232494174007 + 10/11 22:00:00,14.49009009009009,14.49009009009009,17.65066569968915 + 10/11 22:10:00,14.49009009009009,14.49009009009009,19.03105551039942 + 10/11 22:20:00,14.49009009009009,14.49009009009009,19.178927692735895 + 10/11 22:30:00,14.49009009009009,14.49009009009009,19.245553710345406 + 10/11 22:40:00,14.49009009009009,14.49009009009009,19.298423887590823 + 10/11 22:50:00,14.49009009009009,14.49009009009009,19.341428131223919 + 10/11 23:00:00,14.49009009009009,14.49009009009009,19.377738596466388 + 10/11 23:10:00,14.536336336336337,14.536336336336337,19.408202740830956 + 10/11 23:20:00,14.582582582582582,14.582582582582582,19.434953565641565 + 10/11 23:30:00,14.628828828828829,14.628828828828829,19.459040752806545 + 10/11 23:40:00,14.675075075075075,14.675075075075075,19.481061634677404 + 10/11 23:50:00,14.721321321321322,14.721321321321322,19.501453028240314 + 10/11 24:00:00,14.767567567567568,14.767567567567568,19.52046927598147 + 10/12 00:10:00,14.813813813813815,14.813813813813815,19.538844366616375 + 10/12 00:20:00,14.860060060060059,14.860060060060059,19.5564307884371 + 10/12 00:30:00,14.906306306306306,14.906306306306306,19.5731445292202 + 10/12 00:40:00,14.952552552552552,14.952552552552552,19.589203121159966 + 10/12 00:50:00,14.998798798798799,14.998798798798799,19.60456221960969 + 10/12 01:00:00,15.045045045045045,15.045045045045045,19.619287419074163 + 10/12 01:10:00,15.066066066066066,15.066066066066066,19.633860613236889 + 10/12 01:20:00,15.087087087087087,15.087087087087087,19.647683054005016 + 10/12 01:30:00,15.108108108108109,15.108108108108109,19.661006527715864 + 10/12 01:40:00,15.12912912912913,15.12912912912913,19.673773969872764 + 10/12 01:50:00,15.15015015015015,15.15015015015015,19.68606510949426 + 10/12 02:00:00,15.17117117117117,15.17117117117117,19.69792189869426 + 10/12 02:10:00,15.196396396396397,15.196396396396397,19.7089830247143 + 10/12 02:20:00,15.22162162162162,15.22162162162162,19.719884632534297 + 10/12 02:30:00,15.246846846846847,15.246846846846847,19.730482500302949 + 10/12 02:40:00,15.272072072072073,15.272072072072073,19.740820706700374 + 10/12 02:50:00,15.297297297297297,15.297297297297297,19.750892812717586 + 10/12 03:00:00,15.322522522522523,15.322522522522523,19.760626648926335 + 10/12 03:10:00,15.368768768768769,15.368768768768769,19.768523505211193 + 10/12 03:20:00,15.415015015015016,15.415015015015016,19.77637707528861 + 10/12 03:30:00,15.46126126126126,15.46126126126126,19.78411938348616 + 10/12 03:40:00,15.507507507507507,15.507507507507507,19.791780562262227 + 10/12 03:50:00,15.553753753753754,15.553753753753754,19.799266258094947 + 10/12 04:00:00,15.6,15.6,19.806647231104379 + 10/12 04:10:00,15.6,15.6,19.815819530875574 + 10/12 04:20:00,15.6,15.6,19.824820603686804 + 10/12 04:30:00,15.6,15.6,19.833584172010619 + 10/12 04:40:00,15.6,15.6,19.842086229796196 + 10/12 04:50:00,15.6,15.6,19.850337701546939 + 10/12 05:00:00,15.6,15.6,19.858446645626736 + 10/12 05:10:00,15.6,15.6,19.86579809135676 + 10/12 05:20:00,15.6,15.6,19.87293854281679 + 10/12 05:30:00,15.6,15.6,19.879950753163514 + 10/12 05:40:00,15.6,15.6,19.886761295755027 + 10/12 05:50:00,15.6,15.6,19.893564668753855 + 10/12 06:00:00,15.6,15.6,19.90027278529692 + 10/12 06:10:00,15.6,15.6,17.893361057590519 + 10/12 06:20:00,15.6,15.6,17.663415628533384 + 10/12 06:30:00,15.6,15.6,17.581367258310537 + 10/12 06:40:00,15.6,15.6,17.518679470894129 + 10/12 06:50:00,15.6,15.6,17.47014645741485 + 10/12 07:00:00,15.6,15.6,17.430007027639218 + 10/12 07:10:00,15.6,15.6,15.945316933921456 + 10/12 07:15:00,15.6,15.6,15.730746928769792 + 10/12 07:20:00,15.6,15.6,15.730160283655249 + 10/12 07:30:00,15.6,15.6,15.628415913301334 + 10/12 07:40:00,15.6,15.6,15.54493321300326 + 10/12 07:50:00,15.6,15.6,15.4736879696766 + 10/12 08:00:00,15.6,15.6,15.411146547931539 + 10/12 08:10:00,15.46126126126126,15.46126126126126,15.327989295922269 + 10/12 08:20:00,15.322522522522523,15.322522522522523,15.26675138963594 + 10/12 08:30:00,15.183783783783783,15.183783783783783,15.216487452353349 + 10/12 08:40:00,15.045045045045045,15.045045045045045,15.16897345313253 + 10/12 08:50:00,14.906306306306306,14.906306306306306,15.123940645840174 + 10/12 09:00:00,14.767567567567568,14.767567567567568,15.081179240689224 + 10/12 09:10:00,14.696096096096096,14.696096096096096,15.041060731279784 + 10/12 09:20:00,14.624624624624625,14.624624624624625,14.992069644708277 + 10/12 09:30:00,14.553153153153153,14.553153153153153,14.955627031861948 + 10/12 09:40:00,14.481681681681682,14.481681681681682,14.920895035616088 + 10/12 09:50:00,14.41021021021021,14.41021021021021,14.887801268534269 + 10/12 10:00:00,14.338738738738739,14.338738738738739,14.856245553854972 + 10/12 10:10:00,14.221021021021022,14.221021021021022,14.82583844822905 + 10/12 10:20:00,14.103303303303303,14.103303303303303,14.793260584859249 + 10/12 10:30:00,13.985585585585586,13.985585585585586,14.765118994297123 + 10/12 10:40:00,13.867867867867869,13.867867867867869,14.737919432168662 + 10/12 10:50:00,13.750150150150152,13.750150150150152,14.711575114226808 + 10/12 11:00:00,13.632432432432433,13.632432432432433,14.686090921065393 + 10/12 11:10:00,13.611411411411412,13.611411411411412,14.662121507263383 + 10/12 11:20:00,13.590390390390392,13.590390390390392,14.649305130304077 + 10/12 11:30:00,13.56936936936937,13.56936936936937,14.628043345779318 + 10/12 11:40:00,13.548348348348349,13.548348348348349,14.608039768863297 + 10/12 11:50:00,13.527327327327328,13.527327327327328,14.589331841920894 + 10/12 12:00:00,13.506306306306307,13.506306306306307,14.571671764500194 + 10/12 12:10:00,13.46006006006006,13.46006006006006,14.55453082141695 + 10/12 12:20:00,13.413813813813814,13.413813813813814,14.528648247400856 + 10/12 12:30:00,13.367567567567568,13.367567567567568,14.513079734836058 + 10/12 12:40:00,13.321321321321323,13.321321321321323,14.49824079099554 + 10/12 12:50:00,13.275075075075077,13.275075075075077,14.484046509375342 + 10/12 13:00:00,13.22882882882883,13.22882882882883,14.471070352449785 + 10/12 13:10:00,13.17837837837838,13.17837837837838,14.459676499396606 + 10/12 13:20:00,13.127927927927928,13.127927927927928,14.451302817539183 + 10/12 13:30:00,13.077477477477478,13.077477477477478,14.43668176422347 + 10/12 13:40:00,13.027027027027028,13.027027027027028,14.42554926532814 + 10/12 13:50:00,12.976576576576579,12.976576576576579,14.415371795909019 + 10/12 14:00:00,12.926126126126127,12.926126126126127,14.402852347043325 + 10/12 14:10:00,12.926126126126127,12.926126126126127,14.393299945232629 + 10/12 14:20:00,12.926126126126127,12.926126126126127,14.389577237174663 + 10/12 14:30:00,12.926126126126127,12.926126126126127,14.382017089243105 + 10/12 14:40:00,12.926126126126127,12.926126126126127,14.374502614726389 + 10/12 14:50:00,12.926126126126127,12.926126126126127,14.369966519562312 + 10/12 15:00:00,12.926126126126127,12.926126126126127,14.366518315046669 + 10/12 15:05:00,12.926126126126127,12.926126126126127,16.523451406186756 + 10/12 15:10:00,12.926126126126127,12.926126126126127,16.52305282124596 + 10/12 15:20:00,12.926126126126127,12.926126126126127,16.772370930809314 + 10/12 15:30:00,12.926126126126127,12.926126126126127,16.86971814445416 + 10/12 15:40:00,12.926126126126127,12.926126126126127,16.944437301115454 + 10/12 15:50:00,12.926126126126127,12.926126126126127,17.002855543702716 + 10/12 16:00:00,12.926126126126127,12.926126126126127,17.04974614249647 + 10/12 16:10:00,12.951351351351353,12.951351351351353,17.116391482029344 + 10/12 16:20:00,12.976576576576577,12.976576576576577,17.175705617274074 + 10/12 16:30:00,13.001801801801803,13.001801801801803,17.211007484403699 + 10/12 16:40:00,13.027027027027028,13.027027027027028,17.243641767741925 + 10/12 16:50:00,13.052252252252253,13.052252252252253,17.274056087637758 + 10/12 17:00:00,13.077477477477478,13.077477477477478,17.302667498457063 + 10/12 17:10:00,13.169969969969971,13.169969969969971,17.342540578016555 + 10/12 17:20:00,13.262462462462463,13.262462462462463,17.37237853326968 + 10/12 17:30:00,13.354954954954956,13.354954954954956,17.395434189366349 + 10/12 17:40:00,13.447447447447449,13.447447447447449,17.4172333059197 + 10/12 17:50:00,13.539939939939942,13.539939939939942,17.438244760204947 + 10/12 18:00:00,13.632432432432433,13.632432432432433,17.458391843461035 + 10/12 18:10:00,13.775375375375376,13.775375375375376,17.478549666724108 + 10/12 18:20:00,13.918318318318319,13.918318318318319,17.49886579043352 + 10/12 18:30:00,14.061261261261262,14.061261261261262,17.517815596512209 + 10/12 18:40:00,14.204204204204205,14.204204204204205,17.53549846275187 + 10/12 18:50:00,14.347147147147148,14.347147147147148,17.55194869975101 + 10/12 19:00:00,14.49009009009009,14.49009009009009,17.5673217191945 + 10/12 19:10:00,14.557357357357358,14.557357357357358,17.59498809973056 + 10/12 19:20:00,14.624624624624625,14.624624624624625,17.610310401463907 + 10/12 19:30:00,14.691891891891892,14.691891891891892,17.62438401540639 + 10/12 19:40:00,14.759159159159159,14.759159159159159,17.637892221382886 + 10/12 19:50:00,14.826426426426427,14.826426426426427,17.650689281180655 + 10/12 20:00:00,14.893693693693694,14.893693693693694,17.662839948510525 + 10/12 20:10:00,14.91891891891892,14.91891891891892,17.651755077030644 + 10/12 20:20:00,14.944144144144144,14.944144144144144,17.666823639456699 + 10/12 20:30:00,14.96936936936937,14.96936936936937,17.67692786262581 + 10/12 20:40:00,14.994594594594595,14.994594594594595,17.686522813521195 + 10/12 20:50:00,15.01981981981982,15.01981981981982,17.695715366082419 + 10/12 21:00:00,15.045045045045045,15.045045045045045,17.704546475294238 + 10/12 21:10:00,15.091291291291292,15.091291291291292,17.71368067901298 + 10/12 21:20:00,15.137537537537538,15.137537537537538,17.72229194159233 + 10/12 21:30:00,15.183783783783785,15.183783783783785,17.73066085258715 + 10/12 21:40:00,15.23003003003003,15.23003003003003,17.73878844586649 + 10/12 21:50:00,15.276276276276276,15.276276276276276,17.74666306079041 + 10/12 22:00:00,15.322522522522523,15.322522522522523,17.7544515635021 + 10/12 22:10:00,15.368768768768769,15.368768768768769,19.128916358245886 + 10/12 22:20:00,15.415015015015016,15.415015015015016,19.27380175959449 + 10/12 22:30:00,15.46126126126126,15.46126126126126,19.338635349553699 + 10/12 22:40:00,15.507507507507507,15.507507507507507,19.389860738950668 + 10/12 22:50:00,15.553753753753754,15.553753753753754,19.431492029540359 + 10/12 23:00:00,15.6,15.6,19.4667144867125 + 10/12 23:10:00,15.6,15.6,19.497319774080208 + 10/12 23:20:00,15.6,15.6,19.524657982783937 + 10/12 23:30:00,15.6,15.6,19.549388828510425 + 10/12 23:40:00,15.6,15.6,19.572054720728838 + 10/12 23:50:00,15.6,15.6,19.593021686691466 + 10/12 24:00:00,15.6,15.6,19.612481151803999 + 10/13 00:10:00,15.6,15.6,19.631335037766033 + 10/13 00:20:00,15.6,15.6,19.64920249315754 + 10/13 00:30:00,15.6,15.6,19.666040916839348 + 10/13 00:40:00,15.6,15.6,19.682005723865296 + 10/13 00:50:00,15.6,15.6,19.697069520790988 + 10/13 01:00:00,15.6,15.6,19.711465039011828 + 10/13 01:10:00,15.6,15.6,19.72464277087502 + 10/13 01:20:00,15.6,15.6,19.737211741907634 + 10/13 01:30:00,15.6,15.6,19.749325435682427 + 10/13 01:40:00,15.6,15.6,19.760945343986515 + 10/13 01:50:00,15.6,15.6,19.772206577256136 + 10/13 02:00:00,15.6,15.6,19.78316573811267 + 10/13 02:10:00,15.6,15.6,19.792983936533156 + 10/13 02:20:00,15.6,15.6,19.802513522846728 + 10/13 02:30:00,15.6,15.6,19.81172548651366 + 10/13 02:40:00,15.6,15.6,19.820638207728174 + 10/13 02:50:00,15.6,15.6,19.829353127112915 + 10/13 03:00:00,15.6,15.6,19.837811991500126 + 10/13 03:10:00,15.6,15.6,19.84504769711748 + 10/13 03:20:00,15.6,15.6,19.852167881091753 + 10/13 03:30:00,15.6,15.6,19.85909728397694 + 10/13 03:40:00,15.6,15.6,19.866036822471359 + 10/13 03:50:00,15.6,15.6,19.87288229566853 + 10/13 04:00:00,15.6,15.6,19.879636623882616 + 10/13 04:10:00,15.6,15.6,19.887126719907568 + 10/13 04:20:00,15.6,15.6,19.894390552590367 + 10/13 04:30:00,15.6,15.6,19.901573121103977 + 10/13 04:40:00,15.6,15.6,19.9086177211846 + 10/13 04:50:00,15.6,15.6,19.915543465714334 + 10/13 05:00:00,15.6,15.6,19.922492534850436 + 10/13 05:10:00,15.6,15.6,19.93063037570217 + 10/13 05:20:00,15.6,15.6,19.938709119941696 + 10/13 05:30:00,15.6,15.6,19.946606618162617 + 10/13 05:40:00,15.6,15.6,19.95426266884369 + 10/13 05:50:00,15.6,15.6,19.96166553967759 + 10/13 06:00:00,15.6,15.6,19.968778916999037 + 10/13 06:10:00,15.6,15.6,17.965046988907717 + 10/13 06:20:00,15.6,15.6,17.736106854290726 + 10/13 06:30:00,15.6,15.6,17.653752388645246 + 10/13 06:40:00,15.6,15.6,17.590243345476613 + 10/13 06:50:00,15.6,15.6,17.540508395385904 + 10/13 07:00:00,15.6,15.6,17.49902144806227 + 10/13 07:10:00,15.6,15.6,16.013227341574657 + 10/13 07:20:00,15.6,15.6,15.795894214959026 + 10/13 07:30:00,15.6,15.6,15.693491572587709 + 10/13 07:40:00,15.6,15.6,15.60824027370137 + 10/13 07:50:00,15.6,15.6,15.535647077191224 + 10/13 08:00:00,15.448648648648648,15.448648648648648,15.471274255972583 + 10/13 08:10:00,15.381381381381381,15.381381381381381,15.38777942023546 + 10/13 08:20:00,15.314114114114114,15.314114114114114,15.324356744816848 + 10/13 08:30:00,15.246846846846847,15.246846846846847,15.271973050633435 + 10/13 08:40:00,15.17957957957958,15.17957957957958,15.222295789764774 + 10/13 08:50:00,15.112312312312313,15.112312312312313,15.175595567728177 + 10/13 09:00:00,15.045045045045045,15.045045045045045,15.131674633965539 + 10/13 09:10:00,14.998798798798799,14.998798798798799,15.088470136573605 + 10/13 09:20:00,14.952552552552552,14.952552552552552,15.038252394426227 + 10/13 09:30:00,14.906306306306306,14.906306306306306,15.000572797184228 + 10/13 09:40:00,14.86006006006006,14.86006006006006,14.964893804532688 + 10/13 09:50:00,14.813813813813815,14.813813813813815,14.930820952321158 + 10/13 10:00:00,14.767567567567568,14.767567567567568,14.898314359293947 + 10/13 10:10:00,14.696096096096096,14.696096096096096,14.867112411364138 + 10/13 10:20:00,14.624624624624625,14.624624624624625,14.834029644380612 + 10/13 10:30:00,14.553153153153153,14.553153153153153,14.805569333581856 + 10/13 10:40:00,14.481681681681682,14.481681681681682,14.778210800853632 + 10/13 10:50:00,14.41021021021021,14.41021021021021,14.751892717085788 + 10/13 11:00:00,14.338738738738739,14.338738738738739,14.726624210998742 + 10/13 11:10:00,14.267267267267269,14.267267267267269,14.70328404836636 + 10/13 11:20:00,14.195795795795796,14.195795795795796,14.688286007643827 + 10/13 11:30:00,14.124324324324326,14.124324324324326,14.664856022063189 + 10/13 11:40:00,14.052852852852853,14.052852852852853,14.6421673863042 + 10/13 11:50:00,13.981381381381383,13.981381381381383,14.620750552259464 + 10/13 12:00:00,13.90990990990991,13.90990990990991,14.600395397310383 + 10/13 12:10:00,13.863663663663666,13.863663663663666,14.580947068012098 + 10/13 12:20:00,13.817417417417417,13.817417417417417,14.554995996723676 + 10/13 12:30:00,13.771171171171173,13.771171171171173,14.539584676674562 + 10/13 12:40:00,13.724924924924926,13.724924924924926,14.525273893039948 + 10/13 12:50:00,13.67867867867868,13.67867867867868,14.511534988062373 + 10/13 13:00:00,13.632432432432433,13.632432432432433,14.498445345789128 + 10/13 13:10:00,13.514714714714716,13.514714714714716,14.48646780449043 + 10/13 13:20:00,13.396996996996997,13.396996996996997,14.479465110282423 + 10/13 13:30:00,13.27927927927928,13.27927927927928,14.468713276446838 + 10/13 13:40:00,13.161561561561563,13.161561561561563,14.455464766041012 + 10/13 13:50:00,13.043843843843846,13.043843843843846,14.445737789752135 + 10/13 14:00:00,12.926126126126127,12.926126126126127,14.436911021234755 + 10/13 14:10:00,12.87987987987988,12.87987987987988,14.425544750977022 + 10/13 14:20:00,12.833633633633636,12.833633633633636,14.420578958391282 + 10/13 14:30:00,12.8,12.8,14.413481104420585 + 10/13 14:40:00,12.8,12.8,14.405710815356164 + 10/13 14:50:00,12.8,12.8,14.397861825437128 + 10/13 15:00:00,12.8,12.8,14.392707866681576 + 10/13 15:05:00,12.8,12.8,16.553365727913979 + 10/13 15:10:00,12.8,12.8,16.55205824923759 + 10/13 15:20:00,12.8,12.8,16.799011207431105 + 10/13 15:30:00,12.8,12.8,16.89785347195365 + 10/13 15:40:00,12.8,12.8,16.97363961689728 + 10/13 15:50:00,12.8,12.8,17.033953543063693 + 10/13 16:00:00,12.8,12.8,17.084153287380649 + 10/13 16:10:00,12.8,12.8,17.152937011300659 + 10/13 16:20:00,12.8,12.8,17.207407999519828 + 10/13 16:30:00,12.8,12.8,17.240039361774909 + 10/13 16:40:00,12.8,12.8,17.269593969716366 + 10/13 16:50:00,12.8,12.8,17.297063779958099 + 10/13 17:00:00,12.8,12.8,17.322820462636409 + 10/13 17:10:00,12.892492492492494,12.892492492492494,17.360641693020108 + 10/13 17:20:00,12.984984984984987,12.984984984984987,17.391728807780209 + 10/13 17:30:00,13.077477477477478,13.077477477477478,17.415994552884596 + 10/13 17:40:00,13.169969969969971,13.169969969969971,17.439402276069868 + 10/13 17:50:00,13.262462462462464,13.262462462462464,17.461725801025943 + 10/13 18:00:00,13.354954954954956,13.354954954954956,17.48308385239105 + 10/13 18:10:00,13.472672672672673,13.472672672672673,17.503658692013656 + 10/13 18:20:00,13.590390390390392,13.590390390390392,17.523875046414564 + 10/13 18:30:00,13.708108108108109,13.708108108108109,17.54273045427893 + 10/13 18:40:00,13.825825825825826,13.825825825825826,17.560277896867019 + 10/13 18:50:00,13.943543543543545,13.943543543543545,17.5765219149714 + 10/13 19:00:00,14.061261261261262,14.061261261261262,17.59169908452225 + 10/13 19:10:00,14.153753753753755,14.153753753753755,17.6189289899056 + 10/13 19:20:00,14.246246246246246,14.246246246246246,17.632540149611054 + 10/13 19:30:00,14.338738738738739,14.338738738738739,17.645162865942426 + 10/13 19:40:00,14.431231231231232,14.431231231231232,17.657085073890458 + 10/13 19:50:00,14.523723723723723,14.523723723723723,17.66845933217282 + 10/13 20:00:00,14.616216216216217,14.616216216216217,17.679383926471766 + 10/13 20:10:00,14.641441441441442,14.641441441441442,17.667374562914185 + 10/13 20:20:00,14.666666666666666,14.666666666666666,17.681784477755934 + 10/13 20:30:00,14.691891891891892,14.691891891891892,17.691270621203168 + 10/13 20:40:00,14.717117117117118,14.717117117117118,17.70028097313475 + 10/13 20:50:00,14.742342342342342,14.742342342342342,17.70888411401725 + 10/13 21:00:00,14.767567567567568,14.767567567567568,17.717115063349714 + 10/13 21:10:00,14.813813813813815,14.813813813813815,17.72485527273903 + 10/13 21:20:00,14.860060060060059,14.860060060060059,17.731837522534137 + 10/13 21:30:00,14.906306306306306,14.906306306306306,17.738616634006847 + 10/13 21:40:00,14.952552552552552,14.952552552552552,17.74501149666508 + 10/13 21:50:00,14.998798798798799,14.998798798798799,17.75128811445917 + 10/13 22:00:00,15.045045045045045,15.045045045045045,17.757440688820276 + 10/13 22:10:00,15.01981981981982,15.01981981981982,19.13061158296383 + 10/13 22:20:00,14.994594594594594,14.994594594594594,19.274408007687606 + 10/13 22:30:00,14.96936936936937,14.96936936936937,19.337714940921 + 10/13 22:40:00,14.944144144144144,14.944144144144144,19.387647738896605 + 10/13 22:50:00,14.91891891891892,14.91891891891892,19.427917990599306 + 10/13 23:00:00,14.893693693693694,14.893693693693694,19.461667928725004 + 10/13 23:10:00,14.93993993993994,14.93993993993994,19.490735743873253 + 10/13 23:20:00,14.986186186186187,14.986186186186187,19.516411661396483 + 10/13 23:30:00,15.032432432432433,15.032432432432433,19.539517912727488 + 10/13 23:40:00,15.078678678678678,15.078678678678678,19.56071569868093 + 10/13 23:50:00,15.124924924924925,15.124924924924925,19.580386448164874 + 10/13 24:00:00,15.17117117117117,15.17117117117117,19.598891446336894 + 10/14 00:10:00,15.217417417417418,15.217417417417418,19.617292763496879 + 10/14 00:20:00,15.263663663663664,15.263663663663664,19.63533295213516 + 10/14 00:30:00,15.30990990990991,15.30990990990991,19.65252404617258 + 10/14 00:40:00,15.356156156156157,15.356156156156157,19.6691247042567 + 10/14 00:50:00,15.402402402402402,15.402402402402402,19.6849533658853 + 10/14 01:00:00,15.448648648648648,15.448648648648648,19.70007638816096 + 10/14 01:10:00,15.448648648648648,15.448648648648648,19.714483400267846 + 10/14 01:20:00,15.448648648648648,15.448648648648648,19.728014892019784 + 10/14 01:30:00,15.448648648648648,15.448648648648648,19.74094665870295 + 10/14 01:40:00,15.448648648648648,15.448648648648648,19.753218432238634 + 10/14 01:50:00,15.448648648648648,15.448648648648648,19.764924695643658 + 10/14 02:00:00,15.448648648648648,15.448648648648648,19.776106577610468 + 10/14 02:10:00,15.473873873873874,15.473873873873874,19.786713496282436 + 10/14 02:20:00,15.499099099099098,15.499099099099098,19.79690763236327 + 10/14 02:30:00,15.524324324324324,15.524324324324324,19.80673000554445 + 10/14 02:40:00,15.54954954954955,15.54954954954955,19.816162244683985 + 10/14 02:50:00,15.574774774774774,15.574774774774774,19.825274845116064 + 10/14 03:00:00,15.6,15.6,19.834006930887214 + 10/14 03:10:00,15.6,15.6,19.842598971135297 + 10/14 03:20:00,15.6,15.6,19.850788712435745 + 10/14 03:30:00,15.6,15.6,19.858877335175135 + 10/14 03:40:00,15.6,15.6,19.866809293087987 + 10/14 03:50:00,15.6,15.6,19.87461157193545 + 10/14 04:00:00,15.6,15.6,19.88238701654039 + 10/14 04:10:00,15.6,15.6,19.890073155631517 + 10/14 04:20:00,15.6,15.6,19.89771387641801 + 10/14 04:30:00,15.6,15.6,19.905078675573575 + 10/14 04:40:00,15.6,15.6,19.912169767241687 + 10/14 04:50:00,15.6,15.6,19.918960468269846 + 10/14 05:00:00,15.6,15.6,19.925540358012005 + 10/14 05:10:00,15.6,15.6,19.931862855069519 + 10/14 05:20:00,15.6,15.6,19.93814884220261 + 10/14 05:30:00,15.6,15.6,19.944257276203247 + 10/14 05:40:00,15.6,15.6,19.95019860218963 + 10/14 05:50:00,15.6,15.6,19.95608747415785 + 10/14 06:00:00,15.6,15.6,19.96182397942276 + 10/14 06:10:00,15.6,15.6,19.304208079093124 + 10/14 06:20:00,15.6,15.6,19.23961705498391 + 10/14 06:30:00,15.6,15.6,19.215600193174635 + 10/14 06:40:00,15.6,15.6,19.197716972645894 + 10/14 06:50:00,15.6,15.6,19.18386730949096 + 10/14 07:00:00,15.6,15.6,19.171877314847053 + 10/14 07:10:00,15.6,15.6,18.085552223868257 + 10/14 07:20:00,15.6,15.6,17.940574612514284 + 10/14 07:30:00,15.6,15.6,17.87876467366549 + 10/14 07:40:00,15.457057057057057,15.457057057057057,17.82762356516762 + 10/14 07:50:00,15.314114114114114,15.314114114114114,17.78410568012081 + 10/14 08:00:00,15.17117117117117,15.17117117117117,17.745341252060919 + 10/14 08:10:00,15.078678678678678,15.078678678678678,17.709292053218264 + 10/14 08:20:00,14.986186186186187,14.986186186186187,17.665871892981003 + 10/14 08:30:00,14.893693693693694,14.893693693693694,17.63266171493524 + 10/14 08:40:00,14.801201201201203,14.801201201201203,17.60060494782513 + 10/14 08:50:00,14.70870870870871,14.70870870870871,17.569863142452556 + 10/14 09:00:00,14.616216216216217,14.616216216216217,17.540429445316815 + 10/14 09:10:00,14.498498498498499,14.498498498498499,17.511850446619215 + 10/14 09:20:00,14.38078078078078,14.38078078078078,17.475343460943639 + 10/14 09:30:00,14.263063063063063,14.263063063063063,17.448404450634006 + 10/14 09:40:00,14.145345345345346,14.145345345345346,17.42224590753078 + 10/14 09:50:00,14.027627627627627,14.027627627627627,17.39694837391158 + 10/14 10:00:00,13.90990990990991,13.90990990990991,17.372654805039596 + 10/14 10:10:00,13.796396396396398,13.796396396396398,17.34946914540412 + 10/14 10:20:00,13.682882882882883,13.682882882882883,17.328541779552937 + 10/14 10:30:00,13.56936936936937,13.56936936936937,17.308334939334029 + 10/14 10:40:00,13.455855855855857,13.455855855855857,17.28908790116649 + 10/14 10:50:00,13.342342342342344,13.342342342342344,17.270476032181919 + 10/14 11:00:00,13.22882882882883,13.22882882882883,17.252533191708424 + 10/14 11:10:00,13.203603603603604,13.203603603603604,17.235458666751879 + 10/14 11:20:00,13.17837837837838,13.17837837837838,17.21953374694907 + 10/14 11:30:00,13.153153153153154,13.153153153153154,17.204448367290369 + 10/14 11:40:00,13.12792792792793,13.12792792792793,17.190248466410169 + 10/14 11:50:00,13.102702702702704,13.102702702702704,17.176891186941118 + 10/14 12:00:00,13.077477477477478,13.077477477477478,17.16434440620073 + 10/14 12:10:00,13.031231231231232,13.031231231231232,17.15276072661939 + 10/14 12:20:00,12.984984984984987,12.984984984984987,17.140446762234583 + 10/14 12:30:00,12.938738738738739,12.938738738738739,17.128886884756864 + 10/14 12:40:00,12.892492492492494,12.892492492492494,17.1177716186451 + 10/14 12:50:00,12.846246246246248,12.846246246246248,17.10741894460656 + 10/14 13:00:00,12.8,12.8,17.097712566159875 + 10/14 13:10:00,12.8,12.8,17.0884851355401 + 10/14 13:20:00,12.8,12.8,17.08079289710708 + 10/14 13:30:00,12.8,12.8,17.07350078786404 + 10/14 13:40:00,12.8,12.8,17.066842790693089 + 10/14 13:50:00,12.8,12.8,17.060667738312629 + 10/14 14:00:00,12.8,12.8,17.055013247631423 + 10/14 14:10:00,12.8,12.8,17.049930274087076 + 10/14 14:20:00,12.8,12.8,17.04548651035766 + 10/14 14:30:00,12.8,12.8,17.041476631353349 + 10/14 14:40:00,12.8,12.8,17.037947186548587 + 10/14 14:50:00,12.8,12.8,17.034895975058477 + 10/14 15:00:00,12.8,12.8,17.03232412692436 + 10/14 15:10:00,12.8,12.8,17.030380684492508 + 10/14 15:20:00,12.8,12.8,17.029716174594296 + 10/14 15:30:00,12.8,12.8,17.02951242915178 + 10/14 15:40:00,12.8,12.8,17.03000856135095 + 10/14 15:50:00,12.8,12.8,17.03120554510442 + 10/14 16:00:00,12.8,12.8,17.033136663044009 + 10/14 16:10:00,12.8,12.8,17.048967215507749 + 10/14 16:20:00,12.8,12.8,17.060392020338655 + 10/14 16:30:00,12.8,12.8,17.063311191668235 + 10/14 16:40:00,12.8,12.8,17.066532250065337 + 10/14 16:50:00,12.8,12.8,17.07053886654554 + 10/14 17:00:00,12.8,12.8,17.07510253874014 + 10/14 17:10:00,12.8,12.8,18.84928325820791 + 10/14 17:20:00,12.8,12.8,19.065094879062025 + 10/14 17:30:00,12.8,12.8,19.152328489929 + 10/14 17:40:00,12.8,12.8,19.221207844184297 + 10/14 17:50:00,12.85885885885886,12.85885885885886,19.276897980472588 + 10/14 18:00:00,12.926126126126127,12.926126126126127,19.323842410708804 + 10/14 18:10:00,12.976576576576577,12.976576576576577,19.377509983294464 + 10/14 18:20:00,13.027027027027028,13.027027027027028,19.41434726974059 + 10/14 18:30:00,13.077477477477478,13.077477477477478,19.44665255831127 + 10/14 18:40:00,13.127927927927928,13.127927927927928,19.475445020889486 + 10/14 18:50:00,13.17837837837838,13.17837837837838,19.501199591110799 + 10/14 19:00:00,13.22882882882883,13.22882882882883,19.52435292075488 + 10/14 19:10:00,13.296096096096097,13.296096096096097,19.54568304966547 + 10/14 19:20:00,13.363363363363364,13.363363363363364,19.565820080918266 + 10/14 19:30:00,13.430630630630632,13.430630630630632,19.584477167569806 + 10/14 19:40:00,13.497897897897899,13.497897897897899,19.60201062924701 + 10/14 19:50:00,13.565165165165166,13.565165165165166,19.618390357215625 + 10/14 20:00:00,13.632432432432433,13.632432432432433,19.633874963448883 + 10/14 20:10:00,13.703903903903905,13.703903903903905,19.62588386016025 + 10/14 20:20:00,13.775375375375376,13.775375375375376,19.63887423499108 + 10/14 20:30:00,13.846846846846847,13.846846846846847,19.651422095627486 + 10/14 20:40:00,13.918318318318319,13.918318318318319,19.6632913455756 + 10/14 20:50:00,13.989789789789791,13.989789789789791,19.674766927507919 + 10/14 21:00:00,14.061261261261262,14.061261261261262,19.685937230464807 + 10/14 21:10:00,14.107507507507508,14.107507507507508,19.6964544087125 + 10/14 21:20:00,14.153753753753755,14.153753753753755,19.706926276046774 + 10/14 21:30:00,14.2,14.2,19.71699663792142 + 10/14 21:40:00,14.246246246246246,14.246246246246246,19.72673162346425 + 10/14 21:50:00,14.292492492492493,14.292492492492493,19.736208686740178 + 10/14 22:00:00,14.338738738738739,14.338738738738739,19.74536868612614 + 10/14 22:10:00,14.338738738738739,14.338738738738739,19.75467296747849 + 10/14 22:20:00,14.338738738738739,14.338738738738739,19.763280740343839 + 10/14 22:30:00,14.338738738738739,14.338738738738739,19.771358251254545 + 10/14 22:40:00,14.338738738738739,14.338738738738739,19.779051318486347 + 10/14 22:50:00,14.338738738738739,14.338738738738739,19.786385335776737 + 10/14 23:00:00,14.338738738738739,14.338738738738739,19.793395371828397 + 10/14 23:10:00,14.41021021021021,14.41021021021021,19.800012210011248 + 10/14 23:20:00,14.481681681681682,14.481681681681682,19.80675477631594 + 10/14 23:30:00,14.553153153153153,14.553153153153153,19.81353145718369 + 10/14 23:40:00,14.624624624624625,14.624624624624625,19.82040504956942 + 10/14 23:50:00,14.696096096096096,14.696096096096096,19.827256327273387 + 10/14 24:00:00,14.767567567567568,14.767567567567568,19.834069026652899 + 10/15 00:10:00,14.788588588588589,14.788588588588589,19.84111183118611 + 10/15 00:20:00,14.809609609609609,14.809609609609609,19.848099007876777 + 10/15 00:30:00,14.83063063063063,14.83063063063063,19.854966469663454 + 10/15 00:40:00,14.85165165165165,14.85165165165165,19.861675038085484 + 10/15 00:50:00,14.872672672672673,14.872672672672673,19.86818559119534 + 10/15 01:00:00,14.893693693693694,14.893693693693694,19.87450209637496 + 10/15 01:10:00,14.91891891891892,14.91891891891892,19.880376273167383 + 10/15 01:20:00,14.944144144144144,14.944144144144144,19.886142300106568 + 10/15 01:30:00,14.96936936936937,14.96936936936937,19.891764648777639 + 10/15 01:40:00,14.994594594594595,14.994594594594595,19.897246294489507 + 10/15 01:50:00,15.01981981981982,15.01981981981982,19.902600269489449 + 10/15 02:00:00,15.045045045045045,15.045045045045045,19.907748005502776 + 10/15 02:10:00,15.045045045045045,15.045045045045045,19.91252118250081 + 10/15 02:20:00,15.045045045045045,15.045045045045045,19.91684262081271 + 10/15 02:30:00,15.045045045045045,15.045045045045045,19.92096730955343 + 10/15 02:40:00,15.045045045045045,15.045045045045045,19.924827616479435 + 10/15 02:50:00,15.045045045045045,15.045045045045045,19.92843780272643 + 10/15 03:00:00,15.045045045045045,15.045045045045045,19.931974601376738 + 10/15 03:10:00,15.045045045045045,15.045045045045045,19.935667236561476 + 10/15 03:20:00,15.045045045045045,15.045045045045045,19.93954744166783 + 10/15 03:30:00,15.045045045045045,15.045045045045045,19.943365347545507 + 10/15 03:40:00,15.045045045045045,15.045045045045045,19.94714064351664 + 10/15 03:50:00,15.045045045045045,15.045045045045045,19.95087190660125 + 10/15 04:00:00,15.045045045045045,15.045045045045045,19.954572721245286 + 10/15 04:10:00,15.112312312312313,15.112312312312313,19.958446810558358 + 10/15 04:20:00,15.17957957957958,15.17957957957958,19.96243635079599 + 10/15 04:30:00,15.246846846846847,15.246846846846847,19.966500116388226 + 10/15 04:40:00,15.314114114114114,15.314114114114114,19.970655541207515 + 10/15 04:50:00,15.381381381381381,15.381381381381381,19.974967282098967 + 10/15 05:00:00,15.448648648648648,15.448648648648648,19.979348961380397 + 10/15 05:10:00,15.427627627627628,15.427627627627628,19.983153282915276 + 10/15 05:20:00,15.406606606606607,15.406606606606607,19.98678923490896 + 10/15 05:30:00,15.385585585585586,15.385585585585586,19.990151331980074 + 10/15 05:40:00,15.364564564564564,15.364564564564564,19.9933973830768 + 10/15 05:50:00,15.343543543543543,15.343543543543543,19.996456704995656 + 10/15 06:00:00,15.322522522522523,15.322522522522523,19.99934941729577 + 10/15 06:10:00,15.368768768768769,15.368768768768769,20.025096348999324 + 10/15 06:20:00,15.415015015015016,15.415015015015016,20.02841428533972 + 10/15 06:30:00,15.46126126126126,15.46126126126126,20.031876829111444 + 10/15 06:40:00,15.507507507507507,15.507507507507507,20.035468275662109 + 10/15 06:50:00,15.553753753753754,15.553753753753754,20.03876295123338 + 10/15 07:00:00,15.6,15.6,20.041177448571763 + 10/15 07:10:00,15.507507507507507,15.507507507507507,18.640774511063783 + 10/15 07:20:00,15.415015015015016,15.415015015015016,18.476735477106599 + 10/15 07:30:00,15.322522522522523,15.322522522522523,18.412453988241503 + 10/15 07:40:00,15.23003003003003,15.23003003003003,18.360761717707697 + 10/15 07:50:00,15.137537537537538,15.137537537537538,18.31802538881608 + 10/15 08:00:00,15.045045045045045,15.045045045045045,18.280992050116468 + 10/15 08:10:00,14.952552552552552,14.952552552552552,18.247553407203968 + 10/15 08:20:00,14.86006006006006,14.86006006006006,18.207963051101918 + 10/15 08:30:00,14.767567567567568,14.767567567567568,18.178710621707347 + 10/15 08:40:00,14.675075075075075,14.675075075075075,18.150952094618487 + 10/15 08:50:00,14.582582582582584,14.582582582582584,18.124428880635607 + 10/15 09:00:00,14.49009009009009,14.49009009009009,18.099075861004367 + 10/15 09:10:00,14.372372372372372,14.372372372372372,18.074275793566878 + 10/15 09:20:00,14.254654654654655,14.254654654654655,18.042279068070444 + 10/15 09:30:00,14.136936936936938,14.136936936936938,18.02008916708345 + 10/15 09:40:00,14.01921921921922,14.01921921921922,17.99917502888703 + 10/15 09:50:00,13.901501501501502,13.901501501501502,17.979496715813167 + 10/15 10:00:00,13.783783783783785,13.783783783783785,17.960955367861034 + 10/15 10:10:00,13.640840840840842,13.640840840840842,17.943542438587185 + 10/15 10:20:00,13.497897897897899,13.497897897897899,17.928142632485149 + 10/15 10:30:00,13.354954954954956,13.354954954954956,17.913345138072896 + 10/15 10:40:00,13.212012012012013,13.212012012012013,17.898979750755634 + 10/15 10:50:00,13.06906906906907,13.06906906906907,17.88450433233129 + 10/15 11:00:00,12.926126126126127,12.926126126126127,17.86970118133255 + 10/15 11:10:00,12.87987987987988,12.87987987987988,17.85523559989565 + 10/15 11:20:00,12.833633633633636,12.833633633633636,17.837402585149947 + 10/15 11:30:00,12.8,12.8,17.82034839027644 + 10/15 11:40:00,12.8,12.8,17.80393432988785 + 10/15 11:50:00,12.8,12.8,17.789823411411498 + 10/15 12:00:00,12.8,12.8,17.77832312848434 + 10/15 12:10:00,12.8,12.8,17.768911878667848 + 10/15 12:20:00,12.8,12.8,17.758814434000955 + 10/15 12:30:00,12.8,12.8,17.75043627381102 + 10/15 12:40:00,12.8,12.8,17.742180401894559 + 10/15 12:50:00,12.8,12.8,17.732988853744275 + 10/15 13:00:00,12.8,12.8,17.722168944454887 + 10/15 13:10:00,12.8,12.8,17.709899091366567 + 10/15 13:20:00,12.8,12.8,17.696965447910338 + 10/15 13:30:00,12.8,12.8,17.68298474674959 + 10/15 13:40:00,12.8,12.8,17.669251531684958 + 10/15 13:50:00,12.8,12.8,17.65702793502426 + 10/15 14:00:00,12.8,12.8,17.646706484581217 + 10/15 14:10:00,12.8,12.8,17.638518298734735 + 10/15 14:20:00,12.8,12.8,17.63299112700438 + 10/15 14:30:00,12.8,12.8,17.62882247419388 + 10/15 14:40:00,12.8,12.8,17.625799659152855 + 10/15 14:50:00,12.8,12.8,17.623588916220244 + 10/15 15:00:00,12.8,12.8,17.621980998846607 + 10/15 15:10:00,12.8,12.8,19.041984716043677 + 10/15 15:20:00,12.8,12.8,19.19349256149038 + 10/15 15:30:00,12.8,12.8,19.257490126228676 + 10/15 15:40:00,12.8,12.8,19.307668031365937 + 10/15 15:50:00,12.8,12.8,19.34832555825587 + 10/15 16:00:00,12.8,12.8,19.382881744336616 + 10/15 16:10:00,12.8,12.8,19.41459541790603 + 10/15 16:20:00,12.8,12.8,19.450590239352257 + 10/15 16:30:00,12.8,12.8,19.476920084535938 + 10/15 16:40:00,12.8,12.8,19.5008629166932 + 10/15 16:50:00,12.8,12.8,19.523034274008425 + 10/15 17:00:00,12.8,12.8,19.54330933174527 + 10/15 17:10:00,12.8,12.8,19.562378659501904 + 10/15 17:20:00,12.8,12.8,19.597602148239788 + 10/15 17:30:00,12.8,12.8,19.614444433921748 + 10/15 17:40:00,12.8,12.8,19.63057282572876 + 10/15 17:50:00,12.8,12.8,19.646106982379384 + 10/15 18:00:00,12.8,12.8,19.661210081465947 + 10/15 18:10:00,12.8,12.8,19.67586956661919 + 10/15 18:20:00,12.8,12.8,19.690950235576694 + 10/15 18:30:00,12.8,12.8,19.7050384097074 + 10/15 18:40:00,12.8,12.8,19.71824909517742 + 10/15 18:50:00,12.85885885885886,12.85885885885886,19.730512921580514 + 10/15 19:00:00,12.926126126126127,12.926126126126127,19.7419745610395 + 10/15 19:10:00,12.951351351351353,12.951351351351353,19.752512469961706 + 10/15 19:20:00,12.976576576576577,12.976576576576577,19.76177825486359 + 10/15 19:30:00,13.001801801801803,13.001801801801803,19.770474481673209 + 10/15 19:40:00,13.027027027027028,13.027027027027028,19.778540955361814 + 10/15 19:50:00,13.052252252252253,13.052252252252253,19.78625213107265 + 10/15 20:00:00,13.077477477477478,13.077477477477478,19.793584689503655 + 10/15 20:10:00,13.102702702702704,13.102702702702704,19.778219052412554 + 10/15 20:20:00,13.127927927927928,13.127927927927928,19.785468220683734 + 10/15 20:30:00,13.153153153153154,13.153153153153154,19.792312159594084 + 10/15 20:40:00,13.17837837837838,13.17837837837838,19.79907669868494 + 10/15 20:50:00,13.203603603603604,13.203603603603604,19.80557312657441 + 10/15 21:00:00,13.22882882882883,13.22882882882883,19.81184673293647 + 10/15 21:10:00,13.32132132132132,13.32132132132132,19.81825141569213 + 10/15 21:20:00,13.413813813813816,13.413813813813816,19.82374248439368 + 10/15 21:30:00,13.506306306306307,13.506306306306307,19.829449757352223 + 10/15 21:40:00,13.5987987987988,13.5987987987988,19.83509931300321 + 10/15 21:50:00,13.691291291291293,13.691291291291293,19.840875524532004 + 10/15 22:00:00,13.783783783783785,13.783783783783785,19.846680813891749 + 10/15 22:10:00,13.83003003003003,13.83003003003003,19.85205629897134 + 10/15 22:20:00,13.876276276276276,13.876276276276276,19.857813731026775 + 10/15 22:30:00,13.922522522522524,13.922522522522524,19.863446223542505 + 10/15 22:40:00,13.968768768768769,13.968768768768769,19.869036757528116 + 10/15 22:50:00,14.015015015015015,14.015015015015015,19.87447919018131 + 10/15 23:00:00,14.061261261261262,14.061261261261262,19.87973293557298 + 10/15 23:10:00,14.082282282282283,14.082282282282283,19.8851189274006 + 10/15 23:20:00,14.103303303303303,14.103303303303303,19.890406827317884 + 10/15 23:30:00,14.124324324324324,14.124324324324324,19.895505859014166 + 10/15 23:40:00,14.145345345345346,14.145345345345346,19.90043129669787 + 10/15 23:50:00,14.166366366366367,14.166366366366367,19.90516203520971 + 10/15 24:00:00,14.187387387387388,14.187387387387388,19.9097027421951 + 10/16 00:10:00,14.212612612612613,14.212612612612613,19.91382587318484 + 10/16 00:20:00,14.237837837837838,14.237837837837838,19.917448446196809 + 10/16 00:30:00,14.263063063063063,14.263063063063063,19.9209655685379 + 10/16 00:40:00,14.288288288288289,14.288288288288289,19.924309612582524 + 10/16 00:50:00,14.313513513513513,14.313513513513513,19.927494533031525 + 10/16 01:00:00,14.338738738738739,14.338738738738739,19.930724909917236 + 10/16 01:10:00,14.363963963963965,14.363963963963965,19.934111502796815 + 10/16 01:20:00,14.389189189189189,14.389189189189189,19.937707183320673 + 10/16 01:30:00,14.414414414414415,14.414414414414415,19.941281760652445 + 10/16 01:40:00,14.439639639639639,14.439639639639639,19.944806376863335 + 10/16 01:50:00,14.464864864864865,14.464864864864865,19.94836402587907 + 10/16 02:00:00,14.49009009009009,14.49009009009009,19.9518969731213 + 10/16 02:10:00,14.511111111111111,14.511111111111111,19.955578530117145 + 10/16 02:20:00,14.532132132132132,14.532132132132132,19.95924310342965 + 10/16 02:30:00,14.553153153153153,14.553153153153153,19.96277876918384 + 10/16 02:40:00,14.574174174174175,14.574174174174175,19.966282323574185 + 10/16 02:50:00,14.595195195195196,14.595195195195196,19.969762645846484 + 10/16 03:00:00,14.616216216216217,14.616216216216217,19.9731812793111 + 10/16 03:10:00,14.616216216216217,14.616216216216217,19.975785668792608 + 10/16 03:20:00,14.616216216216217,14.616216216216217,19.977216748130677 + 10/16 03:30:00,14.616216216216217,14.616216216216217,19.978405986344467 + 10/16 03:40:00,14.616216216216217,14.616216216216217,19.97920856351872 + 10/16 03:50:00,14.616216216216217,14.616216216216217,19.97987382298021 + 10/16 04:00:00,14.616216216216217,14.616216216216217,19.980480372813813 + 10/16 04:10:00,14.641441441441442,14.641441441441442,19.981717488343067 + 10/16 04:20:00,14.666666666666666,14.666666666666666,19.98508014267937 + 10/16 04:30:00,14.691891891891892,14.691891891891892,19.98875758774838 + 10/16 04:40:00,14.717117117117118,14.717117117117118,19.993210099686299 + 10/16 04:50:00,14.742342342342342,14.742342342342342,19.997803025164463 + 10/16 05:00:00,14.767567567567568,14.767567567567568,20.00244233646424 + 10/16 05:10:00,14.788588588588589,14.788588588588589,20.00673857913656 + 10/16 05:20:00,14.809609609609609,14.809609609609609,20.009946548111196 + 10/16 05:30:00,14.83063063063063,14.83063063063063,20.012954604534806 + 10/16 05:40:00,14.85165165165165,14.85165165165165,20.015482190586885 + 10/16 05:50:00,14.872672672672673,14.872672672672673,20.017859770394023 + 10/16 06:00:00,14.893693693693694,14.893693693693694,20.02006781118438 + 10/16 06:10:00,14.893693693693694,14.893693693693694,18.027094571407198 + 10/16 06:20:00,14.893693693693694,14.893693693693694,17.793594843103724 + 10/16 06:30:00,14.893693693693694,14.893693693693694,17.70637615372296 + 10/16 06:40:00,14.893693693693694,14.893693693693694,17.638223896794068 + 10/16 06:50:00,14.893693693693694,14.893693693693694,17.584060262993935 + 10/16 07:00:00,14.893693693693694,14.893693693693694,17.538401438246966 + 10/16 07:10:00,14.826426426426427,14.826426426426427,16.062256611400767 + 10/16 07:20:00,14.759159159159159,14.759159159159159,15.845393992684985 + 10/16 07:30:00,14.691891891891892,14.691891891891892,15.743546848027849 + 10/16 07:40:00,14.624624624624625,14.624624624624625,15.659804537305384 + 10/16 07:50:00,14.557357357357358,14.557357357357358,15.589165935950178 + 10/16 08:00:00,14.49009009009009,14.49009009009009,15.527046127239569 + 10/16 08:05:00,14.393393393393394,14.393393393393394,15.441957665791947 + 10/16 08:10:00,14.393393393393394,14.393393393393394,15.442397319649512 + 10/16 08:20:00,14.296696696696696,14.296696696696696,15.378509167818426 + 10/16 08:30:00,14.2,14.2,15.325494894887474 + 10/16 08:40:00,14.103303303303303,14.103303303303303,15.275787886463324 + 10/16 08:50:00,14.006606606606607,14.006606606606607,15.228949410605578 + 10/16 09:00:00,13.90990990990991,13.90990990990991,15.184877795376253 + 10/16 09:10:00,13.796396396396398,13.796396396396398,15.143277747299715 + 10/16 09:20:00,13.682882882882883,13.682882882882883,15.093400145694286 + 10/16 09:30:00,13.56936936936937,13.56936936936937,15.055890752120558 + 10/16 09:40:00,13.455855855855857,13.455855855855857,15.020198088622882 + 10/16 09:50:00,13.342342342342344,13.342342342342344,14.985827930623847 + 10/16 10:00:00,13.22882882882883,13.22882882882883,14.952637336978669 + 10/16 10:10:00,13.111111111111113,13.111111111111113,14.920127760281592 + 10/16 10:15:00,12.993393393393394,12.993393393393394,14.886043126074157 + 10/16 10:20:00,12.993393393393394,12.993393393393394,14.885678223002279 + 10/16 10:30:00,12.875675675675677,12.875675675675677,14.854421637107944 + 10/16 10:40:00,12.8,12.8,14.825108725809742 + 10/16 10:50:00,12.8,12.8,14.79753891838966 + 10/16 11:00:00,12.8,12.8,14.77227180310713 + 10/16 11:10:00,12.8,12.8,14.749431769449167 + 10/16 11:20:00,12.8,12.8,14.738185776624075 + 10/16 11:30:00,12.8,12.8,14.719179549228837 + 10/16 11:40:00,12.8,12.8,14.700902165294142 + 10/16 11:50:00,12.8,12.8,14.682326162756834 + 10/16 12:00:00,12.8,12.8,14.662918076641722 + 10/16 12:10:00,12.8,12.8,14.6434047765874 + 10/16 12:20:00,12.8,12.8,14.614002444022585 + 10/16 12:30:00,12.8,12.8,14.594025548723217 + 10/16 12:40:00,12.8,12.8,14.57490945112553 + 10/16 12:50:00,12.8,12.8,14.557614599315525 + 10/16 13:00:00,12.8,12.8,14.542514993747089 + 10/16 13:10:00,12.8,12.8,14.529885939075113 + 10/16 13:20:00,12.8,12.8,14.522856260806 + 10/16 13:30:00,12.8,12.8,14.51287626406981 + 10/16 13:40:00,12.8,12.8,14.501202945373939 + 10/16 13:50:00,12.8,12.8,14.493280005462362 + 10/16 14:00:00,12.8,12.8,14.486400921499916 + 10/16 14:10:00,12.8,12.8,14.47695294489029 + 10/16 14:20:00,12.8,12.8,14.474646586875834 + 10/16 14:30:00,12.8,12.8,14.47005622359534 + 10/16 14:40:00,12.8,12.8,14.463856906085754 + 10/16 14:50:00,12.8,12.8,14.45814653619126 + 10/16 15:00:00,12.8,12.8,14.45395274122492 + 10/16 15:05:00,12.8,12.8,16.600465938268493 + 10/16 15:10:00,12.8,12.8,16.59765931846937 + 10/16 15:15:00,12.8,12.8,16.84816969284628 + 10/16 15:20:00,12.8,12.8,16.846674558251136 + 10/16 15:30:00,12.8,12.8,16.94470277503543 + 10/16 15:40:00,12.8,12.8,17.018406380084607 + 10/16 15:50:00,12.8,12.8,17.076879080253059 + 10/16 16:00:00,12.8,12.8,17.12492566682458 + 10/16 16:10:00,12.8,12.8,17.18982674680495 + 10/16 16:20:00,12.8,12.8,17.244380205308194 + 10/16 16:30:00,12.8,12.8,17.276177292523099 + 10/16 16:40:00,12.8,12.8,17.304900414076088 + 10/16 16:50:00,12.8,12.8,17.331559875198019 + 10/16 17:00:00,12.8,12.8,17.356301749830658 + 10/16 17:10:00,12.8,12.8,17.39242925805862 + 10/16 17:20:00,12.8,12.8,17.419927102400558 + 10/16 17:30:00,12.8,12.8,17.440399959637696 + 10/16 17:40:00,12.8,12.8,17.459496870703263 + 10/16 17:50:00,12.8,12.8,17.476493824094506 + 10/16 18:00:00,12.8,12.8,17.491977636757889 + 10/16 18:10:00,12.8,12.8,17.506677055114254 + 10/16 18:20:00,12.8,12.8,17.520617901243069 + 10/16 18:30:00,12.8,12.8,17.533849867344466 + 10/16 18:40:00,12.8,12.8,17.54629766032824 + 10/16 18:50:00,12.8,12.8,17.557929456841749 + 10/16 19:00:00,12.8,12.8,17.56885272666228 + 10/16 19:10:00,12.8,12.8,17.592043577845545 + 10/16 19:20:00,12.8,12.8,17.6026442048309 + 10/16 19:30:00,12.8,12.8,17.61223293499852 + 10/16 19:40:00,12.8,12.8,17.621256514999695 + 10/16 19:50:00,12.8,12.8,17.62969223557494 + 10/16 20:00:00,12.8,12.8,17.63765661070409 + 10/16 20:10:00,12.8,12.8,17.622631147571107 + 10/16 20:20:00,12.8,12.8,17.634232668540535 + 10/16 20:30:00,12.8,12.8,17.64165378238681 + 10/16 20:40:00,12.8,12.8,17.649260061472135 + 10/16 20:50:00,12.8,12.8,17.65704665869687 + 10/16 21:00:00,12.8,12.8,17.66495365955142 + 10/16 21:10:00,12.846246246246248,12.846246246246248,17.672874134265557 + 10/16 21:20:00,12.892492492492494,12.892492492492494,17.680457217240599 + 10/16 21:30:00,12.938738738738739,12.938738738738739,17.687645267015396 + 10/16 21:40:00,12.984984984984987,12.984984984984987,17.694411673993394 + 10/16 21:50:00,13.031231231231232,13.031231231231232,17.700738030895545 + 10/16 22:00:00,13.077477477477478,13.077477477477478,17.706782467322964 + 10/16 22:10:00,13.077477477477478,13.077477477477478,19.067994976820854 + 10/16 22:20:00,13.077477477477478,13.077477477477478,19.210993366366105 + 10/16 22:30:00,13.077477477477478,13.077477477477478,19.273739156683555 + 10/16 22:40:00,13.077477477477478,13.077477477477478,19.322989354056106 + 10/16 22:50:00,13.077477477477478,13.077477477477478,19.36267496945259 + 10/16 23:00:00,13.077477477477478,13.077477477477478,19.395889836357548 + 10/16 23:10:00,13.123723723723725,13.123723723723725,19.42498387584792 + 10/16 23:20:00,13.169969969969971,13.169969969969971,19.45113255518335 + 10/16 23:30:00,13.216216216216218,13.216216216216218,19.474581349462356 + 10/16 23:40:00,13.262462462462464,13.262462462462464,19.49610114309977 + 10/16 23:50:00,13.30870870870871,13.30870870870871,19.515941315346706 + 10/16 24:00:00,13.354954954954956,13.354954954954956,19.534382267344957 + 10/17 00:10:00,13.333933933933935,13.333933933933935,19.5508355929231 + 10/17 00:20:00,13.312912912912914,13.312912912912914,19.56718780167869 + 10/17 00:30:00,13.291891891891894,13.291891891891894,19.582323620199597 + 10/17 00:40:00,13.270870870870873,13.270870870870873,19.59667805456133 + 10/17 00:50:00,13.24984984984985,13.24984984984985,19.61007390351198 + 10/17 01:00:00,13.22882882882883,13.22882882882883,19.62265866937101 + 10/17 01:10:00,13.275075075075077,13.275075075075077,19.63462556868317 + 10/17 01:20:00,13.321321321321323,13.321321321321323,19.64498750960395 + 10/17 01:30:00,13.367567567567568,13.367567567567568,19.655237111750656 + 10/17 01:40:00,13.413813813813816,13.413813813813816,19.665070385473464 + 10/17 01:50:00,13.46006006006006,13.46006006006006,19.674708998102994 + 10/17 02:00:00,13.506306306306307,13.506306306306307,19.684189339092506 + 10/17 02:10:00,13.552552552552554,13.552552552552554,19.693821792250419 + 10/17 02:20:00,13.5987987987988,13.5987987987988,19.703759715140973 + 10/17 02:30:00,13.645045045045047,13.645045045045047,19.713626107127298 + 10/17 02:40:00,13.691291291291293,13.691291291291293,19.723476940206618 + 10/17 02:50:00,13.737537537537538,13.737537537537538,19.733274139962448 + 10/17 03:00:00,13.783783783783785,13.783783783783785,19.742919448633836 + 10/17 03:10:00,13.783783783783785,13.783783783783785,19.75209965293201 + 10/17 03:20:00,13.783783783783785,13.783783783783785,19.76092731645892 + 10/17 03:30:00,13.783783783783785,13.783783783783785,19.769337175826985 + 10/17 03:40:00,13.783783783783785,13.783783783783785,19.77732468411122 + 10/17 03:50:00,13.783783783783785,13.783783783783785,19.784860569194856 + 10/17 04:00:00,13.783783783783785,13.783783783783785,19.792080687385665 + 10/17 04:10:00,13.804804804804805,13.804804804804805,19.798837037233065 + 10/17 04:20:00,13.825825825825828,13.825825825825828,19.805359832218259 + 10/17 04:30:00,13.846846846846848,13.846846846846848,19.811700914617114 + 10/17 04:40:00,13.867867867867869,13.867867867867869,19.81785097125579 + 10/17 04:50:00,13.88888888888889,13.88888888888889,19.82384841853108 + 10/17 05:00:00,13.90990990990991,13.90990990990991,19.829773547139955 + 10/17 05:10:00,13.935135135135136,13.935135135135136,19.836228701429549 + 10/17 05:20:00,13.960360360360362,13.960360360360362,19.8421081622592 + 10/17 05:30:00,13.985585585585586,13.985585585585586,19.84780828401618 + 10/17 05:40:00,14.010810810810812,14.010810810810812,19.853192521113777 + 10/17 05:50:00,14.036036036036038,14.036036036036038,19.85852877408174 + 10/17 06:00:00,14.061261261261262,14.061261261261262,19.86374358368644 + 10/17 06:10:00,14.036036036036036,14.036036036036036,17.875288349411219 + 10/17 06:20:00,14.01081081081081,14.01081081081081,17.644249292042696 + 10/17 06:30:00,13.985585585585586,13.985585585585586,17.560042427688857 + 10/17 06:40:00,13.960360360360362,13.960360360360362,17.49466812788139 + 10/17 06:50:00,13.935135135135136,13.935135135135136,17.439418599660706 + 10/17 07:00:00,13.90990990990991,13.90990990990991,17.395093882200784 + 10/17 07:05:00,13.88888888888889,13.88888888888889,15.907161188070003 + 10/17 07:10:00,13.88888888888889,13.88888888888889,15.91353824492355 + 10/17 07:15:00,13.867867867867869,13.867867867867869,15.687240367770859 + 10/17 07:20:00,13.867867867867869,13.867867867867869,15.68546193340609 + 10/17 07:30:00,13.846846846846848,13.846846846846848,15.583028411346028 + 10/17 07:40:00,13.825825825825828,13.825825825825828,15.500600232017709 + 10/17 07:50:00,13.804804804804805,13.804804804804805,15.430179656827179 + 10/17 08:00:00,13.783783783783785,13.783783783783785,15.369060268976492 + 10/17 08:05:00,13.712312312312314,13.712312312312314,15.28903951581856 + 10/17 08:10:00,13.712312312312314,13.712312312312314,15.289207175927857 + 10/17 08:20:00,13.640840840840842,13.640840840840842,15.231457880256773 + 10/17 08:30:00,13.56936936936937,13.56936936936937,15.185860771439362 + 10/17 08:40:00,13.497897897897899,13.497897897897899,15.143622862705639 + 10/17 08:50:00,13.426426426426428,13.426426426426428,15.10390008759887 + 10/17 09:00:00,13.354954954954956,13.354954954954956,15.066310010233872 + 10/17 09:05:00,13.262462462462464,13.262462462462464,15.030246283420813 + 10/17 09:10:00,13.262462462462464,13.262462462462464,15.029966081770058 + 10/17 09:20:00,13.169969969969971,13.169969969969971,14.983478888421729 + 10/17 09:30:00,13.077477477477478,13.077477477477478,14.94903182825544 + 10/17 09:40:00,12.984984984984987,12.984984984984987,14.915613834421654 + 10/17 09:50:00,12.892492492492494,12.892492492492494,14.88335657342605 + 10/17 10:00:00,12.8,12.8,14.852369687599678 + 10/17 10:10:00,12.8,12.8,14.822565020561108 + 10/17 10:20:00,12.8,12.8,14.790197061454226 + 10/17 10:30:00,12.8,12.8,14.762060250005743 + 10/17 10:40:00,12.8,12.8,14.734949559089208 + 10/17 10:50:00,12.8,12.8,14.709159109938663 + 10/17 11:00:00,12.8,12.8,14.684771491958795 + 10/17 11:10:00,12.8,12.8,14.662077616259897 + 10/17 11:20:00,12.8,12.8,14.650519602808372 + 10/17 11:30:00,12.8,12.8,14.63084369338892 + 10/17 11:40:00,12.8,12.8,14.612424673295904 + 10/17 11:50:00,12.8,12.8,14.595607360132016 + 10/17 12:00:00,12.8,12.8,14.580224022032795 + 10/17 12:10:00,12.8,12.8,14.56611304157646 + 10/17 12:20:00,12.8,12.8,14.543395298533762 + 10/17 12:30:00,12.8,12.8,14.531157056691363 + 10/17 12:40:00,12.8,12.8,14.519714540632013 + 10/17 12:50:00,12.8,12.8,14.508710998652932 + 10/17 13:00:00,12.8,12.8,14.499055916003562 + 10/17 13:10:00,12.8,12.8,14.4908541475359 + 10/17 13:20:00,12.8,12.8,14.48510414756062 + 10/17 13:30:00,12.8,12.8,14.475425694931465 + 10/17 13:40:00,12.8,12.8,14.468562144262913 + 10/17 13:50:00,12.8,12.8,14.46200696530677 + 10/17 14:00:00,12.8,12.8,14.454407698838289 + 10/17 14:10:00,12.8,12.8,14.449731313470873 + 10/17 14:20:00,12.8,12.8,14.448970316529893 + 10/17 14:30:00,12.8,12.8,14.441936776140697 + 10/17 14:40:00,12.8,12.8,14.437540531468866 + 10/17 14:50:00,12.8,12.8,14.432742802330978 + 10/17 15:00:00,12.8,12.8,14.425299815311826 + 10/17 15:05:00,12.8,12.8,16.57128834976902 + 10/17 15:10:00,12.8,12.8,16.567055479939844 + 10/17 15:20:00,12.8,12.8,16.817036109784345 + 10/17 15:30:00,12.8,12.8,16.914870435778015 + 10/17 15:40:00,12.8,12.8,16.988254045135979 + 10/17 15:50:00,12.8,12.8,17.044917304610796 + 10/17 16:00:00,12.8,12.8,17.091403635684956 + 10/17 16:10:00,12.8,12.8,17.158627800053986 + 10/17 16:15:00,12.8,12.8,17.216057932252946 + 10/17 16:20:00,12.8,12.8,17.215711012462479 + 10/17 16:30:00,12.8,12.8,17.248292118083584 + 10/17 16:35:00,12.8,12.8,17.279169976958273 + 10/17 16:40:00,12.8,12.8,17.278878718545184 + 10/17 16:50:00,12.8,12.8,17.305345477785339 + 10/17 16:55:00,12.8,12.8,17.330117836160903 + 10/17 17:00:00,12.8,12.8,17.329984828073934 + 10/17 17:10:00,12.8,12.8,17.364382679230009 + 10/17 17:20:00,12.8,12.8,17.389951999374874 + 10/17 17:30:00,12.8,12.8,17.40787826544946 + 10/17 17:40:00,12.8,12.8,17.42429265406312 + 10/17 17:50:00,12.8,12.8,17.439371118609914 + 10/17 18:00:00,12.8,12.8,17.453727370374016 + 10/17 18:10:00,12.8,12.8,17.467364078187165 + 10/17 18:20:00,12.8,12.8,17.480447405187076 + 10/17 18:30:00,12.8,12.8,17.492734555089933 + 10/17 18:40:00,12.8,12.8,17.504211811641729 + 10/17 18:50:00,12.8,12.8,17.51498854671842 + 10/17 19:00:00,12.8,12.8,17.52510714744094 + 10/17 19:10:00,12.8,12.8,17.54759591008735 + 10/17 19:20:00,12.8,12.8,17.55748134388605 + 10/17 19:30:00,12.8,12.8,17.56641666064115 + 10/17 19:40:00,12.8,12.8,17.574936867593743 + 10/17 19:50:00,12.8,12.8,17.583052710971488 + 10/17 20:00:00,12.8,12.8,17.590791769518906 + 10/17 20:10:00,12.8,12.8,17.57577771931845 + 10/17 20:20:00,12.8,12.8,17.586846808252923 + 10/17 20:30:00,12.8,12.8,17.59346416711304 + 10/17 20:40:00,12.8,12.8,17.599543231664499 + 10/17 20:50:00,12.8,12.8,17.6054521335621 + 10/17 21:00:00,12.8,12.8,17.611127823167423 + 10/17 21:10:00,12.8,12.8,17.61679779129058 + 10/17 21:20:00,12.8,12.8,17.62223686269724 + 10/17 21:30:00,12.8,12.8,17.6275296032246 + 10/17 21:40:00,12.8,12.8,17.63261135440694 + 10/17 21:50:00,12.8,12.8,17.63762282888564 + 10/17 22:00:00,12.8,12.8,17.642558340325996 + 10/17 22:10:00,12.8,12.8,19.003274895698874 + 10/17 22:20:00,12.8,12.8,19.14927614990131 + 10/17 22:30:00,12.8,12.8,19.213046836816877 + 10/17 22:40:00,12.8,12.8,19.264370739237866 + 10/17 22:50:00,12.8,12.8,19.30547412665236 + 10/17 23:00:00,12.8,12.8,19.340023338264296 + 10/17 23:10:00,12.8,12.8,19.369708305708998 + 10/17 23:20:00,12.8,12.8,19.39518815493674 + 10/17 23:30:00,12.8,12.8,19.418705051596065 + 10/17 23:40:00,12.8,12.8,19.439845295215226 + 10/17 23:50:00,12.8,12.8,19.46099608334948 + 10/17 24:00:00,12.8,12.8,19.47887867493904 + 10/18 00:10:00,12.8,12.8,19.495804778882787 + 10/18 00:20:00,12.8,12.8,19.51127782222 + 10/18 00:30:00,12.8,12.8,19.525791849837839 + 10/18 00:40:00,12.8,12.8,19.53942192842939 + 10/18 00:50:00,12.8,12.8,19.55214091098263 + 10/18 01:00:00,12.8,12.8,19.56418332488281 + 10/18 01:10:00,12.821021021021022,12.821021021021022,19.57584324752385 + 10/18 01:20:00,12.842042042042042,12.842042042042042,19.586997898939086 + 10/18 01:30:00,12.863063063063063,12.863063063063063,19.59794298014722 + 10/18 01:40:00,12.884084084084084,12.884084084084084,19.60829958547749 + 10/18 01:50:00,12.905105105105106,12.905105105105106,19.618397432964494 + 10/18 02:00:00,12.926126126126127,12.926126126126127,19.62816638423594 + 10/18 02:10:00,12.926126126126127,12.926126126126127,19.637478591874744 + 10/18 02:20:00,12.926126126126127,12.926126126126127,19.646449395920283 + 10/18 02:30:00,12.926126126126127,12.926126126126127,19.653692935209265 + 10/18 02:40:00,12.926126126126127,12.926126126126127,19.662621881321767 + 10/18 02:50:00,12.926126126126127,12.926126126126127,19.670173788147 + 10/18 03:00:00,12.926126126126127,12.926126126126127,19.678107348539805 + 10/18 03:10:00,12.951351351351353,12.951351351351353,19.685326029014289 + 10/18 03:20:00,12.976576576576577,12.976576576576577,19.69106983354321 + 10/18 03:30:00,13.001801801801803,13.001801801801803,19.698827308200497 + 10/18 03:40:00,13.027027027027028,13.027027027027028,19.70548161504575 + 10/18 03:50:00,13.052252252252253,13.052252252252253,19.71176638891587 + 10/18 04:00:00,13.077477477477478,13.077477477477478,19.718699919962618 + 10/18 04:10:00,13.077477477477478,13.077477477477478,19.72556012453853 + 10/18 04:20:00,13.077477477477478,13.077477477477478,19.732195790852136 + 10/18 04:30:00,13.077477477477478,13.077477477477478,19.738475738225128 + 10/18 04:40:00,13.077477477477478,13.077477477477478,19.7443241970776 + 10/18 04:50:00,13.077477477477478,13.077477477477478,19.749776372284644 + 10/18 05:00:00,13.077477477477478,13.077477477477478,19.754871330437724 + 10/18 05:10:00,13.077477477477478,13.077477477477478,19.759526054096019 + 10/18 05:20:00,13.077477477477478,13.077477477477478,19.76403068008878 + 10/18 05:30:00,13.077477477477478,13.077477477477478,19.768444615017019 + 10/18 05:40:00,13.077477477477478,13.077477477477478,19.772757985224098 + 10/18 05:50:00,13.077477477477478,13.077477477477478,19.77697876345189 + 10/18 06:00:00,13.077477477477478,13.077477477477478,19.781064465085334 + 10/18 06:10:00,13.102702702702704,13.102702702702704,17.796110439249138 + 10/18 06:20:00,13.127927927927928,13.127927927927928,17.545426352071975 + 10/18 06:30:00,13.153153153153154,13.153153153153154,17.460228489915726 + 10/18 06:40:00,13.17837837837838,13.17837837837838,17.392761461211309 + 10/18 06:50:00,13.203603603603604,13.203603603603604,17.343426476583188 + 10/18 07:00:00,13.22882882882883,13.22882882882883,17.303151034301128 + 10/18 07:05:00,13.203603603603604,13.203603603603604,15.81793593409552 + 10/18 07:10:00,13.203603603603604,13.203603603603604,15.824429349267972 + 10/18 07:15:00,13.17837837837838,13.17837837837838,15.601480584342046 + 10/18 07:20:00,13.17837837837838,13.17837837837838,15.59975702188216 + 10/18 07:30:00,13.153153153153154,13.153153153153154,15.500574364663783 + 10/18 07:35:00,13.12792792792793,13.12792792792793,15.421547693973036 + 10/18 07:40:00,13.12792792792793,13.12792792792793,15.420115725669799 + 10/18 07:50:00,13.102702702702704,13.102702702702704,15.35226871626007 + 10/18 08:00:00,13.077477477477478,13.077477477477478,15.292945944084265 + 10/18 08:05:00,13.031231231231232,13.031231231231232,15.213941136521346 + 10/18 08:10:00,13.031231231231232,13.031231231231232,15.214004940728846 + 10/18 08:20:00,12.984984984984987,12.984984984984987,15.157290265304527 + 10/18 08:30:00,12.938738738738739,12.938738738738739,15.113027129475194 + 10/18 08:40:00,12.892492492492494,12.892492492492494,15.072710188120489 + 10/18 08:50:00,12.846246246246248,12.846246246246248,15.03613424320608 + 10/18 09:00:00,12.8,12.8,15.003244611412086 + 10/18 09:10:00,12.8,12.8,14.973387305715589 + 10/18 09:20:00,12.8,12.8,14.935659573959182 + 10/18 09:30:00,12.8,12.8,14.910625637111656 + 10/18 09:40:00,12.8,12.8,14.887261132952366 + 10/18 09:50:00,12.8,12.8,14.86438961325843 + 10/18 10:00:00,12.8,12.8,14.841605824096904 + 10/18 10:10:00,12.8,12.8,14.818705580268408 + 10/18 10:20:00,12.8,12.8,14.792145389141125 + 10/18 10:30:00,12.8,12.8,14.768891514075806 + 10/18 10:40:00,12.8,12.8,14.745819556185089 + 10/18 10:50:00,12.8,12.8,14.723285056584072 + 10/18 11:00:00,12.8,12.8,14.701492811838465 + 10/18 11:10:00,12.8,12.8,14.681132235539652 + 10/18 11:20:00,12.8,12.8,14.67148524747931 + 10/18 11:30:00,12.8,12.8,14.653354389200266 + 10/18 11:40:00,12.8,12.8,14.636059751619513 + 10/18 11:50:00,12.8,12.8,14.6197601442503 + 10/18 12:00:00,12.8,12.8,14.604290344330942 + 10/18 12:10:00,12.8,12.8,14.589552500341313 + 10/18 12:20:00,12.8,12.8,14.565617317244785 + 10/18 12:30:00,12.8,12.8,14.551540163708314 + 10/18 12:40:00,12.8,12.8,14.53805433687585 + 10/18 12:50:00,12.8,12.8,14.526337745772562 + 10/18 13:00:00,12.8,12.8,14.51580213906785 + 10/18 13:10:00,12.8,12.8,14.503414619212198 + 10/18 13:20:00,12.8,12.8,14.495439487835724 + 10/18 13:30:00,12.8,12.8,14.486083594942 + 10/18 13:40:00,12.8,12.8,14.475369196992684 + 10/18 13:50:00,12.8,12.8,14.465169379792158 + 10/18 14:00:00,12.8,12.8,14.457148937042304 + 10/18 14:10:00,12.8,12.8,14.448639532238607 + 10/18 14:20:00,12.8,12.8,14.443174033474975 + 10/18 14:30:00,12.8,12.8,14.436675050922743 + 10/18 14:40:00,12.8,12.8,14.430717939119102 + 10/18 14:50:00,12.8,12.8,14.422095668347069 + 10/18 15:00:00,12.8,12.8,14.416641113377898 + 10/18 15:10:00,12.8,12.8,16.55680876328357 + 10/18 15:20:00,12.8,12.8,16.815664695277126 + 10/18 15:30:00,12.8,12.8,16.914506210809717 + 10/18 15:40:00,12.8,12.8,16.99047106017313 + 10/18 15:50:00,12.8,12.8,17.046950767974648 + 10/18 16:00:00,12.8,12.8,17.092614984880578 + 10/18 16:10:00,12.8,12.8,17.15733558769152 + 10/18 16:20:00,12.8,12.8,17.208987710999204 + 10/18 16:30:00,12.8,12.8,17.238929660431294 + 10/18 16:40:00,12.8,12.8,17.265638998105695 + 10/18 16:50:00,12.8,12.8,17.28999211509353 + 10/18 17:00:00,12.8,12.8,17.312365638073403 + 10/18 17:10:00,12.8,12.8,17.346243280366328 + 10/18 17:20:00,12.8,12.8,17.37157170785455 + 10/18 17:30:00,12.8,12.8,17.390005165018459 + 10/18 17:40:00,12.8,12.8,17.40733681909151 + 10/18 17:50:00,12.8,12.8,17.423529340121715 + 10/18 18:00:00,12.8,12.8,17.438916651699676 + 10/18 18:10:00,12.8,12.8,17.453707484050957 + 10/18 18:20:00,12.8,12.8,17.467616507711747 + 10/18 18:30:00,12.8,12.8,17.480557830154319 + 10/18 18:40:00,12.8,12.8,17.492591952053727 + 10/18 18:50:00,12.8,12.8,17.50377352654715 + 10/18 19:00:00,12.8,12.8,17.514238688200167 + 10/18 19:10:00,12.8,12.8,17.53703450603829 + 10/18 19:20:00,12.8,12.8,17.547175748860945 + 10/18 19:30:00,12.8,12.8,17.556375513944869 + 10/18 19:40:00,12.8,12.8,17.565140932844579 + 10/18 19:50:00,12.8,12.8,17.573451245232087 + 10/18 20:00:00,12.8,12.8,17.581412601359877 + 10/18 20:10:00,12.8,12.8,17.566537302108715 + 10/18 20:20:00,12.8,12.8,17.577728561052717 + 10/18 20:30:00,12.8,12.8,17.58430862466147 + 10/18 20:40:00,12.8,12.8,17.59055410191002 + 10/18 20:50:00,12.8,12.8,17.59661068538768 + 10/18 21:00:00,12.8,12.8,17.602391843678455 + 10/18 21:10:00,12.8,12.8,17.608196186697609 + 10/18 21:20:00,12.8,12.8,17.61380225149958 + 10/18 21:30:00,12.8,12.8,17.619262772744148 + 10/18 21:40:00,12.8,12.8,17.62446452161297 + 10/18 21:50:00,12.8,12.8,17.629550107792079 + 10/18 22:00:00,12.8,12.8,17.634644713516449 + 10/18 22:10:00,12.8,12.8,18.995570767643199 + 10/18 22:20:00,12.8,12.8,19.1439096976253 + 10/18 22:30:00,12.8,12.8,19.208769652096195 + 10/18 22:40:00,12.8,12.8,19.261646156516446 + 10/18 22:50:00,12.8,12.8,19.30098974827825 + 10/18 23:00:00,12.8,12.8,19.334134103518715 + 10/18 23:10:00,12.8,12.8,19.36242009205807 + 10/18 23:20:00,12.8,12.8,19.38773520703551 + 10/18 23:30:00,12.8,12.8,19.410412342775986 + 10/18 23:40:00,12.8,12.8,19.431166676984444 + 10/18 23:50:00,12.8,12.8,19.45025262027094 + 10/18 24:00:00,12.8,12.8,19.467957282011324 + 10/19 00:10:00,12.8,12.8,19.48425304740929 + 10/19 00:20:00,12.8,12.8,19.499425703505297 + 10/19 00:30:00,12.8,12.8,19.512459313167367 + 10/19 00:40:00,12.8,12.8,19.52647595973558 + 10/19 00:50:00,12.8,12.8,19.538770652458788 + 10/19 01:00:00,12.8,12.8,19.550955118898153 + 10/19 01:10:00,12.8,12.8,19.56112242486796 + 10/19 01:20:00,12.8,12.8,19.572479806794939 + 10/19 01:30:00,12.8,12.8,19.58244585720486 + 10/19 01:40:00,12.8,12.8,19.592521493505939 + 10/19 01:50:00,12.8,12.8,19.60074222794639 + 10/19 02:00:00,12.8,12.8,19.610464338370158 + 10/19 02:10:00,12.8,12.8,19.61884759429655 + 10/19 02:20:00,12.8,12.8,19.62766113531079 + 10/19 02:30:00,12.8,12.8,19.6348097615809 + 10/19 02:40:00,12.8,12.8,19.643632440564 + 10/19 02:50:00,12.8,12.8,19.651205676653086 + 10/19 03:00:00,12.8,12.8,19.659100999107026 + 10/19 03:10:00,12.8,12.8,19.66533972363972 + 10/19 03:20:00,12.8,12.8,19.673180624671408 + 10/19 03:30:00,12.8,12.8,19.67975231742355 + 10/19 03:40:00,12.8,12.8,19.686664348069216 + 10/19 03:50:00,12.8,12.8,19.69181443862341 + 10/19 04:00:00,12.8,12.8,19.69870538233641 + 10/19 04:10:00,12.8,12.8,19.70462177660521 + 10/19 04:20:00,12.8,12.8,19.711035880535677 + 10/19 04:30:00,12.8,12.8,19.715853174146138 + 10/19 04:40:00,12.8,12.8,19.722516811647009 + 10/19 04:50:00,12.8,12.8,19.727978483148026 + 10/19 05:00:00,12.8,12.8,19.7340529199937 + 10/19 05:10:00,12.846246246246248,12.846246246246248,19.738439328363094 + 10/19 05:20:00,12.892492492492494,12.892492492492494,19.744763341578225 + 10/19 05:30:00,12.938738738738739,12.938738738738739,19.749939158668 + 10/19 05:40:00,12.984984984984987,12.984984984984987,19.754549791452079 + 10/19 05:50:00,13.031231231231232,13.031231231231232,19.76066381994735 + 10/19 06:00:00,13.077477477477478,13.077477477477478,19.765822997635078 + 10/19 06:10:00,13.102702702702704,13.102702702702704,17.780997794463397 + 10/19 06:20:00,13.127927927927928,13.127927927927928,17.531108568948736 + 10/19 06:30:00,13.153153153153154,13.153153153153154,17.44637476654379 + 10/19 06:40:00,13.17837837837838,13.17837837837838,17.379330455811766 + 10/19 06:50:00,13.203603603603604,13.203603603603604,17.33031956967 + 10/19 07:00:00,13.22882882882883,13.22882882882883,17.290364498081425 + 10/19 07:05:00,13.22882882882883,13.22882882882883,15.80501603814735 + 10/19 07:10:00,13.22882882882883,13.22882882882883,15.811500825189422 + 10/19 07:15:00,13.22882882882883,13.22882882882883,15.589050760544737 + 10/19 07:20:00,13.22882882882883,13.22882882882883,15.58734239502413 + 10/19 07:30:00,13.22882882882883,13.22882882882883,15.489287475706267 + 10/19 07:35:00,13.22882882882883,13.22882882882883,15.411936634638546 + 10/19 07:40:00,13.22882882882883,13.22882882882883,15.410496384986946 + 10/19 07:50:00,13.22882882882883,13.22882882882883,15.344708515418552 + 10/19 08:00:00,13.22882882882883,13.22882882882883,15.287894366720093 + 10/19 08:05:00,13.203603603603604,13.203603603603604,15.211682036647677 + 10/19 08:10:00,13.203603603603604,13.203603603603604,15.211747932476826 + 10/19 08:20:00,13.17837837837838,13.17837837837838,15.157752513034449 + 10/19 08:30:00,13.153153153153154,13.153153153153154,15.116191805408218 + 10/19 08:40:00,13.12792792792793,13.12792792792793,15.07798274028985 + 10/19 08:50:00,13.102702702702704,13.102702702702704,15.042729145708652 + 10/19 09:00:00,13.077477477477478,13.077477477477478,15.010030782327103 + 10/19 09:10:00,13.052252252252253,13.052252252252253,14.97926389317267 + 10/19 09:20:00,13.027027027027028,13.027027027027028,14.939878958700073 + 10/19 09:30:00,13.001801801801803,13.001801801801803,14.912487643204818 + 10/19 09:40:00,12.976576576576577,12.976576576576577,14.886573423151559 + 10/19 09:50:00,12.951351351351353,12.951351351351353,14.861688972258499 + 10/19 10:00:00,12.926126126126127,12.926126126126127,14.837742512452673 + 10/19 10:10:00,12.85885885885886,12.85885885885886,14.814520169839824 + 10/19 10:20:00,12.8,12.8,14.788435928682315 + 10/19 10:30:00,12.8,12.8,14.766371297182026 + 10/19 10:40:00,12.8,12.8,14.744848512519058 + 10/19 10:50:00,12.8,12.8,14.723740412274024 + 10/19 11:00:00,12.8,12.8,14.703014692708305 + 10/19 11:10:00,12.8,12.8,14.682922835783055 + 10/19 11:20:00,12.8,12.8,14.67308876073481 + 10/19 11:30:00,12.8,12.8,14.654311892954257 + 10/19 11:40:00,12.8,12.8,14.636499424060734 + 10/19 11:50:00,12.8,12.8,14.620618951955838 + 10/19 12:00:00,12.8,12.8,14.606880184716064 + 10/19 12:10:00,12.8,12.8,14.59512616322983 + 10/19 12:20:00,12.8,12.8,14.57559111515455 + 10/19 12:30:00,12.8,12.8,14.566902147773283 + 10/19 12:40:00,12.8,12.8,14.558924620585474 + 10/19 12:50:00,12.8,12.8,14.550771588962716 + 10/19 13:00:00,12.8,12.8,14.543693781324638 + 10/19 13:10:00,12.8,12.8,14.535570123464283 + 10/19 13:20:00,12.8,12.8,14.526659078300515 + 10/19 13:30:00,12.8,12.8,14.516318220220134 + 10/19 13:40:00,12.8,12.8,14.505432472917099 + 10/19 13:50:00,12.8,12.8,14.489904699771464 + 10/19 14:00:00,12.8,12.8,14.474559922198596 + 10/19 14:10:00,12.8,12.8,14.45913961379457 + 10/19 14:20:00,12.8,12.8,14.444221245009507 + 10/19 14:30:00,12.8,12.8,14.427057613512773 + 10/19 14:40:00,12.8,12.8,14.412654151257933 + 10/19 14:50:00,12.8,12.8,14.401281254474512 + 10/19 15:00:00,12.8,12.8,14.392013961924569 + 10/19 15:05:00,12.8,12.8,16.539600107937724 + 10/19 15:10:00,12.8,12.8,16.53698984687376 + 10/19 15:15:00,12.8,12.8,16.79361157699381 + 10/19 15:20:00,12.8,12.8,16.792263695106187 + 10/19 15:30:00,12.8,12.8,16.893613553572356 + 10/19 15:40:00,12.8,12.8,16.970109130242649 + 10/19 15:50:00,12.8,12.8,17.03256727725951 + 10/19 16:00:00,12.8,12.8,17.08370267784337 + 10/19 16:10:00,12.8,12.8,17.152850011236983 + 10/19 16:20:00,12.8,12.8,17.20965148488088 + 10/19 16:30:00,12.8,12.8,17.24239884005339 + 10/19 16:40:00,12.8,12.8,17.271410491142125 + 10/19 16:50:00,12.8,12.8,17.297983424332658 + 10/19 17:00:00,12.8,12.8,17.322688784627866 + 10/19 17:10:00,12.8,12.8,17.35943665090716 + 10/19 17:20:00,12.8,12.8,17.387474975129327 + 10/19 17:30:00,12.8,12.8,17.408357025130866 + 10/19 17:40:00,12.8,12.8,17.428422755112956 + 10/19 17:50:00,12.8,12.8,17.44738657794988 + 10/19 18:00:00,12.8,12.8,17.46559596634186 + 10/19 18:10:00,12.871471471471472,12.871471471471472,17.482917409866649 + 10/19 18:20:00,12.942942942942944,12.942942942942944,17.501437376725453 + 10/19 18:30:00,13.014414414414415,13.014414414414415,17.51868272704471 + 10/19 18:40:00,13.085885885885887,13.085885885885887,17.535190694984054 + 10/19 18:50:00,13.157357357357359,13.157357357357359,17.550565911493224 + 10/19 19:00:00,13.22882882882883,13.22882882882883,17.564969835702187 + 10/19 19:10:00,13.275075075075077,13.275075075075077,17.591416803605719 + 10/19 19:20:00,13.321321321321323,13.321321321321323,17.603698548164357 + 10/19 19:30:00,13.367567567567568,13.367567567567568,17.61496219234976 + 10/19 19:40:00,13.413813813813816,13.413813813813816,17.625534443529813 + 10/19 19:50:00,13.46006006006006,13.46006006006006,17.635711948307099 + 10/19 20:00:00,13.506306306306307,13.506306306306307,17.645443365638444 + 10/19 20:10:00,13.552552552552554,13.552552552552554,17.632193555063134 + 10/19 20:20:00,13.5987987987988,13.5987987987988,17.646029797243185 + 10/19 20:30:00,13.645045045045047,13.645045045045047,17.655041389585059 + 10/19 20:40:00,13.691291291291293,13.691291291291293,17.66379763918096 + 10/19 20:50:00,13.737537537537538,13.737537537537538,17.672182690056574 + 10/19 21:00:00,13.783783783783785,13.783783783783785,17.680249651121529 + 10/19 21:10:00,13.804804804804805,13.804804804804805,17.688600209451825 + 10/19 21:20:00,13.825825825825828,13.825825825825828,17.69658876787348 + 10/19 21:30:00,13.846846846846848,13.846846846846848,17.704274782907104 + 10/19 21:40:00,13.867867867867869,13.867867867867869,17.711702883243136 + 10/19 21:50:00,13.88888888888889,13.88888888888889,17.718843134530994 + 10/19 22:00:00,13.90990990990991,13.90990990990991,17.72572607200005 + 10/19 22:10:00,13.90990990990991,13.90990990990991,19.088531386108998 + 10/19 22:20:00,13.90990990990991,13.90990990990991,19.23234816534721 + 10/19 22:30:00,13.90990990990991,13.90990990990991,19.296009661370435 + 10/19 22:40:00,13.90990990990991,13.90990990990991,19.346368980585504 + 10/19 22:50:00,13.90990990990991,13.90990990990991,19.38705335264401 + 10/19 23:00:00,13.90990990990991,13.90990990990991,19.42122622380186 + 10/19 23:10:00,13.981381381381383,13.981381381381383,19.451206338011745 + 10/19 23:20:00,14.052852852852853,14.052852852852853,19.47556401952599 + 10/19 23:30:00,14.124324324324326,14.124324324324326,19.497667332327145 + 10/19 23:40:00,14.195795795795796,14.195795795795796,19.51740746091961 + 10/19 23:50:00,14.267267267267269,14.267267267267269,19.535774846141046 + 10/19 24:00:00,14.338738738738739,14.338738738738739,19.552906170425865 + 10/20 00:10:00,14.384984984984986,14.384984984984986,19.568731499976847 + 10/20 00:20:00,14.431231231231232,14.431231231231232,19.5846304570297 + 10/20 00:30:00,14.477477477477479,14.477477477477479,19.59974601937515 + 10/20 00:40:00,14.523723723723723,14.523723723723723,19.61439799355029 + 10/20 00:50:00,14.56996996996997,14.56996996996997,19.62830682255059 + 10/20 01:00:00,14.616216216216217,14.616216216216217,19.64168104020626 + 10/20 01:10:00,14.662462462462463,14.662462462462463,19.654552987619146 + 10/20 01:20:00,14.70870870870871,14.70870870870871,19.667279502252144 + 10/20 01:30:00,14.754954954954954,14.754954954954954,19.679648069459419 + 10/20 01:40:00,14.8012012012012,14.8012012012012,19.69169847015514 + 10/20 01:50:00,14.847447447447447,14.847447447447447,19.703453447527659 + 10/20 02:00:00,14.893693693693694,14.893693693693694,19.714949119665456 + 10/20 02:10:00,14.91891891891892,14.91891891891892,19.72599659921123 + 10/20 02:20:00,14.944144144144144,14.944144144144144,19.73664844762411 + 10/20 02:30:00,14.96936936936937,14.96936936936937,19.746870588255456 + 10/20 02:40:00,14.994594594594595,14.994594594594595,19.756684525464136 + 10/20 02:50:00,15.01981981981982,15.01981981981982,19.766217297128966 + 10/20 03:00:00,15.045045045045045,15.045045045045045,19.77543043267896 + 10/20 03:10:00,15.091291291291292,15.091291291291292,19.784489283464337 + 10/20 03:20:00,15.137537537537538,15.137537537537538,19.79355540161594 + 10/20 03:30:00,15.183783783783785,15.183783783783785,19.80239576059181 + 10/20 03:40:00,15.23003003003003,15.23003003003003,19.81124552121036 + 10/20 03:50:00,15.276276276276276,15.276276276276276,19.81995140023129 + 10/20 04:00:00,15.322522522522523,15.322522522522523,19.82850910377418 + 10/20 04:10:00,15.368768768768769,15.368768768768769,19.837212017481737 + 10/20 04:20:00,15.415015015015016,15.415015015015016,19.845482121929004 + 10/20 04:30:00,15.46126126126126,15.46126126126126,19.853649679369583 + 10/20 04:40:00,15.507507507507507,15.507507507507507,19.86160269457578 + 10/20 04:50:00,15.553753753753754,15.553753753753754,19.869391056631927 + 10/20 05:00:00,15.6,15.6,19.877029970950916 + 10/20 05:10:00,15.6,15.6,19.882978221995488 + 10/20 05:20:00,15.6,15.6,19.888538515797245 + 10/20 05:30:00,15.6,15.6,19.89392815587078 + 10/20 05:40:00,15.6,15.6,19.89905870227483 + 10/20 05:50:00,15.6,15.6,19.90401580776068 + 10/20 06:00:00,15.6,15.6,19.908777463423605 + 10/20 06:10:00,15.6,15.6,17.906969579413244 + 10/20 06:20:00,15.6,15.6,17.675525000755358 + 10/20 06:30:00,15.6,15.6,17.59197665692809 + 10/20 06:40:00,15.6,15.6,17.52777978094761 + 10/20 06:50:00,15.6,15.6,17.478095030792607 + 10/20 07:00:00,15.6,15.6,17.436897577676587 + 10/20 07:10:00,15.6,15.6,15.954990839478562 + 10/20 07:20:00,15.6,15.6,15.739673691420084 + 10/20 07:30:00,15.6,15.6,15.640075481320763 + 10/20 07:40:00,15.6,15.6,15.558074950132023 + 10/20 07:50:00,15.6,15.6,15.489265535739023 + 10/20 08:00:00,15.6,15.6,15.42907060823452 + 10/20 08:10:00,15.6,15.6,15.346275639218938 + 10/20 08:20:00,15.6,15.6,15.285453500620506 + 10/20 08:30:00,15.6,15.6,15.235433836730124 + 10/20 08:40:00,15.557957957957959,15.557957957957959,15.187897350634126 + 10/20 08:50:00,15.44024024024024,15.44024024024024,15.142497120952165 + 10/20 09:00:00,15.322522522522523,15.322522522522523,15.099100018655295 + 10/20 09:10:00,15.23003003003003,15.23003003003003,15.05895033239783 + 10/20 09:20:00,15.137537537537538,15.137537537537538,15.009020735805004 + 10/20 09:30:00,15.045045045045045,15.045045045045045,14.971378378150217 + 10/20 09:40:00,14.952552552552552,14.952552552552552,14.935290181096742 + 10/20 09:50:00,14.86006006006006,14.86006006006006,14.900915042691935 + 10/20 10:00:00,14.767567567567568,14.767567567567568,14.868187743869834 + 10/20 10:10:00,14.670870870870872,14.670870870870872,14.835358534344774 + 10/20 10:20:00,14.574174174174175,14.574174174174175,14.80378327828301 + 10/20 10:30:00,14.477477477477479,14.477477477477479,14.776708876958379 + 10/20 10:40:00,14.380780780780782,14.380780780780782,14.75118888208312 + 10/20 10:50:00,14.284084084084084,14.284084084084084,14.726749226662607 + 10/20 11:00:00,14.187387387387388,14.187387387387388,14.703558903002554 + 10/20 11:10:00,14.12012012012012,14.12012012012012,14.682447086231571 + 10/20 11:20:00,14.052852852852853,14.052852852852853,14.671117194139079 + 10/20 11:30:00,13.985585585585586,13.985585585585586,14.651621491658898 + 10/20 11:40:00,13.91831831831832,13.91831831831832,14.633364565685069 + 10/20 11:50:00,13.851051051051052,13.851051051051052,14.616858709673725 + 10/20 12:00:00,13.783783783783785,13.783783783783785,14.601960457514517 + 10/20 12:10:00,13.737537537537538,13.737537537537538,14.589033082331462 + 10/20 12:20:00,13.691291291291293,13.691291291291293,14.569543195017017 + 10/20 12:30:00,13.645045045045047,13.645045045045047,14.56084695448687 + 10/20 12:40:00,13.5987987987988,13.5987987987988,14.554063042452932 + 10/20 12:50:00,13.552552552552554,13.552552552552554,14.54718224428389 + 10/20 13:00:00,13.506306306306307,13.506306306306307,14.536952085524426 + 10/20 13:10:00,13.527327327327328,13.527327327327328,14.527065050531377 + 10/20 13:20:00,13.548348348348349,13.548348348348349,14.521363307859259 + 10/20 13:30:00,13.56936936936937,13.56936936936937,14.50909895737965 + 10/20 13:40:00,13.590390390390392,13.590390390390392,14.498707339772708 + 10/20 13:50:00,13.611411411411412,13.611411411411412,14.490012067395142 + 10/20 14:00:00,13.632432432432433,13.632432432432433,14.4794768431052 + 10/20 14:10:00,13.565165165165166,13.565165165165166,14.470907485793076 + 10/20 14:20:00,13.497897897897899,13.497897897897899,14.466537400718238 + 10/20 14:30:00,13.430630630630632,13.430630630630632,14.457746687779233 + 10/20 14:40:00,13.363363363363364,13.363363363363364,14.449257804135993 + 10/20 14:50:00,13.296096096096097,13.296096096096097,14.443794572744036 + 10/20 15:00:00,13.22882882882883,13.22882882882883,14.439482314585013 + 10/20 15:05:00,13.275075075075077,13.275075075075077,16.594434800686654 + 10/20 15:10:00,13.275075075075077,13.275075075075077,16.59361174024018 + 10/20 15:20:00,13.321321321321323,13.321321321321323,16.844187658164566 + 10/20 15:30:00,13.367567567567568,13.367567567567568,16.943723961008815 + 10/20 15:40:00,13.413813813813816,13.413813813813816,17.02009946550032 + 10/20 15:50:00,13.46006006006006,13.46006006006006,17.078784337007517 + 10/20 16:00:00,13.506306306306307,13.506306306306307,17.125439226820477 + 10/20 16:10:00,13.527327327327328,13.527327327327328,17.192881613501549 + 10/20 16:20:00,13.548348348348349,13.548348348348349,17.24887505589686 + 10/20 16:30:00,13.56936936936937,13.56936936936937,17.280973851063658 + 10/20 16:40:00,13.590390390390392,13.590390390390392,17.310177190593128 + 10/20 16:50:00,13.611411411411412,13.611411411411412,17.33749969642392 + 10/20 17:00:00,13.632432432432433,13.632432432432433,17.363399187268734 + 10/20 17:10:00,13.724924924924926,13.724924924924926,17.40004259227181 + 10/20 17:20:00,13.817417417417417,13.817417417417417,17.42871626833641 + 10/20 17:30:00,13.90990990990991,13.90990990990991,17.450817229993345 + 10/20 17:40:00,14.002402402402403,14.002402402402403,17.47190867226074 + 10/20 17:50:00,14.094894894894896,14.094894894894896,17.491708294506219 + 10/20 18:00:00,14.187387387387388,14.187387387387388,17.510473198077979 + 10/20 18:10:00,14.284084084084084,14.284084084084084,17.5303275132447 + 10/20 18:20:00,14.38078078078078,14.38078078078078,17.54963101082316 + 10/20 18:30:00,14.477477477477479,14.477477477477479,17.56769967365929 + 10/20 18:40:00,14.574174174174175,14.574174174174175,17.584684593000757 + 10/20 18:50:00,14.670870870870872,14.670870870870872,17.600569724091714 + 10/20 19:00:00,14.767567567567568,14.767567567567568,17.61551241686618 + 10/20 19:10:00,14.834834834834835,14.834834834834835,17.642105684163789 + 10/20 19:20:00,14.902102102102102,14.902102102102102,17.655762566757443 + 10/20 19:30:00,14.96936936936937,14.96936936936937,17.668391964826826 + 10/20 19:40:00,15.036636636636637,15.036636636636637,17.68044865316145 + 10/20 19:50:00,15.103903903903904,15.103903903903904,17.69192446747612 + 10/20 20:00:00,15.17117117117117,15.17117117117117,17.702927996573135 + 10/20 20:10:00,15.196396396396397,15.196396396396397,17.691002713555059 + 10/20 20:20:00,15.22162162162162,15.22162162162162,17.705497347604159 + 10/20 20:30:00,15.246846846846847,15.246846846846847,17.715043590329566 + 10/20 20:40:00,15.272072072072073,15.272072072072073,17.724085715037558 + 10/20 20:50:00,15.297297297297297,15.297297297297297,17.7326324538405 + 10/20 21:00:00,15.322522522522523,15.322522522522523,17.740818297358645 + 10/20 21:10:00,15.343543543543543,15.343543543543543,17.74872812016882 + 10/20 21:20:00,15.364564564564564,15.364564564564564,17.75645167410015 + 10/20 21:30:00,15.385585585585586,15.385585585585586,17.764071619950074 + 10/20 21:40:00,15.406606606606607,15.406606606606607,17.77142939402955 + 10/20 21:50:00,15.427627627627628,15.427627627627628,17.778570808265458 + 10/20 22:00:00,15.448648648648648,15.448648648648648,17.78564113348561 + 10/20 22:10:00,15.448648648648648,15.448648648648648,19.15761218312495 + 10/20 22:20:00,15.448648648648648,15.448648648648648,19.300935026855158 + 10/20 22:30:00,15.448648648648648,15.448648648648648,19.364023727355784 + 10/20 22:40:00,15.448648648648648,15.448648648648648,19.41359024762049 + 10/20 22:50:00,15.448648648648648,15.448648648648648,19.453520768067056 + 10/20 23:00:00,15.448648648648648,15.448648648648648,19.486904599972708 + 10/20 23:10:00,15.448648648648648,15.448648648648648,19.51626188253239 + 10/20 23:20:00,15.448648648648648,15.448648648648648,19.542251064416818 + 10/20 23:30:00,15.448648648648648,15.448648648648648,19.56560194598204 + 10/20 23:40:00,15.448648648648648,15.448648648648648,19.586986430087135 + 10/20 23:50:00,15.448648648648648,15.448648648648648,19.606742218227696 + 10/20 24:00:00,15.448648648648648,15.448648648648648,19.62512036465539 + 10/21 00:10:00,15.473873873873874,15.473873873873874,19.64346469116204 + 10/21 00:20:00,15.499099099099098,15.499099099099098,19.66075264047911 + 10/21 00:30:00,15.524324324324324,15.524324324324324,19.677333155388277 + 10/21 00:40:00,15.54954954954955,15.54954954954955,19.693310192054619 + 10/21 00:50:00,15.574774774774774,15.574774774774774,19.708745576646629 + 10/21 01:00:00,15.6,15.6,19.72369742056247 + 10/21 01:10:00,15.574774774774774,15.574774774774774,19.736028737181809 + 10/21 01:20:00,15.54954954954955,15.54954954954955,19.74757234657416 + 10/21 01:30:00,15.524324324324324,15.524324324324324,19.75837284969682 + 10/21 01:40:00,15.499099099099098,15.499099099099098,19.76839816293942 + 10/21 01:50:00,15.473873873873874,15.473873873873874,19.77771294428521 + 10/21 02:00:00,15.448648648648648,15.448648648648648,19.786376883699565 + 10/21 02:10:00,15.52012012012012,15.52012012012012,19.795653828891607 + 10/21 02:20:00,15.591591591591591,15.591591591591591,19.805119621566808 + 10/21 02:30:00,15.6,15.6,19.81469125475524 + 10/21 02:40:00,15.6,15.6,19.82443855959608 + 10/21 02:50:00,15.6,15.6,19.83429437850105 + 10/21 03:00:00,15.6,15.6,19.844134406989356 + 10/21 03:10:00,15.6,15.6,19.853779174002154 + 10/21 03:20:00,15.6,15.6,19.863205448857096 + 10/21 03:30:00,15.6,15.6,19.872313008734158 + 10/21 03:40:00,15.6,15.6,19.881088697629026 + 10/21 03:50:00,15.6,15.6,19.889482567723826 + 10/21 04:00:00,15.6,15.6,19.89761060064953 + 10/21 04:10:00,15.6,15.6,19.9046053574758 + 10/21 04:20:00,15.6,15.6,19.911189536577937 + 10/21 04:30:00,15.6,15.6,19.91732602587316 + 10/21 04:40:00,15.6,15.6,19.92299412134016 + 10/21 04:50:00,15.6,15.6,19.928243372549294 + 10/21 05:00:00,15.6,15.6,19.93319216522616 + 10/21 05:10:00,15.6,15.6,19.939388392354326 + 10/21 05:20:00,15.6,15.6,19.945363837423387 + 10/21 05:30:00,15.6,15.6,19.951239982009466 + 10/21 05:40:00,15.6,15.6,19.956966781500904 + 10/21 05:50:00,15.6,15.6,19.96272856866363 + 10/21 06:00:00,15.6,15.6,19.968441717434169 + 10/21 06:10:00,15.6,15.6,19.309094485141637 + 10/21 06:20:00,15.6,15.6,19.24249952214781 + 10/21 06:30:00,15.6,15.6,19.216454153258075 + 10/21 06:40:00,15.6,15.6,19.19644075178018 + 10/21 06:50:00,15.6,15.6,19.180848428215087 + 10/21 07:00:00,15.6,15.6,19.16776378275302 + 10/21 07:10:00,15.6,15.6,18.07970010486933 + 10/21 07:20:00,15.6,15.6,17.933252027435267 + 10/21 07:30:00,15.6,15.6,17.871162354172829 + 10/21 07:40:00,15.507507507507507,15.507507507507507,17.82076651548669 + 10/21 07:50:00,15.415015015015016,15.415015015015016,17.77865918164209 + 10/21 08:00:00,15.322522522522523,15.322522522522523,17.741532958098369 + 10/21 08:10:00,15.204804804804806,15.204804804804806,17.70595753245061 + 10/21 08:20:00,15.087087087087087,15.087087087087087,17.6641446983567 + 10/21 08:30:00,14.96936936936937,14.96936936936937,17.632450660611249 + 10/21 08:40:00,14.851651651651653,14.851651651651653,17.602008327261314 + 10/21 08:50:00,14.733933933933934,14.733933933933934,17.57271354546201 + 10/21 09:00:00,14.616216216216217,14.616216216216217,17.544662982446249 + 10/21 09:10:00,14.523723723723723,14.523723723723723,17.518546399940328 + 10/21 09:20:00,14.431231231231232,14.431231231231232,17.48483959729578 + 10/21 09:30:00,14.338738738738739,14.338738738738739,17.460999509335204 + 10/21 09:40:00,14.246246246246246,14.246246246246246,17.43816686851763 + 10/21 09:50:00,14.153753753753755,14.153753753753755,17.416143761706448 + 10/21 10:00:00,14.061261261261262,14.061261261261262,17.394793006113138 + 10/21 10:10:00,13.943543543543545,13.943543543543545,17.374234924438409 + 10/21 10:20:00,13.825825825825826,13.825825825825826,17.353849082213306 + 10/21 10:30:00,13.708108108108109,13.708108108108109,17.333746570800128 + 10/21 10:40:00,13.590390390390392,13.590390390390392,17.314031168195507 + 10/21 10:50:00,13.472672672672673,13.472672672672673,17.295055353117019 + 10/21 11:00:00,13.354954954954956,13.354954954954956,17.276904271750604 + 10/21 11:10:00,13.30870870870871,13.30870870870871,17.259151257605614 + 10/21 11:20:00,13.262462462462464,13.262462462462464,17.240888685405808 + 10/21 11:30:00,13.216216216216218,13.216216216216218,17.22338169327493 + 10/21 11:40:00,13.169969969969971,13.169969969969971,17.206340240794654 + 10/21 11:50:00,13.123723723723725,13.123723723723725,17.19004091978722 + 10/21 12:00:00,13.077477477477478,13.077477477477478,17.174392042360805 + 10/21 12:10:00,13.077477477477478,13.077477477477478,17.160152637636704 + 10/21 12:20:00,13.077477477477478,13.077477477477478,17.147604545836143 + 10/21 12:30:00,13.077477477477478,13.077477477477478,17.136150017182528 + 10/21 12:40:00,13.077477477477478,13.077477477477478,17.126051941485057 + 10/21 12:50:00,13.077477477477478,13.077477477477478,17.117431161787129 + 10/21 13:00:00,13.077477477477478,13.077477477477478,17.110233708314998 + 10/21 13:10:00,13.031231231231232,13.031231231231232,17.103592879952158 + 10/21 13:20:00,12.984984984984987,12.984984984984987,17.09787347315676 + 10/21 13:30:00,12.938738738738739,12.938738738738739,17.09247000559339 + 10/21 13:40:00,12.892492492492494,12.892492492492494,17.0870486751711 + 10/21 13:50:00,12.846246246246248,12.846246246246248,17.081074828033139 + 10/21 14:00:00,12.8,12.8,17.07446826168126 + 10/21 14:10:00,12.8,12.8,17.0677347867826 + 10/21 14:20:00,12.8,12.8,17.06070716181001 + 10/21 14:30:00,12.8,12.8,17.05399675083452 + 10/21 14:40:00,12.8,12.8,17.047777917060058 + 10/21 14:50:00,12.8,12.8,17.042375119812495 + 10/21 15:00:00,12.8,12.8,17.037847842606955 + 10/21 15:10:00,12.8,12.8,17.03415979657906 + 10/21 15:20:00,12.8,12.8,17.03182407275442 + 10/21 15:30:00,12.8,12.8,17.030208956709619 + 10/21 15:40:00,12.8,12.8,17.029536888590653 + 10/21 15:50:00,12.8,12.8,17.029829918214096 + 10/21 16:00:00,12.8,12.8,17.031064060231797 + 10/21 16:10:00,12.8,12.8,17.046484799382747 + 10/21 16:20:00,12.8,12.8,17.05973435287725 + 10/21 16:30:00,12.8,12.8,17.064463980528094 + 10/21 16:40:00,12.8,12.8,17.069913579017375 + 10/21 16:50:00,12.8,12.8,17.076073168610109 + 10/21 17:00:00,12.8,12.8,17.082832878927147 + 10/21 17:10:00,12.871471471471472,12.871471471471472,18.858594969394919 + 10/21 17:20:00,12.942942942942944,12.942942942942944,19.07462611152798 + 10/21 17:30:00,13.014414414414415,13.014414414414415,19.16214668464531 + 10/21 17:40:00,13.085885885885887,13.085885885885887,19.230945835583804 + 10/21 17:50:00,13.157357357357359,13.157357357357359,19.28628375495124 + 10/21 18:00:00,13.22882882882883,13.22882882882883,19.33276329417497 + 10/21 18:10:00,13.22882882882883,13.22882882882883,19.385896791745979 + 10/21 18:20:00,13.22882882882883,13.22882882882883,19.421977289028026 + 10/21 18:30:00,13.22882882882883,13.22882882882883,19.453334692248715 + 10/21 18:40:00,13.22882882882883,13.22882882882883,19.481122265989389 + 10/21 18:50:00,13.22882882882883,13.22882882882883,19.505836538865734 + 10/21 19:00:00,13.22882882882883,13.22882882882883,19.5279045754336 + 10/21 19:10:00,13.413813813813814,13.413813813813814,19.548303801047696 + 10/21 19:20:00,13.5987987987988,13.5987987987988,19.56952431393391 + 10/21 19:30:00,13.783783783783785,13.783783783783785,19.589110452433535 + 10/21 19:40:00,13.968768768768769,13.968768768768769,19.607842565887148 + 10/21 19:50:00,14.153753753753755,14.153753753753755,19.625496940096317 + 10/21 20:00:00,14.338738738738739,14.338738738738739,19.64229873662714 + 10/21 20:10:00,14.292492492492493,14.292492492492493,19.635580050260758 + 10/21 20:20:00,14.246246246246246,14.246246246246246,19.64967497703389 + 10/21 20:30:00,14.2,14.2,19.66260048604037 + 10/21 20:40:00,14.153753753753755,14.153753753753755,19.674271608386414 + 10/21 20:50:00,14.107507507507508,14.107507507507508,19.68499132727514 + 10/21 21:00:00,14.061261261261262,14.061261261261262,19.694953178581295 + 10/21 21:10:00,14.132732732732733,14.132732732732733,19.704223240368145 + 10/21 21:20:00,14.204204204204205,14.204204204204205,19.713454697196526 + 10/21 21:30:00,14.275675675675675,14.275675675675675,19.722422197454859 + 10/21 21:40:00,14.347147147147148,14.347147147147148,19.73122474965171 + 10/21 21:50:00,14.418618618618618,14.418618618618618,19.739927379890007 + 10/21 22:00:00,14.49009009009009,14.49009009009009,19.748450208059056 + 10/21 22:10:00,14.536336336336337,14.536336336336337,19.75750723950579 + 10/21 22:20:00,14.582582582582582,14.582582582582582,19.766481312421477 + 10/21 22:30:00,14.628828828828829,14.628828828828829,19.775231433594226 + 10/21 22:40:00,14.675075075075075,14.675075075075075,19.783965263602455 + 10/21 22:50:00,14.721321321321322,14.721321321321322,19.792578292221355 + 10/21 23:00:00,14.767567567567568,14.767567567567568,19.801065396727837 + 10/21 23:10:00,14.742342342342342,14.742342342342342,19.808598945022973 + 10/21 23:20:00,14.717117117117116,14.717117117117116,19.81570811983748 + 10/21 23:30:00,14.691891891891892,14.691891891891892,19.822452723538459 + 10/21 23:40:00,14.666666666666668,14.666666666666668,19.828818512861319 + 10/21 23:50:00,14.641441441441442,14.641441441441442,19.834807224632546 + 10/21 24:00:00,14.616216216216217,14.616216216216217,19.84045438900486 + 10/22 00:10:00,14.616216216216217,14.616216216216217,19.846060510583329 + 10/22 00:20:00,14.616216216216217,14.616216216216217,19.8515798558768 + 10/22 00:30:00,14.616216216216217,14.616216216216217,19.856891081613257 + 10/22 00:40:00,14.616216216216217,14.616216216216217,19.862001535607364 + 10/22 00:50:00,14.616216216216217,14.616216216216217,19.866864857422589 + 10/22 01:00:00,14.616216216216217,14.616216216216217,19.871439271533775 + 10/22 01:10:00,14.662462462462463,14.662462462462463,19.875799892310824 + 10/22 01:20:00,14.70870870870871,14.70870870870871,19.879996475873488 + 10/22 01:30:00,14.754954954954954,14.754954954954954,19.883914853539915 + 10/22 01:40:00,14.8012012012012,14.8012012012012,19.88761255645649 + 10/22 01:50:00,14.847447447447447,14.847447447447447,19.891083497651239 + 10/22 02:00:00,14.893693693693694,14.893693693693694,19.894249584997597 + 10/22 02:10:00,14.847447447447447,14.847447447447447,19.896967163567486 + 10/22 02:20:00,14.8012012012012,14.8012012012012,19.899594819932387 + 10/22 02:30:00,14.754954954954954,14.754954954954954,19.90221863043446 + 10/22 02:40:00,14.70870870870871,14.70870870870871,19.904868245416237 + 10/22 02:50:00,14.662462462462463,14.662462462462463,19.90746880629497 + 10/22 03:00:00,14.616216216216217,14.616216216216217,19.910167952927869 + 10/22 03:10:00,14.687687687687689,14.687687687687689,19.913843472156548 + 10/22 03:20:00,14.759159159159159,14.759159159159159,19.917672159487276 + 10/22 03:30:00,14.83063063063063,14.83063063063063,19.92175958876152 + 10/22 03:40:00,14.902102102102102,14.902102102102102,19.926020715052439 + 10/22 03:50:00,14.973573573573575,14.973573573573575,19.930528955949204 + 10/22 04:00:00,15.045045045045045,15.045045045045045,19.93528104621452 + 10/22 04:10:00,15.045045045045045,15.045045045045045,19.939396798951117 + 10/22 04:20:00,15.045045045045045,15.045045045045045,19.94358122340442 + 10/22 04:30:00,15.045045045045045,15.045045045045045,19.9476910132499 + 10/22 04:40:00,15.045045045045045,15.045045045045045,19.95173557000687 + 10/22 04:50:00,15.045045045045045,15.045045045045045,19.955788244342178 + 10/22 05:00:00,15.045045045045045,15.045045045045045,19.95978209141093 + 10/22 05:10:00,15.01981981981982,15.01981981981982,19.962498846282935 + 10/22 05:20:00,14.994594594594594,14.994594594594594,19.96505464913408 + 10/22 05:30:00,14.96936936936937,14.96936936936937,19.967343291507093 + 10/22 05:40:00,14.944144144144144,14.944144144144144,19.969553451200154 + 10/22 05:50:00,14.91891891891892,14.91891891891892,19.97162859371161 + 10/22 06:00:00,14.893693693693694,14.893693693693694,19.973675253544064 + 10/22 06:10:00,14.893693693693694,14.893693693693694,20.00044157284786 + 10/22 06:20:00,14.893693693693694,14.893693693693694,20.004535256247153 + 10/22 06:30:00,14.893693693693694,14.893693693693694,20.008428674042649 + 10/22 06:40:00,14.893693693693694,14.893693693693694,20.012152033619676 + 10/22 06:50:00,14.893693693693694,14.893693693693694,20.015717066942874 + 10/22 07:00:00,14.893693693693694,14.893693693693694,20.018876914888929 + 10/22 07:10:00,14.872672672672673,14.872672672672673,18.61993100140745 + 10/22 07:20:00,14.85165165165165,14.85165165165165,18.454055298016596 + 10/22 07:30:00,14.83063063063063,14.83063063063063,18.388545841601759 + 10/22 07:40:00,14.809609609609609,14.809609609609609,18.336410963983913 + 10/22 07:50:00,14.788588588588589,14.788588588588589,18.293986506105278 + 10/22 08:00:00,14.767567567567568,14.767567567567568,18.25819948518696 + 10/22 08:10:00,14.696096096096096,14.696096096096096,18.228069390368455 + 10/22 08:20:00,14.624624624624625,14.624624624624625,18.192661204882428 + 10/22 08:30:00,14.553153153153153,14.553153153153153,18.168063814118683 + 10/22 08:40:00,14.481681681681682,14.481681681681682,18.14512670930549 + 10/22 08:50:00,14.41021021021021,14.41021021021021,18.12322316577127 + 10/22 09:00:00,14.338738738738739,14.338738738738739,18.102058203545334 + 10/22 09:10:00,14.267267267267269,14.267267267267269,18.08169908800477 + 10/22 09:20:00,14.195795795795796,14.195795795795796,18.05104138807343 + 10/22 09:30:00,14.124324324324326,14.124324324324326,18.029393500285904 + 10/22 09:40:00,14.052852852852853,14.052852852852853,18.007582629227846 + 10/22 09:50:00,13.981381381381383,13.981381381381383,17.98570940417595 + 10/22 10:00:00,13.90990990990991,13.90990990990991,17.963557534631265 + 10/22 10:10:00,13.745945945945947,13.745945945945947,17.940741615735065 + 10/22 10:20:00,13.581981981981983,13.581981981981983,17.919908648246808 + 10/22 10:30:00,13.418018018018019,13.418018018018019,17.8980396602736 + 10/22 10:40:00,13.254054054054056,13.254054054054056,17.876210468784927 + 10/22 10:50:00,13.09009009009009,13.09009009009009,17.854990433442557 + 10/22 11:00:00,12.926126126126127,12.926126126126127,17.834801923647725 + 10/22 11:10:00,12.85885885885886,12.85885885885886,17.81614511624625 + 10/22 11:20:00,12.8,12.8,17.797971266835608 + 10/22 11:30:00,12.8,12.8,17.781145556003517 + 10/22 11:40:00,12.8,12.8,17.76529731287458 + 10/22 11:50:00,12.8,12.8,17.750390815714697 + 10/22 12:00:00,12.8,12.8,17.73647165444861 + 10/22 12:10:00,12.8,12.8,17.72340555744445 + 10/22 12:20:00,12.8,12.8,17.711132182232185 + 10/22 12:30:00,12.8,12.8,17.699492897181519 + 10/22 12:40:00,12.8,12.8,17.68854185622825 + 10/22 12:50:00,12.8,12.8,17.678206970998468 + 10/22 13:00:00,12.8,12.8,17.668413102509456 + 10/22 13:10:00,12.8,12.8,17.659460052186355 + 10/22 13:20:00,12.8,12.8,17.65108894082276 + 10/22 13:30:00,12.8,12.8,17.64307554469859 + 10/22 13:40:00,12.8,12.8,17.63556857600525 + 10/22 13:50:00,12.8,12.8,17.62858795511942 + 10/22 14:00:00,12.8,12.8,17.622067077345915 + 10/22 14:10:00,12.8,12.8,17.616056131663446 + 10/22 14:20:00,12.8,12.8,17.611375903129806 + 10/22 14:30:00,12.8,12.8,17.607176052037159 + 10/22 14:40:00,12.8,12.8,17.603549326753489 + 10/22 14:50:00,12.8,12.8,17.600579113425355 + 10/22 15:00:00,12.8,12.8,17.598233730014888 + 10/22 15:10:00,12.8,12.8,19.024003386014607 + 10/22 15:20:00,12.8,12.8,19.175347507822076 + 10/22 15:30:00,12.8,12.8,19.23933111386395 + 10/22 15:40:00,12.8,12.8,19.2896229005794 + 10/22 15:50:00,12.8,12.8,19.330380317796164 + 10/22 16:00:00,12.8,12.8,19.364921317904068 + 10/22 16:10:00,12.8,12.8,19.395230179182428 + 10/22 16:20:00,12.8,12.8,19.431539717880363 + 10/22 16:30:00,12.8,12.8,19.45652345824064 + 10/22 16:40:00,12.8,12.8,19.47971526224179 + 10/22 16:50:00,12.8,12.8,19.501693276531019 + 10/22 17:00:00,12.8,12.8,19.522574413726756 + 10/22 17:10:00,12.8,12.8,19.542732527148517 + 10/22 17:20:00,12.8,12.8,19.580091560716434 + 10/22 17:30:00,12.8,12.8,19.599058258618166 + 10/22 17:40:00,12.8,12.8,19.61725621250592 + 10/22 17:50:00,12.85885885885886,12.85885885885886,19.63448164735489 + 10/22 18:00:00,12.926126126126127,12.926126126126127,19.650997285504805 + 10/22 18:10:00,12.997597597597599,12.997597597597599,19.666578965681805 + 10/22 18:20:00,13.06906906906907,13.06906906906907,19.681365152382879 + 10/22 18:30:00,13.140540540540542,13.140540540540542,19.694864528006627 + 10/22 18:40:00,13.212012012012015,13.212012012012015,19.707203638372225 + 10/22 18:50:00,13.283483483483485,13.283483483483485,19.718556837593437 + 10/22 19:00:00,13.354954954954956,13.354954954954956,19.729048778147289 + 10/22 19:10:00,13.426426426426428,13.426426426426428,19.739128583609636 + 10/22 19:20:00,13.497897897897899,13.497897897897899,19.748393151949835 + 10/22 19:30:00,13.56936936936937,13.56936936936937,19.757338491251379 + 10/22 19:40:00,13.640840840840842,13.640840840840842,19.76599054589698 + 10/22 19:50:00,13.712312312312314,13.712312312312314,19.774522927769369 + 10/22 20:00:00,13.783783783783785,13.783783783783785,19.78286903124013 + 10/22 20:10:00,13.804804804804805,13.804804804804805,19.768226641964306 + 10/22 20:20:00,13.825825825825828,13.825825825825828,19.77606717449685 + 10/22 20:30:00,13.846846846846848,13.846846846846848,19.78352829270318 + 10/22 20:40:00,13.867867867867869,13.867867867867869,19.790878920561029 + 10/22 20:50:00,13.88888888888889,13.88888888888889,19.797941080620608 + 10/22 21:00:00,13.90990990990991,13.90990990990991,19.804756379406638 + 10/22 21:10:00,13.935135135135136,13.935135135135136,19.811833488199029 + 10/22 21:20:00,13.960360360360362,13.960360360360362,19.818028940421845 + 10/22 21:30:00,13.985585585585586,13.985585585585586,19.824050416741455 + 10/22 21:40:00,14.010810810810812,14.010810810810812,19.829700206113058 + 10/22 21:50:00,14.036036036036038,14.036036036036038,19.83513701879741 + 10/22 22:00:00,14.061261261261262,14.061261261261262,19.8403834448215 + 10/22 22:10:00,14.132732732732733,14.132732732732733,19.845088355287197 + 10/22 22:20:00,14.204204204204205,14.204204204204205,19.850448797576396 + 10/22 22:30:00,14.275675675675675,14.275675675675675,19.855827210177634 + 10/22 22:40:00,14.347147147147148,14.347147147147148,19.861361822602804 + 10/22 22:50:00,14.418618618618618,14.418618618618618,19.866858538861189 + 10/22 23:00:00,14.49009009009009,14.49009009009009,19.87226788459515 + 10/22 23:10:00,14.511111111111111,14.511111111111111,19.877421280650809 + 10/22 23:20:00,14.532132132132132,14.532132132132132,19.882139714199807 + 10/22 23:30:00,14.553153153153153,14.553153153153153,19.88670012998628 + 10/22 23:40:00,14.574174174174175,14.574174174174175,19.890994179052784 + 10/22 23:50:00,14.595195195195196,14.595195195195196,19.89511897073323 + 10/22 24:00:00,14.616216216216217,14.616216216216217,19.899086662782428 + 10/23 00:10:00,14.641441441441442,14.641441441441442,19.90342965242536 + 10/23 00:20:00,14.666666666666666,14.666666666666666,19.90756262077044 + 10/23 00:30:00,14.691891891891892,14.691891891891892,19.911418846331537 + 10/23 00:40:00,14.717117117117118,14.717117117117118,19.915027485259495 + 10/23 00:50:00,14.742342342342342,14.742342342342342,19.918296993113299 + 10/23 01:00:00,14.767567567567568,14.767567567567568,19.921442884136334 + 10/23 01:10:00,14.767567567567568,14.767567567567568,19.924598734497239 + 10/23 01:20:00,14.767567567567568,14.767567567567568,19.928008647767905 + 10/23 01:30:00,14.767567567567568,14.767567567567568,19.93152968667791 + 10/23 01:40:00,14.767567567567568,14.767567567567568,19.93514700965516 + 10/23 01:50:00,14.767567567567568,14.767567567567568,19.938935720844289 + 10/23 02:00:00,14.767567567567568,14.767567567567568,19.942824366519369 + 10/23 02:10:00,14.767567567567568,14.767567567567568,19.946006669516849 + 10/23 02:20:00,14.767567567567568,14.767567567567568,19.949213596952739 + 10/23 02:30:00,14.767567567567568,14.767567567567568,19.952326529432726 + 10/23 02:40:00,14.767567567567568,14.767567567567568,19.955392607387695 + 10/23 02:50:00,14.767567567567568,14.767567567567568,19.95842480367118 + 10/23 03:00:00,14.767567567567568,14.767567567567568,19.961383332216337 + 10/23 03:10:00,14.767567567567568,14.767567567567568,19.964692971205375 + 10/23 03:20:00,14.767567567567568,14.767567567567568,19.967667300149694 + 10/23 03:30:00,14.767567567567568,14.767567567567568,19.970326827310318 + 10/23 03:40:00,14.767567567567568,14.767567567567568,19.972753041039309 + 10/23 03:50:00,14.767567567567568,14.767567567567568,19.97492008324976 + 10/23 04:00:00,14.767567567567568,14.767567567567568,19.976855657925385 + 10/23 04:10:00,14.767567567567568,14.767567567567568,19.978356783085475 + 10/23 04:20:00,14.767567567567568,14.767567567567568,19.979677668350079 + 10/23 04:30:00,14.767567567567568,14.767567567567568,19.981021485029517 + 10/23 04:40:00,14.767567567567568,14.767567567567568,19.9823153231963 + 10/23 04:50:00,14.767567567567568,14.767567567567568,19.98356318378055 + 10/23 05:00:00,14.767567567567568,14.767567567567568,19.984766294886968 + 10/23 05:10:00,14.767567567567568,14.767567567567568,19.98615326933352 + 10/23 05:20:00,14.767567567567568,14.767567567567568,19.98748917243246 + 10/23 05:30:00,14.767567567567568,14.767567567567568,19.9888591048596 + 10/23 05:40:00,14.767567567567568,14.767567567567568,19.990245600072329 + 10/23 05:50:00,14.767567567567568,14.767567567567568,19.99166463894995 + 10/23 06:00:00,14.767567567567568,14.767567567567568,19.993048678559114 + 10/23 06:10:00,14.767567567567568,14.767567567567568,17.996927096443348 + 10/23 06:20:00,14.767567567567568,14.767567567567568,17.762665615779363 + 10/23 06:30:00,14.767567567567568,14.767567567567568,17.675175368059518 + 10/23 06:40:00,14.767567567567568,14.767567567567568,17.606949482083754 + 10/23 06:50:00,14.767567567567568,14.767567567567568,17.553250290734565 + 10/23 07:00:00,14.767567567567568,14.767567567567568,17.508912722912485 + 10/23 07:10:00,14.767567567567568,14.767567567567568,16.031688524220966 + 10/23 07:20:00,14.767567567567568,14.767567567567568,15.813243938469946 + 10/23 07:30:00,14.767567567567568,14.767567567567568,15.710424334506094 + 10/23 07:40:00,14.767567567567568,14.767567567567568,15.626196115737442 + 10/23 07:50:00,14.767567567567568,14.767567567567568,15.556218130802617 + 10/23 08:00:00,14.767567567567568,14.767567567567568,15.496032234735637 + 10/23 08:05:00,14.721321321321322,14.721321321321322,15.419017283340674 + 10/23 08:10:00,14.721321321321322,14.721321321321322,15.418934165167237 + 10/23 08:20:00,14.675075075075075,14.675075075075075,15.364034650111745 + 10/23 08:30:00,14.628828828828829,14.628828828828829,15.32140215928033 + 10/23 08:40:00,14.582582582582582,14.582582582582582,15.282090749030312 + 10/23 08:50:00,14.536336336336337,14.536336336336337,15.245376317099716 + 10/23 09:00:00,14.49009009009009,14.49009009009009,15.210753598660622 + 10/23 09:10:00,14.393393393393394,14.393393393393394,15.175447579242741 + 10/23 09:20:00,14.296696696696696,14.296696696696696,15.132274410075624 + 10/23 09:30:00,14.2,14.2,15.100675847742405 + 10/23 09:40:00,14.103303303303303,14.103303303303303,15.070513356237788 + 10/23 09:50:00,14.006606606606607,14.006606606606607,15.04187469593399 + 10/23 10:00:00,13.90990990990991,13.90990990990991,15.01490848459161 + 10/23 10:10:00,13.90990990990991,13.90990990990991,14.991178723350398 + 10/23 10:20:00,13.90990990990991,13.90990990990991,14.965806095092392 + 10/23 10:30:00,13.90990990990991,13.90990990990991,14.945616692810694 + 10/23 10:40:00,13.90990990990991,13.90990990990991,14.926787838052267 + 10/23 10:50:00,13.90990990990991,13.90990990990991,14.90893277770742 + 10/23 11:00:00,13.90990990990991,13.90990990990991,14.891849638636574 + 10/23 11:10:00,13.863663663663666,13.863663663663666,14.87573938060028 + 10/23 11:20:00,13.817417417417417,13.817417417417417,14.868688080204324 + 10/23 11:30:00,13.771171171171173,13.771171171171173,14.85235001770906 + 10/23 11:40:00,13.724924924924926,13.724924924924926,14.8362533015018 + 10/23 11:50:00,13.67867867867868,13.67867867867868,14.820813689683123 + 10/23 12:00:00,13.632432432432433,13.632432432432433,14.805996317603669 + 10/23 12:10:00,13.703903903903905,13.703903903903905,14.790970695828772 + 10/23 12:20:00,13.775375375375376,13.775375375375376,14.76833921361772 + 10/23 12:30:00,13.846846846846847,13.846846846846847,14.755999343867029 + 10/23 12:40:00,13.918318318318319,13.918318318318319,14.744192573329905 + 10/23 12:50:00,13.989789789789791,13.989789789789791,14.732136825145627 + 10/23 13:00:00,14.061261261261262,14.061261261261262,14.720978145798077 + 10/23 13:10:00,13.989789789789791,13.989789789789791,14.710941883600136 + 10/23 13:20:00,13.918318318318317,13.918318318318317,14.700686751965235 + 10/23 13:30:00,13.846846846846847,13.846846846846847,14.687832276458599 + 10/23 13:40:00,13.775375375375376,13.775375375375376,14.675671245924722 + 10/23 13:50:00,13.703903903903905,13.703903903903905,14.660904625560235 + 10/23 14:00:00,13.632432432432433,13.632432432432433,14.647529356986669 + 10/23 14:10:00,13.632432432432433,13.632432432432433,14.636291865435782 + 10/23 14:20:00,13.632432432432433,13.632432432432433,14.62480673383255 + 10/23 14:30:00,13.632432432432433,13.632432432432433,14.611445535535414 + 10/23 14:40:00,13.632432432432433,13.632432432432433,14.600028793032669 + 10/23 14:50:00,13.632432432432433,13.632432432432433,14.589339344220753 + 10/23 15:00:00,13.632432432432433,13.632432432432433,14.578678522627876 + 10/23 15:10:00,13.67867867867868,13.67867867867868,16.7226499525499 + 10/23 15:20:00,13.724924924924924,13.724924924924924,16.970497820848466 + 10/23 15:30:00,13.771171171171173,13.771171171171173,17.067045515840513 + 10/23 15:40:00,13.817417417417419,13.817417417417419,17.140834227398753 + 10/23 15:50:00,13.863663663663666,13.863663663663666,17.19994008842015 + 10/23 16:00:00,13.90990990990991,13.90990990990991,17.248808396308289 + 10/23 16:10:00,13.956156156156157,13.956156156156157,17.315379196246864 + 10/23 16:20:00,14.002402402402403,14.002402402402403,17.371283750293629 + 10/23 16:30:00,14.04864864864865,14.04864864864865,17.40329562650664 + 10/23 16:40:00,14.094894894894896,14.094894894894896,17.43198539199926 + 10/23 16:50:00,14.14114114114114,14.14114114114114,17.45778689864055 + 10/23 17:00:00,14.187387387387388,14.187387387387388,17.481239139366929 + 10/23 17:10:00,14.25885885885886,14.25885885885886,17.517193059562204 + 10/23 17:20:00,14.33033033033033,14.33033033033033,17.543708971412387 + 10/23 17:30:00,14.401801801801803,14.401801801801803,17.563493779063046 + 10/23 17:40:00,14.473273273273274,14.473273273273274,17.581955167014294 + 10/23 17:50:00,14.544744744744746,14.544744744744746,17.599178407427716 + 10/23 18:00:00,14.616216216216217,14.616216216216217,17.615249785638896 + 10/23 18:10:00,14.616216216216217,14.616216216216217,17.628680349717159 + 10/23 18:20:00,14.616216216216217,14.616216216216217,17.64093724042278 + 10/23 18:30:00,14.616216216216217,14.616216216216217,17.652238506591237 + 10/23 18:40:00,14.616216216216217,14.616216216216217,17.66262965166566 + 10/23 18:50:00,14.616216216216217,14.616216216216217,17.672372963600475 + 10/23 19:00:00,14.616216216216217,14.616216216216217,17.681443736128409 + 10/23 19:10:00,14.641441441441442,14.641441441441442,17.70362603477013 + 10/23 19:20:00,14.666666666666666,14.666666666666666,17.713690165273535 + 10/23 19:30:00,14.691891891891892,14.691891891891892,17.723145916670167 + 10/23 19:40:00,14.717117117117118,14.717117117117118,17.73246810708487 + 10/23 19:50:00,14.742342342342342,14.742342342342342,17.741506691291609 + 10/23 20:00:00,14.767567567567568,14.767567567567568,17.75035491965465 + 10/23 20:10:00,14.767567567567568,14.767567567567568,17.736503111234659 + 10/23 20:20:00,14.767567567567568,14.767567567567568,17.74928883267777 + 10/23 20:30:00,14.767567567567568,14.767567567567568,17.7571717888566 + 10/23 20:40:00,14.767567567567568,14.767567567567568,17.76460588665012 + 10/23 20:50:00,14.767567567567568,14.767567567567568,17.771583183570809 + 10/23 21:00:00,14.767567567567568,14.767567567567568,17.77813822704581 + 10/23 21:10:00,14.767567567567568,14.767567567567568,17.78483704472792 + 10/23 21:20:00,14.767567567567568,14.767567567567568,17.79053458799322 + 10/23 21:30:00,14.767567567567568,14.767567567567568,17.795993646522367 + 10/23 21:40:00,14.767567567567568,14.767567567567568,17.80109708041465 + 10/23 21:50:00,14.767567567567568,14.767567567567568,17.806006632689404 + 10/23 22:00:00,14.767567567567568,14.767567567567568,17.810870356417739 + 10/23 22:10:00,14.788588588588589,14.788588588588589,19.175487844251046 + 10/23 22:20:00,14.809609609609609,14.809609609609609,19.317747811782259 + 10/23 22:30:00,14.83063063063063,14.83063063063063,19.380415255312923 + 10/23 22:40:00,14.85165165165165,14.85165165165165,19.42965144090848 + 10/23 22:50:00,14.872672672672673,14.872672672672673,19.469528104965585 + 10/23 23:00:00,14.893693693693694,14.893693693693694,19.50311013042383 + 10/23 23:10:00,14.91891891891892,14.91891891891892,19.53221850239747 + 10/23 23:20:00,14.944144144144144,14.944144144144144,19.558007475548125 + 10/23 23:30:00,14.96936936936937,14.96936936936937,19.58112740409518 + 10/23 23:40:00,14.994594594594595,14.994594594594595,19.6022493541003 + 10/23 23:50:00,15.01981981981982,15.01981981981982,19.621696631345484 + 10/23 24:00:00,15.045045045045045,15.045045045045045,19.639730470225805 + 10/24 00:10:00,15.045045045045045,15.045045045045045,19.65578093471373 + 10/24 00:20:00,15.045045045045045,15.045045045045045,19.67044610943558 + 10/24 00:30:00,15.045045045045045,15.045045045045045,19.684123525102949 + 10/24 00:40:00,15.045045045045045,15.045045045045045,19.696901679900237 + 10/24 00:50:00,15.045045045045045,15.045045045045045,19.708902606661544 + 10/24 01:00:00,15.045045045045045,15.045045045045045,19.72022217414502 + 10/24 01:10:00,15.066066066066066,15.066066066066066,19.731090018380756 + 10/24 01:20:00,15.087087087087087,15.087087087087087,19.74170971070778 + 10/24 01:30:00,15.108108108108109,15.108108108108109,19.752007533736437 + 10/24 01:40:00,15.12912912912913,15.12912912912913,19.762022513921104 + 10/24 01:50:00,15.15015015015015,15.15015015015015,19.77170557695184 + 10/24 02:00:00,15.17117117117117,15.17117117117117,19.781057608009364 + 10/24 02:10:00,15.196396396396397,15.196396396396397,19.790912417280038 + 10/24 02:20:00,15.22162162162162,15.22162162162162,19.800352585952014 + 10/24 02:30:00,15.246846846846847,15.246846846846847,19.809504709565677 + 10/24 02:40:00,15.272072072072073,15.272072072072073,19.818328643007399 + 10/24 02:50:00,15.297297297297297,15.297297297297297,19.826905962572988 + 10/24 03:00:00,15.322522522522523,15.322522522522523,19.83516837320624 + 10/24 03:10:00,15.322522522522523,15.322522522522523,19.8418713991108 + 10/24 03:20:00,15.322522522522523,15.322522522522523,19.848310085919584 + 10/24 03:30:00,15.322522522522523,15.322522522522523,19.85447271452401 + 10/24 03:40:00,15.322522522522523,15.322522522522523,19.8603688587553 + 10/24 03:50:00,15.322522522522523,15.322522522522523,19.865950682852089 + 10/24 04:00:00,15.322522522522523,15.322522522522523,19.871336091460777 + 10/24 04:10:00,15.322522522522523,15.322522522522523,19.87771731655668 + 10/24 04:20:00,15.322522522522523,15.322522522522523,19.88394893095517 + 10/24 04:30:00,15.322522522522523,15.322522522522523,19.890008950111544 + 10/24 04:40:00,15.322522522522523,15.322522522522523,19.895874868843458 + 10/24 04:50:00,15.322522522522523,15.322522522522523,19.90157146273757 + 10/24 05:00:00,15.322522522522523,15.322522522522523,19.907179043292154 + 10/24 05:10:00,15.343543543543543,15.343543543543543,19.912918427300356 + 10/24 05:20:00,15.364564564564564,15.364564564564564,19.918578099658985 + 10/24 05:30:00,15.385585585585586,15.385585585585586,19.924154455794104 + 10/24 05:40:00,15.406606606606607,15.406606606606607,19.929610555278189 + 10/24 05:50:00,15.427627627627628,15.427627627627628,19.93509246270959 + 10/24 06:00:00,15.448648648648648,15.448648648648648,19.940513770442398 + 10/24 06:10:00,15.448648648648648,15.448648648648648,17.938396755255228 + 10/24 06:20:00,15.448648648648648,15.448648648648648,17.704131046215474 + 10/24 06:30:00,15.448648648648648,15.448648648648648,17.617426202598833 + 10/24 06:40:00,15.448648648648648,15.448648648648648,17.549982518645625 + 10/24 06:50:00,15.448648648648648,15.448648648648648,17.49722110690579 + 10/24 07:00:00,15.448648648648648,15.448648648648648,17.454016413640745 + 10/24 07:10:00,15.448648648648648,15.448648648648648,15.975187686017203 + 10/24 07:20:00,15.448648648648648,15.448648648648648,15.759986150967587 + 10/24 07:30:00,15.448648648648648,15.448648648648648,15.660807016289823 + 10/24 07:40:00,15.448648648648648,15.448648648648648,15.580013781008413 + 10/24 07:50:00,15.448648648648648,15.448648648648648,15.512645194652702 + 10/24 08:00:00,15.448648648648648,15.448648648648648,15.453995079491739 + 10/24 08:10:00,15.427627627627628,15.427627627627628,15.375646208685174 + 10/24 08:20:00,15.406606606606607,15.406606606606607,15.319673357713397 + 10/24 08:30:00,15.385585585585586,15.385585585585586,15.275437074525245 + 10/24 08:40:00,15.364564564564564,15.364564564564564,15.234637961147503 + 10/24 08:50:00,15.343543543543543,15.343543543543543,15.197014625105913 + 10/24 09:00:00,15.322522522522523,15.322522522522523,15.162278151226774 + 10/24 09:10:00,15.276276276276276,15.276276276276276,15.131311438606735 + 10/24 09:20:00,15.23003003003003,15.23003003003003,15.091942145652054 + 10/24 09:30:00,15.183783783783785,15.183783783783785,15.064708749291123 + 10/24 09:40:00,15.137537537537538,15.137537537537538,15.039065798214418 + 10/24 09:50:00,15.091291291291292,15.091291291291292,15.014966225321379 + 10/24 10:00:00,15.045045045045045,15.045045045045045,14.992396538361449 + 10/24 10:10:00,14.998798798798799,14.998798798798799,14.969073072260948 + 10/24 10:20:00,14.952552552552552,14.952552552552552,14.943743964678259 + 10/24 10:30:00,14.906306306306306,14.906306306306306,14.923063799285995 + 10/24 10:40:00,14.86006006006006,14.86006006006006,14.903275664625224 + 10/24 10:50:00,14.813813813813815,14.813813813813815,14.883926751575322 + 10/24 11:00:00,14.767567567567568,14.767567567567568,14.864814526004766 + 10/24 11:10:00,14.767567567567568,14.767567567567568,14.847629061807865 + 10/24 11:20:00,14.767567567567568,14.767567567567568,14.840572251461035 + 10/24 11:30:00,14.767567567567568,14.767567567567568,14.824315031405864 + 10/24 11:40:00,14.767567567567568,14.767567567567568,14.809070343216924 + 10/24 11:50:00,14.767567567567568,14.767567567567568,14.795712856002512 + 10/24 12:00:00,14.767567567567568,14.767567567567568,14.784377200379528 + 10/24 12:10:00,14.788588588588589,14.788588588588589,14.77422116644136 + 10/24 12:20:00,14.809609609609609,14.809609609609609,14.756143879325217 + 10/24 12:30:00,14.83063063063063,14.83063063063063,14.750371588869632 + 10/24 12:40:00,14.85165165165165,14.85165165165165,14.745027909347489 + 10/24 12:50:00,14.872672672672673,14.872672672672673,14.736856820601288 + 10/24 13:00:00,14.893693693693694,14.893693693693694,14.731575300827389 + 10/24 13:10:00,14.91891891891892,14.91891891891892,14.725157154210129 + 10/24 13:20:00,14.944144144144144,14.944144144144144,14.722075396682538 + 10/24 13:30:00,14.96936936936937,14.96936936936937,14.717420416667219 + 10/24 13:40:00,14.994594594594595,14.994594594594595,14.711427441449544 + 10/24 13:50:00,15.01981981981982,15.01981981981982,14.704640854103947 + 10/24 14:00:00,15.045045045045045,15.045045045045045,14.699615266049492 + 10/24 14:10:00,15.045045045045045,15.045045045045045,14.69309101295614 + 10/24 14:20:00,15.045045045045045,15.045045045045045,14.68915837162279 + 10/24 14:30:00,15.045045045045045,15.045045045045045,14.683572123656399 + 10/24 14:40:00,15.045045045045045,15.045045045045045,14.677876542372747 + 10/24 14:50:00,15.045045045045045,15.045045045045045,14.670004486812811 + 10/24 15:00:00,15.045045045045045,15.045045045045045,14.665587262953109 + 10/24 15:05:00,15.066066066066066,15.066066066066066,16.811786066598449 + 10/24 15:10:00,15.066066066066066,15.066066066066066,16.81078446007773 + 10/24 15:20:00,15.087087087087087,15.087087087087087,17.054461054868569 + 10/24 15:30:00,15.108108108108109,15.108108108108109,17.151257040656629 + 10/24 15:40:00,15.12912912912913,15.12912912912913,17.225439085527428 + 10/24 15:50:00,15.15015015015015,15.15015015015015,17.28358252728838 + 10/24 16:00:00,15.17117117117117,15.17117117117117,17.331348878523334 + 10/24 16:10:00,15.196396396396397,15.196396396396397,17.395561108932996 + 10/24 16:20:00,15.22162162162162,15.22162162162162,17.449509200940335 + 10/24 16:30:00,15.246846846846847,15.246846846846847,17.480275810738499 + 10/24 16:40:00,15.272072072072073,15.272072072072073,17.507734932458388 + 10/24 16:50:00,15.297297297297297,15.297297297297297,17.53259974109185 + 10/24 17:00:00,15.322522522522523,15.322522522522523,17.555252964612593 + 10/24 17:10:00,15.343543543543543,15.343543543543543,17.58848665386511 + 10/24 17:20:00,15.364564564564564,15.364564564564564,17.612869159060936 + 10/24 17:30:00,15.385585585585586,15.385585585585586,17.630271268078 + 10/24 17:40:00,15.406606606606607,15.406606606606607,17.646508860023887 + 10/24 17:50:00,15.427627627627628,15.427627627627628,17.66163392358923 + 10/24 18:00:00,15.448648648648648,15.448648648648648,17.67577111338909 + 10/24 18:10:00,15.473873873873874,15.473873873873874,17.689370537997229 + 10/24 18:20:00,15.499099099099098,15.499099099099098,17.701635325066417 + 10/24 18:30:00,15.524324324324324,15.524324324324324,17.71309090196964 + 10/24 18:40:00,15.54954954954955,15.54954954954955,17.72369586340737 + 10/24 18:50:00,15.574774774774774,15.574774774774774,17.733651904053774 + 10/24 19:00:00,15.6,15.6,17.743011506740513 + 10/24 19:10:00,15.6,15.6,17.764966338991156 + 10/24 19:20:00,15.6,15.6,17.7744329009579 + 10/24 19:30:00,15.6,15.6,17.783073550694469 + 10/24 19:40:00,15.6,15.6,17.791354593423287 + 10/24 19:50:00,15.6,15.6,17.799243217537574 + 10/24 20:00:00,15.6,15.6,17.80673092626139 + 10/24 20:10:00,15.6,15.6,17.790804700905647 + 10/24 20:20:00,15.6,15.6,17.801391732074096 + 10/24 20:30:00,15.6,15.6,17.807299975284015 + 10/24 20:40:00,15.6,15.6,17.81291526347566 + 10/24 20:50:00,15.6,15.6,17.818297542034473 + 10/24 21:00:00,15.6,15.6,17.823455070440799 + 10/24 21:10:00,15.6,15.6,17.82838704951154 + 10/24 21:20:00,15.6,15.6,17.83304024065292 + 10/24 21:30:00,15.6,15.6,17.837542385080217 + 10/24 21:40:00,15.6,15.6,17.841906688442277 + 10/24 21:50:00,15.6,15.6,17.84610315197545 + 10/24 22:00:00,15.6,15.6,17.850140685971647 + 10/24 22:10:00,15.6,15.6,19.216242786116177 + 10/24 22:20:00,15.6,15.6,19.357739617385 + 10/24 22:30:00,15.6,15.6,19.419814691970143 + 10/24 22:40:00,15.6,15.6,19.468517106422654 + 10/24 22:50:00,15.6,15.6,19.507721467690936 + 10/24 23:00:00,15.6,15.6,19.54056070310208 + 10/24 23:10:00,15.6,15.6,19.56880455630222 + 10/24 23:20:00,15.6,15.6,19.593719972642004 + 10/24 23:30:00,15.6,15.6,19.615991261162664 + 10/24 23:40:00,15.6,15.6,19.636136313724046 + 10/24 23:50:00,15.6,15.6,19.654521164514983 + 10/24 24:00:00,15.6,15.6,19.67134154020233 + 10/25 00:10:00,15.6,15.6,19.685368845905157 + 10/25 00:20:00,15.6,15.6,19.698336312281709 + 10/25 00:30:00,15.6,15.6,19.710398453019687 + 10/25 00:40:00,15.6,15.6,19.721675805355827 + 10/25 00:50:00,15.6,15.6,19.73218705296241 + 10/25 01:00:00,15.6,15.6,19.742203730860166 + 10/25 01:10:00,15.6,15.6,19.755312279067156 + 10/25 01:20:00,15.6,15.6,19.76783512515718 + 10/25 01:30:00,15.6,15.6,19.779785184130249 + 10/25 01:40:00,15.6,15.6,19.791155506392216 + 10/25 01:50:00,15.6,15.6,19.802081509286734 + 10/25 02:00:00,15.6,15.6,19.81262928105785 + 10/25 02:10:00,15.6,15.6,19.82210148736892 + 10/25 02:20:00,15.6,15.6,19.831238135753777 + 10/25 02:30:00,15.6,15.6,19.840027120580108 + 10/25 02:40:00,15.6,15.6,19.8485057312648 + 10/25 02:50:00,15.6,15.6,19.85678331490445 + 10/25 03:00:00,15.6,15.6,19.864810930174984 + 10/25 03:10:00,15.6,15.6,19.871668764026148 + 10/25 03:20:00,15.6,15.6,19.878287000495975 + 10/25 03:30:00,15.6,15.6,19.88462805067123 + 10/25 03:40:00,15.6,15.6,19.890862898536086 + 10/25 03:50:00,15.6,15.6,19.896913930147016 + 10/25 04:00:00,15.6,15.6,19.90278788619788 + 10/25 04:10:00,15.6,15.6,19.9110738236683 + 10/25 04:20:00,15.6,15.6,19.919085913082627 + 10/25 04:30:00,15.6,15.6,19.92700295432109 + 10/25 04:40:00,15.6,15.6,19.934760007053609 + 10/25 04:50:00,15.6,15.6,19.942357067101299 + 10/25 05:00:00,15.6,15.6,19.949804790502957 + 10/25 05:10:00,15.6,15.6,19.953442540526419 + 10/25 05:20:00,15.6,15.6,19.956909001144877 + 10/25 05:30:00,15.6,15.6,19.960343328388107 + 10/25 05:40:00,15.6,15.6,19.963679353167899 + 10/25 05:50:00,15.6,15.6,19.966952917658998 + 10/25 06:00:00,15.6,15.6,19.97011775091382 + 10/25 06:10:00,15.6,15.6,17.971912679731838 + 10/25 06:20:00,15.6,15.6,17.740351875910858 + 10/25 06:30:00,15.6,15.6,17.655889381963858 + 10/25 06:40:00,15.6,15.6,17.59059418615351 + 10/25 06:50:00,15.6,15.6,17.5400346842734 + 10/25 07:00:00,15.6,15.6,17.49893953190137 + 10/25 07:10:00,15.6,15.6,16.023414467684256 + 10/25 07:20:00,15.6,15.6,15.810926835240713 + 10/25 07:30:00,15.6,15.6,15.714879788118726 + 10/25 07:40:00,15.6,15.6,15.637806035841903 + 10/25 07:50:00,15.6,15.6,15.575325981757408 + 10/25 08:00:00,15.6,15.6,15.522853742197747 + 10/25 08:10:00,15.6,15.6,15.445385057787857 + 10/25 08:20:00,15.6,15.6,15.392035545098198 + 10/25 08:30:00,15.6,15.6,15.350865872238105 + 10/25 08:40:00,15.6,15.6,15.312566201755703 + 10/25 08:50:00,15.6,15.6,15.275207940665546 + 10/25 09:00:00,15.6,15.6,15.237858782061189 + 10/25 09:10:00,15.6,15.6,15.205312148221916 + 10/25 09:20:00,15.6,15.6,15.160791461100775 + 10/25 09:30:00,15.6,15.6,15.12659711282487 + 10/25 09:40:00,15.6,15.6,15.092733363298527 + 10/25 09:50:00,15.6,15.6,15.060358061144653 + 10/25 10:00:00,15.6,15.6,15.029830942613783 + 10/25 10:10:00,15.6,15.6,14.996089152239103 + 10/25 10:20:00,15.6,15.6,14.960320685481724 + 10/25 10:30:00,15.6,15.6,14.929077520065907 + 10/25 10:40:00,15.6,15.6,14.898805752198925 + 10/25 10:50:00,15.6,15.6,14.869531944694174 + 10/25 11:00:00,15.6,15.6,14.841254609965973 + 10/25 11:10:00,15.6,15.6,14.815546384839058 + 10/25 11:20:00,15.6,15.6,14.801778172180251 + 10/25 11:30:00,15.6,15.6,14.779243785918883 + 10/25 11:40:00,15.591591591591591,15.591591591591591,14.757591868702832 + 10/25 11:50:00,15.52012012012012,15.52012012012012,14.736425336472867 + 10/25 12:00:00,15.448648648648648,15.448648648648648,14.715600427043518 + 10/25 12:10:00,15.402402402402402,15.402402402402402,14.697597685635938 + 10/25 12:20:00,15.356156156156157,15.356156156156157,14.669855407877299 + 10/25 12:30:00,15.30990990990991,15.30990990990991,14.652743035216269 + 10/25 12:40:00,15.263663663663664,15.263663663663664,14.63793495934884 + 10/25 12:50:00,15.217417417417418,15.217417417417418,14.624079032210624 + 10/25 13:00:00,15.17117117117117,15.17117117117117,14.609534698457646 + 10/25 13:10:00,15.15015015015015,15.15015015015015,14.59528580251684 + 10/25 13:20:00,15.12912912912913,15.12912912912913,14.584289728297105 + 10/25 13:30:00,15.108108108108109,15.108108108108109,14.570063813819245 + 10/25 13:40:00,15.087087087087087,15.087087087087087,14.558568436635034 + 10/25 13:50:00,15.066066066066066,15.066066066066066,14.546108486043386 + 10/25 14:00:00,15.045045045045045,15.045045045045045,14.53335650048725 + 10/25 14:10:00,15.01981981981982,15.01981981981982,14.527699103519089 + 10/25 14:20:00,14.994594594594594,14.994594594594594,14.525937544035417 + 10/25 14:30:00,14.96936936936937,14.96936936936937,14.520579715524736 + 10/25 14:40:00,14.944144144144144,14.944144144144144,14.518202310053704 + 10/25 14:50:00,14.91891891891892,14.91891891891892,14.516642426974843 + 10/25 15:00:00,14.893693693693694,14.893693693693694,14.512759733615129 + 10/25 15:05:00,14.91891891891892,14.91891891891892,16.674308752515864 + 10/25 15:10:00,14.91891891891892,14.91891891891892,16.67313788073442 + 10/25 15:20:00,14.944144144144144,14.944144144144144,16.921886309000294 + 10/25 15:30:00,14.96936936936937,14.96936936936937,17.018896677886898 + 10/25 15:40:00,14.994594594594595,14.994594594594595,17.090303980472759 + 10/25 15:50:00,15.01981981981982,15.01981981981982,17.148022797961305 + 10/25 16:00:00,15.045045045045045,15.045045045045045,17.195824845126098 + 10/25 16:10:00,15.091291291291292,15.091291291291292,17.26591626335931 + 10/25 16:20:00,15.137537537537538,15.137537537537538,17.32360571337727 + 10/25 16:30:00,15.183783783783785,15.183783783783785,17.3580979578118 + 10/25 16:40:00,15.23003003003003,15.23003003003003,17.389555157672395 + 10/25 16:50:00,15.276276276276276,15.276276276276276,17.419130097789428 + 10/25 17:00:00,15.322522522522523,15.322522522522523,17.447239297728176 + 10/25 17:10:00,15.393993993993995,15.393993993993995,17.485840129438765 + 10/25 17:20:00,15.465465465465466,15.465465465465466,17.516282423408489 + 10/25 17:30:00,15.536936936936936,15.536936936936936,17.53997065745731 + 10/25 17:40:00,15.6,15.6,17.56249529388899 + 10/25 17:50:00,15.6,15.6,17.58399416654311 + 10/25 18:00:00,15.6,15.6,17.604518849135848 + 10/25 18:10:00,15.6,15.6,17.623564383653688 + 10/25 18:20:00,15.6,15.6,17.641047337779928 + 10/25 18:30:00,15.6,15.6,17.657055664920337 + 10/25 18:40:00,15.6,15.6,17.671801390150084 + 10/25 18:50:00,15.6,15.6,17.685508873184845 + 10/25 19:00:00,15.6,15.6,17.69830749464865 + 10/25 19:10:00,15.6,15.6,17.724069657112304 + 10/25 19:20:00,15.6,15.6,17.73675308028735 + 10/25 19:30:00,15.6,15.6,17.748380533946265 + 10/25 19:40:00,15.6,15.6,17.759387607617385 + 10/25 19:50:00,15.6,15.6,17.769793836368725 + 10/25 20:00:00,15.6,15.6,17.779703115381726 + 10/25 20:10:00,15.6,15.6,17.767387780147133 + 10/25 20:20:00,15.6,15.6,17.781556456921139 + 10/25 20:30:00,15.6,15.6,17.790927451217269 + 10/25 20:40:00,15.6,15.6,17.799907249227517 + 10/25 20:50:00,15.6,15.6,17.808597181752753 + 10/25 21:00:00,15.6,15.6,17.817018655971596 + 10/25 21:10:00,15.6,15.6,17.82552825321556 + 10/25 21:20:00,15.6,15.6,17.833954561965706 + 10/25 21:30:00,15.6,15.6,17.842155442468554 + 10/25 21:40:00,15.6,15.6,17.85013810291085 + 10/25 21:50:00,15.6,15.6,17.85784137986608 + 10/25 22:00:00,15.6,15.6,17.86540876543006 + 10/25 22:10:00,15.6,15.6,19.241498248767049 + 10/25 22:20:00,15.6,15.6,19.38569977376971 + 10/25 22:30:00,15.6,15.6,19.450413760600946 + 10/25 22:40:00,15.6,15.6,19.501734162788887 + 10/25 22:50:00,15.6,15.6,19.543519387897164 + 10/25 23:00:00,15.6,15.6,19.578853548776896 + 10/25 23:10:00,15.6,15.6,19.609558566734273 + 10/25 23:20:00,15.6,15.6,19.63682532586008 + 10/25 23:30:00,15.6,15.6,19.661321986823674 + 10/25 23:40:00,15.6,15.6,19.68372508506864 + 10/25 23:50:00,15.6,15.6,19.704379772187978 + 10/25 24:00:00,15.6,15.6,19.72355236909282 + 10/26 00:10:00,15.6,15.6,19.74190486824488 + 10/26 00:20:00,15.6,15.6,19.75909556621332 + 10/26 00:30:00,15.6,15.6,19.775335382623493 + 10/26 00:40:00,15.6,15.6,19.790774073443207 + 10/26 00:50:00,15.6,15.6,19.805464693414114 + 10/26 01:00:00,15.6,15.6,19.819489674039294 + 10/26 01:10:00,15.6,15.6,19.832791788925328 + 10/26 01:20:00,15.6,15.6,19.845422760817223 + 10/26 01:30:00,15.6,15.6,19.857568131881047 + 10/26 01:40:00,15.6,15.6,19.86918518864989 + 10/26 01:50:00,15.6,15.6,19.880328025211715 + 10/26 02:00:00,15.6,15.6,19.89099515397428 + 10/26 02:10:00,15.6,15.6,19.900756099329266 + 10/26 02:20:00,15.6,15.6,19.91026599623037 + 10/26 02:30:00,15.6,15.6,19.91946145535334 + 10/26 02:40:00,15.6,15.6,19.928381374092408 + 10/26 02:50:00,15.6,15.6,19.93702421494588 + 10/26 03:00:00,15.6,15.6,19.945315698141099 + 10/26 03:10:00,15.6,15.6,19.953667829830036 + 10/26 03:20:00,15.6,15.6,19.96188956647512 + 10/26 03:30:00,15.6,15.6,19.970007576077579 + 10/26 03:40:00,15.6,15.6,19.97802938785395 + 10/26 03:50:00,15.6,15.6,19.985889265849559 + 10/26 04:00:00,15.6,15.6,19.993700149421714 + 10/26 04:10:00,15.6,15.6,20.000811946737345 + 10/26 04:20:00,15.6,15.6,20.007820265016539 + 10/26 04:30:00,15.6,15.6,20.014647073819366 + 10/26 04:40:00,15.6,15.6,20.021309837567043 + 10/26 04:50:00,15.6,15.6,20.027774768695318 + 10/26 05:00:00,15.6,15.6,20.034182825036465 + 10/26 05:10:00,15.6,15.6,20.04182940426838 + 10/26 05:20:00,15.6,15.6,20.049281186454388 + 10/26 05:30:00,15.6,15.6,20.05645190777359 + 10/26 05:40:00,15.6,15.6,20.063324171755423 + 10/26 05:50:00,15.6,15.6,20.070068699966613 + 10/26 06:00:00,15.6,15.6,20.076609765255716 + 10/26 06:10:00,15.6,15.6,18.07108111001399 + 10/26 06:20:00,15.6,15.6,17.839586560279085 + 10/26 06:30:00,15.6,15.6,17.754592884852078 + 10/26 06:40:00,15.6,15.6,17.688544701486216 + 10/26 06:50:00,15.6,15.6,17.637066656078689 + 10/26 07:00:00,15.6,15.6,17.59455093586266 + 10/26 07:10:00,15.6,15.6,16.110165109387425 + 10/26 07:20:00,15.6,15.6,15.893264722343945 + 10/26 07:30:00,15.6,15.6,15.791477610089466 + 10/26 07:40:00,15.6,15.6,15.70742923953288 + 10/26 07:50:00,15.6,15.6,15.636452822629737 + 10/26 08:00:00,15.6,15.6,15.573802529755405 + 10/26 08:10:00,15.6,15.6,15.490984859026498 + 10/26 08:20:00,15.6,15.6,15.429483425336099 + 10/26 08:30:00,15.6,15.6,15.378029254729239 + 10/26 08:40:00,15.6,15.6,15.328512624772023 + 10/26 08:50:00,15.6,15.6,15.281044127943773 + 10/26 09:00:00,15.6,15.6,15.235664218432916 + 10/26 09:10:00,15.6,15.6,15.193696765355348 + 10/26 09:20:00,15.6,15.6,15.144006914129923 + 10/26 09:30:00,15.536936936936936,15.536936936936936,15.106777106686545 + 10/26 09:40:00,15.372972972972973,15.372972972972973,15.071518342010077 + 10/26 09:50:00,15.209009009009009,15.209009009009009,15.037801415408257 + 10/26 10:00:00,15.045045045045045,15.045045045045045,15.005592363475543 + 10/26 10:10:00,14.973573573573575,14.973573573573575,14.974386769808295 + 10/26 10:20:00,14.902102102102102,14.902102102102102,14.939984200735419 + 10/26 10:30:00,14.83063063063063,14.83063063063063,14.910524884442268 + 10/26 10:40:00,14.759159159159159,14.759159159159159,14.882299037100973 + 10/26 10:50:00,14.687687687687689,14.687687687687689,14.855458365026129 + 10/26 11:00:00,14.616216216216217,14.616216216216217,14.829926191580848 + 10/26 11:10:00,14.523723723723723,14.523723723723723,14.805387068481807 + 10/26 11:20:00,14.431231231231232,14.431231231231232,14.791215887979647 + 10/26 11:30:00,14.338738738738739,14.338738738738739,14.768175702329624 + 10/26 11:40:00,14.246246246246246,14.246246246246246,14.746214513354575 + 10/26 11:50:00,14.153753753753755,14.153753753753755,14.725965055324645 + 10/26 12:00:00,14.061261261261262,14.061261261261262,14.707439764612776 + 10/26 12:10:00,14.036036036036036,14.036036036036036,14.691078769038678 + 10/26 12:20:00,14.01081081081081,14.01081081081081,14.668889566919562 + 10/26 12:30:00,13.985585585585586,13.985585585585586,14.658062011426056 + 10/26 12:40:00,13.960360360360362,13.960360360360362,14.6453125770822 + 10/26 12:50:00,13.935135135135136,13.935135135135136,14.633538696748069 + 10/26 13:00:00,13.90990990990991,13.90990990990991,14.622236613275179 + 10/26 13:10:00,13.842642642642645,13.842642642642645,14.606117925071472 + 10/26 13:20:00,13.775375375375376,13.775375375375376,14.595447861138683 + 10/26 13:30:00,13.708108108108109,13.708108108108109,14.580833121644412 + 10/26 13:40:00,13.640840840840842,13.640840840840842,14.563752768364445 + 10/26 13:50:00,13.573573573573574,13.573573573573574,14.55062302480381 + 10/26 14:00:00,13.506306306306307,13.506306306306307,14.538459842711001 + 10/26 14:10:00,13.481081081081081,13.481081081081081,14.525338764519053 + 10/26 14:20:00,13.455855855855857,13.455855855855857,14.519780167804024 + 10/26 14:30:00,13.430630630630632,13.430630630630632,14.511921718535934 + 10/26 14:40:00,13.405405405405407,13.405405405405407,14.501818825487895 + 10/26 14:50:00,13.380180180180182,13.380180180180182,14.495448226984357 + 10/26 15:00:00,13.354954954954956,13.354954954954956,14.49026300407911 + 10/26 15:05:00,13.401201201201202,13.401201201201202,16.647756810477739 + 10/26 15:10:00,13.401201201201202,13.401201201201202,16.646716977895115 + 10/26 15:20:00,13.447447447447449,13.447447447447449,16.89479625887034 + 10/26 15:30:00,13.493693693693695,13.493693693693695,16.99336520887026 + 10/26 15:40:00,13.539939939939942,13.539939939939942,17.069174646367288 + 10/26 15:50:00,13.586186186186187,13.586186186186187,17.129243161515946 + 10/26 16:00:00,13.632432432432433,13.632432432432433,17.177083660868044 + 10/26 16:10:00,13.632432432432433,13.632432432432433,17.24680235974077 + 10/26 16:20:00,13.632432432432433,13.632432432432433,17.304968371295226 + 10/26 16:30:00,13.632432432432433,13.632432432432433,17.33908834338069 + 10/26 16:40:00,13.632432432432433,13.632432432432433,17.369821783606715 + 10/26 16:50:00,13.632432432432433,13.632432432432433,17.39789728948425 + 10/26 17:00:00,13.632432432432433,13.632432432432433,17.423651358926017 + 10/26 17:10:00,13.775375375375376,13.775375375375376,17.461076405353354 + 10/26 17:20:00,13.918318318318319,13.918318318318319,17.49138125792896 + 10/26 17:30:00,14.061261261261262,14.061261261261262,17.514636415930697 + 10/26 17:40:00,14.204204204204205,14.204204204204205,17.536776906349897 + 10/26 17:50:00,14.347147147147148,14.347147147147148,17.557514715836399 + 10/26 18:00:00,14.49009009009009,14.49009009009009,17.577141934541378 + 10/26 18:10:00,14.536336336336337,14.536336336336337,17.5958835718844 + 10/26 18:20:00,14.582582582582582,14.582582582582582,17.61330308647775 + 10/26 18:30:00,14.628828828828829,14.628828828828829,17.629390866712229 + 10/26 18:40:00,14.675075075075075,14.675075075075075,17.64425662600239 + 10/26 18:50:00,14.721321321321322,14.721321321321322,17.658096751554504 + 10/26 19:00:00,14.767567567567568,14.767567567567568,17.671016220691539 + 10/26 19:10:00,14.813813813813815,14.813813813813815,17.69597104429116 + 10/26 19:20:00,14.860060060060059,14.860060060060059,17.707499690811888 + 10/26 19:30:00,14.906306306306306,14.906306306306306,17.71803672401063 + 10/26 19:40:00,14.952552552552552,14.952552552552552,17.727956619570429 + 10/26 19:50:00,14.998798798798799,14.998798798798799,17.737346193402048 + 10/26 20:00:00,15.045045045045045,15.045045045045045,17.746340292874366 + 10/26 20:10:00,15.091291291291292,15.091291291291292,17.73275304055258 + 10/26 20:20:00,15.137537537537538,15.137537537537538,17.746247628700176 + 10/26 20:30:00,15.183783783783785,15.183783783783785,17.75511549775313 + 10/26 20:40:00,15.23003003003003,15.23003003003003,17.763846202824195 + 10/26 20:50:00,15.276276276276276,15.276276276276276,17.772388804038088 + 10/26 21:00:00,15.322522522522523,15.322522522522523,17.780717074945824 + 10/26 21:10:00,15.393993993993995,15.393993993993995,17.78930733944293 + 10/26 21:20:00,15.465465465465466,15.465465465465466,17.797409328904857 + 10/26 21:30:00,15.536936936936936,15.536936936936936,17.805300268130308 + 10/26 21:40:00,15.6,15.6,17.812963597751819 + 10/26 21:50:00,15.6,15.6,17.82044909050127 + 10/26 22:00:00,15.6,15.6,17.827778038501316 + 10/26 22:10:00,15.6,15.6,19.199403686237124 + 10/26 22:20:00,15.6,15.6,19.34221981744103 + 10/26 22:30:00,15.6,15.6,19.40512546787578 + 10/26 22:40:00,15.54954954954955,15.54954954954955,19.45453984216902 + 10/26 22:50:00,15.499099099099098,15.499099099099098,19.493960170626314 + 10/26 23:00:00,15.448648648648648,15.448648648648648,19.526815016722723 + 10/26 23:10:00,15.448648648648648,15.448648648648648,19.555973171339145 + 10/26 23:20:00,15.448648648648648,15.448648648648648,19.58191586497555 + 10/26 23:30:00,15.448648648648648,15.448648648648648,19.60522266850058 + 10/26 23:40:00,15.448648648648648,15.448648648648648,19.626483507817175 + 10/26 23:50:00,15.448648648648648,15.448648648648648,19.64602873982823 + 10/26 24:00:00,15.448648648648648,15.448648648648648,19.664043980615319 + 10/27 00:10:00,15.402402402402402,15.402402402402402,19.680328760886547 + 10/27 00:20:00,15.356156156156157,15.356156156156157,19.694562182270955 + 10/27 00:30:00,15.30990990990991,15.30990990990991,19.707260962959745 + 10/27 00:40:00,15.263663663663664,15.263663663663664,19.718384186577539 + 10/27 00:50:00,15.217417417417418,15.217417417417418,19.72814217986681 + 10/27 01:00:00,15.17117117117117,15.17117117117117,19.736840376301527 + 10/27 01:10:00,15.196396396396397,15.196396396396397,19.74549151704384 + 10/27 01:20:00,15.22162162162162,15.22162162162162,19.754207164007945 + 10/27 01:30:00,15.246846846846847,15.246846846846847,19.762807733333344 + 10/27 01:40:00,15.272072072072073,15.272072072072073,19.77144609271916 + 10/27 01:50:00,15.297297297297297,15.297297297297297,19.780042225533675 + 10/27 02:00:00,15.322522522522523,15.322522522522523,19.788595168986267 + 10/27 02:10:00,15.322522522522523,15.322522522522523,19.79626308962254 + 10/27 02:20:00,15.322522522522523,15.322522522522523,19.803748276272104 + 10/27 02:30:00,15.322522522522523,15.322522522522523,19.81090489556404 + 10/27 02:40:00,15.322522522522523,15.322522522522523,19.817882060777757 + 10/27 02:50:00,15.322522522522523,15.322522522522523,19.824710155145789 + 10/27 03:00:00,15.322522522522523,15.322522522522523,19.83132509019114 + 10/27 03:10:00,15.368768768768769,15.368768768768769,19.83732727695856 + 10/27 03:20:00,15.415015015015016,15.415015015015016,19.84337898508778 + 10/27 03:30:00,15.46126126126126,15.46126126126126,19.849317618844855 + 10/27 03:40:00,15.507507507507507,15.507507507507507,19.855354901360167 + 10/27 03:50:00,15.553753753753754,15.553753753753754,19.861352173845107 + 10/27 04:00:00,15.6,15.6,19.867319135198373 + 10/27 04:10:00,15.6,15.6,19.875500256619639 + 10/27 04:20:00,15.6,15.6,19.88339917572038 + 10/27 04:30:00,15.6,15.6,19.891166723141887 + 10/27 04:40:00,15.6,15.6,19.89873068928424 + 10/27 04:50:00,15.6,15.6,19.906106773620715 + 10/27 05:00:00,15.6,15.6,19.913317368801655 + 10/27 05:10:00,15.6,15.6,19.919086345449004 + 10/27 05:20:00,15.6,15.6,19.92447947388384 + 10/27 05:30:00,15.6,15.6,19.92961305456202 + 10/27 05:40:00,15.6,15.6,19.934417309861457 + 10/27 05:50:00,15.6,15.6,19.93895477259497 + 10/27 06:00:00,15.6,15.6,19.943205746821726 + 10/27 06:10:00,15.6,15.6,17.93963410584947 + 10/27 06:20:00,15.6,15.6,17.70690696323895 + 10/27 06:30:00,15.6,15.6,17.62164193700308 + 10/27 06:40:00,15.6,15.6,17.55573666856528 + 10/27 06:50:00,15.6,15.6,17.50446543330035 + 10/27 07:00:00,15.6,15.6,17.46287015402209 + 10/27 07:10:00,15.6,15.6,15.982643484087264 + 10/27 07:20:00,15.6,15.6,15.767765776151676 + 10/27 07:30:00,15.6,15.6,15.669054047205063 + 10/27 07:40:00,15.6,15.6,15.589025617703996 + 10/27 07:50:00,15.6,15.6,15.522924344669232 + 10/27 08:00:00,15.6,15.6,15.466133250476084 + 10/27 08:10:00,15.482282282282283,15.482282282282283,15.391010535682371 + 10/27 08:20:00,15.364564564564564,15.364564564564564,15.338110772176565 + 10/27 08:30:00,15.246846846846847,15.246846846846847,15.296459318305619 + 10/27 08:40:00,15.12912912912913,15.12912912912913,15.257165256374972 + 10/27 08:50:00,15.01141141141141,15.01141141141141,15.219123270573805 + 10/27 09:00:00,14.893693693693694,14.893693693693694,15.18177741819518 + 10/27 09:10:00,14.826426426426427,14.826426426426427,15.143067534930966 + 10/27 09:20:00,14.759159159159159,14.759159159159159,15.09486091144332 + 10/27 09:30:00,14.691891891891892,14.691891891891892,15.057859531082596 + 10/27 09:40:00,14.624624624624625,14.624624624624625,15.021911673615492 + 10/27 09:50:00,14.557357357357358,14.557357357357358,14.987582475892428 + 10/27 10:00:00,14.49009009009009,14.49009009009009,14.955044355720736 + 10/27 10:10:00,14.43963963963964,14.43963963963964,14.925879090346295 + 10/27 10:20:00,14.389189189189189,14.389189189189189,14.897135941394814 + 10/27 10:30:00,14.338738738738739,14.338738738738739,14.873377547573142 + 10/27 10:40:00,14.288288288288289,14.288288288288289,14.850885659863256 + 10/27 10:50:00,14.237837837837839,14.237837837837839,14.82844138551688 + 10/27 11:00:00,14.187387387387388,14.187387387387388,14.805738899206773 + 10/27 11:10:00,14.14114114114114,14.14114114114114,14.781597104943725 + 10/27 11:20:00,14.094894894894896,14.094894894894896,14.766056566331008 + 10/27 11:30:00,14.04864864864865,14.04864864864865,14.74059022892336 + 10/27 11:40:00,14.002402402402403,14.002402402402403,14.715339123920339 + 10/27 11:50:00,13.956156156156157,13.956156156156157,14.691460684936834 + 10/27 12:00:00,13.90990990990991,13.90990990990991,14.669204567200734 + 10/27 12:10:00,13.796396396396398,13.796396396396398,14.64823938766606 + 10/27 12:20:00,13.682882882882883,13.682882882882883,14.618149573404507 + 10/27 12:30:00,13.56936936936937,13.56936936936937,14.599562872286599 + 10/27 12:40:00,13.455855855855857,13.455855855855857,14.580244089521714 + 10/27 12:50:00,13.342342342342344,13.342342342342344,14.560694990168456 + 10/27 13:00:00,13.22882882882883,13.22882882882883,14.544439056209596 + 10/27 13:10:00,13.203603603603604,13.203603603603604,14.527501736067729 + 10/27 13:20:00,13.17837837837838,13.17837837837838,14.51711442215153 + 10/27 13:30:00,13.153153153153154,13.153153153153154,14.50567466953131 + 10/27 13:40:00,13.12792792792793,13.12792792792793,14.492693508888049 + 10/27 13:50:00,13.102702702702704,13.102702702702704,14.482783075710695 + 10/27 14:00:00,13.077477477477478,13.077477477477478,14.47497491154994 + 10/27 14:10:00,13.052252252252253,13.052252252252253,14.465066000743507 + 10/27 14:20:00,13.027027027027028,13.027027027027028,14.461110109214353 + 10/27 14:30:00,13.001801801801803,13.001801801801803,14.455117565224127 + 10/27 14:40:00,12.976576576576577,12.976576576576577,14.448097582610562 + 10/27 14:50:00,12.951351351351353,12.951351351351353,14.443921122931627 + 10/27 15:00:00,12.926126126126127,12.926126126126127,14.443143949943453 + 10/27 15:05:00,12.926126126126127,12.926126126126127,16.60319354174556 + 10/27 15:10:00,12.926126126126127,12.926126126126127,16.602227754542839 + 10/27 15:20:00,12.926126126126127,12.926126126126127,16.85435324355456 + 10/27 15:30:00,12.926126126126127,12.926126126126127,16.957576352707006 + 10/27 15:40:00,12.926126126126127,12.926126126126127,17.03712080201782 + 10/27 15:50:00,12.926126126126127,12.926126126126127,17.099553187183675 + 10/27 16:00:00,12.926126126126127,12.926126126126127,17.148849324907766 + 10/27 16:10:00,12.976576576576577,12.976576576576577,17.216781313034486 + 10/27 16:20:00,13.027027027027028,13.027027027027028,17.272515029881967 + 10/27 16:30:00,13.077477477477478,13.077477477477478,17.30464450716204 + 10/27 16:40:00,13.127927927927928,13.127927927927928,17.333407638592186 + 10/27 16:50:00,13.17837837837838,13.17837837837838,17.35956214759637 + 10/27 17:00:00,13.22882882882883,13.22882882882883,17.383365948801918 + 10/27 17:10:00,13.275075075075077,13.275075075075077,17.41811948085631 + 10/27 17:20:00,13.321321321321323,13.321321321321323,17.4459269811015 + 10/27 17:30:00,13.367567567567568,13.367567567567568,17.4663587129687 + 10/27 17:40:00,13.413813813813816,13.413813813813816,17.485660034952937 + 10/27 17:50:00,13.46006006006006,13.46006006006006,17.503524567476299 + 10/27 18:00:00,13.506306306306307,13.506306306306307,17.520205063237694 + 10/27 18:10:00,13.552552552552554,13.552552552552554,17.536680010699287 + 10/27 18:20:00,13.5987987987988,13.5987987987988,17.55220272488327 + 10/27 18:30:00,13.645045045045047,13.645045045045047,17.566537661317559 + 10/27 18:40:00,13.691291291291293,13.691291291291293,17.57978523050851 + 10/27 18:50:00,13.737537537537538,13.737537537537538,17.592116731647683 + 10/27 19:00:00,13.783783783783785,13.783783783783785,17.60369082487003 + 10/27 19:10:00,13.783783783783785,13.783783783783785,17.626548453486124 + 10/27 19:20:00,13.783783783783785,13.783783783783785,17.63623580230378 + 10/27 19:30:00,13.783783783783785,13.783783783783785,17.645064696162174 + 10/27 19:40:00,13.783783783783785,13.783783783783785,17.653377693742209 + 10/27 19:50:00,13.783783783783785,13.783783783783785,17.661241746018975 + 10/27 20:00:00,13.783783783783785,13.783783783783785,17.668732229836864 + 10/27 20:10:00,13.804804804804805,13.804804804804805,17.65442772726608 + 10/27 20:20:00,13.825825825825828,13.825825825825828,17.666869466267408 + 10/27 20:30:00,13.846846846846848,13.846846846846848,17.67464430521216 + 10/27 20:40:00,13.867867867867869,13.867867867867869,17.682213570943085 + 10/27 20:50:00,13.88888888888889,13.88888888888889,17.689582345129368 + 10/27 21:00:00,13.90990990990991,13.90990990990991,17.69675924052825 + 10/27 21:10:00,13.90990990990991,13.90990990990991,17.70258765178261 + 10/27 21:20:00,13.90990990990991,13.90990990990991,17.708613620050579 + 10/27 21:30:00,13.90990990990991,13.90990990990991,17.71441660701454 + 10/27 21:40:00,13.90990990990991,13.90990990990991,17.720046749671015 + 10/27 21:50:00,13.90990990990991,13.90990990990991,17.725407361849386 + 10/27 22:00:00,13.90990990990991,13.90990990990991,17.730659905670238 + 10/27 22:10:00,13.935135135135136,13.935135135135136,19.101230613197389 + 10/27 22:20:00,13.960360360360362,13.960360360360362,19.24423993332305 + 10/27 22:30:00,13.985585585585586,13.985585585585586,19.306903467727027 + 10/27 22:40:00,14.010810810810812,14.010810810810812,19.356258279587526 + 10/27 22:50:00,14.036036036036038,14.036036036036038,19.396120056005807 + 10/27 23:00:00,14.061261261261262,14.061261261261262,19.429561895480576 + 10/27 23:10:00,14.225225225225226,14.225225225225226,19.4609274339635 + 10/27 23:20:00,14.389189189189189,14.389189189189189,19.49082914233442 + 10/27 23:30:00,14.553153153153153,14.553153153153153,19.518261675332697 + 10/27 23:40:00,14.717117117117118,14.717117117117118,19.544336798961138 + 10/27 23:50:00,14.881081081081082,14.881081081081082,19.56893327604362 + 10/27 24:00:00,15.045045045045045,15.045045045045045,19.592325387458766 + 10/28 00:10:00,15.091291291291292,15.091291291291292,19.61290876352492 + 10/28 00:20:00,15.137537537537538,15.137537537537538,19.631354555323598 + 10/28 00:30:00,15.183783783783785,15.183783783783785,19.648619332631254 + 10/28 00:40:00,15.23003003003003,15.23003003003003,19.664667273145679 + 10/28 00:50:00,15.276276276276276,15.276276276276276,19.679831891605234 + 10/28 01:00:00,15.322522522522523,15.322522522522523,19.69425152065533 + 10/28 01:10:00,15.343543543543543,15.343543543543543,19.706592505329966 + 10/28 01:20:00,15.364564564564564,15.364564564564564,19.71842629388597 + 10/28 01:30:00,15.385585585585586,15.385585585585586,19.7297719016679 + 10/28 01:40:00,15.406606606606607,15.406606606606607,19.740654543218218 + 10/28 01:50:00,15.427627627627628,15.427627627627628,19.75107815212304 + 10/28 02:00:00,15.448648648648648,15.448648648648648,19.76107151002232 + 10/28 02:10:00,15.427627627627628,15.427627627627628,19.769304506813684 + 10/28 02:20:00,15.406606606606607,15.406606606606607,19.777487671310106 + 10/28 02:30:00,15.385585585585586,15.385585585585586,19.785300036335167 + 10/28 02:40:00,15.364564564564564,15.364564564564564,19.79283483916236 + 10/28 02:50:00,15.343543543543543,15.343543543543543,19.800042923930829 + 10/28 03:00:00,15.322522522522523,15.322522522522523,19.806852362585969 + 10/28 03:10:00,15.322522522522523,15.322522522522523,19.817089393928315 + 10/28 03:20:00,15.322522522522523,15.322522522522523,19.826942355899914 + 10/28 03:30:00,15.322522522522523,15.322522522522523,19.8365116973087 + 10/28 03:40:00,15.322522522522523,15.322522522522523,19.845789494438905 + 10/28 03:50:00,15.322522522522523,15.322522522522523,19.854762500579967 + 10/28 04:00:00,15.322522522522523,15.322522522522523,19.863541231414719 + 10/28 04:10:00,15.276276276276276,15.276276276276276,19.866077719266518 + 10/28 04:20:00,15.23003003003003,15.23003003003003,19.868719512537529 + 10/28 04:30:00,15.183783783783785,15.183783783783785,19.87123715154786 + 10/28 04:40:00,15.137537537537538,15.137537537537538,19.87367116487665 + 10/28 04:50:00,15.091291291291292,15.091291291291292,19.875984207160003 + 10/28 05:00:00,15.045045045045045,15.045045045045045,19.878227399989826 + 10/28 05:10:00,15.045045045045045,15.045045045045045,19.882478214019938 + 10/28 05:20:00,15.045045045045045,15.045045045045045,19.886282833088687 + 10/28 05:30:00,15.045045045045045,15.045045045045045,19.889946412269887 + 10/28 05:40:00,15.045045045045045,15.045045045045045,19.893330135743104 + 10/28 05:50:00,15.045045045045045,15.045045045045045,19.896708361119953 + 10/28 06:00:00,15.045045045045045,15.045045045045045,19.899995440341706 + 10/28 06:10:00,15.045045045045045,15.045045045045045,19.24444963645736 + 10/28 06:20:00,15.045045045045045,15.045045045045045,19.178857981076335 + 10/28 06:30:00,15.045045045045045,15.045045045045045,19.15401960093801 + 10/28 06:40:00,15.045045045045045,15.045045045045045,19.135385472648584 + 10/28 06:50:00,15.045045045045045,15.045045045045045,19.12131910087031 + 10/28 07:00:00,15.045045045045045,15.045045045045045,19.110419545564484 + 10/28 07:10:00,15.045045045045045,15.045045045045045,18.02832738771612 + 10/28 07:20:00,15.045045045045045,15.045045045045045,17.883976506808815 + 10/28 07:30:00,15.045045045045045,15.045045045045045,17.8245299805102 + 10/28 07:40:00,15.045045045045045,15.045045045045045,17.77740521696328 + 10/28 07:50:00,15.045045045045045,15.045045045045045,17.73944014101672 + 10/28 08:00:00,15.045045045045045,15.045045045045045,17.707643838614965 + 10/28 08:10:00,14.998798798798799,14.998798798798799,17.680511587948478 + 10/28 08:20:00,14.952552552552552,14.952552552552552,17.648533018823028 + 10/28 08:30:00,14.906306306306306,14.906306306306306,17.62783977121711 + 10/28 08:40:00,14.86006006006006,14.86006006006006,17.609296121058958 + 10/28 08:50:00,14.813813813813815,14.813813813813815,17.592264726858088 + 10/28 09:00:00,14.767567567567568,14.767567567567568,17.57646523291635 + 10/28 09:10:00,14.742342342342342,14.742342342342342,17.561098205298319 + 10/28 09:20:00,14.717117117117116,14.717117117117116,17.53749957775283 + 10/28 09:30:00,14.691891891891892,14.691891891891892,17.523497265380415 + 10/28 09:40:00,14.666666666666668,14.666666666666668,17.510198936042636 + 10/28 09:50:00,14.641441441441442,14.641441441441442,17.497637921848516 + 10/28 10:00:00,14.616216216216217,14.616216216216217,17.48575087122024 + 10/28 10:10:00,14.595195195195196,14.595195195195196,17.475156504980228 + 10/28 10:20:00,14.574174174174175,14.574174174174175,17.465020949759557 + 10/28 10:30:00,14.553153153153153,14.553153153153153,17.455376783538815 + 10/28 10:40:00,14.532132132132132,14.532132132132132,17.446267322554975 + 10/28 10:50:00,14.511111111111111,14.511111111111111,17.43756815711777 + 10/28 11:00:00,14.49009009009009,14.49009009009009,17.42926010842249 + 10/28 11:10:00,14.464864864864865,14.464864864864865,17.421109308414729 + 10/28 11:20:00,14.439639639639639,14.439639639639639,17.413411661423824 + 10/28 11:30:00,14.414414414414415,14.414414414414415,17.406037792635759 + 10/28 11:40:00,14.389189189189189,14.389189189189189,17.39895007501034 + 10/28 11:50:00,14.363963963963965,14.363963963963965,17.392096331069057 + 10/28 12:00:00,14.338738738738739,14.338738738738739,17.385450770472184 + 10/28 12:10:00,14.313513513513513,14.313513513513513,17.37839044214181 + 10/28 12:20:00,14.288288288288289,14.288288288288289,17.37148692223345 + 10/28 12:30:00,14.263063063063063,14.263063063063063,17.3647186567932 + 10/28 12:40:00,14.237837837837839,14.237837837837839,17.358105349115904 + 10/28 12:50:00,14.212612612612613,14.212612612612613,17.351690511316997 + 10/28 13:00:00,14.187387387387388,14.187387387387388,17.345490249580533 + 10/28 13:10:00,14.14114114114114,14.14114114114114,17.33996630866353 + 10/28 13:20:00,14.094894894894896,14.094894894894896,17.334661831104929 + 10/28 13:30:00,14.04864864864865,14.04864864864865,17.329488153310949 + 10/28 13:40:00,14.002402402402403,14.002402402402403,17.32446837337176 + 10/28 13:50:00,13.956156156156157,13.956156156156157,17.31961772569846 + 10/28 14:00:00,13.90990990990991,13.90990990990991,17.31494729712119 + 10/28 14:10:00,13.88888888888889,13.88888888888889,17.308143552565516 + 10/28 14:20:00,13.867867867867869,13.867867867867869,17.30350106089221 + 10/28 14:30:00,13.846846846846848,13.846846846846848,17.298661512449596 + 10/28 14:40:00,13.825825825825828,13.825825825825828,17.294599211051023 + 10/28 14:50:00,13.804804804804805,13.804804804804805,17.29105913533212 + 10/28 15:00:00,13.783783783783785,13.783783783783785,17.28812290392906 + 10/28 15:10:00,13.783783783783785,13.783783783783785,17.2856484128792 + 10/28 15:20:00,13.783783783783785,13.783783783783785,17.28366235623828 + 10/28 15:30:00,13.783783783783785,13.783783783783785,17.28216558594996 + 10/28 15:40:00,13.783783783783785,13.783783783783785,17.28100708633062 + 10/28 15:50:00,13.783783783783785,13.783783783783785,17.280050702950633 + 10/28 16:00:00,13.783783783783785,13.783783783783785,17.27922755975715 + 10/28 16:10:00,13.783783783783785,13.783783783783785,17.290366824024408 + 10/28 16:20:00,13.783783783783785,13.783783783783785,17.298205340247827 + 10/28 16:30:00,13.783783783783785,13.783783783783785,17.297025549150204 + 10/28 16:40:00,13.783783783783785,13.783783783783785,17.29581659329656 + 10/28 16:50:00,13.783783783783785,13.783783783783785,17.29462293842926 + 10/28 17:00:00,13.783783783783785,13.783783783783785,17.293441355877144 + 10/28 17:10:00,13.804804804804805,13.804804804804805,19.04261230660431 + 10/28 17:20:00,13.825825825825828,13.825825825825828,19.256731979125268 + 10/28 17:30:00,13.846846846846848,13.846846846846848,19.335762482374 + 10/28 17:40:00,13.867867867867869,13.867867867867869,19.398626789073995 + 10/28 17:50:00,13.88888888888889,13.88888888888889,19.446588797210976 + 10/28 18:00:00,13.90990990990991,13.90990990990991,19.486209765294473 + 10/28 18:10:00,13.88888888888889,13.88888888888889,19.531914916444316 + 10/28 18:20:00,13.867867867867869,13.867867867867869,19.561657518070289 + 10/28 18:30:00,13.846846846846848,13.846846846846848,19.5874185258949 + 10/28 18:40:00,13.825825825825828,13.825825825825828,19.61034492060812 + 10/28 18:50:00,13.804804804804805,13.804804804804805,19.630788942698325 + 10/28 19:00:00,13.783783783783785,13.783783783783785,19.649095745331903 + 10/28 19:10:00,13.804804804804805,13.804804804804805,19.666407966949345 + 10/28 19:20:00,13.825825825825828,13.825825825825828,19.681489043117368 + 10/28 19:30:00,13.846846846846848,13.846846846846848,19.695517638366874 + 10/28 19:40:00,13.867867867867869,13.867867867867869,19.70841715405109 + 10/28 19:50:00,13.88888888888889,13.88888888888889,19.72048370735355 + 10/28 20:00:00,13.90990990990991,13.90990990990991,19.73190760098521 + 10/28 20:10:00,13.935135135135136,13.935135135135136,19.72034893601246 + 10/28 20:20:00,13.960360360360362,13.960360360360362,19.730410824750636 + 10/28 20:30:00,13.985585585585586,13.985585585585586,19.739990569323554 + 10/28 20:40:00,14.010810810810812,14.010810810810812,19.749063421189026 + 10/28 20:50:00,14.036036036036038,14.036036036036038,19.757727103440403 + 10/28 21:00:00,14.061261261261262,14.061261261261262,19.766086201137747 + 10/28 21:10:00,14.061261261261262,14.061261261261262,19.77381323845565 + 10/28 21:20:00,14.061261261261262,14.061261261261262,19.78158692019431 + 10/28 21:30:00,14.061261261261262,14.061261261261262,19.789000054335994 + 10/28 21:40:00,14.061261261261262,14.061261261261262,19.796058519414478 + 10/28 21:50:00,14.061261261261262,14.061261261261262,19.802970498430594 + 10/28 22:00:00,14.061261261261262,14.061261261261262,19.809515275910547 + 10/28 22:10:00,14.082282282282283,14.082282282282283,19.816059314168535 + 10/28 22:20:00,14.103303303303303,14.103303303303303,19.822085797979768 + 10/28 22:30:00,14.124324324324324,14.124324324324324,19.82782193939806 + 10/28 22:40:00,14.145345345345346,14.145345345345346,19.833401476337035 + 10/28 22:50:00,14.166366366366367,14.166366366366367,19.83883021792902 + 10/28 23:00:00,14.187387387387388,14.187387387387388,19.844114981667486 + 10/28 23:10:00,14.187387387387388,14.187387387387388,19.84917755446996 + 10/28 23:20:00,14.187387387387388,14.187387387387388,19.854274390770969 + 10/28 23:30:00,14.187387387387388,14.187387387387388,19.859257874047456 + 10/28 23:40:00,14.187387387387389,14.187387387387389,19.864170102963429 + 10/28 23:50:00,14.187387387387388,14.187387387387388,19.868913960790203 + 10/28 24:00:00,14.187387387387388,14.187387387387388,19.87349389240051 + 10/29 00:10:00,14.212612612612613,14.212612612612613,19.878453080214109 + 10/29 00:20:00,14.237837837837838,14.237837837837838,19.88306733523426 + 10/29 00:30:00,14.263063063063063,14.263063063063063,19.88779921833589 + 10/29 00:40:00,14.288288288288289,14.288288288288289,19.892523068932019 + 10/29 00:50:00,14.313513513513513,14.313513513513513,19.897317518515963 + 10/29 01:00:00,14.338738738738739,14.338738738738739,19.902136442731178 + 10/29 01:10:00,14.338738738738739,14.338738738738739,19.905932051727608 + 10/29 01:20:00,14.338738738738739,14.338738738738739,19.909887848939385 + 10/29 01:30:00,14.338738738738739,14.338738738738739,19.91356518558016 + 10/29 01:40:00,14.338738738738739,14.338738738738739,19.91702748437849 + 10/29 01:50:00,14.338738738738739,14.338738738738739,19.920199368339575 + 10/29 02:00:00,14.338738738738739,14.338738738738739,19.923010399482899 + 10/29 02:10:00,14.338738738738739,14.338738738738739,19.925910691976786 + 10/29 02:20:00,14.338738738738739,14.338738738738739,19.92867505379535 + 10/29 02:30:00,14.338738738738739,14.338738738738739,19.931358527998098 + 10/29 02:40:00,14.338738738738739,14.338738738738739,19.93397815522502 + 10/29 02:50:00,14.338738738738739,14.338738738738739,19.936459184592139 + 10/29 03:00:00,14.338738738738739,14.338738738738739,19.938955398648884 + 10/29 03:10:00,14.363963963963965,14.363963963963965,19.94170910979728 + 10/29 03:20:00,14.389189189189189,14.389189189189189,19.944155251889318 + 10/29 03:30:00,14.414414414414415,14.414414414414415,19.946579598996917 + 10/29 03:40:00,14.439639639639639,14.439639639639639,19.94885326707358 + 10/29 03:50:00,14.464864864864865,14.464864864864865,19.951138223497148 + 10/29 04:00:00,14.49009009009009,14.49009009009009,19.953460047378198 + 10/29 04:10:00,14.511111111111111,14.511111111111111,19.954861775610696 + 10/29 04:20:00,14.532132132132132,14.532132132132132,19.956303296431036 + 10/29 04:30:00,14.553153153153153,14.553153153153153,19.95771073294243 + 10/29 04:40:00,14.574174174174175,14.574174174174175,19.959103632304758 + 10/29 04:50:00,14.595195195195196,14.595195195195196,19.960562323638034 + 10/29 05:00:00,14.616216216216217,14.616216216216217,19.962020686267637 + 10/29 05:10:00,14.641441441441442,14.641441441441442,19.966553639571914 + 10/29 05:20:00,14.666666666666666,14.666666666666666,19.971003548906944 + 10/29 05:30:00,14.691891891891892,14.691891891891892,19.975334894487529 + 10/29 05:40:00,14.717117117117118,14.717117117117118,19.979709241671157 + 10/29 05:50:00,14.742342342342342,14.742342342342342,19.9840621002096 + 10/29 06:00:00,14.767567567567568,14.767567567567568,19.988406957901746 + 10/29 06:10:00,14.788588588588589,14.788588588588589,20.012039750379605 + 10/29 06:20:00,14.809609609609609,14.809609609609609,20.01324168447477 + 10/29 06:30:00,14.83063063063063,14.83063063063063,20.014508956052983 + 10/29 06:40:00,14.85165165165165,14.85165165165165,20.015787686687575 + 10/29 06:50:00,14.872672672672673,14.872672672672673,20.017052049465009 + 10/29 07:00:00,14.893693693693694,14.893693693693694,20.01822080822135 + 10/29 07:10:00,14.91891891891892,14.91891891891892,18.625645435754146 + 10/29 07:20:00,14.944144144144144,14.944144144144144,18.463216429021295 + 10/29 07:30:00,14.96936936936937,14.96936936936937,18.40147542008851 + 10/29 07:40:00,14.994594594594595,14.994594594594595,18.35341469431756 + 10/29 07:50:00,15.01981981981982,15.01981981981982,18.315820769911569 + 10/29 08:00:00,15.045045045045045,15.045045045045045,18.28486338096898 + 10/29 08:10:00,15.045045045045045,15.045045045045045,18.256375935725829 + 10/29 08:20:00,15.045045045045045,15.045045045045045,18.222423784776024 + 10/29 08:30:00,15.045045045045045,15.045045045045045,18.19983766502865 + 10/29 08:40:00,15.045045045045045,15.045045045045045,18.179263168580687 + 10/29 08:50:00,15.045045045045045,15.045045045045045,18.16001552117138 + 10/29 09:00:00,15.045045045045045,15.045045045045045,18.141699992823598 + 10/29 09:10:00,15.01981981981982,15.01981981981982,18.124758304213587 + 10/29 09:20:00,14.994594594594594,14.994594594594594,18.100240896094467 + 10/29 09:30:00,14.96936936936937,14.96936936936937,18.085121069950178 + 10/29 09:40:00,14.944144144144144,14.944144144144144,18.070842747983943 + 10/29 09:50:00,14.91891891891892,14.91891891891892,18.05720555877734 + 10/29 10:00:00,14.893693693693694,14.893693693693694,18.044129487816293 + 10/29 10:10:00,14.847447447447447,14.847447447447447,18.031912502890017 + 10/29 10:20:00,14.8012012012012,14.8012012012012,18.020092498037245 + 10/29 10:30:00,14.754954954954954,14.754954954954954,18.008514337091169 + 10/29 10:40:00,14.70870870870871,14.70870870870871,17.997022192128325 + 10/29 10:50:00,14.662462462462463,14.662462462462463,17.985735037524078 + 10/29 11:00:00,14.616216216216217,14.616216216216217,17.97456584844297 + 10/29 11:10:00,14.616216216216217,14.616216216216217,17.962902012447388 + 10/29 11:20:00,14.616216216216217,14.616216216216217,17.950829885286447 + 10/29 11:30:00,14.616216216216217,14.616216216216217,17.93893163367668 + 10/29 11:40:00,14.616216216216217,14.616216216216217,17.927406705026244 + 10/29 11:50:00,14.616216216216217,14.616216216216217,17.91699263515356 + 10/29 12:00:00,14.616216216216217,14.616216216216217,17.90797731607652 + 10/29 12:10:00,14.56996996996997,14.56996996996997,17.900933308669424 + 10/29 12:20:00,14.523723723723723,14.523723723723723,17.89570459451444 + 10/29 12:30:00,14.477477477477479,14.477477477477479,17.891407599623613 + 10/29 12:40:00,14.431231231231232,14.431231231231232,17.887840959984719 + 10/29 12:50:00,14.384984984984986,14.384984984984986,17.884327990259494 + 10/29 13:00:00,14.338738738738739,14.338738738738739,17.880567604461637 + 10/29 13:10:00,14.384984984984986,14.384984984984986,17.876804989623176 + 10/29 13:20:00,14.431231231231232,14.431231231231232,17.872491224366067 + 10/29 13:30:00,14.477477477477479,14.477477477477479,17.86829918710179 + 10/29 13:40:00,14.523723723723723,14.523723723723723,17.864345851274597 + 10/29 13:50:00,14.56996996996997,14.56996996996997,17.86095058354608 + 10/29 14:00:00,14.616216216216217,14.616216216216217,17.858106480127746 + 10/29 14:10:00,14.641441441441442,14.641441441441442,17.855408419837084 + 10/29 14:20:00,14.666666666666666,14.666666666666666,17.853687041947834 + 10/29 14:30:00,14.691891891891892,14.691891891891892,17.85233370636141 + 10/29 14:40:00,14.717117117117118,14.717117117117118,17.851268781244579 + 10/29 14:50:00,14.742342342342342,14.742342342342342,17.850420017683314 + 10/29 15:00:00,14.767567567567568,14.767567567567568,17.849668142389633 + 10/29 15:10:00,14.813813813813815,14.813813813813815,19.270876618546504 + 10/29 15:20:00,14.860060060060059,14.860060060060059,19.420823641876646 + 10/29 15:30:00,14.906306306306306,14.906306306306306,19.48456308244722 + 10/29 15:40:00,14.952552552552552,14.952552552552552,19.53410603530964 + 10/29 15:50:00,14.998798798798799,14.998798798798799,19.5734362012753 + 10/29 16:00:00,15.045045045045045,15.045045045045045,19.606232652376968 + 10/29 16:10:00,15.091291291291292,15.091291291291292,19.634175146688919 + 10/29 16:20:00,15.137537537537538,15.137537537537538,19.66767454809807 + 10/29 16:30:00,15.183783783783785,15.183783783783785,19.6898476053409 + 10/29 16:40:00,15.23003003003003,15.23003003003003,19.709953397349027 + 10/29 16:50:00,15.276276276276276,15.276276276276276,19.728333565265094 + 10/29 17:00:00,15.322522522522523,15.322522522522523,19.745176107421867 + 10/29 17:10:00,15.368768768768769,15.368768768768769,19.759980452675266 + 10/29 17:20:00,15.415015015015016,15.415015015015016,19.79139597244555 + 10/29 17:30:00,15.46126126126126,15.46126126126126,19.804345424271788 + 10/29 17:40:00,15.507507507507507,15.507507507507507,19.81643836451657 + 10/29 17:50:00,15.553753753753754,15.553753753753754,19.827746911746968 + 10/29 18:00:00,15.6,15.6,19.838495079615265 + 10/29 18:10:00,15.6,15.6,19.850374393418716 + 10/29 18:20:00,15.6,15.6,19.861759473724886 + 10/29 18:30:00,15.6,15.6,19.872518114774594 + 10/29 18:40:00,15.6,15.6,19.882674527566829 + 10/29 18:50:00,15.6,15.6,19.892341138966697 + 10/29 19:00:00,15.6,15.6,19.901558201114836 + 10/29 19:10:00,15.6,15.6,19.90856883434371 + 10/29 19:20:00,15.6,15.6,19.91493873307384 + 10/29 19:30:00,15.6,15.6,19.920961114473465 + 10/29 19:40:00,15.6,15.6,19.92659429057303 + 10/29 19:50:00,15.6,15.6,19.932022664861554 + 10/29 20:00:00,15.6,15.6,19.937221661932094 + 10/29 20:10:00,15.6,15.6,19.921083792133005 + 10/29 20:20:00,15.6,15.6,19.927201926334964 + 10/29 20:30:00,15.6,15.6,19.93308669266696 + 10/29 20:40:00,15.6,15.6,19.938890706216978 + 10/29 20:50:00,15.6,15.6,19.944539415371364 + 10/29 21:00:00,15.6,15.6,19.950042687841049 + 10/29 21:10:00,15.6,15.6,19.955662600277955 + 10/29 21:20:00,15.6,15.6,19.96109727763817 + 10/29 21:30:00,15.6,15.6,19.966463283138034 + 10/29 21:40:00,15.6,15.6,19.97169569970293 + 10/29 21:50:00,15.6,15.6,19.97677606738469 + 10/29 22:00:00,15.6,15.6,19.981711324389715 + 10/29 22:10:00,15.6,15.6,19.984363654052978 + 10/29 22:20:00,15.6,15.6,19.986961570083154 + 10/29 22:30:00,15.6,15.6,19.989491934959973 + 10/29 22:40:00,15.6,15.6,19.991932675673824 + 10/29 22:50:00,15.6,15.6,19.99428818253813 + 10/29 23:00:00,15.6,15.6,19.99650533181439 + 10/29 23:10:00,15.6,15.6,20.00002508756682 + 10/29 23:20:00,15.6,15.6,20.003505192335238 + 10/29 23:30:00,15.6,15.6,20.006892278134253 + 10/29 23:40:00,15.6,15.6,20.010187773791168 + 10/29 23:50:00,15.6,15.6,20.013362887459154 + 10/29 24:00:00,15.6,15.6,20.016410383048894 + 10/30 00:10:00,15.6,15.6,20.020126402997865 + 10/30 00:20:00,15.6,15.6,20.02361788241076 + 10/30 00:30:00,15.6,15.6,20.02703139501006 + 10/30 00:40:00,15.6,15.6,20.03036065225122 + 10/30 00:50:00,15.6,15.6,20.033573388851708 + 10/30 01:00:00,15.6,15.6,20.036779140954495 + 10/30 01:10:00,15.6,15.6,20.039209577564085 + 10/30 01:20:00,15.6,15.6,20.041587340138937 + 10/30 01:30:00,15.6,15.6,20.04391729736251 + 10/30 01:40:00,15.6,15.6,20.046116903006359 + 10/30 01:50:00,15.6,15.6,20.0483442612065 + 10/30 02:00:00,15.6,15.6,20.050546155289145 + 10/30 02:10:00,15.6,15.6,20.05201667132551 + 10/30 02:20:00,15.6,15.6,20.053457118420707 + 10/30 02:30:00,15.6,15.6,20.05480518974282 + 10/30 02:40:00,15.6,15.6,20.056147651905368 + 10/30 02:50:00,15.6,15.6,20.057502087456109 + 10/30 03:00:00,15.6,15.6,20.05882659042904 + 10/30 03:10:00,15.6,15.6,20.06081000909616 + 10/30 03:20:00,15.6,15.6,20.062712337584839 + 10/30 03:30:00,15.6,15.6,20.06454558382583 + 10/30 03:40:00,15.6,15.6,20.066398367769485 + 10/30 03:50:00,15.6,15.6,20.068208189680044 + 10/30 04:00:00,15.6,15.6,20.06997556244037 + 10/30 04:10:00,15.6,15.6,20.071688676560638 + 10/30 04:20:00,15.6,15.6,20.073286166490314 + 10/30 04:30:00,15.6,15.6,20.074933111981968 + 10/30 04:40:00,15.6,15.6,20.076541667000237 + 10/30 04:50:00,15.6,15.6,20.078113858049247 + 10/30 05:00:00,15.6,15.6,20.079651724590297 + 10/30 05:10:00,15.6,15.6,20.08140289203603 + 10/30 05:20:00,15.6,15.6,20.0832066761036 + 10/30 05:30:00,15.6,15.6,20.08498309128418 + 10/30 05:40:00,15.6,15.6,20.08672588907718 + 10/30 05:50:00,15.6,15.6,20.088436225535756 + 10/30 06:00:00,15.6,15.6,20.0900438881823 + 10/30 06:10:00,15.6,15.6,18.091006024385107 + 10/30 06:20:00,15.6,15.6,17.856582544618389 + 10/30 06:30:00,15.6,15.6,17.768339601621969 + 10/30 06:40:00,15.6,15.6,17.699193417393248 + 10/30 06:50:00,15.6,15.6,17.64448024954931 + 10/30 07:00:00,15.6,15.6,17.599338835679256 + 10/30 07:10:00,15.6,15.6,16.121627094833749 + 10/30 07:20:00,15.6,15.6,15.905429619057874 + 10/30 07:30:00,15.6,15.6,15.804777708546317 + 10/30 07:40:00,15.6,15.6,15.722845874930155 + 10/30 07:50:00,15.6,15.6,15.655237796488189 + 10/30 08:00:00,15.6,15.6,15.597460625031023 + 10/30 08:10:00,15.6,15.6,15.519937624737338 + 10/30 08:20:00,15.6,15.6,15.46652411885215 + 10/30 08:30:00,15.6,15.6,15.42544953200107 + 10/30 08:40:00,15.6,15.6,15.38818992530063 + 10/30 08:50:00,15.6,15.6,15.353752412342795 + 10/30 09:00:00,15.6,15.6,15.321585240660735 + 10/30 09:10:00,15.553753753753754,15.553753753753754,15.292922866889397 + 10/30 09:20:00,15.507507507507507,15.507507507507507,15.255327890106674 + 10/30 09:30:00,15.46126126126126,15.46126126126126,15.229729561833077 + 10/30 09:40:00,15.415015015015016,15.415015015015016,15.205527579413238 + 10/30 09:50:00,15.368768768768769,15.368768768768769,15.182677649621374 + 10/30 10:00:00,15.322522522522523,15.322522522522523,15.16118310708779 + 10/30 10:10:00,15.297297297297297,15.297297297297297,15.139353487972429 + 10/30 10:20:00,15.272072072072073,15.272072072072073,15.114649139984932 + 10/30 10:30:00,15.246846846846847,15.246846846846847,15.094542213920902 + 10/30 10:40:00,15.22162162162162,15.22162162162162,15.075318852816022 + 10/30 10:50:00,15.196396396396397,15.196396396396397,15.057002073677662 + 10/30 11:00:00,15.17117117117117,15.17117117117117,15.039527111159816 + 10/30 11:10:00,15.15015015015015,15.15015015015015,15.025355151590143 + 10/30 11:20:00,15.12912912912913,15.12912912912913,15.019942071159907 + 10/30 11:30:00,15.108108108108109,15.108108108108109,15.005468372316458 + 10/30 11:40:00,15.087087087087087,15.087087087087087,14.991217144421923 + 10/30 11:50:00,15.066066066066066,15.066066066066066,14.977569106907366 + 10/30 12:00:00,15.045045045045045,15.045045045045045,14.964407955799438 + 10/30 12:10:00,15.045045045045045,15.045045045045045,14.948231362374495 + 10/30 12:20:00,15.045045045045045,15.045045045045045,14.923785351431456 + 10/30 12:30:00,15.045045045045045,15.045045045045045,14.909435214654213 + 10/30 12:40:00,15.045045045045045,15.045045045045045,14.89576844832981 + 10/30 12:50:00,15.045045045045045,15.045045045045045,14.884142575522669 + 10/30 13:00:00,15.045045045045045,15.045045045045045,14.872559227927037 + 10/30 13:10:00,15.066066066066066,15.066066066066066,14.860094932092736 + 10/30 13:20:00,15.087087087087087,15.087087087087087,14.854690615091644 + 10/30 13:30:00,15.108108108108109,15.108108108108109,14.845460293269399 + 10/30 13:40:00,15.12912912912913,15.12912912912913,14.83476276465225 + 10/30 13:50:00,15.15015015015015,15.15015015015015,14.82572122629811 + 10/30 14:00:00,15.17117117117117,15.17117117117117,14.814402273856432 + 10/30 14:10:00,15.17117117117117,15.17117117117117,14.801412885392918 + 10/30 14:20:00,15.17117117117117,15.17117117117117,14.793036029429877 + 10/30 14:30:00,15.17117117117117,15.17117117117117,14.779495668833766 + 10/30 14:40:00,15.17117117117117,15.17117117117117,14.764704877522709 + 10/30 14:50:00,15.17117117117117,15.17117117117117,14.753133509783615 + 10/30 15:00:00,15.17117117117117,15.17117117117117,14.74278866156547 + 10/30 15:05:00,15.196396396396397,15.196396396396397,16.875956120000116 + 10/30 15:10:00,15.196396396396397,15.196396396396397,16.87501568357053 + 10/30 15:20:00,15.22162162162162,15.22162162162162,17.116066997242635 + 10/30 15:30:00,15.246846846846847,15.246846846846847,17.208633925595608 + 10/30 15:40:00,15.272072072072073,15.272072072072073,17.278850812896427 + 10/30 15:50:00,15.297297297297297,15.297297297297297,17.33196090258638 + 10/30 16:00:00,15.322522522522523,15.322522522522523,17.377621602195238 + 10/30 16:10:00,15.322522522522523,15.322522522522523,17.443351386540809 + 10/30 16:20:00,15.322522522522523,15.322522522522523,17.498324523162219 + 10/30 16:30:00,15.322522522522523,15.322522522522523,17.530188464172356 + 10/30 16:40:00,15.322522522522523,15.322522522522523,17.55887416224956 + 10/30 16:50:00,15.322522522522523,15.322522522522523,17.5844521603916 + 10/30 17:00:00,15.322522522522523,15.322522522522523,17.607060902744654 + 10/30 17:10:00,15.343543543543543,15.343543543543543,17.64043153396712 + 10/30 17:20:00,15.364564564564564,15.364564564564564,17.663902602864444 + 10/30 17:30:00,15.385585585585586,15.385585585585586,17.680026778606455 + 10/30 17:40:00,15.406606606606607,15.406606606606607,17.694599363057429 + 10/30 17:50:00,15.427627627627628,15.427627627627628,17.70817983312054 + 10/30 18:00:00,15.448648648648648,15.448648648648648,17.72105574114621 + 10/30 18:10:00,15.448648648648648,15.448648648648648,17.7327880533418 + 10/30 18:20:00,15.448648648648648,15.448648648648648,17.743949413689298 + 10/30 18:30:00,15.448648648648648,15.448648648648648,17.754393459959979 + 10/30 18:40:00,15.448648648648648,15.448648648648648,17.76427504886186 + 10/30 18:50:00,15.448648648648648,15.448648648648648,17.773478550247554 + 10/30 19:00:00,15.448648648648648,15.448648648648648,17.78209640565342 + 10/30 19:10:00,15.448648648648648,15.448648648648648,17.80348609387935 + 10/30 19:20:00,15.448648648648648,15.448648648648648,17.812057282809449 + 10/30 19:30:00,15.448648648648648,15.448648648648648,17.819829386069118 + 10/30 19:40:00,15.448648648648648,15.448648648648648,17.82717165212545 + 10/30 19:50:00,15.448648648648648,15.448648648648648,17.834103296064148 + 10/30 20:00:00,15.448648648648648,15.448648648648648,17.840699434540875 + 10/30 20:10:00,15.448648648648648,15.448648648648648,17.825140126706477 + 10/30 20:20:00,15.448648648648648,15.448648648648648,17.835625048618096 + 10/30 20:30:00,15.448648648648648,15.448648648648648,17.84145334929614 + 10/30 20:40:00,15.448648648648648,15.448648648648648,17.846940474746604 + 10/30 20:50:00,15.448648648648648,15.448648648648648,17.8521983861151 + 10/30 21:00:00,15.448648648648648,15.448648648648648,17.857244510811215 + 10/30 21:10:00,15.448648648648648,15.448648648648648,17.860989952080634 + 10/30 21:20:00,15.448648648648648,15.448648648648648,17.864876835747805 + 10/30 21:30:00,15.448648648648648,15.448648648648648,17.8685515405747 + 10/30 21:40:00,15.448648648648648,15.448648648648648,17.872216831296059 + 10/30 21:50:00,15.448648648648648,15.448648648648648,17.87575326731493 + 10/30 22:00:00,15.448648648648648,15.448648648648648,17.879250145571647 + 10/30 22:10:00,15.448648648648648,15.448648648648648,19.24448145395061 + 10/30 22:20:00,15.448648648648648,15.448648648648648,19.385261179506509 + 10/30 22:30:00,15.448648648648648,15.448648648648648,19.44674723226918 + 10/30 22:40:00,15.448648648648648,15.448648648648648,19.49493577775349 + 10/30 22:50:00,15.448648648648648,15.448648648648648,19.533645021860378 + 10/30 23:00:00,15.448648648648648,15.448648648648648,19.565886933904019 + 10/30 23:10:00,15.448648648648648,15.448648648648648,19.59326881699206 + 10/30 23:20:00,15.448648648648648,15.448648648648648,19.617296155181966 + 10/30 23:30:00,15.448648648648648,15.448648648648648,19.638609395262038 + 10/30 23:40:00,15.448648648648648,15.448648648648648,19.65787849463048 + 10/30 23:50:00,15.448648648648648,15.448648648648648,19.67543626591319 + 10/30 24:00:00,15.448648648648648,15.448648648648648,19.691547241655838 + 10/31 00:10:00,15.448648648648648,15.448648648648648,19.708068042019464 + 10/31 00:20:00,15.448648648648648,15.448648648648648,19.72344328732453 + 10/31 00:30:00,15.448648648648648,15.448648648648648,19.737884663001787 + 10/31 00:40:00,15.448648648648648,15.448648648648648,19.75153366128955 + 10/31 00:50:00,15.448648648648648,15.448648648648648,19.76444596287718 + 10/31 01:00:00,15.448648648648648,15.448648648648648,19.776703225556543 + 10/31 01:10:00,15.473873873873874,15.473873873873874,19.78751015723638 + 10/31 01:20:00,15.499099099099098,15.499099099099098,19.797928519689934 + 10/31 01:30:00,15.524324324324324,15.524324324324324,19.8081443068983 + 10/31 01:40:00,15.54954954954955,15.54954954954955,19.818132291636688 + 10/31 01:50:00,15.574774774774774,15.574774774774774,19.82790689217437 + 10/31 02:00:00,15.6,15.6,19.83746594128591 + 10/31 02:10:00,15.6,15.6,19.847417249469765 + 10/31 02:20:00,15.6,15.6,19.856859317269519 + 10/31 02:30:00,15.6,15.6,19.865895044019127 + 10/31 02:40:00,15.6,15.6,19.87446552891881 + 10/31 02:50:00,15.6,15.6,19.882673026805088 + 10/31 03:00:00,15.6,15.6,19.89046745967094 + 10/31 03:10:00,15.6,15.6,19.89789351852138 + 10/31 03:20:00,15.6,15.6,19.905273978461833 + 10/31 03:30:00,15.6,15.6,19.912441628356917 + 10/31 03:40:00,15.6,15.6,19.919474387987394 + 10/31 03:50:00,15.6,15.6,19.926257772254993 + 10/31 04:00:00,15.6,15.6,19.932894473411979 + 10/31 04:10:00,15.6,15.6,19.937384358607788 + 10/31 04:20:00,15.6,15.6,19.94172837266124 + 10/31 04:30:00,15.6,15.6,19.946079493901498 + 10/31 04:40:00,15.6,15.6,19.95036812459525 + 10/31 04:50:00,15.6,15.6,19.954646947615627 + 10/31 05:00:00,15.6,15.6,19.958982624286219 + 10/31 05:10:00,15.6,15.6,19.96464390949827 + 10/31 05:20:00,15.6,15.6,19.970163579123704 + 10/31 05:30:00,15.6,15.6,19.975349878660248 + 10/31 05:40:00,15.6,15.6,19.980179332681069 + 10/31 05:50:00,15.6,15.6,19.98478553246455 + 10/31 06:00:00,15.6,15.6,19.98910520072726 + 10/31 06:10:00,15.6,15.6,17.98860506325283 + 10/31 06:20:00,15.6,15.6,17.756209459709056 + 10/31 06:30:00,15.6,15.6,17.67068061014213 + 10/31 06:40:00,15.6,15.6,17.604213145035069 + 10/31 06:50:00,15.6,15.6,17.552273181926368 + 10/31 07:00:00,15.6,15.6,17.50988082804285 + 10/31 07:10:00,15.6,15.6,16.031059636188009 + 10/31 07:20:00,15.6,15.6,15.81631898152893 + 10/31 07:30:00,15.6,15.6,15.717671854397104 + 10/31 07:40:00,15.6,15.6,15.637720615329311 + 10/31 07:50:00,15.6,15.6,15.571845470237847 + 10/31 08:00:00,15.6,15.6,15.51544148718596 + 10/31 08:10:00,15.6,15.6,15.439415951458879 + 10/31 08:20:00,15.6,15.6,15.385749275234428 + 10/31 08:30:00,15.6,15.6,15.343860242044295 + 10/31 08:40:00,15.6,15.6,15.304827519816554 + 10/31 08:50:00,15.6,15.6,15.267472957083387 + 10/31 09:00:00,15.6,15.6,15.231020943371885 + 10/31 09:10:00,15.6,15.6,15.194525780472711 + 10/31 09:20:00,15.6,15.6,15.148619722193344 + 10/31 09:30:00,15.6,15.6,15.113428697958798 + 10/31 09:40:00,15.6,15.6,15.07899640194526 + 10/31 09:50:00,15.566366366366367,15.566366366366367,15.045884821897373 + 10/31 10:00:00,15.448648648648648,15.448648648648648,15.01432222772308 + 10/31 10:10:00,15.356156156156157,15.356156156156157,14.984554009494519 + 10/31 10:20:00,15.263663663663664,15.263663663663664,14.952175408416208 + 10/31 10:30:00,15.17117117117117,15.17117117117117,14.924191688946156 + 10/31 10:40:00,15.078678678678678,15.078678678678678,14.897099550028499 + 10/31 10:50:00,14.986186186186187,14.986186186186187,14.871088535340564 + 10/31 11:00:00,14.893693693693694,14.893693693693694,14.84616549008671 + 10/31 11:10:00,14.826426426426427,14.826426426426427,14.821903516423605 + 10/31 11:20:00,14.759159159159159,14.759159159159159,14.807847269193023 + 10/31 11:30:00,14.691891891891892,14.691891891891892,14.784938650043485 + 10/31 11:40:00,14.624624624624625,14.624624624624625,14.762874394991242 + 10/31 11:50:00,14.557357357357358,14.557357357357358,14.741759886940065 + 10/31 12:00:00,14.49009009009009,14.49009009009009,14.721932985121676 + 10/31 12:10:00,14.418618618618618,14.418618618618618,14.704173244867953 + 10/31 12:20:00,14.347147147147148,14.347147147147148,14.67816737921751 + 10/31 12:30:00,14.275675675675675,14.275675675675675,14.659039631421674 + 10/31 12:40:00,14.204204204204205,14.204204204204205,14.643698849249413 + 10/31 12:50:00,14.132732732732734,14.132732732732734,14.62853128526437 + 10/31 13:00:00,14.061261261261262,14.061261261261262,14.612394024563863 + 10/31 13:10:00,13.989789789789791,13.989789789789791,14.599380497257505 + 10/31 13:20:00,13.918318318318317,13.918318318318317,14.588499511381528 + 10/31 13:30:00,13.846846846846847,13.846846846846847,14.57555063908791 + 10/31 13:40:00,13.775375375375376,13.775375375375376,14.564603499859482 + 10/31 13:50:00,13.703903903903905,13.703903903903905,14.551596513919307 + 10/31 14:00:00,13.632432432432433,13.632432432432433,14.540863872809254 + 10/31 14:10:00,13.586186186186187,13.586186186186187,14.531595560471783 + 10/31 14:20:00,13.539939939939942,13.539939939939942,14.52338165733039 + 10/31 14:30:00,13.493693693693695,13.493693693693695,14.514590957530898 + 10/31 14:40:00,13.447447447447449,13.447447447447449,14.50708380876161 + 10/31 14:50:00,13.401201201201202,13.401201201201202,14.497915296258038 + 10/31 15:00:00,13.354954954954956,13.354954954954956,14.490278800293435 + 10/31 15:05:00,13.354954954954956,13.354954954954956,16.64429754549127 + 10/31 15:10:00,13.354954954954956,13.354954954954956,16.644795203895446 + 10/31 15:20:00,13.354954954954956,13.354954954954956,16.891285436042528 + 10/31 15:30:00,13.354954954954956,13.354954954954956,16.98402783710651 + 10/31 15:40:00,13.354954954954956,13.354954954954956,17.05691974687547 + 10/31 15:50:00,13.354954954954956,13.354954954954956,17.113522074745214 + 10/31 16:00:00,13.354954954954956,13.354954954954956,17.160323036825714 + 10/31 16:10:00,13.426426426426428,13.426426426426428,17.22476297415334 + 10/31 16:20:00,13.497897897897899,13.497897897897899,17.280514612166788 + 10/31 16:30:00,13.56936936936937,13.56936936936937,17.31340714895984 + 10/31 16:40:00,13.640840840840842,13.640840840840842,17.343781275315544 + 10/31 16:50:00,13.712312312312314,13.712312312312314,17.372072694436669 + 10/31 17:00:00,13.783783783783785,13.783783783783785,17.398595909912208 + 10/31 17:10:00,13.993993993993995,13.993993993993995,17.438476415053807 + 10/31 17:20:00,14.204204204204205,14.204204204204205,17.47224860870592 + 10/31 17:30:00,14.414414414414415,14.414414414414415,17.499096825079776 + 10/31 17:40:00,14.624624624624625,14.624624624624625,17.525129513811167 + 10/31 17:50:00,14.834834834834835,14.834834834834835,17.54974335727336 + 10/31 18:00:00,15.045045045045045,15.045045045045045,17.57277885171331 + 10/31 18:10:00,15.045045045045045,15.045045045045045,17.5924840376676 + 10/31 18:20:00,15.045045045045045,15.045045045045045,17.610207268029194 + 10/31 18:30:00,15.045045045045045,15.045045045045045,17.626168385671535 + 10/31 18:40:00,15.045045045045045,15.045045045045045,17.640618544879428 + 10/31 18:50:00,15.045045045045045,15.045045045045045,17.65385833971807 + 10/31 19:00:00,15.045045045045045,15.045045045045045,17.66603753584228 + 10/31 19:10:00,15.112312312312313,15.112312312312313,17.69030244459426 + 10/31 19:20:00,15.17957957957958,15.17957957957958,17.701524569163838 + 10/31 19:30:00,15.246846846846847,15.246846846846847,17.711886210708309 + 10/31 19:40:00,15.314114114114114,15.314114114114114,17.721823675946163 + 10/31 19:50:00,15.381381381381381,15.381381381381381,17.731399562543829 + 10/31 20:00:00,15.448648648648648,15.448648648648648,17.74061400831265 + 10/31 20:10:00,15.499099099099098,15.499099099099098,17.727756491372295 + 10/31 20:20:00,15.54954954954955,15.54954954954955,17.741895659636943 + 10/31 20:30:00,15.6,15.6,17.751332623330336 + 10/31 20:40:00,15.6,15.6,17.76053922003571 + 10/31 20:50:00,15.6,15.6,17.76950452710298 + 10/31 21:00:00,15.6,15.6,17.778237694604195 + 10/31 21:10:00,15.6,15.6,17.78637750005256 + 10/31 21:20:00,15.6,15.6,17.79403803821625 + 10/31 21:30:00,15.6,15.6,17.801329346139445 + 10/31 21:40:00,15.6,15.6,17.808246972981544 + 10/31 21:50:00,15.6,15.6,17.814822285474699 + 10/31 22:00:00,15.6,15.6,17.821091293238668 + 10/31 22:10:00,15.6,15.6,19.198555758761864 + 10/31 22:20:00,15.6,15.6,19.34272399927539 + 10/31 22:30:00,15.6,15.6,19.407016547861394 + 10/31 22:40:00,15.6,15.6,19.45801024539544 + 10/31 22:50:00,15.6,15.6,19.499316517006308 + 10/31 23:00:00,15.6,15.6,19.534111363356055 + 10/31 23:10:00,15.6,15.6,19.564075469629857 + 10/31 23:20:00,15.6,15.6,19.590775423521675 + 10/31 23:30:00,15.6,15.6,19.614799286683576 + 10/31 23:40:00,15.6,15.6,19.636671380973469 + 10/31 23:50:00,15.6,15.6,19.65675728243481 + 10/31 24:00:00,15.6,15.6,19.67526123314681 + 11/01 00:10:00,15.6,15.6,19.69272305457951 + 11/01 00:20:00,15.6,15.6,19.709757239295948 + 11/01 00:30:00,15.6,15.6,19.72600630865081 + 11/01 00:40:00,15.6,15.6,19.74173586634308 + 11/01 00:50:00,15.6,15.6,19.756770722611266 + 11/01 01:00:00,15.6,15.6,19.771304884965504 + 11/01 01:10:00,15.6,15.6,19.785188714498405 + 11/01 01:20:00,15.6,15.6,19.797976218303718 + 11/01 01:30:00,15.6,15.6,19.81013275295671 + 11/01 01:40:00,15.6,15.6,19.82149013631492 + 11/01 01:50:00,15.6,15.6,19.832324051877806 + 11/01 02:00:00,15.6,15.6,19.84271651670399 + 11/01 02:10:00,15.6,15.6,19.852743336400537 + 11/01 02:20:00,15.6,15.6,19.86230443014734 + 11/01 02:30:00,15.6,15.6,19.871453410370987 + 11/01 02:40:00,15.6,15.6,19.880212720271314 + 11/01 02:50:00,15.6,15.6,19.888718764711184 + 11/01 03:00:00,15.6,15.6,19.896930564536356 + 11/01 03:10:00,15.6,15.6,19.904651944782886 + 11/01 03:20:00,15.6,15.6,19.911387858177578 + 11/01 03:30:00,15.6,15.6,19.91720969603851 + 11/01 03:40:00,15.6,15.6,19.92222037796651 + 11/01 03:50:00,15.6,15.6,19.926436624119654 + 11/01 04:00:00,15.6,15.6,19.92998819627366 + 11/01 04:10:00,15.6,15.6,19.933210455075554 + 11/01 04:20:00,15.6,15.6,19.936548385195015 + 11/01 04:30:00,15.6,15.6,19.940154588305828 + 11/01 04:40:00,15.6,15.6,19.94406253177221 + 11/01 04:50:00,15.6,15.6,19.948171676799903 + 11/01 05:00:00,15.6,15.6,19.95243556052222 + 11/01 05:10:00,15.6,15.6,19.955132088179768 + 11/01 05:20:00,15.6,15.6,19.95778654531493 + 11/01 05:30:00,15.6,15.6,19.960497871174974 + 11/01 05:40:00,15.6,15.6,19.963150337128757 + 11/01 05:50:00,15.6,15.6,19.965769208772437 + 11/01 06:00:00,15.6,15.6,19.96829919683806 + 11/01 06:10:00,15.6,15.6,17.968201101624869 + 11/01 06:20:00,15.6,15.6,17.73671480783916 + 11/01 06:30:00,15.6,15.6,17.65232804480432 + 11/01 06:40:00,15.6,15.6,17.587211884845538 + 11/01 06:50:00,15.6,15.6,17.536638577882934 + 11/01 07:00:00,15.6,15.6,17.495844440211209 + 11/01 07:10:00,15.6,15.6,16.0170612008504 + 11/01 07:20:00,15.6,15.6,15.801537159348414 + 11/01 07:30:00,15.6,15.6,15.701735393113875 + 11/01 07:40:00,15.6,15.6,15.620318461367172 + 11/01 07:50:00,15.6,15.6,15.552702923461425 + 11/01 08:00:00,15.6,15.6,15.494362989365135 + 11/01 08:10:00,15.6,15.6,15.415912416616772 + 11/01 08:20:00,15.6,15.6,15.36010579101366 + 11/01 08:30:00,15.536936936936936,15.536936936936936,15.315903689650089 + 11/01 08:40:00,15.465465465465466,15.465465465465466,15.275010018920906 + 11/01 08:50:00,15.393993993993995,15.393993993993995,15.237123466942265 + 11/01 09:00:00,15.322522522522523,15.322522522522523,15.201985903130064 + 11/01 09:10:00,15.276276276276276,15.276276276276276,15.170650184831345 + 11/01 09:20:00,15.23003003003003,15.23003003003003,15.131075218519236 + 11/01 09:30:00,15.183783783783785,15.183783783783785,15.104006898780633 + 11/01 09:40:00,15.137537537537538,15.137537537537538,15.07801890681966 + 11/01 09:50:00,15.091291291291292,15.091291291291292,15.051629899011907 + 11/01 10:00:00,15.045045045045045,15.045045045045045,15.02418120276248 + 11/01 10:10:00,14.902102102102102,14.902102102102102,14.992861852582154 + 11/01 10:20:00,14.759159159159159,14.759159159159159,14.958055407072698 + 11/01 10:30:00,14.616216216216217,14.616216216216217,14.925782812917566 + 11/01 10:40:00,14.473273273273274,14.473273273273274,14.893587691938857 + 11/01 10:50:00,14.33033033033033,14.33033033033033,14.862609176610377 + 11/01 11:00:00,14.187387387387388,14.187387387387388,14.833451911267908 + 11/01 11:10:00,14.094894894894896,14.094894894894896,14.80646019980908 + 11/01 11:20:00,14.002402402402403,14.002402402402403,14.791885916242661 + 11/01 11:30:00,13.90990990990991,13.90990990990991,14.768937495581039 + 11/01 11:40:00,13.817417417417419,13.817417417417419,14.747462325973583 + 11/01 11:50:00,13.724924924924926,13.724924924924926,14.727463239491993 + 11/01 12:00:00,13.632432432432433,13.632432432432433,14.7089105793206 + 11/01 12:10:00,13.539939939939942,13.539939939939942,14.69292785197766 + 11/01 12:20:00,13.447447447447449,13.447447447447449,14.668427217703796 + 11/01 12:30:00,13.354954954954956,13.354954954954956,14.653066034865536 + 11/01 12:40:00,13.262462462462464,13.262462462462464,14.637729363399627 + 11/01 12:50:00,13.169969969969971,13.169969969969971,14.626161926330367 + 11/01 13:00:00,13.077477477477478,13.077477477477478,14.613373634944061 + 11/01 13:10:00,13.052252252252253,13.052252252252253,14.604068988763825 + 11/01 13:20:00,13.027027027027028,13.027027027027028,14.599483493730635 + 11/01 13:30:00,13.001801801801803,13.001801801801803,14.589725977440415 + 11/01 13:40:00,12.976576576576577,12.976576576576577,14.583400324195662 + 11/01 13:50:00,12.951351351351353,12.951351351351353,14.576152544305757 + 11/01 14:00:00,12.926126126126127,12.926126126126127,14.565881716152085 + 11/01 14:10:00,12.926126126126127,12.926126126126127,14.55779851652962 + 11/01 14:20:00,12.926126126126127,12.926126126126127,14.552826615771926 + 11/01 14:30:00,12.926126126126127,12.926126126126127,14.542563223828394 + 11/01 14:40:00,12.926126126126127,12.926126126126127,14.535152873683556 + 11/01 14:50:00,12.926126126126127,12.926126126126127,14.52881671228407 + 11/01 15:00:00,12.926126126126127,12.926126126126127,14.520886543862272 + 11/01 15:05:00,12.905105105105106,12.905105105105106,16.665142164052996 + 11/01 15:10:00,12.905105105105106,12.905105105105106,16.664101553482675 + 11/01 15:20:00,12.884084084084084,12.884084084084084,16.911202078606409 + 11/01 15:30:00,12.863063063063063,12.863063063063063,17.007367869437645 + 11/01 15:40:00,12.842042042042042,12.842042042042042,17.079991462839066 + 11/01 15:50:00,12.821021021021022,12.821021021021022,17.139159549812349 + 11/01 16:00:00,12.8,12.8,17.188603828158326 + 11/01 16:10:00,12.846246246246248,12.846246246246248,17.25718874149613 + 11/01 16:20:00,12.892492492492494,12.892492492492494,17.31384282679724 + 11/01 16:30:00,12.938738738738739,12.938738738738739,17.34678662058044 + 11/01 16:40:00,12.984984984984987,12.984984984984987,17.376052324040715 + 11/01 16:50:00,13.031231231231232,13.031231231231232,17.402317997454348 + 11/01 17:00:00,13.077477477477478,13.077477477477478,17.42607492655376 + 11/01 17:10:00,13.123723723723725,13.123723723723725,17.460988502079187 + 11/01 17:20:00,13.169969969969971,13.169969969969971,17.487368247208477 + 11/01 17:30:00,13.216216216216218,13.216216216216218,17.50711762395564 + 11/01 17:40:00,13.262462462462464,13.262462462462464,17.525842703569084 + 11/01 17:50:00,13.30870870870871,13.30870870870871,17.543620617522408 + 11/01 18:00:00,13.354954954954956,13.354954954954956,17.560484756716268 + 11/01 18:10:00,13.380180180180182,13.380180180180182,17.576130996242119 + 11/01 18:20:00,13.405405405405407,13.405405405405407,17.59054884388984 + 11/01 18:30:00,13.430630630630632,13.430630630630632,17.60363397519569 + 11/01 18:40:00,13.455855855855857,13.455855855855857,17.61567689068288 + 11/01 18:50:00,13.481081081081081,13.481081081081081,17.626747747835993 + 11/01 19:00:00,13.506306306306307,13.506306306306307,17.63697691918121 + 11/01 19:10:00,13.552552552552554,13.552552552552554,17.659315790390545 + 11/01 19:20:00,13.5987987987988,13.5987987987988,17.667705203252184 + 11/01 19:30:00,13.645045045045047,13.645045045045047,17.675466637023477 + 11/01 19:40:00,13.691291291291293,13.691291291291293,17.682726923735168 + 11/01 19:50:00,13.737537537537538,13.737537537537538,17.68973094985855 + 11/01 20:00:00,13.783783783783785,13.783783783783785,17.696494491841599 + 11/01 20:10:00,13.783783783783785,13.783783783783785,17.680889166083028 + 11/01 20:20:00,13.783783783783785,13.783783783783785,17.692297485159878 + 11/01 20:30:00,13.783783783783785,13.783783783783785,17.69892730307182 + 11/01 20:40:00,13.783783783783785,13.783783783783785,17.705313671275915 + 11/01 20:50:00,13.783783783783785,13.783783783783785,17.711370400576347 + 11/01 21:00:00,13.783783783783785,13.783783783783785,17.717136389288439 + 11/01 21:10:00,13.83003003003003,13.83003003003003,17.722912690430485 + 11/01 21:20:00,13.876276276276276,13.876276276276276,17.728828268291168 + 11/01 21:30:00,13.922522522522524,13.922522522522524,17.734799886707614 + 11/01 21:40:00,13.968768768768769,13.968768768768769,17.740821880138776 + 11/01 21:50:00,14.015015015015015,14.015015015015015,17.746822072699197 + 11/01 22:00:00,14.061261261261262,14.061261261261262,17.75292589520573 + 11/01 22:10:00,14.082282282282283,14.082282282282283,19.118614697945224 + 11/01 22:20:00,14.103303303303303,14.103303303303303,19.262834444909467 + 11/01 22:30:00,14.124324324324324,14.124324324324324,19.32673565282998 + 11/01 22:40:00,14.145345345345346,14.145345345345346,19.377132392034548 + 11/01 22:50:00,14.166366366366367,14.166366366366367,19.41783038085876 + 11/01 23:00:00,14.187387387387388,14.187387387387388,19.451955602022566 + 11/01 23:10:00,14.187387387387388,14.187387387387388,19.479906604610414 + 11/01 23:20:00,14.187387387387388,14.187387387387388,19.50448353880996 + 11/01 23:30:00,14.187387387387388,14.187387387387388,19.526444767927744 + 11/01 23:40:00,14.187387387387389,14.187387387387389,19.546462734277268 + 11/01 23:50:00,14.187387387387388,14.187387387387388,19.564883530522385 + 11/01 24:00:00,14.187387387387388,14.187387387387388,19.5819598760155 + 11/02 00:10:00,14.212612612612613,14.212612612612613,19.59897847552579 + 11/02 00:20:00,14.237837837837838,14.237837837837838,19.614775750930993 + 11/02 00:30:00,14.263063063063063,14.263063063063063,19.62954281735098 + 11/02 00:40:00,14.288288288288289,14.288288288288289,19.64341340252513 + 11/02 00:50:00,14.313513513513513,14.313513513513513,19.656455541509737 + 11/02 01:00:00,14.338738738738739,14.338738738738739,19.668763275269926 + 11/02 01:10:00,14.338738738738739,14.338738738738739,19.679565048362549 + 11/02 01:20:00,14.338738738738739,14.338738738738739,19.6898206256381 + 11/02 01:30:00,14.338738738738739,14.338738738738739,19.69967659794225 + 11/02 01:40:00,14.338738738738739,14.338738738738739,19.70912098845835 + 11/02 01:50:00,14.338738738738739,14.338738738738739,19.718102492783193 + 11/02 02:00:00,14.338738738738739,14.338738738738739,19.726830903277589 + 11/02 02:10:00,14.363963963963965,14.363963963963965,19.73568942445293 + 11/02 02:20:00,14.389189189189189,14.389189189189189,19.744178906927666 + 11/02 02:30:00,14.414414414414415,14.414414414414415,19.752338893618416 + 11/02 02:40:00,14.439639639639639,14.439639639639639,19.76028446127741 + 11/02 02:50:00,14.464864864864865,14.464864864864865,19.767946647614126 + 11/02 03:00:00,14.49009009009009,14.49009009009009,19.775409367555438 + 11/02 03:10:00,14.49009009009009,14.49009009009009,19.781793035624486 + 11/02 03:20:00,14.49009009009009,14.49009009009009,19.78829870128963 + 11/02 03:30:00,14.49009009009009,14.49009009009009,19.794530929907613 + 11/02 03:40:00,14.49009009009009,14.49009009009009,19.800694086901886 + 11/02 03:50:00,14.49009009009009,14.49009009009009,19.806525669834433 + 11/02 04:00:00,14.49009009009009,14.49009009009009,19.812199299203898 + 11/02 04:10:00,14.511111111111111,14.511111111111111,19.818605252822637 + 11/02 04:20:00,14.532132132132132,14.532132132132132,19.825114214856109 + 11/02 04:30:00,14.553153153153153,14.553153153153153,19.831705249640224 + 11/02 04:40:00,14.574174174174175,14.574174174174175,19.83835182171163 + 11/02 04:50:00,14.595195195195196,14.595195195195196,19.845064330705325 + 11/02 05:00:00,14.616216216216217,14.616216216216217,19.85190104625221 + 11/02 05:10:00,14.616216216216217,14.616216216216217,19.858632518414198 + 11/02 05:20:00,14.616216216216217,14.616216216216217,19.865158352569787 + 11/02 05:30:00,14.616216216216217,14.616216216216217,19.87138655533047 + 11/02 05:40:00,14.616216216216217,14.616216216216217,19.877256997589929 + 11/02 05:50:00,14.616216216216217,14.616216216216217,19.88294099444766 + 11/02 06:00:00,14.616216216216217,14.616216216216217,19.888376729757249 + 11/02 06:10:00,14.641441441441442,14.641441441441442,17.892770902816417 + 11/02 06:20:00,14.666666666666666,14.666666666666666,17.660698906201028 + 11/02 06:30:00,14.691891891891892,14.691891891891892,17.57585729206631 + 11/02 06:40:00,14.717117117117118,14.717117117117118,17.510194704559514 + 11/02 06:50:00,14.742342342342342,14.742342342342342,17.459080100557246 + 11/02 07:00:00,14.767567567567568,14.767567567567568,17.417618913634564 + 11/02 07:05:00,14.742342342342342,14.742342342342342,15.94413396880394 + 11/02 07:10:00,14.742342342342342,14.742342342342342,15.944100138945077 + 11/02 07:15:00,14.717117117117116,14.717117117117116,15.729751197011178 + 11/02 07:20:00,14.717117117117116,14.717117117117116,15.729788513032834 + 11/02 07:30:00,14.691891891891892,14.691891891891892,15.630170481270387 + 11/02 07:40:00,14.666666666666668,14.666666666666668,15.549282808225192 + 11/02 07:50:00,14.641441441441442,14.641441441441442,15.481675020240733 + 11/02 08:00:00,14.616216216216217,14.616216216216217,15.42292571280861 + 11/02 08:05:00,14.56996996996997,14.56996996996997,15.346508671973455 + 11/02 08:10:00,14.56996996996997,14.56996996996997,15.345767141869074 + 11/02 08:20:00,14.523723723723723,14.523723723723723,15.289472394499996 + 11/02 08:30:00,14.477477477477479,14.477477477477479,15.246049321625569 + 11/02 08:40:00,14.431231231231232,14.431231231231232,15.205231145619495 + 11/02 08:50:00,14.384984984984986,14.384984984984986,15.167580152732717 + 11/02 09:00:00,14.338738738738739,14.338738738738739,15.132377473727722 + 11/02 09:10:00,14.174774774774776,14.174774774774776,15.09795205574925 + 11/02 09:20:00,14.010810810810812,14.010810810810812,15.055736366505757 + 11/02 09:30:00,13.846846846846848,13.846846846846848,15.024611167846019 + 11/02 09:40:00,13.682882882882885,13.682882882882885,14.989710067365387 + 11/02 09:50:00,13.518918918918919,13.518918918918919,14.957759666894578 + 11/02 10:00:00,13.354954954954956,13.354954954954956,14.92622178486074 + 11/02 10:10:00,13.30870870870871,13.30870870870871,14.896840999761347 + 11/02 10:20:00,13.262462462462464,13.262462462462464,14.865396312952589 + 11/02 10:30:00,13.216216216216218,13.216216216216218,14.83868092431987 + 11/02 10:40:00,13.169969969969971,13.169969969969971,14.813451997541183 + 11/02 10:50:00,13.123723723723725,13.123723723723725,14.7898767730124 + 11/02 11:00:00,13.077477477477478,13.077477477477478,14.767945689984963 + 11/02 11:10:00,13.031231231231232,13.031231231231232,14.747757814039522 + 11/02 11:20:00,12.984984984984987,12.984984984984987,14.73862301476885 + 11/02 11:30:00,12.938738738738739,12.938738738738739,14.721199818499148 + 11/02 11:40:00,12.892492492492494,12.892492492492494,14.704862537812874 + 11/02 11:50:00,12.846246246246248,12.846246246246248,14.690683621146649 + 11/02 12:00:00,12.8,12.8,14.677550092296899 + 11/02 12:10:00,12.8,12.8,14.664835674857367 + 11/02 12:20:00,12.8,12.8,14.640946273448652 + 11/02 12:30:00,12.8,12.8,14.630042021023045 + 11/02 12:40:00,12.8,12.8,14.61804190974474 + 11/02 12:50:00,12.8,12.8,14.60539392012783 + 11/02 12:55:00,12.8,12.8,14.595513623555119 + 11/02 13:00:00,12.8,12.8,14.595054702146463 + 11/02 13:10:00,12.8,12.8,14.579892914640162 + 11/02 13:15:00,12.8,12.8,14.575508792056171 + 11/02 13:20:00,12.8,12.8,14.572128575683826 + 11/02 13:30:00,12.8,12.8,14.560942868717286 + 11/02 13:35:00,12.8,12.8,14.552177152920688 + 11/02 13:40:00,12.8,12.8,14.547660389853898 + 11/02 13:50:00,12.8,12.8,14.53836678087395 + 11/02 14:00:00,12.8,12.8,14.529672488856285 + 11/02 14:10:00,12.8,12.8,14.518518782971265 + 11/02 14:20:00,12.8,12.8,14.514363682920946 + 11/02 14:30:00,12.8,12.8,14.506689209393724 + 11/02 14:40:00,12.8,12.8,14.497701596604897 + 11/02 14:50:00,12.8,12.8,14.490945570329535 + 11/02 15:00:00,12.8,12.8,14.485347581952415 + 11/02 15:05:00,12.8,12.8,16.622999745991778 + 11/02 15:10:00,12.8,12.8,16.622601594194067 + 11/02 15:20:00,12.8,12.8,16.87003416284808 + 11/02 15:30:00,12.8,12.8,16.9664997364002 + 11/02 15:40:00,12.8,12.8,17.04024339604396 + 11/02 15:50:00,12.8,12.8,17.095510065660429 + 11/02 16:00:00,12.8,12.8,17.14262479534034 + 11/02 16:10:00,12.8,12.8,17.209185503393166 + 11/02 16:20:00,12.8,12.8,17.265047449909085 + 11/02 16:30:00,12.8,12.8,17.297143383821127 + 11/02 16:40:00,12.8,12.8,17.326030783076289 + 11/02 16:50:00,12.8,12.8,17.35221361899675 + 11/02 17:00:00,12.8,12.8,17.376084558410619 + 11/02 17:10:00,12.871471471471472,12.871471471471472,17.411218209660328 + 11/02 17:20:00,12.942942942942944,12.942942942942944,17.438594158340999 + 11/02 17:30:00,13.014414414414415,13.014414414414415,17.459283102766489 + 11/02 17:40:00,13.085885885885887,13.085885885885887,17.478984771590448 + 11/02 17:50:00,13.157357357357359,13.157357357357359,17.497627576355929 + 11/02 18:00:00,13.22882882882883,13.22882882882883,17.51531497552878 + 11/02 18:10:00,13.24984984984985,13.24984984984985,17.531755077137185 + 11/02 18:20:00,13.270870870870871,13.270870870870871,17.54655225485959 + 11/02 18:30:00,13.291891891891894,13.291891891891894,17.560398064337237 + 11/02 18:40:00,13.312912912912914,13.312912912912914,17.57335568346766 + 11/02 18:50:00,13.333933933933935,13.333933933933935,17.585637876044517 + 11/02 19:00:00,13.354954954954956,13.354954954954956,17.597245834456584 + 11/02 19:10:00,13.401201201201202,13.401201201201202,17.621499744130604 + 11/02 19:20:00,13.447447447447449,13.447447447447449,17.63295860438025 + 11/02 19:30:00,13.493693693693695,13.493693693693695,17.643324908499346 + 11/02 19:40:00,13.539939939939942,13.539939939939942,17.653158230935863 + 11/02 19:50:00,13.586186186186187,13.586186186186187,17.662477796781844 + 11/02 20:00:00,13.632432432432433,13.632432432432433,17.67128546534216 + 11/02 20:10:00,13.657657657657659,13.657657657657659,17.65700183639344 + 11/02 20:20:00,13.682882882882883,13.682882882882883,17.66865890193939 + 11/02 20:30:00,13.708108108108109,13.708108108108109,17.675291733405517 + 11/02 20:40:00,13.733333333333335,13.733333333333335,17.68127615730136 + 11/02 20:50:00,13.758558558558559,13.758558558558559,17.68671507648274 + 11/02 21:00:00,13.783783783783785,13.783783783783785,17.691642593149017 + 11/02 21:10:00,13.83003003003003,13.83003003003003,17.69641821882555 + 11/02 21:20:00,13.876276276276276,13.876276276276276,17.701460339427329 + 11/02 21:30:00,13.922522522522524,13.922522522522524,17.706494338951197 + 11/02 21:40:00,13.968768768768769,13.968768768768769,17.711639735990663 + 11/02 21:50:00,14.015015015015015,14.015015015015015,17.716784571073334 + 11/02 22:00:00,14.061261261261262,14.061261261261262,17.721934624481056 + 11/02 22:10:00,14.061261261261262,14.061261261261262,19.087275551713483 + 11/02 22:20:00,14.061261261261262,14.061261261261262,19.23047935564321 + 11/02 22:30:00,14.061261261261262,14.061261261261262,19.293562539970009 + 11/02 22:40:00,14.061261261261262,14.061261261261262,19.343514561872114 + 11/02 22:50:00,14.061261261261262,14.061261261261262,19.38395016960196 + 11/02 23:00:00,14.061261261261262,14.061261261261262,19.41802267603877 + 11/02 23:10:00,14.107507507507508,14.107507507507508,19.447594505379784 + 11/02 23:20:00,14.153753753753755,14.153753753753755,19.4741781824608 + 11/02 23:30:00,14.2,14.2,19.498474158724304 + 11/02 23:40:00,14.246246246246246,14.246246246246246,19.520996127630214 + 11/02 23:50:00,14.292492492492493,14.292492492492493,19.542064435984533 + 11/02 24:00:00,14.338738738738739,14.338738738738739,19.561835844230516 + 11/03 00:10:00,14.338738738738739,14.338738738738739,19.58024501180978 + 11/03 00:20:00,14.338738738738739,14.338738738738739,19.59721916641446 + 11/03 00:30:00,14.338738738738739,14.338738738738739,19.61304648607296 + 11/03 00:40:00,14.338738738738739,14.338738738738739,19.62777023132344 + 11/03 00:50:00,14.338738738738739,14.338738738738739,19.641492361959313 + 11/03 01:00:00,14.338738738738739,14.338738738738739,19.654473400684208 + 11/03 01:10:00,14.338738738738739,14.338738738738739,19.666955343264289 + 11/03 01:20:00,14.338738738738739,14.338738738738739,19.67935807799703 + 11/03 01:30:00,14.338738738738739,14.338738738738739,19.691239106653243 + 11/03 01:40:00,14.338738738738739,14.338738738738739,19.70270174652174 + 11/03 01:50:00,14.338738738738739,14.338738738738739,19.713729261606745 + 11/03 02:00:00,14.338738738738739,14.338738738738739,19.72438542754812 + 11/03 02:10:00,14.363963963963965,14.363963963963965,19.734705552917104 + 11/03 02:20:00,14.389189189189189,14.389189189189189,19.74410203040512 + 11/03 02:30:00,14.414414414414415,14.414414414414415,19.753098043182619 + 11/03 02:40:00,14.439639639639639,14.439639639639639,19.76159644159778 + 11/03 02:50:00,14.464864864864865,14.464864864864865,19.769872212803074 + 11/03 03:00:00,14.49009009009009,14.49009009009009,19.77789058044943 + 11/03 03:10:00,14.511111111111111,14.511111111111111,19.78608464393596 + 11/03 03:20:00,14.532132132132132,14.532132132132132,19.794301210434097 + 11/03 03:30:00,14.553153153153153,14.553153153153153,19.80223492936418 + 11/03 03:40:00,14.574174174174175,14.574174174174175,19.810126405354347 + 11/03 03:50:00,14.595195195195196,14.595195195195196,19.81782121322318 + 11/03 04:00:00,14.616216216216217,14.616216216216217,19.825324235821577 + 11/03 04:10:00,14.616216216216217,14.616216216216217,19.831644599539353 + 11/03 04:20:00,14.616216216216217,14.616216216216217,19.837643511539686 + 11/03 04:30:00,14.616216216216217,14.616216216216217,19.8435036813097 + 11/03 04:40:00,14.616216216216217,14.616216216216217,19.84916038011033 + 11/03 04:50:00,14.616216216216217,14.616216216216217,19.854618658967757 + 11/03 05:00:00,14.616216216216217,14.616216216216217,19.859893185114097 + 11/03 05:10:00,14.616216216216217,14.616216216216217,19.865116428388526 + 11/03 05:20:00,14.616216216216217,14.616216216216217,19.870232198827133 + 11/03 05:30:00,14.616216216216217,14.616216216216217,19.875253539389015 + 11/03 05:40:00,14.616216216216217,14.616216216216217,19.880154841063566 + 11/03 05:50:00,14.616216216216217,14.616216216216217,19.88494105675715 + 11/03 06:00:00,14.616216216216217,14.616216216216217,19.88957201584767 + 11/03 06:10:00,14.641441441441442,14.641441441441442,17.893921752011708 + 11/03 06:20:00,14.666666666666666,14.666666666666666,17.662496465973168 + 11/03 06:30:00,14.691891891891892,14.691891891891892,17.578191091293328 + 11/03 06:40:00,14.717117117117118,14.717117117117118,17.513107513699006 + 11/03 06:50:00,14.742342342342342,14.742342342342342,17.4625240874589 + 11/03 07:00:00,14.767567567567568,14.767567567567568,17.42165089651033 + 11/03 07:05:00,14.742342342342342,14.742342342342342,15.947502641811865 + 11/03 07:10:00,14.742342342342342,14.742342342342342,15.947470920672905 + 11/03 07:15:00,14.717117117117116,14.717117117117116,15.732753928920456 + 11/03 07:20:00,14.717117117117116,14.717117117117116,15.732793519024734 + 11/03 07:30:00,14.691891891891892,14.691891891891892,15.632733799814064 + 11/03 07:40:00,14.666666666666668,14.666666666666668,15.551543289249864 + 11/03 07:50:00,14.641441441441442,14.641441441441442,15.483953384924642 + 11/03 08:00:00,14.616216216216217,14.616216216216217,15.425524954539537 + 11/03 08:05:00,14.523723723723723,14.523723723723723,15.350059321507962 + 11/03 08:10:00,14.523723723723723,14.523723723723723,15.34931331718243 + 11/03 08:20:00,14.431231231231232,14.431231231231232,15.293656764351845 + 11/03 08:30:00,14.338738738738739,14.338738738738739,15.250255107435127 + 11/03 08:40:00,14.246246246246246,14.246246246246246,15.20866978708373 + 11/03 08:50:00,14.153753753753755,14.153753753753755,15.16953100588039 + 11/03 09:00:00,14.061261261261262,14.061261261261262,15.132422406086008 + 11/03 09:10:00,13.897297297297298,13.897297297297298,15.095814006732335 + 11/03 09:20:00,13.733333333333335,13.733333333333335,15.05189173409737 + 11/03 09:30:00,13.56936936936937,13.56936936936937,15.019774386974902 + 11/03 09:40:00,13.405405405405407,13.405405405405407,14.989151156084393 + 11/03 09:50:00,13.241441441441442,13.241441441441442,14.95967870445458 + 11/03 10:00:00,13.077477477477478,13.077477477477478,14.928979396400438 + 11/03 10:10:00,13.006006006006008,13.006006006006008,14.90081246358776 + 11/03 10:20:00,12.934534534534535,12.934534534534535,14.8703589643187 + 11/03 10:30:00,12.863063063063063,12.863063063063063,14.844994164576026 + 11/03 10:40:00,12.8,12.8,14.821262468633578 + 11/03 10:50:00,12.8,12.8,14.799350221858303 + 11/03 11:00:00,12.8,12.8,14.77931248466073 + 11/03 11:10:00,12.8,12.8,14.761212407158086 + 11/03 11:20:00,12.8,12.8,14.754222007309505 + 11/03 11:30:00,12.8,12.8,14.739016836873864 + 11/03 11:40:00,12.8,12.8,14.724707846684947 + 11/03 11:50:00,12.8,12.8,14.711843789149489 + 11/03 12:00:00,12.8,12.8,14.699827663899232 + 11/03 12:10:00,12.8,12.8,14.688488369156416 + 11/03 12:20:00,12.8,12.8,14.665481950285804 + 11/03 12:30:00,12.8,12.8,14.654978071372744 + 11/03 12:40:00,12.8,12.8,14.644766678168113 + 11/03 12:50:00,12.8,12.8,14.633066129823027 + 11/03 13:00:00,12.8,12.8,14.624290883936324 + 11/03 13:10:00,12.8,12.8,14.612594109358734 + 11/03 13:20:00,12.8,12.8,14.605516643449864 + 11/03 13:30:00,12.8,12.8,14.596278763650468 + 11/03 13:40:00,12.8,12.8,14.58395418523879 + 11/03 13:50:00,12.8,12.8,14.57490328703513 + 11/03 14:00:00,12.8,12.8,14.566755861708815 + 11/03 14:10:00,12.8,12.8,14.556606994741629 + 11/03 14:20:00,12.8,12.8,14.553577330209189 + 11/03 14:30:00,12.8,12.8,14.547911785394913 + 11/03 14:40:00,12.8,12.8,14.539723073546686 + 11/03 14:50:00,12.8,12.8,14.5348723730049 + 11/03 15:00:00,12.8,12.8,14.53067452311157 + 11/03 15:05:00,12.8,12.8,16.671708954294269 + 11/03 15:10:00,12.8,12.8,16.6695057517627 + 11/03 15:15:00,12.8,12.8,16.93011128107529 + 11/03 15:20:00,12.8,12.8,16.928433170993804 + 11/03 15:30:00,12.8,12.8,17.026161297564494 + 11/03 15:40:00,12.8,12.8,17.09849413265391 + 11/03 15:50:00,12.8,12.8,17.152918562259047 + 11/03 16:00:00,12.8,12.8,17.19764931833411 + 11/03 16:10:00,12.8,12.8,17.261915694653177 + 11/03 16:20:00,12.8,12.8,17.316553320409626 + 11/03 16:30:00,12.8,12.8,17.34738419180052 + 11/03 16:40:00,12.8,12.8,17.375062813015867 + 11/03 16:50:00,12.8,12.8,17.399941240690795 + 11/03 17:00:00,12.8,12.8,17.42250848512292 + 11/03 17:10:00,12.846246246246248,12.846246246246248,17.456485380816266 + 11/03 17:20:00,12.892492492492494,12.892492492492494,17.481018612142429 + 11/03 17:30:00,12.938738738738739,12.938738738738739,17.49862038387901 + 11/03 17:40:00,12.984984984984987,12.984984984984987,17.5148935842886 + 11/03 17:50:00,13.031231231231232,13.031231231231232,17.530115759914489 + 11/03 18:00:00,13.077477477477478,13.077477477477478,17.544555052869034 + 11/03 18:10:00,13.102702702702704,13.102702702702704,17.55808001944661 + 11/03 18:20:00,13.127927927927928,13.127927927927928,17.57074010447289 + 11/03 18:30:00,13.153153153153154,13.153153153153154,17.582541452899247 + 11/03 18:40:00,13.17837837837838,13.17837837837838,17.59371897472388 + 11/03 18:50:00,13.203603603603604,13.203603603603604,17.604195473363157 + 11/03 19:00:00,13.22882882882883,13.22882882882883,17.614076382181126 + 11/03 19:10:00,13.24984984984985,13.24984984984985,17.6363506872475 + 11/03 19:20:00,13.270870870870871,13.270870870870871,17.645721805566319 + 11/03 19:30:00,13.291891891891894,13.291891891891894,17.654326826126188 + 11/03 19:40:00,13.312912912912914,13.312912912912914,17.66249035511874 + 11/03 19:50:00,13.333933933933935,13.333933933933935,17.670258891145008 + 11/03 20:00:00,13.354954954954956,13.354954954954956,17.67769985955371 + 11/03 20:10:00,13.380180180180182,13.380180180180182,17.66228349580085 + 11/03 20:20:00,13.405405405405407,13.405405405405407,17.67340161480406 + 11/03 20:30:00,13.430630630630632,13.430630630630632,17.679872749548179 + 11/03 20:40:00,13.455855855855857,13.455855855855857,17.686122250672157 + 11/03 20:50:00,13.481081081081081,13.481081081081081,17.692149897366599 + 11/03 21:00:00,13.506306306306307,13.506306306306307,17.69796508783297 + 11/03 21:10:00,13.527327327327328,13.527327327327328,17.703647559296468 + 11/03 21:20:00,13.548348348348349,13.548348348348349,17.709481099680465 + 11/03 21:30:00,13.56936936936937,13.56936936936937,17.71541345575393 + 11/03 21:40:00,13.590390390390392,13.590390390390392,17.721433084298913 + 11/03 21:50:00,13.611411411411412,13.611411411411412,17.727473077258069 + 11/03 22:00:00,13.632432432432433,13.632432432432433,17.73365141002283 + 11/03 22:10:00,13.632432432432433,13.632432432432433,19.096766797910278 + 11/03 22:20:00,13.632432432432433,13.632432432432433,19.24045236373511 + 11/03 22:30:00,13.632432432432433,13.632432432432433,19.303666459418218 + 11/03 22:40:00,13.632432432432433,13.632432432432433,19.353124084325978 + 11/03 22:50:00,13.632432432432433,13.632432432432433,19.392687319230129 + 11/03 23:00:00,13.632432432432433,13.632432432432433,19.425472170574133 + 11/03 23:10:00,13.611411411411412,13.611411411411412,19.453212737055929 + 11/03 23:20:00,13.590390390390392,13.590390390390392,19.477351673027124 + 11/03 23:30:00,13.56936936936937,13.56936936936937,19.498724049444769 + 11/03 23:40:00,13.548348348348349,13.548348348348349,19.518009483983005 + 11/03 23:50:00,13.527327327327328,13.527327327327328,19.53544195106476 + 11/03 24:00:00,13.506306306306307,13.506306306306307,19.551640162392866 + 11/04 00:10:00,13.527327327327328,13.527327327327328,19.56678237167251 + 11/04 00:20:00,13.548348348348349,13.548348348348349,19.581143677392729 + 11/04 00:30:00,13.56936936936937,13.56936936936937,19.594749854365554 + 11/04 00:40:00,13.590390390390392,13.590390390390392,19.60777729998357 + 11/04 00:50:00,13.611411411411412,13.611411411411412,19.620208227414204 + 11/04 01:00:00,13.632432432432433,13.632432432432433,19.632112440630224 + 11/04 01:10:00,13.657657657657659,13.657657657657659,19.643113937662706 + 11/04 01:20:00,13.682882882882883,13.682882882882883,19.653558901140685 + 11/04 01:30:00,13.708108108108109,13.708108108108109,19.66368877385176 + 11/04 01:40:00,13.733333333333335,13.733333333333335,19.67342028743348 + 11/04 01:50:00,13.758558558558559,13.758558558558559,19.682824245074824 + 11/04 02:00:00,13.783783783783785,13.783783783783785,19.691903679843738 + 11/04 02:10:00,13.783783783783785,13.783783783783785,19.700005580158075 + 11/04 02:20:00,13.783783783783785,13.783783783783785,19.707925881040319 + 11/04 02:30:00,13.783783783783785,13.783783783783785,19.715522157873197 + 11/04 02:40:00,13.783783783783785,13.783783783783785,19.722821361719836 + 11/04 02:50:00,13.783783783783785,13.783783783783785,19.729831654534427 + 11/04 03:00:00,13.783783783783785,13.783783783783785,19.736485068381144 + 11/04 03:10:00,13.783783783783785,13.783783783783785,19.743565441984257 + 11/04 03:20:00,13.783783783783785,13.783783783783785,19.750401435233117 + 11/04 03:30:00,13.783783783783785,13.783783783783785,19.757000186413469 + 11/04 03:40:00,13.783783783783785,13.783783783783785,19.763370548587223 + 11/04 03:50:00,13.783783783783785,13.783783783783785,19.769462346916947 + 11/04 04:00:00,13.783783783783785,13.783783783783785,19.775378393724439 + 11/04 04:10:00,13.804804804804805,13.804804804804805,19.781207281415818 + 11/04 04:20:00,13.825825825825828,13.825825825825828,19.786539237762076 + 11/04 04:30:00,13.846846846846848,13.846846846846848,19.791768605227344 + 11/04 04:40:00,13.867867867867869,13.867867867867869,19.796776333782537 + 11/04 04:50:00,13.88888888888889,13.88888888888889,19.801678570732727 + 11/04 05:00:00,13.90990990990991,13.90990990990991,19.806555513586998 + 11/04 05:10:00,13.935135135135136,13.935135135135136,19.811519042257353 + 11/04 05:20:00,13.960360360360362,13.960360360360362,19.81670012730832 + 11/04 05:30:00,13.985585585585586,13.985585585585586,19.82179458003904 + 11/04 05:40:00,14.010810810810812,14.010810810810812,19.826820768186125 + 11/04 05:50:00,14.036036036036038,14.036036036036038,19.831854294753776 + 11/04 06:00:00,14.061261261261262,14.061261261261262,19.836809864983395 + 11/04 06:10:00,14.061261261261262,14.061261261261262,19.182230318621678 + 11/04 06:20:00,14.061261261261262,14.061261261261262,19.11660985515612 + 11/04 06:30:00,14.061261261261262,14.061261261261262,19.09186351705788 + 11/04 06:40:00,14.061261261261262,14.061261261261262,19.073317606032949 + 11/04 06:50:00,14.061261261261262,14.061261261261262,19.059315862161264 + 11/04 07:00:00,14.061261261261262,14.061261261261262,19.04849340922591 + 11/04 07:10:00,14.036036036036036,14.036036036036036,17.96753090398869 + 11/04 07:20:00,14.01081081081081,14.01081081081081,17.82319498258983 + 11/04 07:30:00,13.985585585585586,13.985585585585586,17.763628059647958 + 11/04 07:40:00,13.960360360360362,13.960360360360362,17.716357465025028 + 11/04 07:50:00,13.935135135135136,13.935135135135136,17.67823867211879 + 11/04 08:00:00,13.90990990990991,13.90990990990991,17.64636937792597 + 11/04 08:10:00,13.935135135135136,13.935135135135136,17.619094926368779 + 11/04 08:20:00,13.960360360360362,13.960360360360362,17.585540178029384 + 11/04 08:30:00,13.985585585585586,13.985585585585586,17.563543655765736 + 11/04 08:40:00,14.010810810810812,14.010810810810812,17.54338042859846 + 11/04 08:50:00,14.036036036036038,14.036036036036038,17.52437884029461 + 11/04 09:00:00,14.061261261261262,14.061261261261262,17.5060478973959 + 11/04 09:10:00,14.036036036036036,14.036036036036036,17.487967083204319 + 11/04 09:20:00,14.01081081081081,14.01081081081081,17.463319604737078 + 11/04 09:30:00,13.985585585585586,13.985585585585586,17.44744106151872 + 11/04 09:40:00,13.960360360360362,13.960360360360362,17.432453920585187 + 11/04 09:50:00,13.935135135135136,13.935135135135136,17.41869783319884 + 11/04 10:00:00,13.90990990990991,13.90990990990991,17.406554615077554 + 11/04 10:10:00,13.90990990990991,13.90990990990991,17.39628352682182 + 11/04 10:20:00,13.90990990990991,13.90990990990991,17.38357342749121 + 11/04 10:30:00,13.90990990990991,13.90990990990991,17.374415600887056 + 11/04 10:40:00,13.90990990990991,13.90990990990991,17.36549459588863 + 11/04 10:50:00,13.90990990990991,13.90990990990991,17.357428022048276 + 11/04 11:00:00,13.90990990990991,13.90990990990991,17.349433474858615 + 11/04 11:10:00,13.88888888888889,13.88888888888889,17.34188263700092 + 11/04 11:20:00,13.867867867867869,13.867867867867869,17.334385511393195 + 11/04 11:30:00,13.846846846846848,13.846846846846848,17.32690758668663 + 11/04 11:40:00,13.825825825825828,13.825825825825828,17.319586819288977 + 11/04 11:50:00,13.804804804804805,13.804804804804805,17.3128094892457 + 11/04 12:00:00,13.783783783783785,13.783783783783785,17.304455194523287 + 11/04 12:10:00,13.804804804804805,13.804804804804805,17.29581590485993 + 11/04 12:20:00,13.825825825825828,13.825825825825828,17.290234071570308 + 11/04 12:30:00,13.846846846846848,13.846846846846848,17.28489764244876 + 11/04 12:40:00,13.867867867867869,13.867867867867869,17.279958984770997 + 11/04 12:50:00,13.88888888888889,13.88888888888889,17.274224390381737 + 11/04 13:00:00,13.90990990990991,13.90990990990991,17.26540925612167 + 11/04 13:10:00,13.863663663663666,13.863663663663666,17.258024689079379 + 11/04 13:20:00,13.817417417417417,13.817417417417417,17.249608889415513 + 11/04 13:30:00,13.771171171171173,13.771171171171173,17.24090518487111 + 11/04 13:40:00,13.724924924924926,13.724924924924926,17.232105698930935 + 11/04 13:50:00,13.67867867867868,13.67867867867868,17.223901298471007 + 11/04 14:00:00,13.632432432432433,13.632432432432433,17.2165944411507 + 11/04 14:10:00,13.611411411411412,13.611411411411412,17.209261081898079 + 11/04 14:20:00,13.590390390390392,13.590390390390392,17.202671687851074 + 11/04 14:30:00,13.56936936936937,13.56936936936937,17.196624457764885 + 11/04 14:40:00,13.548348348348349,13.548348348348349,17.19106097410056 + 11/04 14:50:00,13.527327327327328,13.527327327327328,17.18601646635868 + 11/04 15:00:00,13.506306306306307,13.506306306306307,17.181420352020383 + 11/04 15:10:00,13.388588588588588,13.388588588588588,17.17771935502266 + 11/04 15:20:00,13.270870870870871,13.270870870870871,17.174415304152494 + 11/04 15:30:00,13.153153153153154,13.153153153153154,17.171452965403977 + 11/04 15:40:00,13.035435435435435,13.035435435435435,17.168819498230208 + 11/04 15:50:00,12.917717717717718,12.917717717717718,17.16648417867343 + 11/04 16:00:00,12.8,12.8,17.164421974352768 + 11/04 16:10:00,12.8,12.8,17.1758089665337 + 11/04 16:20:00,12.8,12.8,17.184234331252413 + 11/04 16:30:00,12.8,12.8,17.18399836285737 + 11/04 16:40:00,12.8,12.8,17.18415201313146 + 11/04 16:50:00,12.8,12.8,17.18481726486929 + 11/04 17:00:00,12.8,12.8,17.1859350962346 + 11/04 17:10:00,12.8,12.8,18.939963479733657 + 11/04 17:20:00,12.842042042042042,12.842042042042042,19.152318319077204 + 11/04 17:30:00,12.93873873873874,12.93873873873874,19.235033263329446 + 11/04 17:40:00,13.035435435435437,13.035435435435437,19.300820955595044 + 11/04 17:50:00,13.132132132132134,13.132132132132134,19.35373644337669 + 11/04 18:00:00,13.22882882882883,13.22882882882883,19.39833249952709 + 11/04 18:10:00,13.275075075075077,13.275075075075077,19.448746435035134 + 11/04 18:20:00,13.321321321321323,13.321321321321323,19.482816479224053 + 11/04 18:30:00,13.367567567567568,13.367567567567568,19.512386894829239 + 11/04 18:40:00,13.413813813813816,13.413813813813816,19.538765850592314 + 11/04 18:50:00,13.46006006006006,13.46006006006006,19.56235885085271 + 11/04 19:00:00,13.506306306306307,13.506306306306307,19.583528057810523 + 11/04 19:10:00,13.506306306306307,13.506306306306307,19.60317527429942 + 11/04 19:20:00,13.506306306306307,13.506306306306307,19.621180566047405 + 11/04 19:30:00,13.506306306306307,13.506306306306307,19.637766934508908 + 11/04 19:40:00,13.506306306306307,13.506306306306307,19.653113703021 + 11/04 19:50:00,13.506306306306307,13.506306306306307,19.66732581794726 + 11/04 20:00:00,13.506306306306307,13.506306306306307,19.68064262456548 + 11/04 20:10:00,13.527327327327328,13.527327327327328,19.67083973669889 + 11/04 20:20:00,13.548348348348349,13.548348348348349,19.682770409160044 + 11/04 20:30:00,13.56936936936937,13.56936936936937,19.694162064935818 + 11/04 20:40:00,13.590390390390392,13.590390390390392,19.70505268514814 + 11/04 20:50:00,13.611411411411412,13.611411411411412,19.71550704855541 + 11/04 21:00:00,13.632432432432433,13.632432432432433,19.725638774800904 + 11/04 21:10:00,13.657657657657659,13.657657657657659,19.735664766089788 + 11/04 21:20:00,13.682882882882883,13.682882882882883,19.745168534257699 + 11/04 21:30:00,13.708108108108109,13.708108108108109,19.7541971822313 + 11/04 21:40:00,13.733333333333335,13.733333333333335,19.76272417710287 + 11/04 21:50:00,13.758558558558559,13.758558558558559,19.77094649755327 + 11/04 22:00:00,13.783783783783785,13.783783783783785,19.778810025007116 + 11/04 22:10:00,13.783783783783785,13.783783783783785,19.786083062167397 + 11/04 22:20:00,13.783783783783785,13.783783783783785,19.793005817782637 + 11/04 22:30:00,13.783783783783785,13.783783783783785,19.79944384015333 + 11/04 22:40:00,13.783783783783785,13.783783783783785,19.80562009129466 + 11/04 22:50:00,13.783783783783785,13.783783783783785,19.81146092533714 + 11/04 23:00:00,13.783783783783785,13.783783783783785,19.816991510776178 + 11/04 23:10:00,13.804804804804805,13.804804804804805,19.822500088654168 + 11/04 23:20:00,13.825825825825828,13.825825825825828,19.827459841630323 + 11/04 23:30:00,13.846846846846848,13.846846846846848,19.832363332222536 + 11/04 23:40:00,13.867867867867869,13.867867867867869,19.837227766581998 + 11/04 23:50:00,13.88888888888889,13.88888888888889,19.84200142303127 + 11/04 24:00:00,13.90990990990991,13.90990990990991,19.8467809223587 + 11/05 00:10:00,13.935135135135136,13.935135135135136,19.851056505168289 + 11/05 00:20:00,13.960360360360362,13.960360360360362,19.85492711009851 + 11/05 00:30:00,13.985585585585586,13.985585585585586,19.85845883734997 + 11/05 00:40:00,14.010810810810812,14.010810810810812,19.86156967397453 + 11/05 00:50:00,14.036036036036038,14.036036036036038,19.86428839672939 + 11/05 01:00:00,14.061261261261262,14.061261261261262,19.866604814382197 + 11/05 01:10:00,14.082282282282283,14.082282282282283,19.868940959448808 + 11/05 01:20:00,14.103303303303303,14.103303303303303,19.87175706047716 + 11/05 01:30:00,14.124324324324324,14.124324324324324,19.875139117546746 + 11/05 01:40:00,14.145345345345346,14.145345345345346,19.879119815019157 + 11/05 01:50:00,14.166366366366367,14.166366366366367,19.88362499572577 + 11/05 02:00:00,14.187387387387388,14.187387387387388,19.88849269363484 + 11/05 02:10:00,14.212612612612613,14.212612612612613,19.893282773517418 + 11/05 02:20:00,14.237837837837838,14.237837837837838,19.897926375613588 + 11/05 02:30:00,14.263063063063063,14.263063063063063,19.902309060380369 + 11/05 02:40:00,14.288288288288289,14.288288288288289,19.90637940630613 + 11/05 02:50:00,14.313513513513513,14.313513513513513,19.91007670211641 + 11/05 03:00:00,14.338738738738739,14.338738738738739,19.913578300967126 + 11/05 03:10:00,14.338738738738739,14.338738738738739,19.91744211460135 + 11/05 03:20:00,14.338738738738739,14.338738738738739,19.921209154510707 + 11/05 03:30:00,14.338738738738739,14.338738738738739,19.924593796687835 + 11/05 03:40:00,14.338738738738739,14.338738738738739,19.92761660221058 + 11/05 03:50:00,14.338738738738739,14.338738738738739,19.93031258072702 + 11/05 04:00:00,14.338738738738739,14.338738738738739,19.932735346983443 + 11/05 04:10:00,14.338738738738739,14.338738738738739,19.93466212380623 + 11/05 04:20:00,14.338738738738739,14.338738738738739,19.936655322948515 + 11/05 04:30:00,14.338738738738739,14.338738738738739,19.93850021081569 + 11/05 04:40:00,14.338738738738739,14.338738738738739,19.940295134707538 + 11/05 04:50:00,14.338738738738739,14.338738738738739,19.94206066104023 + 11/05 05:00:00,14.338738738738739,14.338738738738739,19.943777499811515 + 11/05 05:10:00,14.338738738738739,14.338738738738739,19.94468808475733 + 11/05 05:20:00,14.338738738738739,14.338738738738739,19.945622389018465 + 11/05 05:30:00,14.338738738738739,14.338738738738739,19.946855925767946 + 11/05 05:40:00,14.338738738738739,14.338738738738739,19.948530956755304 + 11/05 05:50:00,14.338738738738739,14.338738738738739,19.950585045385276 + 11/05 06:00:00,14.338738738738739,14.338738738738739,19.953060531648963 + 11/05 06:10:00,14.363963963963965,14.363963963963965,19.979845348177066 + 11/05 06:20:00,14.389189189189189,14.389189189189189,19.98387101783841 + 11/05 06:30:00,14.414414414414415,14.414414414414415,19.98778173179805 + 11/05 06:40:00,14.439639639639639,14.439639639639639,19.99143206805228 + 11/05 06:50:00,14.464864864864865,14.464864864864865,19.994910714710227 + 11/05 07:00:00,14.49009009009009,14.49009009009009,19.998251251194554 + 11/05 07:10:00,14.49009009009009,14.49009009009009,18.60498304826858 + 11/05 07:20:00,14.49009009009009,14.49009009009009,18.441096055954366 + 11/05 07:30:00,14.49009009009009,14.49009009009009,18.377446641485546 + 11/05 07:40:00,14.49009009009009,14.49009009009009,18.327362163631585 + 11/05 07:50:00,14.49009009009009,14.49009009009009,18.28737418750701 + 11/05 08:00:00,14.49009009009009,14.49009009009009,18.254396459988379 + 11/05 08:10:00,14.418618618618618,14.418618618618618,18.22559986380223 + 11/05 08:20:00,14.347147147147148,14.347147147147148,18.192370352222964 + 11/05 08:30:00,14.275675675675675,14.275675675675675,18.17020886651044 + 11/05 08:40:00,14.204204204204205,14.204204204204205,18.150133731077028 + 11/05 08:50:00,14.132732732732734,14.132732732732734,18.13144289150646 + 11/05 09:00:00,14.061261261261262,14.061261261261262,18.113924751088804 + 11/05 09:10:00,14.015015015015015,14.015015015015015,18.097772093545787 + 11/05 09:20:00,13.968768768768769,13.968768768768769,18.07278480887717 + 11/05 09:30:00,13.922522522522524,13.922522522522524,18.057594161042318 + 11/05 09:40:00,13.876276276276278,13.876276276276278,18.042745615918798 + 11/05 09:50:00,13.83003003003003,13.83003003003003,18.027846950731538 + 11/05 10:00:00,13.783783783783785,13.783783783783785,18.012443403557275 + 11/05 10:10:00,13.712312312312314,13.712312312312314,17.995718683285319 + 11/05 10:20:00,13.640840840840842,13.640840840840842,17.979209991080297 + 11/05 10:30:00,13.56936936936937,13.56936936936937,17.96213182768905 + 11/05 10:40:00,13.497897897897899,13.497897897897899,17.94475302365519 + 11/05 10:50:00,13.426426426426428,13.426426426426428,17.927322646759945 + 11/05 11:00:00,13.354954954954956,13.354954954954956,17.909701586896199 + 11/05 11:10:00,13.283483483483485,13.283483483483485,17.892928279208208 + 11/05 11:20:00,13.212012012012013,13.212012012012013,17.873563311510787 + 11/05 11:30:00,13.140540540540542,13.140540540540542,17.85684321795017 + 11/05 11:40:00,13.06906906906907,13.06906906906907,17.840526014811024 + 11/05 11:50:00,12.997597597597599,12.997597597597599,17.825630813517006 + 11/05 12:00:00,12.926126126126127,12.926126126126127,17.81192017378744 + 11/05 12:10:00,12.85885885885886,12.85885885885886,17.79902829021701 + 11/05 12:20:00,12.8,12.8,17.786824542013684 + 11/05 12:30:00,12.8,12.8,17.775197333810714 + 11/05 12:40:00,12.8,12.8,17.76413174313578 + 11/05 12:50:00,12.8,12.8,17.75355271498539 + 11/05 13:00:00,12.8,12.8,17.742422422956424 + 11/05 13:10:00,12.8,12.8,17.730837968544905 + 11/05 13:20:00,12.8,12.8,17.721742013477415 + 11/05 13:30:00,12.8,12.8,17.712744905772714 + 11/05 13:40:00,12.8,12.8,17.70488574705756 + 11/05 13:50:00,12.8,12.8,17.69820547024402 + 11/05 14:00:00,12.8,12.8,17.692849325437814 + 11/05 14:10:00,12.8,12.8,17.68875633500209 + 11/05 14:20:00,12.8,12.8,17.685093663493288 + 11/05 14:30:00,12.8,12.8,17.68236046545087 + 11/05 14:40:00,12.8,12.8,17.67996561180251 + 11/05 14:50:00,12.8,12.8,17.677791733851288 + 11/05 15:00:00,12.8,12.8,17.67558867837763 + 11/05 15:10:00,12.8,12.8,19.089703490717726 + 11/05 15:20:00,12.8,12.8,19.23791210549533 + 11/05 15:30:00,12.8,12.8,19.298990091669997 + 11/05 15:40:00,12.8,12.8,19.345956642699155 + 11/05 15:50:00,12.8,12.8,19.383222130314008 + 11/05 16:00:00,12.8,12.8,19.41421640910192 + 11/05 16:10:00,12.8,12.8,19.441231282992758 + 11/05 16:20:00,12.8,12.8,19.476223835275915 + 11/05 16:30:00,12.8,12.8,19.50019847980721 + 11/05 16:40:00,12.8,12.8,19.522923995154039 + 11/05 16:50:00,12.8,12.8,19.5443647404201 + 11/05 17:00:00,12.8,12.8,19.564776879962456 + 11/05 17:10:00,12.8,12.8,19.5843224261645 + 11/05 17:20:00,12.8,12.8,19.62242590685757 + 11/05 17:30:00,12.93873873873874,12.93873873873874,19.641827928009464 + 11/05 17:40:00,13.077477477477478,13.077477477477478,19.66078772029311 + 11/05 17:50:00,13.216216216216218,13.216216216216218,19.678880656767448 + 11/05 18:00:00,13.354954954954956,13.354954954954956,19.696037467737928 + 11/05 18:10:00,13.401201201201202,13.401201201201202,19.712148519598164 + 11/05 18:20:00,13.447447447447449,13.447447447447449,19.726520640916548 + 11/05 18:30:00,13.493693693693695,13.493693693693695,19.73934243601614 + 11/05 18:40:00,13.539939939939942,13.539939939939942,19.75065896840114 + 11/05 18:50:00,13.586186186186187,13.586186186186187,19.76076246153542 + 11/05 19:00:00,13.632432432432433,13.632432432432433,19.76980103246468 + 11/05 19:10:00,13.67867867867868,13.67867867867868,19.778024196214639 + 11/05 19:20:00,13.724924924924924,13.724924924924924,19.785137117470599 + 11/05 19:30:00,13.771171171171173,13.771171171171173,19.792563117581414 + 11/05 19:40:00,13.817417417417419,13.817417417417419,19.80011414126898 + 11/05 19:50:00,13.863663663663666,13.863663663663666,19.808105669803003 + 11/05 20:00:00,13.90990990990991,13.90990990990991,19.816405449157846 + 11/05 20:10:00,13.90990990990991,13.90990990990991,19.802027979294079 + 11/05 20:20:00,13.90990990990991,13.90990990990991,19.81014812035414 + 11/05 20:30:00,13.90990990990991,13.90990990990991,19.81788816829964 + 11/05 20:40:00,13.90990990990991,13.90990990990991,19.825457678356956 + 11/05 20:50:00,13.90990990990991,13.90990990990991,19.83267564607845 + 11/05 21:00:00,13.90990990990991,13.90990990990991,19.839573550127473 + 11/05 21:10:00,13.956156156156157,13.956156156156157,19.846698205918956 + 11/05 21:20:00,14.002402402402403,14.002402402402403,19.852722343968464 + 11/05 21:30:00,14.04864864864865,14.04864864864865,19.85871929367242 + 11/05 21:40:00,14.094894894894896,14.094894894894896,19.864415272237925 + 11/05 21:50:00,14.14114114114114,14.14114114114114,19.870041182743706 + 11/05 22:00:00,14.187387387387388,14.187387387387388,19.875602867177425 + 11/05 22:10:00,14.212612612612613,14.212612612612613,19.88089323938806 + 11/05 22:20:00,14.237837837837838,14.237837837837838,19.886362646454566 + 11/05 22:30:00,14.263063063063063,14.263063063063063,19.89167870496475 + 11/05 22:40:00,14.288288288288289,14.288288288288289,19.896886455333165 + 11/05 22:50:00,14.313513513513513,14.313513513513513,19.901918746681017 + 11/05 23:00:00,14.338738738738739,14.338738738738739,19.906731700221468 + 11/05 23:10:00,14.41021021021021,14.41021021021021,19.91105510939576 + 11/05 23:20:00,14.481681681681682,14.481681681681682,19.914856450166817 + 11/05 23:30:00,14.553153153153153,14.553153153153153,19.91866777281762 + 11/05 23:40:00,14.624624624624625,14.624624624624625,19.922364895883378 + 11/05 23:50:00,14.696096096096096,14.696096096096096,19.926070707715064 + 11/05 24:00:00,14.767567567567568,14.767567567567568,19.92977478436859 + 11/06 00:10:00,14.767567567567568,14.767567567567568,19.934215790931128 + 11/06 00:20:00,14.767567567567568,14.767567567567568,19.939042437698285 + 11/06 00:30:00,14.767567567567568,14.767567567567568,19.943726315455498 + 11/06 00:40:00,14.767567567567568,14.767567567567568,19.948397262737659 + 11/06 00:50:00,14.767567567567568,14.767567567567568,19.952805074420274 + 11/06 01:00:00,14.767567567567568,14.767567567567568,19.9571383503796 + 11/06 01:10:00,14.788588588588589,14.788588588588589,19.96095489917317 + 11/06 01:20:00,14.809609609609609,14.809609609609609,19.964251676429677 + 11/06 01:30:00,14.83063063063063,14.83063063063063,19.967433193615528 + 11/06 01:40:00,14.85165165165165,14.85165165165165,19.97032438954404 + 11/06 01:50:00,14.872672672672673,14.872672672672673,19.973211017104949 + 11/06 02:00:00,14.893693693693694,14.893693693693694,19.97605991096304 + 11/06 02:10:00,14.91891891891892,14.91891891891892,19.978885731705274 + 11/06 02:20:00,14.944144144144144,14.944144144144144,19.981906062977548 + 11/06 02:30:00,14.96936936936937,14.96936936936937,19.98482872728828 + 11/06 02:40:00,14.994594594594595,14.994594594594595,19.987864438011429 + 11/06 02:50:00,15.01981981981982,15.01981981981982,19.990902714518353 + 11/06 03:00:00,15.045045045045045,15.045045045045045,19.99396650684481 + 11/06 03:10:00,15.091291291291292,15.091291291291292,19.997128339993048 + 11/06 03:20:00,15.137537537537538,15.137537537537538,19.99998171019866 + 11/06 03:30:00,15.183783783783785,15.183783783783785,20.00281514221267 + 11/06 03:40:00,15.23003003003003,15.23003003003003,20.005644779271838 + 11/06 03:50:00,15.276276276276276,15.276276276276276,20.008486470518066 + 11/06 04:00:00,15.322522522522523,15.322522522522523,20.011348244671106 + 11/06 04:10:00,15.368768768768769,15.368768768768769,20.014211061821404 + 11/06 04:20:00,15.415015015015016,15.415015015015016,20.017134537816938 + 11/06 04:30:00,15.46126126126126,15.46126126126126,20.02017017421013 + 11/06 04:40:00,15.507507507507507,15.507507507507507,20.02325667860251 + 11/06 04:50:00,15.553753753753754,15.553753753753754,20.02635721754824 + 11/06 05:00:00,15.6,15.6,20.029465644700087 + 11/06 05:10:00,15.6,15.6,20.03236973974485 + 11/06 05:20:00,15.6,15.6,20.035421982776929 + 11/06 05:30:00,15.6,15.6,20.038448634868755 + 11/06 05:40:00,15.6,15.6,20.041467630415167 + 11/06 05:50:00,15.6,15.6,20.04445386877863 + 11/06 06:00:00,15.6,15.6,20.04733476355466 + 11/06 06:10:00,15.6,15.6,20.050198364054546 + 11/06 06:20:00,15.6,15.6,20.053076825185717 + 11/06 06:30:00,15.6,15.6,20.055922717478955 + 11/06 06:40:00,15.6,15.6,20.058742284987209 + 11/06 06:50:00,15.6,15.6,20.061485581719315 + 11/06 07:00:00,15.6,15.6,20.064191655295994 + 11/06 07:10:00,15.6,15.6,18.064552482195219 + 11/06 07:20:00,15.6,15.6,17.83038971675684 + 11/06 07:30:00,15.6,15.6,17.74203114957261 + 11/06 07:40:00,15.6,15.6,17.67258117697325 + 11/06 07:50:00,15.6,15.6,17.617178120066769 + 11/06 08:00:00,15.6,15.6,17.57043959267074 + 11/06 08:10:00,15.507507507507507,15.507507507507507,16.086803983792519 + 11/06 08:15:00,15.415015015015016,15.415015015015016,15.866123441846347 + 11/06 08:20:00,15.415015015015016,15.415015015015016,15.865261298423892 + 11/06 08:30:00,15.322522522522523,15.322522522522523,15.755913764709959 + 11/06 08:35:00,15.23003003003003,15.23003003003003,15.666469454668818 + 11/06 08:40:00,15.23003003003003,15.23003003003003,15.665987512650709 + 11/06 08:50:00,15.137537537537538,15.137537537537538,15.58701602242685 + 11/06 09:00:00,15.045045045045045,15.045045045045045,15.518847935840713 + 11/06 09:05:00,14.952552552552552,14.952552552552552,15.434321121821304 + 11/06 09:10:00,14.952552552552552,14.952552552552552,15.433569977811683 + 11/06 09:20:00,14.86006006006006,14.86006006006006,15.369143301437408 + 11/06 09:25:00,14.767567567567568,14.767567567567568,15.320536052270345 + 11/06 09:30:00,14.767567567567568,14.767567567567568,15.319859819950434 + 11/06 09:40:00,14.675075075075075,14.675075075075075,15.271029894803077 + 11/06 09:50:00,14.582582582582584,14.582582582582584,15.228009297105038 + 11/06 10:00:00,14.49009009009009,14.49009009009009,15.187239207067075 + 11/06 10:10:00,14.372372372372372,14.372372372372372,15.15006866222892 + 11/06 10:20:00,14.254654654654655,14.254654654654655,15.101671774174808 + 11/06 10:30:00,14.136936936936938,14.136936936936938,15.06589425326746 + 11/06 10:40:00,14.01921921921922,14.01921921921922,15.031263084980907 + 11/06 10:50:00,13.901501501501502,13.901501501501502,14.99773577920558 + 11/06 11:00:00,13.783783783783785,13.783783783783785,14.964979097902184 + 11/06 11:10:00,13.758558558558559,13.758558558558559,14.933702104826248 + 11/06 11:20:00,13.733333333333335,13.733333333333335,14.900822151237016 + 11/06 11:30:00,13.708108108108109,13.708108108108109,14.872755420597365 + 11/06 11:40:00,13.682882882882883,13.682882882882883,14.846158088929837 + 11/06 11:50:00,13.657657657657659,13.657657657657659,14.8211058321925 + 11/06 12:00:00,13.632432432432433,13.632432432432433,14.797639468332984 + 11/06 12:10:00,13.586186186186187,13.586186186186187,14.773885749866665 + 11/06 12:20:00,13.539939939939942,13.539939939939942,14.7622228140445 + 11/06 12:30:00,13.493693693693695,13.493693693693695,14.741610071863946 + 11/06 12:40:00,13.447447447447449,13.447447447447449,14.721917606889074 + 11/06 12:50:00,13.401201201201202,13.401201201201202,14.702874245068636 + 11/06 13:00:00,13.354954954954956,13.354954954954956,14.68454263777301 + 11/06 13:10:00,13.283483483483485,13.283483483483485,14.668006673043634 + 11/06 13:20:00,13.212012012012013,13.212012012012013,14.637571936232768 + 11/06 13:30:00,13.140540540540542,13.140540540540542,14.618073841503878 + 11/06 13:40:00,13.06906906906907,13.06906906906907,14.599959120590654 + 11/06 13:50:00,12.997597597597599,12.997597597597599,14.581283089203496 + 11/06 14:00:00,12.926126126126127,12.926126126126127,14.562130464139673 + 11/06 14:10:00,12.926126126126127,12.926126126126127,14.545977132255848 + 11/06 14:20:00,12.926126126126127,12.926126126126127,14.535407353208124 + 11/06 14:30:00,12.926126126126127,12.926126126126127,14.523870470622308 + 11/06 14:40:00,12.926126126126127,12.926126126126127,14.514431982810532 + 11/06 14:50:00,12.926126126126127,12.926126126126127,14.50226478328222 + 11/06 15:00:00,12.926126126126127,12.926126126126127,14.49390591862133 + 11/06 15:10:00,12.926126126126127,12.926126126126127,14.486119970260454 + 11/06 15:20:00,12.926126126126127,12.926126126126127,14.48310916123264 + 11/06 15:30:00,12.926126126126127,12.926126126126127,14.479609517201006 + 11/06 15:40:00,12.926126126126127,12.926126126126127,14.476885332218759 + 11/06 15:50:00,12.926126126126127,12.926126126126127,14.472234401986765 + 11/06 16:00:00,12.926126126126127,12.926126126126127,14.471014783539978 + 11/06 16:05:00,12.997597597597599,12.997597597597599,16.636879614026897 + 11/06 16:10:00,12.997597597597599,12.997597597597599,16.636124882319206 + 11/06 16:20:00,13.06906906906907,13.06906906906907,16.885724896586955 + 11/06 16:30:00,13.140540540540542,13.140540540540542,16.986966937431477 + 11/06 16:40:00,13.212012012012015,13.212012012012015,17.06544191198778 + 11/06 16:50:00,13.283483483483485,13.283483483483485,17.127962061255347 + 11/06 17:00:00,13.354954954954956,13.354954954954956,17.178643821955459 + 11/06 17:10:00,13.447447447447449,13.447447447447449,17.248960662909395 + 11/06 17:20:00,13.539939939939942,13.539939939939942,17.307896660819293 + 11/06 17:30:00,13.632432432432435,13.632432432432435,17.34281817803673 + 11/06 17:40:00,13.724924924924926,13.724924924924926,17.374224546103137 + 11/06 17:50:00,13.817417417417419,13.817417417417419,17.403007219932126 + 11/06 18:00:00,13.90990990990991,13.90990990990991,17.4291340890181 + 11/06 18:10:00,14.006606606606607,14.006606606606607,17.464838162767145 + 11/06 18:20:00,14.103303303303303,14.103303303303303,17.493085135153103 + 11/06 18:30:00,14.2,14.2,17.513572996983549 + 11/06 18:40:00,14.296696696696696,14.296696696696696,17.532673224693505 + 11/06 18:50:00,14.393393393393394,14.393393393393394,17.550233174025196 + 11/06 19:00:00,14.49009009009009,14.49009009009009,17.56649714757335 + 11/06 19:10:00,14.557357357357358,14.557357357357358,17.582641610970588 + 11/06 19:20:00,14.624624624624625,14.624624624624625,17.598047451210783 + 11/06 19:30:00,14.691891891891892,14.691891891891892,17.612584281263599 + 11/06 19:40:00,14.759159159159159,14.759159159159159,17.626384715916147 + 11/06 19:50:00,14.826426426426427,14.826426426426427,17.63954345023345 + 11/06 20:00:00,14.893693693693694,14.893693693693694,17.65211612262832 + 11/06 20:10:00,14.91891891891892,14.91891891891892,17.676185638852343 + 11/06 20:20:00,14.944144144144144,14.944144144144144,17.68687050521932 + 11/06 20:30:00,14.96936936936937,14.96936936936937,17.69668088953562 + 11/06 20:40:00,14.994594594594595,14.994594594594595,17.70596507945448 + 11/06 20:50:00,15.01981981981982,15.01981981981982,17.714791784252488 + 11/06 21:00:00,15.045045045045045,15.045045045045045,17.723231977246109 + 11/06 21:10:00,15.091291291291292,15.091291291291292,17.709135473838609 + 11/06 21:20:00,15.137537537537538,15.137537537537538,17.72208964395565 + 11/06 21:30:00,15.183783783783785,15.183783783783785,17.730416874119596 + 11/06 21:40:00,15.23003003003003,15.23003003003003,17.7385853150331 + 11/06 21:50:00,15.276276276276276,15.276276276276276,17.746562917694896 + 11/06 22:00:00,15.322522522522523,15.322522522522523,17.754345401227135 + 11/06 22:10:00,15.343543543543543,15.343543543543543,17.762411204333796 + 11/06 22:20:00,15.364564564564564,15.364564564564564,17.769927465875044 + 11/06 22:30:00,15.385585585585586,15.385585585585586,17.77714805785578 + 11/06 22:40:00,15.406606606606607,15.406606606606607,17.78395212362519 + 11/06 22:50:00,15.427627627627628,15.427627627627628,17.790543979704805 + 11/06 23:00:00,15.448648648648648,15.448648648648648,17.79697850621524 + 11/06 23:10:00,15.499099099099098,15.499099099099098,19.17631292431157 + 11/06 23:20:00,15.54954954954955,15.54954954954955,19.32161799073082 + 11/06 23:30:00,15.6,15.6,19.386808317989119 + 11/06 23:40:00,15.6,15.6,19.438734894197038 + 11/06 23:50:00,15.6,15.6,19.48107244046203 + 11/06 24:00:00,15.6,15.6,19.517031767219537 + 11/07 00:10:00,15.6,15.6,19.548183485405145 + 11/07 00:20:00,15.6,15.6,19.575972167684936 + 11/07 00:30:00,15.6,15.6,19.600985050777468 + 11/07 00:40:00,15.6,15.6,19.623977307367036 + 11/07 00:50:00,15.6,15.6,19.645213921621975 + 11/07 01:00:00,15.6,15.6,19.664953056568558 + 11/07 01:10:00,15.6,15.6,19.684550150326325 + 11/07 01:20:00,15.6,15.6,19.70290278427466 + 11/07 01:30:00,15.6,15.6,19.72038682652527 + 11/07 01:40:00,15.6,15.6,19.737014528463129 + 11/07 01:50:00,15.6,15.6,19.752909836683899 + 11/07 02:00:00,15.6,15.6,19.768163571656865 + 11/07 02:10:00,15.6,15.6,19.778959263141699 + 11/07 02:20:00,15.6,15.6,19.789413099606678 + 11/07 02:30:00,15.6,15.6,19.7994532342361 + 11/07 02:40:00,15.6,15.6,19.809129448883544 + 11/07 02:50:00,15.6,15.6,19.818451237926547 + 11/07 03:00:00,15.6,15.6,19.82736797401863 + 11/07 03:10:00,15.6,15.6,19.83879720776759 + 11/07 03:20:00,15.6,15.6,19.849911666719998 + 11/07 03:30:00,15.6,15.6,19.860711512144574 + 11/07 03:40:00,15.6,15.6,19.87120135470842 + 11/07 03:50:00,15.6,15.6,19.881362689549513 + 11/07 04:00:00,15.6,15.6,19.89125336049953 + 11/07 04:10:00,15.6,15.6,19.899206317854973 + 11/07 04:20:00,15.6,15.6,19.906952664971987 + 11/07 04:30:00,15.6,15.6,19.914481081838347 + 11/07 04:40:00,15.6,15.6,19.92178919384729 + 11/07 04:50:00,15.6,15.6,19.928843818782256 + 11/07 05:00:00,15.6,15.6,19.93579170474898 + 11/07 05:10:00,15.6,15.6,19.94189486789029 + 11/07 05:20:00,15.6,15.6,19.947906392455879 + 11/07 05:30:00,15.6,15.6,19.953792328599684 + 11/07 05:40:00,15.6,15.6,19.959474532542879 + 11/07 05:50:00,15.6,15.6,19.9651380423776 + 11/07 06:00:00,15.6,15.6,19.97068294071435 + 11/07 06:10:00,15.6,15.6,19.978957903900594 + 11/07 06:20:00,15.6,15.6,19.986982531209216 + 11/07 06:30:00,15.6,15.6,19.99473550559172 + 11/07 06:40:00,15.6,15.6,20.00232769877951 + 11/07 06:50:00,15.6,15.6,20.0097652205003 + 11/07 07:00:00,15.6,15.6,20.017041165789278 + 11/07 07:10:00,15.6,15.6,18.0067986053351 + 11/07 07:20:00,15.6,15.6,17.77471567828786 + 11/07 07:30:00,15.6,15.6,17.68937770994328 + 11/07 07:40:00,15.6,15.6,17.622863178133668 + 11/07 07:50:00,15.6,15.6,17.57042793270554 + 11/07 08:00:00,15.6,15.6,17.526725695103666 + 11/07 08:10:00,15.6,15.6,16.033839354679868 + 11/07 08:20:00,15.6,15.6,15.810977134539247 + 11/07 08:30:00,15.6,15.6,15.703081199297048 + 11/07 08:40:00,15.6,15.6,15.612586088052062 + 11/07 08:50:00,15.6,15.6,15.535356291294685 + 11/07 09:00:00,15.6,15.6,15.467252179807339 + 11/07 09:10:00,15.6,15.6,15.37970126511907 + 11/07 09:20:00,15.6,15.6,15.314206058290728 + 11/07 09:30:00,15.524324324324324,15.524324324324324,15.260481142595813 + 11/07 09:40:00,15.406606606606607,15.406606606606607,15.2099335153311 + 11/07 09:50:00,15.28888888888889,15.28888888888889,15.162354506338517 + 11/07 10:00:00,15.17117117117117,15.17117117117117,15.117445614933157 + 11/07 10:10:00,15.078678678678678,15.078678678678678,15.076738659730755 + 11/07 10:20:00,14.986186186186187,14.986186186186187,15.028918793662662 + 11/07 10:30:00,14.893693693693694,14.893693693693694,14.993853763531819 + 11/07 10:40:00,14.801201201201203,14.801201201201203,14.960905319185823 + 11/07 10:50:00,14.70870870870871,14.70870870870871,14.929628539412333 + 11/07 11:00:00,14.616216216216217,14.616216216216217,14.899958792807932 + 11/07 11:10:00,14.523723723723723,14.523723723723723,14.869528439069742 + 11/07 11:20:00,14.431231231231232,14.431231231231232,14.836833887762083 + 11/07 11:30:00,14.338738738738739,14.338738738738739,14.808740509169129 + 11/07 11:40:00,14.246246246246246,14.246246246246246,14.781658711234649 + 11/07 11:50:00,14.153753753753755,14.153753753753755,14.75562318554739 + 11/07 12:00:00,14.061261261261262,14.061261261261262,14.730562180182606 + 11/07 12:10:00,13.989789789789791,13.989789789789791,14.70866923111213 + 11/07 12:20:00,13.918318318318317,13.918318318318317,14.697424911905545 + 11/07 12:30:00,13.846846846846847,13.846846846846847,14.677658303584492 + 11/07 12:40:00,13.775375375375376,13.775375375375376,14.659647698103348 + 11/07 12:50:00,13.703903903903905,13.703903903903905,14.643323824243641 + 11/07 13:00:00,13.632432432432433,13.632432432432433,14.62797324731632 + 11/07 13:10:00,13.611411411411412,13.611411411411412,14.610406998959516 + 11/07 13:20:00,13.590390390390392,13.590390390390392,14.586715359163917 + 11/07 13:30:00,13.56936936936937,13.56936936936937,14.57399781437138 + 11/07 13:40:00,13.548348348348349,13.548348348348349,14.559289352481024 + 11/07 13:50:00,13.527327327327328,13.527327327327328,14.548596269362033 + 11/07 14:00:00,13.506306306306307,13.506306306306307,14.536782579942346 + 11/07 14:10:00,13.481081081081081,13.481081081081081,14.526558372206262 + 11/07 14:20:00,13.455855855855857,13.455855855855857,14.522884164604351 + 11/07 14:30:00,13.430630630630632,13.430630630630632,14.513010439191723 + 11/07 14:40:00,13.405405405405407,13.405405405405407,14.506974258709013 + 11/07 14:50:00,13.380180180180182,13.380180180180182,14.501400825016427 + 11/07 15:00:00,13.354954954954956,13.354954954954956,14.494294165764249 + 11/07 15:10:00,13.380180180180182,13.380180180180182,14.490461875907562 + 11/07 15:20:00,13.405405405405407,13.405405405405407,14.48935254936541 + 11/07 15:30:00,13.430630630630632,13.430630630630632,14.484388647994808 + 11/07 15:40:00,13.455855855855857,13.455855855855857,14.48218321108659 + 11/07 15:50:00,13.481081081081081,13.481081081081081,14.480036327473832 + 11/07 16:00:00,13.506306306306307,13.506306306306307,14.477112418976143 + 11/07 16:05:00,13.573573573573574,13.573573573573574,16.64812468828675 + 11/07 16:10:00,13.573573573573574,13.573573573573574,16.64718779085904 + 11/07 16:20:00,13.640840840840842,13.640840840840842,16.90143889755425 + 11/07 16:30:00,13.708108108108109,13.708108108108109,17.00177781622399 + 11/07 16:40:00,13.775375375375376,13.775375375375376,17.081153502970439 + 11/07 16:50:00,13.842642642642645,13.842642642642645,17.14509924044674 + 11/07 17:00:00,13.90990990990991,13.90990990990991,17.198649709007954 + 11/07 17:10:00,14.052852852852853,14.052852852852853,17.269865094934084 + 11/07 17:20:00,14.195795795795796,14.195795795795796,17.329321477260586 + 11/07 17:30:00,14.338738738738739,14.338738738738739,17.365906422485574 + 11/07 17:40:00,14.481681681681682,14.481681681681682,17.39926800835983 + 11/07 17:50:00,14.624624624624625,14.624624624624625,17.429831947451967 + 11/07 18:00:00,14.767567567567568,14.767567567567568,17.457621711833427 + 11/07 18:10:00,14.834834834834835,14.834834834834835,17.495604969365524 + 11/07 18:20:00,14.902102102102102,14.902102102102102,17.523901679470116 + 11/07 18:30:00,14.96936936936937,14.96936936936937,17.54437168659875 + 11/07 18:40:00,15.036636636636637,15.036636636636637,17.563037525370729 + 11/07 18:50:00,15.103903903903904,15.103903903903904,17.580351151070894 + 11/07 19:00:00,15.17117117117117,15.17117117117117,17.596402917157325 + 11/07 19:10:00,15.242642642642644,15.242642642642644,17.612190966908483 + 11/07 19:20:00,15.314114114114114,15.314114114114114,17.62732379330374 + 11/07 19:30:00,15.385585585585586,15.385585585585586,17.641640399250059 + 11/07 19:40:00,15.457057057057057,15.457057057057057,17.65526766178683 + 11/07 19:50:00,15.528528528528529,15.528528528528529,17.668258560115566 + 11/07 20:00:00,15.6,15.6,17.6806625967878 + 11/07 20:10:00,15.6,15.6,17.705450075320785 + 11/07 20:20:00,15.6,15.6,17.717254756865488 + 11/07 20:30:00,15.6,15.6,17.728127958252118 + 11/07 20:40:00,15.6,15.6,17.738469734273509 + 11/07 20:50:00,15.6,15.6,17.748360752001106 + 11/07 21:00:00,15.6,15.6,17.757811869680304 + 11/07 21:10:00,15.6,15.6,17.744007227428314 + 11/07 21:20:00,15.6,15.6,17.75709620449436 + 11/07 21:30:00,15.6,15.6,17.76553066193829 + 11/07 21:40:00,15.6,15.6,17.773760552323649 + 11/07 21:50:00,15.6,15.6,17.781810451052836 + 11/07 22:00:00,15.6,15.6,17.789678046554955 + 11/07 22:10:00,15.6,15.6,17.797906056604906 + 11/07 22:20:00,15.6,15.6,17.805653686549389 + 11/07 22:30:00,15.6,15.6,17.813110333794449 + 11/07 22:40:00,15.6,15.6,17.820190166863694 + 11/07 22:50:00,15.6,15.6,17.826951991393434 + 11/07 23:00:00,15.6,15.6,17.83342867605402 + 11/07 23:10:00,15.6,15.6,19.21151309816302 + 11/07 23:20:00,15.6,15.6,19.355826813976525 + 11/07 23:30:00,15.6,15.6,19.42065050168112 + 11/07 23:40:00,15.6,15.6,19.472504428878517 + 11/07 23:50:00,15.6,15.6,19.514949865701696 + 11/07 24:00:00,15.6,15.6,19.55111707527901 + 11/08 00:10:00,15.6,15.6,19.583702102051804 + 11/08 00:20:00,15.6,15.6,19.61274052316083 + 11/08 00:30:00,15.6,15.6,19.638862288685425 + 11/08 00:40:00,15.6,15.6,19.66256731809022 + 11/08 00:50:00,15.6,15.6,19.684236327004926 + 11/08 01:00:00,15.6,15.6,19.704181238266626 + 11/08 01:10:00,15.6,15.6,19.721087929266614 + 11/08 01:20:00,15.6,15.6,19.73682904381792 + 11/08 01:30:00,15.6,15.6,19.75158503065621 + 11/08 01:40:00,15.6,15.6,19.76543745342234 + 11/08 01:50:00,15.6,15.6,19.778477800544267 + 11/08 02:00:00,15.6,15.6,19.79096993416667 + 11/08 02:10:00,15.6,15.6,19.80465903663933 + 11/08 02:20:00,15.6,15.6,19.817742344618158 + 11/08 02:30:00,15.6,15.6,19.830324429189095 + 11/08 02:40:00,15.6,15.6,19.84233946481454 + 11/08 02:50:00,15.6,15.6,19.854007143875277 + 11/08 03:00:00,15.6,15.6,19.86530873234261 + 11/08 03:10:00,15.6,15.6,19.875252629476429 + 11/08 03:20:00,15.6,15.6,19.884898536410135 + 11/08 03:30:00,15.6,15.6,19.89414727521419 + 11/08 03:40:00,15.6,15.6,19.903124949981796 + 11/08 03:50:00,15.6,15.6,19.911851242969214 + 11/08 04:00:00,15.6,15.6,19.920301279518229 + 11/08 04:10:00,15.6,15.6,19.92752597580873 + 11/08 04:20:00,15.6,15.6,19.934542645021243 + 11/08 04:30:00,15.6,15.6,19.941494585444759 + 11/08 04:40:00,15.6,15.6,19.948460170222007 + 11/08 04:50:00,15.6,15.6,19.955385384789567 + 11/08 05:00:00,15.6,15.6,19.96228788970707 + 11/08 05:10:00,15.6,15.6,19.9701379433423 + 11/08 05:20:00,15.6,15.6,19.977708203598785 + 11/08 05:30:00,15.6,15.6,19.984936059927756 + 11/08 05:40:00,15.6,15.6,19.99178325327924 + 11/08 05:50:00,15.6,15.6,19.99825115461588 + 11/08 06:00:00,15.6,15.6,20.004360398059668 + 11/08 06:10:00,15.6,15.6,20.011095793252446 + 11/08 06:20:00,15.6,15.6,20.017652934183937 + 11/08 06:30:00,15.6,15.6,20.02401703423115 + 11/08 06:40:00,15.6,15.6,20.03019712023973 + 11/08 06:50:00,15.6,15.6,20.036216557303839 + 11/08 07:00:00,15.6,15.6,20.042015474568456 + 11/08 07:10:00,15.6,15.6,18.030793429581203 + 11/08 07:20:00,15.6,15.6,17.796982745380946 + 11/08 07:30:00,15.6,15.6,17.709524001870699 + 11/08 07:40:00,15.6,15.6,17.641061812855303 + 11/08 07:50:00,15.6,15.6,17.586717464929053 + 11/08 08:00:00,15.6,15.6,17.541136674757934 + 11/08 08:10:00,15.6,15.6,16.050608955658079 + 11/08 08:20:00,15.6,15.6,15.828862620049405 + 11/08 08:30:00,15.6,15.6,15.721114996816182 + 11/08 08:40:00,15.6,15.6,15.629976408912763 + 11/08 08:50:00,15.6,15.6,15.551339635737426 + 11/08 09:00:00,15.6,15.6,15.481084594939592 + 11/08 09:10:00,15.6,15.6,15.391124113401049 + 11/08 09:20:00,15.557957957957957,15.557957957957957,15.324410262710906 + 11/08 09:30:00,15.46126126126126,15.46126126126126,15.269958652072754 + 11/08 09:40:00,15.364564564564564,15.364564564564564,15.21942175893929 + 11/08 09:50:00,15.267867867867868,15.267867867867868,15.172293987977419 + 11/08 10:00:00,15.17117117117117,15.17117117117117,15.128208825557893 + 11/08 10:10:00,15.032432432432433,15.032432432432433,15.086337996626268 + 11/08 10:20:00,14.893693693693694,14.893693693693694,15.036375893178248 + 11/08 10:30:00,14.754954954954956,14.754954954954956,14.998903562766497 + 11/08 10:40:00,14.616216216216217,14.616216216216217,14.963178767486632 + 11/08 10:50:00,14.477477477477479,14.477477477477479,14.929054893066648 + 11/08 11:00:00,14.338738738738739,14.338738738738739,14.896503784039686 + 11/08 11:10:00,14.221021021021022,14.221021021021022,14.86566514206387 + 11/08 11:20:00,14.103303303303303,14.103303303303303,14.832922265708195 + 11/08 11:30:00,13.985585585585586,13.985585585585586,14.80498048711716 + 11/08 11:40:00,13.867867867867869,13.867867867867869,14.77831771507158 + 11/08 11:50:00,13.750150150150152,13.750150150150152,14.752856990263972 + 11/08 12:00:00,13.632432432432433,13.632432432432433,14.72859867940676 + 11/08 12:10:00,13.565165165165166,13.565165165165166,14.705737529175304 + 11/08 12:20:00,13.497897897897899,13.497897897897899,14.693386939317403 + 11/08 12:30:00,13.430630630630632,13.430630630630632,14.672524861682897 + 11/08 12:40:00,13.363363363363364,13.363363363363364,14.653101200990126 + 11/08 12:50:00,13.296096096096097,13.296096096096097,14.635580956331227 + 11/08 13:00:00,13.22882882882883,13.22882882882883,14.619055184558944 + 11/08 13:10:00,13.17837837837838,13.17837837837838,14.600977547665324 + 11/08 13:20:00,13.127927927927928,13.127927927927928,14.57601835405518 + 11/08 13:30:00,13.077477477477478,13.077477477477478,14.562805330167177 + 11/08 13:40:00,13.027027027027028,13.027027027027028,14.546996487723744 + 11/08 13:50:00,12.976576576576579,12.976576576576579,14.535272240819469 + 11/08 14:00:00,12.926126126126127,12.926126126126127,14.522993358021589 + 11/08 14:10:00,12.87987987987988,12.87987987987988,14.51110479094845 + 11/08 14:20:00,12.833633633633636,12.833633633633636,14.505718271759559 + 11/08 14:30:00,12.8,12.8,14.494436696576419 + 11/08 14:40:00,12.8,12.8,14.486259477938912 + 11/08 14:50:00,12.8,12.8,14.479243098701977 + 11/08 15:00:00,12.8,12.8,14.470008376677625 + 11/08 15:10:00,12.8,12.8,14.464958202582489 + 11/08 15:20:00,12.8,12.8,14.463917854658277 + 11/08 15:30:00,12.8,12.8,14.45859652333244 + 11/08 15:40:00,12.8,12.8,14.45663124592226 + 11/08 15:50:00,12.8,12.8,14.455196241073704 + 11/08 16:00:00,12.8,12.8,14.452470365715464 + 11/08 16:05:00,12.8,12.8,16.622993914470578 + 11/08 16:10:00,12.8,12.8,16.621927158996927 + 11/08 16:20:00,12.8,12.8,16.875561842719859 + 11/08 16:30:00,12.8,12.8,16.975443559131827 + 11/08 16:40:00,12.8,12.8,17.05359891437914 + 11/08 16:50:00,12.8,12.8,17.11660024711872 + 11/08 17:00:00,12.8,12.8,17.16923332101431 + 11/08 17:10:00,12.871471471471472,12.871471471471472,17.240098442929559 + 11/08 17:20:00,12.942942942942944,12.942942942942944,17.297875696932726 + 11/08 17:30:00,13.014414414414415,13.014414414414415,17.333026820263386 + 11/08 17:40:00,13.085885885885887,13.085885885885887,17.364755096166414 + 11/08 17:50:00,13.157357357357359,13.157357357357359,17.393657884217779 + 11/08 18:00:00,13.22882882882883,13.22882882882883,17.419752119248565 + 11/08 18:10:00,13.342342342342342,13.342342342342342,17.45628561335429 + 11/08 18:20:00,13.455855855855857,13.455855855855857,17.484610412782606 + 11/08 18:30:00,13.56936936936937,13.56936936936937,17.505220619928648 + 11/08 18:40:00,13.682882882882883,13.682882882882883,17.524408824306997 + 11/08 18:50:00,13.796396396396398,13.796396396396398,17.5422457969366 + 11/08 19:00:00,13.90990990990991,13.90990990990991,17.558847466953183 + 11/08 19:10:00,13.935135135135136,13.935135135135136,17.57513630579098 + 11/08 19:20:00,13.960360360360362,13.960360360360362,17.589800281630688 + 11/08 19:30:00,13.985585585585586,13.985585585585586,17.603459339492895 + 11/08 19:40:00,14.010810810810812,14.010810810810812,17.616127625042464 + 11/08 19:50:00,14.036036036036038,14.036036036036038,17.627991218490089 + 11/08 20:00:00,14.061261261261262,14.061261261261262,17.63908422210902 + 11/08 20:10:00,14.107507507507508,14.107507507507508,17.661763413446879 + 11/08 20:20:00,14.153753753753755,14.153753753753755,17.67153137252939 + 11/08 20:30:00,14.2,14.2,17.680521707731736 + 11/08 20:40:00,14.246246246246246,14.246246246246246,17.689081022043675 + 11/08 20:50:00,14.292492492492493,14.292492492492493,17.69724934019598 + 11/08 21:00:00,14.338738738738739,14.338738738738739,17.705076878407057 + 11/08 21:10:00,14.384984984984986,14.384984984984986,17.69040030288578 + 11/08 21:20:00,14.431231231231232,14.431231231231232,17.70294594814339 + 11/08 21:30:00,14.477477477477479,14.477477477477479,17.710914687328314 + 11/08 21:40:00,14.523723723723723,14.523723723723723,17.718814718412788 + 11/08 21:50:00,14.56996996996997,14.56996996996997,17.726594899556589 + 11/08 22:00:00,14.616216216216217,14.616216216216217,17.734251624735369 + 11/08 22:10:00,14.687687687687689,14.687687687687689,17.740515175064048 + 11/08 22:20:00,14.759159159159159,14.759159159159159,17.746704976508164 + 11/08 22:30:00,14.83063063063063,14.83063063063063,17.752859886462937 + 11/08 22:40:00,14.902102102102102,14.902102102102102,17.758986178870573 + 11/08 22:50:00,14.973573573573575,14.973573573573575,17.76505525308033 + 11/08 23:00:00,15.045045045045045,15.045045045045045,17.771417154363634 + 11/08 23:10:00,15.091291291291292,15.091291291291292,19.151995608633599 + 11/08 23:20:00,15.137537537537538,15.137537537537538,19.298468094763483 + 11/08 23:30:00,15.183783783783785,15.183783783783785,19.364774772406706 + 11/08 23:40:00,15.23003003003003,15.23003003003003,19.417484680631487 + 11/08 23:50:00,15.276276276276276,15.276276276276276,19.46045254271023 + 11/08 24:00:00,15.322522522522523,15.322522522522523,19.496817659710748 + 11/09 00:10:00,15.368768768768769,15.368768768768769,19.52949200129288 + 11/09 00:20:00,15.415015015015016,15.415015015015016,19.55822897896317 + 11/09 00:30:00,15.46126126126126,15.46126126126126,19.583719644120018 + 11/09 00:40:00,15.507507507507507,15.507507507507507,19.606896736872494 + 11/09 00:50:00,15.553753753753754,15.553753753753754,19.628193940701388 + 11/09 01:00:00,15.6,15.6,19.64793866923841 + 11/09 01:10:00,15.6,15.6,19.665131430151818 + 11/09 01:20:00,15.6,15.6,19.68119697684362 + 11/09 01:30:00,15.6,15.6,19.696426950471449 + 11/09 01:40:00,15.6,15.6,19.710961758361269 + 11/09 01:50:00,15.6,15.6,19.72485827694991 + 11/09 02:00:00,15.6,15.6,19.738186792351614 + 11/09 02:10:00,15.6,15.6,19.74933365329043 + 11/09 02:20:00,15.6,15.6,19.759965989314027 + 11/09 02:30:00,15.6,15.6,19.770282886659037 + 11/09 02:40:00,15.6,15.6,19.780259910495674 + 11/09 02:50:00,15.6,15.6,19.7899714515717 + 11/09 03:00:00,15.6,15.6,19.799557110149118 + 11/09 03:10:00,15.6,15.6,19.81055573584193 + 11/09 03:20:00,15.6,15.6,19.821373532936044 + 11/09 03:30:00,15.6,15.6,19.83179918658474 + 11/09 03:40:00,15.6,15.6,19.841796586333904 + 11/09 03:50:00,15.6,15.6,19.851374809134048 + 11/09 04:00:00,15.6,15.6,19.86046079009296 + 11/09 04:10:00,15.6,15.6,19.869192391284778 + 11/09 04:20:00,15.6,15.6,19.8775446805736 + 11/09 04:30:00,15.6,15.6,19.885391532019164 + 11/09 04:40:00,15.6,15.6,19.892778546068045 + 11/09 04:50:00,15.6,15.6,19.899635728662113 + 11/09 05:00:00,15.6,15.6,19.906090965937055 + 11/09 05:10:00,15.6,15.6,19.91401653069374 + 11/09 05:20:00,15.6,15.6,19.921312806754015 + 11/09 05:30:00,15.6,15.6,19.92818580881863 + 11/09 05:40:00,15.6,15.6,19.934736727761796 + 11/09 05:50:00,15.6,15.6,19.941122119325358 + 11/09 06:00:00,15.6,15.6,19.94748563369543 + 11/09 06:10:00,15.6,15.6,19.951530792693018 + 11/09 06:20:00,15.6,15.6,19.955649916751669 + 11/09 06:30:00,15.6,15.6,19.959969387740139 + 11/09 06:40:00,15.6,15.6,19.96441618731202 + 11/09 06:50:00,15.6,15.6,19.96913551602826 + 11/09 07:00:00,15.6,15.6,19.974013709016999 + 11/09 07:10:00,15.6,15.6,17.96244938460475 + 11/09 07:20:00,15.6,15.6,17.728762144730035 + 11/09 07:30:00,15.6,15.6,17.642026756672644 + 11/09 07:40:00,15.6,15.6,17.573935323198016 + 11/09 07:50:00,15.6,15.6,17.519811119797795 + 11/09 08:00:00,15.6,15.6,17.474567130870598 + 11/09 08:10:00,15.6,15.6,15.985437934756727 + 11/09 08:20:00,15.6,15.6,15.766550505940183 + 11/09 08:30:00,15.6,15.6,15.663660826061515 + 11/09 08:40:00,15.6,15.6,15.579215954201113 + 11/09 08:50:00,15.6,15.6,15.508716626735448 + 11/09 09:00:00,15.6,15.6,15.44770941236096 + 11/09 09:10:00,15.6,15.6,15.36698454109584 + 11/09 09:20:00,15.6,15.6,15.309543233855396 + 11/09 09:30:00,15.6,15.6,15.26449486489489 + 11/09 09:40:00,15.591591591591591,15.591591591591591,15.223070811704519 + 11/09 09:50:00,15.52012012012012,15.52012012012012,15.184454840857934 + 11/09 10:00:00,15.448648648648648,15.448648648648648,15.14813040000909 + 11/09 10:10:00,15.335135135135135,15.335135135135135,15.111965308663743 + 11/09 10:20:00,15.22162162162162,15.22162162162162,15.066611209015129 + 11/09 10:30:00,15.108108108108109,15.108108108108109,15.032973420157243 + 11/09 10:40:00,14.994594594594595,14.994594594594595,15.000158407174107 + 11/09 10:50:00,14.881081081081082,14.881081081081082,14.967739571707507 + 11/09 11:00:00,14.767567567567568,14.767567567567568,14.935324689841332 + 11/09 11:10:00,14.670870870870872,14.670870870870872,14.904735255396677 + 11/09 11:20:00,14.574174174174175,14.574174174174175,14.871803168158074 + 11/09 11:30:00,14.477477477477479,14.477477477477479,14.843281071025903 + 11/09 11:40:00,14.380780780780782,14.380780780780782,14.816647224632515 + 11/09 11:50:00,14.284084084084084,14.284084084084084,14.793225276964403 + 11/09 12:00:00,14.187387387387388,14.187387387387388,14.773376463477325 + 11/09 12:10:00,14.12012012012012,14.12012012012012,14.75709953247026 + 11/09 12:20:00,14.052852852852853,14.052852852852853,14.752317933221189 + 11/09 12:30:00,13.985585585585586,13.985585585585586,14.740103293541928 + 11/09 12:40:00,13.91831831831832,13.91831831831832,14.72985650365581 + 11/09 12:50:00,13.851051051051052,13.851051051051052,14.720280984152393 + 11/09 13:00:00,13.783783783783785,13.783783783783785,14.710209961216299 + 11/09 13:10:00,13.691291291291293,13.691291291291293,14.696101842850295 + 11/09 13:20:00,13.5987987987988,13.5987987987988,14.675847127533262 + 11/09 13:30:00,13.506306306306307,13.506306306306307,14.664509294136132 + 11/09 13:40:00,13.413813813813816,13.413813813813816,14.651456690908632 + 11/09 13:50:00,13.32132132132132,13.32132132132132,14.641300028879055 + 11/09 14:00:00,13.22882882882883,13.22882882882883,14.628861701298734 + 11/09 14:10:00,13.203603603603604,13.203603603603604,14.619326223062926 + 11/09 14:20:00,13.17837837837838,13.17837837837838,14.612931961345002 + 11/09 14:30:00,13.153153153153154,13.153153153153154,14.601605432442364 + 11/09 14:40:00,13.12792792792793,13.12792792792793,14.593384710205492 + 11/09 14:50:00,13.102702702702704,13.102702702702704,14.58412531113962 + 11/09 15:00:00,13.077477477477478,13.077477477477478,14.574378576269999 + 11/09 15:10:00,13.077477477477478,13.077477477477478,14.566537617060354 + 11/09 15:20:00,13.077477477477478,13.077477477477478,14.561482598550852 + 11/09 15:30:00,13.077477477477478,13.077477477477478,14.554024709578317 + 11/09 15:40:00,13.077477477477478,13.077477477477478,14.548527644231893 + 11/09 15:50:00,13.077477477477478,13.077477477477478,14.541705721146846 + 11/09 16:00:00,13.077477477477478,13.077477477477478,14.536517831677335 + 11/09 16:05:00,13.052252252252253,13.052252252252253,16.68987656702892 + 11/09 16:10:00,13.052252252252253,13.052252252252253,16.68912496459706 + 11/09 16:20:00,13.027027027027028,13.027027027027028,16.93417034898549 + 11/09 16:30:00,13.001801801801803,13.001801801801803,17.029952308513466 + 11/09 16:40:00,12.976576576576577,12.976576576576577,17.103872025032734 + 11/09 16:50:00,12.951351351351353,12.951351351351353,17.16177216236284 + 11/09 17:00:00,12.926126126126127,12.926126126126127,17.209394206520324 + 11/09 17:10:00,12.997597597597599,12.997597597597599,17.273765347538036 + 11/09 17:20:00,13.06906906906907,13.06906906906907,17.329724645861476 + 11/09 17:30:00,13.140540540540542,13.140540540540542,17.361958046402543 + 11/09 17:40:00,13.212012012012015,13.212012012012015,17.39115727938915 + 11/09 17:50:00,13.283483483483485,13.283483483483485,17.41785478039666 + 11/09 18:00:00,13.354954954954956,13.354954954954956,17.442115173754674 + 11/09 18:10:00,13.426426426426428,13.426426426426428,17.47826472835798 + 11/09 18:20:00,13.497897897897899,13.497897897897899,17.507013475271604 + 11/09 18:30:00,13.56936936936937,13.56936936936937,17.528088597928546 + 11/09 18:40:00,13.640840840840842,13.640840840840842,17.547724143103346 + 11/09 18:50:00,13.712312312312314,13.712312312312314,17.56582803818018 + 11/09 19:00:00,13.783783783783785,13.783783783783785,17.582665912130396 + 11/09 19:10:00,13.804804804804805,13.804804804804805,17.59756415024234 + 11/09 19:20:00,13.825825825825828,13.825825825825828,17.61083130111647 + 11/09 19:30:00,13.846846846846848,13.846846846846848,17.623310857656525 + 11/09 19:40:00,13.867867867867869,13.867867867867869,17.63491392402066 + 11/09 19:50:00,13.88888888888889,13.88888888888889,17.645916832364568 + 11/09 20:00:00,13.90990990990991,13.90990990990991,17.656336354299755 + 11/09 20:10:00,13.981381381381383,13.981381381381383,17.678324233236095 + 11/09 20:20:00,14.052852852852853,14.052852852852853,17.68727631887797 + 11/09 20:30:00,14.124324324324326,14.124324324324326,17.695585087188296 + 11/09 20:40:00,14.195795795795796,14.195795795795796,17.70356535296673 + 11/09 20:50:00,14.267267267267269,14.267267267267269,17.71130410831426 + 11/09 21:00:00,14.338738738738739,14.338738738738739,17.718746125986529 + 11/09 21:10:00,14.384984984984986,14.384984984984986,17.70477098835575 + 11/09 21:20:00,14.431231231231232,14.431231231231232,17.717402990388267 + 11/09 21:30:00,14.477477477477479,14.477477477477479,17.725486557713468 + 11/09 21:40:00,14.523723723723723,14.523723723723723,17.733395048494339 + 11/09 21:50:00,14.56996996996997,14.56996996996997,17.741184335236853 + 11/09 22:00:00,14.616216216216217,14.616216216216217,17.748847286722446 + 11/09 22:10:00,14.616216216216217,14.616216216216217,17.75565143307476 + 11/09 22:20:00,14.616216216216217,14.616216216216217,17.761983351374029 + 11/09 22:30:00,14.616216216216217,14.616216216216217,17.767777018870726 + 11/09 22:40:00,14.616216216216217,14.616216216216217,17.773070981797159 + 11/09 22:50:00,14.616216216216217,14.616216216216217,17.777837345063579 + 11/09 23:00:00,14.616216216216217,14.616216216216217,17.78212584403456 + 11/09 23:10:00,14.616216216216217,14.616216216216217,19.151175514853553 + 11/09 23:20:00,14.616216216216217,14.616216216216217,19.293172681183426 + 11/09 23:30:00,14.616216216216217,14.616216216216217,19.355132292399284 + 11/09 23:40:00,14.616216216216217,14.616216216216217,19.403925022095078 + 11/09 23:50:00,14.616216216216217,14.616216216216217,19.44313911119093 + 11/09 24:00:00,14.616216216216217,14.616216216216217,19.47593849087603 + 11/10 00:10:00,14.616216216216217,14.616216216216217,19.503514259126115 + 11/10 00:20:00,14.616216216216217,14.616216216216217,19.527907586809126 + 11/10 00:30:00,14.616216216216217,14.616216216216217,19.54983993807475 + 11/10 00:40:00,14.616216216216217,14.616216216216217,19.56984132243658 + 11/10 00:50:00,14.616216216216217,14.616216216216217,19.5882891706287 + 11/10 01:00:00,14.616216216216217,14.616216216216217,19.60543479340515 + 11/10 01:10:00,14.641441441441442,14.641441441441442,19.6223220625825 + 11/10 01:20:00,14.666666666666666,14.666666666666666,19.638193414178809 + 11/10 01:30:00,14.691891891891892,14.691891891891892,19.653043725558683 + 11/10 01:40:00,14.717117117117118,14.717117117117118,19.66695491745298 + 11/10 01:50:00,14.742342342342342,14.742342342342342,19.679916799661077 + 11/10 02:00:00,14.767567567567568,14.767567567567568,19.69216714412993 + 11/10 02:10:00,14.767567567567568,14.767567567567568,19.70374448923034 + 11/10 02:20:00,14.767567567567568,14.767567567567568,19.714704174728099 + 11/10 02:30:00,14.767567567567568,14.767567567567568,19.725137295437749 + 11/10 02:40:00,14.767567567567568,14.767567567567568,19.73503098371767 + 11/10 02:50:00,14.767567567567568,14.767567567567568,19.744517387964004 + 11/10 03:00:00,14.767567567567568,14.767567567567568,19.75365266893431 + 11/10 03:10:00,14.767567567567568,14.767567567567568,19.76242663638783 + 11/10 03:20:00,14.767567567567568,14.767567567567568,19.77086461553747 + 11/10 03:30:00,14.767567567567568,14.767567567567568,19.778951049282904 + 11/10 03:40:00,14.767567567567568,14.767567567567568,19.78671853790388 + 11/10 03:50:00,14.767567567567568,14.767567567567568,19.794276078489909 + 11/10 04:00:00,14.767567567567568,14.767567567567568,19.8015741531267 + 11/10 04:10:00,14.834834834834835,14.834834834834835,19.808634346135589 + 11/10 04:20:00,14.902102102102102,14.902102102102102,19.815497052144939 + 11/10 04:30:00,14.96936936936937,14.96936936936937,19.822079884890547 + 11/10 04:40:00,15.036636636636637,15.036636636636637,19.82856136775034 + 11/10 04:50:00,15.103903903903904,15.103903903903904,19.83479412403927 + 11/10 05:00:00,15.17117117117117,15.17117117117117,19.840862197246556 + 11/10 05:10:00,15.17117117117117,15.17117117117117,19.846757775411989 + 11/10 05:20:00,15.17117117117117,15.17117117117117,19.85239448647164 + 11/10 05:30:00,15.17117117117117,15.17117117117117,19.857994055091088 + 11/10 05:40:00,15.17117117117117,15.17117117117117,19.863375216699369 + 11/10 05:50:00,15.17117117117117,15.17117117117117,19.868657545624897 + 11/10 06:00:00,15.17117117117117,15.17117117117117,19.873782444559966 + 11/10 06:10:00,15.196396396396397,15.196396396396397,19.879786070467309 + 11/10 06:20:00,15.22162162162162,15.22162162162162,19.885699984629999 + 11/10 06:30:00,15.246846846846847,15.246846846846847,19.89145431935561 + 11/10 06:40:00,15.272072072072073,15.272072072072073,19.89711680641978 + 11/10 06:50:00,15.297297297297297,15.297297297297297,19.902720822488559 + 11/10 07:00:00,15.322522522522523,15.322522522522523,19.908229066617925 + 11/10 07:10:00,15.297297297297297,15.297297297297297,17.904678992540246 + 11/10 07:20:00,15.272072072072073,15.272072072072073,17.671086496208408 + 11/10 07:30:00,15.246846846846847,15.246846846846847,17.584674872579734 + 11/10 07:40:00,15.22162162162162,15.22162162162162,17.517229202512433 + 11/10 07:50:00,15.196396396396397,15.196396396396397,17.46373632843895 + 11/10 08:00:00,15.17117117117117,15.17117117117117,17.419153067588316 + 11/10 08:05:00,15.124924924924925,15.124924924924925,15.937762568362356 + 11/10 08:10:00,15.124924924924925,15.124924924924925,15.93753742807733 + 11/10 08:15:00,15.078678678678678,15.078678678678678,15.720127027251305 + 11/10 08:20:00,15.078678678678678,15.078678678678678,15.720145859606218 + 11/10 08:30:00,15.032432432432433,15.032432432432433,15.617115016847281 + 11/10 08:40:00,14.986186186186187,14.986186186186187,15.533455330765385 + 11/10 08:50:00,14.93993993993994,14.93993993993994,15.46439826286352 + 11/10 09:00:00,14.893693693693694,14.893693693693694,15.405832993631187 + 11/10 09:05:00,14.872672672672673,14.872672672672673,15.328974249875652 + 11/10 09:10:00,14.872672672672673,14.872672672672673,15.328529252326096 + 11/10 09:20:00,14.85165165165165,14.85165165165165,15.2734081979535 + 11/10 09:30:00,14.83063063063063,14.83063063063063,15.231600637496137 + 11/10 09:40:00,14.809609609609609,14.809609609609609,15.193236634771412 + 11/10 09:50:00,14.788588588588589,14.788588588588589,15.157902438795285 + 11/10 10:00:00,14.767567567567568,14.767567567567568,15.124821419193589 + 11/10 10:10:00,14.696096096096096,14.696096096096096,15.09394189227317 + 11/10 10:20:00,14.624624624624625,14.624624624624625,15.053991914168238 + 11/10 10:30:00,14.553153153153153,14.553153153153153,15.025989720113753 + 11/10 10:40:00,14.481681681681682,14.481681681681682,14.99923371939548 + 11/10 10:50:00,14.41021021021021,14.41021021021021,14.973665662662775 + 11/10 11:00:00,14.338738738738739,14.338738738738739,14.94924000430748 + 11/10 11:10:00,14.292492492492493,14.292492492492493,14.925390531930273 + 11/10 11:20:00,14.246246246246246,14.246246246246246,14.899478960658636 + 11/10 11:30:00,14.2,14.2,14.878038869586466 + 11/10 11:40:00,14.153753753753755,14.153753753753755,14.857176384132245 + 11/10 11:50:00,14.107507507507508,14.107507507507508,14.836483173688196 + 11/10 12:00:00,14.061261261261262,14.061261261261262,14.815817847898496 + 11/10 12:10:00,14.036036036036036,14.036036036036036,14.795994576902073 + 11/10 12:20:00,14.01081081081081,14.01081081081081,14.785800102316529 + 11/10 12:30:00,13.985585585585586,13.985585585585586,14.76685540114541 + 11/10 12:40:00,13.960360360360362,13.960360360360362,14.749233530619426 + 11/10 12:50:00,13.935135135135136,13.935135135135136,14.732800226844134 + 11/10 13:00:00,13.90990990990991,13.90990990990991,14.715076507382174 + 11/10 13:10:00,13.863663663663666,13.863663663663666,14.699461698808664 + 11/10 13:20:00,13.817417417417417,13.817417417417417,14.676011805537908 + 11/10 13:30:00,13.771171171171173,13.771171171171173,14.65963123910982 + 11/10 13:40:00,13.724924924924926,13.724924924924926,14.645887888080882 + 11/10 13:50:00,13.67867867867868,13.67867867867868,14.631864842182227 + 11/10 14:00:00,13.632432432432433,13.632432432432433,14.61659706650965 + 11/10 14:10:00,13.586186186186187,13.586186186186187,14.604778205924387 + 11/10 14:20:00,13.539939939939942,13.539939939939942,14.593290880114182 + 11/10 14:30:00,13.493693693693695,13.493693693693695,14.580958313656549 + 11/10 14:40:00,13.447447447447449,13.447447447447449,14.56992368981408 + 11/10 14:50:00,13.401201201201202,13.401201201201202,14.55781107026814 + 11/10 15:00:00,13.354954954954956,13.354954954954956,14.550660820659266 + 11/10 15:10:00,13.380180180180182,13.380180180180182,14.543670781045022 + 11/10 15:20:00,13.405405405405407,13.405405405405407,14.539173931425815 + 11/10 15:30:00,13.430630630630632,13.430630630630632,14.534552088414996 + 11/10 15:40:00,13.455855855855857,13.455855855855857,14.529349300882725 + 11/10 15:50:00,13.481081081081081,13.481081081081081,14.523504524376368 + 11/10 16:00:00,13.506306306306307,13.506306306306307,14.519688936164876 + 11/10 16:05:00,13.552552552552554,13.552552552552554,16.67439994342945 + 11/10 16:10:00,13.552552552552554,13.552552552552554,16.673526512384965 + 11/10 16:20:00,13.5987987987988,13.5987987987988,16.921057173030566 + 11/10 16:30:00,13.645045045045047,13.645045045045047,17.019852172075184 + 11/10 16:40:00,13.691291291291293,13.691291291291293,17.095572881065587 + 11/10 16:50:00,13.737537537537538,13.737537537537538,17.154778912657045 + 11/10 17:00:00,13.783783783783785,13.783783783783785,17.201140442191745 + 11/10 17:10:00,13.851051051051052,13.851051051051052,17.26928414752546 + 11/10 17:20:00,13.91831831831832,13.91831831831832,17.326745937197594 + 11/10 17:30:00,13.985585585585586,13.985585585585586,17.360222584250626 + 11/10 17:40:00,14.052852852852853,14.052852852852853,17.39056706169605 + 11/10 17:50:00,14.12012012012012,14.12012012012012,17.418116121031628 + 11/10 18:00:00,14.187387387387388,14.187387387387388,17.443087084476493 + 11/10 18:10:00,14.237837837837838,14.237837837837838,17.47933451395199 + 11/10 18:20:00,14.288288288288289,14.288288288288289,17.505759740088707 + 11/10 18:30:00,14.338738738738739,14.338738738738739,17.52496609031907 + 11/10 18:40:00,14.389189189189189,14.389189189189189,17.542650073324688 + 11/10 18:50:00,14.43963963963964,14.43963963963964,17.559136336132576 + 11/10 19:00:00,14.49009009009009,14.49009009009009,17.574556965211529 + 11/10 19:10:00,14.511111111111111,14.511111111111111,17.588942855304688 + 11/10 19:20:00,14.532132132132132,14.532132132132132,17.603132062557184 + 11/10 19:30:00,14.553153153153153,14.553153153153153,17.616501859253455 + 11/10 19:40:00,14.574174174174175,14.574174174174175,17.629397206114697 + 11/10 19:50:00,14.595195195195196,14.595195195195196,17.64150754043383 + 11/10 20:00:00,14.616216216216217,14.616216216216217,17.65307314274498 + 11/10 20:10:00,14.662462462462463,14.662462462462463,17.67762265940436 + 11/10 20:20:00,14.70870870870871,14.70870870870871,17.68991016264092 + 11/10 20:30:00,14.754954954954954,14.754954954954954,17.701476969563438 + 11/10 20:40:00,14.8012012012012,14.8012012012012,17.71282370488106 + 11/10 20:50:00,14.847447447447447,14.847447447447447,17.723764792875789 + 11/10 21:00:00,14.893693693693694,14.893693693693694,17.73437123752096 + 11/10 21:10:00,14.893693693693694,14.893693693693694,17.721622263516499 + 11/10 21:20:00,14.893693693693694,14.893693693693694,17.734840110662025 + 11/10 21:30:00,14.893693693693694,14.893693693693694,17.7431326181245 + 11/10 21:40:00,14.893693693693694,14.893693693693694,17.75084943936495 + 11/10 21:50:00,14.893693693693694,14.893693693693694,17.758161606083488 + 11/10 22:00:00,14.893693693693694,14.893693693693694,17.765135960994063 + 11/10 22:10:00,14.93993993993994,14.93993993993994,17.771123035918504 + 11/10 22:20:00,14.986186186186187,14.986186186186187,17.776504017413069 + 11/10 22:30:00,15.032432432432433,15.032432432432433,17.78182197818407 + 11/10 22:40:00,15.078678678678678,15.078678678678678,17.786949566313788 + 11/10 22:50:00,15.124924924924925,15.124924924924925,17.791953857551396 + 11/10 23:00:00,15.17117117117117,15.17117117117117,17.796966635661584 + 11/10 23:10:00,15.17117117117117,15.17117117117117,19.167499141248834 + 11/10 23:20:00,15.17117117117117,15.17117117117117,19.311110099748619 + 11/10 23:30:00,15.17117117117117,15.17117117117117,19.374911330863545 + 11/10 23:40:00,15.17117117117117,15.17117117117117,19.425287477436265 + 11/10 23:50:00,15.17117117117117,15.17117117117117,19.466011370321018 + 11/10 24:00:00,15.17117117117117,15.17117117117117,19.50041901023272 + 11/11 00:10:00,15.196396396396397,15.196396396396397,19.530797953654518 + 11/11 00:20:00,15.22162162162162,15.22162162162162,19.5577932948125 + 11/11 00:30:00,15.246846846846847,15.246846846846847,19.582081860672113 + 11/11 00:40:00,15.272072072072073,15.272072072072073,19.60433384546388 + 11/11 00:50:00,15.297297297297297,15.297297297297297,19.62488346150474 + 11/11 01:00:00,15.322522522522523,15.322522522522523,19.643988005780899 + 11/11 01:10:00,15.368768768768769,15.368768768768769,19.661401943576498 + 11/11 01:20:00,15.415015015015016,15.415015015015016,19.677934370811493 + 11/11 01:30:00,15.46126126126126,15.46126126126126,19.69361300007356 + 11/11 01:40:00,15.507507507507507,15.507507507507507,19.70869781799193 + 11/11 01:50:00,15.553753753753754,15.553753753753754,19.72316963154427 + 11/11 02:00:00,15.6,15.6,19.737077628361729 + 11/11 02:10:00,15.6,15.6,19.749968418039275 + 11/11 02:20:00,15.6,15.6,19.762093434588324 + 11/11 02:30:00,15.6,15.6,19.77367864542486 + 11/11 02:40:00,15.6,15.6,19.784658800206054 + 11/11 02:50:00,15.6,15.6,19.795118508339095 + 11/11 03:00:00,15.6,15.6,19.80510024307414 + 11/11 03:10:00,15.6,15.6,19.81406993841705 + 11/11 03:20:00,15.6,15.6,19.822945940247707 + 11/11 03:30:00,15.6,15.6,19.831714314661079 + 11/11 03:40:00,15.6,15.6,19.840405177096807 + 11/11 03:50:00,15.6,15.6,19.84901775513994 + 11/11 04:00:00,15.6,15.6,19.857488937857128 + 11/11 04:10:00,15.6,15.6,19.867228792993435 + 11/11 04:20:00,15.6,15.6,19.876918064142005 + 11/11 04:30:00,15.6,15.6,19.88631049675704 + 11/11 04:40:00,15.6,15.6,19.895458567742549 + 11/11 04:50:00,15.6,15.6,19.90425202687969 + 11/11 05:00:00,15.6,15.6,19.912770512542033 + 11/11 05:10:00,15.6,15.6,19.91976710229674 + 11/11 05:20:00,15.6,15.6,19.9263028130901 + 11/11 05:30:00,15.6,15.6,19.932750702545886 + 11/11 05:40:00,15.6,15.6,19.938970880345744 + 11/11 05:50:00,15.6,15.6,19.945072288832109 + 11/11 06:00:00,15.6,15.6,19.9511553669849 + 11/11 06:10:00,15.6,15.6,19.958244826063578 + 11/11 06:20:00,15.6,15.6,19.965234014291548 + 11/11 06:30:00,15.6,15.6,19.971894921604389 + 11/11 06:40:00,15.6,15.6,19.97821959300009 + 11/11 06:50:00,15.6,15.6,19.984334401191057 + 11/11 07:00:00,15.6,15.6,19.99015072171115 + 11/11 07:10:00,15.6,15.6,20.017962406442174 + 11/11 07:20:00,15.6,15.6,20.021850805418884 + 11/11 07:30:00,15.6,15.6,20.024690369433946 + 11/11 07:40:00,15.6,15.6,20.027261504190628 + 11/11 07:50:00,15.6,15.6,20.029361673222494 + 11/11 08:00:00,15.6,15.6,20.030449173803278 + 11/11 08:10:00,15.6,15.6,18.626823964525426 + 11/11 08:20:00,15.6,15.6,18.459726468465534 + 11/11 08:30:00,15.6,15.6,18.391533725328896 + 11/11 08:40:00,15.6,15.6,18.335568846291545 + 11/11 08:50:00,15.6,15.6,18.288742087861189 + 11/11 09:00:00,15.6,15.6,18.24797980918104 + 11/11 09:10:00,15.6,15.6,18.21132131189249 + 11/11 09:20:00,15.507507507507507,15.507507507507507,18.16885809677735 + 11/11 09:30:00,15.322522522522523,15.322522522522523,18.137348237019695 + 11/11 09:40:00,15.137537537537538,15.137537537537538,18.107773717607864 + 11/11 09:50:00,14.952552552552552,14.952552552552552,18.079730609600199 + 11/11 10:00:00,14.767567567567568,14.767567567567568,18.05297832561034 + 11/11 10:10:00,14.624624624624625,14.624624624624625,18.027355892595808 + 11/11 10:20:00,14.481681681681682,14.481681681681682,17.99423197178424 + 11/11 10:30:00,14.338738738738739,14.338738738738739,17.970975342410346 + 11/11 10:40:00,14.195795795795796,14.195795795795796,17.94864159071624 + 11/11 10:50:00,14.052852852852853,14.052852852852853,17.927286526629414 + 11/11 11:00:00,13.90990990990991,13.90990990990991,17.906750454687694 + 11/11 11:10:00,13.796396396396398,13.796396396396398,17.887111019127805 + 11/11 11:20:00,13.682882882882883,13.682882882882883,17.868841779624665 + 11/11 11:30:00,13.56936936936937,13.56936936936937,17.85136209202962 + 11/11 11:40:00,13.455855855855857,13.455855855855857,17.834677571398559 + 11/11 11:50:00,13.342342342342344,13.342342342342344,17.81864237287855 + 11/11 12:00:00,13.22882882882883,13.22882882882883,17.80336285598517 + 11/11 12:10:00,13.157357357357359,13.157357357357359,17.78899794147374 + 11/11 12:20:00,13.085885885885887,13.085885885885887,17.77486999151433 + 11/11 12:30:00,13.014414414414415,13.014414414414415,17.761539581008383 + 11/11 12:40:00,12.942942942942946,12.942942942942946,17.74885273455056 + 11/11 12:50:00,12.871471471471472,12.871471471471472,17.73681607980977 + 11/11 13:00:00,12.8,12.8,17.72540005343756 + 11/11 13:10:00,12.8,12.8,17.71499077002815 + 11/11 13:20:00,12.8,12.8,17.707123448783617 + 11/11 13:30:00,12.8,12.8,17.699787848189897 + 11/11 13:40:00,12.8,12.8,17.693558310873234 + 11/11 13:50:00,12.8,12.8,17.687988632056816 + 11/11 14:00:00,12.8,12.8,17.68305353133738 + 11/11 14:10:00,12.8,12.8,17.67868680129289 + 11/11 14:20:00,12.8,12.8,17.675251111850679 + 11/11 14:30:00,12.8,12.8,17.67229654659662 + 11/11 14:40:00,12.8,12.8,17.669824860373436 + 11/11 14:50:00,12.8,12.8,17.668049010590118 + 11/11 15:00:00,12.8,12.8,17.666882883358526 + 11/11 15:10:00,12.8,12.8,17.66610152138341 + 11/11 15:20:00,12.8,12.8,17.664610112487414 + 11/11 15:30:00,12.8,12.8,17.663658168416448 + 11/11 15:40:00,12.8,12.8,17.66297867460155 + 11/11 15:50:00,12.8,12.8,17.662854300312945 + 11/11 16:00:00,12.8,12.8,17.663389603715616 + 11/11 16:10:00,12.8,12.8,19.098383503555135 + 11/11 16:20:00,12.842042042042042,12.842042042042042,19.253983405187794 + 11/11 16:30:00,12.93873873873874,12.93873873873874,19.322520380861819 + 11/11 16:40:00,13.035435435435437,13.035435435435437,19.37737825550363 + 11/11 16:50:00,13.132132132132134,13.132132132132134,19.422545127440399 + 11/11 17:00:00,13.22882882882883,13.22882882882883,19.461446896776505 + 11/11 17:10:00,13.342342342342342,13.342342342342342,19.49555181872406 + 11/11 17:20:00,13.455855855855857,13.455855855855857,19.53567954129428 + 11/11 17:30:00,13.56936936936937,13.56936936936937,19.56415861063156 + 11/11 17:40:00,13.682882882882883,13.682882882882883,19.59047095977224 + 11/11 17:50:00,13.796396396396398,13.796396396396398,19.61473811578213 + 11/11 18:00:00,13.90990990990991,13.90990990990991,19.636906400719128 + 11/11 18:10:00,14.006606606606607,14.006606606606607,19.65735111419599 + 11/11 18:20:00,14.103303303303303,14.103303303303303,19.69349342161248 + 11/11 18:30:00,14.2,14.2,19.710537468617124 + 11/11 18:40:00,14.296696696696696,14.296696696696696,19.72623526132095 + 11/11 18:50:00,14.393393393393394,14.393393393393394,19.740970457942959 + 11/11 19:00:00,14.49009009009009,14.49009009009009,19.7547786625462 + 11/11 19:10:00,14.536336336336337,14.536336336336337,19.76779576660802 + 11/11 19:20:00,14.582582582582582,14.582582582582582,19.780513337294864 + 11/11 19:30:00,14.628828828828829,14.628828828828829,19.792592485466409 + 11/11 19:40:00,14.675075075075075,14.675075075075075,19.804216405937763 + 11/11 19:50:00,14.721321321321322,14.721321321321322,19.81522864355341 + 11/11 20:00:00,14.767567567567568,14.767567567567568,19.825807542063978 + 11/11 20:10:00,14.813813813813815,14.813813813813815,19.834777934726256 + 11/11 20:20:00,14.860060060060059,14.860060060060059,19.843309640761086 + 11/11 20:30:00,14.906306306306306,14.906306306306306,19.851511937079814 + 11/11 20:40:00,14.952552552552552,14.952552552552552,19.859389655838993 + 11/11 20:50:00,14.998798798798799,14.998798798798799,19.867015549046493 + 11/11 21:00:00,15.045045045045045,15.045045045045045,19.874445041275594 + 11/11 21:10:00,15.091291291291292,15.091291291291292,19.85970413014559 + 11/11 21:20:00,15.137537537537538,15.137537537537538,19.86722174392128 + 11/11 21:30:00,15.183783783783785,15.183783783783785,19.874511712996904 + 11/11 21:40:00,15.23003003003003,15.23003003003003,19.881530558718344 + 11/11 21:50:00,15.276276276276276,15.276276276276276,19.888448212546206 + 11/11 22:00:00,15.322522522522523,15.322522522522523,19.895202602704125 + 11/11 22:10:00,15.415015015015016,15.415015015015016,19.902349144335085 + 11/11 22:20:00,15.507507507507507,15.507507507507507,19.909518831909979 + 11/11 22:30:00,15.6,15.6,19.916583130060915 + 11/11 22:40:00,15.6,15.6,19.923760625796527 + 11/11 22:50:00,15.6,15.6,19.930923962134235 + 11/11 23:00:00,15.6,15.6,19.93806437679208 + 11/11 23:10:00,15.6,15.6,19.943885021680925 + 11/11 23:20:00,15.6,15.6,19.949439904842259 + 11/11 23:30:00,15.6,15.6,19.954904799114556 + 11/11 23:40:00,15.6,15.6,19.96022319901532 + 11/11 23:50:00,15.6,15.6,19.965401826614405 + 11/11 24:00:00,15.6,15.6,19.970451941140245 + 11/12 00:10:00,15.6,15.6,19.976816139046858 + 11/12 00:20:00,15.6,15.6,19.98304132309357 + 11/12 00:30:00,15.6,15.6,19.989172042623396 + 11/12 00:40:00,15.6,15.6,19.99516253951998 + 11/12 00:50:00,15.6,15.6,20.001031175428694 + 11/12 01:00:00,15.6,15.6,20.006755218390095 + 11/12 01:10:00,15.6,15.6,20.01174352433746 + 11/12 01:20:00,15.6,15.6,20.016694663830135 + 11/12 01:30:00,15.6,15.6,20.021463408673445 + 11/12 01:40:00,15.6,15.6,20.026077848428139 + 11/12 01:50:00,15.6,15.6,20.030521725508476 + 11/12 02:00:00,15.6,15.6,20.03473648978126 + 11/12 02:10:00,15.6,15.6,20.038622829816977 + 11/12 02:20:00,15.6,15.6,20.042443182338276 + 11/12 02:30:00,15.6,15.6,20.046225108505494 + 11/12 02:40:00,15.6,15.6,20.049977922142593 + 11/12 02:50:00,15.6,15.6,20.053612401329525 + 11/12 03:00:00,15.6,15.6,20.057294451216725 + 11/12 03:10:00,15.6,15.6,20.061096289767286 + 11/12 03:20:00,15.6,15.6,20.06472814153848 + 11/12 03:30:00,15.6,15.6,20.068127072411789 + 11/12 03:40:00,15.6,15.6,20.071228353517374 + 11/12 03:50:00,15.6,15.6,20.07413752810384 + 11/12 04:00:00,15.6,15.6,20.076879477577888 + 11/12 04:10:00,15.6,15.6,20.079513701333079 + 11/12 04:20:00,15.6,15.6,20.081883898020015 + 11/12 04:30:00,15.6,15.6,20.08406871663276 + 11/12 04:40:00,15.6,15.6,20.08606907367318 + 11/12 04:50:00,15.6,15.6,20.0880056880039 + 11/12 05:00:00,15.6,15.6,20.08982969785125 + 11/12 05:10:00,15.6,15.6,20.091742310422537 + 11/12 05:20:00,15.6,15.6,20.093706799775626 + 11/12 05:30:00,15.6,15.6,20.095678503431619 + 11/12 05:40:00,15.6,15.6,20.097829475084056 + 11/12 05:50:00,15.6,15.6,20.100054594350234 + 11/12 06:00:00,15.6,15.6,20.102340686983966 + 11/12 06:10:00,15.6,15.6,20.104201756567659 + 11/12 06:20:00,15.6,15.6,20.106001397554999 + 11/12 06:30:00,15.6,15.6,20.10788965461011 + 11/12 06:40:00,15.6,15.6,20.109777734640159 + 11/12 06:50:00,15.6,15.6,20.111649360353 + 11/12 07:00:00,15.6,15.6,20.113502280223206 + 11/12 07:10:00,15.6,15.6,20.1376256439504 + 11/12 07:20:00,15.6,15.6,20.138671917384099 + 11/12 07:30:00,15.6,15.6,20.138657427896839 + 11/12 07:40:00,15.6,15.6,20.137877030855657 + 11/12 07:50:00,15.6,15.6,20.13636117052044 + 11/12 08:00:00,15.6,15.6,20.133812009048108 + 11/12 08:10:00,15.6,15.6,18.7288148890793 + 11/12 08:20:00,15.6,15.6,18.56190779184366 + 11/12 08:30:00,15.6,15.6,18.493781090285294 + 11/12 08:40:00,15.6,15.6,18.438048795237095 + 11/12 08:50:00,15.6,15.6,18.39164122978859 + 11/12 09:00:00,15.6,15.6,18.351392772344729 + 11/12 09:10:00,15.528528528528529,15.528528528528529,18.312893010201799 + 11/12 09:20:00,15.457057057057057,15.457057057057057,18.268775827221153 + 11/12 09:30:00,15.385585585585586,15.385585585585586,18.23618819177704 + 11/12 09:40:00,15.314114114114114,15.314114114114114,18.205800053114925 + 11/12 09:50:00,15.242642642642644,15.242642642642644,18.177277297892276 + 11/12 10:00:00,15.17117117117117,15.17117117117117,18.15053612885977 + 11/12 10:10:00,15.078678678678678,15.078678678678678,18.12370925260359 + 11/12 10:20:00,14.986186186186187,14.986186186186187,18.089393387949298 + 11/12 10:30:00,14.893693693693694,14.893693693693694,18.064916360712723 + 11/12 10:40:00,14.801201201201203,14.801201201201203,18.041558581132699 + 11/12 10:50:00,14.70870870870871,14.70870870870871,18.019153206971038 + 11/12 11:00:00,14.616216216216217,14.616216216216217,17.99759349646988 + 11/12 11:10:00,14.498498498498499,14.498498498498499,17.977092714869575 + 11/12 11:20:00,14.38078078078078,14.38078078078078,17.957441160467654 + 11/12 11:30:00,14.263063063063063,14.263063063063063,17.938421055632668 + 11/12 11:40:00,14.145345345345346,14.145345345345346,17.9200668760377 + 11/12 11:50:00,14.027627627627627,14.027627627627627,17.902502816935276 + 11/12 12:00:00,13.90990990990991,13.90990990990991,17.885655649049697 + 11/12 12:10:00,13.863663663663666,13.863663663663666,17.870440338691219 + 11/12 12:20:00,13.817417417417417,13.817417417417417,17.85604831414822 + 11/12 12:30:00,13.771171171171173,13.771171171171173,17.842680842245476 + 11/12 12:40:00,13.724924924924926,13.724924924924926,17.830197221171738 + 11/12 12:50:00,13.67867867867868,13.67867867867868,17.818690651607093 + 11/12 13:00:00,13.632432432432433,13.632432432432433,17.808134844842877 + 11/12 13:10:00,13.586186186186187,13.586186186186187,17.79777366172842 + 11/12 13:20:00,13.539939939939942,13.539939939939942,17.788461027304323 + 11/12 13:30:00,13.493693693693695,13.493693693693695,17.779707533652578 + 11/12 13:40:00,13.447447447447449,13.447447447447449,17.771557649643364 + 11/12 13:50:00,13.401201201201202,13.401201201201202,17.763917195760116 + 11/12 14:00:00,13.354954954954956,13.354954954954956,17.75693769748068 + 11/12 14:10:00,13.30870870870871,13.30870870870871,17.750986682495577 + 11/12 14:20:00,13.262462462462464,13.262462462462464,17.745140483181424 + 11/12 14:30:00,13.216216216216218,13.216216216216218,17.739937779130807 + 11/12 14:40:00,13.169969969969971,13.169969969969971,17.735420371589588 + 11/12 14:50:00,13.123723723723725,13.123723723723725,17.731672150153515 + 11/12 15:00:00,13.077477477477478,13.077477477477478,17.72856087445974 + 11/12 15:10:00,13.102702702702704,13.102702702702704,17.726590821989118 + 11/12 15:20:00,13.127927927927928,13.127927927927928,17.72568909604083 + 11/12 15:30:00,13.153153153153154,13.153153153153154,17.725539357652335 + 11/12 15:40:00,13.17837837837838,13.17837837837838,17.726209429688756 + 11/12 15:50:00,13.203603603603604,13.203603603603604,17.72780927446488 + 11/12 16:00:00,13.22882882882883,13.22882882882883,17.73020853436477 + 11/12 16:10:00,13.296096096096097,13.296096096096097,19.164953641768315 + 11/12 16:20:00,13.363363363363364,13.363363363363364,19.320081641662929 + 11/12 16:30:00,13.430630630630632,13.430630630630632,19.38813297391516 + 11/12 16:40:00,13.497897897897899,13.497897897897899,19.442021945430449 + 11/12 16:50:00,13.565165165165166,13.565165165165166,19.48585330999855 + 11/12 17:00:00,13.632432432432433,13.632432432432433,19.523083131048453 + 11/12 17:10:00,13.75015015015015,13.75015015015015,19.556512674971278 + 11/12 17:20:00,13.867867867867869,13.867867867867869,19.595314676309877 + 11/12 17:30:00,13.985585585585586,13.985585585585586,19.622646382624447 + 11/12 17:40:00,14.103303303303303,14.103303303303303,19.647775386375537 + 11/12 17:50:00,14.221021021021022,14.221021021021022,19.67089227460393 + 11/12 18:00:00,14.338738738738739,14.338738738738739,19.692155816245554 + 11/12 18:10:00,14.384984984984986,14.384984984984986,19.710883936765929 + 11/12 18:20:00,14.431231231231232,14.431231231231232,19.745609179937106 + 11/12 18:30:00,14.477477477477479,14.477477477477479,19.761163376274856 + 11/12 18:40:00,14.523723723723723,14.523723723723723,19.775316329061359 + 11/12 18:50:00,14.56996996996997,14.56996996996997,19.788431506467306 + 11/12 19:00:00,14.616216216216217,14.616216216216217,19.80068566240825 + 11/12 19:10:00,14.662462462462463,14.662462462462463,19.812192880513128 + 11/12 19:20:00,14.70870870870871,14.70870870870871,19.823157919122467 + 11/12 19:30:00,14.754954954954954,14.754954954954954,19.83357657923607 + 11/12 19:40:00,14.8012012012012,14.8012012012012,19.843588236914138 + 11/12 19:50:00,14.847447447447447,14.847447447447447,19.85328052303843 + 11/12 20:00:00,14.893693693693694,14.893693693693694,19.862641516838417 + 11/12 20:10:00,14.965165165165164,14.965165165165164,19.87229898059341 + 11/12 20:20:00,15.036636636636637,15.036636636636637,19.881542377489564 + 11/12 20:30:00,15.108108108108109,15.108108108108109,19.89046017176593 + 11/12 20:40:00,15.17957957957958,15.17957957957958,19.899174057727266 + 11/12 20:50:00,15.251051051051052,15.251051051051052,19.90766161950693 + 11/12 21:00:00,15.322522522522523,15.322522522522523,19.915949892407555 + 11/12 21:10:00,15.343543543543543,15.343543543543543,19.900043199882597 + 11/12 21:20:00,15.364564564564564,15.364564564564564,19.906148080034588 + 11/12 21:30:00,15.385585585585586,15.385585585585586,19.9120777762134 + 11/12 21:40:00,15.406606606606607,15.406606606606607,19.91769166912658 + 11/12 21:50:00,15.427627627627628,15.427627627627628,19.92307480069268 + 11/12 22:00:00,15.448648648648648,15.448648648648648,19.928258031191253 + 11/12 22:10:00,15.52012012012012,15.52012012012012,19.934312067294564 + 11/12 22:20:00,15.591591591591591,15.591591591591591,19.940584254306829 + 11/12 22:30:00,15.6,15.6,19.946878997058357 + 11/12 22:40:00,15.6,15.6,19.953242079551257 + 11/12 22:50:00,15.6,15.6,19.959612898667147 + 11/12 23:00:00,15.6,15.6,19.965920343381638 + 11/12 23:10:00,15.6,15.6,19.970616436898035 + 11/12 23:20:00,15.6,15.6,19.97518222679442 + 11/12 23:30:00,15.6,15.6,19.979615455697187 + 11/12 23:40:00,15.6,15.6,19.98389506097591 + 11/12 23:50:00,15.6,15.6,19.98801546627839 + 11/12 24:00:00,15.6,15.6,19.991993095960276 + 11/13 00:10:00,15.6,15.6,19.997352719321506 + 11/13 00:20:00,15.6,15.6,20.002497147956384 + 11/13 00:30:00,15.6,15.6,20.007477588579353 + 11/13 00:40:00,15.6,15.6,20.01229162465076 + 11/13 00:50:00,15.6,15.6,20.016876651333847 + 11/13 01:00:00,15.6,15.6,20.021465760837516 + 11/13 01:10:00,15.6,15.6,20.02527583347135 + 11/13 01:20:00,15.6,15.6,20.029120998608467 + 11/13 01:30:00,15.6,15.6,20.032977917486499 + 11/13 01:40:00,15.6,15.6,20.036784041259027 + 11/13 01:50:00,15.6,15.6,20.04068816222645 + 11/13 02:00:00,15.6,15.6,20.044611577876766 + 11/13 02:10:00,15.6,15.6,20.049972370984848 + 11/13 02:20:00,15.6,15.6,20.055151738556579 + 11/13 02:30:00,15.6,15.6,20.060053131478985 + 11/13 02:40:00,15.6,15.6,20.064768134195558 + 11/13 02:50:00,15.6,15.6,20.0693217388148 + 11/13 03:00:00,15.6,15.6,20.073700446306864 + 11/13 03:10:00,15.6,15.6,20.077766294314995 + 11/13 03:20:00,15.6,15.6,20.081832487145225 + 11/13 03:30:00,15.6,15.6,20.085932102456533 + 11/13 03:40:00,15.6,15.6,20.090167923971266 + 11/13 03:50:00,15.6,15.6,20.09446386983931 + 11/13 04:00:00,15.6,15.6,20.098812943331234 + 11/13 04:10:00,15.6,15.6,20.101932129126437 + 11/13 04:20:00,15.6,15.6,20.105057497219695 + 11/13 04:30:00,15.6,15.6,20.108333053890396 + 11/13 04:40:00,15.6,15.6,20.111671242292315 + 11/13 04:50:00,15.6,15.6,20.115058974521199 + 11/13 05:00:00,15.6,15.6,20.118483580285639 + 11/13 05:10:00,15.6,15.6,20.122094105389903 + 11/13 05:20:00,15.6,15.6,20.125661040893414 + 11/13 05:30:00,15.6,15.6,20.129041205321508 + 11/13 05:40:00,15.6,15.6,20.132224701812594 + 11/13 05:50:00,15.6,15.6,20.13522529499358 + 11/13 06:00:00,15.6,15.6,20.137984143847797 + 11/13 06:10:00,15.6,15.6,20.141735474194467 + 11/13 06:20:00,15.6,15.6,20.14543914706286 + 11/13 06:30:00,15.6,15.6,20.1491329046413 + 11/13 06:40:00,15.6,15.6,20.152820499787159 + 11/13 06:50:00,15.6,15.6,20.156463066162528 + 11/13 07:00:00,15.6,15.6,20.160115602588946 + 11/13 07:10:00,15.6,15.6,18.149493220871933 + 11/13 07:20:00,15.6,15.6,17.91393296126468 + 11/13 07:30:00,15.6,15.6,17.823867448539624 + 11/13 07:40:00,15.6,15.6,17.752070068630297 + 11/13 07:50:00,15.6,15.6,17.693924809455177 + 11/13 08:00:00,15.6,15.6,17.644426307521628 + 11/13 08:10:00,15.6,15.6,16.15403996551484 + 11/13 08:20:00,15.6,15.6,15.932282386544543 + 11/13 08:30:00,15.6,15.6,15.825573709884628 + 11/13 08:40:00,15.6,15.6,15.737115119881743 + 11/13 08:50:00,15.6,15.6,15.663008014283938 + 11/13 09:00:00,15.6,15.6,15.599012330218937 + 11/13 09:10:00,15.6,15.6,15.513773150447023 + 11/13 09:20:00,15.6,15.6,15.452173137065211 + 11/13 09:30:00,15.6,15.6,15.402940253980857 + 11/13 09:40:00,15.6,15.6,15.357101775587957 + 11/13 09:50:00,15.6,15.6,15.313395392232455 + 11/13 10:00:00,15.6,15.6,15.271162273554112 + 11/13 10:10:00,15.6,15.6,15.229103217798409 + 11/13 10:20:00,15.6,15.6,15.177505856754165 + 11/13 10:30:00,15.6,15.6,15.137436717223637 + 11/13 10:40:00,15.6,15.6,15.098919070459555 + 11/13 10:50:00,15.6,15.6,15.062819176839755 + 11/13 11:00:00,15.6,15.6,15.029493868480861 + 11/13 11:10:00,15.6,15.6,14.999261886767047 + 11/13 11:20:00,15.6,15.6,14.968046766584907 + 11/13 11:30:00,15.6,15.6,14.942664013042359 + 11/13 11:40:00,15.6,15.6,14.919338530497628 + 11/13 11:50:00,15.6,15.6,14.897849236660134 + 11/13 12:00:00,15.6,15.6,14.878019278950563 + 11/13 12:10:00,15.507507507507507,15.507507507507507,14.860459489052781 + 11/13 12:20:00,15.415015015015016,15.415015015015016,14.854113361719918 + 11/13 12:30:00,15.322522522522523,15.322522522522523,14.8390771201302 + 11/13 12:40:00,15.23003003003003,15.23003003003003,14.82479717562232 + 11/13 12:50:00,15.137537537537538,15.137537537537538,14.810852601417068 + 11/13 13:00:00,15.045045045045045,15.045045045045045,14.797087509902714 + 11/13 13:10:00,14.998798798798799,14.998798798798799,14.783584942669443 + 11/13 13:20:00,14.952552552552552,14.952552552552552,14.761081886913898 + 11/13 13:30:00,14.906306306306306,14.906306306306306,14.749919642544379 + 11/13 13:40:00,14.86006006006006,14.86006006006006,14.73713448309993 + 11/13 13:50:00,14.813813813813815,14.813813813813815,14.724808452977703 + 11/13 14:00:00,14.767567567567568,14.767567567567568,14.714754010568223 + 11/13 14:10:00,14.721321321321322,14.721321321321322,14.702049548341054 + 11/13 14:20:00,14.675075075075075,14.675075075075075,14.696913117562135 + 11/13 14:30:00,14.628828828828829,14.628828828828829,14.687373855657146 + 11/13 14:40:00,14.582582582582582,14.582582582582582,14.678003343125108 + 11/13 14:50:00,14.536336336336337,14.536336336336337,14.671047415819669 + 11/13 15:00:00,14.49009009009009,14.49009009009009,14.661795405203094 + 11/13 15:10:00,14.49009009009009,14.49009009009009,14.653961062352848 + 11/13 15:20:00,14.49009009009009,14.49009009009009,14.65041468320657 + 11/13 15:30:00,14.49009009009009,14.49009009009009,14.640629892111475 + 11/13 15:40:00,14.49009009009009,14.49009009009009,14.634068690393527 + 11/13 15:50:00,14.49009009009009,14.49009009009009,14.628052226144064 + 11/13 16:00:00,14.49009009009009,14.49009009009009,14.618963093071095 + 11/13 16:05:00,14.536336336336337,14.536336336336337,16.780062904879576 + 11/13 16:10:00,14.536336336336337,14.536336336336337,16.778977082799537 + 11/13 16:20:00,14.582582582582582,14.582582582582582,17.026115167085416 + 11/13 16:30:00,14.628828828828829,14.628828828828829,17.121378003557234 + 11/13 16:40:00,14.675075075075075,14.675075075075075,17.194389002885669 + 11/13 16:50:00,14.721321321321322,14.721321321321322,17.253044553972268 + 11/13 17:00:00,14.767567567567568,14.767567567567568,17.301721989537908 + 11/13 17:10:00,14.813813813813815,14.813813813813815,17.369170476043928 + 11/13 17:20:00,14.860060060060059,14.860060060060059,17.424273299153254 + 11/13 17:30:00,14.906306306306306,14.906306306306306,17.456982123940806 + 11/13 17:40:00,14.952552552552552,14.952552552552552,17.48693534143658 + 11/13 17:50:00,14.998798798798799,14.998798798798799,17.514729687192646 + 11/13 18:00:00,15.045045045045045,15.045045045045045,17.54038629621858 + 11/13 18:10:00,15.112312312312313,15.112312312312313,17.576010186879633 + 11/13 18:20:00,15.17957957957958,15.17957957957958,17.603052453781119 + 11/13 18:30:00,15.246846846846847,15.246846846846847,17.622640691649523 + 11/13 18:40:00,15.314114114114114,15.314114114114114,17.64084804421484 + 11/13 18:50:00,15.381381381381381,15.381381381381381,17.657769776285023 + 11/13 19:00:00,15.448648648648648,15.448648648648648,17.673648247992966 + 11/13 19:10:00,15.473873873873874,15.473873873873874,17.68921204262755 + 11/13 19:20:00,15.499099099099098,15.499099099099098,17.703485222120706 + 11/13 19:30:00,15.524324324324324,15.524324324324324,17.716779037773465 + 11/13 19:40:00,15.54954954954955,15.54954954954955,17.729126018828088 + 11/13 19:50:00,15.574774774774774,15.574774774774774,17.740597462158474 + 11/13 20:00:00,15.6,15.6,17.751409386319354 + 11/13 20:10:00,15.6,15.6,17.77485572868245 + 11/13 20:20:00,15.6,15.6,17.785206012737274 + 11/13 20:30:00,15.6,15.6,17.7946971245028 + 11/13 20:40:00,15.6,15.6,17.803764994887268 + 11/13 20:50:00,15.6,15.6,17.812395186713219 + 11/13 21:00:00,15.6,15.6,17.82064279397957 + 11/13 21:10:00,15.6,15.6,17.805961432390676 + 11/13 21:20:00,15.6,15.6,17.818235712406705 + 11/13 21:30:00,15.6,15.6,17.825913621856456 + 11/13 21:40:00,15.6,15.6,17.833441675252389 + 11/13 21:50:00,15.6,15.6,17.840821315070487 + 11/13 22:00:00,15.6,15.6,17.848047305790567 + 11/13 22:10:00,15.6,15.6,17.855156974477035 + 11/13 22:20:00,15.6,15.6,17.861931827576258 + 11/13 22:30:00,15.6,15.6,17.868450547851926 + 11/13 22:40:00,15.6,15.6,17.87460994785733 + 11/13 22:50:00,15.6,15.6,17.880639633240198 + 11/13 23:00:00,15.6,15.6,17.886468820768159 + 11/13 23:10:00,15.6,15.6,19.263306919144975 + 11/13 23:20:00,15.6,15.6,19.40722536472576 + 11/13 23:30:00,15.6,15.6,19.47156566476903 + 11/13 23:40:00,15.6,15.6,19.52268104346859 + 11/13 23:50:00,15.6,15.6,19.56422311186256 + 11/13 24:00:00,15.6,15.6,19.599409582388405 + 11/14 00:10:00,15.6,15.6,19.62754406331097 + 11/14 00:20:00,15.6,15.6,19.65245792738986 + 11/14 00:30:00,15.6,15.6,19.67494930135497 + 11/14 00:40:00,15.6,15.6,19.695636509713795 + 11/14 00:50:00,15.6,15.6,19.714844703537645 + 11/14 01:00:00,15.6,15.6,19.732955657282575 + 11/14 01:10:00,15.6,15.6,19.75247746501713 + 11/14 01:20:00,15.6,15.6,19.77045674414916 + 11/14 01:30:00,15.6,15.6,19.787180523735637 + 11/14 01:40:00,15.6,15.6,19.80262071724774 + 11/14 01:50:00,15.6,15.6,19.817043888755515 + 11/14 02:00:00,15.6,15.6,19.83058174931424 + 11/14 02:10:00,15.6,15.6,19.84207683379781 + 11/14 02:20:00,15.6,15.6,19.85322051415373 + 11/14 02:30:00,15.6,15.6,19.863933001516928 + 11/14 02:40:00,15.6,15.6,19.874304953713378 + 11/14 02:50:00,15.6,15.6,19.884346716673329 + 11/14 03:00:00,15.6,15.6,19.894000194552754 + 11/14 03:10:00,15.6,15.6,19.904295665629989 + 11/14 03:20:00,15.6,15.6,19.914150114668833 + 11/14 03:30:00,15.6,15.6,19.923606960920695 + 11/14 03:40:00,15.6,15.6,19.932654530883906 + 11/14 03:50:00,15.6,15.6,19.941286605016047 + 11/14 04:00:00,15.6,15.6,19.949603996466874 + 11/14 04:10:00,15.6,15.6,19.95736236748798 + 11/14 04:20:00,15.6,15.6,19.965093976885624 + 11/14 04:30:00,15.6,15.6,19.972771883395479 + 11/14 04:40:00,15.6,15.6,19.980409579789478 + 11/14 04:50:00,15.6,15.6,19.98797608232636 + 11/14 05:00:00,15.6,15.6,19.995568403025957 + 11/14 05:10:00,15.6,15.6,20.002049983878697 + 11/14 05:20:00,15.6,15.6,20.0082854197681 + 11/14 05:30:00,15.6,15.6,20.01430137136284 + 11/14 05:40:00,15.6,15.6,20.01999487329439 + 11/14 05:50:00,15.6,15.6,20.02557469605181 + 11/14 06:00:00,15.6,15.6,20.03095998371438 + 11/14 06:10:00,15.6,15.6,20.03424931869156 + 11/14 06:20:00,15.6,15.6,20.037610701964526 + 11/14 06:30:00,15.6,15.6,20.040957486739637 + 11/14 06:40:00,15.6,15.6,20.04451523293992 + 11/14 06:50:00,15.6,15.6,20.048226705155373 + 11/14 07:00:00,15.6,15.6,20.052203167168455 + 11/14 07:10:00,15.6,15.6,18.04753520973404 + 11/14 07:20:00,15.6,15.6,17.82017100449187 + 11/14 07:30:00,15.6,15.6,17.738233565864044 + 11/14 07:40:00,15.6,15.6,17.674568611421287 + 11/14 07:50:00,15.6,15.6,17.624835439729226 + 11/14 08:00:00,15.6,15.6,17.583799674215784 + 11/14 08:10:00,15.6,15.6,16.09076235320851 + 11/14 08:15:00,15.6,15.6,15.86799363631545 + 11/14 08:20:00,15.6,15.6,15.867440366189716 + 11/14 08:30:00,15.6,15.6,15.756674812694755 + 11/14 08:40:00,15.6,15.6,15.663556295199842 + 11/14 08:50:00,15.6,15.6,15.582360927764272 + 11/14 09:00:00,15.6,15.6,15.509408918143299 + 11/14 09:10:00,15.6,15.6,15.419052457959339 + 11/14 09:20:00,15.6,15.6,15.34957713278852 + 11/14 09:30:00,15.524324324324324,15.524324324324324,15.291630553420948 + 11/14 09:40:00,15.406606606606607,15.406606606606607,15.236857783541702 + 11/14 09:50:00,15.28888888888889,15.28888888888889,15.185288197566648 + 11/14 10:00:00,15.17117117117117,15.17117117117117,15.13667707641016 + 11/14 10:10:00,15.078678678678678,15.078678678678678,15.089535154279787 + 11/14 10:20:00,14.986186186186187,14.986186186186187,15.037901017313218 + 11/14 10:30:00,14.893693693693694,14.893693693693694,14.9993306540538 + 11/14 10:40:00,14.801201201201203,14.801201201201203,14.963465528591954 + 11/14 10:50:00,14.70870870870871,14.70870870870871,14.929265386844929 + 11/14 11:00:00,14.616216216216217,14.616216216216217,14.896671322471166 + 11/14 11:10:00,14.56996996996997,14.56996996996997,14.865616656683333 + 11/14 11:20:00,14.523723723723723,14.523723723723723,14.833839509837603 + 11/14 11:30:00,14.477477477477479,14.477477477477479,14.80694915657651 + 11/14 11:40:00,14.431231231231232,14.431231231231232,14.781557489320769 + 11/14 11:50:00,14.384984984984986,14.384984984984986,14.757448100615435 + 11/14 12:00:00,14.338738738738739,14.338738738738739,14.734506599660568 + 11/14 12:10:00,14.246246246246246,14.246246246246246,14.713782080952344 + 11/14 12:20:00,14.153753753753755,14.153753753753755,14.706230808733605 + 11/14 12:30:00,14.061261261261262,14.061261261261262,14.690659756188744 + 11/14 12:40:00,13.96876876876877,13.96876876876877,14.676310485216089 + 11/14 12:50:00,13.876276276276278,13.876276276276278,14.659946947599709 + 11/14 13:00:00,13.783783783783785,13.783783783783785,14.647057126789982 + 11/14 13:10:00,13.737537537537538,13.737537537537538,14.635448520218962 + 11/14 13:20:00,13.691291291291293,13.691291291291293,14.610512924954643 + 11/14 13:30:00,13.645045045045047,13.645045045045047,14.597778199087772 + 11/14 13:40:00,13.5987987987988,13.5987987987988,14.585777172098318 + 11/14 13:50:00,13.552552552552554,13.552552552552554,14.57299958766809 + 11/14 14:00:00,13.506306306306307,13.506306306306307,14.563743686456414 + 11/14 14:10:00,13.434834834834835,13.434834834834835,14.551997474751277 + 11/14 14:20:00,13.363363363363364,13.363363363363364,14.547247111197584 + 11/14 14:30:00,13.291891891891894,13.291891891891894,14.539407752321184 + 11/14 14:40:00,13.220420420420421,13.220420420420421,14.530220733263885 + 11/14 14:50:00,13.148948948948949,13.148948948948949,14.52433198939376 + 11/14 15:00:00,13.077477477477478,13.077477477477478,14.517335130783313 + 11/14 15:10:00,13.102702702702704,13.102702702702704,14.511438397049071 + 11/14 15:20:00,13.127927927927928,13.127927927927928,14.510469132472842 + 11/14 15:30:00,13.153153153153154,13.153153153153154,14.504345495842733 + 11/14 15:40:00,13.17837837837838,13.17837837837838,14.500531265871997 + 11/14 15:50:00,13.203603603603604,13.203603603603604,14.498729687557871 + 11/14 16:00:00,13.22882882882883,13.22882882882883,14.495147005803558 + 11/14 16:05:00,13.296096096096097,13.296096096096097,16.66337536375785 + 11/14 16:10:00,13.296096096096097,13.296096096096097,16.662316335803305 + 11/14 16:20:00,13.363363363363364,13.363363363363364,16.915579564978633 + 11/14 16:30:00,13.430630630630632,13.430630630630632,17.01695942539919 + 11/14 16:40:00,13.497897897897899,13.497897897897899,17.094467467394379 + 11/14 16:50:00,13.565165165165166,13.565165165165166,17.158086847318825 + 11/14 17:00:00,13.632432432432433,13.632432432432433,17.211649847366727 + 11/14 17:10:00,13.75015015015015,13.75015015015015,17.283611454473176 + 11/14 17:20:00,13.867867867867869,13.867867867867869,17.341642513508796 + 11/14 17:30:00,13.985585585585586,13.985585585585586,17.37752366063971 + 11/14 17:40:00,14.103303303303303,14.103303303303303,17.410082296118476 + 11/14 17:50:00,14.221021021021022,14.221021021021022,17.439773036026645 + 11/14 18:00:00,14.338738738738739,14.338738738738739,17.466669604721255 + 11/14 18:10:00,14.431231231231232,14.431231231231232,17.50515917246537 + 11/14 18:20:00,14.523723723723723,14.523723723723723,17.534614043098505 + 11/14 18:30:00,14.616216216216217,14.616216216216217,17.55635657467219 + 11/14 18:40:00,14.70870870870871,14.70870870870871,17.576434877338394 + 11/14 18:50:00,14.8012012012012,14.8012012012012,17.59511312469204 + 11/14 19:00:00,14.893693693693694,14.893693693693694,17.612520410513647 + 11/14 19:10:00,14.93993993993994,14.93993993993994,17.62807152261179 + 11/14 19:20:00,14.986186186186187,14.986186186186187,17.64255856458533 + 11/14 19:30:00,15.032432432432433,15.032432432432433,17.65613239195561 + 11/14 19:40:00,15.078678678678678,15.078678678678678,17.668871551703796 + 11/14 19:50:00,15.124924924924925,15.124924924924925,17.680926829527594 + 11/14 20:00:00,15.17117117117117,15.17117117117117,17.692365122930853 + 11/14 20:10:00,15.242642642642644,15.242642642642644,17.71700594814386 + 11/14 20:20:00,15.314114114114114,15.314114114114114,17.729149091336717 + 11/14 20:30:00,15.385585585585586,15.385585585585586,17.740545099748649 + 11/14 20:40:00,15.457057057057057,15.457057057057057,17.75162620618292 + 11/14 20:50:00,15.528528528528529,15.528528528528529,17.762405719629056 + 11/14 21:00:00,15.6,15.6,17.772838435613747 + 11/14 21:10:00,15.6,15.6,17.760058138302587 + 11/14 21:20:00,15.6,15.6,17.773798361747969 + 11/14 21:30:00,15.6,15.6,17.782854954562827 + 11/14 21:40:00,15.6,15.6,17.791606280808659 + 11/14 21:50:00,15.6,15.6,17.800178345279727 + 11/14 22:00:00,15.6,15.6,17.808586075310143 + 11/14 22:10:00,15.6,15.6,17.8165600773968 + 11/14 22:20:00,15.6,15.6,17.824346349343697 + 11/14 22:30:00,15.6,15.6,17.83194697419138 + 11/14 22:40:00,15.6,15.6,17.83932312443665 + 11/14 22:50:00,15.6,15.6,17.846464569685986 + 11/14 23:00:00,15.6,15.6,17.853388170047198 + 11/14 23:10:00,15.6,15.6,19.230626880684544 + 11/14 23:20:00,15.6,15.6,19.375151209344723 + 11/14 23:30:00,15.6,15.6,19.440038737430926 + 11/14 23:40:00,15.6,15.6,19.49166143528043 + 11/14 23:50:00,15.6,15.6,19.533629866995815 + 11/14 24:00:00,15.6,15.6,19.569092346347714 + 11/15 00:10:00,15.6,15.6,19.598992838977165 + 11/15 00:20:00,15.6,15.6,19.62548667207573 + 11/15 00:30:00,15.6,15.6,19.649308142590369 + 11/15 00:40:00,15.6,15.6,19.670982165399587 + 11/15 00:50:00,15.6,15.6,19.690864058368477 + 11/15 01:00:00,15.6,15.6,19.70918272932971 + 11/15 01:10:00,15.6,15.6,19.726181979828149 + 11/15 01:20:00,15.6,15.6,19.74199498398525 + 11/15 01:30:00,15.6,15.6,19.75675161020773 + 11/15 01:40:00,15.6,15.6,19.770548086925055 + 11/15 01:50:00,15.6,15.6,19.783423703039465 + 11/15 02:00:00,15.6,15.6,19.795653056106546 + 11/15 02:10:00,15.6,15.6,19.807715202842524 + 11/15 02:20:00,15.6,15.6,19.81932073999854 + 11/15 02:30:00,15.6,15.6,19.830459801651764 + 11/15 02:40:00,15.6,15.6,19.841118185732854 + 11/15 02:50:00,15.6,15.6,19.851467216256539 + 11/15 03:00:00,15.6,15.6,19.861471452813448 + 11/15 03:10:00,15.6,15.6,19.87209696060613 + 11/15 03:20:00,15.6,15.6,19.882368426549396 + 11/15 03:30:00,15.6,15.6,19.89229117840442 + 11/15 03:40:00,15.6,15.6,19.901958824014988 + 11/15 03:50:00,15.6,15.6,19.9114137808942 + 11/15 04:00:00,15.6,15.6,19.92063193766691 + 11/15 04:10:00,15.6,15.6,19.928139052560373 + 11/15 04:20:00,15.6,15.6,19.935356560022304 + 11/15 04:30:00,15.6,15.6,19.94232151253422 + 11/15 04:40:00,15.6,15.6,19.949125077243104 + 11/15 04:50:00,15.6,15.6,19.955719021615388 + 11/15 05:00:00,15.6,15.6,19.96211351133872 + 11/15 05:10:00,15.6,15.6,19.96761240163787 + 11/15 05:20:00,15.6,15.6,19.97292977992702 + 11/15 05:30:00,15.6,15.6,19.978336773093788 + 11/15 05:40:00,15.6,15.6,19.98373166325143 + 11/15 05:50:00,15.6,15.6,19.989121467625887 + 11/15 06:00:00,15.6,15.6,19.99449270552254 + 11/15 06:10:00,15.6,15.6,20.001841400819438 + 11/15 06:20:00,15.6,15.6,20.00925131170636 + 11/15 06:30:00,15.6,15.6,20.016534764340503 + 11/15 06:40:00,15.6,15.6,20.023695999591938 + 11/15 06:50:00,15.6,15.6,20.030720526104408 + 11/15 07:00:00,15.6,15.6,20.037540132297367 + 11/15 07:10:00,15.6,15.6,18.031686842721738 + 11/15 07:20:00,15.6,15.6,17.80065561181261 + 11/15 07:30:00,15.6,15.6,17.714971842802343 + 11/15 07:40:00,15.6,15.6,17.647455610123175 + 11/15 07:50:00,15.6,15.6,17.59356057348443 + 11/15 08:00:00,15.6,15.6,17.548089677622796 + 11/15 08:10:00,15.6,15.6,16.0609600104256 + 11/15 08:20:00,15.6,15.6,15.840787376038213 + 11/15 08:30:00,15.6,15.6,15.734804465397423 + 11/15 08:40:00,15.6,15.6,15.64587995846675 + 11/15 08:50:00,15.6,15.6,15.570010843978209 + 11/15 09:00:00,15.6,15.6,15.503076883911398 + 11/15 09:10:00,15.6,15.6,15.413746385209162 + 11/15 09:20:00,15.6,15.6,15.3476206158444 + 11/15 09:30:00,15.46126126126126,15.46126126126126,15.293360635928084 + 11/15 09:40:00,15.272072072072073,15.272072072072073,15.242518385463699 + 11/15 09:50:00,15.082882882882883,15.082882882882883,15.194549044942793 + 11/15 10:00:00,14.893693693693694,14.893693693693694,15.149116739856494 + 11/15 10:10:00,14.70870870870871,14.70870870870871,15.107240483583756 + 11/15 10:20:00,14.523723723723723,14.523723723723723,15.057064543934713 + 11/15 10:30:00,14.338738738738739,14.338738738738739,15.019334810141129 + 11/15 10:40:00,14.153753753753755,14.153753753753755,14.983238836359988 + 11/15 10:50:00,13.968768768768769,13.968768768768769,14.948590785427835 + 11/15 11:00:00,13.783783783783785,13.783783783783785,14.915280310311428 + 11/15 11:10:00,13.712312312312314,13.712312312312314,14.883434122676024 + 11/15 11:20:00,13.640840840840842,13.640840840840842,14.850525330973224 + 11/15 11:30:00,13.56936936936937,13.56936936936937,14.822640357696267 + 11/15 11:40:00,13.497897897897899,13.497897897897899,14.796299558552449 + 11/15 11:50:00,13.426426426426428,13.426426426426428,14.771276329306298 + 11/15 12:00:00,13.354954954954956,13.354954954954956,14.747516591065912 + 11/15 12:10:00,13.30870870870871,13.30870870870871,14.725301764432296 + 11/15 12:20:00,13.262462462462464,13.262462462462464,14.71504673309922 + 11/15 12:30:00,13.216216216216218,13.216216216216218,14.696654157650066 + 11/15 12:40:00,13.169969969969971,13.169969969969971,14.678842711983627 + 11/15 12:50:00,13.123723723723725,13.123723723723725,14.659698521211285 + 11/15 13:00:00,13.077477477477478,13.077477477477478,14.644272138223228 + 11/15 13:10:00,13.031231231231232,13.031231231231232,14.629797059434014 + 11/15 13:20:00,12.984984984984987,12.984984984984987,14.603251945529794 + 11/15 13:30:00,12.938738738738739,12.938738738738739,14.589907789607546 + 11/15 13:40:00,12.892492492492494,12.892492492492494,14.576126762429397 + 11/15 13:50:00,12.846246246246248,12.846246246246248,14.562754812972355 + 11/15 14:00:00,12.8,12.8,14.552044206703912 + 11/15 14:10:00,12.8,12.8,14.539046717012028 + 11/15 14:20:00,12.8,12.8,14.534051618922616 + 11/15 14:30:00,12.8,12.8,14.52491788756019 + 11/15 14:40:00,12.8,12.8,14.516246508353517 + 11/15 14:50:00,12.8,12.8,14.51036665661513 + 11/15 15:00:00,12.8,12.8,14.502522757032333 + 11/15 15:10:00,12.8,12.8,14.49752755183565 + 11/15 15:20:00,12.8,12.8,14.497225947336324 + 11/15 15:30:00,12.8,12.8,14.49103201037806 + 11/15 15:40:00,12.8,12.8,14.488586519363297 + 11/15 15:50:00,12.8,12.8,14.48730119048249 + 11/15 16:00:00,12.8,12.8,14.484310532912453 + 11/15 16:05:00,12.846246246246248,12.846246246246248,16.648443841500119 + 11/15 16:10:00,12.846246246246248,12.846246246246248,16.647770046998539 + 11/15 16:20:00,12.892492492492494,12.892492492492494,16.901183740815627 + 11/15 16:30:00,12.938738738738739,12.938738738738739,17.000486208631263 + 11/15 16:40:00,12.984984984984987,12.984984984984987,17.078451329324549 + 11/15 16:50:00,13.031231231231232,13.031231231231232,17.140613942749284 + 11/15 17:00:00,13.077477477477478,13.077477477477478,17.192003915208013 + 11/15 17:10:00,13.216216216216216,13.216216216216216,17.26027623428274 + 11/15 17:20:00,13.354954954954956,13.354954954954956,17.318100272978133 + 11/15 17:30:00,13.493693693693695,13.493693693693695,17.352678949143799 + 11/15 17:40:00,13.632432432432433,13.632432432432433,17.384190499375316 + 11/15 17:50:00,13.771171171171173,13.771171171171173,17.413018238415533 + 11/15 18:00:00,13.90990990990991,13.90990990990991,17.439232538493856 + 11/15 18:10:00,14.006606606606607,14.006606606606607,17.476722917214095 + 11/15 18:20:00,14.103303303303303,14.103303303303303,17.50508017318584 + 11/15 18:30:00,14.2,14.2,17.52551425519477 + 11/15 18:40:00,14.296696696696696,14.296696696696696,17.54408363138187 + 11/15 18:50:00,14.393393393393394,14.393393393393394,17.56091538679063 + 11/15 19:00:00,14.49009009009009,14.49009009009009,17.576253767415076 + 11/15 19:10:00,14.557357357357358,14.557357357357358,17.59083677015243 + 11/15 19:20:00,14.624624624624625,14.624624624624625,17.604694619135285 + 11/15 19:30:00,14.691891891891892,14.691891891891892,17.617858956629165 + 11/15 19:40:00,14.759159159159159,14.759159159159159,17.630514791101985 + 11/15 19:50:00,14.826426426426427,14.826426426426427,17.64261841549517 + 11/15 20:00:00,14.893693693693694,14.893693693693694,17.65426943186558 + 11/15 20:10:00,14.91891891891892,14.91891891891892,17.677875922988365 + 11/15 20:20:00,14.944144144144144,14.944144144144144,17.688139143676428 + 11/15 20:30:00,14.96936936936937,14.96936936936937,17.69755822294706 + 11/15 20:40:00,14.994594594594595,14.994594594594595,17.706416970949595 + 11/15 20:50:00,15.01981981981982,15.01981981981982,17.714854185303176 + 11/15 21:00:00,15.045045045045045,15.045045045045045,17.72295239490829 + 11/15 21:10:00,15.01981981981982,15.01981981981982,17.707823908166398 + 11/15 21:20:00,14.994594594594594,14.994594594594594,17.719527944792057 + 11/15 21:30:00,14.96936936936937,14.96936936936937,17.72622264351184 + 11/15 21:40:00,14.944144144144144,14.944144144144144,17.73241216193123 + 11/15 21:50:00,14.91891891891892,14.91891891891892,17.738064848800947 + 11/15 22:00:00,14.893693693693694,14.893693693693694,17.743213427553238 + 11/15 22:10:00,14.91891891891892,14.91891891891892,17.74822276730995 + 11/15 22:20:00,14.944144144144144,14.944144144144144,17.752898055558725 + 11/15 22:30:00,14.96936936936937,14.96936936936937,17.757579033186507 + 11/15 22:40:00,14.994594594594595,14.994594594594595,17.762201418665645 + 11/15 22:50:00,15.01981981981982,15.01981981981982,17.76679820404651 + 11/15 23:00:00,15.045045045045045,15.045045045045045,17.771482357312114 + 11/15 23:10:00,15.045045045045045,15.045045045045045,19.146214767988459 + 11/15 23:20:00,15.045045045045045,15.045045045045045,19.28923356905737 + 11/15 23:30:00,15.045045045045045,15.045045045045045,19.351913610134937 + 11/15 23:40:00,15.045045045045045,15.045045045045045,19.401298894442268 + 11/15 23:50:00,15.045045045045045,15.045045045045045,19.4411727030487 + 11/15 24:00:00,15.045045045045045,15.045045045045045,19.47462257068491 + 11/16 00:10:00,15.066066066066066,15.066066066066066,19.503656947979104 + 11/16 00:20:00,15.087087087087087,15.087087087087087,19.529516711169909 + 11/16 00:30:00,15.108108108108109,15.108108108108109,19.552917527328064 + 11/16 00:40:00,15.12912912912913,15.12912912912913,19.574522415703606 + 11/16 00:50:00,15.15015015015015,15.15015015015015,19.594630690505136 + 11/16 01:00:00,15.17117117117117,15.17117117117117,19.613475894754619 + 11/16 01:10:00,15.17117117117117,15.17117117117117,19.630811039266697 + 11/16 01:20:00,15.17117117117117,15.17117117117117,19.646952798193604 + 11/16 01:30:00,15.17117117117117,15.17117117117117,19.66205107236074 + 11/16 01:40:00,15.17117117117117,15.17117117117117,19.676232407818327 + 11/16 01:50:00,15.17117117117117,15.17117117117117,19.689559855180005 + 11/16 02:00:00,15.17117117117117,15.17117117117117,19.702128227837748 + 11/16 02:10:00,15.217417417417418,15.217417417417418,19.714504687663284 + 11/16 02:20:00,15.263663663663664,15.263663663663664,19.726465812807598 + 11/16 02:30:00,15.30990990990991,15.30990990990991,19.738226206022497 + 11/16 02:40:00,15.356156156156157,15.356156156156157,19.74976622010098 + 11/16 02:50:00,15.402402402402402,15.402402402402402,19.761102791947296 + 11/16 03:00:00,15.448648648648648,15.448648648648648,19.772229448254117 + 11/16 03:10:00,15.499099099099098,15.499099099099098,19.78337819817664 + 11/16 03:20:00,15.54954954954955,15.54954954954955,19.794262585514855 + 11/16 03:30:00,15.6,15.6,19.804859286635897 + 11/16 03:40:00,15.6,15.6,19.815148482971833 + 11/16 03:50:00,15.6,15.6,19.825173319439295 + 11/16 04:00:00,15.6,15.6,19.834862171679626 + 11/16 04:10:00,15.6,15.6,19.843253760316565 + 11/16 04:20:00,15.6,15.6,19.851450138524116 + 11/16 04:30:00,15.6,15.6,19.859356831197688 + 11/16 04:40:00,15.6,15.6,19.867012944483684 + 11/16 04:50:00,15.6,15.6,19.87434358189113 + 11/16 05:00:00,15.6,15.6,19.88146655171412 + 11/16 05:10:00,15.6,15.6,19.889415302324186 + 11/16 05:20:00,15.6,15.6,19.89680888164791 + 11/16 05:30:00,15.6,15.6,19.9034752778012 + 11/16 05:40:00,15.6,15.6,19.909403196012055 + 11/16 05:50:00,15.6,15.6,19.914652082174859 + 11/16 06:00:00,15.6,15.6,19.91935537995684 + 11/16 06:10:00,15.6,15.6,19.924520252387898 + 11/16 06:20:00,15.6,15.6,19.929736207244884 + 11/16 06:30:00,15.6,15.6,19.93499220019801 + 11/16 06:40:00,15.6,15.6,19.940362090854387 + 11/16 06:50:00,15.6,15.6,19.945969148415214 + 11/16 07:00:00,15.6,15.6,19.95166156628617 + 11/16 07:10:00,15.6,15.6,17.94103738772218 + 11/16 07:20:00,15.6,15.6,17.70723763746001 + 11/16 07:30:00,15.6,15.6,17.620785592141318 + 11/16 07:40:00,15.6,15.6,17.553686507456765 + 11/16 07:50:00,15.6,15.6,17.50095620139485 + 11/16 08:00:00,15.6,15.6,17.45755471542206 + 11/16 08:10:00,15.6,15.6,15.977662957205718 + 11/16 08:20:00,15.6,15.6,15.761495291538357 + 11/16 08:30:00,15.6,15.6,15.660081950654009 + 11/16 08:40:00,15.6,15.6,15.576020751986935 + 11/16 08:50:00,15.6,15.6,15.505170972674146 + 11/16 09:00:00,15.6,15.6,15.443258091946383 + 11/16 09:10:00,15.574774774774774,15.574774774774774,15.36352498381131 + 11/16 09:20:00,15.54954954954955,15.54954954954955,15.311255974597913 + 11/16 09:30:00,15.524324324324324,15.524324324324324,15.271592248055143 + 11/16 09:40:00,15.499099099099098,15.499099099099098,15.23679394967099 + 11/16 09:50:00,15.473873873873874,15.473873873873874,15.20530770937422 + 11/16 10:00:00,15.448648648648648,15.448648648648648,15.176726862577786 + 11/16 10:10:00,15.427627627627628,15.427627627627628,15.149484265522764 + 11/16 10:20:00,15.406606606606607,15.406606606606607,15.109995201198896 + 11/16 10:30:00,15.385585585585586,15.385585585585586,15.082571373265529 + 11/16 10:40:00,15.364564564564564,15.364564564564564,15.05609595917847 + 11/16 10:50:00,15.343543543543543,15.343543543543543,15.031457762221424 + 11/16 11:00:00,15.322522522522523,15.322522522522523,15.008622084214343 + 11/16 11:10:00,15.251051051051052,15.251051051051052,14.985794676311209 + 11/16 11:20:00,15.17957957957958,15.17957957957958,14.962668719525683 + 11/16 11:30:00,15.108108108108109,15.108108108108109,14.944186035178257 + 11/16 11:40:00,15.036636636636637,15.036636636636637,14.926880859776585 + 11/16 11:50:00,14.965165165165164,14.965165165165164,14.910047714965455 + 11/16 12:00:00,14.893693693693694,14.893693693693694,14.893554104784443 + 11/16 12:10:00,14.893693693693694,14.893693693693694,14.878179072151243 + 11/16 12:20:00,14.893693693693694,14.893693693693694,14.872658793291354 + 11/16 12:30:00,14.893693693693694,14.893693693693694,14.857919512615755 + 11/16 12:40:00,14.893693693693694,14.893693693693694,14.840985276785175 + 11/16 12:50:00,14.893693693693694,14.893693693693694,14.826462341909308 + 11/16 13:00:00,14.893693693693694,14.893693693693694,14.813663945924685 + 11/16 13:10:00,14.8012012012012,14.8012012012012,14.80101975744603 + 11/16 13:20:00,14.70870870870871,14.70870870870871,14.779165654725075 + 11/16 13:30:00,14.616216216216217,14.616216216216217,14.768691797372214 + 11/16 13:40:00,14.523723723723723,14.523723723723723,14.755094785293244 + 11/16 13:50:00,14.431231231231232,14.431231231231232,14.745189249042272 + 11/16 14:00:00,14.338738738738739,14.338738738738739,14.733981598274399 + 11/16 14:10:00,14.292492492492493,14.292492492492493,14.72235281066554 + 11/16 14:20:00,14.246246246246246,14.246246246246246,14.717082254023025 + 11/16 14:30:00,14.2,14.2,14.706052682528116 + 11/16 14:40:00,14.153753753753755,14.153753753753755,14.698892968362039 + 11/16 14:50:00,14.107507507507508,14.107507507507508,14.6909898534608 + 11/16 15:00:00,14.061261261261262,14.061261261261262,14.68302440516997 + 11/16 15:10:00,14.036036036036036,14.036036036036036,14.677537336275736 + 11/16 15:20:00,14.01081081081081,14.01081081081081,14.67242082329172 + 11/16 15:30:00,13.985585585585586,13.985585585585586,14.665987527737658 + 11/16 15:40:00,13.960360360360362,13.960360360360362,14.660798113359647 + 11/16 15:50:00,13.935135135135136,13.935135135135136,14.653149895096395 + 11/16 16:00:00,13.90990990990991,13.90990990990991,14.647968539607203 + 11/16 16:05:00,13.90990990990991,13.90990990990991,16.786919175735407 + 11/16 16:10:00,13.90990990990991,13.90990990990991,16.786746044214725 + 11/16 16:20:00,13.90990990990991,13.90990990990991,17.029210327499088 + 11/16 16:30:00,13.90990990990991,13.90990990990991,17.124074288985786 + 11/16 16:40:00,13.90990990990991,13.90990990990991,17.19675066014002 + 11/16 16:50:00,13.90990990990991,13.90990990990991,17.2529616719382 + 11/16 17:00:00,13.90990990990991,13.90990990990991,17.29678821981264 + 11/16 17:10:00,13.981381381381383,13.981381381381383,17.361089743880468 + 11/16 17:20:00,14.052852852852853,14.052852852852853,17.415746441153197 + 11/16 17:30:00,14.124324324324326,14.124324324324326,17.44671492857643 + 11/16 17:40:00,14.195795795795796,14.195795795795796,17.474975682015665 + 11/16 17:50:00,14.267267267267269,14.267267267267269,17.50112339212977 + 11/16 18:00:00,14.338738738738739,14.338738738738739,17.525162765263226 + 11/16 18:10:00,14.363963963963965,14.363963963963965,17.558921231913485 + 11/16 18:20:00,14.389189189189189,14.389189189189189,17.583261911455723 + 11/16 18:30:00,14.414414414414415,14.414414414414415,17.60004366175109 + 11/16 18:40:00,14.439639639639639,14.439639639639639,17.61498202509906 + 11/16 18:50:00,14.464864864864865,14.464864864864865,17.628263508803525 + 11/16 19:00:00,14.49009009009009,14.49009009009009,17.64025129069404 + 11/16 19:10:00,14.511111111111111,14.511111111111111,17.652066351516809 + 11/16 19:20:00,14.532132132132132,14.532132132132132,17.66181662897057 + 11/16 19:30:00,14.553153153153153,14.553153153153153,17.670901137247 + 11/16 19:40:00,14.574174174174175,14.574174174174175,17.67924265842179 + 11/16 19:50:00,14.595195195195196,14.595195195195196,17.68724731628189 + 11/16 20:00:00,14.616216216216217,14.616216216216217,17.694873315633346 + 11/16 20:10:00,14.641441441441442,14.641441441441442,17.71625650350907 + 11/16 20:20:00,14.666666666666666,14.666666666666666,17.725832232375283 + 11/16 20:30:00,14.691891891891892,14.691891891891892,17.735254242571924 + 11/16 20:40:00,14.717117117117118,14.717117117117118,17.744957864846087 + 11/16 20:50:00,14.742342342342342,14.742342342342342,17.75480768661976 + 11/16 21:00:00,14.767567567567568,14.767567567567568,17.76479801339657 + 11/16 21:10:00,14.834834834834835,14.834834834834835,17.75013032529121 + 11/16 21:20:00,14.902102102102102,14.902102102102102,17.762346795221484 + 11/16 21:30:00,14.96936936936937,14.96936936936937,17.76996598178636 + 11/16 21:40:00,15.036636636636637,15.036636636636637,17.777388923257445 + 11/16 21:50:00,15.103903903903904,15.103903903903904,17.784618108069034 + 11/16 22:00:00,15.17117117117117,15.17117117117117,17.791655206167694 + 11/16 22:10:00,15.17117117117117,15.17117117117117,17.80070710229787 + 11/16 22:20:00,15.17117117117117,15.17117117117117,17.809717450883278 + 11/16 22:30:00,15.17117117117117,15.17117117117117,17.81799401455436 + 11/16 22:40:00,15.17117117117117,15.17117117117117,17.82576950368574 + 11/16 22:50:00,15.17117117117117,15.17117117117117,17.83291816139299 + 11/16 23:00:00,15.17117117117117,15.17117117117117,17.83949506202977 + 11/16 23:10:00,15.15015015015015,15.15015015015015,19.2099890405596 + 11/16 23:20:00,15.12912912912913,15.12912912912913,19.35041842891184 + 11/16 23:30:00,15.108108108108109,15.108108108108109,19.410889124329125 + 11/16 23:40:00,15.087087087087087,15.087087087087087,19.45777543934543 + 11/16 23:50:00,15.066066066066066,15.066066066066066,19.494937493716845 + 11/16 24:00:00,15.045045045045045,15.045045045045045,19.525548443432549 + 11/17 00:10:00,15.066066066066066,15.066066066066066,19.553171548565517 + 11/17 00:20:00,15.087087087087087,15.087087087087087,19.577490047848845 + 11/17 00:30:00,15.108108108108109,15.108108108108109,19.59924848212482 + 11/17 00:40:00,15.12912912912913,15.12912912912913,19.618976137279405 + 11/17 00:50:00,15.15015015015015,15.15015015015015,19.637034540852477 + 11/17 01:00:00,15.17117117117117,15.17117117117117,19.653610309235437 + 11/17 01:10:00,15.242642642642644,15.242642642642644,19.66962469719537 + 11/17 01:20:00,15.314114114114114,15.314114114114114,19.685023248476325 + 11/17 01:30:00,15.385585585585586,15.385585585585586,19.699929817481306 + 11/17 01:40:00,15.457057057057057,15.457057057057057,19.714471126046644 + 11/17 01:50:00,15.528528528528529,15.528528528528529,19.728554186587926 + 11/17 02:00:00,15.6,15.6,19.742378580945933 + 11/17 02:10:00,15.6,15.6,19.754047318969115 + 11/17 02:20:00,15.6,15.6,19.76539737372319 + 11/17 02:30:00,15.6,15.6,19.776525457261877 + 11/17 02:40:00,15.6,15.6,19.787367646072448 + 11/17 02:50:00,15.6,15.6,19.79803477921066 + 11/17 03:00:00,15.6,15.6,19.80855210246098 + 11/17 03:10:00,15.6,15.6,19.820919894036604 + 11/17 03:20:00,15.6,15.6,19.83296263207633 + 11/17 03:30:00,15.6,15.6,19.8445986126576 + 11/17 03:40:00,15.6,15.6,19.855839448755668 + 11/17 03:50:00,15.6,15.6,19.86679934224591 + 11/17 04:00:00,15.6,15.6,19.87743970116876 + 11/17 04:10:00,15.6,15.6,19.887462851659604 + 11/17 04:20:00,15.6,15.6,19.897049584523218 + 11/17 04:30:00,15.6,15.6,19.9062181466 + 11/17 04:40:00,15.6,15.6,19.91513139769945 + 11/17 04:50:00,15.6,15.6,19.923750498984789 + 11/17 05:00:00,15.6,15.6,19.9321049745082 + 11/17 05:10:00,15.6,15.6,19.9383675495524 + 11/17 05:20:00,15.6,15.6,19.94396714450555 + 11/17 05:30:00,15.6,15.6,19.948812688031155 + 11/17 05:40:00,15.6,15.6,19.95288474285796 + 11/17 05:50:00,15.6,15.6,19.956185736286323 + 11/17 06:00:00,15.6,15.6,19.958772886647187 + 11/17 06:10:00,15.6,15.6,19.96191144124251 + 11/17 06:20:00,15.6,15.6,19.965093845001655 + 11/17 06:30:00,15.6,15.6,19.96864294605642 + 11/17 06:40:00,15.6,15.6,19.972553658271939 + 11/17 06:50:00,15.6,15.6,19.976822213829597 + 11/17 07:00:00,15.6,15.6,19.98135412142848 + 11/17 07:10:00,15.6,15.6,17.97906075993348 + 11/17 07:20:00,15.6,15.6,17.748433203968554 + 11/17 07:30:00,15.6,15.6,17.664303246246477 + 11/17 07:40:00,15.6,15.6,17.599000209968616 + 11/17 07:50:00,15.6,15.6,17.54762760243385 + 11/17 08:00:00,15.6,15.6,17.50514437026013 + 11/17 08:10:00,15.6,15.6,16.022907571134824 + 11/17 08:20:00,15.6,15.6,15.804999583259795 + 11/17 08:30:00,15.6,15.6,15.701321691874315 + 11/17 08:40:00,15.6,15.6,15.614912858655064 + 11/17 08:50:00,15.6,15.6,15.542086969559862 + 11/17 09:00:00,15.6,15.6,15.479088549517743 + 11/17 09:10:00,15.482282282282283,15.482282282282283,15.39740384767868 + 11/17 09:20:00,15.364564564564564,15.364564564564564,15.338239403106123 + 11/17 09:30:00,15.246846846846847,15.246846846846847,15.29157769011304 + 11/17 09:40:00,15.12912912912913,15.12912912912913,15.248602102710383 + 11/17 09:50:00,15.01141141141141,15.01141141141141,15.208751348684882 + 11/17 10:00:00,14.893693693693694,14.893693693693694,15.17143780878204 + 11/17 10:10:00,14.826426426426427,14.826426426426427,15.136173975834709 + 11/17 10:20:00,14.759159159159159,14.759159159159159,15.091941324661305 + 11/17 10:30:00,14.691891891891892,14.691891891891892,15.060196107872893 + 11/17 10:40:00,14.624624624624625,14.624624624624625,15.030034664180498 + 11/17 10:50:00,14.557357357357358,14.557357357357358,15.00141265624617 + 11/17 11:00:00,14.49009009009009,14.49009009009009,14.974068759784151 + 11/17 11:10:00,14.43963963963964,14.43963963963964,14.94842147807885 + 11/17 11:20:00,14.389189189189189,14.389189189189189,14.92137371073864 + 11/17 11:30:00,14.338738738738739,14.338738738738739,14.898765431419836 + 11/17 11:40:00,14.288288288288289,14.288288288288289,14.876481944349257 + 11/17 11:50:00,14.237837837837839,14.237837837837839,14.853199814278338 + 11/17 12:00:00,14.187387387387388,14.187387387387388,14.828572776420309 + 11/17 12:10:00,14.12012012012012,14.12012012012012,14.803152881990686 + 11/17 12:20:00,14.052852852852853,14.052852852852853,14.787914402484113 + 11/17 12:30:00,13.985585585585586,13.985585585585586,14.76004964306089 + 11/17 12:40:00,13.91831831831832,13.91831831831832,14.733560887219002 + 11/17 12:50:00,13.851051051051052,13.851051051051052,14.709679406989438 + 11/17 13:00:00,13.783783783783785,13.783783783783785,14.686028389608664 + 11/17 13:10:00,13.758558558558559,13.758558558558559,14.665237783524623 + 11/17 13:20:00,13.733333333333335,13.733333333333335,14.635994143076778 + 11/17 13:30:00,13.708108108108109,13.708108108108109,14.615660103803544 + 11/17 13:40:00,13.682882882882883,13.682882882882883,14.59800541816198 + 11/17 13:50:00,13.657657657657659,13.657657657657659,14.582254378560929 + 11/17 14:00:00,13.632432432432433,13.632432432432433,14.566501650947567 + 11/17 14:10:00,13.611411411411412,13.611411411411412,14.554376032667533 + 11/17 14:20:00,13.590390390390392,13.590390390390392,14.548804873341576 + 11/17 14:30:00,13.56936936936937,13.56936936936937,14.542909912752256 + 11/17 14:40:00,13.548348348348349,13.548348348348349,14.53813877710746 + 11/17 14:50:00,13.527327327327328,13.527327327327328,14.531835115364686 + 11/17 15:00:00,13.506306306306307,13.506306306306307,14.528619620017118 + 11/17 15:10:00,13.506306306306307,13.506306306306307,14.52271859714398 + 11/17 15:20:00,13.506306306306307,13.506306306306307,14.518650143779729 + 11/17 15:30:00,13.506306306306307,13.506306306306307,14.513184198521483 + 11/17 15:40:00,13.506306306306307,13.506306306306307,14.505509025316803 + 11/17 15:50:00,13.506306306306307,13.506306306306307,14.500485396805646 + 11/17 16:00:00,13.506306306306307,13.506306306306307,14.497363122364139 + 11/17 16:05:00,13.552552552552554,13.552552552552554,16.660067988798397 + 11/17 16:10:00,13.552552552552554,13.552552552552554,16.65937808102601 + 11/17 16:20:00,13.5987987987988,13.5987987987988,16.912107068264043 + 11/17 16:30:00,13.645045045045047,13.645045045045047,17.014201590576005 + 11/17 16:40:00,13.691291291291293,13.691291291291293,17.09359261472219 + 11/17 16:50:00,13.737537537537538,13.737537537537538,17.154458986507174 + 11/17 17:00:00,13.783783783783785,13.783783783783785,17.207569630645506 + 11/17 17:10:00,13.901501501501502,13.901501501501502,17.27915093977859 + 11/17 17:20:00,14.01921921921922,14.01921921921922,17.339480132250296 + 11/17 17:30:00,14.136936936936938,14.136936936936938,17.375675136461405 + 11/17 17:40:00,14.254654654654655,14.254654654654655,17.408384014164324 + 11/17 17:50:00,14.372372372372374,14.372372372372374,17.438054215711529 + 11/17 18:00:00,14.49009009009009,14.49009009009009,17.464833568565678 + 11/17 18:10:00,14.536336336336337,14.536336336336337,17.502534494336339 + 11/17 18:20:00,14.582582582582582,14.582582582582582,17.529896408400924 + 11/17 18:30:00,14.628828828828829,14.628828828828829,17.54973662155123 + 11/17 18:40:00,14.675075075075075,14.675075075075075,17.56775039877239 + 11/17 18:50:00,14.721321321321322,14.721321321321322,17.58432269811435 + 11/17 19:00:00,14.767567567567568,14.767567567567568,17.59965102148838 + 11/17 19:10:00,14.881081081081082,14.881081081081082,17.61408184622359 + 11/17 19:20:00,14.994594594594594,14.994594594594594,17.628422619993864 + 11/17 19:30:00,15.108108108108109,15.108108108108109,17.64212768858399 + 11/17 19:40:00,15.22162162162162,15.22162162162162,17.655449854010329 + 11/17 19:50:00,15.335135135135135,15.335135135135135,17.668230990109444 + 11/17 20:00:00,15.448648648648648,15.448648648648648,17.68055255643577 + 11/17 20:10:00,15.448648648648648,15.448648648648648,17.705256505574444 + 11/17 20:20:00,15.448648648648648,15.448648648648648,17.716863803989449 + 11/17 20:30:00,15.448648648648648,15.448648648648648,17.72748664653557 + 11/17 20:40:00,15.448648648648648,15.448648648648648,17.737446250270567 + 11/17 20:50:00,15.448648648648648,15.448648648648648,17.746808524765677 + 11/17 21:00:00,15.448648648648648,15.448648648648648,17.75560696156336 + 11/17 21:10:00,15.52012012012012,15.52012012012012,17.741564060386616 + 11/17 21:20:00,15.591591591591591,15.591591591591591,17.754390795940944 + 11/17 21:30:00,15.6,15.6,17.76263112687424 + 11/17 21:40:00,15.6,15.6,17.770745923579413 + 11/17 21:50:00,15.6,15.6,17.778755635853423 + 11/17 22:00:00,15.6,15.6,17.786654151966855 + 11/17 22:10:00,15.6,15.6,17.79465602805081 + 11/17 22:20:00,15.6,15.6,17.802512393054497 + 11/17 22:30:00,15.6,15.6,17.810206711725607 + 11/17 22:40:00,15.6,15.6,17.81769578022952 + 11/17 22:50:00,15.6,15.6,17.82495634180021 + 11/17 23:00:00,15.6,15.6,17.832132349698346 + 11/17 23:10:00,15.6,15.6,19.210694120014016 + 11/17 23:20:00,15.6,15.6,19.355674206349528 + 11/17 23:30:00,15.6,15.6,19.42084746749923 + 11/17 23:40:00,15.6,15.6,19.47262768897616 + 11/17 23:50:00,15.6,15.6,19.51484392962284 + 11/17 24:00:00,15.6,15.6,19.550608753042345 + 11/18 00:10:00,15.6,15.6,19.581894718539226 + 11/18 00:20:00,15.6,15.6,19.609890040336219 + 11/18 00:30:00,15.6,15.6,19.63521582487843 + 11/18 00:40:00,15.6,15.6,19.658563221810299 + 11/18 00:50:00,15.6,15.6,19.680247042088987 + 11/18 01:00:00,15.6,15.6,19.70052154608494 + 11/18 01:10:00,15.6,15.6,19.71876331711932 + 11/18 01:20:00,15.6,15.6,19.735691834419077 + 11/18 01:30:00,15.6,15.6,19.751535755312568 + 11/18 01:40:00,15.6,15.6,19.766423431067154 + 11/18 01:50:00,15.6,15.6,19.78043697792684 + 11/18 02:00:00,15.6,15.6,19.793677163517566 + 11/18 02:10:00,15.6,15.6,19.806510274850788 + 11/18 02:20:00,15.6,15.6,19.818591103320146 + 11/18 02:30:00,15.6,15.6,19.830133278327439 + 11/18 02:40:00,15.6,15.6,19.84110899391432 + 11/18 02:50:00,15.6,15.6,19.85155855787535 + 11/18 03:00:00,15.6,15.6,19.861516788837024 + 11/18 03:10:00,15.6,15.6,19.871194841800198 + 11/18 03:20:00,15.6,15.6,19.88070491984195 + 11/18 03:30:00,15.6,15.6,19.889976203785289 + 11/18 03:40:00,15.6,15.6,19.899045277577707 + 11/18 03:50:00,15.6,15.6,19.907913294483845 + 11/18 04:00:00,15.6,15.6,19.91649603831469 + 11/18 04:10:00,15.6,15.6,19.925271641883535 + 11/18 04:20:00,15.6,15.6,19.933820334981669 + 11/18 04:30:00,15.6,15.6,19.942105869993467 + 11/18 04:40:00,15.6,15.6,19.950135887402646 + 11/18 04:50:00,15.6,15.6,19.95785336835661 + 11/18 05:00:00,15.6,15.6,19.965364678717717 + 11/18 05:10:00,15.6,15.6,19.97240022827383 + 11/18 05:20:00,15.6,15.6,19.979300204531655 + 11/18 05:30:00,15.6,15.6,19.986088886252497 + 11/18 05:40:00,15.6,15.6,19.99273649199135 + 11/18 05:50:00,15.6,15.6,19.99926208412448 + 11/18 06:00:00,15.6,15.6,20.00574854470466 + 11/18 06:10:00,15.6,15.6,20.01256632730906 + 11/18 06:20:00,15.6,15.6,20.01925714583672 + 11/18 06:30:00,15.6,15.6,20.025806231054284 + 11/18 06:40:00,15.6,15.6,20.032160282535796 + 11/18 06:50:00,15.6,15.6,20.03848118383252 + 11/18 07:00:00,15.6,15.6,20.044686534029688 + 11/18 07:10:00,15.6,15.6,19.385845236449968 + 11/18 07:20:00,15.6,15.6,19.321134846990643 + 11/18 07:30:00,15.6,15.6,19.295683753940236 + 11/18 07:40:00,15.6,15.6,19.275861088579 + 11/18 07:50:00,15.6,15.6,19.260038664564609 + 11/18 08:00:00,15.6,15.6,19.246219770889146 + 11/18 08:10:00,15.6,15.6,18.151036560178644 + 11/18 08:20:00,15.6,15.6,17.999473550456519 + 11/18 08:30:00,15.6,15.6,17.931176781952148 + 11/18 08:40:00,15.6,15.6,17.873723354256947 + 11/18 08:50:00,15.6,15.6,17.824317972178176 + 11/18 09:00:00,15.6,15.6,17.7801738641322 + 11/18 09:10:00,15.6,15.6,17.74042202377805 + 11/18 09:20:00,15.6,15.6,17.694586654507657 + 11/18 09:30:00,15.6,15.6,17.659662128444358 + 11/18 09:40:00,15.415015015015016,15.415015015015016,17.62650900296814 + 11/18 09:50:00,15.230030030030031,15.230030030030031,17.594908333133156 + 11/18 10:00:00,15.045045045045045,15.045045045045045,17.564736812767515 + 11/18 10:10:00,14.902102102102102,14.902102102102102,17.536643422656799 + 11/18 10:20:00,14.759159159159159,14.759159159159159,17.5014667350831 + 11/18 10:30:00,14.616216216216217,14.616216216216217,17.47642104586632 + 11/18 10:40:00,14.473273273273274,14.473273273273274,17.452703306528396 + 11/18 10:50:00,14.33033033033033,14.33033033033033,17.430090683739669 + 11/18 11:00:00,14.187387387387388,14.187387387387388,17.408514298782867 + 11/18 11:10:00,14.094894894894896,14.094894894894896,17.38720141153444 + 11/18 11:20:00,14.002402402402403,14.002402402402403,17.366208717454084 + 11/18 11:30:00,13.90990990990991,13.90990990990991,17.346160660587157 + 11/18 11:40:00,13.817417417417419,13.817417417417419,17.326882079819599 + 11/18 11:50:00,13.724924924924926,13.724924924924926,17.30848777356939 + 11/18 12:00:00,13.632432432432433,13.632432432432433,17.290903985879959 + 11/18 12:10:00,13.565165165165166,13.565165165165166,17.275129373040163 + 11/18 12:20:00,13.497897897897899,13.497897897897899,17.25992879777268 + 11/18 12:30:00,13.430630630630632,13.430630630630632,17.24568251961052 + 11/18 12:40:00,13.363363363363364,13.363363363363364,17.232299255178896 + 11/18 12:50:00,13.296096096096097,13.296096096096097,17.219832606659865 + 11/18 13:00:00,13.22882882882883,13.22882882882883,17.208203828515619 + 11/18 13:10:00,13.157357357357359,13.157357357357359,17.196939846947445 + 11/18 13:20:00,13.085885885885887,13.085885885885887,17.18692739014996 + 11/18 13:30:00,13.014414414414415,13.014414414414415,17.177394031016619 + 11/18 13:40:00,12.942942942942946,12.942942942942946,17.16851043660172 + 11/18 13:50:00,12.871471471471472,12.871471471471472,17.160175834265944 + 11/18 14:00:00,12.8,12.8,17.152403636691429 + 11/18 14:10:00,12.8,12.8,17.14570171234645 + 11/18 14:20:00,12.8,12.8,17.139977095827903 + 11/18 14:30:00,12.8,12.8,17.134995714767088 + 11/18 14:40:00,12.8,12.8,17.130815179724978 + 11/18 14:50:00,12.8,12.8,17.12741557745031 + 11/18 15:00:00,12.8,12.8,17.12475879233072 + 11/18 15:10:00,12.8,12.8,17.122460389547134 + 11/18 15:20:00,12.8,12.8,17.12031604433767 + 11/18 15:30:00,12.8,12.8,17.11862294470364 + 11/18 15:40:00,12.8,12.8,17.11739125267262 + 11/18 15:50:00,12.8,12.8,17.11684257467819 + 11/18 16:00:00,12.8,12.8,17.116971751830986 + 11/18 16:10:00,12.846246246246248,12.846246246246248,17.118121852293286 + 11/18 16:20:00,12.892492492492494,12.892492492492494,17.120466350141439 + 11/18 16:30:00,12.938738738738739,12.938738738738739,17.12334528910469 + 11/18 16:40:00,12.984984984984987,12.984984984984987,17.126862113133993 + 11/18 16:50:00,13.031231231231232,13.031231231231232,17.13094510439772 + 11/18 17:00:00,13.077477477477478,13.077477477477478,17.135537105300349 + 11/18 17:10:00,13.195195195195196,13.195195195195196,17.153918169325715 + 11/18 17:20:00,13.312912912912913,13.312912912912913,17.170267016639998 + 11/18 17:30:00,13.430630630630632,13.430630630630632,17.177712718689997 + 11/18 17:40:00,13.548348348348349,13.548348348348349,17.1854111382974 + 11/18 17:50:00,13.666066066066067,13.666066066066067,17.19260355696082 + 11/18 18:00:00,13.783783783783785,13.783783783783785,17.199030558347716 + 11/18 18:10:00,13.876276276276276,13.876276276276276,18.980470714514128 + 11/18 18:20:00,13.968768768768769,13.968768768768769,19.194627753947264 + 11/18 18:30:00,14.061261261261262,14.061261261261262,19.28020536147295 + 11/18 18:40:00,14.153753753753755,14.153753753753755,19.346847044948448 + 11/18 18:50:00,14.246246246246248,14.246246246246248,19.39994795263835 + 11/18 19:00:00,14.338738738738739,14.338738738738739,19.444046591428884 + 11/18 19:10:00,14.41021021021021,14.41021021021021,19.493902583993177 + 11/18 19:20:00,14.481681681681682,14.481681681681682,19.526837782015169 + 11/18 19:30:00,14.553153153153153,14.553153153153153,19.555754894783328 + 11/18 19:40:00,14.624624624624625,14.624624624624625,19.581772060228795 + 11/18 19:50:00,14.696096096096096,14.696096096096096,19.60536110751065 + 11/18 20:00:00,14.767567567567568,14.767567567567568,19.626866340832885 + 11/18 20:10:00,14.813813813813815,14.813813813813815,19.64719577878558 + 11/18 20:20:00,14.860060060060059,14.860060060060059,19.66584624816166 + 11/18 20:30:00,14.906306306306306,14.906306306306306,19.683220988173369 + 11/18 20:40:00,14.952552552552552,14.952552552552552,19.699433081001034 + 11/18 20:50:00,14.998798798798799,14.998798798798799,19.7145931841301 + 11/18 21:00:00,15.045045045045045,15.045045045045045,19.728931057733165 + 11/18 21:10:00,15.091291291291292,15.091291291291292,19.71994958502953 + 11/18 21:20:00,15.137537537537538,15.137537537537538,19.732858493152546 + 11/18 21:30:00,15.183783783783785,15.183783783783785,19.745182150980285 + 11/18 21:40:00,15.23003003003003,15.23003003003003,19.75691836192331 + 11/18 21:50:00,15.276276276276276,15.276276276276276,19.76816850804154 + 11/18 22:00:00,15.322522522522523,15.322522522522523,19.779051283461123 + 11/18 22:10:00,15.276276276276276,15.276276276276276,19.78981166213778 + 11/18 22:20:00,15.23003003003003,15.23003003003003,19.80005676617781 + 11/18 22:30:00,15.183783783783785,15.183783783783785,19.809644894012174 + 11/18 22:40:00,15.137537537537538,15.137537537537538,19.818588699621146 + 11/18 22:50:00,15.091291291291292,15.091291291291292,19.827052663957315 + 11/18 23:00:00,15.045045045045045,15.045045045045045,19.834999349790029 + 11/18 23:10:00,15.112312312312313,15.112312312312313,19.842184198693624 + 11/18 23:20:00,15.17957957957958,15.17957957957958,19.849126313121365 + 11/18 23:30:00,15.246846846846847,15.246846846846847,19.855955707273759 + 11/18 23:40:00,15.314114114114114,15.314114114114114,19.862860429622189 + 11/18 23:50:00,15.381381381381381,15.381381381381381,19.869772545006528 + 11/18 24:00:00,15.448648648648648,15.448648648648648,19.876673741237196 + 11/19 00:10:00,15.356156156156157,15.356156156156157,19.88300292296597 + 11/19 00:20:00,15.263663663663664,15.263663663663664,19.889003287769968 + 11/19 00:30:00,15.17117117117117,15.17117117117117,19.894627961770735 + 11/19 00:40:00,15.078678678678678,15.078678678678678,19.899861216337116 + 11/19 00:50:00,14.986186186186187,14.986186186186187,19.904659098223868 + 11/19 01:00:00,14.893693693693694,14.893693693693694,19.909070679196839 + 11/19 01:10:00,15.01141141141141,15.01141141141141,19.912890895370109 + 11/19 01:20:00,15.12912912912913,15.12912912912913,19.916891537944414 + 11/19 01:30:00,15.246846846846847,15.246846846846847,19.921221740156076 + 11/19 01:40:00,15.364564564564564,15.364564564564564,19.92588099714927 + 11/19 01:50:00,15.482282282282283,15.482282282282283,19.93083468640567 + 11/19 02:00:00,15.6,15.6,19.936125909910645 + 11/19 02:10:00,15.6,15.6,19.943043142239938 + 11/19 02:20:00,15.6,15.6,19.95021845080493 + 11/19 02:30:00,15.6,15.6,19.957278598683879 + 11/19 02:40:00,15.6,15.6,19.96420556483349 + 11/19 02:50:00,15.6,15.6,19.970908312352507 + 11/19 03:00:00,15.6,15.6,19.977303413303134 + 11/19 03:10:00,15.6,15.6,19.98357909251108 + 11/19 03:20:00,15.6,15.6,19.98961093823128 + 11/19 03:30:00,15.6,15.6,19.995384760936007 + 11/19 03:40:00,15.6,15.6,20.000939718375926 + 11/19 03:50:00,15.6,15.6,20.006205029928958 + 11/19 04:00:00,15.6,15.6,20.01134679565024 + 11/19 04:10:00,15.6,15.6,20.017982417639865 + 11/19 04:20:00,15.6,15.6,20.02388557698927 + 11/19 04:30:00,15.6,15.6,20.029209138162956 + 11/19 04:40:00,15.6,15.6,20.034018062873643 + 11/19 04:50:00,15.6,15.6,20.03854372120103 + 11/19 05:00:00,15.6,15.6,20.042898467184803 + 11/19 05:10:00,15.6,15.6,20.04597872391678 + 11/19 05:20:00,15.6,15.6,20.048758693687508 + 11/19 05:30:00,15.6,15.6,20.051061791267274 + 11/19 05:40:00,15.6,15.6,20.052941822206447 + 11/19 05:50:00,15.6,15.6,20.054496290063346 + 11/19 06:00:00,15.6,15.6,20.055692096971787 + 11/19 06:10:00,15.528528528528529,15.528528528528529,20.054955523599923 + 11/19 06:20:00,15.457057057057057,15.457057057057057,20.05454731317541 + 11/19 06:30:00,15.385585585585586,15.385585585585586,20.053919397396883 + 11/19 06:40:00,15.314114114114114,15.314114114114114,20.053419527781196 + 11/19 06:50:00,15.242642642642644,15.242642642642644,20.052802944079429 + 11/19 07:00:00,15.17117117117117,15.17117117117117,20.052121035573856 + 11/19 07:10:00,15.196396396396397,15.196396396396397,20.074561260070838 + 11/19 07:20:00,15.22162162162162,15.22162162162162,20.07386444495638 + 11/19 07:30:00,15.246846846846847,15.246846846846847,20.073293493036365 + 11/19 07:40:00,15.272072072072073,15.272072072072073,20.072536803634557 + 11/19 07:50:00,15.297297297297297,15.297297297297297,20.071716841393948 + 11/19 08:00:00,15.322522522522523,15.322522522522523,20.07078898757095 + 11/19 08:10:00,15.276276276276276,15.276276276276276,18.668164086739375 + 11/19 08:20:00,15.23003003003003,15.23003003003003,18.503510323592598 + 11/19 08:30:00,15.183783783783785,15.183783783783785,18.439227759706989 + 11/19 08:40:00,15.137537537537538,15.137537537537538,18.38891567558235 + 11/19 08:50:00,15.091291291291292,15.091291291291292,18.348893856469265 + 11/19 09:00:00,15.045045045045045,15.045045045045045,18.31609149496264 + 11/19 09:10:00,14.998798798798799,14.998798798798799,18.288771227738729 + 11/19 09:20:00,14.952552552552552,14.952552552552552,18.254717340858997 + 11/19 09:30:00,14.906306306306306,14.906306306306306,18.23225120310064 + 11/19 09:40:00,14.86006006006006,14.86006006006006,18.211605618981538 + 11/19 09:50:00,14.813813813813815,14.813813813813815,18.192502706105655 + 11/19 10:00:00,14.767567567567568,14.767567567567568,18.17455702793361 + 11/19 10:10:00,14.721321321321322,14.721321321321322,18.15723981082046 + 11/19 10:20:00,14.675075075075075,14.675075075075075,18.131656833543358 + 11/19 10:30:00,14.628828828828829,14.628828828828829,18.11545446528419 + 11/19 10:40:00,14.582582582582582,14.582582582582582,18.09989886223286 + 11/19 10:50:00,14.536336336336337,14.536336336336337,18.085068400586349 + 11/19 11:00:00,14.49009009009009,14.49009009009009,18.070866564975103 + 11/19 11:10:00,14.372372372372372,14.372372372372372,18.05728283657742 + 11/19 11:20:00,14.254654654654655,14.254654654654655,18.044725820293125 + 11/19 11:30:00,14.136936936936938,14.136936936936938,18.032423190206143 + 11/19 11:40:00,14.01921921921922,14.01921921921922,18.02032959739206 + 11/19 11:50:00,13.901501501501502,13.901501501501502,18.008415326315594 + 11/19 12:00:00,13.783783783783785,13.783783783783785,17.996569007375525 + 11/19 12:10:00,13.712312312312314,13.712312312312314,17.984733889603036 + 11/19 12:20:00,13.640840840840842,13.640840840840842,17.973197347856059 + 11/19 12:30:00,13.56936936936937,13.56936936936937,17.962007664028687 + 11/19 12:40:00,13.497897897897899,13.497897897897899,17.951245242808655 + 11/19 12:50:00,13.426426426426428,13.426426426426428,17.94099201298998 + 11/19 13:00:00,13.354954954954956,13.354954954954956,17.931490493659646 + 11/19 13:10:00,13.237237237237239,13.237237237237239,17.922492145165223 + 11/19 13:20:00,13.119519519519521,13.119519519519521,17.913922743888038 + 11/19 13:30:00,13.001801801801804,13.001801801801804,17.905573975625953 + 11/19 13:40:00,12.884084084084086,12.884084084084086,17.896853748561037 + 11/19 13:50:00,12.8,12.8,17.8867399368893 + 11/19 14:00:00,12.8,12.8,17.874926573123497 + 11/19 14:10:00,12.8,12.8,17.86218950230539 + 11/19 14:20:00,12.8,12.8,17.847179800991947 + 11/19 14:30:00,12.8,12.8,17.832096375716085 + 11/19 14:40:00,12.8,12.8,17.818001986041556 + 11/19 14:50:00,12.8,12.8,17.806921144586725 + 11/19 15:00:00,12.8,12.8,17.7989860028149 + 11/19 15:10:00,12.8,12.8,17.79472821988173 + 11/19 15:20:00,12.8,12.8,17.793079119772007 + 11/19 15:30:00,12.8,12.8,17.792796912269674 + 11/19 15:40:00,12.8,12.8,17.79297910016128 + 11/19 15:50:00,12.8,12.8,17.792721142204916 + 11/19 16:00:00,12.8,12.8,17.791688526465149 + 11/19 16:10:00,12.8,12.8,19.20432575815746 + 11/19 16:20:00,12.8,12.8,19.3526190700652 + 11/19 16:30:00,12.8,12.8,19.41459743162289 + 11/19 16:40:00,12.8,12.8,19.462843905530993 + 11/19 16:50:00,12.8,12.8,19.50166091670585 + 11/19 17:00:00,12.8,12.8,19.534428292342036 + 11/19 17:10:00,12.8,12.8,19.562844949302705 + 11/19 17:20:00,12.8,12.8,19.59714541697277 + 11/19 17:30:00,12.8,12.8,19.620086853463204 + 11/19 17:40:00,12.8,12.8,19.64086470918226 + 11/19 17:50:00,12.8,12.8,19.659396252608663 + 11/19 18:00:00,12.8,12.8,19.675662856452087 + 11/19 18:10:00,12.8,12.8,19.690241939198267 + 11/19 18:20:00,12.8,12.8,19.721115861008199 + 11/19 18:30:00,12.8,12.8,19.733127481656184 + 11/19 18:40:00,12.8,12.8,19.744078021917038 + 11/19 18:50:00,12.8,12.8,19.753907537086297 + 11/19 19:00:00,12.8,12.8,19.763033454138755 + 11/19 19:10:00,12.8,12.8,19.771699188764445 + 11/19 19:20:00,12.8,12.8,19.779754497253195 + 11/19 19:30:00,12.8,12.8,19.787692156248548 + 11/19 19:40:00,12.8,12.8,19.79541545836848 + 11/19 19:50:00,12.8,12.8,19.803103511079216 + 11/19 20:00:00,12.8,12.8,19.810732651011266 + 11/19 20:10:00,12.8,12.8,19.818098237372096 + 11/19 20:20:00,12.8,12.8,19.82514741326073 + 11/19 20:30:00,12.8,12.8,19.831752744761415 + 11/19 20:40:00,12.8,12.8,19.837993471438869 + 11/19 20:50:00,12.8,12.8,19.843929210763926 + 11/19 21:00:00,12.8,12.8,19.849541943737444 + 11/19 21:10:00,12.8,12.8,19.832359488043115 + 11/19 21:20:00,12.8,12.8,19.83750242760066 + 11/19 21:30:00,12.8,12.8,19.842112095451598 + 11/19 21:40:00,12.8,12.8,19.84647043012455 + 11/19 21:50:00,12.8,12.8,19.85043559971851 + 11/19 22:00:00,12.8,12.8,19.85400111846863 + 11/19 22:10:00,12.8,12.8,19.85763613529857 + 11/19 22:20:00,12.8,12.8,19.860964212291877 + 11/19 22:30:00,12.8,12.8,19.864394261881338 + 11/19 22:40:00,12.8,12.8,19.867809067832284 + 11/19 22:50:00,12.8,12.8,19.871234738663945 + 11/19 23:00:00,12.8,12.8,19.874655883337274 + 11/19 23:10:00,12.8,12.8,19.87821264931833 + 11/19 23:20:00,12.8,12.8,19.88195965320753 + 11/19 23:30:00,12.8,12.8,19.88548310415512 + 11/19 23:40:00,12.8,12.8,19.888832709453096 + 11/19 23:50:00,12.8,12.8,19.891960779321037 + 11/19 24:00:00,12.8,12.8,19.894846925888396 + 11/20 00:10:00,12.871471471471472,12.871471471471472,19.897259911782116 + 11/20 00:20:00,12.942942942942944,12.942942942942944,19.898828520496826 + 11/20 00:30:00,13.014414414414415,13.014414414414415,19.900435582155099 + 11/20 00:40:00,13.085885885885887,13.085885885885887,19.90191346867481 + 11/20 00:50:00,13.157357357357359,13.157357357357359,19.903361497611845 + 11/20 01:00:00,13.22882882882883,13.22882882882883,19.90471836524278 + 11/20 01:10:00,13.367567567567568,13.367567567567568,19.90808493119285 + 11/20 01:20:00,13.506306306306307,13.506306306306307,19.908758477421114 + 11/20 01:30:00,13.645045045045047,13.645045045045047,19.91047535077757 + 11/20 01:40:00,13.783783783783785,13.783783783783785,19.912465781461948 + 11/20 01:50:00,13.922522522522524,13.922522522522524,19.915034325652166 + 11/20 02:00:00,14.061261261261262,14.061261261261262,19.91828475035964 + 11/20 02:10:00,14.178978978978979,14.178978978978979,19.920853213228175 + 11/20 02:20:00,14.296696696696696,14.296696696696696,19.92253706228039 + 11/20 02:30:00,14.414414414414415,14.414414414414415,19.924573251861295 + 11/20 02:40:00,14.532132132132132,14.532132132132132,19.926535627099747 + 11/20 02:50:00,14.64984984984985,14.64984984984985,19.92889550183026 + 11/20 03:00:00,14.767567567567568,14.767567567567568,19.93158921153056 + 11/20 03:10:00,14.86006006006006,14.86006006006006,19.93562464168038 + 11/20 03:20:00,14.952552552552552,14.952552552552552,19.94131645718435 + 11/20 03:30:00,15.045045045045045,15.045045045045045,19.94741928211782 + 11/20 03:40:00,15.137537537537538,15.137537537537538,19.954214386497588 + 11/20 03:50:00,15.23003003003003,15.23003003003003,19.961309226610998 + 11/20 04:00:00,15.322522522522523,15.322522522522523,19.968609269996234 + 11/20 04:10:00,15.44024024024024,15.44024024024024,19.97640084210788 + 11/20 04:20:00,15.557957957957957,15.557957957957957,19.98366745302927 + 11/20 04:30:00,15.6,15.6,19.99103938191295 + 11/20 04:40:00,15.6,15.6,19.998422612526363 + 11/20 04:50:00,15.6,15.6,20.005951441838513 + 11/20 05:00:00,15.6,15.6,20.01364746263058 + 11/20 05:10:00,15.6,15.6,20.017710062467878 + 11/20 05:20:00,15.6,15.6,20.022129409969098 + 11/20 05:30:00,15.6,15.6,20.026514974115565 + 11/20 05:40:00,15.6,15.6,20.030940518492277 + 11/20 05:50:00,15.6,15.6,20.03524623839222 + 11/20 06:00:00,15.6,15.6,20.039422883168624 + 11/20 06:10:00,15.6,15.6,20.04358447425059 + 11/20 06:20:00,15.6,15.6,20.047425621483865 + 11/20 06:30:00,15.6,15.6,20.050885861077029 + 11/20 06:40:00,15.6,15.6,20.053937958310656 + 11/20 06:50:00,15.6,15.6,20.05664817414431 + 11/20 07:00:00,15.6,15.6,20.058991027367449 + 11/20 07:10:00,15.6,15.6,18.051779340208009 + 11/20 07:20:00,15.6,15.6,17.817303105288429 + 11/20 07:30:00,15.6,15.6,17.72866128965802 + 11/20 07:40:00,15.6,15.6,17.658373725461226 + 11/20 07:50:00,15.6,15.6,17.602045669045226 + 11/20 08:00:00,15.6,15.6,17.55482995767599 + 11/20 08:10:00,15.6,15.6,16.07225548176027 + 11/20 08:20:00,15.6,15.6,15.85664931459063 + 11/20 08:30:00,15.6,15.6,15.757138044976616 + 11/20 08:40:00,15.6,15.6,15.676198540064434 + 11/20 08:50:00,15.6,15.6,15.609532217019274 + 11/20 09:00:00,15.6,15.6,15.55268912154127 + 11/20 09:10:00,15.6,15.6,15.469806357754232 + 11/20 09:20:00,15.6,15.6,15.410592916541474 + 11/20 09:30:00,15.6,15.6,15.363734047874618 + 11/20 09:40:00,15.6,15.6,15.320678422513407 + 11/20 09:50:00,15.6,15.6,15.28063353323681 + 11/20 10:00:00,15.6,15.6,15.24311003593399 + 11/20 10:10:00,15.6,15.6,15.208689244783376 + 11/20 10:20:00,15.6,15.6,15.165982513771862 + 11/20 10:30:00,15.6,15.6,15.135626121964722 + 11/20 10:40:00,15.6,15.6,15.106969769358294 + 11/20 10:50:00,15.6,15.6,15.079603429866909 + 11/20 11:00:00,15.6,15.6,15.053402273766962 + 11/20 11:10:00,15.6,15.6,15.030074257685074 + 11/20 11:20:00,15.6,15.6,15.003976304542599 + 11/20 11:30:00,15.6,15.6,14.982310983979268 + 11/20 11:40:00,15.6,15.6,14.961991772782234 + 11/20 11:50:00,15.6,15.6,14.94384600146626 + 11/20 12:00:00,15.6,15.6,14.928095612581961 + 11/20 12:10:00,15.6,15.6,14.913043379309372 + 11/20 12:20:00,15.6,15.6,14.909618409221407 + 11/20 12:30:00,15.6,15.6,14.89785407281192 + 11/20 12:40:00,15.6,15.6,14.88682535334301 + 11/20 12:50:00,15.6,15.6,14.875967187427089 + 11/20 13:00:00,15.6,15.6,14.864975260527766 + 11/20 13:10:00,15.6,15.6,14.854264094324173 + 11/20 13:20:00,15.6,15.6,14.834835954138388 + 11/20 13:30:00,15.6,15.6,14.823066108122145 + 11/20 13:40:00,15.6,15.6,14.811857759847415 + 11/20 13:50:00,15.6,15.6,14.801747609052974 + 11/20 14:00:00,15.6,15.6,14.789398886965584 + 11/20 14:10:00,15.6,15.6,14.780920575680929 + 11/20 14:20:00,15.6,15.6,14.772998316736143 + 11/20 14:30:00,15.6,15.6,14.763867684303902 + 11/20 14:40:00,15.6,15.6,14.755474534391901 + 11/20 14:50:00,15.6,15.6,14.746079624873938 + 11/20 15:00:00,15.6,15.6,14.740736588516949 + 11/20 15:10:00,15.6,15.6,14.733512058351842 + 11/20 15:20:00,15.6,15.6,14.7315359953189 + 11/20 15:30:00,15.6,15.6,14.728312659459649 + 11/20 15:40:00,15.6,15.6,14.723038183225406 + 11/20 15:50:00,15.6,15.6,14.719894376268237 + 11/20 16:00:00,15.6,15.6,14.717767759333931 + 11/20 16:10:00,15.6,15.6,16.874740498680823 + 11/20 16:20:00,15.6,15.6,17.12292496124843 + 11/20 16:30:00,15.6,15.6,17.22074054356996 + 11/20 16:40:00,15.6,15.6,17.295131189713947 + 11/20 16:50:00,15.6,15.6,17.351500525237428 + 11/20 17:00:00,15.6,15.6,17.399461079858619 + 11/20 17:10:00,15.6,15.6,17.47052418754732 + 11/20 17:20:00,15.6,15.6,17.52928974432384 + 11/20 17:30:00,15.6,15.6,17.564232172613616 + 11/20 17:40:00,15.6,15.6,17.595616942440747 + 11/20 17:50:00,15.6,15.6,17.623920287054454 + 11/20 18:00:00,15.6,15.6,17.64952986711761 + 11/20 18:10:00,15.6,15.6,17.683369310441067 + 11/20 18:20:00,15.6,15.6,17.707772088335238 + 11/20 18:30:00,15.6,15.6,17.724984135651157 + 11/20 18:40:00,15.6,15.6,17.740730081536268 + 11/20 18:50:00,15.6,15.6,17.755261304549955 + 11/20 19:00:00,15.6,15.6,17.76873511774076 + 11/20 19:10:00,15.6,15.6,17.78137648569769 + 11/20 19:20:00,15.6,15.6,17.793531735360348 + 11/20 19:30:00,15.6,15.6,17.805147372015278 + 11/20 19:40:00,15.6,15.6,17.816363835397455 + 11/20 19:50:00,15.6,15.6,17.827138210157306 + 11/20 20:00:00,15.6,15.6,17.83753207769816 + 11/20 20:10:00,15.6,15.6,17.860417928966684 + 11/20 20:20:00,15.6,15.6,17.870143439176976 + 11/20 20:30:00,15.6,15.6,17.8789070489652 + 11/20 20:40:00,15.6,15.6,17.88710344366785 + 11/20 20:50:00,15.6,15.6,17.89469512896995 + 11/20 21:00:00,15.6,15.6,17.901721550971396 + 11/20 21:10:00,15.6,15.6,17.88713712693921 + 11/20 21:20:00,15.6,15.6,17.89936773307184 + 11/20 21:30:00,15.6,15.6,17.906894460739378 + 11/20 21:40:00,15.6,15.6,17.914173584277923 + 11/20 21:50:00,15.6,15.6,17.921245344833119 + 11/20 22:00:00,15.6,15.6,17.928112734252978 + 11/20 22:10:00,15.6,15.6,17.933620172025607 + 11/20 22:20:00,15.6,15.6,17.93900917722935 + 11/20 22:30:00,15.6,15.6,17.944391630230105 + 11/20 22:40:00,15.6,15.6,17.949727623208916 + 11/20 22:50:00,15.6,15.6,17.954998708140044 + 11/20 23:00:00,15.6,15.6,17.960314789417855 + 11/20 23:10:00,15.6,15.6,19.335908216006325 + 11/20 23:20:00,15.6,15.6,19.477287631730634 + 11/20 23:30:00,15.6,15.6,19.539382208471929 + 11/20 23:40:00,15.6,15.6,19.5881591066849 + 11/20 23:50:00,15.6,15.6,19.62739017965698 + 11/20 24:00:00,15.6,15.6,19.660183376517347 + 11/21 00:10:00,15.6,15.6,19.690732216474499 + 11/21 00:20:00,15.6,15.6,19.718070893480176 + 11/21 00:30:00,15.6,15.6,19.743129647530279 + 11/21 00:40:00,15.6,15.6,19.766525965328396 + 11/21 00:50:00,15.6,15.6,19.78859889749919 + 11/21 01:00:00,15.6,15.6,19.809569216830373 + 11/21 01:10:00,15.6,15.6,19.829256280658098 + 11/21 01:20:00,15.6,15.6,19.847652989757536 + 11/21 01:30:00,15.6,15.6,19.86475010244 + 11/21 01:40:00,15.6,15.6,19.88068857993248 + 11/21 01:50:00,15.6,15.6,19.895532389572794 + 11/21 02:00:00,15.6,15.6,19.909403922440235 + 11/21 02:10:00,15.6,15.6,19.920995751741555 + 11/21 02:20:00,15.6,15.6,19.932124638424534 + 11/21 02:30:00,15.6,15.6,19.943053262034689 + 11/21 02:40:00,15.6,15.6,19.953782582587146 + 11/21 02:50:00,15.6,15.6,19.9643309792975 + 11/21 03:00:00,15.6,15.6,19.974690767601133 + 11/21 03:10:00,15.6,15.6,19.988453301785307 + 11/21 03:20:00,15.6,15.6,20.002016208529168 + 11/21 03:30:00,15.6,15.6,20.015262327036284 + 11/21 03:40:00,15.6,15.6,20.028188042334564 + 11/21 03:50:00,15.6,15.6,20.040815882015218 + 11/21 04:00:00,15.6,15.6,20.053073535642704 + 11/21 04:10:00,15.6,15.6,20.06130641428685 + 11/21 04:20:00,15.6,15.6,20.069279480328484 + 11/21 04:30:00,15.6,15.6,20.076969610309634 + 11/21 04:40:00,15.6,15.6,20.084402514523327 + 11/21 04:50:00,15.6,15.6,20.091521812976198 + 11/21 05:00:00,15.6,15.6,20.098445825882846 + 11/21 05:10:00,15.6,15.6,20.105104393776455 + 11/21 05:20:00,15.6,15.6,20.111560574299394 + 11/21 05:30:00,15.6,15.6,20.117832706711565 + 11/21 05:40:00,15.6,15.6,20.12388445353702 + 11/21 05:50:00,15.6,15.6,20.129755204577106 + 11/21 06:00:00,15.6,15.6,20.135527533450636 + 11/21 06:10:00,15.6,15.6,20.143147188651566 + 11/21 06:20:00,15.6,15.6,20.150550509071658 + 11/21 06:30:00,15.6,15.6,20.15769422100759 + 11/21 06:40:00,15.6,15.6,20.16454284631843 + 11/21 06:50:00,15.6,15.6,20.171257720557258 + 11/21 07:00:00,15.6,15.6,20.177769541653796 + 11/21 07:05:00,15.6,15.6,18.168583711477269 + 11/21 07:10:00,15.6,15.6,18.16866266299116 + 11/21 07:20:00,15.6,15.6,17.936498731817737 + 11/21 07:30:00,15.6,15.6,17.84959547948258 + 11/21 07:40:00,15.6,15.6,17.78098993951038 + 11/21 07:50:00,15.6,15.6,17.72640433932374 + 11/21 08:00:00,15.6,15.6,17.680326927595304 + 11/21 08:05:00,15.6,15.6,16.193912624408538 + 11/21 08:10:00,15.6,15.6,16.19373763600291 + 11/21 08:20:00,15.6,15.6,15.975338818130787 + 11/21 08:30:00,15.6,15.6,15.871341934381235 + 11/21 08:40:00,15.6,15.6,15.784064759459909 + 11/21 08:50:00,15.6,15.6,15.710006654142399 + 11/21 09:00:00,15.6,15.6,15.645047526786716 + 11/21 09:10:00,15.6,15.6,15.559608970365018 + 11/21 09:20:00,15.6,15.6,15.497227718379073 + 11/21 09:30:00,15.6,15.6,15.446796278626503 + 11/21 09:40:00,15.6,15.6,15.399883280942483 + 11/21 09:50:00,15.6,15.6,15.355996638699425 + 11/21 10:00:00,15.6,15.6,15.314799702336892 + 11/21 10:10:00,15.6,15.6,15.27470254885628 + 11/21 10:20:00,15.6,15.6,15.226025439525638 + 11/21 10:30:00,15.6,15.6,15.189864559339176 + 11/21 10:40:00,15.6,15.6,15.155543322247386 + 11/21 10:50:00,15.6,15.6,15.122907420711213 + 11/21 11:00:00,15.6,15.6,15.09188241456234 + 11/21 11:10:00,15.6,15.6,15.06163290437582 + 11/21 11:20:00,15.6,15.6,15.029355960832067 + 11/21 11:30:00,15.6,15.6,15.001943239200243 + 11/21 11:40:00,15.6,15.6,14.975835348163578 + 11/21 11:50:00,15.6,15.6,14.951172741893844 + 11/21 12:00:00,15.6,15.6,14.929240115795844 + 11/21 12:10:00,15.6,15.6,14.907547230601596 + 11/21 12:20:00,15.6,15.6,14.895766028034567 + 11/21 12:30:00,15.6,15.6,14.877125660026197 + 11/21 12:40:00,15.6,15.6,14.857867619866746 + 11/21 12:50:00,15.6,15.6,14.839550535624215 + 11/21 13:00:00,15.6,15.6,14.823880710570779 + 11/21 13:10:00,15.6,15.6,14.806986594544496 + 11/21 13:20:00,15.6,15.6,14.78099502226981 + 11/21 13:30:00,15.6,15.6,14.76764719690496 + 11/21 13:40:00,15.6,15.6,14.751847390009804 + 11/21 13:50:00,15.6,15.6,14.739786285441616 + 11/21 14:00:00,15.6,15.6,14.726871212497521 + 11/21 14:10:00,15.6,15.6,14.718106167509245 + 11/21 14:20:00,15.6,15.6,14.71452915288601 + 11/21 14:30:00,15.6,15.6,14.705600714525735 + 11/21 14:40:00,15.6,15.6,14.700752340890752 + 11/21 14:50:00,15.6,15.6,14.695988512493509 + 11/21 15:00:00,15.6,15.6,14.693098211718905 + 11/21 15:10:00,15.6,15.6,14.689263069543172 + 11/21 15:20:00,15.6,15.6,14.686547054416522 + 11/21 15:30:00,15.6,15.6,14.683739515667105 + 11/21 15:40:00,15.6,15.6,14.681330997204852 + 11/21 15:50:00,15.6,15.6,14.67615515723639 + 11/21 16:00:00,15.6,15.6,14.673852972508298 + 11/21 16:05:00,15.6,15.6,16.841998691298757 + 11/21 16:10:00,15.6,15.6,16.840913665091283 + 11/21 16:20:00,15.6,15.6,17.090754988415499 + 11/21 16:30:00,15.6,15.6,17.193085501213777 + 11/21 16:40:00,15.6,15.6,17.272297968588345 + 11/21 16:50:00,15.6,15.6,17.33455518235419 + 11/21 17:00:00,15.6,15.6,17.384635212841958 + 11/21 17:10:00,15.6,15.6,17.455410186785039 + 11/21 17:20:00,15.6,15.6,17.514461695892107 + 11/21 17:30:00,15.6,15.6,17.549469495980984 + 11/21 17:40:00,15.6,15.6,17.581175455925075 + 11/21 17:50:00,15.6,15.6,17.609953418594107 + 11/21 18:00:00,15.6,15.6,17.635907131173636 + 11/21 18:10:00,15.6,15.6,17.672484834251717 + 11/21 18:20:00,15.6,15.6,17.69962999041489 + 11/21 18:30:00,15.6,15.6,17.71946060573158 + 11/21 18:40:00,15.6,15.6,17.737798803387059 + 11/21 18:50:00,15.6,15.6,17.754939347114047 + 11/21 19:00:00,15.6,15.6,17.77102376469686 + 11/21 19:10:00,15.6,15.6,17.78516183661146 + 11/21 19:20:00,15.6,15.6,17.79835947188318 + 11/21 19:30:00,15.6,15.6,17.810645715218269 + 11/21 19:40:00,15.6,15.6,17.82209556198412 + 11/21 19:50:00,15.6,15.6,17.832837971640069 + 11/21 20:00:00,15.6,15.6,17.84292317179517 + 11/21 20:10:00,15.6,15.6,17.866961631367187 + 11/21 20:20:00,15.6,15.6,17.878109782141686 + 11/21 20:30:00,15.6,15.6,17.888387695845077 + 11/21 20:40:00,15.6,15.6,17.89820303301751 + 11/21 20:50:00,15.6,15.6,17.90759087343539 + 11/21 21:00:00,15.6,15.6,17.91655598050828 + 11/21 21:10:00,15.6,15.6,17.90315943938876 + 11/21 21:20:00,15.6,15.6,17.916647238025555 + 11/21 21:30:00,15.6,15.6,17.925489190799575 + 11/21 21:40:00,15.6,15.6,17.934122955981665 + 11/21 21:50:00,15.6,15.6,17.942590863521788 + 11/21 22:00:00,15.6,15.6,17.95089368025952 + 11/21 22:10:00,15.6,15.6,17.956946611041347 + 11/21 22:20:00,15.6,15.6,17.962861981242843 + 11/21 22:30:00,15.6,15.6,17.968765494616187 + 11/21 22:40:00,15.6,15.6,17.974653062159285 + 11/21 22:50:00,15.6,15.6,17.98050152107903 + 11/21 23:00:00,15.6,15.6,17.986297665278199 + 11/21 23:10:00,15.6,15.6,19.364101695470443 + 11/21 23:20:00,15.6,15.6,19.50731629259072 + 11/21 23:30:00,15.6,15.6,19.571855139486858 + 11/21 23:40:00,15.6,15.6,19.623311206756367 + 11/21 23:50:00,15.6,15.6,19.665215292959556 + 11/21 24:00:00,15.6,15.6,19.700794457962336 + 11/22 00:10:00,15.6,15.6,19.735141318422789 + 11/22 00:20:00,15.6,15.6,19.766016613918337 + 11/22 00:30:00,15.6,15.6,19.793987314451408 + 11/22 00:40:00,15.6,15.6,19.819590966351567 + 11/22 00:50:00,15.6,15.6,19.843219940822029 + 11/22 01:00:00,15.6,15.6,19.865112464102145 + 11/22 01:10:00,15.6,15.6,19.880948966234994 + 11/22 01:20:00,15.6,15.6,19.895776336327577 + 11/22 01:30:00,15.6,15.6,19.909813711531457 + 11/22 01:40:00,15.6,15.6,19.923190128757793 + 11/22 01:50:00,15.6,15.6,19.935900741585784 + 11/22 02:00:00,15.6,15.6,19.948162472048254 + 11/22 02:10:00,15.6,15.6,19.961197100115557 + 11/22 02:20:00,15.6,15.6,19.97366514640248 + 11/22 02:30:00,15.6,15.6,19.98559181666353 + 11/22 02:40:00,15.6,15.6,19.996931772937143 + 11/22 02:50:00,15.6,15.6,20.007817108509355 + 11/22 03:00:00,15.6,15.6,20.018306662015318 + 11/22 03:10:00,15.6,15.6,20.029518557830916 + 11/22 03:20:00,15.6,15.6,20.04032660965645 + 11/22 03:30:00,15.6,15.6,20.050676670764095 + 11/22 03:40:00,15.6,15.6,20.060615558270269 + 11/22 03:50:00,15.6,15.6,20.070256120316246 + 11/22 04:00:00,15.6,15.6,20.079559476673997 + 11/22 04:10:00,15.6,15.6,20.087278217142296 + 11/22 04:20:00,15.6,15.6,20.094713334108066 + 11/22 04:30:00,15.6,15.6,20.101829699847909 + 11/22 04:40:00,15.6,15.6,20.108810045334484 + 11/22 04:50:00,15.6,15.6,20.115578486023578 + 11/22 05:00:00,15.6,15.6,20.122144646917659 + 11/22 05:10:00,15.6,15.6,20.13068125971791 + 11/22 05:20:00,15.6,15.6,20.138965652602218 + 11/22 05:30:00,15.6,15.6,20.14718806975725 + 11/22 05:40:00,15.6,15.6,20.155282218020056 + 11/22 05:50:00,15.6,15.6,20.163243424335385 + 11/22 06:00:00,15.6,15.6,20.17107701540288 + 11/22 06:10:00,15.6,15.6,20.17631215119876 + 11/22 06:20:00,15.6,15.6,20.181401337576334 + 11/22 06:30:00,15.6,15.6,20.186327896139998 + 11/22 06:40:00,15.6,15.6,20.19105622037304 + 11/22 06:50:00,15.6,15.6,20.195596763490557 + 11/22 07:00:00,15.6,15.6,20.1999130861733 + 11/22 07:05:00,15.6,15.6,18.192878913303099 + 11/22 07:10:00,15.6,15.6,18.192975759448026 + 11/22 07:20:00,15.6,15.6,17.96192702768923 + 11/22 07:30:00,15.6,15.6,17.8760323358713 + 11/22 07:40:00,15.6,15.6,17.808413625939754 + 11/22 07:50:00,15.6,15.6,17.754489381974648 + 11/22 08:00:00,15.6,15.6,17.709358571922939 + 11/22 08:05:00,15.6,15.6,16.221446685560449 + 11/22 08:10:00,15.6,15.6,16.221389201350413 + 11/22 08:20:00,15.6,15.6,16.001235645487517 + 11/22 08:30:00,15.6,15.6,15.89538520328943 + 11/22 08:40:00,15.6,15.6,15.806424758986003 + 11/22 08:50:00,15.6,15.6,15.730578475698776 + 11/22 09:00:00,15.6,15.6,15.663677388711449 + 11/22 09:10:00,15.6,15.6,15.573216445767934 + 11/22 09:20:00,15.6,15.6,15.506093684697234 + 11/22 09:30:00,15.6,15.6,15.451166717112914 + 11/22 09:40:00,15.6,15.6,15.399938283984877 + 11/22 09:50:00,15.6,15.6,15.351741285234496 + 11/22 10:00:00,15.6,15.6,15.306157886284409 + 11/22 10:10:00,15.6,15.6,15.267482910739333 + 11/22 10:20:00,15.6,15.6,15.220246642644819 + 11/22 10:30:00,15.6,15.6,15.185633745780955 + 11/22 10:40:00,15.6,15.6,15.153252564412704 + 11/22 10:50:00,15.6,15.6,15.123356612772423 + 11/22 11:00:00,15.6,15.6,15.095993459779228 + 11/22 11:10:00,15.6,15.6,15.06994300115825 + 11/22 11:20:00,15.6,15.6,15.042466361843081 + 11/22 11:30:00,15.6,15.6,15.020449149364936 + 11/22 11:40:00,15.6,15.6,14.999605651438366 + 11/22 11:50:00,15.6,15.6,14.978985500910838 + 11/22 12:00:00,15.6,15.6,14.95995201650704 + 11/22 12:10:00,15.6,15.6,14.9373718883199 + 11/22 12:20:00,15.6,15.6,14.92302141346269 + 11/22 12:30:00,15.6,15.6,14.900903075141498 + 11/22 12:40:00,15.6,15.6,14.877736902742724 + 11/22 12:50:00,15.6,15.6,14.85467280083139 + 11/22 13:00:00,15.6,15.6,14.834492180557007 + 11/22 13:10:00,15.6,15.6,14.814493605070494 + 11/22 13:20:00,15.6,15.6,14.784239479105468 + 11/22 13:30:00,15.6,15.6,14.766957003424123 + 11/22 13:40:00,15.507507507507507,15.507507507507507,14.747298319586303 + 11/22 13:50:00,15.415015015015016,15.415015015015016,14.73131082182628 + 11/22 14:00:00,15.322522522522523,15.322522522522523,14.714913342640275 + 11/22 14:10:00,15.276276276276276,15.276276276276276,14.70124621314866 + 11/22 14:20:00,15.23003003003003,15.23003003003003,14.694540479446156 + 11/22 14:30:00,15.183783783783785,15.183783783783785,14.6825874135288 + 11/22 14:40:00,15.137537537537538,15.137537537537538,14.674959114268964 + 11/22 14:50:00,15.091291291291292,15.091291291291292,14.66677872961617 + 11/22 15:00:00,15.045045045045045,15.045045045045045,14.65964863946393 + 11/22 15:10:00,15.045045045045045,15.045045045045045,14.653442568280573 + 11/22 15:20:00,15.045045045045045,15.045045045045045,14.648985481872403 + 11/22 15:30:00,15.045045045045045,15.045045045045045,14.64446707234797 + 11/22 15:40:00,15.045045045045045,15.045045045045045,14.640826590735314 + 11/22 15:50:00,15.045045045045045,15.045045045045045,14.635268845009977 + 11/22 16:00:00,15.045045045045045,15.045045045045045,14.633311708206796 + 11/22 16:05:00,15.091291291291292,15.091291291291292,16.802902400557213 + 11/22 16:10:00,15.091291291291292,15.091291291291292,16.80181562427734 + 11/22 16:20:00,15.137537537537538,15.137537537537538,17.05133534473997 + 11/22 16:30:00,15.183783783783785,15.183783783783785,17.1531031737153 + 11/22 16:40:00,15.23003003003003,15.23003003003003,17.231975892355423 + 11/22 16:50:00,15.276276276276276,15.276276276276276,17.294242142894409 + 11/22 17:00:00,15.322522522522523,15.322522522522523,17.345109007212686 + 11/22 17:10:00,15.415015015015016,15.415015015015016,17.415990882868248 + 11/22 17:20:00,15.507507507507507,15.507507507507507,17.475460297297084 + 11/22 17:30:00,15.6,15.6,17.510911171934859 + 11/22 17:40:00,15.6,15.6,17.54290195889129 + 11/22 17:50:00,15.6,15.6,17.571702498681668 + 11/22 18:00:00,15.6,15.6,17.597543990011546 + 11/22 18:10:00,15.6,15.6,17.634906304858278 + 11/22 18:20:00,15.6,15.6,17.662847846724448 + 11/22 18:30:00,15.6,15.6,17.683235013445754 + 11/22 18:40:00,15.6,15.6,17.70202992804489 + 11/22 18:50:00,15.6,15.6,17.719428987458586 + 11/22 19:00:00,15.6,15.6,17.735598033672827 + 11/22 19:10:00,15.6,15.6,17.750657809191169 + 11/22 19:20:00,15.6,15.6,17.764569608022748 + 11/22 19:30:00,15.6,15.6,17.777610610384316 + 11/22 19:40:00,15.6,15.6,17.789859368170427 + 11/22 19:50:00,15.6,15.6,17.801420947636385 + 11/22 20:00:00,15.6,15.6,17.812413346337629 + 11/22 20:10:00,15.6,15.6,17.836371640608925 + 11/22 20:20:00,15.6,15.6,17.847368062733989 + 11/22 20:30:00,15.6,15.6,17.857483160972167 + 11/22 20:40:00,15.6,15.6,17.8670821861161 + 11/22 20:50:00,15.6,15.6,17.876196515329569 + 11/22 21:00:00,15.6,15.6,17.8849014689535 + 11/22 21:10:00,15.6,15.6,17.869210798760628 + 11/22 21:20:00,15.6,15.6,17.880466579423108 + 11/22 21:30:00,15.6,15.6,17.88708112944863 + 11/22 21:40:00,15.6,15.6,17.893525221155185 + 11/22 21:50:00,15.6,15.6,17.899817389154256 + 11/22 22:00:00,15.6,15.6,17.905955762616693 + 11/22 22:10:00,15.6,15.6,17.912960757268274 + 11/22 22:20:00,15.6,15.6,17.919698745303856 + 11/22 22:30:00,15.6,15.6,17.926290579633336 + 11/22 22:40:00,15.6,15.6,17.932670833903815 + 11/22 22:50:00,15.6,15.6,17.938848760037048 + 11/22 23:00:00,15.6,15.6,17.944964041107359 + 11/22 23:10:00,15.6,15.6,19.32348151884941 + 11/22 23:20:00,15.6,15.6,19.46712147939114 + 11/22 23:30:00,15.6,15.6,19.531656279418319 + 11/22 23:40:00,15.6,15.6,19.582792212201416 + 11/22 23:50:00,15.6,15.6,19.62440407183987 + 11/22 24:00:00,15.6,15.6,19.65959945087095 + 11/23 00:10:00,15.6,15.6,19.68747503053424 + 11/23 00:20:00,15.6,15.6,19.71179069341243 + 11/23 00:30:00,15.6,15.6,19.73330664878244 + 11/23 00:40:00,15.6,15.6,19.752686032103854 + 11/23 00:50:00,15.6,15.6,19.770316733024207 + 11/23 01:00:00,15.6,15.6,19.786606030297066 + 11/23 01:10:00,15.6,15.6,19.80383930459463 + 11/23 01:20:00,15.6,15.6,19.820084353747988 + 11/23 01:30:00,15.6,15.6,19.835484154476697 + 11/23 01:40:00,15.6,15.6,19.85015638488308 + 11/23 01:50:00,15.6,15.6,19.86413457361416 + 11/23 02:00:00,15.6,15.6,19.87748872242504 + 11/23 02:10:00,15.6,15.6,19.891620496109604 + 11/23 02:20:00,15.6,15.6,19.90503334526782 + 11/23 02:30:00,15.6,15.6,19.917890372856186 + 11/23 02:40:00,15.6,15.6,19.93026951859166 + 11/23 02:50:00,15.6,15.6,19.94225491560252 + 11/23 03:00:00,15.6,15.6,19.953904920257004 + 11/23 03:10:00,15.6,15.6,19.96190747081944 + 11/23 03:20:00,15.6,15.6,19.969668955107438 + 11/23 03:30:00,15.6,15.6,19.97714954158824 + 11/23 03:40:00,15.6,15.6,19.9843699436675 + 11/23 03:50:00,15.6,15.6,19.99139018452932 + 11/23 04:00:00,15.6,15.6,19.998254761097358 + 11/23 04:10:00,15.6,15.6,20.006691552905779 + 11/23 04:20:00,15.6,15.6,20.01496662413758 + 11/23 04:30:00,15.6,15.6,20.022946575465054 + 11/23 04:40:00,15.6,15.6,20.030604957372959 + 11/23 04:50:00,15.6,15.6,20.03787026148092 + 11/23 05:00:00,15.6,15.6,20.0448466341741 + 11/23 05:10:00,15.6,15.6,20.051653247891193 + 11/23 05:20:00,15.6,15.6,20.058429641250574 + 11/23 05:30:00,15.6,15.6,20.0652669745936 + 11/23 05:40:00,15.6,15.6,20.072148713086919 + 11/23 05:50:00,15.6,15.6,20.079091778963425 + 11/23 06:00:00,15.6,15.6,20.086166933757576 + 11/23 06:10:00,15.6,15.6,20.093209178005453 + 11/23 06:20:00,15.6,15.6,20.100065955071618 + 11/23 06:30:00,15.6,15.6,20.106621794678376 + 11/23 06:40:00,15.6,15.6,20.11280809308244 + 11/23 06:50:00,15.6,15.6,20.118782996776728 + 11/23 07:00:00,15.6,15.6,20.124473393840895 + 11/23 07:10:00,15.6,15.6,20.15252302882722 + 11/23 07:20:00,15.6,15.6,20.15767224722119 + 11/23 07:30:00,15.6,15.6,20.161997335434326 + 11/23 07:40:00,15.6,15.6,20.165126562454949 + 11/23 07:50:00,15.6,15.6,20.16700831736402 + 11/23 08:00:00,15.6,15.6,20.167572302622383 + 11/23 08:10:00,15.6,15.6,18.76064428145563 + 11/23 08:20:00,15.6,15.6,18.593153148778215 + 11/23 08:30:00,15.6,15.6,18.523770279873543 + 11/23 08:40:00,15.6,15.6,18.466352299374209 + 11/23 08:50:00,15.6,15.6,18.41773582884058 + 11/23 09:00:00,15.6,15.6,18.374626329197875 + 11/23 09:10:00,15.6,15.6,18.335385351380294 + 11/23 09:20:00,15.6,15.6,18.289955724004117 + 11/23 09:30:00,15.6,15.6,18.255470323203807 + 11/23 09:40:00,15.6,15.6,18.223081214351873 + 11/23 09:50:00,15.6,15.6,18.192933246036163 + 11/23 10:00:00,15.6,15.6,18.16493150622221 + 11/23 10:10:00,15.6,15.6,18.139863030857297 + 11/23 10:20:00,15.557957957957957,15.557957957957957,18.10908930882286 + 11/23 10:30:00,15.46126126126126,15.46126126126126,18.089617953602518 + 11/23 10:40:00,15.364564564564564,15.364564564564564,18.07207600341166 + 11/23 10:50:00,15.267867867867868,15.267867867867868,18.055614758177105 + 11/23 11:00:00,15.17117117117117,15.17117117117117,18.039667241101215 + 11/23 11:10:00,15.124924924924925,15.124924924924925,18.023823276811056 + 11/23 11:20:00,15.078678678678678,15.078678678678678,18.00826026013848 + 11/23 11:30:00,15.032432432432433,15.032432432432433,17.99313608407682 + 11/23 11:40:00,14.986186186186187,14.986186186186187,17.978719102710465 + 11/23 11:50:00,14.93993993993994,14.93993993993994,17.965608095746619 + 11/23 12:00:00,14.893693693693694,14.893693693693694,17.95414666379736 + 11/23 12:10:00,14.872672672672673,14.872672672672673,17.945346133026694 + 11/23 12:20:00,14.85165165165165,14.85165165165165,17.9383107674849 + 11/23 12:30:00,14.83063063063063,14.83063063063063,17.932605430409056 + 11/23 12:40:00,14.809609609609609,14.809609609609609,17.927939164050576 + 11/23 12:50:00,14.788588588588589,14.788588588588589,17.923788620731533 + 11/23 13:00:00,14.767567567567568,14.767567567567568,17.919861816433355 + 11/23 13:10:00,14.742342342342342,14.742342342342342,17.91419146218502 + 11/23 13:20:00,14.717117117117116,14.717117117117116,17.908179661716937 + 11/23 13:30:00,14.691891891891892,14.691891891891892,17.90216795968832 + 11/23 13:40:00,14.666666666666668,14.666666666666668,17.896153213059355 + 11/23 13:50:00,14.641441441441442,14.641441441441442,17.890011827035058 + 11/23 14:00:00,14.616216216216217,14.616216216216217,17.88362850172551 + 11/23 14:10:00,14.616216216216217,14.616216216216217,17.878368746400363 + 11/23 14:20:00,14.616216216216217,14.616216216216217,17.873392452140697 + 11/23 14:30:00,14.616216216216217,14.616216216216217,17.86862252557132 + 11/23 14:40:00,14.616216216216217,14.616216216216217,17.864135566271736 + 11/23 14:50:00,14.616216216216217,14.616216216216217,17.86032366568008 + 11/23 15:00:00,14.616216216216217,14.616216216216217,17.857172099404225 + 11/23 15:10:00,14.595195195195196,14.595195195195196,17.854489230381135 + 11/23 15:20:00,14.574174174174175,14.574174174174175,17.852642111317146 + 11/23 15:30:00,14.553153153153153,14.553153153153153,17.85132562654828 + 11/23 15:40:00,14.532132132132132,14.532132132132132,17.850503146420004 + 11/23 15:50:00,14.511111111111111,14.511111111111111,17.850029081561403 + 11/23 16:00:00,14.49009009009009,14.49009009009009,17.850033839632489 + 11/23 16:10:00,14.511111111111111,14.511111111111111,19.28201584091153 + 11/23 16:20:00,14.532132132132132,14.532132132132132,19.43265173974551 + 11/23 16:30:00,14.553153153153153,14.553153153153153,19.496953281376766 + 11/23 16:40:00,14.574174174174175,14.574174174174175,19.547340863638384 + 11/23 16:50:00,14.595195195195196,14.595195195195196,19.587973214429625 + 11/23 17:00:00,14.616216216216217,14.616216216216217,19.622322771978867 + 11/23 17:10:00,14.616216216216217,14.616216216216217,19.65277187335949 + 11/23 17:20:00,14.616216216216217,14.616216216216217,19.68875423656309 + 11/23 17:30:00,14.616216216216217,14.616216216216217,19.713461298873996 + 11/23 17:40:00,14.616216216216217,14.616216216216217,19.73609307053206 + 11/23 17:50:00,14.616216216216217,14.616216216216217,19.75656862417241 + 11/23 18:00:00,14.616216216216217,14.616216216216217,19.774891647861819 + 11/23 18:10:00,14.641441441441442,14.641441441441442,19.79152913125098 + 11/23 18:20:00,14.666666666666666,14.666666666666666,19.824058619311189 + 11/23 18:30:00,14.691891891891892,14.691891891891892,19.837332878396013 + 11/23 18:40:00,14.717117117117118,14.717117117117118,19.84915135809707 + 11/23 18:50:00,14.742342342342342,14.742342342342342,19.859860073246599 + 11/23 19:00:00,14.767567567567568,14.767567567567568,19.86949973597884 + 11/23 19:10:00,14.788588588588589,14.788588588588589,19.878386730762693 + 11/23 19:20:00,14.809609609609609,14.809609609609609,19.886884427021096 + 11/23 19:30:00,14.83063063063063,14.83063063063063,19.895011962354024 + 11/23 19:40:00,14.85165165165165,14.85165165165165,19.902817907755794 + 11/23 19:50:00,14.872672672672673,14.872672672672673,19.91037501237163 + 11/23 20:00:00,14.893693693693694,14.893693693693694,19.91767179229597 + 11/23 20:10:00,14.91891891891892,14.91891891891892,19.923213920689947 + 11/23 20:20:00,14.944144144144144,14.944144144144144,19.92856863110439 + 11/23 20:30:00,14.96936936936937,14.96936936936937,19.933631689278497 + 11/23 20:40:00,14.994594594594595,14.994594594594595,19.938385843741274 + 11/23 20:50:00,15.01981981981982,15.01981981981982,19.94286610787743 + 11/23 21:00:00,15.045045045045045,15.045045045045045,19.947141740619853 + 11/23 21:10:00,15.091291291291292,15.091291291291292,19.9298631698829 + 11/23 21:20:00,15.137537537537538,15.137537537537538,19.93542016784138 + 11/23 21:30:00,15.183783783783785,15.183783783783785,19.941047274172786 + 11/23 21:40:00,15.23003003003003,15.23003003003003,19.946783123651536 + 11/23 21:50:00,15.276276276276276,15.276276276276276,19.95267621208827 + 11/23 22:00:00,15.322522522522523,15.322522522522523,19.958618610413319 + 11/23 22:10:00,15.393993993993995,15.393993993993995,19.966198935874766 + 11/23 22:20:00,15.465465465465466,15.465465465465466,19.97386269231098 + 11/23 22:30:00,15.536936936936936,15.536936936936936,19.981320645394296 + 11/23 22:40:00,15.6,15.6,19.98880212509728 + 11/23 22:50:00,15.6,15.6,19.996168745266723 + 11/23 23:00:00,15.6,15.6,20.00343053952365 + 11/23 23:10:00,15.6,15.6,20.00709856769754 + 11/23 23:20:00,15.6,15.6,20.010555628649756 + 11/23 23:30:00,15.6,15.6,20.014051421488863 + 11/23 23:40:00,15.6,15.6,20.017535972413279 + 11/23 23:50:00,15.6,15.6,20.02104896070735 + 11/23 24:00:00,15.6,15.6,20.024492488306927 + 11/24 00:10:00,15.6,15.6,20.032181156816713 + 11/24 00:20:00,15.6,15.6,20.039449894251253 + 11/24 00:30:00,15.6,15.6,20.04652651676347 + 11/24 00:40:00,15.6,15.6,20.05334823249658 + 11/24 00:50:00,15.6,15.6,20.05993825383442 + 11/24 01:00:00,15.6,15.6,20.066342770754106 + 11/24 01:10:00,15.6,15.6,20.07003678990149 + 11/24 01:20:00,15.6,15.6,20.07382909325725 + 11/24 01:30:00,15.6,15.6,20.077535202459808 + 11/24 01:40:00,15.6,15.6,20.081333298361107 + 11/24 01:50:00,15.6,15.6,20.085034611555455 + 11/24 02:00:00,15.6,15.6,20.088685270672664 + 11/24 02:10:00,15.6,15.6,20.08808771525761 + 11/24 02:20:00,15.6,15.6,20.087290550319197 + 11/24 02:30:00,15.6,15.6,20.086416047744483 + 11/24 02:40:00,15.6,15.6,20.08540665173002 + 11/24 02:50:00,15.6,15.6,20.084222966435957 + 11/24 03:00:00,15.6,15.6,20.083050811779349 + 11/24 03:10:00,15.6,15.6,20.083349808597779 + 11/24 03:20:00,15.6,15.6,20.083599516753606 + 11/24 03:30:00,15.6,15.6,20.083842543327916 + 11/24 03:40:00,15.6,15.6,20.08401555007748 + 11/24 03:50:00,15.6,15.6,20.084201133282844 + 11/24 04:00:00,15.6,15.6,20.084445061360058 + 11/24 04:10:00,15.6,15.6,20.08645272242618 + 11/24 04:20:00,15.6,15.6,20.088456990690035 + 11/24 04:30:00,15.6,15.6,20.09035972408711 + 11/24 04:40:00,15.6,15.6,20.092204624403718 + 11/24 04:50:00,15.6,15.6,20.094096080313905 + 11/24 05:00:00,15.6,15.6,20.09593181359904 + 11/24 05:10:00,15.6,15.6,20.098065970471678 + 11/24 05:20:00,15.6,15.6,20.10001865592824 + 11/24 05:30:00,15.6,15.6,20.101836779472209 + 11/24 05:40:00,15.6,15.6,20.10364075662855 + 11/24 05:50:00,15.6,15.6,20.105381931397184 + 11/24 06:00:00,15.6,15.6,20.107069617778238 + 11/24 06:10:00,15.6,15.6,20.10853500750279 + 11/24 06:20:00,15.6,15.6,20.109950293237835 + 11/24 06:30:00,15.6,15.6,20.111719572755918 + 11/24 06:40:00,15.6,15.6,20.11366540205182 + 11/24 06:50:00,15.6,15.6,20.115800906806414 + 11/24 07:00:00,15.6,15.6,20.118116471099854 + 11/24 07:10:00,15.6,15.6,18.122177733249797 + 11/24 07:20:00,15.6,15.6,17.890326145841187 + 11/24 07:30:00,15.6,15.6,17.804213115034995 + 11/24 07:40:00,15.6,15.6,17.73629483828931 + 11/24 07:50:00,15.6,15.6,17.681999308674834 + 11/24 08:00:00,15.6,15.6,17.636459132961137 + 11/24 08:10:00,15.6,15.6,16.15546888898627 + 11/24 08:20:00,15.6,15.6,15.935464532937882 + 11/24 08:30:00,15.6,15.6,15.82972828953508 + 11/24 08:40:00,15.6,15.6,15.741483371430802 + 11/24 08:50:00,15.6,15.6,15.66639876779567 + 11/24 09:00:00,15.6,15.6,15.600137140167729 + 11/24 09:10:00,15.528528528528529,15.528528528528529,15.514953811028418 + 11/24 09:20:00,15.457057057057057,15.457057057057057,15.452813678073755 + 11/24 09:30:00,15.385585585585586,15.385585585585586,15.402336449013847 + 11/24 09:40:00,15.314114114114114,15.314114114114114,15.35532689459289 + 11/24 09:50:00,15.242642642642644,15.242642642642644,15.311401542013611 + 11/24 10:00:00,15.17117117117117,15.17117117117117,15.270314888786185 + 11/24 10:10:00,15.103903903903904,15.103903903903904,15.231294989990142 + 11/24 10:20:00,15.036636636636637,15.036636636636637,15.179842972576335 + 11/24 10:30:00,14.96936936936937,14.96936936936937,15.140366713409384 + 11/24 10:40:00,14.902102102102102,14.902102102102102,15.101928574826792 + 11/24 10:50:00,14.834834834834835,14.834834834834835,15.065652814901436 + 11/24 11:00:00,14.767567567567568,14.767567567567568,15.031587125119037 + 11/24 11:10:00,14.788588588588589,14.788588588588589,15.000537537909477 + 11/24 11:20:00,14.809609609609609,14.809609609609609,14.97202168879299 + 11/24 11:30:00,14.83063063063063,14.83063063063063,14.949004417654449 + 11/24 11:40:00,14.85165165165165,14.85165165165165,14.92833342650769 + 11/24 11:50:00,14.872672672672673,14.872672672672673,14.908882714449297 + 11/24 12:00:00,14.893693693693694,14.893693693693694,14.890527984295386 + 11/24 12:10:00,14.893693693693694,14.893693693693694,14.871633664179372 + 11/24 12:20:00,14.893693693693694,14.893693693693694,14.86473426559357 + 11/24 12:30:00,14.893693693693694,14.893693693693694,14.84884534832001 + 11/24 12:40:00,14.893693693693694,14.893693693693694,14.833724511578792 + 11/24 12:50:00,14.893693693693694,14.893693693693694,14.819051561940196 + 11/24 13:00:00,14.893693693693694,14.893693693693694,14.805235644621506 + 11/24 13:10:00,14.872672672672673,14.872672672672673,14.792581148804901 + 11/24 13:20:00,14.85165165165165,14.85165165165165,14.76924110159071 + 11/24 13:30:00,14.83063063063063,14.83063063063063,14.753718945902492 + 11/24 13:40:00,14.809609609609609,14.809609609609609,14.7410827418927 + 11/24 13:50:00,14.788588588588589,14.788588588588589,14.72506907498681 + 11/24 14:00:00,14.767567567567568,14.767567567567568,14.71144251917262 + 11/24 14:10:00,14.813813813813815,14.813813813813815,14.697075205047993 + 11/24 14:20:00,14.860060060060059,14.860060060060059,14.68757882807589 + 11/24 14:30:00,14.906306306306306,14.906306306306306,14.676503464012033 + 11/24 14:40:00,14.952552552552552,14.952552552552552,14.663487482427497 + 11/24 14:50:00,14.998798798798799,14.998798798798799,14.655397181315795 + 11/24 15:00:00,15.045045045045045,15.045045045045045,14.647859820233938 + 11/24 15:10:00,15.01981981981982,15.01981981981982,14.640414538925464 + 11/24 15:20:00,14.994594594594594,14.994594594594594,14.639592824887832 + 11/24 15:30:00,14.96936936936937,14.96936936936937,14.633361898261864 + 11/24 15:40:00,14.944144144144144,14.944144144144144,14.629883896180898 + 11/24 15:50:00,14.91891891891892,14.91891891891892,14.627538356993677 + 11/24 16:00:00,14.893693693693694,14.893693693693694,14.622355929755829 + 11/24 16:05:00,14.965165165165164,14.965165165165164,16.78452166482347 + 11/24 16:10:00,14.965165165165164,14.965165165165164,16.783519542720847 + 11/24 16:20:00,15.036636636636637,15.036636636636637,17.03450399858901 + 11/24 16:30:00,15.108108108108109,15.108108108108109,17.132327108381447 + 11/24 16:40:00,15.17957957957958,15.17957957957958,17.209449362660146 + 11/24 16:50:00,15.251051051051052,15.251051051051052,17.271209973730426 + 11/24 17:00:00,15.322522522522523,15.322522522522523,17.322674125981075 + 11/24 17:10:00,15.44024024024024,15.44024024024024,17.390566702162386 + 11/24 17:20:00,15.557957957957957,15.557957957957957,17.449657464564809 + 11/24 17:30:00,15.6,15.6,17.485035091355948 + 11/24 17:40:00,15.6,15.6,17.51722770626796 + 11/24 17:50:00,15.6,15.6,17.54643959820128 + 11/24 18:00:00,15.6,15.6,17.572866683369726 + 11/24 18:10:00,15.6,15.6,17.611075377875208 + 11/24 18:20:00,15.6,15.6,17.639683813076318 + 11/24 18:30:00,15.6,15.6,17.660482526093909 + 11/24 18:40:00,15.6,15.6,17.679464860222539 + 11/24 18:50:00,15.6,15.6,17.696903817104017 + 11/24 19:00:00,15.6,15.6,17.71300052426714 + 11/24 19:10:00,15.6,15.6,17.726884661285255 + 11/24 19:20:00,15.6,15.6,17.739965673095538 + 11/24 19:30:00,15.6,15.6,17.75241631357924 + 11/24 19:40:00,15.6,15.6,17.764392401455078 + 11/24 19:50:00,15.6,15.6,17.775846817263309 + 11/24 20:00:00,15.6,15.6,17.78686347420754 + 11/24 20:10:00,15.6,15.6,17.810734817105098 + 11/24 20:20:00,15.6,15.6,17.82159075023435 + 11/24 20:30:00,15.6,15.6,17.83162839377959 + 11/24 20:40:00,15.6,15.6,17.841180759486574 + 11/24 20:50:00,15.6,15.6,17.85030423167808 + 11/24 21:00:00,15.6,15.6,17.859080313942135 + 11/24 21:10:00,15.6,15.6,17.845315262325216 + 11/24 21:20:00,15.6,15.6,17.858365247448395 + 11/24 21:30:00,15.6,15.6,17.86670182511257 + 11/24 21:40:00,15.6,15.6,17.874772457389804 + 11/24 21:50:00,15.6,15.6,17.882607043384295 + 11/24 22:00:00,15.6,15.6,17.89021073550151 + 11/24 22:10:00,15.6,15.6,17.897119928821409 + 11/24 22:20:00,15.6,15.6,17.9038581683695 + 11/24 22:30:00,15.6,15.6,17.910434557056378 + 11/24 22:40:00,15.6,15.6,17.916830233619128 + 11/24 22:50:00,15.6,15.6,17.922981481553284 + 11/24 23:00:00,15.6,15.6,17.92904495784659 + 11/24 23:10:00,15.6,15.6,19.30467780804225 + 11/24 23:20:00,15.6,15.6,19.44812407188586 + 11/24 23:30:00,15.6,15.6,19.512335280841943 + 11/24 23:40:00,15.6,15.6,19.56321020163523 + 11/24 23:50:00,15.6,15.6,19.604549210541806 + 11/24 24:00:00,15.6,15.6,19.639478274874045 + 11/25 00:10:00,15.6,15.6,19.670275275097525 + 11/25 00:20:00,15.6,15.6,19.69758803833104 + 11/25 00:30:00,15.6,15.6,19.722130555980855 + 11/25 00:40:00,15.6,15.6,19.74453086197768 + 11/25 00:50:00,15.6,15.6,19.76517775760418 + 11/25 01:00:00,15.6,15.6,19.784332682274923 + 11/25 01:10:00,15.6,15.6,19.80218721359823 + 11/25 01:20:00,15.6,15.6,19.81890070527899 + 11/25 01:30:00,15.6,15.6,19.834612641224287 + 11/25 01:40:00,15.6,15.6,19.84951715274493 + 11/25 01:50:00,15.6,15.6,19.863648643500846 + 11/25 02:00:00,15.6,15.6,19.877052457508709 + 11/25 02:10:00,15.6,15.6,19.889248700710416 + 11/25 02:20:00,15.6,15.6,19.90085293561653 + 11/25 02:30:00,15.6,15.6,19.912045591627494 + 11/25 02:40:00,15.6,15.6,19.92278950037516 + 11/25 02:50:00,15.6,15.6,19.933120195798879 + 11/25 03:00:00,15.6,15.6,19.943066098815899 + 11/25 03:10:00,15.6,15.6,19.952725401929688 + 11/25 03:20:00,15.6,15.6,19.96221378595764 + 11/25 03:30:00,15.6,15.6,19.971471245098149 + 11/25 03:40:00,15.6,15.6,19.980513934055023 + 11/25 03:50:00,15.6,15.6,19.989352034877876 + 11/25 04:00:00,15.6,15.6,19.997912371966956 + 11/25 04:10:00,15.6,15.6,20.006815944282037 + 11/25 04:20:00,15.6,15.6,20.015547320973785 + 11/25 04:30:00,15.6,15.6,20.02406379073714 + 11/25 04:40:00,15.6,15.6,20.0323766658683 + 11/25 04:50:00,15.6,15.6,20.040434440478586 + 11/25 05:00:00,15.6,15.6,20.048311883916044 + 11/25 05:10:00,15.6,15.6,20.053016744859528 + 11/25 05:20:00,15.6,15.6,20.057564339209497 + 11/25 05:30:00,15.6,15.6,20.062040569051989 + 11/25 05:40:00,15.6,15.6,20.066403362162803 + 11/25 05:50:00,15.6,15.6,20.07065764655434 + 11/25 06:00:00,15.6,15.6,20.074911911652167 + 11/25 06:10:00,15.6,15.6,20.0799041628704 + 11/25 06:20:00,15.6,15.6,20.08475417532143 + 11/25 06:30:00,15.6,15.6,20.089372835532794 + 11/25 06:40:00,15.6,15.6,20.093694258674128 + 11/25 06:50:00,15.6,15.6,20.097909890238996 + 11/25 07:00:00,15.6,15.6,20.101945538741849 + 11/25 07:10:00,15.6,15.6,19.446724093334347 + 11/25 07:20:00,15.6,15.6,19.38514975186684 + 11/25 07:30:00,15.6,15.6,19.362760105488797 + 11/25 07:40:00,15.6,15.6,19.345478478506917 + 11/25 07:50:00,15.6,15.6,19.33163063005313 + 11/25 08:00:00,15.6,15.6,19.319561152187839 + 11/25 08:10:00,15.6,15.6,18.226042145998745 + 11/25 08:20:00,15.6,15.6,18.074783749768828 + 11/25 08:30:00,15.6,15.6,18.006318708669583 + 11/25 08:40:00,15.6,15.6,17.948738596007109 + 11/25 08:50:00,15.6,15.6,17.89931728620729 + 11/25 09:00:00,15.6,15.6,17.855345400481487 + 11/25 09:10:00,15.6,15.6,17.815419930629625 + 11/25 09:20:00,15.6,15.6,17.769731465733576 + 11/25 09:30:00,15.6,15.6,17.735244723057265 + 11/25 09:40:00,15.6,15.6,17.70281564566063 + 11/25 09:50:00,15.6,15.6,17.67213179053561 + 11/25 10:00:00,15.6,15.6,17.643008436155939 + 11/25 10:10:00,15.6,15.6,17.615507020640505 + 11/25 10:20:00,15.6,15.6,17.580226789581844 + 11/25 10:30:00,15.6,15.6,17.55471126075317 + 11/25 10:40:00,15.6,15.6,17.530302555632525 + 11/25 10:50:00,15.591591591591591,15.591591591591591,17.507232075242475 + 11/25 11:00:00,15.448648648648648,15.448648648648648,17.485591554412357 + 11/25 11:10:00,15.381381381381381,15.381381381381381,17.465615835600898 + 11/25 11:20:00,15.314114114114114,15.314114114114114,17.44748683519255 + 11/25 11:30:00,15.246846846846847,15.246846846846847,17.43080852959141 + 11/25 11:40:00,15.17957957957958,15.17957957957958,17.415230259189035 + 11/25 11:50:00,15.112312312312313,15.112312312312313,17.400069869274917 + 11/25 12:00:00,15.045045045045045,15.045045045045045,17.385041147581846 + 11/25 12:10:00,14.973573573573575,14.973573573573575,17.36984022543311 + 11/25 12:20:00,14.902102102102102,14.902102102102102,17.354589300745155 + 11/25 12:30:00,14.83063063063063,14.83063063063063,17.339506677583576 + 11/25 12:40:00,14.759159159159159,14.759159159159159,17.324957125565424 + 11/25 12:50:00,14.687687687687689,14.687687687687689,17.311577492749657 + 11/25 13:00:00,14.616216216216217,14.616216216216217,17.29952816706644 + 11/25 13:10:00,14.523723723723723,14.523723723723723,17.289591644034667 + 11/25 13:20:00,14.431231231231232,14.431231231231232,17.28065519073198 + 11/25 13:30:00,14.338738738738739,14.338738738738739,17.27268286706629 + 11/25 13:40:00,14.246246246246246,14.246246246246246,17.265265386065495 + 11/25 13:50:00,14.153753753753755,14.153753753753755,17.25795251007212 + 11/25 14:00:00,14.061261261261262,14.061261261261262,17.250558775906066 + 11/25 14:10:00,14.015015015015015,14.015015015015015,17.242357814929865 + 11/25 14:20:00,13.968768768768769,13.968768768768769,17.23491617732386 + 11/25 14:30:00,13.922522522522524,13.922522522522524,17.22767881153035 + 11/25 14:40:00,13.876276276276278,13.876276276276278,17.22107629946737 + 11/25 14:50:00,13.83003003003003,13.83003003003003,17.215395121041419 + 11/25 15:00:00,13.783783783783785,13.783783783783785,17.21077938279643 + 11/25 15:10:00,13.783783783783785,13.783783783783785,17.208100600699259 + 11/25 15:20:00,13.783783783783785,13.783783783783785,17.206363322531425 + 11/25 15:30:00,13.783783783783785,13.783783783783785,17.205543735781288 + 11/25 15:40:00,13.783783783783785,13.783783783783785,17.205486727122936 + 11/25 15:50:00,13.783783783783785,13.783783783783785,17.20607700472631 + 11/25 16:00:00,13.783783783783785,13.783783783783785,17.207196541418616 + 11/25 16:10:00,13.851051051051052,13.851051051051052,17.208650166067075 + 11/25 16:20:00,13.91831831831832,13.91831831831832,17.211155486571607 + 11/25 16:30:00,13.985585585585586,13.985585585585586,17.21421482366599 + 11/25 16:40:00,14.052852852852853,14.052852852852853,17.217992391076299 + 11/25 16:50:00,14.12012012012012,14.12012012012012,17.222497596358069 + 11/25 17:00:00,14.187387387387388,14.187387387387388,17.227658218333329 + 11/25 17:10:00,14.25885885885886,14.25885885885886,17.246996766304855 + 11/25 17:20:00,14.33033033033033,14.33033033033033,17.26265036868795 + 11/25 17:30:00,14.401801801801803,14.401801801801803,17.26932285007906 + 11/25 17:40:00,14.473273273273274,14.473273273273274,17.275901779488046 + 11/25 17:50:00,14.544744744744746,14.544744744744746,17.281992558921574 + 11/25 18:00:00,14.616216216216217,14.616216216216217,17.287306173539088 + 11/25 18:10:00,14.662462462462463,14.662462462462463,19.06307318700971 + 11/25 18:20:00,14.70870870870871,14.70870870870871,19.274557867461398 + 11/25 18:30:00,14.754954954954954,14.754954954954954,19.358463077336439 + 11/25 18:40:00,14.8012012012012,14.8012012012012,19.423599194207399 + 11/25 18:50:00,14.847447447447447,14.847447447447447,19.475168239686608 + 11/25 19:00:00,14.893693693693694,14.893693693693694,19.51777518220709 + 11/25 19:10:00,14.986186186186187,14.986186186186187,19.56799938501483 + 11/25 19:20:00,15.078678678678678,15.078678678678678,19.601238369822128 + 11/25 19:30:00,15.17117117117117,15.17117117117117,19.630594332478695 + 11/25 19:40:00,15.263663663663664,15.263663663663664,19.65707620952742 + 11/25 19:50:00,15.356156156156157,15.356156156156157,19.681262048477657 + 11/25 20:00:00,15.448648648648648,15.448648648648648,19.703498188395647 + 11/25 20:10:00,15.448648648648648,15.448648648648648,19.722440551946855 + 11/25 20:20:00,15.448648648648648,15.448648648648648,19.73986854889645 + 11/25 20:30:00,15.448648648648648,15.448648648648648,19.75597209404189 + 11/25 20:40:00,15.448648648648648,15.448648648648648,19.770914265255198 + 11/25 20:50:00,15.448648648648648,15.448648648648648,19.784773519217738 + 11/25 21:00:00,15.448648648648648,15.448648648648648,19.797732790913924 + 11/25 21:10:00,15.52012012012012,15.52012012012012,19.78775311049531 + 11/25 21:20:00,15.591591591591591,15.591591591591591,19.79984998656296 + 11/25 21:30:00,15.6,15.6,19.811521110680414 + 11/25 21:40:00,15.6,15.6,19.822804241788618 + 11/25 21:50:00,15.6,15.6,19.833703811419363 + 11/25 22:00:00,15.6,15.6,19.84436267637685 + 11/25 22:10:00,15.6,15.6,19.85553180594792 + 11/25 22:20:00,15.6,15.6,19.866277242929905 + 11/25 22:30:00,15.6,15.6,19.876588950124466 + 11/25 22:40:00,15.6,15.6,19.886389735677957 + 11/25 22:50:00,15.6,15.6,19.895909646874263 + 11/25 23:00:00,15.6,15.6,19.90508305820272 + 11/25 23:10:00,15.6,15.6,19.912561031058986 + 11/25 23:20:00,15.6,15.6,19.91970373536457 + 11/25 23:30:00,15.6,15.6,19.926411549402869 + 11/25 23:40:00,15.6,15.6,19.932862539814868 + 11/25 23:50:00,15.6,15.6,19.939028643474317 + 11/25 24:00:00,15.6,15.6,19.944912706732553 + 11/26 00:10:00,15.6,15.6,19.950396123410575 + 11/26 00:20:00,15.6,15.6,19.95580281909171 + 11/26 00:30:00,15.6,15.6,19.96128890876369 + 11/26 00:40:00,15.6,15.6,19.96688195555787 + 11/26 00:50:00,15.6,15.6,19.97251696752239 + 11/26 01:00:00,15.6,15.6,19.97814423393783 + 11/26 01:10:00,15.6,15.6,19.984848097002506 + 11/26 01:20:00,15.6,15.6,19.991427498888247 + 11/26 01:30:00,15.6,15.6,19.997890644192144 + 11/26 01:40:00,15.6,15.6,20.004167956482648 + 11/26 01:50:00,15.6,15.6,20.010256541021254 + 11/26 02:00:00,15.6,15.6,20.01615248683784 + 11/26 02:10:00,15.6,15.6,20.021116019921388 + 11/26 02:20:00,15.6,15.6,20.026024682956547 + 11/26 02:30:00,15.6,15.6,20.030807795783106 + 11/26 02:40:00,15.6,15.6,20.035476347113126 + 11/26 02:50:00,15.6,15.6,20.04004191439209 + 11/26 03:00:00,15.6,15.6,20.044418585794124 + 11/26 03:10:00,15.6,15.6,20.050287627868444 + 11/26 03:20:00,15.6,15.6,20.056128259269046 + 11/26 03:30:00,15.6,15.6,20.061977342369898 + 11/26 03:40:00,15.6,15.6,20.067830881093078 + 11/26 03:50:00,15.6,15.6,20.07362901623046 + 11/26 04:00:00,15.6,15.6,20.079477031224344 + 11/26 04:10:00,15.6,15.6,20.084348698056688 + 11/26 04:20:00,15.6,15.6,20.089241222223547 + 11/26 04:30:00,15.6,15.6,20.094091510420264 + 11/26 04:40:00,15.6,15.6,20.098871850867565 + 11/26 04:50:00,15.6,15.6,20.103614716576158 + 11/26 05:00:00,15.6,15.6,20.108351117554507 + 11/26 05:10:00,15.6,15.6,20.113809930660559 + 11/26 05:20:00,15.6,15.6,20.11907981630727 + 11/26 05:30:00,15.6,15.6,20.124131732469008 + 11/26 05:40:00,15.6,15.6,20.12892790854403 + 11/26 05:50:00,15.6,15.6,20.13362428207693 + 11/26 06:00:00,15.6,15.6,20.138155160577058 + 11/26 06:10:00,15.6,15.6,20.14170067514503 + 11/26 06:20:00,15.6,15.6,20.14518591018747 + 11/26 06:30:00,15.6,15.6,20.14854194038393 + 11/26 06:40:00,15.6,15.6,20.151977470661146 + 11/26 06:50:00,15.6,15.6,20.155398395454858 + 11/26 07:00:00,15.6,15.6,20.158801197196504 + 11/26 07:10:00,15.6,15.6,20.183554577317485 + 11/26 07:20:00,15.6,15.6,20.185559358400857 + 11/26 07:30:00,15.6,15.6,20.187058125198285 + 11/26 07:40:00,15.6,15.6,20.18743516914296 + 11/26 07:50:00,15.6,15.6,20.18679738492143 + 11/26 08:00:00,15.6,15.6,20.185075565756415 + 11/26 08:10:00,15.6,15.6,18.780510321650107 + 11/26 08:20:00,15.6,15.6,18.612768724475609 + 11/26 08:30:00,15.6,15.6,18.543252477704347 + 11/26 08:40:00,15.6,15.6,18.485896931509939 + 11/26 08:50:00,15.6,15.6,18.437758468989853 + 11/26 09:00:00,15.6,15.6,18.396104583850449 + 11/26 09:10:00,15.6,15.6,18.357047947545408 + 11/26 09:20:00,15.6,15.6,18.313085729831685 + 11/26 09:30:00,15.6,15.6,18.280833478570309 + 11/26 09:40:00,15.6,15.6,18.251055197300415 + 11/26 09:50:00,15.6,15.6,18.222952316221403 + 11/26 10:00:00,15.6,15.6,18.196059081298018 + 11/26 10:10:00,15.6,15.6,18.171288264433195 + 11/26 10:20:00,15.6,15.6,18.138365617903348 + 11/26 10:30:00,15.536936936936936,15.536936936936936,18.114893484214436 + 11/26 10:40:00,15.372972972972973,15.372972972972973,18.092310227531656 + 11/26 10:50:00,15.209009009009009,15.209009009009009,18.070928241067983 + 11/26 11:00:00,15.045045045045045,15.045045045045045,18.050826347825848 + 11/26 11:10:00,14.902102102102102,14.902102102102102,18.0326192031546 + 11/26 11:20:00,14.759159159159159,14.759159159159159,18.0149007372323 + 11/26 11:30:00,14.616216216216217,14.616216216216217,17.998090817902598 + 11/26 11:40:00,14.473273273273274,14.473273273273274,17.98184674235914 + 11/26 11:50:00,14.33033033033033,14.33033033033033,17.966400100393416 + 11/26 12:00:00,14.187387387387388,14.187387387387388,17.951645535655364 + 11/26 12:10:00,14.12012012012012,14.12012012012012,17.937557973163828 + 11/26 12:20:00,14.052852852852853,14.052852852852853,17.92402076923561 + 11/26 12:30:00,13.985585585585586,13.985585585585586,17.91134932657928 + 11/26 12:40:00,13.91831831831832,13.91831831831832,17.899289446632755 + 11/26 12:50:00,13.851051051051052,13.851051051051052,17.887667351181795 + 11/26 13:00:00,13.783783783783785,13.783783783783785,17.87651532556097 + 11/26 13:10:00,13.691291291291293,13.691291291291293,17.86507457183161 + 11/26 13:20:00,13.5987987987988,13.5987987987988,17.854706879953306 + 11/26 13:30:00,13.506306306306307,13.506306306306307,17.8444703939328 + 11/26 13:40:00,13.413813813813816,13.413813813813816,17.835067135846079 + 11/26 13:50:00,13.32132132132132,13.32132132132132,17.826910573391677 + 11/26 14:00:00,13.22882882882883,13.22882882882883,17.82006450033321 + 11/26 14:10:00,13.203603603603604,13.203603603603604,17.8151131745796 + 11/26 14:20:00,13.17837837837838,13.17837837837838,17.810205257094077 + 11/26 14:30:00,13.153153153153154,13.153153153153154,17.806294856377688 + 11/26 14:40:00,13.12792792792793,13.12792792792793,17.802924784534313 + 11/26 14:50:00,13.102702702702704,13.102702702702704,17.800043672931858 + 11/26 15:00:00,13.077477477477478,13.077477477477478,17.79736150379237 + 11/26 15:10:00,13.077477477477478,13.077477477477478,17.795049436862997 + 11/26 15:20:00,13.077477477477478,13.077477477477478,17.794367754568325 + 11/26 15:30:00,13.077477477477478,13.077477477477478,17.793778656606944 + 11/26 15:40:00,13.077477477477478,13.077477477477478,17.793575101940584 + 11/26 15:50:00,13.077477477477478,13.077477477477478,17.793775039074963 + 11/26 16:00:00,13.077477477477478,13.077477477477478,17.794443601621233 + 11/26 16:10:00,13.123723723723725,13.123723723723725,19.224809168899474 + 11/26 16:20:00,13.169969969969971,13.169969969969971,19.37762321522661 + 11/26 16:30:00,13.216216216216218,13.216216216216218,19.44382874532424 + 11/26 16:40:00,13.262462462462464,13.262462462462464,19.495700449260498 + 11/26 16:50:00,13.30870870870871,13.30870870870871,19.53710492480068 + 11/26 17:00:00,13.354954954954956,13.354954954954956,19.571355523058089 + 11/26 17:10:00,13.426426426426428,13.426426426426428,19.599905605251775 + 11/26 17:20:00,13.497897897897899,13.497897897897899,19.633834007872069 + 11/26 17:30:00,13.56936936936937,13.56936936936937,19.65647234348464 + 11/26 17:40:00,13.640840840840842,13.640840840840842,19.677337848777577 + 11/26 17:50:00,13.712312312312314,13.712312312312314,19.69638460084024 + 11/26 18:00:00,13.783783783783785,13.783783783783785,19.71353581106159 + 11/26 18:10:00,13.804804804804805,13.804804804804805,19.730422715081976 + 11/26 18:20:00,13.825825825825828,13.825825825825828,19.76368343815952 + 11/26 18:30:00,13.846846846846848,13.846846846846848,19.77794970423414 + 11/26 18:40:00,13.867867867867869,13.867867867867869,19.79107788387911 + 11/26 18:50:00,13.88888888888889,13.88888888888889,19.80313389047741 + 11/26 19:00:00,13.90990990990991,13.90990990990991,19.814371734680966 + 11/26 19:10:00,14.006606606606607,14.006606606606607,19.824747018187869 + 11/26 19:20:00,14.103303303303303,14.103303303303303,19.834456019654934 + 11/26 19:30:00,14.2,14.2,19.843830193072834 + 11/26 19:40:00,14.296696696696696,14.296696696696696,19.852817765300054 + 11/26 19:50:00,14.393393393393394,14.393393393393394,19.86156716770522 + 11/26 20:00:00,14.49009009009009,14.49009009009009,19.870146701836178 + 11/26 20:10:00,14.511111111111111,14.511111111111111,19.87821196167023 + 11/26 20:20:00,14.532132132132132,14.532132132132132,19.886250688984789 + 11/26 20:30:00,14.553153153153153,14.553153153153153,19.89407402998145 + 11/26 20:40:00,14.574174174174175,14.574174174174175,19.901726687781406 + 11/26 20:50:00,14.595195195195196,14.595195195195196,19.90928705931551 + 11/26 21:00:00,14.616216216216217,14.616216216216217,19.916682863015614 + 11/26 21:10:00,14.616216216216217,14.616216216216217,19.90128782882632 + 11/26 21:20:00,14.616216216216217,14.616216216216217,19.908121593327694 + 11/26 21:30:00,14.616216216216217,14.616216216216217,19.914565477353827 + 11/26 21:40:00,14.616216216216217,14.616216216216217,19.920815759158918 + 11/26 21:50:00,14.616216216216217,14.616216216216217,19.92679911828234 + 11/26 22:00:00,14.616216216216217,14.616216216216217,19.932540370009 + 11/26 22:10:00,14.595195195195196,14.595195195195196,19.938399714687404 + 11/26 22:20:00,14.574174174174175,14.574174174174175,19.943758338974726 + 11/26 22:30:00,14.553153153153153,14.553153153153153,19.948883219000114 + 11/26 22:40:00,14.532132132132132,14.532132132132132,19.953701745859587 + 11/26 22:50:00,14.511111111111111,14.511111111111111,19.958259468386097 + 11/26 23:00:00,14.49009009009009,14.49009009009009,19.962586317106696 + 11/26 23:10:00,14.49009009009009,14.49009009009009,19.96611061473652 + 11/26 23:20:00,14.49009009009009,14.49009009009009,19.969442121143439 + 11/26 23:30:00,14.49009009009009,14.49009009009009,19.97267392691007 + 11/26 23:40:00,14.49009009009009,14.49009009009009,19.97576612328533 + 11/26 23:50:00,14.49009009009009,14.49009009009009,19.978725059883247 + 11/26 24:00:00,14.49009009009009,14.49009009009009,19.981520521001515 + 11/27 00:10:00,14.511111111111111,14.511111111111111,19.984099264245864 + 11/27 00:20:00,14.532132132132132,14.532132132132132,19.986657169504658 + 11/27 00:30:00,14.553153153153153,14.553153153153153,19.989202394255459 + 11/27 00:40:00,14.574174174174175,14.574174174174175,19.991753372871185 + 11/27 00:50:00,14.595195195195196,14.595195195195196,19.99428976409737 + 11/27 01:00:00,14.616216216216217,14.616216216216217,19.996752664051525 + 11/27 01:10:00,14.662462462462463,14.662462462462463,20.000498587454634 + 11/27 01:20:00,14.70870870870871,14.70870870870871,20.004329151807317 + 11/27 01:30:00,14.754954954954954,14.754954954954954,20.00809234351533 + 11/27 01:40:00,14.8012012012012,14.8012012012012,20.01185085239615 + 11/27 01:50:00,14.847447447447447,14.847447447447447,20.015443480440049 + 11/27 02:00:00,14.893693693693694,14.893693693693694,20.019006946912378 + 11/27 02:10:00,14.847447447447447,14.847447447447447,20.02009084299556 + 11/27 02:20:00,14.8012012012012,14.8012012012012,20.02159381812724 + 11/27 02:30:00,14.754954954954954,14.754954954954954,20.022870324349115 + 11/27 02:40:00,14.70870870870871,14.70870870870871,20.023976981083654 + 11/27 02:50:00,14.662462462462463,14.662462462462463,20.0248584207773 + 11/27 03:00:00,14.616216216216217,14.616216216216217,20.02550813166779 + 11/27 03:10:00,14.595195195195196,14.595195195195196,20.0271953419466 + 11/27 03:20:00,14.574174174174175,14.574174174174175,20.028171138925676 + 11/27 03:30:00,14.553153153153153,14.553153153153153,20.029076113000806 + 11/27 03:40:00,14.532132132132132,14.532132132132132,20.029817465631355 + 11/27 03:50:00,14.511111111111111,14.511111111111111,20.03065580769736 + 11/27 04:00:00,14.49009009009009,14.49009009009009,20.031550003507769 + 11/27 04:10:00,14.464864864864865,14.464864864864865,20.03206169625722 + 11/27 04:20:00,14.439639639639639,14.439639639639639,20.032583201604504 + 11/27 04:30:00,14.414414414414415,14.414414414414415,20.03309754966847 + 11/27 04:40:00,14.389189189189189,14.389189189189189,20.033727152205679 + 11/27 04:50:00,14.363963963963965,14.363963963963965,20.034389638156719 + 11/27 05:00:00,14.338738738738739,14.338738738738739,20.035077427060064 + 11/27 05:10:00,14.246246246246246,14.246246246246246,20.036304876349445 + 11/27 05:20:00,14.153753753753755,14.153753753753755,20.03751688767785 + 11/27 05:30:00,14.061261261261262,14.061261261261262,20.0386129225333 + 11/27 05:40:00,13.96876876876877,13.96876876876877,20.039547026629245 + 11/27 05:50:00,13.876276276276278,13.876276276276278,20.040247214887797 + 11/27 06:00:00,13.783783783783785,13.783783783783785,20.04072005468472 + 11/27 06:10:00,13.758558558558559,13.758558558558559,20.0417499968227 + 11/27 06:20:00,13.733333333333335,13.733333333333335,20.04164964847231 + 11/27 06:30:00,13.708108108108109,13.708108108108109,20.041564979265137 + 11/27 06:40:00,13.682882882882883,13.682882882882883,20.04125087677002 + 11/27 06:50:00,13.657657657657659,13.657657657657659,20.04098989838696 + 11/27 07:00:00,13.632432432432433,13.632432432432433,20.040735184032628 + 11/27 07:10:00,13.632432432432433,13.632432432432433,18.049955756604566 + 11/27 07:20:00,13.632432432432433,13.632432432432433,17.81500077135725 + 11/27 07:30:00,13.632432432432433,13.632432432432433,17.72587206403178 + 11/27 07:40:00,13.632432432432433,13.632432432432433,17.65575953295056 + 11/27 07:50:00,13.632432432432433,13.632432432432433,17.59986504690558 + 11/27 08:00:00,13.632432432432433,13.632432432432433,17.553326984165805 + 11/27 08:10:00,13.632432432432433,13.632432432432433,16.082903368876985 + 11/27 08:20:00,13.632432432432433,13.632432432432433,15.855395114929048 + 11/27 08:30:00,13.632432432432433,13.632432432432433,15.751026274351903 + 11/27 08:40:00,13.632432432432433,13.632432432432433,15.664753426023465 + 11/27 08:50:00,13.632432432432433,13.632432432432433,15.594303947921928 + 11/27 09:00:00,13.632432432432433,13.632432432432433,15.533571014039647 + 11/27 09:05:00,13.611411411411412,13.611411411411412,15.452541016021677 + 11/27 09:10:00,13.611411411411412,13.611411411411412,15.452540242663258 + 11/27 09:20:00,13.590390390390392,13.590390390390392,15.394040388199985 + 11/27 09:30:00,13.56936936936937,13.56936936936937,15.347863387731579 + 11/27 09:40:00,13.548348348348349,13.548348348348349,15.30539718797473 + 11/27 09:50:00,13.527327327327328,13.527327327327328,15.265876098290768 + 11/27 10:00:00,13.506306306306307,13.506306306306307,15.22897380190803 + 11/27 10:10:00,13.46006006006006,13.46006006006006,15.195082981589057 + 11/27 10:20:00,13.413813813813814,13.413813813813814,15.15253198784988 + 11/27 10:30:00,13.367567567567568,13.367567567567568,15.121984878116841 + 11/27 10:40:00,13.321321321321323,13.321321321321323,15.09305457754157 + 11/27 10:50:00,13.275075075075077,13.275075075075077,15.0655078445455 + 11/27 11:00:00,13.22882882882883,13.22882882882883,15.039326855738072 + 11/27 11:10:00,13.157357357357359,13.157357357357359,15.013420995120829 + 11/27 11:20:00,13.085885885885887,13.085885885885887,14.985069303407075 + 11/27 11:30:00,13.014414414414415,13.014414414414415,14.961057772179587 + 11/27 11:40:00,12.942942942942946,12.942942942942946,14.937569272178673 + 11/27 11:50:00,12.871471471471472,12.871471471471472,14.913980689603682 + 11/27 12:00:00,12.8,12.8,14.890111085913926 + 11/27 12:10:00,12.8,12.8,14.866510792728662 + 11/27 12:20:00,12.8,12.8,14.85259253094018 + 11/27 12:30:00,12.8,12.8,14.829375942742868 + 11/27 12:40:00,12.8,12.8,14.80689131982143 + 11/27 12:50:00,12.8,12.8,14.786302964152167 + 11/27 13:00:00,12.8,12.8,14.768692607241937 + 11/27 13:10:00,12.8,12.8,14.753410742944827 + 11/27 13:20:00,12.8,12.8,14.728662567062571 + 11/27 13:30:00,12.8,12.8,14.714516324481158 + 11/27 13:40:00,12.8,12.8,14.702558020067374 + 11/27 13:50:00,12.8,12.8,14.689279902547146 + 11/27 14:00:00,12.8,12.8,14.679641752785662 + 11/27 14:10:00,12.8,12.8,14.667583214951288 + 11/27 14:20:00,12.8,12.8,14.662351917567698 + 11/27 14:30:00,12.8,12.8,14.653315724426016 + 11/27 14:40:00,12.8,12.8,14.6445561997553 + 11/27 14:50:00,12.8,12.8,14.638460460636061 + 11/27 15:00:00,12.8,12.8,14.629874564404022 + 11/27 15:10:00,12.8,12.8,14.624794812736266 + 11/27 15:20:00,12.8,12.8,14.622770841946231 + 11/27 15:25:00,12.8,12.8,14.618219592547363 + 11/27 15:30:00,12.8,12.8,14.617678944718252 + 11/27 15:40:00,12.8,12.8,14.613777137019019 + 11/27 15:50:00,12.8,12.8,14.608208482995034 + 11/27 16:00:00,12.8,12.8,14.602889656082912 + 11/27 16:05:00,12.8,12.8,16.745847011465999 + 11/27 16:10:00,12.8,12.8,16.743323168212009 + 11/27 16:20:00,12.8,12.8,16.988843180040555 + 11/27 16:30:00,12.8,12.8,17.08685457568722 + 11/27 16:40:00,12.8,12.8,17.160852041785526 + 11/27 16:50:00,12.8,12.8,17.219315289542096 + 11/27 17:00:00,12.8,12.8,17.26434862228322 + 11/27 17:10:00,12.8,12.8,17.330317976948274 + 11/27 17:20:00,12.8,12.8,17.391069454612656 + 11/27 17:30:00,12.8,12.8,17.421069164692339 + 11/27 17:40:00,12.8,12.8,17.448867749249986 + 11/27 17:50:00,12.8,12.8,17.472845827619968 + 11/27 18:00:00,12.8,12.8,17.494737902922418 + 11/27 18:10:00,12.8,12.8,17.52762914574909 + 11/27 18:20:00,12.8,12.8,17.551315629322894 + 11/27 18:30:00,12.8,12.8,17.56751201113805 + 11/27 18:40:00,12.8,12.8,17.582002930315736 + 11/27 18:50:00,12.8,12.8,17.5950246594386 + 11/27 19:00:00,12.8,12.8,17.60678064151432 + 11/27 19:10:00,12.821021021021022,12.821021021021022,17.617436969408467 + 11/27 19:20:00,12.842042042042042,12.842042042042042,17.627298938453284 + 11/27 19:30:00,12.863063063063063,12.863063063063063,17.636590008125255 + 11/27 19:40:00,12.884084084084084,12.884084084084084,17.64521907530882 + 11/27 19:50:00,12.905105105105106,12.905105105105106,17.653493674097274 + 11/27 20:00:00,12.926126126126127,12.926126126126127,17.66146383485294 + 11/27 20:10:00,12.976576576576577,12.976576576576577,17.682069773146659 + 11/27 20:20:00,13.027027027027028,13.027027027027028,17.690328645362514 + 11/27 20:30:00,13.077477477477478,13.077477477477478,17.69784147486117 + 11/27 20:40:00,13.127927927927928,13.127927927927928,17.705111554052203 + 11/27 20:50:00,13.17837837837838,13.17837837837838,17.712078017487145 + 11/27 21:00:00,13.22882882882883,13.22882882882883,17.718823926777966 + 11/27 21:10:00,13.275075075075077,13.275075075075077,17.703064799593187 + 11/27 21:20:00,13.321321321321323,13.321321321321323,17.713468740519546 + 11/27 21:30:00,13.367567567567568,13.367567567567568,17.719547447609338 + 11/27 21:40:00,13.413813813813816,13.413813813813816,17.72534087664997 + 11/27 21:50:00,13.46006006006006,13.46006006006006,17.731002431751869 + 11/27 22:00:00,13.506306306306307,13.506306306306307,17.73646899046581 + 11/27 22:10:00,13.481081081081081,13.481081081081081,17.741893731529065 + 11/27 22:20:00,13.455855855855857,13.455855855855857,17.747065240628929 + 11/27 22:30:00,13.430630630630632,13.430630630630632,17.75192113968488 + 11/27 22:40:00,13.405405405405407,13.405405405405407,17.75643054702457 + 11/27 22:50:00,13.380180180180182,13.380180180180182,17.760584309617305 + 11/27 23:00:00,13.354954954954956,13.354954954954956,17.764451735737774 + 11/27 23:10:00,13.354954954954956,13.354954954954956,19.121941087259807 + 11/27 23:20:00,13.354954954954956,13.354954954954956,19.26880194113993 + 11/27 23:30:00,13.354954954954956,13.354954954954956,19.3293251609228 + 11/27 23:40:00,13.354954954954956,13.354954954954956,19.377988793229379 + 11/27 23:50:00,13.354954954954956,13.354954954954956,19.41601869484357 + 11/27 24:00:00,13.354954954954956,13.354954954954956,19.447946607653944 + 11/28 00:10:00,13.380180180180182,13.380180180180182,19.47575117805226 + 11/28 00:20:00,13.405405405405407,13.405405405405407,19.50031112360908 + 11/28 00:30:00,13.430630630630632,13.430630630630632,19.52237275235148 + 11/28 00:40:00,13.455855855855857,13.455855855855857,19.542599124080348 + 11/28 00:50:00,13.481081081081081,13.481081081081081,19.561331862329174 + 11/28 01:00:00,13.506306306306307,13.506306306306307,19.57880577498371 + 11/28 01:10:00,13.573573573573574,13.573573573573574,19.595870497835393 + 11/28 01:20:00,13.640840840840842,13.640840840840842,19.60924954540742 + 11/28 01:30:00,13.708108108108109,13.708108108108109,19.62224030376847 + 11/28 01:40:00,13.775375375375376,13.775375375375376,19.634027175230775 + 11/28 01:50:00,13.842642642642645,13.842642642642645,19.64545123274017 + 11/28 02:00:00,13.90990990990991,13.90990990990991,19.656460856770889 + 11/28 02:10:00,14.006606606606607,14.006606606606607,19.666678401693976 + 11/28 02:20:00,14.103303303303303,14.103303303303303,19.67704826438942 + 11/28 02:30:00,14.2,14.2,19.687774735487339 + 11/28 02:40:00,14.296696696696696,14.296696696696696,19.69881595323621 + 11/28 02:50:00,14.393393393393394,14.393393393393394,19.71016297151112 + 11/28 03:00:00,14.49009009009009,14.49009009009009,19.721744235525887 + 11/28 03:10:00,14.557357357357358,14.557357357357358,19.733724841620189 + 11/28 03:20:00,14.624624624624625,14.624624624624625,19.746489246292833 + 11/28 03:30:00,14.691891891891892,14.691891891891892,19.7588916712901 + 11/28 03:40:00,14.759159159159159,14.759159159159159,19.771137197383948 + 11/28 03:50:00,14.826426426426427,14.826426426426427,19.78298347502306 + 11/28 04:00:00,14.893693693693694,14.893693693693694,19.794365235297478 + 11/28 04:10:00,14.91891891891892,14.91891891891892,19.80392314372682 + 11/28 04:20:00,14.944144144144144,14.944144144144144,19.812308341516308 + 11/28 04:30:00,14.96936936936937,14.96936936936937,19.8198090049204 + 11/28 04:40:00,14.994594594594595,14.994594594594595,19.826371195525565 + 11/28 04:50:00,15.01981981981982,15.01981981981982,19.832131526565417 + 11/28 05:00:00,15.045045045045045,15.045045045045045,19.837234153549376 + 11/28 05:10:00,15.066066066066066,15.066066066066066,19.840366385615665 + 11/28 05:20:00,15.087087087087087,15.087087087087087,19.84400356197191 + 11/28 05:30:00,15.108108108108109,15.108108108108109,19.847842588162995 + 11/28 05:40:00,15.12912912912913,15.12912912912913,19.852006101946779 + 11/28 05:50:00,15.15015015015015,15.15015015015015,19.856344204947765 + 11/28 06:00:00,15.17117117117117,15.17117117117117,19.860881491889339 + 11/28 06:10:00,15.217417417417418,15.217417417417418,19.867894193252498 + 11/28 06:20:00,15.263663663663664,15.263663663663664,19.87464235972879 + 11/28 06:30:00,15.30990990990991,15.30990990990991,19.88126661316118 + 11/28 06:40:00,15.356156156156157,15.356156156156157,19.887546830031419 + 11/28 06:50:00,15.402402402402402,15.402402402402402,19.893787442695417 + 11/28 07:00:00,15.448648648648648,15.448648648648648,19.899803412814494 + 11/28 07:10:00,15.448648648648648,15.448648648648648,17.897371374024219 + 11/28 07:20:00,15.448648648648648,15.448648648648648,17.663994362308857 + 11/28 07:30:00,15.448648648648648,15.448648648648648,17.577992227798285 + 11/28 07:40:00,15.448648648648648,15.448648648648648,17.51062159642847 + 11/28 07:50:00,15.448648648648648,15.448648648648648,17.457297497850605 + 11/28 08:00:00,15.448648648648648,15.448648648648648,17.413082536028605 + 11/28 08:10:00,15.473873873873874,15.473873873873874,15.932738648524014 + 11/28 08:20:00,15.499099099099098,15.499099099099098,15.716779025869358 + 11/28 08:30:00,15.524324324324324,15.524324324324324,15.617299202133003 + 11/28 08:40:00,15.54954954954955,15.54954954954955,15.536500511617057 + 11/28 08:50:00,15.574774774774774,15.574774774774774,15.469929338748715 + 11/28 09:00:00,15.6,15.6,15.412828371327463 + 11/28 09:10:00,15.528528528528529,15.528528528528529,15.333703109525532 + 11/28 09:20:00,15.457057057057057,15.457057057057057,15.276243400127806 + 11/28 09:30:00,15.385585585585586,15.385585585585586,15.230355478884738 + 11/28 09:40:00,15.314114114114114,15.314114114114114,15.187292226517043 + 11/28 09:50:00,15.242642642642644,15.242642642642644,15.146592854166244 + 11/28 10:00:00,15.17117117117117,15.17117117117117,15.107779563871912 + 11/28 10:10:00,15.103903903903904,15.103903903903904,15.06932602314153 + 11/28 10:20:00,15.036636636636637,15.036636636636637,15.02010538090492 + 11/28 10:30:00,14.96936936936937,14.96936936936937,14.982238522090649 + 11/28 10:40:00,14.902102102102102,14.902102102102102,14.944901595927842 + 11/28 10:50:00,14.834834834834835,14.834834834834835,14.90829766969954 + 11/28 11:00:00,14.767567567567568,14.767567567567568,14.87237394906302 + 11/28 11:10:00,14.742342342342342,14.742342342342342,14.840494115940876 + 11/28 11:20:00,14.717117117117116,14.717117117117116,14.810346392443809 + 11/28 11:30:00,14.691891891891892,14.691891891891892,14.784580465263908 + 11/28 11:40:00,14.666666666666668,14.666666666666668,14.761164977693149 + 11/28 11:50:00,14.641441441441442,14.641441441441442,14.74098937061356 + 11/28 12:00:00,14.616216216216217,14.616216216216217,14.720278682535636 + 11/28 12:10:00,14.544744744744746,14.544744744744746,14.699357340305652 + 11/28 12:20:00,14.473273273273274,14.473273273273274,14.691207682170326 + 11/28 12:30:00,14.401801801801803,14.401801801801803,14.671971552587739 + 11/28 12:40:00,14.33033033033033,14.33033033033033,14.656167437440326 + 11/28 12:50:00,14.25885885885886,14.25885885885886,14.64059555444634 + 11/28 13:00:00,14.187387387387388,14.187387387387388,14.622908050978293 + 11/28 13:10:00,14.12012012012012,14.12012012012012,14.609634654654045 + 11/28 13:20:00,14.052852852852853,14.052852852852853,14.587048885675156 + 11/28 13:30:00,13.985585585585586,13.985585585585586,14.573181068237782 + 11/28 13:40:00,13.91831831831832,13.91831831831832,14.562464365790598 + 11/28 13:50:00,13.851051051051052,13.851051051051052,14.549072076103656 + 11/28 14:00:00,13.783783783783785,13.783783783783785,14.539706343856678 + 11/28 14:10:00,13.804804804804805,13.804804804804805,14.528143460315553 + 11/28 14:20:00,13.825825825825828,13.825825825825828,14.523029200430356 + 11/28 14:30:00,13.846846846846848,13.846846846846848,14.515206389313063 + 11/28 14:40:00,13.867867867867869,13.867867867867869,14.50671280120997 + 11/28 14:50:00,13.88888888888889,13.88888888888889,14.501669047344402 + 11/28 15:00:00,13.90990990990991,13.90990990990991,14.49506809185912 + 11/28 15:10:00,13.90990990990991,13.90990990990991,14.491481768589539 + 11/28 15:20:00,13.90990990990991,13.90990990990991,14.492540115300319 + 11/28 15:30:00,13.90990990990991,13.90990990990991,14.488610943262375 + 11/28 15:40:00,13.90990990990991,13.90990990990991,14.4877813530745 + 11/28 15:50:00,13.90990990990991,13.90990990990991,14.485953060332293 + 11/28 16:00:00,13.90990990990991,13.90990990990991,14.483763004518404 + 11/28 16:05:00,13.981381381381383,13.981381381381383,16.655443999364644 + 11/28 16:10:00,13.981381381381383,13.981381381381383,16.654619788328746 + 11/28 16:20:00,14.052852852852853,14.052852852852853,16.905140779061609 + 11/28 16:30:00,14.124324324324326,14.124324324324326,17.006238310348818 + 11/28 16:40:00,14.195795795795796,14.195795795795796,17.084903253404464 + 11/28 16:50:00,14.267267267267269,14.267267267267269,17.147528217726149 + 11/28 17:00:00,14.338738738738739,14.338738738738739,17.197852956050175 + 11/28 17:10:00,14.431231231231232,14.431231231231232,17.268116936293028 + 11/28 17:20:00,14.523723723723723,14.523723723723723,17.32823218931464 + 11/28 17:30:00,14.616216216216217,14.616216216216217,17.364319639657816 + 11/28 17:40:00,14.70870870870871,14.70870870870871,17.397109566252064 + 11/28 17:50:00,14.8012012012012,14.8012012012012,17.426896094810404 + 11/28 18:00:00,14.893693693693694,14.893693693693694,17.453857684200984 + 11/28 18:10:00,14.93993993993994,14.93993993993994,17.492361417778857 + 11/28 18:20:00,14.986186186186187,14.986186186186187,17.521454305038774 + 11/28 18:30:00,15.032432432432433,15.032432432432433,17.543110557189203 + 11/28 18:40:00,15.078678678678678,15.078678678678678,17.563140053436606 + 11/28 18:50:00,15.124924924924925,15.124924924924925,17.58178760224111 + 11/28 19:00:00,15.17117117117117,15.17117117117117,17.59923405184873 + 11/28 19:10:00,15.217417417417418,15.217417417417418,17.61380247856349 + 11/28 19:20:00,15.263663663663664,15.263663663663664,17.627548836811024 + 11/28 19:30:00,15.30990990990991,15.30990990990991,17.64048388346281 + 11/28 19:40:00,15.356156156156157,15.356156156156157,17.6527092024041 + 11/28 19:50:00,15.402402402402402,15.402402402402402,17.664322129473648 + 11/28 20:00:00,15.448648648648648,15.448648648648648,17.675358437786576 + 11/28 20:10:00,15.499099099099098,15.499099099099098,17.69945665488013 + 11/28 20:20:00,15.54954954954955,15.54954954954955,17.710701933145054 + 11/28 20:30:00,15.6,15.6,17.72113506305763 + 11/28 20:40:00,15.6,15.6,17.731158037753983 + 11/28 20:50:00,15.6,15.6,17.740816199295258 + 11/28 21:00:00,15.6,15.6,17.750107593811376 + 11/28 21:10:00,15.6,15.6,17.73737612807488 + 11/28 21:20:00,15.6,15.6,17.751239819220769 + 11/28 21:30:00,15.6,15.6,17.76007796464784 + 11/28 21:40:00,15.6,15.6,17.768419645168924 + 11/28 21:50:00,15.6,15.6,17.776330621524524 + 11/28 22:00:00,15.6,15.6,17.78382936162361 + 11/28 22:10:00,15.6,15.6,17.789523773713719 + 11/28 22:20:00,15.6,15.6,17.795103700711374 + 11/28 22:30:00,15.6,15.6,17.800664574291397 + 11/28 22:40:00,15.6,15.6,17.806257154102995 + 11/28 22:50:00,15.6,15.6,17.811837438989675 + 11/28 23:00:00,15.6,15.6,17.81739699405437 + 11/28 23:10:00,15.6,15.6,19.197893459727049 + 11/28 23:20:00,15.6,15.6,19.343645305001546 + 11/28 23:30:00,15.6,15.6,19.409691682475807 + 11/28 23:40:00,15.6,15.6,19.462481006945106 + 11/28 23:50:00,15.6,15.6,19.505701330449829 + 11/28 24:00:00,15.6,15.6,19.54253626641048 + 11/29 00:10:00,15.6,15.6,19.573184539269297 + 11/29 00:20:00,15.6,15.6,19.60046767373599 + 11/29 00:30:00,15.6,15.6,19.624998172925584 + 11/29 00:40:00,15.6,15.6,19.647302548149363 + 11/29 00:50:00,15.6,15.6,19.667755938384059 + 11/29 01:00:00,15.6,15.6,19.68657155176044 + 11/29 01:10:00,15.6,15.6,19.705671811863316 + 11/29 01:20:00,15.6,15.6,19.723503597739634 + 11/29 01:30:00,15.6,15.6,19.74019255780128 + 11/29 01:40:00,15.6,15.6,19.755919798170049 + 11/29 01:50:00,15.6,15.6,19.77071774024871 + 11/29 02:00:00,15.6,15.6,19.784827949195177 + 11/29 02:10:00,15.6,15.6,19.79684911486881 + 11/29 02:20:00,15.6,15.6,19.80841052814447 + 11/29 02:30:00,15.6,15.6,19.819557619559054 + 11/29 02:40:00,15.6,15.6,19.83028808021599 + 11/29 02:50:00,15.6,15.6,19.840701769736709 + 11/29 03:00:00,15.6,15.6,19.850841471210417 + 11/29 03:10:00,15.6,15.6,19.860383786503016 + 11/29 03:20:00,15.6,15.6,19.86976440590743 + 11/29 03:30:00,15.6,15.6,19.878918511903966 + 11/29 03:40:00,15.6,15.6,19.887886212114066 + 11/29 03:50:00,15.6,15.6,19.896745248984464 + 11/29 04:00:00,15.6,15.6,19.905428487180275 + 11/29 04:10:00,15.6,15.6,19.91461347337725 + 11/29 04:20:00,15.6,15.6,19.923448963445776 + 11/29 04:30:00,15.6,15.6,19.93187534846067 + 11/29 04:40:00,15.6,15.6,19.940047751413517 + 11/29 04:50:00,15.6,15.6,19.947906514412844 + 11/29 05:00:00,15.6,15.6,19.955475147788634 + 11/29 05:10:00,15.6,15.6,19.962982787209666 + 11/29 05:20:00,15.6,15.6,19.969808884582006 + 11/29 05:30:00,15.6,15.6,19.97600529536244 + 11/29 05:40:00,15.6,15.6,19.98152188851948 + 11/29 05:50:00,15.6,15.6,19.986386969145586 + 11/29 06:00:00,15.6,15.6,19.990654629400156 + 11/29 06:10:00,15.6,15.6,19.994611776947509 + 11/29 06:20:00,15.6,15.6,19.99865370804422 + 11/29 06:30:00,15.6,15.6,20.002962259503204 + 11/29 06:40:00,15.6,15.6,20.0075465262816 + 11/29 06:50:00,15.6,15.6,20.0123844274412 + 11/29 07:00:00,15.6,15.6,20.017388726020497 + 11/29 07:10:00,15.6,15.6,18.005215137400989 + 11/29 07:20:00,15.6,15.6,17.771537556239303 + 11/29 07:30:00,15.6,15.6,17.684734980834209 + 11/29 07:40:00,15.6,15.6,17.61635813622292 + 11/29 07:50:00,15.6,15.6,17.561565051103906 + 11/29 08:00:00,15.6,15.6,17.51598312583912 + 11/29 08:10:00,15.6,15.6,16.027531708806987 + 11/29 08:20:00,15.6,15.6,15.809374295713097 + 11/29 08:30:00,15.6,15.6,15.70710939617309 + 11/29 08:40:00,15.6,15.6,15.623079455438102 + 11/29 08:50:00,15.6,15.6,15.552769863346672 + 11/29 09:00:00,15.6,15.6,15.491630197586744 + 11/29 09:10:00,15.6,15.6,15.40973608031134 + 11/29 09:20:00,15.6,15.6,15.35095617516033 + 11/29 09:30:00,15.6,15.6,15.304222311111129 + 11/29 09:40:00,15.6,15.6,15.261137094099257 + 11/29 09:50:00,15.6,15.6,15.221057685841937 + 11/29 10:00:00,15.6,15.6,15.18362270688773 + 11/29 10:10:00,15.6,15.6,15.149055167406568 + 11/29 10:20:00,15.557957957957957,15.557957957957957,15.105311695522416 + 11/29 10:30:00,15.46126126126126,15.46126126126126,15.073704193396042 + 11/29 10:40:00,15.364564564564564,15.364564564564564,15.043014117056199 + 11/29 10:50:00,15.267867867867868,15.267867867867868,15.01242226140501 + 11/29 11:00:00,15.17117117117117,15.17117117117117,14.98155082381405 + 11/29 11:10:00,15.15015015015015,15.15015015015015,14.95072313000009 + 11/29 11:20:00,15.12912912912913,15.12912912912913,14.918024811482887 + 11/29 11:30:00,15.108108108108109,15.108108108108109,14.889434561904052 + 11/29 11:40:00,15.087087087087087,15.087087087087087,14.86334238916709 + 11/29 11:50:00,15.066066066066066,15.066066066066066,14.84167800086274 + 11/29 12:00:00,15.045045045045045,15.045045045045045,14.820716091668091 + 11/29 12:10:00,14.998798798798799,14.998798798798799,14.804823365315439 + 11/29 12:20:00,14.952552552552552,14.952552552552552,14.799574383964659 + 11/29 12:30:00,14.906306306306306,14.906306306306306,14.78532505720949 + 11/29 12:40:00,14.86006006006006,14.86006006006006,14.774089859354794 + 11/29 12:50:00,14.813813813813815,14.813813813813815,14.762227419375267 + 11/29 13:00:00,14.767567567567568,14.767567567567568,14.749021101759558 + 11/29 13:10:00,14.742342342342342,14.742342342342342,14.737330197391194 + 11/29 13:20:00,14.717117117117116,14.717117117117116,14.715005513494525 + 11/29 13:30:00,14.691891891891892,14.691891891891892,14.702274074760462 + 11/29 13:40:00,14.666666666666668,14.666666666666668,14.691318043195793 + 11/29 13:50:00,14.641441441441442,14.641441441441442,14.678699980293342 + 11/29 14:00:00,14.616216216216217,14.616216216216217,14.669841750333339 + 11/29 14:10:00,14.616216216216217,14.616216216216217,14.658521612863425 + 11/29 14:20:00,14.616216216216217,14.616216216216217,14.654569813430836 + 11/29 14:30:00,14.616216216216217,14.616216216216217,14.64662994321153 + 11/29 14:40:00,14.616216216216217,14.616216216216217,14.638913132926302 + 11/29 14:50:00,14.616216216216217,14.616216216216217,14.633099436227783 + 11/29 15:00:00,14.616216216216217,14.616216216216217,14.623971978491321 + 11/29 15:10:00,14.641441441441442,14.641441441441442,14.61823011341191 + 11/29 15:20:00,14.666666666666666,14.666666666666666,14.615202392815828 + 11/29 15:30:00,14.691891891891892,14.691891891891892,14.608274569914688 + 11/29 15:40:00,14.717117117117118,14.717117117117118,14.603659196158038 + 11/29 15:50:00,14.742342342342342,14.742342342342342,14.597535405208572 + 11/29 16:00:00,14.767567567567568,14.767567567567568,14.59346224043944 + 11/29 16:05:00,14.767567567567568,14.767567567567568,16.756727497012855 + 11/29 16:10:00,14.767567567567568,14.767567567567568,16.755675058152926 + 11/29 16:20:00,14.767567567567568,14.767567567567568,17.00234904487756 + 11/29 16:30:00,14.767567567567568,14.767567567567568,17.101809097828676 + 11/29 16:40:00,14.767567567567568,14.767567567567568,17.178222759376188 + 11/29 16:50:00,14.767567567567568,14.767567567567568,17.238165849536956 + 11/29 17:00:00,14.767567567567568,14.767567567567568,17.28484700681112 + 11/29 17:10:00,14.788588588588589,14.788588588588589,17.352048247145406 + 11/29 17:20:00,14.809609609609609,14.809609609609609,17.40785721088623 + 11/29 17:30:00,14.83063063063063,14.83063063063063,17.439638820027878 + 11/29 17:40:00,14.85165165165165,14.85165165165165,17.468214788610515 + 11/29 17:50:00,14.872672672672673,14.872672672672673,17.49400003426725 + 11/29 18:00:00,14.893693693693694,14.893693693693694,17.517213062218194 + 11/29 18:10:00,14.893693693693694,14.893693693693694,17.551937521780635 + 11/29 18:20:00,14.893693693693694,14.893693693693694,17.57692786016921 + 11/29 18:30:00,14.893693693693694,14.893693693693694,17.59457431639817 + 11/29 18:40:00,14.893693693693694,14.893693693693694,17.610594213109417 + 11/29 18:50:00,14.893693693693694,14.893693693693694,17.625185939788673 + 11/29 19:00:00,14.893693693693694,14.893693693693694,17.638684298073959 + 11/29 19:10:00,14.893693693693694,14.893693693693694,17.650470547396738 + 11/29 19:20:00,14.893693693693694,14.893693693693694,17.661631497497859 + 11/29 19:30:00,14.893693693693694,14.893693693693694,17.67205223687869 + 11/29 19:40:00,14.893693693693694,14.893693693693694,17.68187957843646 + 11/29 19:50:00,14.893693693693694,14.893693693693694,17.691087082336254 + 11/29 20:00:00,14.893693693693694,14.893693693693694,17.699766452773674 + 11/29 20:10:00,14.93993993993994,14.93993993993994,17.720934005875994 + 11/29 20:20:00,14.986186186186187,14.986186186186187,17.72957764242068 + 11/29 20:30:00,15.032432432432433,15.032432432432433,17.737679838029245 + 11/29 20:40:00,15.078678678678678,15.078678678678678,17.745584766525913 + 11/29 20:50:00,15.124924924924925,15.124924924924925,17.753206952181669 + 11/29 21:00:00,15.17117117117117,15.17117117117117,17.760595885375566 + 11/29 21:10:00,15.17117117117117,15.17117117117117,17.746251790845503 + 11/29 21:20:00,15.17117117117117,15.17117117117117,17.75852228199545 + 11/29 21:30:00,15.17117117117117,15.17117117117117,17.76599237457169 + 11/29 21:40:00,15.17117117117117,15.17117117117117,17.773078426242074 + 11/29 21:50:00,15.17117117117117,15.17117117117117,17.779851757084786 + 11/29 22:00:00,15.17117117117117,15.17117117117117,17.786331659604526 + 11/29 22:10:00,15.17117117117117,15.17117117117117,17.791663570512236 + 11/29 22:20:00,15.17117117117117,15.17117117117117,17.796585678123117 + 11/29 22:30:00,15.17117117117117,15.17117117117117,17.801310458365216 + 11/29 22:40:00,15.17117117117117,15.17117117117117,17.805773880078204 + 11/29 22:50:00,15.17117117117117,15.17117117117117,17.81001250732305 + 11/29 23:00:00,15.17117117117117,15.17117117117117,17.81417615068047 + 11/29 23:10:00,15.288888888888888,15.288888888888888,19.187878752628639 + 11/29 23:20:00,15.406606606606607,15.406606606606607,19.330895293777794 + 11/29 23:30:00,15.524324324324324,15.524324324324324,19.39421897712718 + 11/29 23:40:00,15.6,15.6,19.44470944758408 + 11/29 23:50:00,15.6,15.6,19.48565102739826 + 11/29 24:00:00,15.6,15.6,19.520326141164156 + 11/30 00:10:00,15.6,15.6,19.553658316965007 + 11/30 00:20:00,15.6,15.6,19.583007689784929 + 11/30 00:30:00,15.6,15.6,19.609219905689949 + 11/30 00:40:00,15.6,15.6,19.63287739147895 + 11/30 00:50:00,15.6,15.6,19.654450930415217 + 11/30 01:00:00,15.6,15.6,19.674259279306683 + 11/30 01:10:00,15.6,15.6,19.69102583222827 + 11/30 01:20:00,15.6,15.6,19.706250721105307 + 11/30 01:30:00,15.6,15.6,19.720477922980515 + 11/30 01:40:00,15.6,15.6,19.73380333143711 + 11/30 01:50:00,15.6,15.6,19.746380103463186 + 11/30 02:00:00,15.6,15.6,19.75830777021867 + 11/30 02:10:00,15.6,15.6,19.77024098058476 + 11/30 02:20:00,15.6,15.6,19.78168018676526 + 11/30 02:30:00,15.6,15.6,19.792695727630304 + 11/30 02:40:00,15.6,15.6,19.80328048700287 + 11/30 02:50:00,15.6,15.6,19.81344707013868 + 11/30 03:00:00,15.6,15.6,19.823218161277376 + 11/30 03:10:00,15.6,15.6,19.831856435286669 + 11/30 03:20:00,15.6,15.6,19.840265912430849 + 11/30 03:30:00,15.6,15.6,19.84837276211863 + 11/30 03:40:00,15.6,15.6,19.856197079515256 + 11/30 03:50:00,15.6,15.6,19.863755201668796 + 11/30 04:00:00,15.6,15.6,19.870972853013897 + 11/30 04:10:00,15.6,15.6,19.877913761148688 + 11/30 04:20:00,15.6,15.6,19.884638292483307 + 11/30 04:30:00,15.6,15.6,19.891259452943076 + 11/30 04:40:00,15.6,15.6,19.897759802661854 + 11/30 04:50:00,15.6,15.6,19.90410198186985 + 11/30 05:00:00,15.6,15.6,19.910379886339855 + 11/30 05:10:00,15.6,15.6,19.918227482665399 + 11/30 05:20:00,15.6,15.6,19.925822133788065 + 11/30 05:30:00,15.6,15.6,19.933107780255683 + 11/30 05:40:00,15.6,15.6,19.94004278065938 + 11/30 05:50:00,15.6,15.6,19.94665878234478 + 11/30 06:00:00,15.6,15.6,19.953058739852737 + 11/30 06:10:00,15.6,15.6,19.958851580007044 + 11/30 06:20:00,15.6,15.6,19.964631879956209 + 11/30 06:30:00,15.6,15.6,19.970533665361754 + 11/30 06:40:00,15.6,15.6,19.97650013049408 + 11/30 06:50:00,15.6,15.6,19.9826943428731 + 11/30 07:00:00,15.6,15.6,19.98901084057259 + 11/30 07:10:00,15.6,15.6,17.983857983491168 + 11/30 07:20:00,15.6,15.6,17.75188352322868 + 11/30 07:30:00,15.6,15.6,17.66723596766238 + 11/30 07:40:00,15.6,15.6,17.601512680732584 + 11/30 07:50:00,15.6,15.6,17.550084356371174 + 11/30 08:00:00,15.6,15.6,17.508058502349266 + 11/30 08:10:00,15.6,15.6,16.02783047659666 + 11/30 08:20:00,15.6,15.6,15.813670567935623 + 11/30 08:30:00,15.6,15.6,15.715285665245276 + 11/30 08:40:00,15.6,15.6,15.6352702831245 + 11/30 08:50:00,15.6,15.6,15.569414043377528 + 11/30 09:00:00,15.6,15.6,15.513194666226614 + 11/30 09:10:00,15.6,15.6,15.436416918338264 + 11/30 09:20:00,15.6,15.6,15.383365635032297 + 11/30 09:30:00,15.6,15.6,15.342579977071156 + 11/30 09:40:00,15.6,15.6,15.305628171957786 + 11/30 09:50:00,15.6,15.6,15.271767755247561 + 11/30 10:00:00,15.6,15.6,15.240570108668745 + 11/30 10:10:00,15.6,15.6,15.212348858072027 + 11/30 10:20:00,15.6,15.6,15.175408029503762 + 11/30 10:30:00,15.6,15.6,15.150752027195 + 11/30 10:40:00,15.6,15.6,15.127577376474726 + 11/30 10:50:00,15.6,15.6,15.105650307513905 + 11/30 11:00:00,15.6,15.6,15.084893614738036 + 11/30 11:10:00,15.6,15.6,15.066393135311275 + 11/30 11:20:00,15.6,15.6,15.045415661716618 + 11/30 11:30:00,15.6,15.6,15.028850532555042 + 11/30 11:40:00,15.6,15.6,15.014499103694663 + 11/30 11:50:00,15.6,15.6,15.001174165957668 + 11/30 12:00:00,15.6,15.6,14.985262201539144 + 11/30 12:10:00,15.6,15.6,14.97077575276961 + 11/30 12:20:00,15.6,15.6,14.963191061411049 + 11/30 12:30:00,15.6,15.6,14.948235198994654 + 11/30 12:40:00,15.6,15.6,14.934523481170077 + 11/30 12:50:00,15.6,15.6,14.918723875438897 + 11/30 13:00:00,15.6,15.6,14.905482227618334 + 11/30 13:10:00,15.6,15.6,14.895178282522494 + 11/30 13:20:00,15.6,15.6,14.873095124162168 + 11/30 13:30:00,15.6,15.6,14.863631770721718 + 11/30 13:40:00,15.6,15.6,14.85338065324129 + 11/30 13:50:00,15.6,15.6,14.844214903508835 + 11/30 14:00:00,15.6,15.6,14.836187004102373 + 11/30 14:10:00,15.6,15.6,14.827373808048817 + 11/30 14:20:00,15.6,15.6,14.825303341586086 + 11/30 14:30:00,15.6,15.6,14.816983073437252 + 11/30 14:40:00,15.6,15.6,14.811952676446945 + 11/30 14:50:00,15.6,15.6,14.806199843609916 + 11/30 15:00:00,15.6,15.6,14.800271537107824 + 11/30 15:10:00,15.6,15.6,14.795301232534403 + 11/30 15:20:00,15.6,15.6,14.790448270521816 + 11/30 15:30:00,15.6,15.6,14.785353118438783 + 11/30 15:40:00,15.6,15.6,14.780071784879926 + 11/30 15:50:00,15.6,15.6,14.773177434628991 + 11/30 16:00:00,15.6,15.6,14.769193045634577 + 11/30 16:10:00,15.6,15.6,16.91586253456524 + 11/30 16:20:00,15.6,15.6,17.162391077830845 + 11/30 16:30:00,15.6,15.6,17.260723452669589 + 11/30 16:40:00,15.6,15.6,17.33651584742717 + 11/30 16:50:00,15.6,15.6,17.393502949931908 + 11/30 17:00:00,15.6,15.6,17.441410846568979 + 11/30 17:10:00,15.6,15.6,17.507391708022334 + 11/30 17:20:00,15.6,15.6,17.561124088944106 + 11/30 17:30:00,15.6,15.6,17.591081461186616 + 11/30 17:40:00,15.6,15.6,17.61760563728108 + 11/30 17:50:00,15.6,15.6,17.64140202531607 + 11/30 18:00:00,15.6,15.6,17.662745359833 + 11/30 18:10:00,15.6,15.6,17.69531279362561 + 11/30 18:20:00,15.6,15.6,17.71881388857272 + 11/30 18:30:00,15.6,15.6,17.73530855683577 + 11/30 18:40:00,15.6,15.6,17.750418561717397 + 11/30 18:50:00,15.6,15.6,17.764377758149587 + 11/30 19:00:00,15.6,15.6,17.77721407581438 + 11/30 19:10:00,15.6,15.6,17.789653727510669 + 11/30 19:20:00,15.6,15.6,17.80135107583387 + 11/30 19:30:00,15.6,15.6,17.81234831807926 + 11/30 19:40:00,15.6,15.6,17.82270517045501 + 11/30 19:50:00,15.6,15.6,17.832527415800155 + 11/30 20:00:00,15.6,15.6,17.841839354951334 + 11/30 20:10:00,15.6,15.6,17.864565183800008 + 11/30 20:20:00,15.6,15.6,17.87432387929762 + 11/30 20:30:00,15.6,15.6,17.883402811011846 + 11/30 20:40:00,15.6,15.6,17.892122542979153 + 11/30 20:50:00,15.6,15.6,17.900595626982388 + 11/30 21:00:00,15.6,15.6,17.908894314241456 + 11/30 21:10:00,15.6,15.6,17.89300934097285 + 11/30 21:20:00,15.6,15.6,17.90381721458096 + 11/30 21:30:00,15.6,15.6,17.91004543561183 + 11/30 21:40:00,15.6,15.6,17.916069789169016 + 11/30 21:50:00,15.6,15.6,17.921952775886714 + 11/30 22:00:00,15.6,15.6,17.927694275631969 + 11/30 22:10:00,15.6,15.6,17.933367159179907 + 11/30 22:20:00,15.6,15.6,17.938888317597408 + 11/30 22:30:00,15.6,15.6,17.944320348740797 + 11/30 22:40:00,15.6,15.6,17.94968960560052 + 11/30 22:50:00,15.6,15.6,17.954969061945556 + 11/30 23:00:00,15.6,15.6,17.960156896900324 + 11/30 23:10:00,15.6,15.6,19.332000377869205 + 11/30 23:20:00,15.6,15.6,19.47429559177484 + 11/30 23:30:00,15.6,15.6,19.537486979873689 + 11/30 23:40:00,15.6,15.6,19.5875579631123 + 11/30 23:50:00,15.6,15.6,19.628058239651648 + 11/30 24:00:00,15.6,15.6,19.662172222904514 + 12/01 00:10:00,15.6,15.6,19.691824875848285 + 12/01 00:20:00,15.6,15.6,19.718117962140306 + 12/01 00:30:00,15.6,15.6,19.74215277763223 + 12/01 00:40:00,15.6,15.6,19.76432359814018 + 12/01 00:50:00,15.6,15.6,19.785067405723607 + 12/01 01:00:00,15.6,15.6,19.804546754035856 + 12/01 01:10:00,15.6,15.6,19.82302832905158 + 12/01 01:20:00,15.6,15.6,19.840679358411049 + 12/01 01:30:00,15.6,15.6,19.85726141958837 + 12/01 01:40:00,15.6,15.6,19.872977203609513 + 12/01 01:50:00,15.6,15.6,19.88776473899748 + 12/01 02:00:00,15.6,15.6,19.901863999767515 + 12/01 02:10:00,15.6,15.6,19.915333488579728 + 12/01 02:20:00,15.6,15.6,19.928200806843934 + 12/01 02:30:00,15.6,15.6,19.94053225640945 + 12/01 02:40:00,15.6,15.6,19.952317814464175 + 12/01 02:50:00,15.6,15.6,19.96368421985617 + 12/01 03:00:00,15.6,15.6,19.97469313981692 + 12/01 03:10:00,15.6,15.6,19.985355537235216 + 12/01 03:20:00,15.6,15.6,19.995653536001563 + 12/01 03:30:00,15.6,15.6,20.005598696307147 + 12/01 03:40:00,15.6,15.6,20.01521311664926 + 12/01 03:50:00,15.6,15.6,20.024617758071054 + 12/01 04:00:00,15.6,15.6,20.033764877065808 + 12/01 04:10:00,15.6,15.6,20.044016832607598 + 12/01 04:20:00,15.6,15.6,20.053980904776645 + 12/01 04:30:00,15.6,15.6,20.063499737374359 + 12/01 04:40:00,15.6,15.6,20.072779510748036 + 12/01 04:50:00,15.6,15.6,20.081733059973077 + 12/01 05:00:00,15.6,15.6,20.090384610074595 + 12/01 05:10:00,15.6,15.6,20.097137891775615 + 12/01 05:20:00,15.6,15.6,20.103640305194074 + 12/01 05:30:00,15.6,15.6,20.110124828752704 + 12/01 05:40:00,15.6,15.6,20.116531476399048 + 12/01 05:50:00,15.6,15.6,20.122849910832856 + 12/01 06:00:00,15.6,15.6,20.12907610435069 + 12/01 06:10:00,15.6,15.6,20.13690165455103 + 12/01 06:20:00,15.6,15.6,20.144549138418797 + 12/01 06:30:00,15.6,15.6,20.151986511871387 + 12/01 06:40:00,15.6,15.6,20.15917454023263 + 12/01 06:50:00,15.6,15.6,20.166127050205895 + 12/01 07:00:00,15.6,15.6,20.17281270330984 + 12/01 07:05:00,15.6,15.6,18.16413682059666 + 12/01 07:10:00,15.6,15.6,18.164218447644424 + 12/01 07:20:00,15.6,15.6,17.9332907777665 + 12/01 07:30:00,15.6,15.6,17.84831612441259 + 12/01 07:40:00,15.6,15.6,17.781788757024719 + 12/01 07:50:00,15.6,15.6,17.728585338212498 + 12/01 08:00:00,15.6,15.6,17.684149679911365 + 12/01 08:05:00,15.6,15.6,16.196374998706938 + 12/01 08:10:00,15.6,15.6,16.196271465863818 + 12/01 08:15:00,15.6,15.6,15.978349130826493 + 12/01 08:20:00,15.6,15.6,15.97842045575343 + 12/01 08:30:00,15.6,15.6,15.874149663937994 + 12/01 08:40:00,15.6,15.6,15.78788021397293 + 12/01 08:50:00,15.6,15.6,15.714618949366212 + 12/01 09:00:00,15.6,15.6,15.650198284465575 + 12/01 09:10:00,15.6,15.6,15.56561865150804 + 12/01 09:20:00,15.6,15.6,15.503647439844184 + 12/01 09:30:00,15.6,15.6,15.453259960411283 + 12/01 09:40:00,15.6,15.6,15.40615826136089 + 12/01 09:50:00,15.6,15.6,15.361944149371059 + 12/01 10:00:00,15.6,15.6,15.320333714535702 + 12/01 10:10:00,15.6,15.6,15.281467417971827 + 12/01 10:20:00,15.6,15.6,15.23375202117349 + 12/01 10:30:00,15.6,15.6,15.19837519767895 + 12/01 10:40:00,15.6,15.6,15.164658976753966 + 12/01 10:50:00,15.6,15.6,15.132494370343427 + 12/01 11:00:00,15.6,15.6,15.101833872472089 + 12/01 11:10:00,15.6,15.6,15.072218025735204 + 12/01 11:20:00,15.6,15.6,15.040123940268414 + 12/01 11:30:00,15.6,15.6,15.012933302346129 + 12/01 11:40:00,15.6,15.6,14.988589801289188 + 12/01 11:50:00,15.6,15.6,14.963162364938617 + 12/01 12:00:00,15.6,15.6,14.938915166956063 + 12/01 12:10:00,15.6,15.6,14.916713970944889 + 12/01 12:20:00,15.6,15.6,14.903520152165996 + 12/01 12:30:00,15.6,15.6,14.88420092813276 + 12/01 12:40:00,15.6,15.6,14.864846196825873 + 12/01 12:50:00,15.6,15.6,14.845756662486237 + 12/01 13:00:00,15.6,15.6,14.829715815524664 + 12/01 13:10:00,15.6,15.6,14.811965823405436 + 12/01 13:20:00,15.6,15.6,14.785249501986293 + 12/01 13:30:00,15.6,15.6,14.770718711829602 + 12/01 13:40:00,15.6,15.6,14.75373227243468 + 12/01 13:50:00,15.6,15.6,14.740766098388758 + 12/01 14:00:00,15.6,15.6,14.725796743950891 + 12/01 14:10:00,15.574774774774774,15.574774774774774,14.715762222117388 + 12/01 14:20:00,15.54954954954955,15.54954954954955,14.7086688263922 + 12/01 14:30:00,15.524324324324324,15.524324324324324,14.698846817018735 + 12/01 14:40:00,15.499099099099098,15.499099099099098,14.691718838625143 + 12/01 14:50:00,15.473873873873874,15.473873873873874,14.68245391665783 + 12/01 15:00:00,15.448648648648648,15.448648648648648,14.677322259384879 + 12/01 15:10:00,15.427627627627628,15.427627627627628,14.67025326880811 + 12/01 15:20:00,15.406606606606607,15.406606606606607,14.667674176637658 + 12/01 15:30:00,15.385585585585586,15.385585585585586,14.663824742298102 + 12/01 15:40:00,15.364564564564564,15.364564564564564,14.657759997820442 + 12/01 15:50:00,15.343543543543543,15.343543543543543,14.654733109807874 + 12/01 16:00:00,15.322522522522523,15.322522522522523,14.652683848216427 + 12/01 16:10:00,15.368768768768769,15.368768768768769,16.818336828764577 + 12/01 16:20:00,15.415015015015016,15.415015015015016,17.070963460682174 + 12/01 16:30:00,15.46126126126126,15.46126126126126,17.17265123358096 + 12/01 16:40:00,15.507507507507507,15.507507507507507,17.2496116939713 + 12/01 16:50:00,15.553753753753754,15.553753753753754,17.31171331613523 + 12/01 17:00:00,15.6,15.6,17.364157777940599 + 12/01 17:10:00,15.6,15.6,17.43608771190938 + 12/01 17:20:00,15.6,15.6,17.493793178316549 + 12/01 17:30:00,15.6,15.6,17.52916320336741 + 12/01 17:40:00,15.6,15.6,17.561141129709186 + 12/01 17:50:00,15.6,15.6,17.589963536956398 + 12/01 18:00:00,15.6,15.6,17.615918326857647 + 12/01 18:10:00,15.6,15.6,17.65239338425899 + 12/01 18:20:00,15.6,15.6,17.679983887705487 + 12/01 18:30:00,15.6,15.6,17.70014764786758 + 12/01 18:40:00,15.6,15.6,17.719025615602939 + 12/01 18:50:00,15.6,15.6,17.736736418846279 + 12/01 19:00:00,15.6,15.6,17.753411966010725 + 12/01 19:10:00,15.6,15.6,17.76874819797277 + 12/01 19:20:00,15.6,15.6,17.78317755683458 + 12/01 19:30:00,15.6,15.6,17.796680293504005 + 12/01 19:40:00,15.6,15.6,17.8093663809767 + 12/01 19:50:00,15.6,15.6,17.821286835592387 + 12/01 20:00:00,15.6,15.6,17.83256070535225 + 12/01 20:10:00,15.6,15.6,17.856853791420446 + 12/01 20:20:00,15.6,15.6,17.868003840041493 + 12/01 20:30:00,15.6,15.6,17.87829135832908 + 12/01 20:40:00,15.6,15.6,17.888043328244746 + 12/01 20:50:00,15.6,15.6,17.897322578753394 + 12/01 21:00:00,15.6,15.6,17.906226867695254 + 12/01 21:10:00,15.6,15.6,17.89160367978011 + 12/01 21:20:00,15.6,15.6,17.90388546606473 + 12/01 21:30:00,15.6,15.6,17.91145910338274 + 12/01 21:40:00,15.6,15.6,17.91878545270783 + 12/01 21:50:00,15.6,15.6,17.92589537262615 + 12/01 22:00:00,15.6,15.6,17.9327936138832 + 12/01 22:10:00,15.6,15.6,17.939524767649144 + 12/01 22:20:00,15.6,15.6,17.946057788329495 + 12/01 22:30:00,15.6,15.6,17.952449436756635 + 12/01 22:40:00,15.6,15.6,17.95866033141719 + 12/01 22:50:00,15.6,15.6,17.964674505448789 + 12/01 23:00:00,15.6,15.6,17.970628149950487 + 12/01 23:10:00,15.6,15.6,19.34907924335311 + 12/01 23:20:00,15.6,15.6,19.491857919666964 + 12/01 23:30:00,15.6,15.6,19.55554775931388 + 12/01 23:40:00,15.6,15.6,19.60595269565645 + 12/01 23:50:00,15.6,15.6,19.646876857457714 + 12/01 24:00:00,15.6,15.6,19.681407313763054 + 12/02 00:10:00,15.6,15.6,19.712661851847554 + 12/02 00:20:00,15.6,15.6,19.7403377839534 + 12/02 00:30:00,15.6,15.6,19.765081111498433 + 12/02 00:40:00,15.6,15.6,19.787556527741584 + 12/02 00:50:00,15.6,15.6,19.808129143959474 + 12/02 01:00:00,15.6,15.6,19.827084417566849 + 12/02 01:10:00,15.6,15.6,19.843966597482145 + 12/02 01:20:00,15.6,15.6,19.859765502357218 + 12/02 01:30:00,15.6,15.6,19.87472717887848 + 12/02 01:40:00,15.6,15.6,19.88901528644845 + 12/02 01:50:00,15.6,15.6,19.902667323351414 + 12/02 02:00:00,15.6,15.6,19.915750644036117 + 12/02 02:10:00,15.6,15.6,19.92683393962701 + 12/02 02:20:00,15.6,15.6,19.93742443931322 + 12/02 02:30:00,15.6,15.6,19.94768224490566 + 12/02 02:40:00,15.6,15.6,19.95756669051123 + 12/02 02:50:00,15.6,15.6,19.967103661514753 + 12/02 03:00:00,15.6,15.6,19.97630436525029 + 12/02 03:10:00,15.6,15.6,19.98681683905468 + 12/02 03:20:00,15.6,15.6,19.997210947614435 + 12/02 03:30:00,15.6,15.6,20.007376598903048 + 12/02 03:40:00,15.6,15.6,20.01733910010832 + 12/02 03:50:00,15.6,15.6,20.027099341273997 + 12/02 04:00:00,15.6,15.6,20.03657648170306 + 12/02 04:10:00,15.6,15.6,20.04648762844492 + 12/02 04:20:00,15.6,15.6,20.05627057106023 + 12/02 04:30:00,15.6,15.6,20.06589107514827 + 12/02 04:40:00,15.6,15.6,20.075367715465757 + 12/02 04:50:00,15.6,15.6,20.08463342322261 + 12/02 05:00:00,15.6,15.6,20.093786416097946 + 12/02 05:10:00,15.6,15.6,20.101118190489509 + 12/02 05:20:00,15.6,15.6,20.1081944709413 + 12/02 05:30:00,15.6,15.6,20.11512749979672 + 12/02 05:40:00,15.6,15.6,20.12184180619411 + 12/02 05:50:00,15.6,15.6,20.128395430235054 + 12/02 06:00:00,15.6,15.6,20.134878252522794 + 12/02 06:10:00,15.6,15.6,20.14305748644128 + 12/02 06:20:00,15.6,15.6,20.151135602059605 + 12/02 06:30:00,15.6,15.6,20.159097481132507 + 12/02 06:40:00,15.6,15.6,20.166898022836919 + 12/02 06:50:00,15.6,15.6,20.174700248314794 + 12/02 07:00:00,15.6,15.6,20.182423174465656 + 12/02 07:10:00,15.6,15.6,19.525722493431699 + 12/02 07:20:00,15.6,15.6,19.46414937322317 + 12/02 07:30:00,15.6,15.6,19.442508594795144 + 12/02 07:40:00,15.6,15.6,19.426118726393 + 12/02 07:50:00,15.6,15.6,19.41344058885856 + 12/02 08:00:00,15.6,15.6,19.40307962100065 + 12/02 08:10:00,15.6,15.6,18.31015183332022 + 12/02 08:20:00,15.6,15.6,18.162322436528038 + 12/02 08:30:00,15.6,15.6,18.097624015713977 + 12/02 08:40:00,15.6,15.6,18.043941071109793 + 12/02 08:50:00,15.6,15.6,17.99849372004759 + 12/02 09:00:00,15.6,15.6,17.958406550440715 + 12/02 09:10:00,15.6,15.6,17.920819007936648 + 12/02 09:20:00,15.6,15.6,17.87728720861427 + 12/02 09:30:00,15.6,15.6,17.84500757561824 + 12/02 09:40:00,15.6,15.6,17.81470472452524 + 12/02 09:50:00,15.6,15.6,17.785920734531456 + 12/02 10:00:00,15.6,15.6,17.758358015809337 + 12/02 10:10:00,15.6,15.6,17.7344033635623 + 12/02 10:20:00,15.6,15.6,17.7025247437414 + 12/02 10:30:00,15.6,15.6,17.68040156168301 + 12/02 10:40:00,15.6,15.6,17.659331481107743 + 12/02 10:50:00,15.6,15.6,17.639449369982296 + 12/02 11:00:00,15.6,15.6,17.620825114429488 + 12/02 11:10:00,15.6,15.6,17.601533660113753 + 12/02 11:20:00,15.6,15.6,17.583234847192516 + 12/02 11:30:00,15.6,15.6,17.56575223295817 + 12/02 11:40:00,15.6,15.6,17.548990227757728 + 12/02 11:50:00,15.6,15.6,17.532853636976119 + 12/02 12:00:00,15.6,15.6,17.517278818742754 + 12/02 12:10:00,15.6,15.6,17.50343031105863 + 12/02 12:20:00,15.6,15.6,17.490279385552549 + 12/02 12:30:00,15.6,15.6,17.47777608808903 + 12/02 12:40:00,15.6,15.6,17.465973149940994 + 12/02 12:50:00,15.6,15.6,17.45490766799748 + 12/02 13:00:00,15.6,15.6,17.444572321595265 + 12/02 13:10:00,15.6,15.6,17.434645778468508 + 12/02 13:20:00,15.6,15.6,17.425364843740217 + 12/02 13:30:00,15.6,15.6,17.416725005805746 + 12/02 13:40:00,15.6,15.6,17.4087347261773 + 12/02 13:50:00,15.6,15.6,17.401461717724119 + 12/02 14:00:00,15.6,15.6,17.3948994747527 + 12/02 14:10:00,15.6,15.6,17.38883350154 + 12/02 14:20:00,15.6,15.6,17.383344099661529 + 12/02 14:30:00,15.6,15.6,17.378345916128333 + 12/02 14:40:00,15.6,15.6,17.373876999506448 + 12/02 14:50:00,15.6,15.6,17.36998847562749 + 12/02 15:00:00,15.6,15.6,17.366679661939423 + 12/02 15:10:00,15.6,15.6,17.363336135986555 + 12/02 15:20:00,15.6,15.6,17.360582213688589 + 12/02 15:30:00,15.6,15.6,17.358402471462079 + 12/02 15:40:00,15.6,15.6,17.356843505239398 + 12/02 15:50:00,15.6,15.6,17.355998808435979 + 12/02 16:00:00,15.6,15.6,17.355833001893534 + 12/02 16:10:00,15.6,15.6,17.35947638798256 + 12/02 16:20:00,15.6,15.6,17.363898319778543 + 12/02 16:30:00,15.6,15.6,17.369320970632239 + 12/02 16:40:00,15.6,15.6,17.375843436414738 + 12/02 16:50:00,15.6,15.6,17.383088665544617 + 12/02 17:00:00,15.6,15.6,17.390911309265137 + 12/02 17:10:00,15.6,15.6,17.411430530697154 + 12/02 17:20:00,15.6,15.6,17.4278987924067 + 12/02 17:30:00,15.6,15.6,17.43351397511865 + 12/02 17:40:00,15.6,15.6,17.440843551279558 + 12/02 17:50:00,15.6,15.6,17.447993984157358 + 12/02 18:00:00,15.6,15.6,17.4545000708386 + 12/02 18:10:00,15.6,15.6,19.2346683287969 + 12/02 18:20:00,15.6,15.6,19.445268782064639 + 12/02 18:30:00,15.6,15.6,19.529016860169404 + 12/02 18:40:00,15.6,15.6,19.594094801056437 + 12/02 18:50:00,15.6,15.6,19.645777796538924 + 12/02 19:00:00,15.6,15.6,19.68867416745341 + 12/02 19:10:00,15.6,15.6,19.738303203712517 + 12/02 19:20:00,15.6,15.6,19.770793598658643 + 12/02 19:30:00,15.6,15.6,19.799316038599618 + 12/02 19:40:00,15.6,15.6,19.824895538659225 + 12/02 19:50:00,15.6,15.6,19.848077533311014 + 12/02 20:00:00,15.6,15.6,19.869191540306518 + 12/02 20:10:00,15.6,15.6,19.88675301137601 + 12/02 20:20:00,15.6,15.6,19.90290027953588 + 12/02 20:30:00,15.6,15.6,19.917821884369045 + 12/02 20:40:00,15.6,15.6,19.93168354103882 + 12/02 20:50:00,15.6,15.6,19.94455356777506 + 12/02 21:00:00,15.6,15.6,19.956651369542244 + 12/02 21:10:00,15.6,15.6,19.94841626052063 + 12/02 21:20:00,15.6,15.6,19.962191164168205 + 12/02 21:30:00,15.6,15.6,19.975314633479998 + 12/02 21:40:00,15.6,15.6,19.987796187381876 + 12/02 21:50:00,15.6,15.6,19.999720228527644 + 12/02 22:00:00,15.6,15.6,20.011209039909035 + 12/02 22:10:00,15.6,15.6,20.02094145810461 + 12/02 22:20:00,15.6,15.6,20.030228431251979 + 12/02 22:30:00,15.6,15.6,20.039093175030446 + 12/02 22:40:00,15.6,15.6,20.047518800283954 + 12/02 22:50:00,15.6,15.6,20.055683428268357 + 12/02 23:00:00,15.6,15.6,20.06352918991709 + 12/02 23:10:00,15.6,15.6,20.07396260991158 + 12/02 23:20:00,15.6,15.6,20.083886496741529 + 12/02 23:30:00,15.6,15.6,20.093190326013877 + 12/02 23:40:00,15.6,15.6,20.102079676733387 + 12/02 23:50:00,15.6,15.6,20.110480929456338 + 12/02 24:00:00,15.6,15.6,20.118455322496457 + 12/03 00:10:00,15.6,15.6,20.122755924676289 + 12/03 00:20:00,15.6,15.6,20.126896650818073 + 12/03 00:30:00,15.6,15.6,20.13104479748311 + 12/03 00:40:00,15.6,15.6,20.135203996377464 + 12/03 00:50:00,15.6,15.6,20.13933017014271 + 12/03 01:00:00,15.6,15.6,20.14339065708313 + 12/03 01:10:00,15.6,15.6,20.14887005297219 + 12/03 01:20:00,15.6,15.6,20.15434277700405 + 12/03 01:30:00,15.6,15.6,20.159867411345969 + 12/03 01:40:00,15.6,15.6,20.165385990567747 + 12/03 01:50:00,15.6,15.6,20.17088973004318 + 12/03 02:00:00,15.6,15.6,20.17633907834326 + 12/03 02:10:00,15.6,15.6,20.182911616727038 + 12/03 02:20:00,15.6,15.6,20.189466065638105 + 12/03 02:30:00,15.6,15.6,20.195906052317736 + 12/03 02:40:00,15.6,15.6,20.20222856298394 + 12/03 02:50:00,15.6,15.6,20.20843325073606 + 12/03 03:00:00,15.6,15.6,20.214439979222975 + 12/03 03:10:00,15.6,15.6,20.218508223119497 + 12/03 03:20:00,15.6,15.6,20.222547309941026 + 12/03 03:30:00,15.6,15.6,20.22658675319123 + 12/03 03:40:00,15.6,15.6,20.230631106478094 + 12/03 03:50:00,15.6,15.6,20.234589056108278 + 12/03 04:00:00,15.6,15.6,20.238607930759778 + 12/03 04:10:00,15.6,15.6,20.242587777962599 + 12/03 04:20:00,15.6,15.6,20.24649123836118 + 12/03 04:30:00,15.6,15.6,20.250292569354497 + 12/03 04:40:00,15.6,15.6,20.253927477098999 + 12/03 04:50:00,15.6,15.6,20.257481949919116 + 12/03 05:00:00,15.6,15.6,20.26098584712201 + 12/03 05:10:00,15.6,15.6,20.264937812540443 + 12/03 05:20:00,15.6,15.6,20.26875542194226 + 12/03 05:30:00,15.6,15.6,20.272389563612206 + 12/03 05:40:00,15.6,15.6,20.275854192064967 + 12/03 05:50:00,15.6,15.6,20.279252824892443 + 12/03 06:00:00,15.6,15.6,20.28252971907084 + 12/03 06:10:00,15.6,15.6,20.28713218223158 + 12/03 06:20:00,15.6,15.6,20.29155482540495 + 12/03 06:30:00,15.6,15.6,20.295724805330499 + 12/03 06:40:00,15.6,15.6,20.299818748662604 + 12/03 06:50:00,15.6,15.6,20.30373832708105 + 12/03 07:00:00,15.6,15.6,20.307552195961074 + 12/03 07:10:00,15.6,15.6,20.331200986738936 + 12/03 07:20:00,15.6,15.6,20.33206483770258 + 12/03 07:30:00,15.6,15.6,20.332922939278374 + 12/03 07:40:00,15.6,15.6,20.33335114181758 + 12/03 07:50:00,15.6,15.6,20.332940807093416 + 12/03 08:00:00,15.6,15.6,20.331873187351236 + 12/03 08:10:00,15.6,15.6,18.9305394206023 + 12/03 08:20:00,15.6,15.6,18.769410699683847 + 12/03 08:30:00,15.6,15.6,18.70617167701805 + 12/03 08:40:00,15.6,15.6,18.654826486354179 + 12/03 08:50:00,15.6,15.6,18.612322176227516 + 12/03 09:00:00,15.6,15.6,18.575723699647516 + 12/03 09:10:00,15.6,15.6,18.536569373043496 + 12/03 09:20:00,15.6,15.6,18.491804771662826 + 12/03 09:30:00,15.6,15.6,18.458692679143469 + 12/03 09:40:00,15.6,15.6,18.42800503065365 + 12/03 09:50:00,15.6,15.6,18.39917969457253 + 12/03 10:00:00,15.6,15.6,18.37183679370807 + 12/03 10:10:00,15.6,15.6,18.346756580265887 + 12/03 10:20:00,15.6,15.6,18.31391015696579 + 12/03 10:30:00,15.6,15.6,18.290819990330588 + 12/03 10:40:00,15.6,15.6,18.268580792558138 + 12/03 10:50:00,15.6,15.6,18.247032377819609 + 12/03 11:00:00,15.6,15.6,18.226000764447407 + 12/03 11:10:00,15.6,15.6,18.2076397283718 + 12/03 11:20:00,15.6,15.6,18.189790868241887 + 12/03 11:30:00,15.6,15.6,18.17238454537818 + 12/03 11:40:00,15.6,15.6,18.15552922560101 + 12/03 11:50:00,15.6,15.6,18.139737467202364 + 12/03 12:00:00,15.6,15.6,18.125048144149269 + 12/03 12:10:00,15.6,15.6,18.109322794534113 + 12/03 12:20:00,15.6,15.6,18.094422736494594 + 12/03 12:30:00,15.6,15.6,18.080237362530519 + 12/03 12:40:00,15.6,15.6,18.0666089524153 + 12/03 12:50:00,15.6,15.6,18.053375326824548 + 12/03 13:00:00,15.6,15.6,18.040694296375 + 12/03 13:10:00,15.6,15.6,18.030851700246374 + 12/03 13:20:00,15.6,15.6,18.02159236644645 + 12/03 13:30:00,15.6,15.6,18.013039654430906 + 12/03 13:40:00,15.6,15.6,18.00526803355733 + 12/03 13:50:00,15.6,15.6,17.998285071045446 + 12/03 14:00:00,15.6,15.6,17.992011049234418 + 12/03 14:10:00,15.6,15.6,17.985932487778415 + 12/03 14:20:00,15.6,15.6,17.980597714205424 + 12/03 14:30:00,15.6,15.6,17.97587745599867 + 12/03 14:40:00,15.6,15.6,17.971912432847725 + 12/03 14:50:00,15.6,15.6,17.968749962901616 + 12/03 15:00:00,15.6,15.6,17.966315250078087 + 12/03 15:10:00,15.6,15.6,17.96483496190075 + 12/03 15:20:00,15.6,15.6,17.964077662666996 + 12/03 15:30:00,15.6,15.6,17.963876124885809 + 12/03 15:40:00,15.6,15.6,17.964137720092233 + 12/03 15:50:00,15.6,15.6,17.965007727926243 + 12/03 16:00:00,15.6,15.6,17.966409413027355 + 12/03 16:10:00,15.6,15.6,19.40282849409056 + 12/03 16:20:00,15.6,15.6,19.554792460344538 + 12/03 16:30:00,15.6,15.6,19.62116677964852 + 12/03 16:40:00,15.6,15.6,19.67382618631968 + 12/03 16:50:00,15.6,15.6,19.71680246019168 + 12/03 17:00:00,15.6,15.6,19.75346253585764 + 12/03 17:10:00,15.6,15.6,19.785211980096258 + 12/03 17:20:00,15.6,15.6,19.822522016056579 + 12/03 17:30:00,15.6,15.6,19.848306273672138 + 12/03 17:40:00,15.6,15.6,19.871748957766245 + 12/03 17:50:00,15.6,15.6,19.892900249953326 + 12/03 18:00:00,15.6,15.6,19.91181086309073 + 12/03 18:10:00,15.6,15.6,19.929817586742208 + 12/03 18:20:00,15.6,15.6,19.96391113089331 + 12/03 18:30:00,15.6,15.6,19.978859580780644 + 12/03 18:40:00,15.6,15.6,19.992536078162538 + 12/03 18:50:00,15.6,15.6,20.0051394366715 + 12/03 19:00:00,15.6,15.6,20.01697319569633 + 12/03 19:10:00,15.6,15.6,20.026914836208087 + 12/03 19:20:00,15.6,15.6,20.036223060272076 + 12/03 19:30:00,15.6,15.6,20.04496865179963 + 12/03 19:40:00,15.6,15.6,20.05315721183918 + 12/03 19:50:00,15.6,15.6,20.06095420119419 + 12/03 20:00:00,15.6,15.6,20.06833437962839 + 12/03 20:10:00,15.6,15.6,20.07754210768239 + 12/03 20:20:00,15.6,15.6,20.086326759827658 + 12/03 20:30:00,15.6,15.6,20.094603237788858 + 12/03 20:40:00,15.6,15.6,20.10242923856056 + 12/03 20:50:00,15.6,15.6,20.10991069266118 + 12/03 21:00:00,15.6,15.6,20.117028639155 + 12/03 21:10:00,15.6,15.6,20.099709040983073 + 12/03 21:20:00,15.6,15.6,20.10491850721075 + 12/03 21:30:00,15.6,15.6,20.11000561611282 + 12/03 21:40:00,15.6,15.6,20.115130784416729 + 12/03 21:50:00,15.6,15.6,20.12021779676037 + 12/03 22:00:00,15.6,15.6,20.125262515129238 + 12/03 22:10:00,15.6,15.6,20.130010737466259 + 12/03 22:20:00,15.6,15.6,20.13453302255047 + 12/03 22:30:00,15.6,15.6,20.13899558559662 + 12/03 22:40:00,15.6,15.6,20.143300079281504 + 12/03 22:50:00,15.6,15.6,20.14745010754272 + 12/03 23:00:00,15.6,15.6,20.15145605165446 + 12/03 23:10:00,15.6,15.6,20.15650052020217 + 12/03 23:20:00,15.6,15.6,20.161404719624465 + 12/03 23:30:00,15.6,15.6,20.166141324574654 + 12/03 23:40:00,15.6,15.6,20.170685919767704 + 12/03 23:50:00,15.6,15.6,20.174966481220875 + 12/03 24:00:00,15.6,15.6,20.179150896424706 + 12/04 00:10:00,15.6,15.6,20.18272431960291 + 12/04 00:20:00,15.6,15.6,20.18618191450764 + 12/04 00:30:00,15.6,15.6,20.189685120601444 + 12/04 00:40:00,15.6,15.6,20.19326797669086 + 12/04 00:50:00,15.6,15.6,20.196865298499576 + 12/04 01:00:00,15.6,15.6,20.20054371607582 + 12/04 01:10:00,15.6,15.6,20.205012759095003 + 12/04 01:20:00,15.6,15.6,20.20959258704117 + 12/04 01:30:00,15.6,15.6,20.214295992927349 + 12/04 01:40:00,15.6,15.6,20.21911691705767 + 12/04 01:50:00,15.6,15.6,20.223956479220126 + 12/04 02:00:00,15.6,15.6,20.228988536553744 + 12/04 02:10:00,15.6,15.6,20.232657336129109 + 12/04 02:20:00,15.6,15.6,20.23632571870307 + 12/04 02:30:00,15.6,15.6,20.23994842949557 + 12/04 02:40:00,15.6,15.6,20.243436749509109 + 12/04 02:50:00,15.6,15.6,20.2469432319049 + 12/04 03:00:00,15.6,15.6,20.25041698747666 + 12/04 03:10:00,15.6,15.6,20.254892889110758 + 12/04 03:20:00,15.6,15.6,20.25903309944177 + 12/04 03:30:00,15.6,15.6,20.262888148774488 + 12/04 03:40:00,15.6,15.6,20.266514772757053 + 12/04 03:50:00,15.6,15.6,20.26993268380034 + 12/04 04:00:00,15.6,15.6,20.27312259399816 + 12/04 04:10:00,15.6,15.6,20.276311572505859 + 12/04 04:20:00,15.6,15.6,20.279394534736917 + 12/04 04:30:00,15.6,15.6,20.28248843751839 + 12/04 04:40:00,15.6,15.6,20.285564785133475 + 12/04 04:50:00,15.6,15.6,20.28865073422347 + 12/04 05:00:00,15.6,15.6,20.291755910283926 + 12/04 05:10:00,15.6,15.6,20.294089363550687 + 12/04 05:20:00,15.6,15.6,20.296315366959829 + 12/04 05:30:00,15.6,15.6,20.29857868691137 + 12/04 05:40:00,15.6,15.6,20.300788986681295 + 12/04 05:50:00,15.6,15.6,20.302945933784245 + 12/04 06:00:00,15.6,15.6,20.30505153673295 + 12/04 06:10:00,15.6,15.6,20.307110053531358 + 12/04 06:20:00,15.6,15.6,20.309256841071446 + 12/04 06:30:00,15.6,15.6,20.311426560005076 + 12/04 06:40:00,15.6,15.6,20.313615774150319 + 12/04 06:50:00,15.6,15.6,20.315820351849966 + 12/04 07:00:00,15.6,15.6,20.31796473903591 + 12/04 07:05:00,15.6,15.6,18.311661011086487 + 12/04 07:10:00,15.6,15.6,18.31175186677128 + 12/04 07:20:00,15.6,15.6,18.079399727027224 + 12/04 07:30:00,15.6,15.6,17.992304756836899 + 12/04 07:40:00,15.6,15.6,17.92355694370734 + 12/04 07:50:00,15.6,15.6,17.868124882166755 + 12/04 08:00:00,15.6,15.6,17.82138563857641 + 12/04 08:05:00,15.6,15.6,16.335526371984068 + 12/04 08:10:00,15.6,15.6,16.335446308007655 + 12/04 08:15:00,15.6,15.6,16.117603079922739 + 12/04 08:20:00,15.6,15.6,16.117680393514058 + 12/04 08:30:00,15.6,15.6,16.012521849712326 + 12/04 08:40:00,15.6,15.6,15.92488260253276 + 12/04 08:50:00,15.6,15.6,15.849847740730834 + 12/04 09:00:00,15.6,15.6,15.783347386756035 + 12/04 09:10:00,15.6,15.6,15.692653127640943 + 12/04 09:20:00,15.6,15.6,15.624221880051442 + 12/04 09:30:00,15.6,15.6,15.567302952761013 + 12/04 09:40:00,15.6,15.6,15.5135902316073 + 12/04 09:50:00,15.6,15.6,15.462782125169701 + 12/04 10:00:00,15.6,15.6,15.414609938148735 + 12/04 10:10:00,15.6,15.6,15.371075405642158 + 12/04 10:20:00,15.6,15.6,15.319361686342628 + 12/04 10:30:00,15.6,15.6,15.280364530525802 + 12/04 10:40:00,15.6,15.6,15.243435782772768 + 12/04 10:50:00,15.6,15.6,15.208254112334333 + 12/04 11:00:00,15.6,15.6,15.174694995851127 + 12/04 11:10:00,15.6,15.6,15.141570948000935 + 12/04 11:20:00,15.6,15.6,15.106358888745778 + 12/04 11:30:00,15.6,15.6,15.07585226770955 + 12/04 11:40:00,15.6,15.6,15.046503620423112 + 12/04 11:50:00,15.6,15.6,15.018258702181877 + 12/04 12:00:00,15.6,15.6,14.99109839676009 + 12/04 12:10:00,15.553753753753754,15.553753753753754,14.965575364514068 + 12/04 12:20:00,15.507507507507507,15.507507507507507,14.951046319408432 + 12/04 12:30:00,15.46126126126126,15.46126126126126,14.92805338388971 + 12/04 12:40:00,15.415015015015016,15.415015015015016,14.907433789725387 + 12/04 12:50:00,15.368768768768769,15.368768768768769,14.888150933566229 + 12/04 13:00:00,15.322522522522523,15.322522522522523,14.867676105439497 + 12/04 13:10:00,15.276276276276276,15.276276276276276,14.84926321254249 + 12/04 13:20:00,15.23003003003003,15.23003003003003,14.823650905012862 + 12/04 13:30:00,15.183783783783785,15.183783783783785,14.805231090382164 + 12/04 13:40:00,15.137537537537538,15.137537537537538,14.79111819561877 + 12/04 13:50:00,15.091291291291292,15.091291291291292,14.775199555738573 + 12/04 14:00:00,15.045045045045045,15.045045045045045,14.76220670206761 + 12/04 14:10:00,15.01981981981982,15.01981981981982,14.748800465641415 + 12/04 14:20:00,14.994594594594594,14.994594594594594,14.740448291906408 + 12/04 14:30:00,14.96936936936937,14.96936936936937,14.730561844506678 + 12/04 14:40:00,14.944144144144144,14.944144144144144,14.71901856357675 + 12/04 14:50:00,14.91891891891892,14.91891891891892,14.711230481447437 + 12/04 15:00:00,14.893693693693694,14.893693693693694,14.701921088836928 + 12/04 15:10:00,14.872672672672673,14.872672672672673,14.694688682990149 + 12/04 15:20:00,14.85165165165165,14.85165165165165,14.691799577964864 + 12/04 15:30:00,14.83063063063063,14.83063063063063,14.683892365035565 + 12/04 15:40:00,14.809609609609609,14.809609609609609,14.679276083976717 + 12/04 15:50:00,14.788588588588589,14.788588588588589,14.674040062355696 + 12/04 16:00:00,14.767567567567568,14.767567567567568,14.669391118473087 + 12/04 16:10:00,14.813813813813815,14.813813813813815,16.835909802064039 + 12/04 16:20:00,14.860060060060059,14.860060060060059,17.08367375794412 + 12/04 16:30:00,14.906306306306306,14.906306306306306,17.182063238905479 + 12/04 16:40:00,14.952552552552552,14.952552552552552,17.258949799842879 + 12/04 16:50:00,14.998798798798799,14.998798798798799,17.319895083250086 + 12/04 17:00:00,15.045045045045045,15.045045045045045,17.368015603776333 + 12/04 17:10:00,15.112312312312313,15.112312312312313,17.4385093859934 + 12/04 17:20:00,15.17957957957958,15.17957957957958,17.4980175810613 + 12/04 17:30:00,15.246846846846847,15.246846846846847,17.533264706959199 + 12/04 17:40:00,15.314114114114114,15.314114114114114,17.564842061032246 + 12/04 17:50:00,15.381381381381381,15.381381381381381,17.59309674701972 + 12/04 18:00:00,15.448648648648648,15.448648648648648,17.618342737553414 + 12/04 18:10:00,15.545345345345345,15.545345345345345,17.65453601062034 + 12/04 18:20:00,15.6,15.6,17.68058386335315 + 12/04 18:30:00,15.6,15.6,17.699208393036498 + 12/04 18:40:00,15.6,15.6,17.716209536420437 + 12/04 18:50:00,15.6,15.6,17.732011409054264 + 12/04 19:00:00,15.6,15.6,17.74679202107668 + 12/04 19:10:00,15.6,15.6,17.760610301693853 + 12/04 19:20:00,15.6,15.6,17.77442854330754 + 12/04 19:30:00,15.6,15.6,17.787579073250915 + 12/04 19:40:00,15.6,15.6,17.800328406727389 + 12/04 19:50:00,15.6,15.6,17.812476440296569 + 12/04 20:00:00,15.6,15.6,17.824086851253069 + 12/04 20:10:00,15.6,15.6,17.84836958688235 + 12/04 20:20:00,15.6,15.6,17.859529521821924 + 12/04 20:30:00,15.6,15.6,17.869887509366416 + 12/04 20:40:00,15.6,15.6,17.879777242824237 + 12/04 20:50:00,15.6,15.6,17.88933397386251 + 12/04 21:00:00,15.6,15.6,17.898568077308864 + 12/04 21:10:00,15.6,15.6,17.885469654101159 + 12/04 21:20:00,15.6,15.6,17.898897645436919 + 12/04 21:30:00,15.6,15.6,17.90737663733977 + 12/04 21:40:00,15.6,15.6,17.915318451201335 + 12/04 21:50:00,15.6,15.6,17.922835412506708 + 12/04 22:00:00,15.6,15.6,17.929968267586064 + 12/04 22:10:00,15.6,15.6,17.93644376466986 + 12/04 22:20:00,15.6,15.6,17.94272762010943 + 12/04 22:30:00,15.6,15.6,17.948872743298219 + 12/04 22:40:00,15.6,15.6,17.954864238446726 + 12/04 22:50:00,15.6,15.6,17.96068601926603 + 12/04 23:00:00,15.6,15.6,17.966465159899835 + 12/04 23:10:00,15.6,15.6,19.343336340646919 + 12/04 23:20:00,15.6,15.6,19.484944655684577 + 12/04 23:30:00,15.6,15.6,19.547461169973486 + 12/04 23:40:00,15.6,15.6,19.59667542311874 + 12/04 23:50:00,15.6,15.6,19.636393974503244 + 12/04 24:00:00,15.6,15.6,19.669711705566184 + 12/05 00:10:00,15.6,15.6,19.70001847175137 + 12/05 00:20:00,15.6,15.6,19.727034540529855 + 12/05 00:30:00,15.6,15.6,19.751387915841197 + 12/05 00:40:00,15.6,15.6,19.77377185730174 + 12/05 00:50:00,15.6,15.6,19.794500038312845 + 12/05 01:00:00,15.6,15.6,19.8138322170005 + 12/05 01:10:00,15.6,15.6,19.829908842892296 + 12/05 01:20:00,15.6,15.6,19.844856047000364 + 12/05 01:30:00,15.6,15.6,19.858881115506486 + 12/05 01:40:00,15.6,15.6,19.87217809851344 + 12/05 01:50:00,15.6,15.6,19.88479725225302 + 12/05 02:00:00,15.6,15.6,19.896804637819117 + 12/05 02:10:00,15.6,15.6,19.909232834436229 + 12/05 02:20:00,15.6,15.6,19.9211317667173 + 12/05 02:30:00,15.6,15.6,19.932618082607559 + 12/05 02:40:00,15.6,15.6,19.943667627122158 + 12/05 02:50:00,15.6,15.6,19.954309881689029 + 12/05 03:00:00,15.6,15.6,19.96456428902922 + 12/05 03:10:00,15.6,15.6,19.974782080470143 + 12/05 03:20:00,15.6,15.6,19.984704004837654 + 12/05 03:30:00,15.6,15.6,19.994238937861505 + 12/05 03:40:00,15.6,15.6,20.003406803999487 + 12/05 03:50:00,15.6,15.6,20.01223235415435 + 12/05 04:00:00,15.6,15.6,20.020647238146294 + 12/05 04:10:00,15.6,15.6,20.02845205217763 + 12/05 04:20:00,15.6,15.6,20.03605432798412 + 12/05 04:30:00,15.6,15.6,20.043475186144005 + 12/05 04:40:00,15.6,15.6,20.05073226082644 + 12/05 04:50:00,15.6,15.6,20.057764926707188 + 12/05 05:00:00,15.6,15.6,20.06467878952537 + 12/05 05:10:00,15.6,15.6,20.070849084249948 + 12/05 05:20:00,15.6,15.6,20.07684030829701 + 12/05 05:30:00,15.6,15.6,20.08264753176086 + 12/05 05:40:00,15.6,15.6,20.088229744724154 + 12/05 05:50:00,15.6,15.6,20.09362492744254 + 12/05 06:00:00,15.6,15.6,20.09891703661335 + 12/05 06:10:00,15.6,15.6,20.104689447620865 + 12/05 06:20:00,15.6,15.6,20.11036025953443 + 12/05 06:30:00,15.6,15.6,20.115919570589786 + 12/05 06:40:00,15.6,15.6,20.121333305725576 + 12/05 06:50:00,15.6,15.6,20.12674839623756 + 12/05 07:00:00,15.6,15.6,20.132079362859895 + 12/05 07:10:00,15.6,15.6,18.12151874773906 + 12/05 07:20:00,15.6,15.6,17.88960586112218 + 12/05 07:30:00,15.6,15.6,17.80413932482264 + 12/05 07:40:00,15.6,15.6,17.737206720228593 + 12/05 07:50:00,15.6,15.6,17.683726215841355 + 12/05 08:00:00,15.6,15.6,17.63909341820667 + 12/05 08:10:00,15.6,15.6,16.149567070377829 + 12/05 08:20:00,15.6,15.6,15.930478879964444 + 12/05 08:30:00,15.6,15.6,15.825698488666883 + 12/05 08:40:00,15.6,15.6,15.738061150740079 + 12/05 08:50:00,15.6,15.6,15.663281011903779 + 12/05 09:00:00,15.6,15.6,15.5969100105188 + 12/05 09:10:00,15.6,15.6,15.511255691531547 + 12/05 09:20:00,15.6,15.6,15.447665095288011 + 12/05 09:30:00,15.6,15.6,15.395311590161726 + 12/05 09:40:00,15.6,15.6,15.346021230847827 + 12/05 09:50:00,15.6,15.6,15.299602698177344 + 12/05 10:00:00,15.6,15.6,15.255874001231865 + 12/05 10:10:00,15.6,15.6,15.21413850517805 + 12/05 10:20:00,15.6,15.6,15.163563950251542 + 12/05 10:30:00,15.6,15.6,15.125435201912904 + 12/05 10:40:00,15.557957957957959,15.557957957957959,15.088978543538556 + 12/05 10:50:00,15.44024024024024,15.44024024024024,15.054112505123112 + 12/05 11:00:00,15.322522522522523,15.322522522522523,15.020802521478544 + 12/05 11:10:00,15.251051051051052,15.251051051051052,14.990031434816365 + 12/05 11:20:00,15.17957957957958,15.17957957957958,14.957659341011953 + 12/05 11:30:00,15.108108108108109,15.108108108108109,14.93160222816383 + 12/05 11:40:00,15.036636636636637,15.036636636636637,14.907730323612914 + 12/05 11:50:00,14.965165165165164,14.965165165165164,14.881909168683066 + 12/05 12:00:00,14.893693693693694,14.893693693693694,14.860913731129929 + 12/05 12:10:00,14.8012012012012,14.8012012012012,14.837801956947749 + 12/05 12:20:00,14.70870870870871,14.70870870870871,14.82748358252542 + 12/05 12:30:00,14.616216216216217,14.616216216216217,14.808573418461455 + 12/05 12:40:00,14.523723723723723,14.523723723723723,14.78835738594773 + 12/05 12:50:00,14.431231231231232,14.431231231231232,14.771589017581962 + 12/05 13:00:00,14.338738738738739,14.338738738738739,14.754991946209139 + 12/05 13:10:00,14.267267267267269,14.267267267267269,14.737206840526318 + 12/05 13:20:00,14.195795795795796,14.195795795795796,14.71330061744563 + 12/05 13:30:00,14.124324324324326,14.124324324324326,14.697371645713199 + 12/05 13:40:00,14.052852852852853,14.052852852852853,14.683796254420195 + 12/05 13:50:00,13.981381381381383,13.981381381381383,14.670370342012437 + 12/05 14:00:00,13.90990990990991,13.90990990990991,14.657595270128187 + 12/05 14:10:00,13.88888888888889,13.88888888888889,14.647269170369532 + 12/05 14:20:00,13.867867867867869,13.867867867867869,14.638421715853724 + 12/05 14:30:00,13.846846846846848,13.846846846846848,14.62965022361503 + 12/05 14:40:00,13.825825825825828,13.825825825825828,14.618927725701694 + 12/05 14:50:00,13.804804804804805,13.804804804804805,14.6117235887347 + 12/05 15:00:00,13.783783783783785,13.783783783783785,14.605161174493024 + 12/05 15:10:00,13.83003003003003,13.83003003003003,14.599338780158945 + 12/05 15:20:00,13.876276276276276,13.876276276276276,14.601170202281839 + 12/05 15:30:00,13.922522522522524,13.922522522522524,14.597421056563827 + 12/05 15:40:00,13.968768768768769,13.968768768768769,14.596600889485467 + 12/05 15:50:00,14.015015015015015,14.015015015015015,14.595998678212734 + 12/05 16:00:00,14.061261261261262,14.061261261261262,14.593245001691601 + 12/05 16:05:00,14.132732732732733,14.132732732732733,16.762558208351629 + 12/05 16:10:00,14.132732732732733,14.132732732732733,16.761514072737893 + 12/05 16:20:00,14.204204204204205,14.204204204204205,17.01044525936114 + 12/05 16:30:00,14.275675675675675,14.275675675675675,17.109279364349264 + 12/05 16:40:00,14.347147147147148,14.347147147147148,17.1861116809196 + 12/05 16:50:00,14.418618618618618,14.418618618618618,17.24696283526971 + 12/05 17:00:00,14.49009009009009,14.49009009009009,17.295571272073145 + 12/05 17:10:00,14.557357357357358,14.557357357357358,17.364798642067674 + 12/05 17:20:00,14.624624624624625,14.624624624624625,17.423638847943328 + 12/05 17:30:00,14.691891891891892,14.691891891891892,17.45836064408249 + 12/05 17:40:00,14.759159159159159,14.759159159159159,17.489635489183838 + 12/05 17:50:00,14.826426426426427,14.826426426426427,17.517716467769654 + 12/05 18:00:00,14.893693693693694,14.893693693693694,17.542885384948204 + 12/05 18:10:00,14.93993993993994,14.93993993993994,17.57835161449898 + 12/05 18:20:00,14.986186186186187,14.986186186186187,17.60403307104694 + 12/05 18:30:00,15.032432432432433,15.032432432432433,17.62238830032185 + 12/05 18:40:00,15.078678678678678,15.078678678678678,17.63913911676557 + 12/05 18:50:00,15.124924924924925,15.124924924924925,17.654664081057495 + 12/05 19:00:00,15.17117117117117,15.17117117117117,17.669125374534429 + 12/05 19:10:00,15.17117117117117,15.17117117117117,17.68211202833345 + 12/05 19:20:00,15.17117117117117,15.17117117117117,17.694371154077879 + 12/05 19:30:00,15.17117117117117,15.17117117117117,17.70576504548128 + 12/05 19:40:00,15.17117117117117,15.17117117117117,17.71631997673165 + 12/05 19:50:00,15.17117117117117,15.17117117117117,17.726244503415797 + 12/05 20:00:00,15.17117117117117,15.17117117117117,17.735565003398038 + 12/05 20:10:00,15.196396396396397,15.196396396396397,17.757253757823628 + 12/05 20:20:00,15.22162162162162,15.22162162162162,17.765903914799148 + 12/05 20:30:00,15.246846846846847,15.246846846846847,17.77373483251097 + 12/05 20:40:00,15.272072072072073,15.272072072072073,17.781096793635624 + 12/05 20:50:00,15.297297297297297,15.297297297297297,17.788043909285883 + 12/05 21:00:00,15.322522522522523,15.322522522522523,17.794577832835917 + 12/05 21:10:00,15.368768768768769,15.368768768768769,17.778804759563977 + 12/05 21:20:00,15.415015015015016,15.415015015015016,17.79024573913162 + 12/05 21:30:00,15.46126126126126,15.46126126126126,17.79719685308529 + 12/05 21:40:00,15.507507507507507,15.507507507507507,17.80413773161382 + 12/05 21:50:00,15.553753753753754,15.553753753753754,17.811031402433565 + 12/05 22:00:00,15.6,15.6,17.817855998436813 + 12/05 22:10:00,15.6,15.6,17.824807252923724 + 12/05 22:20:00,15.6,15.6,17.831589294464658 + 12/05 22:30:00,15.6,15.6,17.83816633635164 + 12/05 22:40:00,15.6,15.6,17.844506003042853 + 12/05 22:50:00,15.6,15.6,17.850513478797415 + 12/05 23:00:00,15.6,15.6,17.85629423879661 + 12/05 23:10:00,15.6,15.6,19.23381236581392 + 12/05 23:20:00,15.6,15.6,19.375940679122118 + 12/05 23:30:00,15.6,15.6,19.43822037320689 + 12/05 23:40:00,15.6,15.6,19.48699110314336 + 12/05 23:50:00,15.6,15.6,19.525964986680987 + 12/05 24:00:00,15.6,15.6,19.558250780647137 + 12/06 00:10:00,15.574774774774774,15.574774774774774,19.586144447955968 + 12/06 00:20:00,15.54954954954955,15.54954954954955,19.610448172425895 + 12/06 00:30:00,15.524324324324324,15.524324324324324,19.631930694548115 + 12/06 00:40:00,15.499099099099098,15.499099099099098,19.6510977462571 + 12/06 00:50:00,15.473873873873874,15.473873873873874,19.668371631008346 + 12/06 01:00:00,15.448648648648648,15.448648648648648,19.683972963305466 + 12/06 01:10:00,15.473873873873874,15.473873873873874,19.69851587202198 + 12/06 01:20:00,15.499099099099098,15.499099099099098,19.71237040862899 + 12/06 01:30:00,15.524324324324324,15.524324324324324,19.725513997402858 + 12/06 01:40:00,15.54954954954955,15.54954954954955,19.738132966975536 + 12/06 01:50:00,15.574774774774774,15.574774774774774,19.750141375751349 + 12/06 02:00:00,15.6,15.6,19.76175022438992 + 12/06 02:10:00,15.6,15.6,19.772588143879994 + 12/06 02:20:00,15.6,15.6,19.78311693691522 + 12/06 02:30:00,15.6,15.6,19.793322065639705 + 12/06 02:40:00,15.6,15.6,19.803179763218968 + 12/06 02:50:00,15.6,15.6,19.812782783733156 + 12/06 03:00:00,15.6,15.6,19.822161353717527 + 12/06 03:10:00,15.6,15.6,19.831572247084617 + 12/06 03:20:00,15.6,15.6,19.840956211602618 + 12/06 03:30:00,15.6,15.6,19.849993957035009 + 12/06 03:40:00,15.6,15.6,19.858788114981665 + 12/06 03:50:00,15.6,15.6,19.867357733678788 + 12/06 04:00:00,15.6,15.6,19.875640606787579 + 12/06 04:10:00,15.6,15.6,19.884122786617146 + 12/06 04:20:00,15.6,15.6,19.89238622251231 + 12/06 04:30:00,15.6,15.6,19.90039160770316 + 12/06 04:40:00,15.6,15.6,19.908316461733816 + 12/06 04:50:00,15.6,15.6,19.916074365568968 + 12/06 05:00:00,15.6,15.6,19.92367055256873 + 12/06 05:10:00,15.6,15.6,19.931323417767918 + 12/06 05:20:00,15.6,15.6,19.938277130751599 + 12/06 05:30:00,15.6,15.6,19.945012382078283 + 12/06 05:40:00,15.6,15.6,19.95135804282438 + 12/06 05:50:00,15.6,15.6,19.957427872873507 + 12/06 06:00:00,15.6,15.6,19.963257950956704 + 12/06 06:10:00,15.6,15.6,19.96762162786488 + 12/06 06:20:00,15.6,15.6,19.97239264549698 + 12/06 06:30:00,15.6,15.6,19.977124275604777 + 12/06 06:40:00,15.6,15.6,19.98191775748947 + 12/06 06:50:00,15.6,15.6,19.986678950851564 + 12/06 07:00:00,15.6,15.6,19.991335413676479 + 12/06 07:10:00,15.6,15.6,17.99056869541499 + 12/06 07:20:00,15.6,15.6,17.759518059471593 + 12/06 07:30:00,15.6,15.6,17.674262818429626 + 12/06 07:40:00,15.6,15.6,17.60765288290473 + 12/06 07:50:00,15.6,15.6,17.554739184798664 + 12/06 08:00:00,15.6,15.6,17.511038439801895 + 12/06 08:10:00,15.6,15.6,16.0332658827671 + 12/06 08:20:00,15.6,15.6,15.81898377676823 + 12/06 08:30:00,15.6,15.6,15.720449521558067 + 12/06 08:40:00,15.6,15.6,15.640600821916327 + 12/06 08:50:00,15.6,15.6,15.574773566572337 + 12/06 09:00:00,15.6,15.6,15.518418879314284 + 12/06 09:10:00,15.553753753753754,15.553753753753754,15.443132258156887 + 12/06 09:20:00,15.507507507507507,15.507507507507507,15.390171429724197 + 12/06 09:30:00,15.46126126126126,15.46126126126126,15.349152471713455 + 12/06 09:40:00,15.415015015015016,15.415015015015016,15.311411992382626 + 12/06 09:50:00,15.368768768768769,15.368768768768769,15.276543545230253 + 12/06 10:00:00,15.322522522522523,15.322522522522523,15.244170190501361 + 12/06 10:10:00,15.322522522522523,15.322522522522523,15.213892472997469 + 12/06 10:20:00,15.322522522522523,15.322522522522523,15.174566276001203 + 12/06 10:30:00,15.322522522522523,15.322522522522523,15.147567762755229 + 12/06 10:40:00,15.322522522522523,15.322522522522523,15.122200144580438 + 12/06 10:50:00,15.322522522522523,15.322522522522523,15.098450531780621 + 12/06 11:00:00,15.322522522522523,15.322522522522523,15.076240080931987 + 12/06 11:10:00,15.276276276276276,15.276276276276276,15.05460028983483 + 12/06 11:20:00,15.23003003003003,15.23003003003003,15.031315576874553 + 12/06 11:30:00,15.183783783783785,15.183783783783785,15.013778655032308 + 12/06 11:40:00,15.137537537537538,15.137537537537538,14.997498102388175 + 12/06 11:50:00,15.091291291291292,15.091291291291292,14.978678226161156 + 12/06 12:00:00,15.045045045045045,15.045045045045045,14.963663654636078 + 12/06 12:10:00,15.01981981981982,15.01981981981982,14.946455239780337 + 12/06 12:20:00,14.994594594594594,14.994594594594594,14.94222737218872 + 12/06 12:30:00,14.96936936936937,14.96936936936937,14.928783043872955 + 12/06 12:40:00,14.944144144144144,14.944144144144144,14.914261721808066 + 12/06 12:50:00,14.91891891891892,14.91891891891892,14.902725488360457 + 12/06 13:00:00,14.893693693693694,14.893693693693694,14.890854630536467 + 12/06 13:10:00,14.893693693693694,14.893693693693694,14.877820141892367 + 12/06 13:20:00,14.893693693693694,14.893693693693694,14.857591397488062 + 12/06 13:30:00,14.893693693693694,14.893693693693694,14.844669859484899 + 12/06 13:40:00,14.893693693693694,14.893693693693694,14.834244659883368 + 12/06 13:50:00,14.893693693693694,14.893693693693694,14.823002176407194 + 12/06 14:00:00,14.893693693693694,14.893693693693694,14.812602562329726 + 12/06 14:10:00,14.872672672672673,14.872672672672673,14.803669358148016 + 12/06 14:20:00,14.85165165165165,14.85165165165165,14.795978665859656 + 12/06 14:30:00,14.83063063063063,14.83063063063063,14.787434076808488 + 12/06 14:40:00,14.809609609609609,14.809609609609609,14.775910721781772 + 12/06 14:50:00,14.788588588588589,14.788588588588589,14.767973058074187 + 12/06 15:00:00,14.767567567567568,14.767567567567568,14.75929088787352 + 12/06 15:10:00,14.767567567567568,14.767567567567568,14.7515730503587 + 12/06 15:20:00,14.767567567567568,14.767567567567568,14.750870399681786 + 12/06 15:30:00,14.767567567567568,14.767567567567568,14.744119716161121 + 12/06 15:40:00,14.767567567567568,14.767567567567568,14.74086852982139 + 12/06 15:50:00,14.767567567567568,14.767567567567568,14.737020639300221 + 12/06 16:00:00,14.767567567567568,14.767567567567568,14.732095903888072 + 12/06 16:05:00,14.767567567567568,14.767567567567568,16.86872021881931 + 12/06 16:10:00,14.767567567567568,14.767567567567568,16.867866781579694 + 12/06 16:20:00,14.767567567567568,14.767567567567568,17.109500423570358 + 12/06 16:30:00,14.767567567567568,14.767567567567568,17.20416421584028 + 12/06 16:40:00,14.767567567567568,14.767567567567568,17.276136660262435 + 12/06 16:50:00,14.767567567567568,14.767567567567568,17.332312563295255 + 12/06 17:00:00,14.767567567567568,14.767567567567568,17.375644428326546 + 12/06 17:10:00,14.767567567567568,14.767567567567568,17.440057370061085 + 12/06 17:20:00,14.767567567567568,14.767567567567568,17.493609569968677 + 12/06 17:30:00,14.767567567567568,14.767567567567568,17.52353304070433 + 12/06 17:40:00,14.767567567567568,14.767567567567568,17.550400482526685 + 12/06 17:50:00,14.767567567567568,14.767567567567568,17.57461750353443 + 12/06 18:00:00,14.767567567567568,14.767567567567568,17.596242002935847 + 12/06 18:10:00,14.742342342342342,14.742342342342342,17.62834276707787 + 12/06 18:20:00,14.717117117117116,14.717117117117116,17.651638001190294 + 12/06 18:30:00,14.691891891891892,14.691891891891892,17.66786227833061 + 12/06 18:40:00,14.666666666666668,14.666666666666668,17.68281568086111 + 12/06 18:50:00,14.641441441441442,14.641441441441442,17.69651055917306 + 12/06 19:00:00,14.616216216216217,14.616216216216217,17.709131775916665 + 12/06 19:10:00,14.662462462462463,14.662462462462463,17.721146470426246 + 12/06 19:20:00,14.70870870870871,14.70870870870871,17.730907095741025 + 12/06 19:30:00,14.754954954954954,14.754954954954954,17.740202565959188 + 12/06 19:40:00,14.8012012012012,14.8012012012012,17.748820619735896 + 12/06 19:50:00,14.847447447447447,14.847447447447447,17.757176406713236 + 12/06 20:00:00,14.893693693693694,14.893693693693694,17.765324946344703 + 12/06 20:10:00,14.893693693693694,14.893693693693694,17.78619462959478 + 12/06 20:20:00,14.893693693693694,14.893693693693694,17.795117895757387 + 12/06 20:30:00,14.893693693693694,14.893693693693694,17.80317005300737 + 12/06 20:40:00,14.893693693693694,14.893693693693694,17.810862044984888 + 12/06 20:50:00,14.893693693693694,14.893693693693694,17.81801621848802 + 12/06 21:00:00,14.893693693693694,14.893693693693694,17.824658918375989 + 12/06 21:10:00,14.893693693693694,14.893693693693694,17.808733696949817 + 12/06 21:20:00,14.893693693693694,14.893693693693694,17.81872370394632 + 12/06 21:30:00,14.893693693693694,14.893693693693694,17.823914664870583 + 12/06 21:40:00,14.893693693693694,14.893693693693694,17.828909141776177 + 12/06 21:50:00,14.893693693693694,14.893693693693694,17.83359897884778 + 12/06 22:00:00,14.893693693693694,14.893693693693694,17.83813993438053 + 12/06 22:10:00,14.93993993993994,14.93993993993994,17.84142633805781 + 12/06 22:20:00,14.986186186186187,14.986186186186187,17.844793924140729 + 12/06 22:30:00,15.032432432432433,15.032432432432433,17.848138282339247 + 12/06 22:40:00,15.078678678678678,15.078678678678678,17.85146910965495 + 12/06 22:50:00,15.124924924924925,15.124924924924925,17.8547016347225 + 12/06 23:00:00,15.17117117117117,15.17117117117117,17.85795530901293 + 12/06 23:10:00,15.196396396396397,15.196396396396397,19.22282735698427 + 12/06 23:20:00,15.22162162162162,15.22162162162162,19.36526195553664 + 12/06 23:30:00,15.246846846846847,15.246846846846847,19.428311360614289 + 12/06 23:40:00,15.272072072072073,15.272072072072073,19.477922111999729 + 12/06 23:50:00,15.297297297297297,15.297297297297297,19.51792316515129 + 12/06 24:00:00,15.322522522522523,15.322522522522523,19.551651151468076 + 12/07 00:10:00,15.393993993993995,15.393993993993995,19.57970766513853 + 12/07 00:20:00,15.465465465465466,15.465465465465466,19.60436382967022 + 12/07 00:30:00,15.536936936936936,15.536936936936936,19.62647231327064 + 12/07 00:40:00,15.6,15.6,19.646656711149544 + 12/07 00:50:00,15.6,15.6,19.665296416407459 + 12/07 01:00:00,15.6,15.6,19.682646063870423 + 12/07 01:10:00,15.6,15.6,19.697315743087139 + 12/07 01:20:00,15.6,15.6,19.71158528167943 + 12/07 01:30:00,15.6,15.6,19.72563298999294 + 12/07 01:40:00,15.6,15.6,19.739682826655036 + 12/07 01:50:00,15.6,15.6,19.753590214975234 + 12/07 02:00:00,15.6,15.6,19.767363301182237 + 12/07 02:10:00,15.6,15.6,19.7822950820748 + 12/07 02:20:00,15.6,15.6,19.79680019823193 + 12/07 02:30:00,15.6,15.6,19.81068020070128 + 12/07 02:40:00,15.6,15.6,19.82390978034824 + 12/07 02:50:00,15.6,15.6,19.83648205118601 + 12/07 03:00:00,15.6,15.6,19.848441362420116 + 12/07 03:10:00,15.6,15.6,19.860556284104424 + 12/07 03:20:00,15.6,15.6,19.872231487154627 + 12/07 03:30:00,15.6,15.6,19.883432503155153 + 12/07 03:40:00,15.6,15.6,19.894193644844955 + 12/07 03:50:00,15.6,15.6,19.904561669896446 + 12/07 04:00:00,15.6,15.6,19.91448730897192 + 12/07 04:10:00,15.6,15.6,19.924084468275738 + 12/07 04:20:00,15.6,15.6,19.933333298397068 + 12/07 04:30:00,15.6,15.6,19.942300057875259 + 12/07 04:40:00,15.6,15.6,19.950936686290789 + 12/07 04:50:00,15.6,15.6,19.959238301390326 + 12/07 05:00:00,15.6,15.6,19.967320661053067 + 12/07 05:10:00,15.6,15.6,19.97670381362405 + 12/07 05:20:00,15.6,15.6,19.985851872184097 + 12/07 05:30:00,15.6,15.6,19.99483239042324 + 12/07 05:40:00,15.6,15.6,20.00360603948239 + 12/07 05:50:00,15.6,15.6,20.012228592611839 + 12/07 06:00:00,15.6,15.6,20.020800457156886 + 12/07 06:10:00,15.6,15.6,20.027319428216825 + 12/07 06:20:00,15.6,15.6,20.033817972713245 + 12/07 06:30:00,15.6,15.6,20.040248827676377 + 12/07 06:40:00,15.6,15.6,20.04658436030282 + 12/07 06:50:00,15.6,15.6,20.05296323108037 + 12/07 07:00:00,15.6,15.6,20.05929349416396 + 12/07 07:10:00,15.6,15.6,18.056195922437806 + 12/07 07:20:00,15.6,15.6,17.825732406661307 + 12/07 07:30:00,15.6,15.6,17.741975667461607 + 12/07 07:40:00,15.6,15.6,17.676783360255475 + 12/07 07:50:00,15.6,15.6,17.625326016853223 + 12/07 08:00:00,15.6,15.6,17.582553878406594 + 12/07 08:10:00,15.6,15.6,16.096755783157854 + 12/07 08:20:00,15.6,15.6,15.878300655474197 + 12/07 08:30:00,15.6,15.6,15.774906608185525 + 12/07 08:40:00,15.6,15.6,15.68920231297263 + 12/07 08:50:00,15.6,15.6,15.616862180014975 + 12/07 09:00:00,15.6,15.6,15.553320293128446 + 12/07 09:10:00,15.6,15.6,15.471218156910183 + 12/07 09:20:00,15.6,15.6,15.411608936683864 + 12/07 09:30:00,15.6,15.6,15.36330210244048 + 12/07 09:40:00,15.6,15.6,15.317981261423235 + 12/07 09:50:00,15.6,15.6,15.27519373534608 + 12/07 10:00:00,15.6,15.6,15.23466887030353 + 12/07 10:10:00,15.6,15.6,15.1961864533598 + 12/07 10:20:00,15.6,15.6,15.147783379251595 + 12/07 10:30:00,15.6,15.6,15.111495317303094 + 12/07 10:40:00,15.6,15.6,15.076499175446598 + 12/07 10:50:00,15.6,15.6,15.042988761342583 + 12/07 11:00:00,15.6,15.6,15.010891815304126 + 12/07 11:10:00,15.6,15.6,14.979894496447456 + 12/07 11:20:00,15.6,15.6,14.947468403076723 + 12/07 11:30:00,15.524324324324324,15.524324324324324,14.921512364032872 + 12/07 11:40:00,15.406606606606607,15.406606606606607,14.89548500532157 + 12/07 11:50:00,15.28888888888889,15.28888888888889,14.869185530085721 + 12/07 12:00:00,15.17117117117117,15.17117117117117,14.845537773494613 + 12/07 12:10:00,15.124924924924925,15.124924924924925,14.820114124347653 + 12/07 12:20:00,15.078678678678678,15.078678678678678,14.808688391937015 + 12/07 12:30:00,15.032432432432433,15.032432432432433,14.786713480717097 + 12/07 12:40:00,14.986186186186187,14.986186186186187,14.76651539234443 + 12/07 12:50:00,14.93993993993994,14.93993993993994,14.748706393329316 + 12/07 13:00:00,14.893693693693694,14.893693693693694,14.72942428808335 + 12/07 13:10:00,14.847447447447447,14.847447447447447,14.712542484031589 + 12/07 13:20:00,14.8012012012012,14.8012012012012,14.68867860592335 + 12/07 13:30:00,14.754954954954954,14.754954954954954,14.672322974762725 + 12/07 13:40:00,14.70870870870871,14.70870870870871,14.660259861680983 + 12/07 13:50:00,14.662462462462463,14.662462462462463,14.645771612989942 + 12/07 14:00:00,14.616216216216217,14.616216216216217,14.634889051502569 + 12/07 14:10:00,14.56996996996997,14.56996996996997,14.623103056344612 + 12/07 14:20:00,14.523723723723723,14.523723723723723,14.617491014270476 + 12/07 14:30:00,14.477477477477479,14.477477477477479,14.60912241781436 + 12/07 14:40:00,14.431231231231232,14.431231231231232,14.600193634832243 + 12/07 14:50:00,14.384984984984986,14.384984984984986,14.594369147696094 + 12/07 15:00:00,14.338738738738739,14.338738738738739,14.586146234763453 + 12/07 15:10:00,14.338738738738739,14.338738738738739,14.581587395069113 + 12/07 15:20:00,14.338738738738739,14.338738738738739,14.580545801144682 + 12/07 15:30:00,14.338738738738739,14.338738738738739,14.57616156840536 + 12/07 15:40:00,14.338738738738739,14.338738738738739,14.574495142271508 + 12/07 15:50:00,14.338738738738739,14.338738738738739,14.571083375860564 + 12/07 16:00:00,14.338738738738739,14.338738738738739,14.57022610478438 + 12/07 16:05:00,14.363963963963965,14.363963963963965,16.738226159643518 + 12/07 16:10:00,14.363963963963965,14.363963963963965,16.737273231274519 + 12/07 16:20:00,14.389189189189189,14.389189189189189,16.985943450548509 + 12/07 16:30:00,14.414414414414415,14.414414414414415,17.086746467059969 + 12/07 16:40:00,14.439639639639639,14.439639639639639,17.164455431391496 + 12/07 16:50:00,14.464864864864865,14.464864864864865,17.22486467752929 + 12/07 17:00:00,14.49009009009009,14.49009009009009,17.27441148120301 + 12/07 17:10:00,14.582582582582584,14.582582582582584,17.34553573972721 + 12/07 17:20:00,14.675075075075075,14.675075075075075,17.40517795591103 + 12/07 17:30:00,14.767567567567568,14.767567567567568,17.440764622645636 + 12/07 17:40:00,14.86006006006006,14.86006006006006,17.4728298507255 + 12/07 17:50:00,14.952552552552552,14.952552552552552,17.501749227290849 + 12/07 18:00:00,15.045045045045045,15.045045045045045,17.527747527567436 + 12/07 18:10:00,15.091291291291292,15.091291291291292,17.565017820733098 + 12/07 18:20:00,15.137537537537538,15.137537537537538,17.59234438528522 + 12/07 18:30:00,15.183783783783785,15.183783783783785,17.61227229220382 + 12/07 18:40:00,15.23003003003003,15.23003003003003,17.630454465124893 + 12/07 18:50:00,15.276276276276276,15.276276276276276,17.647254611409566 + 12/07 19:00:00,15.322522522522523,15.322522522522523,17.66285959095641 + 12/07 19:10:00,15.368768768768769,15.368768768768769,17.67710936171553 + 12/07 19:20:00,15.415015015015016,15.415015015015016,17.690676717968104 + 12/07 19:30:00,15.46126126126126,15.46126126126126,17.70349032945093 + 12/07 19:40:00,15.507507507507507,15.507507507507507,17.71566739833043 + 12/07 19:50:00,15.553753753753754,15.553753753753754,17.727278593772366 + 12/07 20:00:00,15.6,15.6,17.738354907473917 + 12/07 20:10:00,15.6,15.6,17.761896287701167 + 12/07 20:20:00,15.6,15.6,17.772938491111348 + 12/07 20:30:00,15.6,15.6,17.783317349525214 + 12/07 20:40:00,15.6,15.6,17.793490845609708 + 12/07 20:50:00,15.6,15.6,17.803415626244769 + 12/07 21:00:00,15.6,15.6,17.81305983731438 + 12/07 21:10:00,15.6,15.6,17.799626454436465 + 12/07 21:20:00,15.6,15.6,17.812737281799849 + 12/07 21:30:00,15.6,15.6,17.82102821687177 + 12/07 21:40:00,15.6,15.6,17.828880317038796 + 12/07 21:50:00,15.6,15.6,17.83641535137199 + 12/07 22:00:00,15.6,15.6,17.843661963700688 + 12/07 22:10:00,15.6,15.6,17.850043956896216 + 12/07 22:20:00,15.6,15.6,17.856347808216495 + 12/07 22:30:00,15.6,15.6,17.862558294028255 + 12/07 22:40:00,15.6,15.6,17.868713242010064 + 12/07 22:50:00,15.6,15.6,17.874757382435847 + 12/07 23:00:00,15.6,15.6,17.880688820148799 + 12/07 23:10:00,15.6,15.6,19.25870056329716 + 12/07 23:20:00,15.6,15.6,19.40297452655146 + 12/07 23:30:00,15.6,15.6,19.46776475980608 + 12/07 23:40:00,15.6,15.6,19.51921661346329 + 12/07 23:50:00,15.6,15.6,19.560980975943794 + 12/07 24:00:00,15.6,15.6,19.596247418001 + 12/08 00:10:00,15.6,15.6,19.62722901373198 + 12/08 00:20:00,15.6,15.6,19.65484168570869 + 12/08 00:30:00,15.6,15.6,19.679744648910654 + 12/08 00:40:00,15.6,15.6,19.70247792331353 + 12/08 00:50:00,15.6,15.6,19.72341659381675 + 12/08 01:00:00,15.6,15.6,19.742769071672769 + 12/08 01:10:00,15.6,15.6,19.759127284357324 + 12/08 01:20:00,15.6,15.6,19.774369555330919 + 12/08 01:30:00,15.6,15.6,19.78861003706728 + 12/08 01:40:00,15.6,15.6,19.802030820452644 + 12/08 01:50:00,15.6,15.6,19.814640364157357 + 12/08 02:00:00,15.6,15.6,19.826662050682058 + 12/08 02:10:00,15.6,15.6,19.83927370179688 + 12/08 02:20:00,15.6,15.6,19.85119564866509 + 12/08 02:30:00,15.6,15.6,19.862496420404339 + 12/08 02:40:00,15.6,15.6,19.873138515255247 + 12/08 02:50:00,15.6,15.6,19.88326442711096 + 12/08 03:00:00,15.6,15.6,19.89294345272235 + 12/08 03:10:00,15.6,15.6,19.901066725430686 + 12/08 03:20:00,15.6,15.6,19.908940789052765 + 12/08 03:30:00,15.6,15.6,19.916533621054464 + 12/08 03:40:00,15.6,15.6,19.923901918672937 + 12/08 03:50:00,15.6,15.6,19.93113692619927 + 12/08 04:00:00,15.6,15.6,19.93817664495327 + 12/08 04:10:00,15.6,15.6,19.946880327077087 + 12/08 04:20:00,15.6,15.6,19.955448739527385 + 12/08 04:30:00,15.6,15.6,19.963840677920247 + 12/08 04:40:00,15.6,15.6,19.972229168258875 + 12/08 04:50:00,15.6,15.6,19.9805241441332 + 12/08 05:00:00,15.6,15.6,19.988724413590199 + 12/08 05:10:00,15.6,15.6,19.99597735228919 + 12/08 05:20:00,15.6,15.6,20.002873233830614 + 12/08 05:30:00,15.6,15.6,20.0095332191378 + 12/08 05:40:00,15.6,15.6,20.01588993315028 + 12/08 05:50:00,15.6,15.6,20.021948986885957 + 12/08 06:00:00,15.6,15.6,20.027732611074879 + 12/08 06:10:00,15.6,15.6,20.03308189033914 + 12/08 06:20:00,15.6,15.6,20.038362979446437 + 12/08 06:30:00,15.6,15.6,20.043638073143705 + 12/08 06:40:00,15.6,15.6,20.048882807889595 + 12/08 06:50:00,15.6,15.6,20.054099421207924 + 12/08 07:00:00,15.6,15.6,20.0592355415478 + 12/08 07:10:00,15.6,15.6,18.051363609422436 + 12/08 07:20:00,15.6,15.6,17.821111068544974 + 12/08 07:30:00,15.6,15.6,17.73774642218057 + 12/08 07:40:00,15.6,15.6,17.67307401639117 + 12/08 07:50:00,15.6,15.6,17.622075323435778 + 12/08 08:00:00,15.6,15.6,17.57983083193095 + 12/08 08:10:00,15.6,15.6,16.092312164629626 + 12/08 08:20:00,15.6,15.6,15.87432497435152 + 12/08 08:30:00,15.6,15.6,15.771161699649444 + 12/08 08:40:00,15.6,15.6,15.68531503386661 + 12/08 08:50:00,15.6,15.6,15.612557149295004 + 12/08 09:00:00,15.6,15.6,15.54845784419436 + 12/08 09:10:00,15.6,15.6,15.465679182789314 + 12/08 09:20:00,15.6,15.6,15.405857652372119 + 12/08 09:30:00,15.6,15.6,15.357820603773467 + 12/08 09:40:00,15.6,15.6,15.313366939370832 + 12/08 09:50:00,15.6,15.6,15.27200326222418 + 12/08 10:00:00,15.6,15.6,15.233413639161052 + 12/08 10:10:00,15.6,15.6,15.1916640500008 + 12/08 10:20:00,15.6,15.6,15.141348644742156 + 12/08 10:30:00,15.6,15.6,15.103478686226433 + 12/08 10:40:00,15.6,15.6,15.067292345004932 + 12/08 10:50:00,15.6,15.6,15.032633815201598 + 12/08 11:00:00,15.6,15.6,14.99943307801552 + 12/08 11:10:00,15.528528528528529,15.528528528528529,14.971887284665835 + 12/08 11:20:00,15.457057057057057,15.457057057057057,14.94215471380228 + 12/08 11:30:00,15.385585585585586,15.385585585585586,14.918671954323742 + 12/08 11:40:00,15.314114114114114,15.314114114114114,14.893386188167428 + 12/08 11:50:00,15.242642642642644,15.242642642642644,14.87090708769273 + 12/08 12:00:00,15.17117117117117,15.17117117117117,14.848788708445568 + 12/08 12:10:00,15.17117117117117,15.17117117117117,14.827119983499614 + 12/08 12:20:00,15.17117117117117,15.17117117117117,14.81745451111022 + 12/08 12:30:00,15.17117117117117,15.17117117117117,14.79690995708371 + 12/08 12:40:00,15.17117117117117,15.17117117117117,14.78007370294527 + 12/08 12:50:00,15.17117117117117,15.17117117117117,14.763723003943625 + 12/08 13:00:00,15.17117117117117,15.17117117117117,14.746726140233829 + 12/08 13:10:00,15.124924924924925,15.124924924924925,14.733067369888639 + 12/08 13:20:00,15.078678678678678,15.078678678678678,14.709165339885625 + 12/08 13:30:00,15.032432432432433,15.032432432432433,14.695511458251893 + 12/08 13:40:00,14.986186186186187,14.986186186186187,14.683313917772029 + 12/08 13:50:00,14.93993993993994,14.93993993993994,14.670280472294973 + 12/08 14:00:00,14.893693693693694,14.893693693693694,14.660327852236624 + 12/08 14:10:00,14.893693693693694,14.893693693693694,14.648548256617806 + 12/08 14:20:00,14.893693693693694,14.893693693693694,14.644824361367668 + 12/08 14:30:00,14.893693693693694,14.893693693693694,14.635785600009804 + 12/08 14:40:00,14.893693693693694,14.893693693693694,14.629423064551304 + 12/08 14:50:00,14.893693693693694,14.893693693693694,14.623599164848054 + 12/08 15:00:00,14.893693693693694,14.893693693693694,14.617553485005937 + 12/08 15:10:00,14.893693693693694,14.893693693693694,14.613078553983004 + 12/08 15:20:00,14.893693693693694,14.893693693693694,14.609648295981764 + 12/08 15:30:00,14.893693693693694,14.893693693693694,14.606036876918234 + 12/08 15:40:00,14.893693693693694,14.893693693693694,14.6023748055658 + 12/08 15:50:00,14.893693693693694,14.893693693693694,14.598051455339256 + 12/08 16:00:00,14.893693693693694,14.893693693693694,14.596675172435268 + 12/08 16:05:00,14.965165165165164,14.965165165165164,16.76403336774804 + 12/08 16:10:00,14.965165165165164,14.965165165165164,16.762874694677284 + 12/08 16:20:00,15.036636636636637,15.036636636636637,17.014117558702567 + 12/08 16:30:00,15.108108108108109,15.108108108108109,17.11593461357266 + 12/08 16:40:00,15.17957957957958,15.17957957957958,17.193964439796777 + 12/08 16:50:00,15.251051051051052,15.251051051051052,17.254504610818679 + 12/08 17:00:00,15.322522522522523,15.322522522522523,17.306692153011757 + 12/08 17:10:00,15.44024024024024,15.44024024024024,17.379298558853085 + 12/08 17:20:00,15.557957957957957,15.557957957957957,17.43938927327269 + 12/08 17:30:00,15.6,15.6,17.475727479974194 + 12/08 17:40:00,15.6,15.6,17.508096748224369 + 12/08 17:50:00,15.6,15.6,17.53623774570705 + 12/08 18:00:00,15.6,15.6,17.562962223216183 + 12/08 18:10:00,15.6,15.6,17.60117285743711 + 12/08 18:20:00,15.6,15.6,17.629999661512504 + 12/08 18:30:00,15.6,15.6,17.65106833156939 + 12/08 18:40:00,15.6,15.6,17.670483817008216 + 12/08 18:50:00,15.6,15.6,17.68849671977497 + 12/08 19:00:00,15.6,15.6,17.70536004549932 + 12/08 19:10:00,15.6,15.6,17.71925268072687 + 12/08 19:20:00,15.6,15.6,17.732399483588038 + 12/08 19:30:00,15.6,15.6,17.744814689078195 + 12/08 19:40:00,15.6,15.6,17.756642472258137 + 12/08 19:50:00,15.6,15.6,17.7678817202061 + 12/08 20:00:00,15.6,15.6,17.778620762672504 + 12/08 20:10:00,15.6,15.6,17.80352392054305 + 12/08 20:20:00,15.6,15.6,17.815442869412384 + 12/08 20:30:00,15.6,15.6,17.82650864411903 + 12/08 20:40:00,15.6,15.6,17.83708954135633 + 12/08 20:50:00,15.6,15.6,17.847211074593397 + 12/08 21:00:00,15.6,15.6,17.856957366364438 + 12/08 21:10:00,15.6,15.6,17.843071445519067 + 12/08 21:20:00,15.6,15.6,17.856100672986157 + 12/08 21:30:00,15.6,15.6,17.864524850269289 + 12/08 21:40:00,15.6,15.6,17.872784858000985 + 12/08 21:50:00,15.6,15.6,17.88091758140463 + 12/08 22:00:00,15.6,15.6,17.888914717613916 + 12/08 22:10:00,15.6,15.6,17.895347855108196 + 12/08 22:20:00,15.6,15.6,17.901615311773097 + 12/08 22:30:00,15.6,15.6,17.907749521704738 + 12/08 22:40:00,15.6,15.6,17.91371226924882 + 12/08 22:50:00,15.6,15.6,17.91948058822324 + 12/08 23:00:00,15.6,15.6,17.925187769512076 + 12/08 23:10:00,15.6,15.6,19.305677619747379 + 12/08 23:20:00,15.6,15.6,19.450192885030263 + 12/08 23:30:00,15.6,15.6,19.5153042039412 + 12/08 23:40:00,15.6,15.6,19.567081028186175 + 12/08 23:50:00,15.6,15.6,19.60932974463356 + 12/08 24:00:00,15.6,15.6,19.645162731075389 + 12/09 00:10:00,15.6,15.6,19.675094072834069 + 12/09 00:20:00,15.6,15.6,19.70156037187985 + 12/09 00:30:00,15.6,15.6,19.725231175625529 + 12/09 00:40:00,15.6,15.6,19.746774785995638 + 12/09 00:50:00,15.6,15.6,19.766541588939327 + 12/09 01:00:00,15.6,15.6,19.784801962247795 + 12/09 01:10:00,15.6,15.6,19.802440787233743 + 12/09 01:20:00,15.6,15.6,19.818930359519624 + 12/09 01:30:00,15.6,15.6,19.834474144748517 + 12/09 01:40:00,15.6,15.6,19.849228317157857 + 12/09 01:50:00,15.6,15.6,19.86324070599775 + 12/09 02:00:00,15.6,15.6,19.876592143128329 + 12/09 02:10:00,15.6,15.6,19.88983859341941 + 12/09 02:20:00,15.6,15.6,19.902477854043704 + 12/09 02:30:00,15.6,15.6,19.91466375984462 + 12/09 02:40:00,15.6,15.6,19.92636417117304 + 12/09 02:50:00,15.6,15.6,19.937620189457406 + 12/09 03:00:00,15.6,15.6,19.948458119915558 + 12/09 03:10:00,15.6,15.6,19.95816814925728 + 12/09 03:20:00,15.6,15.6,19.967599671589548 + 12/09 03:30:00,15.6,15.6,19.976675387410219 + 12/09 03:40:00,15.6,15.6,19.985417804950964 + 12/09 03:50:00,15.6,15.6,19.993847308840313 + 12/09 04:00:00,15.6,15.6,20.00189518470322 + 12/09 04:10:00,15.6,15.6,20.01085162997304 + 12/09 04:20:00,15.6,15.6,20.01955988451794 + 12/09 04:30:00,15.6,15.6,20.027995522226758 + 12/09 04:40:00,15.6,15.6,20.036180606073484 + 12/09 04:50:00,15.6,15.6,20.044058923573667 + 12/09 05:00:00,15.6,15.6,20.051736141811089 + 12/09 05:10:00,15.6,15.6,20.05942427635524 + 12/09 05:20:00,15.6,15.6,20.06668377213264 + 12/09 05:30:00,15.6,15.6,20.073517026121605 + 12/09 05:40:00,15.6,15.6,20.079884791901106 + 12/09 05:50:00,15.6,15.6,20.08583056019374 + 12/09 06:00:00,15.6,15.6,20.091466490218317 + 12/09 06:10:00,15.6,15.6,20.096800216066595 + 12/09 06:20:00,15.6,15.6,20.101973330976898 + 12/09 06:30:00,15.6,15.6,20.107066352173974 + 12/09 06:40:00,15.6,15.6,20.112034770297709 + 12/09 06:50:00,15.6,15.6,20.11704384924 + 12/09 07:00:00,15.6,15.6,20.12200204345227 + 12/09 07:10:00,15.6,15.6,19.46124498189429 + 12/09 07:20:00,15.6,15.6,19.39594377531609 + 12/09 07:30:00,15.6,15.6,19.37109585596518 + 12/09 07:40:00,15.6,15.6,19.351876140366725 + 12/09 07:50:00,15.6,15.6,19.33649821743155 + 12/09 08:00:00,15.6,15.6,19.323437981402546 + 12/09 08:10:00,15.6,15.6,18.232325796710044 + 12/09 08:20:00,15.6,15.6,18.086250880669917 + 12/09 08:30:00,15.6,15.6,18.023283511126498 + 12/09 08:40:00,15.6,15.6,17.97113494858668 + 12/09 08:50:00,15.6,15.6,17.927021262870804 + 12/09 09:00:00,15.6,15.6,17.888086156174837 + 12/09 09:10:00,15.6,15.6,17.85001168516409 + 12/09 09:20:00,15.6,15.6,17.805772196303697 + 12/09 09:30:00,15.6,15.6,17.772488302361347 + 12/09 09:40:00,15.6,15.6,17.74108688430519 + 12/09 09:50:00,15.6,15.6,17.711319238274947 + 12/09 10:00:00,15.6,15.6,17.683044960094727 + 12/09 10:10:00,15.6,15.6,17.65671342667674 + 12/09 10:20:00,15.6,15.6,17.622715700845619 + 12/09 10:30:00,15.6,15.6,17.598720388554697 + 12/09 10:40:00,15.6,15.6,17.57585340018549 + 12/09 10:50:00,15.6,15.6,17.554019046291115 + 12/09 11:00:00,15.6,15.6,17.5331825590985 + 12/09 11:10:00,15.6,15.6,17.51260273416187 + 12/09 11:20:00,15.6,15.6,17.49285978247375 + 12/09 11:30:00,15.6,15.6,17.47381396936352 + 12/09 11:40:00,15.6,15.6,17.455461353047963 + 12/09 11:50:00,15.6,15.6,17.437819966805458 + 12/09 12:00:00,15.6,15.6,17.420871867441485 + 12/09 12:10:00,15.6,15.6,17.40490418939131 + 12/09 12:20:00,15.6,15.6,17.389732064557884 + 12/09 12:30:00,15.6,15.6,17.375305789196845 + 12/09 12:40:00,15.54954954954955,15.54954954954955,17.3616387911161 + 12/09 12:50:00,15.499099099099098,15.499099099099098,17.348753937927108 + 12/09 13:00:00,15.448648648648648,15.448648648648648,17.336637566047466 + 12/09 13:10:00,15.381381381381381,15.381381381381381,17.32516712762041 + 12/09 13:20:00,15.314114114114114,15.314114114114114,17.314594283617134 + 12/09 13:30:00,15.246846846846847,15.246846846846847,17.304650518855405 + 12/09 13:40:00,15.17957957957958,15.17957957957958,17.295392658265344 + 12/09 13:50:00,15.112312312312313,15.112312312312313,17.286790894011508 + 12/09 14:00:00,15.045045045045045,15.045045045045045,17.278834266908466 + 12/09 14:10:00,14.998798798798799,14.998798798798799,17.272698484466774 + 12/09 14:20:00,14.952552552552552,14.952552552552552,17.267618152921675 + 12/09 14:30:00,14.906306306306306,14.906306306306306,17.263352208397167 + 12/09 14:40:00,14.86006006006006,14.86006006006006,17.25995202479354 + 12/09 14:50:00,14.813813813813815,14.813813813813815,17.257343118117008 + 12/09 15:00:00,14.767567567567568,14.767567567567568,17.25547464485234 + 12/09 15:10:00,14.721321321321322,14.721321321321322,17.253517399592928 + 12/09 15:20:00,14.675075075075075,14.675075075075075,17.251625779729748 + 12/09 15:30:00,14.628828828828829,14.628828828828829,17.250148843546336 + 12/09 15:40:00,14.582582582582582,14.582582582582582,17.24905725513815 + 12/09 15:50:00,14.536336336336337,14.536336336336337,17.24856950287967 + 12/09 16:00:00,14.49009009009009,14.49009009009009,17.2491202748285 + 12/09 16:10:00,14.557357357357358,14.557357357357358,17.25104772911404 + 12/09 16:20:00,14.624624624624625,14.624624624624625,17.25381974062595 + 12/09 16:30:00,14.691891891891892,14.691891891891892,17.257298589046127 + 12/09 16:40:00,14.759159159159159,14.759159159159159,17.261220815687869 + 12/09 16:50:00,14.826426426426427,14.826426426426427,17.263678916918438 + 12/09 17:00:00,14.893693693693694,14.893693693693694,17.26901138394164 + 12/09 17:10:00,14.93993993993994,14.93993993993994,17.288364753446893 + 12/09 17:20:00,14.986186186186187,14.986186186186187,17.304010240259247 + 12/09 17:30:00,15.032432432432433,15.032432432432433,17.310617183240887 + 12/09 17:40:00,15.078678678678678,15.078678678678678,17.316936672442837 + 12/09 17:50:00,15.124924924924925,15.124924924924925,17.322652129528384 + 12/09 18:00:00,15.17117117117117,15.17117117117117,17.327583943214078 + 12/09 18:10:00,15.217417417417418,15.217417417417418,19.10423561894074 + 12/09 18:20:00,15.263663663663664,15.263663663663664,19.314400439522779 + 12/09 18:30:00,15.30990990990991,15.30990990990991,19.397764945326228 + 12/09 18:40:00,15.356156156156157,15.356156156156157,19.462503614113257 + 12/09 18:50:00,15.402402402402402,15.402402402402402,19.513794253090834 + 12/09 19:00:00,15.448648648648648,15.448648648648648,19.556201590531779 + 12/09 19:10:00,15.473873873873874,15.473873873873874,19.60524992438912 + 12/09 19:20:00,15.499099099099098,15.499099099099098,19.637067192573043 + 12/09 19:30:00,15.524324324324324,15.524324324324324,19.664840550465408 + 12/09 19:40:00,15.54954954954955,15.54954954954955,19.689599206383133 + 12/09 19:50:00,15.574774774774774,15.574774774774774,19.711910841077985 + 12/09 20:00:00,15.6,15.6,19.732114357520169 + 12/09 20:10:00,15.6,15.6,19.750923898958609 + 12/09 20:20:00,15.6,15.6,19.76843648244076 + 12/09 20:30:00,15.6,15.6,19.784824250150309 + 12/09 20:40:00,15.6,15.6,19.800372891881957 + 12/09 20:50:00,15.6,15.6,19.815012671323239 + 12/09 21:00:00,15.6,15.6,19.82900642884729 + 12/09 21:10:00,15.6,15.6,19.818612511322013 + 12/09 21:20:00,15.6,15.6,19.830305839922496 + 12/09 21:30:00,15.6,15.6,19.841516550086998 + 12/09 21:40:00,15.6,15.6,19.852246312187295 + 12/09 21:50:00,15.6,15.6,19.86256581337415 + 12/09 22:00:00,15.6,15.6,19.87258179772752 + 12/09 22:10:00,15.6,15.6,19.883860949996774 + 12/09 22:20:00,15.6,15.6,19.89465374581378 + 12/09 22:30:00,15.6,15.6,19.904887671195444 + 12/09 22:40:00,15.6,15.6,19.91453877805651 + 12/09 22:50:00,15.6,15.6,19.923788222085784 + 12/09 23:00:00,15.6,15.6,19.932593263126468 + 12/09 23:10:00,15.6,15.6,19.941394181610549 + 12/09 23:20:00,15.6,15.6,19.949876226071419 + 12/09 23:30:00,15.6,15.6,19.957985263224829 + 12/09 23:40:00,15.6,15.6,19.965946554617344 + 12/09 23:50:00,15.6,15.6,19.973688843106517 + 12/09 24:00:00,15.6,15.6,19.981226305434967 + 12/10 00:10:00,15.6,15.6,19.98734724274467 + 12/10 00:20:00,15.6,15.6,19.993280196155184 + 12/10 00:30:00,15.6,15.6,19.999165295686308 + 12/10 00:40:00,15.6,15.6,20.004983534981176 + 12/10 00:50:00,15.6,15.6,20.010702120065468 + 12/10 01:00:00,15.6,15.6,20.01631327864519 + 12/10 01:10:00,15.6,15.6,20.020072258811337 + 12/10 01:20:00,15.6,15.6,20.023805361139695 + 12/10 01:30:00,15.6,15.6,20.02761986537698 + 12/10 01:40:00,15.6,15.6,20.031482922219145 + 12/10 01:50:00,15.6,15.6,20.03542337323556 + 12/10 02:00:00,15.6,15.6,20.039541293654698 + 12/10 02:10:00,15.6,15.6,20.046232593101558 + 12/10 02:20:00,15.6,15.6,20.05303020100616 + 12/10 02:30:00,15.6,15.6,20.059667144843595 + 12/10 02:40:00,15.6,15.6,20.066092958309999 + 12/10 02:50:00,15.6,15.6,20.072280762161875 + 12/10 03:00:00,15.6,15.6,20.078146923332186 + 12/10 03:10:00,15.6,15.6,20.083897666584745 + 12/10 03:20:00,15.6,15.6,20.089442260624425 + 12/10 03:30:00,15.6,15.6,20.094800430982557 + 12/10 03:40:00,15.6,15.6,20.09998539918008 + 12/10 03:50:00,15.6,15.6,20.104926176419395 + 12/10 04:00:00,15.6,15.6,20.109789247876717 + 12/10 04:10:00,15.6,15.6,20.11455039967246 + 12/10 04:20:00,15.6,15.6,20.119221045254318 + 12/10 04:30:00,15.6,15.6,20.123823388504229 + 12/10 04:40:00,15.6,15.6,20.128305307582754 + 12/10 04:50:00,15.6,15.6,20.132753961677055 + 12/10 05:00:00,15.6,15.6,20.13719450147012 + 12/10 05:10:00,15.6,15.6,20.141544352253459 + 12/10 05:20:00,15.6,15.6,20.1457324862224 + 12/10 05:30:00,15.6,15.6,20.14968447644958 + 12/10 05:40:00,15.6,15.6,20.153406282340336 + 12/10 05:50:00,15.6,15.6,20.15700045158302 + 12/10 06:00:00,15.6,15.6,20.160412937337286 + 12/10 06:10:00,15.6,15.6,20.165021092519546 + 12/10 06:20:00,15.6,15.6,20.169223801102363 + 12/10 06:30:00,15.6,15.6,20.17304069762059 + 12/10 06:40:00,15.6,15.6,20.17676613800786 + 12/10 06:50:00,15.6,15.6,20.180395179539479 + 12/10 07:00:00,15.6,15.6,20.183982646805548 + 12/10 07:10:00,15.6,15.6,20.207130401120645 + 12/10 07:20:00,15.6,15.6,20.207690315442428 + 12/10 07:30:00,15.6,15.6,20.20851714659417 + 12/10 07:40:00,15.6,15.6,20.209210826477795 + 12/10 07:50:00,15.6,15.6,20.209188843126144 + 12/10 08:00:00,15.6,15.6,20.20866861761235 + 12/10 08:10:00,15.6,15.6,18.80618916184237 + 12/10 08:20:00,15.6,15.6,18.642111780496536 + 12/10 08:30:00,15.6,15.6,18.575476595545195 + 12/10 08:40:00,15.6,15.6,18.520221988292538 + 12/10 08:50:00,15.6,15.6,18.473065285301709 + 12/10 09:00:00,15.6,15.6,18.430907430510808 + 12/10 09:10:00,15.6,15.6,18.3936842067579 + 12/10 09:20:00,15.6,15.6,18.35029328099332 + 12/10 09:30:00,15.6,15.6,18.31752375311381 + 12/10 09:40:00,15.6,15.6,18.286604001076147 + 12/10 09:50:00,15.461261261261262,15.461261261261262,18.257387074638769 + 12/10 10:00:00,15.322522522522523,15.322522522522523,18.229794650039069 + 12/10 10:10:00,15.276276276276276,15.276276276276276,18.201099027123687 + 12/10 10:20:00,15.23003003003003,15.23003003003003,18.165107222536564 + 12/10 10:30:00,15.183783783783785,15.183783783783785,18.13939843673516 + 12/10 10:40:00,15.137537537537538,15.137537537537538,18.115108223511898 + 12/10 10:50:00,15.091291291291292,15.091291291291292,18.092096135077108 + 12/10 11:00:00,15.045045045045045,15.045045045045045,18.07020642130871 + 12/10 11:10:00,14.998798798798799,14.998798798798799,18.049577933821796 + 12/10 11:20:00,14.952552552552552,14.952552552552552,18.030066754205938 + 12/10 11:30:00,14.906306306306306,14.906306306306306,18.011418342502674 + 12/10 11:40:00,14.86006006006006,14.86006006006006,17.993522037623064 + 12/10 11:50:00,14.813813813813815,14.813813813813815,17.976529382559879 + 12/10 12:00:00,14.767567567567568,14.767567567567568,17.960335513493424 + 12/10 12:10:00,14.670870870870872,14.670870870870872,17.945828628362358 + 12/10 12:20:00,14.574174174174175,14.574174174174175,17.931718502210669 + 12/10 12:30:00,14.477477477477479,14.477477477477479,17.918297327062687 + 12/10 12:40:00,14.380780780780782,14.380780780780782,17.905462734570027 + 12/10 12:50:00,14.284084084084084,14.284084084084084,17.89321491460964 + 12/10 13:00:00,14.187387387387388,14.187387387387388,17.881742960546349 + 12/10 13:10:00,14.14114114114114,14.14114114114114,17.87083555590349 + 12/10 13:20:00,14.094894894894896,14.094894894894896,17.860354591535338 + 12/10 13:30:00,14.04864864864865,14.04864864864865,17.850618114357077 + 12/10 13:40:00,14.002402402402403,14.002402402402403,17.841584040850849 + 12/10 13:50:00,13.956156156156157,13.956156156156157,17.833273300523034 + 12/10 14:00:00,13.90990990990991,13.90990990990991,17.825640690777463 + 12/10 14:10:00,13.842642642642645,13.842642642642645,17.818870473770788 + 12/10 14:20:00,13.775375375375376,13.775375375375376,17.81355053606879 + 12/10 14:30:00,13.708108108108109,13.708108108108109,17.80860396694419 + 12/10 14:40:00,13.640840840840842,13.640840840840842,17.804356276647885 + 12/10 14:50:00,13.573573573573574,13.573573573573574,17.80068095000603 + 12/10 15:00:00,13.506306306306307,13.506306306306307,17.79754501223447 + 12/10 15:10:00,13.481081081081081,13.481081081081081,17.79492910280879 + 12/10 15:20:00,13.455855855855857,13.455855855855857,17.79361667361725 + 12/10 15:30:00,13.430630630630632,13.430630630630632,17.792818922050978 + 12/10 15:40:00,13.405405405405407,13.405405405405407,17.79262169236814 + 12/10 15:50:00,13.380180180180182,13.380180180180182,17.793129157177459 + 12/10 16:00:00,13.354954954954956,13.354954954954956,17.794310353860767 + 12/10 16:10:00,13.426426426426428,13.426426426426428,19.229821297251509 + 12/10 16:20:00,13.497897897897899,13.497897897897899,19.383021083087824 + 12/10 16:30:00,13.56936936936937,13.56936936936937,19.449873191027089 + 12/10 16:40:00,13.640840840840842,13.640840840840842,19.50274441900146 + 12/10 16:50:00,13.712312312312314,13.712312312312314,19.54594812244605 + 12/10 17:00:00,13.783783783783785,13.783783783783785,19.582802930868874 + 12/10 17:10:00,13.804804804804805,13.804804804804805,19.614629024431176 + 12/10 17:20:00,13.825825825825828,13.825825825825828,19.65176177284885 + 12/10 17:30:00,13.846846846846848,13.846846846846848,19.67724570190446 + 12/10 17:40:00,13.867867867867869,13.867867867867869,19.70025367969428 + 12/10 17:50:00,13.88888888888889,13.88888888888889,19.72089103261241 + 12/10 18:00:00,13.90990990990991,13.90990990990991,19.739247397832423 + 12/10 18:10:00,13.981381381381383,13.981381381381383,19.75627131312064 + 12/10 18:20:00,14.052852852852853,14.052852852852853,19.78957487720609 + 12/10 18:30:00,14.124324324324326,14.124324324324326,19.803838180482079 + 12/10 18:40:00,14.195795795795796,14.195795795795796,19.817042500194448 + 12/10 18:50:00,14.267267267267269,14.267267267267269,19.82930681793345 + 12/10 19:00:00,14.338738738738739,14.338738738738739,19.84090894749592 + 12/10 19:10:00,14.41021021021021,14.41021021021021,19.85166976267301 + 12/10 19:20:00,14.481681681681682,14.481681681681682,19.862044787778748 + 12/10 19:30:00,14.553153153153153,14.553153153153153,19.87195804557906 + 12/10 19:40:00,14.624624624624625,14.624624624624625,19.88144056032298 + 12/10 19:50:00,14.696096096096096,14.696096096096096,19.89060045874404 + 12/10 20:00:00,14.767567567567568,14.767567567567568,19.899470293522844 + 12/10 20:10:00,14.813813813813815,14.813813813813815,19.907937814385386 + 12/10 20:20:00,14.860060060060059,14.860060060060059,19.916168316433429 + 12/10 20:30:00,14.906306306306306,14.906306306306306,19.92404768813745 + 12/10 20:40:00,14.952552552552552,14.952552552552552,19.931654885541208 + 12/10 20:50:00,14.998798798798799,14.998798798798799,19.93905895945376 + 12/10 21:00:00,15.045045045045045,15.045045045045045,19.94622246708653 + 12/10 21:10:00,15.112312312312313,15.112312312312313,19.930372425929784 + 12/10 21:20:00,15.17957957957958,15.17957957957958,19.93702903996505 + 12/10 21:30:00,15.246846846846847,15.246846846846847,19.943501884089856 + 12/10 21:40:00,15.314114114114114,15.314114114114114,19.949968547984086 + 12/10 21:50:00,15.381381381381381,15.381381381381381,19.956314037005187 + 12/10 22:00:00,15.448648648648648,15.448648648648648,19.96254945009874 + 12/10 22:10:00,15.499099099099098,15.499099099099098,19.96891975249985 + 12/10 22:20:00,15.54954954954955,15.54954954954955,19.975202322984168 + 12/10 22:30:00,15.6,15.6,19.98146041674555 + 12/10 22:40:00,15.6,15.6,19.98763876995325 + 12/10 22:50:00,15.6,15.6,19.99369375066353 + 12/10 23:00:00,15.6,15.6,19.999627254602367 + 12/10 23:10:00,15.6,15.6,20.005830203446 + 12/10 23:20:00,15.6,15.6,20.01217342217826 + 12/10 23:30:00,15.6,15.6,20.018342821499777 + 12/10 23:40:00,15.6,15.6,20.02440564689094 + 12/10 23:50:00,15.6,15.6,20.0302906841956 + 12/10 24:00:00,15.6,15.6,20.03594563722676 + 12/11 00:10:00,15.6,15.6,20.040009095550308 + 12/11 00:20:00,15.6,15.6,20.043342106803857 + 12/11 00:30:00,15.6,15.6,20.046579907977337 + 12/11 00:40:00,15.6,15.6,20.049548307953637 + 12/11 00:50:00,15.6,15.6,20.05241368023725 + 12/11 01:00:00,15.6,15.6,20.05519896938998 + 12/11 01:10:00,15.6,15.6,20.05975135035731 + 12/11 01:20:00,15.6,15.6,20.06452264515194 + 12/11 01:30:00,15.6,15.6,20.069215494856793 + 12/11 01:40:00,15.6,15.6,20.073909994678798 + 12/11 01:50:00,15.6,15.6,20.07843890642559 + 12/11 02:00:00,15.6,15.6,20.08299738854909 + 12/11 02:10:00,15.6,15.6,20.08588617006158 + 12/11 02:20:00,15.6,15.6,20.08862687252972 + 12/11 02:30:00,15.6,15.6,20.09128225570261 + 12/11 02:40:00,15.6,15.6,20.09372177669341 + 12/11 02:50:00,15.6,15.6,20.09618330987285 + 12/11 03:00:00,15.6,15.6,20.098596486429569 + 12/11 03:10:00,15.6,15.6,20.10174681277618 + 12/11 03:20:00,15.6,15.6,20.10470173042968 + 12/11 03:30:00,15.6,15.6,20.10753633344476 + 12/11 03:40:00,15.6,15.6,20.110292216009577 + 12/11 03:50:00,15.6,15.6,20.11303607501761 + 12/11 04:00:00,15.6,15.6,20.115736207786815 + 12/11 04:10:00,15.6,15.6,20.118386365980219 + 12/11 04:20:00,15.6,15.6,20.120974838916845 + 12/11 04:30:00,15.6,15.6,20.123507562100664 + 12/11 04:40:00,15.6,15.6,20.126080272171746 + 12/11 04:50:00,15.6,15.6,20.128651448972499 + 12/11 05:00:00,15.6,15.6,20.131160903993608 + 12/11 05:10:00,15.6,15.6,20.134134507841674 + 12/11 05:20:00,15.6,15.6,20.13705019706663 + 12/11 05:30:00,15.6,15.6,20.140066143469345 + 12/11 05:40:00,15.6,15.6,20.143077779035627 + 12/11 05:50:00,15.6,15.6,20.146114415646019 + 12/11 06:00:00,15.6,15.6,20.149170277354587 + 12/11 06:10:00,15.6,15.6,20.151544080609395 + 12/11 06:20:00,15.6,15.6,20.15398030151475 + 12/11 06:30:00,15.6,15.6,20.156338300073025 + 12/11 06:40:00,15.6,15.6,20.15862094607444 + 12/11 06:50:00,15.6,15.6,20.160819374242963 + 12/11 07:00:00,15.6,15.6,20.162866292253356 + 12/11 07:10:00,15.6,15.6,18.161346425760497 + 12/11 07:20:00,15.6,15.6,17.92779440509921 + 12/11 07:30:00,15.6,15.6,17.839699475528727 + 12/11 07:40:00,15.6,15.6,17.77001382985613 + 12/11 07:50:00,15.6,15.6,17.713817851586187 + 12/11 08:00:00,15.6,15.6,17.666272449185244 + 12/11 08:10:00,15.6,15.6,16.18133206117942 + 12/11 08:20:00,15.6,15.6,15.96076815632044 + 12/11 08:30:00,15.6,15.6,15.855355732963286 + 12/11 08:40:00,15.6,15.6,15.76852249594267 + 12/11 08:50:00,15.6,15.6,15.695477484018032 + 12/11 09:00:00,15.6,15.6,15.631475985925949 + 12/11 09:10:00,15.6,15.6,15.548418903596139 + 12/11 09:20:00,15.6,15.6,15.487335085726486 + 12/11 09:30:00,15.6,15.6,15.437435568191333 + 12/11 09:40:00,15.4990990990991,15.4990990990991,15.390339076932677 + 12/11 09:50:00,15.335135135135135,15.335135135135135,15.34575558289979 + 12/11 10:00:00,15.17117117117117,15.17117117117117,15.30348822463084 + 12/11 10:10:00,15.032432432432433,15.032432432432433,15.263246570999608 + 12/11 10:20:00,14.893693693693694,14.893693693693694,15.215752444833282 + 12/11 10:30:00,14.754954954954956,14.754954954954956,15.180484321559743 + 12/11 10:40:00,14.616216216216217,14.616216216216217,15.147047500367775 + 12/11 10:50:00,14.477477477477479,14.477477477477479,15.115075120570055 + 12/11 11:00:00,14.338738738738739,14.338738738738739,15.084632947672665 + 12/11 11:10:00,14.221021021021022,14.221021021021022,15.055034361600834 + 12/11 11:20:00,14.103303303303303,14.103303303303303,15.023001674713589 + 12/11 11:30:00,13.985585585585586,13.985585585585586,14.995852479996142 + 12/11 11:40:00,13.867867867867869,13.867867867867869,14.970287623577251 + 12/11 11:50:00,13.750150150150152,13.750150150150152,14.946931403799518 + 12/11 12:00:00,13.632432432432433,13.632432432432433,14.925934795476986 + 12/11 12:10:00,13.539939939939942,13.539939939939942,14.908841918970884 + 12/11 12:20:00,13.447447447447449,13.447447447447449,14.902545281645466 + 12/11 12:30:00,13.354954954954956,13.354954954954956,14.886000610845438 + 12/11 12:40:00,13.262462462462464,13.262462462462464,14.870841065808289 + 12/11 12:50:00,13.169969969969971,13.169969969969971,14.857127213294488 + 12/11 13:00:00,13.077477477477478,13.077477477477478,14.840548285996013 + 12/11 13:10:00,13.031231231231232,13.031231231231232,14.82552807533845 + 12/11 13:20:00,12.984984984984987,12.984984984984987,14.800414317354893 + 12/11 13:30:00,12.938738738738739,12.938738738738739,14.78292369973163 + 12/11 13:40:00,12.892492492492494,12.892492492492494,14.768509177486758 + 12/11 13:50:00,12.846246246246248,12.846246246246248,14.751081004168853 + 12/11 14:00:00,12.8,12.8,14.737168519801559 + 12/11 14:10:00,12.8,12.8,14.720851205095969 + 12/11 14:20:00,12.8,12.8,14.70576146765392 + 12/11 14:30:00,12.8,12.8,14.686996869293557 + 12/11 14:40:00,12.8,12.8,14.668424288953642 + 12/11 14:50:00,12.8,12.8,14.653039255916916 + 12/11 15:00:00,12.8,12.8,14.636609733857619 + 12/11 15:10:00,12.8,12.8,14.624767437318378 + 12/11 15:20:00,12.8,12.8,14.624448416325734 + 12/11 15:30:00,12.8,12.8,14.622409305991829 + 12/11 15:40:00,12.8,12.8,14.623186379864475 + 12/11 15:50:00,12.8,12.8,14.621725012203367 + 12/11 16:00:00,12.8,12.8,14.623829925802865 + 12/11 16:05:00,12.821021021021022,12.821021021021022,16.76839360156263 + 12/11 16:10:00,12.821021021021022,12.821021021021022,16.76759893303752 + 12/11 16:20:00,12.842042042042042,12.842042042042042,17.01465741801651 + 12/11 16:30:00,12.863063063063063,12.863063063063063,17.11345684171223 + 12/11 16:40:00,12.884084084084084,12.884084084084084,17.189296712557515 + 12/11 16:50:00,12.905105105105106,12.905105105105106,17.246597886574468 + 12/11 17:00:00,12.926126126126127,12.926126126126127,17.295568275865354 + 12/11 17:10:00,12.997597597597599,12.997597597597599,17.36366766324119 + 12/11 17:20:00,13.06906906906907,13.06906906906907,17.419964476066128 + 12/11 17:30:00,13.140540540540542,13.140540540540542,17.45286506357212 + 12/11 17:40:00,13.212012012012015,13.212012012012015,17.48235200753168 + 12/11 17:50:00,13.283483483483485,13.283483483483485,17.508687557551199 + 12/11 18:00:00,13.354954954954956,13.354954954954956,17.530855212861427 + 12/11 18:10:00,13.447447447447449,13.447447447447449,17.56542443676547 + 12/11 18:20:00,13.539939939939942,13.539939939939942,17.59126683305835 + 12/11 18:30:00,13.632432432432435,13.632432432432435,17.609689614703219 + 12/11 18:40:00,13.724924924924926,13.724924924924926,17.626679757429284 + 12/11 18:50:00,13.817417417417419,13.817417417417419,17.642448406164936 + 12/11 19:00:00,13.90990990990991,13.90990990990991,17.657018245878228 + 12/11 19:10:00,13.88888888888889,13.88888888888889,17.669767156260929 + 12/11 19:20:00,13.867867867867869,13.867867867867869,17.681512414118406 + 12/11 19:30:00,13.846846846846848,13.846846846846848,17.69219449073659 + 12/11 19:40:00,13.825825825825828,13.825825825825828,17.701950781944868 + 12/11 19:50:00,13.804804804804805,13.804804804804805,17.71084424006252 + 12/11 20:00:00,13.783783783783785,13.783783783783785,17.719009502151999 + 12/11 20:10:00,13.804804804804805,13.804804804804805,17.740037881269349 + 12/11 20:20:00,13.825825825825828,13.825825825825828,17.748641336357836 + 12/11 20:30:00,13.846846846846848,13.846846846846848,17.756551615414467 + 12/11 20:40:00,13.867867867867869,13.867867867867869,17.76418276162898 + 12/11 20:50:00,13.88888888888889,13.88888888888889,17.77149274298796 + 12/11 21:00:00,13.90990990990991,13.90990990990991,17.778564398096568 + 12/11 21:10:00,13.956156156156157,13.956156156156157,17.76252019008709 + 12/11 21:20:00,14.002402402402403,14.002402402402403,17.77316608414671 + 12/11 21:30:00,14.04864864864865,14.04864864864865,17.779385716315369 + 12/11 21:40:00,14.094894894894896,14.094894894894896,17.785585692286248 + 12/11 21:50:00,14.14114114114114,14.14114114114114,17.791755900568206 + 12/11 22:00:00,14.187387387387388,14.187387387387388,17.79787950865373 + 12/11 22:10:00,14.187387387387388,14.187387387387388,17.80436755259099 + 12/11 22:20:00,14.187387387387388,14.187387387387388,17.810196604108929 + 12/11 22:30:00,14.187387387387388,14.187387387387388,17.815284192276385 + 12/11 22:40:00,14.187387387387389,14.187387387387389,17.819569417318975 + 12/11 22:50:00,14.187387387387388,14.187387387387388,17.82310220561094 + 12/11 23:00:00,14.187387387387388,14.187387387387388,17.826056904217816 + 12/11 23:10:00,14.187387387387388,14.187387387387388,19.18709210017048 + 12/11 23:20:00,14.187387387387388,14.187387387387388,19.327053545258928 + 12/11 23:30:00,14.187387387387388,14.187387387387388,19.387824043913385 + 12/11 23:40:00,14.187387387387389,14.187387387387389,19.43559350419983 + 12/11 23:50:00,14.187387387387388,14.187387387387388,19.474089921374568 + 12/11 24:00:00,14.187387387387388,14.187387387387388,19.506584737976753 + 12/12 00:10:00,14.25885885885886,14.25885885885886,19.534959433509905 + 12/12 00:20:00,14.33033033033033,14.33033033033033,19.560263014015196 + 12/12 00:30:00,14.401801801801803,14.401801801801803,19.583153023431245 + 12/12 00:40:00,14.473273273273274,14.473273273273274,19.604260787002219 + 12/12 00:50:00,14.544744744744746,14.544744744744746,19.62388175142209 + 12/12 01:00:00,14.616216216216217,14.616216216216217,19.64224849540085 + 12/12 01:10:00,14.595195195195196,14.595195195195196,19.658829682587894 + 12/12 01:20:00,14.574174174174175,14.574174174174175,19.674178594390285 + 12/12 01:30:00,14.553153153153153,14.553153153153153,19.688334450521248 + 12/12 01:40:00,14.532132132132132,14.532132132132132,19.701448023911515 + 12/12 01:50:00,14.511111111111111,14.511111111111111,19.71357482916816 + 12/12 02:00:00,14.49009009009009,14.49009009009009,19.72482510131938 + 12/12 02:10:00,14.511111111111111,14.511111111111111,19.73546748402277 + 12/12 02:20:00,14.532132132132132,14.532132132132132,19.745579950380518 + 12/12 02:30:00,14.553153153153153,14.553153153153153,19.75536333827619 + 12/12 02:40:00,14.574174174174175,14.574174174174175,19.764812730080455 + 12/12 02:50:00,14.595195195195196,14.595195195195196,19.77395447753335 + 12/12 03:00:00,14.616216216216217,14.616216216216217,19.782797652105296 + 12/12 03:10:00,14.641441441441442,14.641441441441442,19.791792463696159 + 12/12 03:20:00,14.666666666666666,14.666666666666666,19.800664336258025 + 12/12 03:30:00,14.691891891891892,14.691891891891892,19.809393122724836 + 12/12 03:40:00,14.717117117117118,14.717117117117118,19.81797892896003 + 12/12 03:50:00,14.742342342342342,14.742342342342342,19.82643473737633 + 12/12 04:00:00,14.767567567567568,14.767567567567568,19.83466977012239 + 12/12 04:10:00,14.788588588588589,14.788588588588589,19.842074375547644 + 12/12 04:20:00,14.809609609609609,14.809609609609609,19.84934981968051 + 12/12 04:30:00,14.83063063063063,14.83063063063063,19.856377344644267 + 12/12 04:40:00,14.85165165165165,14.85165165165165,19.863181738812395 + 12/12 04:50:00,14.872672672672673,14.872672672672673,19.869680396937026 + 12/12 05:00:00,14.893693693693694,14.893693693693694,19.875985657687648 + 12/12 05:10:00,14.893693693693694,14.893693693693694,19.882698820190116 + 12/12 05:20:00,14.893693693693694,14.893693693693694,19.888781857172746 + 12/12 05:30:00,14.893693693693694,14.893693693693694,19.89425489016722 + 12/12 05:40:00,14.893693693693694,14.893693693693694,19.899063074373936 + 12/12 05:50:00,14.893693693693694,14.893693693693694,19.903275350869387 + 12/12 06:00:00,14.893693693693694,14.893693693693694,19.907018817405175 + 12/12 06:10:00,14.91891891891892,14.91891891891892,19.91058323267385 + 12/12 06:20:00,14.944144144144144,14.944144144144144,19.914108611265836 + 12/12 06:30:00,14.96936936936937,14.96936936936937,19.91797148307985 + 12/12 06:40:00,14.994594594594595,14.994594594594595,19.922116157887296 + 12/12 06:50:00,15.01981981981982,15.01981981981982,19.926719091631229 + 12/12 07:00:00,15.045045045045045,15.045045045045045,19.93165256576947 + 12/12 07:10:00,15.045045045045045,15.045045045045045,17.936356162026944 + 12/12 07:20:00,15.045045045045045,15.045045045045045,17.704112653537533 + 12/12 07:30:00,15.045045045045045,15.045045045045045,17.618657003648744 + 12/12 07:40:00,15.045045045045045,15.045045045045045,17.551770748774627 + 12/12 07:50:00,15.045045045045045,15.045045045045045,17.498549452120668 + 12/12 08:00:00,15.045045045045045,15.045045045045045,17.453976810122478 + 12/12 08:05:00,15.045045045045045,15.045045045045045,15.977845471560926 + 12/12 08:10:00,15.045045045045045,15.045045045045045,15.97781531057778 + 12/12 08:15:00,15.045045045045045,15.045045045045045,15.760983058487044 + 12/12 08:20:00,15.045045045045045,15.045045045045045,15.761059837501297 + 12/12 08:30:00,15.045045045045045,15.045045045045045,15.659245232369545 + 12/12 08:40:00,15.045045045045045,15.045045045045045,15.576479273022576 + 12/12 08:50:00,15.045045045045045,15.045045045045045,15.507768689436013 + 12/12 09:00:00,15.045045045045045,15.045045045045045,15.44895091443698 + 12/12 09:05:00,14.973573573573575,14.973573573573575,15.37224677399526 + 12/12 09:10:00,14.973573573573575,14.973573573573575,15.371286015405078 + 12/12 09:20:00,14.902102102102102,14.902102102102102,15.31549600207354 + 12/12 09:30:00,14.83063063063063,14.83063063063063,15.273587040124266 + 12/12 09:40:00,14.759159159159159,14.759159159159159,15.234211217104065 + 12/12 09:50:00,14.687687687687689,14.687687687687689,15.197318149635976 + 12/12 10:00:00,14.616216216216217,14.616216216216217,15.161730623636421 + 12/12 10:10:00,14.431231231231232,14.431231231231232,15.129552771758238 + 12/12 10:20:00,14.246246246246246,14.246246246246246,15.087392717800269 + 12/12 10:30:00,14.061261261261262,14.061261261261262,15.056086053496788 + 12/12 10:40:00,13.876276276276278,13.876276276276278,15.025191388311475 + 12/12 10:50:00,13.691291291291292,13.691291291291292,14.994858540401849 + 12/12 11:00:00,13.506306306306307,13.506306306306307,14.96307396047986 + 12/12 11:10:00,13.40960960960961,13.40960960960961,14.933096509028346 + 12/12 11:20:00,13.312912912912913,13.312912912912913,14.900121270781007 + 12/12 11:30:00,13.216216216216216,13.216216216216216,14.87307978552144 + 12/12 11:40:00,13.11951951951952,13.11951951951952,14.846436416884764 + 12/12 11:50:00,13.022822822822823,13.022822822822823,14.819323454445439 + 12/12 12:00:00,12.926126126126127,12.926126126126127,14.796193666279227 + 12/12 12:10:00,12.905105105105106,12.905105105105106,14.772334374825377 + 12/12 12:20:00,12.884084084084084,12.884084084084084,14.762487380049065 + 12/12 12:30:00,12.863063063063063,12.863063063063063,14.742889504942678 + 12/12 12:40:00,12.842042042042042,12.842042042042042,14.725031942950649 + 12/12 12:50:00,12.821021021021022,12.821021021021022,14.709983202754927 + 12/12 13:00:00,12.8,12.8,14.69365134623442 + 12/12 13:10:00,12.8,12.8,14.679300238907333 + 12/12 13:20:00,12.8,12.8,14.656837215570253 + 12/12 13:30:00,12.8,12.8,14.641952533815909 + 12/12 13:40:00,12.8,12.8,14.63076443804812 + 12/12 13:50:00,12.8,12.8,14.617001803965044 + 12/12 14:00:00,12.8,12.8,14.607292220439934 + 12/12 14:10:00,12.8,12.8,14.596306298565484 + 12/12 14:20:00,12.8,12.8,14.59188927994264 + 12/12 14:30:00,12.8,12.8,14.584118285166174 + 12/12 14:40:00,12.8,12.8,14.575611730155233 + 12/12 14:50:00,12.8,12.8,14.5688560079679 + 12/12 15:00:00,12.8,12.8,14.560805248669708 + 12/12 15:10:00,12.8,12.8,14.556736212914532 + 12/12 15:20:00,12.8,12.8,14.557434267685706 + 12/12 15:30:00,12.8,12.8,14.556304906366398 + 12/12 15:40:00,12.8,12.8,14.555864111341517 + 12/12 15:50:00,12.8,12.8,14.552129633387949 + 12/12 16:00:00,12.8,12.8,14.550279586276306 + 12/12 16:05:00,12.8,12.8,16.693133340201177 + 12/12 16:10:00,12.8,12.8,16.691941331938588 + 12/12 16:20:00,12.8,12.8,16.937945622852629 + 12/12 16:30:00,12.8,12.8,17.03546132222947 + 12/12 16:40:00,12.8,12.8,17.108999069722228 + 12/12 16:50:00,12.8,12.8,17.164484536314455 + 12/12 17:00:00,12.8,12.8,17.211888968046986 + 12/12 17:10:00,12.8,12.8,17.278613251548678 + 12/12 17:20:00,12.8,12.8,17.332788304255254 + 12/12 17:30:00,12.863063063063063,12.863063063063063,17.363890263283943 + 12/12 17:40:00,12.934534534534535,12.934534534534535,17.391769177689459 + 12/12 17:50:00,13.006006006006008,13.006006006006008,17.41569011239446 + 12/12 18:00:00,13.077477477477478,13.077477477477478,17.438584821000196 + 12/12 18:10:00,13.102702702702704,13.102702702702704,17.472329551260758 + 12/12 18:20:00,13.127927927927928,13.127927927927928,17.49742086908503 + 12/12 18:30:00,13.153153153153154,13.153153153153154,17.515174739004615 + 12/12 18:40:00,13.17837837837838,13.17837837837838,17.53168739239785 + 12/12 18:50:00,13.203603603603604,13.203603603603604,17.547103330755527 + 12/12 19:00:00,13.22882882882883,13.22882882882883,17.561546354927637 + 12/12 19:10:00,13.22882882882883,13.22882882882883,17.575227670295204 + 12/12 19:20:00,13.22882882882883,13.22882882882883,17.5870825344529 + 12/12 19:30:00,13.22882882882883,13.22882882882883,17.598240729296316 + 12/12 19:40:00,13.22882882882883,13.22882882882883,17.60854502414932 + 12/12 19:50:00,13.22882882882883,13.22882882882883,17.61831165026134 + 12/12 20:00:00,13.22882882882883,13.22882882882883,17.627534938821819 + 12/12 20:10:00,13.275075075075077,13.275075075075077,17.64903035795229 + 12/12 20:20:00,13.321321321321323,13.321321321321323,17.658852499598216 + 12/12 20:30:00,13.367567567567568,13.367567567567568,17.667813136347136 + 12/12 20:40:00,13.413813813813816,13.413813813813816,17.6765392176661 + 12/12 20:50:00,13.46006006006006,13.46006006006006,17.684848418405115 + 12/12 21:00:00,13.506306306306307,13.506306306306307,17.692772417583737 + 12/12 21:10:00,13.506306306306307,13.506306306306307,17.67791300317436 + 12/12 21:20:00,13.506306306306307,13.506306306306307,17.689326519757385 + 12/12 21:30:00,13.506306306306307,13.506306306306307,17.695878465577225 + 12/12 21:40:00,13.506306306306307,13.506306306306307,17.701965284961909 + 12/12 21:50:00,13.506306306306307,13.506306306306307,17.707652606457488 + 12/12 22:00:00,13.506306306306307,13.506306306306307,17.712968327976556 + 12/12 22:10:00,13.506306306306307,13.506306306306307,17.718060885989464 + 12/12 22:20:00,13.506306306306307,13.506306306306307,17.72330378251386 + 12/12 22:30:00,13.506306306306307,13.506306306306307,17.728210282770236 + 12/12 22:40:00,13.506306306306307,13.506306306306307,17.732911109861698 + 12/12 22:50:00,13.506306306306307,13.506306306306307,17.73729856676202 + 12/12 23:00:00,13.506306306306307,13.506306306306307,17.74141134487998 + 12/12 23:10:00,13.527327327327328,13.527327327327328,19.105473050730305 + 12/12 23:20:00,13.548348348348349,13.548348348348349,19.247065110547145 + 12/12 23:30:00,13.56936936936937,13.56936936936937,19.308681676404 + 12/12 23:40:00,13.590390390390392,13.590390390390392,19.357156448497926 + 12/12 23:50:00,13.611411411411412,13.611411411411412,19.396186582355566 + 12/12 24:00:00,13.632432432432433,13.632432432432433,19.42892114903485 + 12/13 00:10:00,13.67867867867868,13.67867867867868,19.456984544523335 + 12/13 00:20:00,13.724924924924924,13.724924924924924,19.48174699462615 + 12/13 00:30:00,13.771171171171173,13.771171171171173,19.504022582509614 + 12/13 00:40:00,13.817417417417419,13.817417417417419,19.524269606175069 + 12/13 00:50:00,13.863663663663666,13.863663663663666,19.54289409553584 + 12/13 01:00:00,13.90990990990991,13.90990990990991,19.56005638404129 + 12/13 01:10:00,13.935135135135136,13.935135135135136,19.576845246715675 + 12/13 01:20:00,13.960360360360362,13.960360360360362,19.59292228122233 + 12/13 01:30:00,13.985585585585586,13.985585585585586,19.608414596756004 + 12/13 01:40:00,14.010810810810812,14.010810810810812,19.623433300252317 + 12/13 01:50:00,14.036036036036038,14.036036036036038,19.63793652033523 + 12/13 02:00:00,14.061261261261262,14.061261261261262,19.652115231632263 + 12/13 02:10:00,14.036036036036036,14.036036036036036,19.665525208270166 + 12/13 02:20:00,14.01081081081081,14.01081081081081,19.678330994715659 + 12/13 02:30:00,13.985585585585586,13.985585585585586,19.690081991421935 + 12/13 02:40:00,13.960360360360362,13.960360360360362,19.700778449419738 + 12/13 02:50:00,13.935135135135136,13.935135135135136,19.71056421056959 + 12/13 03:00:00,13.90990990990991,13.90990990990991,19.719447649204214 + 12/13 03:10:00,13.88888888888889,13.88888888888889,19.727039654595637 + 12/13 03:20:00,13.867867867867869,13.867867867867869,19.734170748661336 + 12/13 03:30:00,13.846846846846848,13.846846846846848,19.740963429385855 + 12/13 03:40:00,13.825825825825828,13.825825825825828,19.7475099572757 + 12/13 03:50:00,13.804804804804805,13.804804804804805,19.75392519486489 + 12/13 04:00:00,13.783783783783785,13.783783783783785,19.76015243786943 + 12/13 04:10:00,13.783783783783785,13.783783783783785,19.766001038867178 + 12/13 04:20:00,13.783783783783785,13.783783783783785,19.771789253296136 + 12/13 04:30:00,13.783783783783785,13.783783783783785,19.77740384132902 + 12/13 04:40:00,13.783783783783785,13.783783783783785,19.783030620324607 + 12/13 04:50:00,13.783783783783785,13.783783783783785,19.78855969541774 + 12/13 05:00:00,13.783783783783785,13.783783783783785,19.793984268254815 + 12/13 05:10:00,13.804804804804805,13.804804804804805,19.800030519203248 + 12/13 05:20:00,13.825825825825828,13.825825825825828,19.80592783672912 + 12/13 05:30:00,13.846846846846848,13.846846846846848,19.811850931176357 + 12/13 05:40:00,13.867867867867869,13.867867867867869,19.817692277763898 + 12/13 05:50:00,13.88888888888889,13.88888888888889,19.823443954830965 + 12/13 06:00:00,13.90990990990991,13.90990990990991,19.829104668627275 + 12/13 06:10:00,13.90990990990991,13.90990990990991,19.834331694923326 + 12/13 06:20:00,13.90990990990991,13.90990990990991,19.83908485775617 + 12/13 06:30:00,13.90990990990991,13.90990990990991,19.843723018716419 + 12/13 06:40:00,13.90990990990991,13.90990990990991,19.848109400966356 + 12/13 06:50:00,13.90990990990991,13.90990990990991,19.852368287194204 + 12/13 07:00:00,13.90990990990991,13.90990990990991,19.856456487692197 + 12/13 07:10:00,13.90990990990991,13.90990990990991,17.864219574684947 + 12/13 07:20:00,13.90990990990991,13.90990990990991,17.631647538588003 + 12/13 07:30:00,13.90990990990991,13.90990990990991,17.546192296399739 + 12/13 07:40:00,13.90990990990991,13.90990990990991,17.47957231585162 + 12/13 07:50:00,13.90990990990991,13.90990990990991,17.426664463894345 + 12/13 08:00:00,13.90990990990991,13.90990990990991,17.38258653591873 + 12/13 08:05:00,13.88888888888889,13.88888888888889,15.904440215102908 + 12/13 08:10:00,13.88888888888889,13.88888888888889,15.906668450712975 + 12/13 08:15:00,13.867867867867869,13.867867867867869,15.68532745641465 + 12/13 08:20:00,13.867867867867869,13.867867867867869,15.685021510117867 + 12/13 08:30:00,13.846846846846848,13.846846846846848,15.583010834781924 + 12/13 08:40:00,13.825825825825828,13.825825825825828,15.500045166570649 + 12/13 08:50:00,13.804804804804805,13.804804804804805,15.430922374337392 + 12/13 09:00:00,13.783783783783785,13.783783783783785,15.371876652240184 + 12/13 09:05:00,13.737537537537538,13.737537537537538,15.293860769462175 + 12/13 09:10:00,13.737537537537538,13.737537537537538,15.293900590094948 + 12/13 09:20:00,13.691291291291293,13.691291291291293,15.238742479014878 + 12/13 09:30:00,13.645045045045047,13.645045045045047,15.196191298336164 + 12/13 09:40:00,13.5987987987988,13.5987987987988,15.15729870345283 + 12/13 09:50:00,13.552552552552554,13.552552552552554,15.120861100195383 + 12/13 10:00:00,13.506306306306307,13.506306306306307,15.086371418201255 + 12/13 10:10:00,13.46006006006006,13.46006006006006,15.05347151613278 + 12/13 10:20:00,13.413813813813814,13.413813813813814,15.011215039440005 + 12/13 10:30:00,13.367567567567568,13.367567567567568,14.980329197684215 + 12/13 10:40:00,13.321321321321323,13.321321321321323,14.95085889534663 + 12/13 10:50:00,13.275075075075077,13.275075075075077,14.923226475930682 + 12/13 11:00:00,13.22882882882883,13.22882882882883,14.897703813011855 + 12/13 11:10:00,13.203603603603604,13.203603603603604,14.874047390070662 + 12/13 11:20:00,13.17837837837838,13.17837837837838,14.848626938909464 + 12/13 11:30:00,13.153153153153154,13.153153153153154,14.830244572290207 + 12/13 11:40:00,13.12792792792793,13.12792792792793,14.811094187391417 + 12/13 11:50:00,13.102702702702704,13.102702702702704,14.792801585374612 + 12/13 12:00:00,13.077477477477478,13.077477477477478,14.77596558503923 + 12/13 12:10:00,13.052252252252253,13.052252252252253,14.758974746542642 + 12/13 12:20:00,13.027027027027028,13.027027027027028,14.754269650663668 + 12/13 12:30:00,13.001801801801803,13.001801801801803,14.737986092791124 + 12/13 12:40:00,12.976576576576577,12.976576576576577,14.724984799622379 + 12/13 12:50:00,12.951351351351353,12.951351351351353,14.71314981349158 + 12/13 13:00:00,12.926126126126127,12.926126126126127,14.699935011976815 + 12/13 13:10:00,13.022822822822823,13.022822822822823,14.690634940503557 + 12/13 13:20:00,13.11951951951952,13.11951951951952,14.671989475903216 + 12/13 13:30:00,13.216216216216216,13.216216216216216,14.66333293203246 + 12/13 13:40:00,13.312912912912914,13.312912912912914,14.65665305304637 + 12/13 13:50:00,13.40960960960961,13.40960960960961,14.648800010874656 + 12/13 14:00:00,13.506306306306307,13.506306306306307,14.643580884569527 + 12/13 14:10:00,13.506306306306307,13.506306306306307,14.635897284258544 + 12/13 14:20:00,13.506306306306307,13.506306306306307,14.634827607789072 + 12/13 14:30:00,13.506306306306307,13.506306306306307,14.627591638012915 + 12/13 14:40:00,13.506306306306307,13.506306306306307,14.622454184927685 + 12/13 14:50:00,13.506306306306307,13.506306306306307,14.616393137210004 + 12/13 15:00:00,13.506306306306307,13.506306306306307,14.609896828843189 + 12/13 15:10:00,13.552552552552554,13.552552552552554,14.604969693664709 + 12/13 15:20:00,13.5987987987988,13.5987987987988,14.600743104365576 + 12/13 15:30:00,13.645045045045047,13.645045045045047,14.596133111515379 + 12/13 15:40:00,13.691291291291293,13.691291291291293,14.590465892456278 + 12/13 15:50:00,13.737537537537538,13.737537537537538,14.58520018407274 + 12/13 16:00:00,13.783783783783785,13.783783783783785,14.582375283772647 + 12/13 16:05:00,13.804804804804805,13.804804804804805,16.740065363901168 + 12/13 16:10:00,13.804804804804805,13.804804804804805,16.73138220360461 + 12/13 16:20:00,13.825825825825828,13.825825825825828,16.985714081437324 + 12/13 16:30:00,13.846846846846848,13.846846846846848,17.08959461716488 + 12/13 16:40:00,13.867867867867869,13.867867867867869,17.1618718611685 + 12/13 16:50:00,13.88888888888889,13.88888888888889,17.219619852296689 + 12/13 17:00:00,13.90990990990991,13.90990990990991,17.2678662189863 + 12/13 17:10:00,13.935135135135136,13.935135135135136,17.33401388834487 + 12/13 17:20:00,13.960360360360362,13.960360360360362,17.386514169769798 + 12/13 17:30:00,13.985585585585586,13.985585585585586,17.417059744835919 + 12/13 17:40:00,14.010810810810812,14.010810810810812,17.444469841890468 + 12/13 17:50:00,14.036036036036038,14.036036036036038,17.469129990333589 + 12/13 18:00:00,14.061261261261262,14.061261261261262,17.491292581495693 + 12/13 18:10:00,14.061261261261262,14.061261261261262,17.524850034134564 + 12/13 18:20:00,14.061261261261262,14.061261261261262,17.549185997218335 + 12/13 18:30:00,14.061261261261262,14.061261261261262,17.566308491007349 + 12/13 18:40:00,14.061261261261262,14.061261261261262,17.581870353157034 + 12/13 18:50:00,14.061261261261262,14.061261261261262,17.596275215267924 + 12/13 19:00:00,14.061261261261262,14.061261261261262,17.609629141727333 + 12/13 19:10:00,14.061261261261262,14.061261261261262,17.623663549107797 + 12/13 19:20:00,14.061261261261262,14.061261261261262,17.636120921770524 + 12/13 19:30:00,14.061261261261262,14.061261261261262,17.64787499315429 + 12/13 19:40:00,14.061261261261262,14.061261261261262,17.658932725056105 + 12/13 19:50:00,14.061261261261262,14.061261261261262,17.669435827250916 + 12/13 20:00:00,14.061261261261262,14.061261261261262,17.679438588690773 + 12/13 20:10:00,14.153753753753755,14.153753753753755,17.69984155224865 + 12/13 20:20:00,14.246246246246246,14.246246246246246,17.705368586395175 + 12/13 20:30:00,14.338738738738739,14.338738738738739,17.71068944745997 + 12/13 20:40:00,14.431231231231232,14.431231231231232,17.71554318140811 + 12/13 20:50:00,14.523723723723723,14.523723723723723,17.72041622562064 + 12/13 21:00:00,14.616216216216217,14.616216216216217,17.725241720441667 + 12/13 21:10:00,14.641441441441442,14.641441441441442,17.708887592600584 + 12/13 21:20:00,14.666666666666666,14.666666666666666,17.72055993034588 + 12/13 21:30:00,14.691891891891892,14.691891891891892,17.727657679644606 + 12/13 21:40:00,14.717117117117118,14.717117117117118,17.734811777415403 + 12/13 21:50:00,14.742342342342342,14.742342342342342,17.741690660774247 + 12/13 22:00:00,14.767567567567568,14.767567567567568,17.748301680350417 + 12/13 22:10:00,14.788588588588589,14.788588588588589,17.754902792952089 + 12/13 22:20:00,14.809609609609609,14.809609609609609,17.76128531264896 + 12/13 22:30:00,14.83063063063063,14.83063063063063,17.76748984599905 + 12/13 22:40:00,14.85165165165165,14.85165165165165,17.773505910433994 + 12/13 22:50:00,14.872672672672673,14.872672672672673,17.779288519690114 + 12/13 23:00:00,14.893693693693694,14.893693693693694,17.78498456480278 + 12/13 23:10:00,14.93993993993994,14.93993993993994,19.14961559104855 + 12/13 23:20:00,14.986186186186187,14.986186186186187,19.29167414828608 + 12/13 23:30:00,15.032432432432433,15.032432432432433,19.353714221454287 + 12/13 23:40:00,15.078678678678678,15.078678678678678,19.402483721841578 + 12/13 23:50:00,15.124924924924925,15.124924924924925,19.441792828524276 + 12/13 24:00:00,15.17117117117117,15.17117117117117,19.474741134538534 + 12/14 00:10:00,15.196396396396397,15.196396396396397,19.504285917987827 + 12/14 00:20:00,15.22162162162162,15.22162162162162,19.53027629410905 + 12/14 00:30:00,15.246846846846847,15.246846846846847,19.55352337877233 + 12/14 00:40:00,15.272072072072073,15.272072072072073,19.57464839599309 + 12/14 00:50:00,15.297297297297297,15.297297297297297,19.594047434819129 + 12/14 01:00:00,15.322522522522523,15.322522522522523,19.61199389844576 + 12/14 01:10:00,15.415015015015016,15.415015015015016,19.63097372285798 + 12/14 01:20:00,15.507507507507507,15.507507507507507,19.649131138424705 + 12/14 01:30:00,15.6,15.6,19.666704848708997 + 12/14 01:40:00,15.6,15.6,19.683848987244269 + 12/14 01:50:00,15.6,15.6,19.70059550425622 + 12/14 02:00:00,15.6,15.6,19.717014389111207 + 12/14 02:10:00,15.6,15.6,19.727710029068584 + 12/14 02:20:00,15.6,15.6,19.738033907657667 + 12/14 02:30:00,15.6,15.6,19.74791406651897 + 12/14 02:40:00,15.6,15.6,19.757357329436773 + 12/14 02:50:00,15.6,15.6,19.76634529851949 + 12/14 03:00:00,15.6,15.6,19.774898765482115 + 12/14 03:10:00,15.6,15.6,19.785177265551398 + 12/14 03:20:00,15.6,15.6,19.795208835456667 + 12/14 03:30:00,15.6,15.6,19.80489761163842 + 12/14 03:40:00,15.6,15.6,19.81427115720741 + 12/14 03:50:00,15.6,15.6,19.82334536343953 + 12/14 04:00:00,15.6,15.6,19.83205133176367 + 12/14 04:10:00,15.6,15.6,19.840227378300115 + 12/14 04:20:00,15.6,15.6,19.848157299910047 + 12/14 04:30:00,15.6,15.6,19.85585604523279 + 12/14 04:40:00,15.6,15.6,19.86333308496331 + 12/14 04:50:00,15.6,15.6,19.870540242178778 + 12/14 05:00:00,15.6,15.6,19.87758140722932 + 12/14 05:10:00,15.6,15.6,19.88488333368099 + 12/14 05:20:00,15.6,15.6,19.891860587154694 + 12/14 05:30:00,15.6,15.6,19.898737347795885 + 12/14 05:40:00,15.6,15.6,19.90541546915607 + 12/14 05:50:00,15.6,15.6,19.911980773444648 + 12/14 06:00:00,15.6,15.6,19.91852500399854 + 12/14 06:10:00,15.6,15.6,19.92413515069579 + 12/14 06:20:00,15.6,15.6,19.929916328003914 + 12/14 06:30:00,15.6,15.6,19.935684594683545 + 12/14 06:40:00,15.6,15.6,19.941451237956934 + 12/14 06:50:00,15.6,15.6,19.94730751443958 + 12/14 07:00:00,15.6,15.6,19.95315102661543 + 12/14 07:10:00,15.6,15.6,17.94735233911139 + 12/14 07:20:00,15.6,15.6,17.71639165717527 + 12/14 07:30:00,15.6,15.6,17.63296387495651 + 12/14 07:40:00,15.6,15.6,17.568228054533976 + 12/14 07:50:00,15.6,15.6,17.51723341259523 + 12/14 08:00:00,15.6,15.6,17.47478139945681 + 12/14 08:10:00,15.6,15.6,15.990255208604685 + 12/14 08:20:00,15.6,15.6,15.773532377972197 + 12/14 08:30:00,15.6,15.6,15.672633455612506 + 12/14 08:40:00,15.6,15.6,15.59000277002943 + 12/14 08:50:00,15.6,15.6,15.521086712744927 + 12/14 09:00:00,15.6,15.6,15.461406744628596 + 12/14 09:10:00,15.6,15.6,15.381276743289755 + 12/14 09:20:00,15.6,15.6,15.323837343948546 + 12/14 09:30:00,15.6,15.6,15.278028364852549 + 12/14 09:40:00,15.6,15.6,15.235630402414082 + 12/14 09:50:00,15.6,15.6,15.19655029523649 + 12/14 10:00:00,15.6,15.6,15.160637737279897 + 12/14 10:10:00,15.6,15.6,15.126840684340652 + 12/14 10:20:00,15.6,15.6,15.0852151139789 + 12/14 10:30:00,15.6,15.6,15.056192409598799 + 12/14 10:40:00,15.6,15.6,15.028533751699753 + 12/14 10:50:00,15.6,15.6,15.000955445096843 + 12/14 11:00:00,15.448648648648648,15.448648648648648,14.9729279242387 + 12/14 11:10:00,15.381381381381381,15.381381381381381,14.945109849191326 + 12/14 11:20:00,15.314114114114114,15.314114114114114,14.914621617536037 + 12/14 11:30:00,15.246846846846847,15.246846846846847,14.888906538116859 + 12/14 11:40:00,15.17957957957958,15.17957957957958,14.860515013523097 + 12/14 11:50:00,15.112312312312313,15.112312312312313,14.837114328395137 + 12/14 12:00:00,15.045045045045045,15.045045045045045,14.814013104079818 + 12/14 12:10:00,14.973573573573575,14.973573573573575,14.794361371669114 + 12/14 12:20:00,14.902102102102102,14.902102102102102,14.786821191737852 + 12/14 12:30:00,14.83063063063063,14.83063063063063,14.771140429299548 + 12/14 12:40:00,14.759159159159159,14.759159159159159,14.7589612408759 + 12/14 12:50:00,14.687687687687689,14.687687687687689,14.746322717753954 + 12/14 13:00:00,14.616216216216217,14.616216216216217,14.736279225927972 + 12/14 13:10:00,14.595195195195196,14.595195195195196,14.72998433493447 + 12/14 13:20:00,14.574174174174175,14.574174174174175,14.710580629789567 + 12/14 13:30:00,14.553153153153153,14.553153153153153,14.704707302720238 + 12/14 13:40:00,14.532132132132132,14.532132132132132,14.697224996738449 + 12/14 13:50:00,14.511111111111111,14.511111111111111,14.691083178617987 + 12/14 14:00:00,14.49009009009009,14.49009009009009,14.683770320862731 + 12/14 14:10:00,14.464864864864865,14.464864864864865,14.67629053073387 + 12/14 14:20:00,14.439639639639639,14.439639639639639,14.67336883418969 + 12/14 14:30:00,14.414414414414415,14.414414414414415,14.665601526051992 + 12/14 14:40:00,14.389189189189189,14.389189189189189,14.66017007908966 + 12/14 14:50:00,14.363963963963965,14.363963963963965,14.651275371420829 + 12/14 15:00:00,14.338738738738739,14.338738738738739,14.645122162830188 + 12/14 15:10:00,14.338738738738739,14.338738738738739,14.636151249989409 + 12/14 15:20:00,14.338738738738739,14.338738738738739,14.631366094168774 + 12/14 15:30:00,14.338738738738739,14.338738738738739,14.624818056157104 + 12/14 15:40:00,14.338738738738739,14.338738738738739,14.616345242099645 + 12/14 15:50:00,14.338738738738739,14.338738738738739,14.61211341164317 + 12/14 16:00:00,14.338738738738739,14.338738738738739,14.607876423503239 + 12/14 16:05:00,14.384984984984986,14.384984984984986,16.759543072101147 + 12/14 16:10:00,14.384984984984986,14.384984984984986,16.7587548458832 + 12/14 16:20:00,14.431231231231232,14.431231231231232,17.008260767772165 + 12/14 16:30:00,14.477477477477479,14.477477477477479,17.106029829813449 + 12/14 16:40:00,14.523723723723723,14.523723723723723,17.180652661517536 + 12/14 16:50:00,14.56996996996997,14.56996996996997,17.24058380390688 + 12/14 17:00:00,14.616216216216217,14.616216216216217,17.29003626641392 + 12/14 17:10:00,14.616216216216217,14.616216216216217,17.35512025040545 + 12/14 17:20:00,14.616216216216217,14.616216216216217,17.410631154283487 + 12/14 17:30:00,14.616216216216217,14.616216216216217,17.44221414737675 + 12/14 17:40:00,14.616216216216217,14.616216216216217,17.470273039251468 + 12/14 17:50:00,14.616216216216217,14.616216216216217,17.495197410857736 + 12/14 18:00:00,14.616216216216217,14.616216216216217,17.517191756646676 + 12/14 18:10:00,14.754954954954954,14.754954954954954,17.55104281351211 + 12/14 18:20:00,14.893693693693694,14.893693693693694,17.575289351341234 + 12/14 18:30:00,15.032432432432433,15.032432432432433,17.593163837472866 + 12/14 18:40:00,15.17117117117117,15.17117117117117,17.610181048705248 + 12/14 18:50:00,15.30990990990991,15.30990990990991,17.626784793246406 + 12/14 19:00:00,15.448648648648648,15.448648648648648,17.64302272765195 + 12/14 19:10:00,15.52012012012012,15.52012012012012,17.65759146565139 + 12/14 19:20:00,15.591591591591591,15.591591591591591,17.671758058434138 + 12/14 19:30:00,15.6,15.6,17.685223423224377 + 12/14 19:40:00,15.6,15.6,17.698065120613827 + 12/14 19:50:00,15.6,15.6,17.710324911893367 + 12/14 20:00:00,15.6,15.6,17.72203731145825 + 12/14 20:10:00,15.6,15.6,17.746666432817738 + 12/14 20:20:00,15.6,15.6,17.758674605240875 + 12/14 20:30:00,15.6,15.6,17.769919545478275 + 12/14 20:40:00,15.6,15.6,17.78079002598953 + 12/14 20:50:00,15.6,15.6,17.79127663226435 + 12/14 21:00:00,15.6,15.6,17.801376260491887 + 12/14 21:10:00,15.6,15.6,17.78859517532516 + 12/14 21:20:00,15.6,15.6,17.801385916784015 + 12/14 21:30:00,15.6,15.6,17.808558356389907 + 12/14 21:40:00,15.6,15.6,17.814342165303967 + 12/14 21:50:00,15.6,15.6,17.819042785551049 + 12/14 22:00:00,15.6,15.6,17.822733200791747 + 12/14 22:10:00,15.6,15.6,17.826289415019948 + 12/14 22:20:00,15.6,15.6,17.830686537901458 + 12/14 22:30:00,15.6,15.6,17.835266906341699 + 12/14 22:40:00,15.6,15.6,17.840350066140919 + 12/14 22:50:00,15.6,15.6,17.84559424969902 + 12/14 23:00:00,15.6,15.6,17.85094113509638 + 12/14 23:10:00,15.6,15.6,19.226792596620734 + 12/14 23:20:00,15.6,15.6,19.37029364895113 + 12/14 23:30:00,15.6,15.6,19.434134944445647 + 12/14 23:40:00,15.6,15.6,19.48480933849129 + 12/14 23:50:00,15.6,15.6,19.52585046872995 + 12/14 24:00:00,15.6,15.6,19.560447456224585 + 12/15 00:10:00,15.6,15.6,19.590505040506789 + 12/15 00:20:00,15.6,15.6,19.617341382816499 + 12/15 00:30:00,15.6,15.6,19.641870895545105 + 12/15 00:40:00,15.6,15.6,19.664523672508925 + 12/15 00:50:00,15.6,15.6,19.685751345095129 + 12/15 01:00:00,15.6,15.6,19.70572438020337 + 12/15 01:10:00,15.6,15.6,19.72380863243926 + 12/15 01:20:00,15.6,15.6,19.740813888565805 + 12/15 01:30:00,15.6,15.6,19.75660400432043 + 12/15 01:40:00,15.6,15.6,19.77132579698936 + 12/15 01:50:00,15.6,15.6,19.784925698924416 + 12/15 02:00:00,15.6,15.6,19.7977281152126 + 12/15 02:10:00,15.6,15.6,19.81077530979102 + 12/15 02:20:00,15.6,15.6,19.823327837008628 + 12/15 02:30:00,15.6,15.6,19.83563004973302 + 12/15 02:40:00,15.6,15.6,19.847646461348508 + 12/15 02:50:00,15.6,15.6,19.8595080275728 + 12/15 03:00:00,15.6,15.6,19.871281539695766 + 12/15 03:10:00,15.6,15.6,19.882059594873739 + 12/15 03:20:00,15.6,15.6,19.89262686063701 + 12/15 03:30:00,15.6,15.6,19.902902612569937 + 12/15 03:40:00,15.6,15.6,19.912913683097015 + 12/15 03:50:00,15.6,15.6,19.922753154775994 + 12/15 04:00:00,15.6,15.6,19.932364602194995 + 12/15 04:10:00,15.6,15.6,19.94152606028848 + 12/15 04:20:00,15.6,15.6,19.950370310097598 + 12/15 04:30:00,15.6,15.6,19.95877626130225 + 12/15 04:40:00,15.6,15.6,19.966935681307523 + 12/15 04:50:00,15.6,15.6,19.97474817762047 + 12/15 05:00:00,15.6,15.6,19.982275348614964 + 12/15 05:10:00,15.6,15.6,19.990127837465417 + 12/15 05:20:00,15.6,15.6,19.997569319988885 + 12/15 05:30:00,15.6,15.6,20.004812697817085 + 12/15 05:40:00,15.6,15.6,20.011791097529597 + 12/15 05:50:00,15.6,15.6,20.018523246358936 + 12/15 06:00:00,15.6,15.6,20.025028783514128 + 12/15 06:10:00,15.6,15.6,20.03085539856566 + 12/15 06:20:00,15.6,15.6,20.03663627343222 + 12/15 06:30:00,15.6,15.6,20.042372017159594 + 12/15 06:40:00,15.6,15.6,20.048048803366045 + 12/15 06:50:00,15.6,15.6,20.053658088122686 + 12/15 07:00:00,15.6,15.6,20.05914995957416 + 12/15 07:10:00,15.6,15.6,18.04779343220972 + 12/15 07:20:00,15.6,15.6,17.815255324568648 + 12/15 07:30:00,15.6,15.6,17.72972673208718 + 12/15 07:40:00,15.6,15.6,17.66293925128325 + 12/15 07:50:00,15.6,15.6,17.60986386170985 + 12/15 08:00:00,15.6,15.6,17.565488510632858 + 12/15 08:10:00,15.6,15.6,16.077680007354439 + 12/15 08:20:00,15.6,15.6,15.860494035677258 + 12/15 08:30:00,15.6,15.6,15.758876212563245 + 12/15 08:40:00,15.6,15.6,15.675418504433403 + 12/15 08:50:00,15.6,15.6,15.605728210315917 + 12/15 09:00:00,15.6,15.6,15.545308865289748 + 12/15 09:10:00,15.6,15.6,15.466464107973806 + 12/15 09:20:00,15.6,15.6,15.41004767337557 + 12/15 09:30:00,15.6,15.6,15.365025705817092 + 12/15 09:40:00,15.6,15.6,15.322934722254236 + 12/15 09:50:00,15.6,15.6,15.283393787411907 + 12/15 10:00:00,15.6,15.6,15.246173429874478 + 12/15 10:10:00,15.6,15.6,15.208595812313807 + 12/15 10:20:00,15.6,15.6,15.161926177755034 + 12/15 10:30:00,15.6,15.6,15.127449210105889 + 12/15 10:40:00,15.6,15.6,15.094605975525356 + 12/15 10:50:00,15.6,15.6,15.06360524877969 + 12/15 11:00:00,15.6,15.6,15.034560904168825 + 12/15 11:10:00,15.6,15.6,15.006787228813592 + 12/15 11:20:00,15.6,15.6,14.979119721633595 + 12/15 11:30:00,15.6,15.6,14.955336165192192 + 12/15 11:40:00,15.6,15.6,14.931769137106765 + 12/15 11:50:00,15.6,15.6,14.910851497298517 + 12/15 12:00:00,15.6,15.6,14.888694774747217 + 12/15 12:10:00,15.6,15.6,14.87192477409091 + 12/15 12:20:00,15.6,15.6,14.862688136980763 + 12/15 12:30:00,15.6,15.6,14.847748517859485 + 12/15 12:40:00,15.6,15.6,14.832817571220023 + 12/15 12:50:00,15.6,15.6,14.816433799545344 + 12/15 13:00:00,15.6,15.6,14.80227095763074 + 12/15 13:10:00,15.574774774774774,15.574774774774774,14.786351444891423 + 12/15 13:20:00,15.54954954954955,15.54954954954955,14.760358624885852 + 12/15 13:30:00,15.524324324324324,15.524324324324324,14.745320132266733 + 12/15 13:40:00,15.499099099099098,15.499099099099098,14.72907092835048 + 12/15 13:50:00,15.473873873873874,15.473873873873874,14.717405677768629 + 12/15 14:00:00,15.448648648648648,15.448648648648648,14.704790017054908 + 12/15 14:10:00,15.473873873873874,15.473873873873874,14.696961608664813 + 12/15 14:20:00,15.499099099099098,15.499099099099098,14.69170314740793 + 12/15 14:30:00,15.524324324324324,15.524324324324324,14.686961847733248 + 12/15 14:40:00,15.54954954954955,15.54954954954955,14.681716252412772 + 12/15 14:50:00,15.574774774774774,15.574774774774774,14.676720684388594 + 12/15 15:00:00,15.6,15.6,14.672453856555228 + 12/15 15:10:00,15.6,15.6,14.66711915674335 + 12/15 15:20:00,15.6,15.6,14.668419868773987 + 12/15 15:30:00,15.6,15.6,14.663934932435039 + 12/15 15:40:00,15.6,15.6,14.661236033426894 + 12/15 15:50:00,15.6,15.6,14.659469168922215 + 12/15 16:00:00,15.6,15.6,14.655787073943026 + 12/15 16:05:00,15.6,15.6,16.82056946374621 + 12/15 16:10:00,15.6,15.6,16.819561632205624 + 12/15 16:20:00,15.6,15.6,17.066508390334734 + 12/15 16:30:00,15.6,15.6,17.164405742878335 + 12/15 16:40:00,15.6,15.6,17.23966122036152 + 12/15 16:50:00,15.6,15.6,17.298439087257156 + 12/15 17:00:00,15.6,15.6,17.34348930711205 + 12/15 17:10:00,15.6,15.6,17.41045859174251 + 12/15 17:20:00,15.6,15.6,17.46627335486778 + 12/15 17:30:00,15.6,15.6,17.49819003566286 + 12/15 17:40:00,15.6,15.6,17.527112805873668 + 12/15 17:50:00,15.6,15.6,17.553449311582474 + 12/15 18:00:00,15.6,15.6,17.577365308891417 + 12/15 18:10:00,15.6,15.6,17.6122421582472 + 12/15 18:20:00,15.6,15.6,17.638049637969293 + 12/15 18:30:00,15.6,15.6,17.656719466655369 + 12/15 18:40:00,15.6,15.6,17.67404155357893 + 12/15 18:50:00,15.6,15.6,17.69018109039038 + 12/15 19:00:00,15.6,15.6,17.705278588886129 + 12/15 19:10:00,15.6,15.6,17.719329435126157 + 12/15 19:20:00,15.6,15.6,17.732321632862616 + 12/15 19:30:00,15.6,15.6,17.744525948830785 + 12/15 19:40:00,15.6,15.6,17.75591114672992 + 12/15 19:50:00,15.6,15.6,17.76670731340151 + 12/15 20:00:00,15.6,15.6,17.777004720464644 + 12/15 20:10:00,15.6,15.6,17.79815956357436 + 12/15 20:20:00,15.6,15.6,17.806826368034576 + 12/15 20:30:00,15.6,15.6,17.814758172750424 + 12/15 20:40:00,15.6,15.6,17.822410454561127 + 12/15 20:50:00,15.6,15.6,17.82967221776778 + 12/15 21:00:00,15.6,15.6,17.836621252816788 + 12/15 21:10:00,15.6,15.6,17.823021945107209 + 12/15 21:20:00,15.6,15.6,17.83673681061957 + 12/15 21:30:00,15.6,15.6,17.845986714979433 + 12/15 21:40:00,15.6,15.6,17.855252329347395 + 12/15 21:50:00,15.6,15.6,17.864469334606498 + 12/15 22:00:00,15.6,15.6,17.873608085143724 + 12/15 22:10:00,15.6,15.6,17.8801331159603 + 12/15 22:20:00,15.6,15.6,17.88619709104632 + 12/15 22:30:00,15.6,15.6,17.892023598329464 + 12/15 22:40:00,15.6,15.6,17.897535831652229 + 12/15 22:50:00,15.6,15.6,17.902754002998497 + 12/15 23:00:00,15.6,15.6,17.907836610750736 + 12/15 23:10:00,15.6,15.6,19.284297018689935 + 12/15 23:20:00,15.6,15.6,19.429014746259928 + 12/15 23:30:00,15.6,15.6,19.494245612801547 + 12/15 23:40:00,15.6,15.6,19.545973700436816 + 12/15 23:50:00,15.6,15.6,19.58809644559029 + 12/15 24:00:00,15.6,15.6,19.623729174198205 + 12/16 00:10:00,15.6,15.6,19.651543188235537 + 12/16 00:20:00,15.6,15.6,19.67589885356958 + 12/16 00:30:00,15.6,15.6,19.69748928878994 + 12/16 00:40:00,15.6,15.6,19.716923688587906 + 12/16 00:50:00,15.6,15.6,19.7346471145816 + 12/16 01:00:00,15.6,15.6,19.750914274171799 + 12/16 01:10:00,15.6,15.6,19.767250627798974 + 12/16 01:20:00,15.6,15.6,19.782449165235314 + 12/16 01:30:00,15.6,15.6,19.79671367845731 + 12/16 01:40:00,15.6,15.6,19.81019773124779 + 12/16 01:50:00,15.6,15.6,19.822949095117548 + 12/16 02:00:00,15.6,15.6,19.835046451938064 + 12/16 02:10:00,15.6,15.6,19.846527773557683 + 12/16 02:20:00,15.6,15.6,19.857438280245405 + 12/16 02:30:00,15.6,15.6,19.86793562205363 + 12/16 02:40:00,15.6,15.6,19.877988666169267 + 12/16 02:50:00,15.6,15.6,19.88763279375061 + 12/16 03:00:00,15.6,15.6,19.89688931891139 + 12/16 03:10:00,15.6,15.6,19.904740112301306 + 12/16 03:20:00,15.6,15.6,19.912365954015763 + 12/16 03:30:00,15.6,15.6,19.91969563569281 + 12/16 03:40:00,15.6,15.6,19.926747391450936 + 12/16 03:50:00,15.6,15.6,19.933536766966009 + 12/16 04:00:00,15.6,15.6,19.939990307434834 + 12/16 04:10:00,15.6,15.6,19.94821636567401 + 12/16 04:20:00,15.6,15.6,19.956137178060403 + 12/16 04:30:00,15.6,15.6,19.96379878378269 + 12/16 04:40:00,15.6,15.6,19.97119178701898 + 12/16 04:50:00,15.6,15.6,19.978283134025575 + 12/16 05:00:00,15.6,15.6,19.985180993673926 + 12/16 05:10:00,15.6,15.6,19.99094773590201 + 12/16 05:20:00,15.6,15.6,19.99655826544077 + 12/16 05:30:00,15.6,15.6,20.00201489593626 + 12/16 05:40:00,15.6,15.6,20.007291824459235 + 12/16 05:50:00,15.6,15.6,20.01241113357871 + 12/16 06:00:00,15.6,15.6,20.017460184347088 + 12/16 06:10:00,15.6,15.6,20.020540114002423 + 12/16 06:20:00,15.6,15.6,20.023554911553373 + 12/16 06:30:00,15.6,15.6,20.026454620963578 + 12/16 06:40:00,15.6,15.6,20.029206426023987 + 12/16 06:50:00,15.6,15.6,20.031955486934377 + 12/16 07:00:00,15.6,15.6,20.034615021859325 + 12/16 07:10:00,15.6,15.6,19.375546687915674 + 12/16 07:20:00,15.6,15.6,19.31039819506101 + 12/16 07:30:00,15.6,15.6,19.285782147432763 + 12/16 07:40:00,15.6,15.6,19.26712997337129 + 12/16 07:50:00,15.6,15.6,19.252620787495784 + 12/16 08:00:00,15.6,15.6,19.2407098215043 + 12/16 08:10:00,15.6,15.6,18.150783538735945 + 12/16 08:20:00,15.6,15.6,18.004504363050857 + 12/16 08:30:00,15.6,15.6,17.942822664089925 + 12/16 08:40:00,15.6,15.6,17.893239137342527 + 12/16 08:50:00,15.6,15.6,17.85239517309986 + 12/16 09:00:00,15.6,15.6,17.817160200555724 + 12/16 09:10:00,15.6,15.6,17.787026472229465 + 12/16 09:20:00,15.6,15.6,17.750875654412103 + 12/16 09:30:00,15.6,15.6,17.725743881323589 + 12/16 09:40:00,15.6,15.6,17.7024289389795 + 12/16 09:50:00,15.6,15.6,17.680581885628976 + 12/16 10:00:00,15.6,15.6,17.660005542738444 + 12/16 10:10:00,15.6,15.6,17.639538752769128 + 12/16 10:20:00,15.6,15.6,17.611034400556539 + 12/16 10:30:00,15.6,15.6,17.591966907354079 + 12/16 10:40:00,15.6,15.6,17.57339867880097 + 12/16 10:50:00,15.6,15.6,17.55502727546509 + 12/16 11:00:00,15.6,15.6,17.53673183303576 + 12/16 11:10:00,15.6,15.6,17.518316682344236 + 12/16 11:20:00,15.6,15.6,17.49993031763057 + 12/16 11:30:00,15.6,15.6,17.48154414506065 + 12/16 11:40:00,15.6,15.6,17.463557110024163 + 12/16 11:50:00,15.566366366366367,15.566366366366367,17.44662122898736 + 12/16 12:00:00,15.448648648648648,15.448648648648648,17.43096723670155 + 12/16 12:10:00,15.402402402402402,15.402402402402402,17.41736213326075 + 12/16 12:20:00,15.356156156156157,15.356156156156157,17.405173195900337 + 12/16 12:30:00,15.30990990990991,15.30990990990991,17.394134507203984 + 12/16 12:40:00,15.263663663663664,15.263663663663664,17.384086378408666 + 12/16 12:50:00,15.217417417417418,15.217417417417418,17.374763784179046 + 12/16 13:00:00,15.17117117117117,15.17117117117117,17.36601737865072 + 12/16 13:10:00,15.057657657657657,15.057657657657657,17.357748007871554 + 12/16 13:20:00,14.944144144144144,14.944144144144144,17.35022331191039 + 12/16 13:30:00,14.83063063063063,14.83063063063063,17.342915281545886 + 12/16 13:40:00,14.717117117117118,14.717117117117118,17.336219738917185 + 12/16 13:50:00,14.603603603603604,14.603603603603604,17.330426865230707 + 12/16 14:00:00,14.49009009009009,14.49009009009009,17.32564441736931 + 12/16 14:10:00,14.49009009009009,14.49009009009009,17.322561327112415 + 12/16 14:20:00,14.49009009009009,14.49009009009009,17.31957351335385 + 12/16 14:30:00,14.49009009009009,14.49009009009009,17.317365854115726 + 12/16 14:40:00,14.49009009009009,14.49009009009009,17.31544360572762 + 12/16 14:50:00,14.49009009009009,14.49009009009009,17.313634277185267 + 12/16 15:00:00,14.49009009009009,14.49009009009009,17.311796414084744 + 12/16 15:10:00,14.536336336336337,14.536336336336337,17.310487721014796 + 12/16 15:20:00,14.582582582582582,14.582582582582582,17.309697136187208 + 12/16 15:30:00,14.628828828828829,14.628828828828829,17.309439463044194 + 12/16 15:40:00,14.675075075075075,14.675075075075075,17.309777484212505 + 12/16 15:50:00,14.721321321321322,14.721321321321322,17.30896966154787 + 12/16 16:00:00,14.767567567567568,14.767567567567568,17.309281832614965 + 12/16 16:10:00,14.86006006006006,14.86006006006006,17.311213486427513 + 12/16 16:20:00,14.952552552552552,14.952552552552552,17.313081300776966 + 12/16 16:30:00,15.045045045045045,15.045045045045045,17.315279239772168 + 12/16 16:40:00,15.137537537537538,15.137537537537538,17.316058033602848 + 12/16 16:50:00,15.23003003003003,15.23003003003003,17.317380271690796 + 12/16 17:00:00,15.322522522522523,15.322522522522523,17.320133792282947 + 12/16 17:10:00,15.343543543543543,15.343543543543543,17.33447205249616 + 12/16 17:20:00,15.364564564564564,15.364564564564564,17.34509776331914 + 12/16 17:30:00,15.385585585585586,15.385585585585586,17.346889986164855 + 12/16 17:40:00,15.406606606606607,15.406606606606607,17.348776334594818 + 12/16 17:50:00,15.427627627627628,15.427627627627628,17.349184601934288 + 12/16 18:00:00,15.448648648648648,15.448648648648648,17.34948955048102 + 12/16 18:10:00,15.473873873873874,15.473873873873874,19.115870766106924 + 12/16 18:20:00,15.499099099099098,15.499099099099098,19.325368876625896 + 12/16 18:30:00,15.524324324324324,15.524324324324324,19.408071953029727 + 12/16 18:40:00,15.54954954954955,15.54954954954955,19.47214905328127 + 12/16 18:50:00,15.574774774774774,15.574774774774774,19.523126842821509 + 12/16 19:00:00,15.6,15.6,19.565347045922807 + 12/16 19:10:00,15.6,15.6,19.614128732613783 + 12/16 19:20:00,15.6,15.6,19.64604805300064 + 12/16 19:30:00,15.6,15.6,19.67434729886874 + 12/16 19:40:00,15.6,15.6,19.700015954822974 + 12/16 19:50:00,15.6,15.6,19.723599841061629 + 12/16 20:00:00,15.6,15.6,19.74539094116085 + 12/16 20:10:00,15.6,15.6,19.764741871679314 + 12/16 20:20:00,15.6,15.6,19.782897345456328 + 12/16 20:30:00,15.6,15.6,19.79987469207328 + 12/16 20:40:00,15.6,15.6,19.815855522397599 + 12/16 20:50:00,15.6,15.6,19.83086208692515 + 12/16 21:00:00,15.6,15.6,19.845102956892587 + 12/16 21:10:00,15.6,15.6,19.836741693440105 + 12/16 21:20:00,15.6,15.6,19.850126837514489 + 12/16 21:30:00,15.6,15.6,19.862782063928294 + 12/16 21:40:00,15.6,15.6,19.87476558267709 + 12/16 21:50:00,15.6,15.6,19.88617432155663 + 12/16 22:00:00,15.6,15.6,19.89713025207393 + 12/16 22:10:00,15.6,15.6,19.907058623997835 + 12/16 22:20:00,15.6,15.6,19.916306811048725 + 12/16 22:30:00,15.6,15.6,19.925067365874857 + 12/16 22:40:00,15.6,15.6,19.933272738250925 + 12/16 22:50:00,15.6,15.6,19.941165782943729 + 12/16 23:00:00,15.6,15.6,19.94870560585633 + 12/16 23:10:00,15.6,15.6,19.956852564464826 + 12/16 23:20:00,15.6,15.6,19.964764454220366 + 12/16 23:30:00,15.6,15.6,19.972347545263813 + 12/16 23:40:00,15.6,15.6,19.97982731644236 + 12/16 23:50:00,15.6,15.6,19.987118154442834 + 12/16 24:00:00,15.6,15.6,19.994228379146553 + 12/17 00:10:00,15.6,15.6,20.003782634861545 + 12/17 00:20:00,15.6,15.6,20.01322515788713 + 12/17 00:30:00,15.6,15.6,20.022790341443579 + 12/17 00:40:00,15.6,15.6,20.0324369646485 + 12/17 00:50:00,15.6,15.6,20.042158201023417 + 12/17 01:00:00,15.6,15.6,20.051950185106045 + 12/17 01:10:00,15.6,15.6,20.055871600678985 + 12/17 01:20:00,15.6,15.6,20.059780808727806 + 12/17 01:30:00,15.6,15.6,20.063618885074076 + 12/17 01:40:00,15.6,15.6,20.067366178193443 + 12/17 01:50:00,15.6,15.6,20.070992987949468 + 12/17 02:00:00,15.6,15.6,20.074469952763264 + 12/17 02:10:00,15.6,15.6,20.085183016873104 + 12/17 02:20:00,15.6,15.6,20.095966488915509 + 12/17 02:30:00,15.6,15.6,20.10681146055032 + 12/17 02:40:00,15.6,15.6,20.117710063645125 + 12/17 02:50:00,15.6,15.6,20.128696635133008 + 12/17 03:00:00,15.6,15.6,20.139702090750768 + 12/17 03:10:00,15.6,15.6,20.14569021992914 + 12/17 03:20:00,15.6,15.6,20.15160850978762 + 12/17 03:30:00,15.6,15.6,20.157404560890414 + 12/17 03:40:00,15.6,15.6,20.16309695009288 + 12/17 03:50:00,15.6,15.6,20.168598489976544 + 12/17 04:00:00,15.6,15.6,20.174073562330088 + 12/17 04:10:00,15.6,15.6,20.17745926538735 + 12/17 04:20:00,15.6,15.6,20.180757066817518 + 12/17 04:30:00,15.6,15.6,20.18394258934846 + 12/17 04:40:00,15.6,15.6,20.186969424890518 + 12/17 04:50:00,15.6,15.6,20.18991733843318 + 12/17 05:00:00,15.6,15.6,20.192814600759296 + 12/17 05:10:00,15.6,15.6,20.19125522293183 + 12/17 05:20:00,15.6,15.6,20.189854745374214 + 12/17 05:30:00,15.6,15.6,20.188751774258088 + 12/17 05:40:00,15.6,15.6,20.18792122019603 + 12/17 05:50:00,15.6,15.6,20.1874343347812 + 12/17 06:00:00,15.6,15.6,20.187178154893215 + 12/17 06:10:00,15.6,15.6,20.191917971396096 + 12/17 06:20:00,15.6,15.6,20.196675993866117 + 12/17 06:30:00,15.6,15.6,20.201255306692255 + 12/17 06:40:00,15.6,15.6,20.205811412221775 + 12/17 06:50:00,15.6,15.6,20.2102441632411 + 12/17 07:00:00,15.6,15.6,20.214563298770885 + 12/17 07:10:00,15.6,15.6,20.246395898451273 + 12/17 07:20:00,15.6,15.6,20.255289771142974 + 12/17 07:30:00,15.6,15.6,20.264015755454137 + 12/17 07:40:00,15.6,15.6,20.27252818462475 + 12/17 07:50:00,15.6,15.6,20.280351055571985 + 12/17 08:00:00,15.6,15.6,20.286917611150494 + 12/17 08:10:00,15.6,15.6,18.879972971208013 + 12/17 08:20:00,15.6,15.6,18.713717194717277 + 12/17 08:30:00,15.6,15.6,18.64599105547348 + 12/17 08:40:00,15.6,15.6,18.590708321750648 + 12/17 08:50:00,15.6,15.6,18.54462006806126 + 12/17 09:00:00,15.6,15.6,18.504664670302274 + 12/17 09:10:00,15.6,15.6,18.471746016387578 + 12/17 09:20:00,15.6,15.6,18.43275111906418 + 12/17 09:30:00,15.6,15.6,18.404843993448887 + 12/17 09:40:00,15.6,15.6,18.37888115608834 + 12/17 09:50:00,15.6,15.6,18.354568712965965 + 12/17 10:00:00,15.6,15.6,18.331712965851655 + 12/17 10:10:00,15.6,15.6,18.307404720921939 + 12/17 10:20:00,15.6,15.6,18.275377100265023 + 12/17 10:30:00,15.6,15.6,18.2530270858748 + 12/17 10:40:00,15.6,15.6,18.231720048197926 + 12/17 10:50:00,15.6,15.6,18.21135619587408 + 12/17 11:00:00,15.6,15.6,18.191848084408649 + 12/17 11:10:00,15.6,15.6,18.174799764096684 + 12/17 11:20:00,15.6,15.6,18.15876241581732 + 12/17 11:30:00,15.6,15.6,18.143637510986126 + 12/17 11:40:00,15.6,15.6,18.129342044899098 + 12/17 11:50:00,15.6,15.6,18.115956171128905 + 12/17 12:00:00,15.6,15.6,18.10337095484096 + 12/17 12:10:00,15.6,15.6,18.089448270375749 + 12/17 12:20:00,15.6,15.6,18.076029799026004 + 12/17 12:30:00,15.6,15.6,18.063106855275927 + 12/17 12:40:00,15.6,15.6,18.050638274429308 + 12/17 12:50:00,15.6,15.6,18.038590328822985 + 12/17 13:00:00,15.6,15.6,18.02719385440202 + 12/17 13:10:00,15.6,15.6,18.019177946047 + 12/17 13:20:00,15.6,15.6,18.011839326347926 + 12/17 13:30:00,15.6,15.6,18.00530054394934 + 12/17 13:40:00,15.6,15.6,17.999582643161675 + 12/17 13:50:00,15.6,15.6,17.994623206257566 + 12/17 14:00:00,15.6,15.6,17.99031433183828 + 12/17 14:10:00,15.6,15.6,17.98537149475694 + 12/17 14:20:00,15.6,15.6,17.98091653240717 + 12/17 14:30:00,15.6,15.6,17.97687278567584 + 12/17 14:40:00,15.6,15.6,17.97336054852368 + 12/17 14:50:00,15.6,15.6,17.970447129773203 + 12/17 15:00:00,15.6,15.6,17.968077000136384 + 12/17 15:10:00,15.6,15.6,17.966854116376653 + 12/17 15:20:00,15.6,15.6,17.966394070487426 + 12/17 15:30:00,15.6,15.6,17.966512119922265 + 12/17 15:40:00,15.6,15.6,17.9671851036152 + 12/17 15:50:00,15.6,15.6,17.968617853328746 + 12/17 16:00:00,15.6,15.6,17.970721740711434 + 12/17 16:10:00,15.6,15.6,19.407064495000176 + 12/17 16:20:00,15.6,15.6,19.55920419286087 + 12/17 16:30:00,15.6,15.6,19.625569353268156 + 12/17 16:40:00,15.6,15.6,19.678073894598844 + 12/17 16:50:00,15.6,15.6,19.720774570034803 + 12/17 17:00:00,15.6,15.6,19.75705430970313 + 12/17 17:10:00,15.6,15.6,19.790530876467064 + 12/17 17:20:00,15.6,15.6,19.82961855626617 + 12/17 17:30:00,15.6,15.6,19.857239721941406 + 12/17 17:40:00,15.6,15.6,19.88257194609003 + 12/17 17:50:00,15.6,15.6,19.905664987913803 + 12/17 18:00:00,15.6,15.6,19.926582384533057 + 12/17 18:10:00,15.6,15.6,19.945969828280736 + 12/17 18:20:00,15.6,15.6,19.981468689472395 + 12/17 18:30:00,15.6,15.6,19.997762895394684 + 12/17 18:40:00,15.6,15.6,20.012726994805136 + 12/17 18:50:00,15.6,15.6,20.02658357499533 + 12/17 19:00:00,15.6,15.6,20.03964239818108 + 12/17 19:10:00,15.6,15.6,20.050120857742493 + 12/17 19:20:00,15.6,15.6,20.059960542835208 + 12/17 19:30:00,15.6,15.6,20.0692506912699 + 12/17 19:40:00,15.6,15.6,20.07798980030024 + 12/17 19:50:00,15.6,15.6,20.08630036238616 + 12/17 20:00:00,15.6,15.6,20.09426050802108 + 12/17 20:10:00,15.6,15.6,20.10169624542223 + 12/17 20:20:00,15.6,15.6,20.108727988509338 + 12/17 20:30:00,15.6,15.6,20.115306149891504 + 12/17 20:40:00,15.6,15.6,20.121494291649733 + 12/17 20:50:00,15.6,15.6,20.12739323310887 + 12/17 21:00:00,15.6,15.6,20.132977080276164 + 12/17 21:10:00,15.6,15.6,20.11631430484728 + 12/17 21:20:00,15.6,15.6,20.12212656886991 + 12/17 21:30:00,15.6,15.6,20.12772652728465 + 12/17 21:40:00,15.6,15.6,20.133270851187214 + 12/17 21:50:00,15.6,15.6,20.13868788206702 + 12/17 22:00:00,15.6,15.6,20.143982048068023 + 12/17 22:10:00,15.6,15.6,20.150280474297778 + 12/17 22:20:00,15.6,15.6,20.156263137836594 + 12/17 22:30:00,15.6,15.6,20.162237751668319 + 12/17 22:40:00,15.6,15.6,20.167985092908894 + 12/17 22:50:00,15.6,15.6,20.17357457155252 + 12/17 23:00:00,15.6,15.6,20.179019626390745 + 12/17 23:10:00,15.6,15.6,20.18435650791333 + 12/17 23:20:00,15.6,15.6,20.18968946649232 + 12/17 23:30:00,15.6,15.6,20.19500521385292 + 12/17 23:40:00,15.6,15.6,20.200288303639377 + 12/17 23:50:00,15.6,15.6,20.20553615053238 + 12/17 24:00:00,15.6,15.6,20.21068802579296 + 12/18 00:10:00,15.6,15.6,20.214095196305025 + 12/18 00:20:00,15.6,15.6,20.217496529008739 + 12/18 00:30:00,15.6,15.6,20.22098320164966 + 12/18 00:40:00,15.6,15.6,20.224566168750369 + 12/18 00:50:00,15.6,15.6,20.228203823882138 + 12/18 01:00:00,15.6,15.6,20.231869101059197 + 12/18 01:10:00,15.6,15.6,20.23620296124916 + 12/18 01:20:00,15.6,15.6,20.240468458774758 + 12/18 01:30:00,15.6,15.6,20.244606242889675 + 12/18 01:40:00,15.6,15.6,20.248602238255456 + 12/18 01:50:00,15.6,15.6,20.25237477082958 + 12/18 02:00:00,15.6,15.6,20.25612236214807 + 12/18 02:10:00,15.6,15.6,20.260328713418326 + 12/18 02:20:00,15.6,15.6,20.264373813598597 + 12/18 02:30:00,15.6,15.6,20.268244665416817 + 12/18 02:40:00,15.6,15.6,20.27186147038994 + 12/18 02:50:00,15.6,15.6,20.27539393927061 + 12/18 03:00:00,15.6,15.6,20.278803608933019 + 12/18 03:10:00,15.6,15.6,20.281412956248006 + 12/18 03:20:00,15.6,15.6,20.28392398728815 + 12/18 03:30:00,15.6,15.6,20.286288254637485 + 12/18 03:40:00,15.6,15.6,20.288600954712 + 12/18 03:50:00,15.6,15.6,20.290887689271739 + 12/18 04:00:00,15.6,15.6,20.293112953032006 + 12/18 04:10:00,15.6,15.6,20.297454456795636 + 12/18 04:20:00,15.6,15.6,20.30176547011622 + 12/18 04:30:00,15.6,15.6,20.30606176366363 + 12/18 04:40:00,15.6,15.6,20.310442472749 + 12/18 04:50:00,15.6,15.6,20.314840459671716 + 12/18 05:00:00,15.6,15.6,20.31925614149922 + 12/18 05:10:00,15.6,15.6,20.320647764311159 + 12/18 05:20:00,15.6,15.6,20.321938035353218 + 12/18 05:30:00,15.6,15.6,20.32327721046515 + 12/18 05:40:00,15.6,15.6,20.324577476914088 + 12/18 05:50:00,15.6,15.6,20.325840320442884 + 12/18 06:00:00,15.6,15.6,20.327003880959955 + 12/18 06:10:00,15.6,15.6,20.33161853897058 + 12/18 06:20:00,15.6,15.6,20.336070601107019 + 12/18 06:30:00,15.6,15.6,20.340346039596406 + 12/18 06:40:00,15.6,15.6,20.344432732873459 + 12/18 06:50:00,15.6,15.6,20.348337714101669 + 12/18 07:00:00,15.6,15.6,20.35200925711502 + 12/18 07:05:00,15.6,15.6,18.34380076176838 + 12/18 07:10:00,15.6,15.6,18.343933027680316 + 12/18 07:20:00,15.6,15.6,18.109948574264558 + 12/18 07:30:00,15.6,15.6,18.021155994582864 + 12/18 07:40:00,15.6,15.6,17.951498865516169 + 12/18 07:50:00,15.6,15.6,17.895475419744807 + 12/18 08:00:00,15.6,15.6,17.848202028493757 + 12/18 08:05:00,15.6,15.6,16.36065994139737 + 12/18 08:10:00,15.6,15.6,16.36060358203418 + 12/18 08:15:00,15.6,15.6,16.14147251442924 + 12/18 08:20:00,15.6,15.6,16.141557198447928 + 12/18 08:30:00,15.6,15.6,16.034997870703437 + 12/18 08:40:00,15.6,15.6,15.945997663619388 + 12/18 08:50:00,15.6,15.6,15.86972265759408 + 12/18 09:00:00,15.6,15.6,15.802271731186773 + 12/18 09:10:00,15.6,15.6,15.713550357359982 + 12/18 09:20:00,15.6,15.6,15.647383697938047 + 12/18 09:30:00,15.6,15.6,15.593032921412272 + 12/18 09:40:00,15.6,15.6,15.542109602041743 + 12/18 09:50:00,15.6,15.6,15.494026142946414 + 12/18 10:00:00,15.6,15.6,15.44836301692531 + 12/18 10:10:00,15.6,15.6,15.405378295800576 + 12/18 10:20:00,15.6,15.6,15.353754959587688 + 12/18 10:30:00,15.6,15.6,15.31460047926704 + 12/18 10:40:00,15.6,15.6,15.277409264819003 + 12/18 10:50:00,15.6,15.6,15.242191117446876 + 12/18 11:00:00,15.6,15.6,15.208941833782465 + 12/18 11:10:00,15.6,15.6,15.177792699432791 + 12/18 11:20:00,15.6,15.6,15.144655999719373 + 12/18 11:30:00,15.6,15.6,15.116696932699274 + 12/18 11:40:00,15.6,15.6,15.090006711469089 + 12/18 11:50:00,15.6,15.6,15.066207487314891 + 12/18 12:00:00,15.6,15.6,15.041153520174888 + 12/18 12:10:00,15.6,15.6,15.016300413777826 + 12/18 12:20:00,15.6,15.6,15.00255243636383 + 12/18 12:30:00,15.6,15.6,14.977721202981292 + 12/18 12:40:00,15.6,15.6,14.956108432138159 + 12/18 12:50:00,15.6,15.6,14.934594095002496 + 12/18 13:00:00,15.6,15.6,14.914052929827337 + 12/18 13:10:00,15.6,15.6,14.89733523567264 + 12/18 13:20:00,15.6,15.6,14.870346099961632 + 12/18 13:30:00,15.6,15.6,14.855949112307757 + 12/18 13:40:00,15.6,15.6,14.841799583708813 + 12/18 13:50:00,15.6,15.6,14.82922188895393 + 12/18 14:00:00,15.6,15.6,14.817595356290589 + 12/18 14:10:00,15.6,15.6,14.80566272784167 + 12/18 14:20:00,15.6,15.6,14.799083386673804 + 12/18 14:30:00,15.6,15.6,14.787578876449047 + 12/18 14:40:00,15.6,15.6,14.779082905987016 + 12/18 14:50:00,15.6,15.6,14.767702147490724 + 12/18 15:00:00,15.6,15.6,14.759330714790038 + 12/18 15:10:00,15.6,15.6,14.750444568025796 + 12/18 15:20:00,15.6,15.6,14.746127462226056 + 12/18 15:30:00,15.6,15.6,14.740271732074883 + 12/18 15:40:00,15.6,15.6,14.73247647770747 + 12/18 15:50:00,15.6,15.6,14.728641026002995 + 12/18 16:00:00,15.6,15.6,14.724168726603049 + 12/18 16:10:00,15.6,15.6,16.88774905087803 + 12/18 16:20:00,15.6,15.6,17.13650274141463 + 12/18 16:30:00,15.6,15.6,17.233123410124788 + 12/18 16:40:00,15.6,15.6,17.30798055719909 + 12/18 16:50:00,15.6,15.6,17.36819157219632 + 12/18 17:00:00,15.6,15.6,17.418105357804224 + 12/18 17:10:00,15.6,15.6,17.485864710184079 + 12/18 17:20:00,15.6,15.6,17.544886574430984 + 12/18 17:30:00,15.6,15.6,17.57985506208633 + 12/18 17:40:00,15.6,15.6,17.611344229650756 + 12/18 17:50:00,15.6,15.6,17.63973234518235 + 12/18 18:00:00,15.6,15.6,17.66527861218553 + 12/18 18:10:00,15.6,15.6,17.70167887940384 + 12/18 18:20:00,15.6,15.6,17.728741862772219 + 12/18 18:30:00,15.6,15.6,17.748277844360126 + 12/18 18:40:00,15.6,15.6,17.76621451713853 + 12/18 18:50:00,15.6,15.6,17.782705807397706 + 12/18 19:00:00,15.6,15.6,17.798000246580103 + 12/18 19:10:00,15.6,15.6,17.811079165293309 + 12/18 19:20:00,15.6,15.6,17.823147389292278 + 12/18 19:30:00,15.6,15.6,17.834436503734538 + 12/18 19:40:00,15.6,15.6,17.84504230022372 + 12/18 19:50:00,15.6,15.6,17.85504075600437 + 12/18 20:00:00,15.6,15.6,17.864537249865046 + 12/18 20:10:00,15.6,15.6,17.888455105268734 + 12/18 20:20:00,15.6,15.6,17.89948222573434 + 12/18 20:30:00,15.6,15.6,17.90970977597286 + 12/18 20:40:00,15.6,15.6,17.919512682569527 + 12/18 20:50:00,15.6,15.6,17.92896111643796 + 12/18 21:00:00,15.6,15.6,17.93810239671309 + 12/18 21:10:00,15.6,15.6,17.923309932242696 + 12/18 21:20:00,15.6,15.6,17.935379695772885 + 12/18 21:30:00,15.6,15.6,17.942769325828349 + 12/18 21:40:00,15.6,15.6,17.949913903190457 + 12/18 21:50:00,15.6,15.6,17.956870359671048 + 12/18 22:00:00,15.6,15.6,17.963645015480794 + 12/18 22:10:00,15.6,15.6,17.969772679484206 + 12/18 22:20:00,15.6,15.6,17.9758145531963 + 12/18 22:30:00,15.6,15.6,17.981769694639405 + 12/18 22:40:00,15.6,15.6,17.987611239927877 + 12/18 22:50:00,15.6,15.6,17.99330884282707 + 12/18 23:00:00,15.6,15.6,17.998982891424175 + 12/18 23:10:00,15.6,15.6,19.37767607032282 + 12/18 23:20:00,15.6,15.6,19.520123607609248 + 12/18 23:30:00,15.6,15.6,19.583613321155114 + 12/18 23:40:00,15.6,15.6,19.633745089623809 + 12/18 23:50:00,15.6,15.6,19.674321629602834 + 12/18 24:00:00,15.6,15.6,19.708428508783045 + 12/19 00:10:00,15.6,15.6,19.736850042082016 + 12/19 00:20:00,15.6,15.6,19.761880569553506 + 12/19 00:30:00,15.6,15.6,19.784218654431258 + 12/19 00:40:00,15.6,15.6,19.804547144104168 + 12/19 00:50:00,15.6,15.6,19.8232010805879 + 12/19 01:00:00,15.6,15.6,19.840444114044464 + 12/19 01:10:00,15.6,15.6,19.85827411430454 + 12/19 01:20:00,15.6,15.6,19.874955683548259 + 12/19 01:30:00,15.6,15.6,19.890684253134319 + 12/19 01:40:00,15.6,15.6,19.905596731618176 + 12/19 01:50:00,15.6,15.6,19.919706122408113 + 12/19 02:00:00,15.6,15.6,19.933156514726436 + 12/19 02:10:00,15.6,15.6,19.945853627334964 + 12/19 02:20:00,15.6,15.6,19.957947736628495 + 12/19 02:30:00,15.6,15.6,19.969606608727813 + 12/19 02:40:00,15.6,15.6,19.98080161023227 + 12/19 02:50:00,15.6,15.6,19.991576286618274 + 12/19 03:00:00,15.6,15.6,20.001954116971949 + 12/19 03:10:00,15.6,15.6,20.01246289299757 + 12/19 03:20:00,15.6,15.6,20.02277585954203 + 12/19 03:30:00,15.6,15.6,20.032791086125884 + 12/19 03:40:00,15.6,15.6,20.042543770759609 + 12/19 03:50:00,15.6,15.6,20.05204548067989 + 12/19 04:00:00,15.6,15.6,20.06122031327482 + 12/19 04:10:00,15.6,15.6,20.068994709986855 + 12/19 04:20:00,15.6,15.6,20.076517646088566 + 12/19 04:30:00,15.6,15.6,20.08379600823576 + 12/19 04:40:00,15.6,15.6,20.090834434050387 + 12/19 04:50:00,15.6,15.6,20.097580261877778 + 12/19 05:00:00,15.6,15.6,20.104148339332729 + 12/19 05:10:00,15.6,15.6,20.110552967975388 + 12/19 05:20:00,15.6,15.6,20.11676847780692 + 12/19 05:30:00,15.6,15.6,20.12280459024239 + 12/19 05:40:00,15.6,15.6,20.12862614610761 + 12/19 05:50:00,15.6,15.6,20.134270043799434 + 12/19 06:00:00,15.6,15.6,20.139817889311169 + 12/19 06:10:00,15.6,15.6,20.145220345814967 + 12/19 06:20:00,15.6,15.6,20.15047911060443 + 12/19 06:30:00,15.6,15.6,20.15558010357513 + 12/19 06:40:00,15.6,15.6,20.160485371563675 + 12/19 06:50:00,15.6,15.6,20.165347588641855 + 12/19 07:00:00,15.6,15.6,20.17008660019268 + 12/19 07:05:00,15.6,15.6,18.15970663206739 + 12/19 07:10:00,15.6,15.6,18.15979872679535 + 12/19 07:20:00,15.6,15.6,17.928044531242294 + 12/19 07:30:00,15.6,15.6,17.842677738115606 + 12/19 07:40:00,15.6,15.6,17.776258715823674 + 12/19 07:50:00,15.6,15.6,17.723766626054166 + 12/19 08:00:00,15.6,15.6,17.679782894911918 + 12/19 08:10:00,15.6,15.6,16.19125593639885 + 12/19 08:20:00,15.6,15.6,15.973269665017007 + 12/19 08:30:00,15.6,15.6,15.86934700369405 + 12/19 08:40:00,15.6,15.6,15.782442689726747 + 12/19 08:50:00,15.6,15.6,15.708437666163265 + 12/19 09:00:00,15.6,15.6,15.643002213890986 + 12/19 09:10:00,15.6,15.6,15.55850506929196 + 12/19 09:20:00,15.6,15.6,15.496309939028063 + 12/19 09:30:00,15.6,15.6,15.445657340697592 + 12/19 09:40:00,15.6,15.6,15.398262609591964 + 12/19 09:50:00,15.6,15.6,15.353795121927283 + 12/19 10:00:00,15.6,15.6,15.311999091389485 + 12/19 10:10:00,15.6,15.6,15.271850709788703 + 12/19 10:20:00,15.6,15.6,15.223419127201428 + 12/19 10:30:00,15.6,15.6,15.187510830559888 + 12/19 10:40:00,15.6,15.6,15.153476156704928 + 12/19 10:50:00,15.6,15.6,15.121048708346422 + 12/19 11:00:00,15.6,15.6,15.090147401288452 + 12/19 11:10:00,15.6,15.6,15.060154342034709 + 12/19 11:20:00,15.6,15.6,15.028387766037522 + 12/19 11:30:00,15.6,15.6,14.99758617673655 + 12/19 11:40:00,15.6,15.6,14.971161382537636 + 12/19 11:50:00,15.6,15.6,14.942714978985015 + 12/19 12:00:00,15.6,15.6,14.91798546737872 + 12/19 12:10:00,15.528528528528529,15.528528528528529,14.893964648657184 + 12/19 12:20:00,15.457057057057057,15.457057057057057,14.882333837572969 + 12/19 12:30:00,15.385585585585586,15.385585585585586,14.862380082328464 + 12/19 12:40:00,15.314114114114114,15.314114114114114,14.841691958450025 + 12/19 12:50:00,15.242642642642644,15.242642642642644,14.824626683001528 + 12/19 13:00:00,15.17117117117117,15.17117117117117,14.8072542891758 + 12/19 13:10:00,15.078678678678678,15.078678678678678,14.789237088358535 + 12/19 13:20:00,14.986186186186187,14.986186186186187,14.764596667256035 + 12/19 13:30:00,14.893693693693694,14.893693693693694,14.746940796511265 + 12/19 13:40:00,14.801201201201203,14.801201201201203,14.73336177654593 + 12/19 13:50:00,14.70870870870871,14.70870870870871,14.717480253997137 + 12/19 14:00:00,14.616216216216217,14.616216216216217,14.704855117866254 + 12/19 14:10:00,14.616216216216217,14.616216216216217,14.69192085964076 + 12/19 14:20:00,14.616216216216217,14.616216216216217,14.684633168542707 + 12/19 14:30:00,14.616216216216217,14.616216216216217,14.67429356656754 + 12/19 14:40:00,14.616216216216217,14.616216216216217,14.664536722611376 + 12/19 14:50:00,14.616216216216217,14.616216216216217,14.65726446835495 + 12/19 15:00:00,14.616216216216217,14.616216216216217,14.648334399748192 + 12/19 15:10:00,14.595195195195196,14.595195195195196,14.642540954821419 + 12/19 15:20:00,14.574174174174175,14.574174174174175,14.6388258695571 + 12/19 15:30:00,14.553153153153153,14.553153153153153,14.634048603063038 + 12/19 15:40:00,14.532132132132132,14.532132132132132,14.629857578920323 + 12/19 15:50:00,14.511111111111111,14.511111111111111,14.624686827105034 + 12/19 16:00:00,14.49009009009009,14.49009009009009,14.62265995831159 + 12/19 16:05:00,14.511111111111111,14.511111111111111,16.791116324995554 + 12/19 16:10:00,14.511111111111111,14.511111111111111,16.78997772733474 + 12/19 16:20:00,14.532132132132132,14.532132132132132,17.04009125081786 + 12/19 16:30:00,14.553153153153153,14.553153153153153,17.140823439046664 + 12/19 16:40:00,14.574174174174175,14.574174174174175,17.217138531727778 + 12/19 16:50:00,14.595195195195196,14.595195195195196,17.277591844615988 + 12/19 17:00:00,14.616216216216217,14.616216216216217,17.329298467449286 + 12/19 17:10:00,14.687687687687689,14.687687687687689,17.40037996658769 + 12/19 17:20:00,14.759159159159159,14.759159159159159,17.4573056028644 + 12/19 17:30:00,14.83063063063063,14.83063063063063,17.49197252473201 + 12/19 17:40:00,14.902102102102102,14.902102102102102,17.523130154843586 + 12/19 17:50:00,14.973573573573575,14.973573573573575,17.551027169333154 + 12/19 18:00:00,15.045045045045045,15.045045045045045,17.575909498898758 + 12/19 18:10:00,15.162762762762763,15.162762762762763,17.611868757608474 + 12/19 18:20:00,15.28048048048048,15.28048048048048,17.639053177324724 + 12/19 18:30:00,15.398198198198199,15.398198198198199,17.658882282256564 + 12/19 18:40:00,15.515915915915916,15.515915915915916,17.677328947241884 + 12/19 18:50:00,15.6,15.6,17.694566772052775 + 12/19 19:00:00,15.6,15.6,17.71069490716432 + 12/19 19:10:00,15.6,15.6,17.725875374379606 + 12/19 19:20:00,15.6,15.6,17.74004859144188 + 12/19 19:30:00,15.6,15.6,17.753325516805956 + 12/19 19:40:00,15.6,15.6,17.765791943046766 + 12/19 19:50:00,15.6,15.6,17.777616851358596 + 12/19 20:00:00,15.6,15.6,17.78885942131756 + 12/19 20:10:00,15.6,15.6,17.813259347744876 + 12/19 20:20:00,15.6,15.6,17.824812385768188 + 12/19 20:30:00,15.6,15.6,17.835668657369536 + 12/19 20:40:00,15.6,15.6,17.84622708712167 + 12/19 20:50:00,15.6,15.6,17.85653842167537 + 12/19 21:00:00,15.6,15.6,17.86658503935966 + 12/19 21:10:00,15.6,15.6,17.853395571707638 + 12/19 21:20:00,15.6,15.6,17.86686642883534 + 12/19 21:30:00,15.6,15.6,17.875486578760865 + 12/19 21:40:00,15.6,15.6,17.8836725055835 + 12/19 21:50:00,15.6,15.6,17.891511401770719 + 12/19 22:00:00,15.6,15.6,17.899033424573927 + 12/19 22:10:00,15.6,15.6,17.905703399488645 + 12/19 22:20:00,15.6,15.6,17.911965491062408 + 12/19 22:30:00,15.6,15.6,17.9178706753873 + 12/19 22:40:00,15.6,15.6,17.923444496403826 + 12/19 22:50:00,15.6,15.6,17.928692179604214 + 12/19 23:00:00,15.6,15.6,17.93363881198582 + 12/19 23:10:00,15.6,15.6,19.31051560477815 + 12/19 23:20:00,15.6,15.6,19.452944389846818 + 12/19 23:30:00,15.6,15.6,19.516191152734728 + 12/19 23:40:00,15.6,15.6,19.56629912661986 + 12/19 23:50:00,15.6,15.6,19.60686099424369 + 12/19 24:00:00,15.6,15.6,19.64104295476902 + 12/20 00:10:00,15.6,15.6,19.66921873784309 + 12/20 00:20:00,15.6,15.6,19.694063421703374 + 12/20 00:30:00,15.6,15.6,19.71630822483109 + 12/20 00:40:00,15.6,15.6,19.736453761869258 + 12/20 00:50:00,15.6,15.6,19.754875897604849 + 12/20 01:00:00,15.6,15.6,19.77171502641333 + 12/20 01:10:00,15.6,15.6,19.789633278328343 + 12/20 01:20:00,15.6,15.6,19.806530187198363 + 12/20 01:30:00,15.6,15.6,19.82248907115104 + 12/20 01:40:00,15.6,15.6,19.837629896487309 + 12/20 01:50:00,15.6,15.6,19.85195475566798 + 12/20 02:00:00,15.6,15.6,19.865700025300698 + 12/20 02:10:00,15.6,15.6,19.877370466856605 + 12/20 02:20:00,15.6,15.6,19.888502895627054 + 12/20 02:30:00,15.6,15.6,19.899163353560348 + 12/20 02:40:00,15.6,15.6,19.909326953175979 + 12/20 02:50:00,15.6,15.6,19.919116958125764 + 12/20 03:00:00,15.6,15.6,19.928583523564318 + 12/20 03:10:00,15.6,15.6,19.938293268450719 + 12/20 03:20:00,15.6,15.6,19.947690907053067 + 12/20 03:30:00,15.6,15.6,19.956766233373615 + 12/20 03:40:00,15.6,15.6,19.965547618134317 + 12/20 03:50:00,15.6,15.6,19.97414296007591 + 12/20 04:00:00,15.6,15.6,19.9825013855166 + 12/20 04:10:00,15.6,15.6,19.990626158477306 + 12/20 04:20:00,15.6,15.6,19.99856888449166 + 12/20 04:30:00,15.6,15.6,20.00627182558118 + 12/20 04:40:00,15.6,15.6,20.0139143235458 + 12/20 04:50:00,15.6,15.6,20.021407193348407 + 12/20 05:00:00,15.6,15.6,20.028754469993545 + 12/20 05:10:00,15.6,15.6,20.03633723514573 + 12/20 05:20:00,15.6,15.6,20.04358619891605 + 12/20 05:30:00,15.6,15.6,20.050669554019465 + 12/20 05:40:00,15.6,15.6,20.05751039051193 + 12/20 05:50:00,15.6,15.6,20.06411539625031 + 12/20 06:00:00,15.6,15.6,20.070501555592437 + 12/20 06:10:00,15.6,15.6,20.074636685747757 + 12/20 06:20:00,15.6,15.6,20.078668496150784 + 12/20 06:30:00,15.6,15.6,20.082617428923876 + 12/20 06:40:00,15.6,15.6,20.08646237702293 + 12/20 06:50:00,15.6,15.6,20.09021069494068 + 12/20 07:00:00,15.6,15.6,20.09381997875057 + 12/20 07:10:00,15.6,15.6,18.08446802240405 + 12/20 07:20:00,15.6,15.6,17.852557573625114 + 12/20 07:30:00,15.6,15.6,17.76705498024178 + 12/20 07:40:00,15.6,15.6,17.70042985351824 + 12/20 07:50:00,15.6,15.6,17.6477349411048 + 12/20 08:00:00,15.6,15.6,17.603897354498146 + 12/20 08:10:00,15.6,15.6,16.117491195113236 + 12/20 08:20:00,15.6,15.6,15.90084941040226 + 12/20 08:30:00,15.6,15.6,15.799266274196225 + 12/20 08:40:00,15.6,15.6,15.715558054925986 + 12/20 08:50:00,15.6,15.6,15.645239829028905 + 12/20 09:00:00,15.6,15.6,15.583738106023592 + 12/20 09:10:00,15.6,15.6,15.501803689331505 + 12/20 09:20:00,15.6,15.6,15.442344024858816 + 12/20 09:30:00,15.6,15.6,15.394377974928802 + 12/20 09:40:00,15.6,15.6,15.349406563213313 + 12/20 09:50:00,15.6,15.6,15.306994588824729 + 12/20 10:00:00,15.6,15.6,15.26692344882345 + 12/20 10:10:00,15.553753753753754,15.553753753753754,15.229394246218038 + 12/20 10:20:00,15.507507507507507,15.507507507507507,15.1829556514866 + 12/20 10:30:00,15.46126126126126,15.46126126126126,15.149325867434627 + 12/20 10:40:00,15.415015015015016,15.415015015015016,15.117224258287399 + 12/20 10:50:00,15.368768768768769,15.368768768768769,15.085833709234521 + 12/20 11:00:00,15.322522522522523,15.322522522522523,15.054728841817724 + 12/20 11:10:00,15.322522522522523,15.322522522522523,15.024653689068629 + 12/20 11:20:00,15.322522522522523,15.322522522522523,14.993404097564272 + 12/20 11:30:00,15.322522522522523,15.322522522522523,14.963100303776792 + 12/20 11:40:00,15.322522522522523,15.322522522522523,14.936055300523274 + 12/20 11:50:00,15.322522522522523,15.322522522522523,14.909732000657327 + 12/20 12:00:00,15.322522522522523,15.322522522522523,14.887054607488333 + 12/20 12:10:00,15.204804804804806,15.204804804804806,14.865201224937959 + 12/20 12:20:00,15.087087087087087,15.087087087087087,14.854769116850577 + 12/20 12:30:00,14.96936936936937,14.96936936936937,14.837555792870458 + 12/20 12:40:00,14.851651651651653,14.851651651651653,14.818138996331172 + 12/20 12:50:00,14.733933933933934,14.733933933933934,14.801639106562878 + 12/20 13:00:00,14.616216216216217,14.616216216216217,14.785064912181206 + 12/20 13:10:00,14.595195195195196,14.595195195195196,14.766326472253246 + 12/20 13:20:00,14.574174174174175,14.574174174174175,14.741172389559497 + 12/20 13:30:00,14.553153153153153,14.553153153153153,14.723541387267446 + 12/20 13:40:00,14.532132132132132,14.532132132132132,14.708661968562405 + 12/20 13:50:00,14.511111111111111,14.511111111111111,14.693367423824462 + 12/20 14:00:00,14.49009009009009,14.49009009009009,14.68032778037651 + 12/20 14:10:00,14.464864864864865,14.464864864864865,14.669169029617877 + 12/20 14:20:00,14.439639639639639,14.439639639639639,14.662912141123205 + 12/20 14:30:00,14.414414414414415,14.414414414414415,14.654810101941062 + 12/20 14:40:00,14.389189189189189,14.389189189189189,14.645849380225736 + 12/20 14:50:00,14.363963963963965,14.363963963963965,14.640465349197863 + 12/20 15:00:00,14.338738738738739,14.338738738738739,14.632817805760734 + 12/20 15:10:00,14.338738738738739,14.338738738738739,14.627773292378775 + 12/20 15:20:00,14.338738738738739,14.338738738738739,14.625182648576964 + 12/20 15:30:00,14.338738738738739,14.338738738738739,14.620163469303984 + 12/20 15:40:00,14.338738738738739,14.338738738738739,14.616876948662164 + 12/20 15:50:00,14.338738738738739,14.338738738738739,14.611244046120863 + 12/20 16:00:00,14.338738738738739,14.338738738738739,14.609045391078546 + 12/20 16:05:00,14.384984984984986,14.384984984984986,16.77537635791013 + 12/20 16:10:00,14.384984984984986,14.384984984984986,16.774391618779796 + 12/20 16:20:00,14.431231231231232,14.431231231231232,17.02436793964793 + 12/20 16:30:00,14.477477477477479,14.477477477477479,17.125533651165349 + 12/20 16:40:00,14.523723723723723,14.523723723723723,17.20299391698281 + 12/20 16:50:00,14.56996996996997,14.56996996996997,17.262654274212449 + 12/20 17:00:00,14.616216216216217,14.616216216216217,17.31384393662784 + 12/20 17:10:00,14.70870870870871,14.70870870870871,17.38394761063505 + 12/20 17:20:00,14.8012012012012,14.8012012012012,17.441729955631997 + 12/20 17:30:00,14.893693693693694,14.893693693693694,17.474189249438678 + 12/20 17:40:00,14.986186186186187,14.986186186186187,17.504706858608605 + 12/20 17:50:00,15.078678678678678,15.078678678678678,17.532456179316307 + 12/20 18:00:00,15.17117117117117,15.17117117117117,17.55748435039795 + 12/20 18:10:00,15.217417417417418,15.217417417417418,17.592939003336374 + 12/20 18:20:00,15.263663663663664,15.263663663663664,17.61904822080386 + 12/20 18:30:00,15.30990990990991,15.30990990990991,17.63773817527266 + 12/20 18:40:00,15.356156156156157,15.356156156156157,17.654950236800056 + 12/20 18:50:00,15.402402402402402,15.402402402402402,17.67094300673535 + 12/20 19:00:00,15.448648648648648,15.448648648648648,17.685878140592317 + 12/20 19:10:00,15.448648648648648,15.448648648648648,17.70012608475064 + 12/20 19:20:00,15.448648648648648,15.448648648648648,17.71330110320507 + 12/20 19:30:00,15.448648648648648,15.448648648648648,17.725318391003474 + 12/20 19:40:00,15.448648648648648,15.448648648648648,17.73648906655449 + 12/20 19:50:00,15.448648648648648,15.448648648648648,17.74682063923406 + 12/20 20:00:00,15.448648648648648,15.448648648648648,17.756409890365768 + 12/20 20:10:00,15.499099099099098,15.499099099099098,17.778111707319053 + 12/20 20:20:00,15.54954954954955,15.54954954954955,17.787064121095065 + 12/20 20:30:00,15.6,15.6,17.79549657749222 + 12/20 20:40:00,15.6,15.6,17.803801731740145 + 12/20 20:50:00,15.6,15.6,17.81188853216031 + 12/20 21:00:00,15.6,15.6,17.819895609221577 + 12/20 21:10:00,15.6,15.6,17.805446462127848 + 12/20 21:20:00,15.6,15.6,17.817970676430126 + 12/20 21:30:00,15.6,15.6,17.8259457091631 + 12/20 21:40:00,15.6,15.6,17.833784070696159 + 12/20 21:50:00,15.6,15.6,17.84151791045444 + 12/20 22:00:00,15.6,15.6,17.849135033261136 + 12/20 22:10:00,15.6,15.6,17.857030611629019 + 12/20 22:20:00,15.6,15.6,17.864832884590265 + 12/20 22:30:00,15.6,15.6,17.87244367649398 + 12/20 22:40:00,15.6,15.6,17.87987207224361 + 12/20 22:50:00,15.6,15.6,17.887067961842307 + 12/20 23:00:00,15.6,15.6,17.89417196427779 + 12/20 23:10:00,15.6,15.6,19.27310573020319 + 12/20 23:20:00,15.6,15.6,19.416927621831218 + 12/20 23:30:00,15.6,15.6,19.481077906501118 + 12/20 23:40:00,15.6,15.6,19.5317705151109 + 12/20 23:50:00,15.6,15.6,19.57287496464123 + 12/20 24:00:00,15.6,15.6,19.607517227133657 + 12/21 00:10:00,15.6,15.6,19.637366114800046 + 12/21 00:20:00,15.6,15.6,19.663859891640187 + 12/21 00:30:00,15.6,15.6,19.687707957254465 + 12/21 00:40:00,15.6,15.6,19.709577837495968 + 12/21 00:50:00,15.6,15.6,19.729805734454307 + 12/21 01:00:00,15.6,15.6,19.74864456612027 + 12/21 01:10:00,15.6,15.6,19.7661209066899 + 12/21 01:20:00,15.6,15.6,19.78243958155593 + 12/21 01:30:00,15.6,15.6,19.797782406150185 + 12/21 01:40:00,15.6,15.6,19.812295875092393 + 12/21 01:50:00,15.6,15.6,19.826032915718753 + 12/21 02:00:00,15.6,15.6,19.839039061233469 + 12/21 02:10:00,15.6,15.6,19.85157387743096 + 12/21 02:20:00,15.6,15.6,19.863598256091988 + 12/21 02:30:00,15.6,15.6,19.875258450182135 + 12/21 02:40:00,15.6,15.6,19.886532169190614 + 12/21 02:50:00,15.6,15.6,19.897445071660444 + 12/21 03:00:00,15.6,15.6,19.90801190870225 + 12/21 03:10:00,15.6,15.6,19.91959889988056 + 12/21 03:20:00,15.6,15.6,19.93098519545405 + 12/21 03:30:00,15.6,15.6,19.942116794069777 + 12/21 03:40:00,15.6,15.6,19.952935533026243 + 12/21 03:50:00,15.6,15.6,19.96353794657552 + 12/21 04:00:00,15.6,15.6,19.973811718747194 + 12/21 04:10:00,15.6,15.6,19.982918220954337 + 12/21 04:20:00,15.6,15.6,19.991883195789389 + 12/21 04:30:00,15.6,15.6,20.000608820712825 + 12/21 04:40:00,15.6,15.6,20.00919418944437 + 12/21 04:50:00,15.6,15.6,20.01749488126441 + 12/21 05:00:00,15.6,15.6,20.02567087400937 + 12/21 05:10:00,15.6,15.6,20.03506757497863 + 12/21 05:20:00,15.6,15.6,20.044139430113089 + 12/21 05:30:00,15.6,15.6,20.052878122433428 + 12/21 05:40:00,15.6,15.6,20.061238662189909 + 12/21 05:50:00,15.6,15.6,20.069275415917315 + 12/21 06:00:00,15.6,15.6,20.077100684223479 + 12/21 06:10:00,15.6,15.6,20.0814186921205 + 12/21 06:20:00,15.6,15.6,20.08536627597509 + 12/21 06:30:00,15.6,15.6,20.088892523741874 + 12/21 06:40:00,15.6,15.6,20.091965721636105 + 12/21 06:50:00,15.6,15.6,20.09476808939422 + 12/21 07:00:00,15.6,15.6,20.0972405528023 + 12/21 07:10:00,15.6,15.6,18.089019767208116 + 12/21 07:20:00,15.6,15.6,17.857840976215259 + 12/21 07:30:00,15.6,15.6,17.773672730125829 + 12/21 07:40:00,15.6,15.6,17.708821781476244 + 12/21 07:50:00,15.6,15.6,17.658384646513484 + 12/21 08:00:00,15.6,15.6,17.61722263456317 + 12/21 08:10:00,15.6,15.6,16.129945969815077 + 12/21 08:20:00,15.6,15.6,15.91200432304346 + 12/21 08:30:00,15.6,15.6,15.809700540662794 + 12/21 08:40:00,15.6,15.6,15.725625376570017 + 12/21 08:50:00,15.6,15.6,15.655107587896115 + 12/21 09:00:00,15.6,15.6,15.593544616968801 + 12/21 09:10:00,15.6,15.6,15.515213639630654 + 12/21 09:20:00,15.6,15.6,15.459839135282746 + 12/21 09:30:00,15.6,15.6,15.416440271200133 + 12/21 09:40:00,15.6,15.6,15.376726157284239 + 12/21 09:50:00,15.6,15.6,15.34029972624512 + 12/21 10:00:00,15.6,15.6,15.306851321936458 + 12/21 10:10:00,15.6,15.6,15.273080927269828 + 12/21 10:20:00,15.6,15.6,15.230598571569578 + 12/21 10:30:00,15.6,15.6,15.200437456487827 + 12/21 10:40:00,15.6,15.6,15.171830784584352 + 12/21 10:50:00,15.6,15.6,15.14456636769925 + 12/21 11:00:00,15.6,15.6,15.11854664222409 + 12/21 11:10:00,15.6,15.6,15.095594682396622 + 12/21 11:20:00,15.6,15.6,15.071763408014542 + 12/21 11:30:00,15.6,15.6,15.049315953041406 + 12/21 11:40:00,15.6,15.6,15.030256209710233 + 12/21 11:50:00,15.6,15.6,15.010507197163554 + 12/21 12:00:00,15.6,15.6,14.993136714602409 + 12/21 12:10:00,15.6,15.6,14.974915843277476 + 12/21 12:20:00,15.6,15.6,14.967383430798334 + 12/21 12:30:00,15.6,15.6,14.952290671247086 + 12/21 12:40:00,15.6,15.6,14.93472115062255 + 12/21 12:50:00,15.6,15.6,14.920414840007953 + 12/21 13:00:00,15.6,15.6,14.9058780545969 + 12/21 13:10:00,15.6,15.6,14.890454997345462 + 12/21 13:20:00,15.6,15.6,14.868586523805588 + 12/21 13:30:00,15.6,15.6,14.853727008925464 + 12/21 13:40:00,15.6,15.6,14.842048589802009 + 12/21 13:50:00,15.6,15.6,14.829163074877715 + 12/21 14:00:00,15.6,15.6,14.818818872949978 + 12/21 14:10:00,15.6,15.6,14.808222707688956 + 12/21 14:20:00,15.6,15.6,14.802548767711475 + 12/21 14:30:00,15.6,15.6,14.794305903139377 + 12/21 14:40:00,15.6,15.6,14.785520726770946 + 12/21 14:50:00,15.6,15.6,14.779403099122517 + 12/21 15:00:00,15.6,15.6,14.770630246518742 + 12/21 15:10:00,15.6,15.6,14.766679342938144 + 12/21 15:20:00,15.6,15.6,14.7639004809859 + 12/21 15:30:00,15.6,15.6,14.759232888488022 + 12/21 15:40:00,15.6,15.6,14.755250364533909 + 12/21 15:50:00,15.6,15.6,14.749519537664046 + 12/21 16:00:00,15.6,15.6,14.746856974947278 + 12/21 16:10:00,15.6,15.6,16.900740612510096 + 12/21 16:20:00,15.6,15.6,17.147840056623119 + 12/21 16:30:00,15.6,15.6,17.24588067645831 + 12/21 16:40:00,15.6,15.6,17.32017795759285 + 12/21 16:50:00,15.6,15.6,17.377599530153636 + 12/21 17:00:00,15.6,15.6,17.42594848211106 + 12/21 17:10:00,15.6,15.6,17.493493877767827 + 12/21 17:20:00,15.6,15.6,17.546943873365099 + 12/21 17:30:00,15.6,15.6,17.57835996080916 + 12/21 17:40:00,15.6,15.6,17.606816678960688 + 12/21 17:50:00,15.6,15.6,17.632547611718644 + 12/21 18:00:00,15.6,15.6,17.65573303779892 + 12/21 18:10:00,15.6,15.6,17.688948440954339 + 12/21 18:20:00,15.6,15.6,17.712924552541347 + 12/21 18:30:00,15.6,15.6,17.72958472713967 + 12/21 18:40:00,15.6,15.6,17.744720654484984 + 12/21 18:50:00,15.6,15.6,17.758635656145459 + 12/21 19:00:00,15.6,15.6,17.771479592151356 + 12/21 19:10:00,15.6,15.6,17.784401532312857 + 12/21 19:20:00,15.6,15.6,17.796546884093684 + 12/21 19:30:00,15.6,15.6,17.807942667340023 + 12/21 19:40:00,15.6,15.6,17.818632896166876 + 12/21 19:50:00,15.6,15.6,17.828726399867809 + 12/21 20:00:00,15.6,15.6,17.838311731639313 + 12/21 20:10:00,15.6,15.6,17.859604882093753 + 12/21 20:20:00,15.6,15.6,17.868070890266755 + 12/21 20:30:00,15.6,15.6,17.875709596390665 + 12/21 20:40:00,15.6,15.6,17.88292571199656 + 12/21 20:50:00,15.6,15.6,17.889772451915513 + 12/21 21:00:00,15.6,15.6,17.89625850178615 + 12/21 21:10:00,15.6,15.6,17.881561659952664 + 12/21 21:20:00,15.6,15.6,17.8937052604183 + 12/21 21:30:00,15.6,15.6,17.901176969798088 + 12/21 21:40:00,15.6,15.6,17.90841056614701 + 12/21 21:50:00,15.6,15.6,17.915434578855416 + 12/21 22:00:00,15.6,15.6,17.92225158991587 + 12/21 22:10:00,15.6,15.6,17.92721800808819 + 12/21 22:20:00,15.6,15.6,17.931853382155987 + 12/21 22:30:00,15.6,15.6,17.936325406954056 + 12/21 22:40:00,15.6,15.6,17.94063344591984 + 12/21 22:50:00,15.6,15.6,17.94475019009716 + 12/21 23:00:00,15.6,15.6,17.948737891138739 + 12/21 23:10:00,15.6,15.6,19.321439410573505 + 12/21 23:20:00,15.6,15.6,19.462735475493465 + 12/21 23:30:00,15.6,15.6,19.524887539175269 + 12/21 23:40:00,15.6,15.6,19.573856761098118 + 12/21 23:50:00,15.6,15.6,19.61325845875905 + 12/21 24:00:00,15.6,15.6,19.646257696257004 + 12/22 00:10:00,15.6,15.6,19.673841460600419 + 12/22 00:20:00,15.6,15.6,19.69825032783069 + 12/22 00:30:00,15.6,15.6,19.72007118872019 + 12/22 00:40:00,15.6,15.6,19.739943440889605 + 12/22 00:50:00,15.6,15.6,19.758197621165445 + 12/22 01:00:00,15.6,15.6,19.774998663891695 + 12/22 01:10:00,15.6,15.6,19.792632949309714 + 12/22 01:20:00,15.6,15.6,19.80929423756808 + 12/22 01:30:00,15.6,15.6,19.82518031595966 + 12/22 01:40:00,15.6,15.6,19.840377521415968 + 12/22 01:50:00,15.6,15.6,19.854894577857985 + 12/22 02:00:00,15.6,15.6,19.86894744647534 + 12/22 02:10:00,15.6,15.6,19.88123017705275 + 12/22 02:20:00,15.6,15.6,19.893037198051077 + 12/22 02:30:00,15.6,15.6,19.904462761549249 + 12/22 02:40:00,15.6,15.6,19.915460025866865 + 12/22 02:50:00,15.6,15.6,19.926150539859277 + 12/22 03:00:00,15.6,15.6,19.93658088245784 + 12/22 03:10:00,15.6,15.6,19.946378734722079 + 12/22 03:20:00,15.6,15.6,19.955486885047706 + 12/22 03:30:00,15.6,15.6,19.96370580113293 + 12/22 03:40:00,15.6,15.6,19.971076825911699 + 12/22 03:50:00,15.6,15.6,19.97774068179953 + 12/22 04:00:00,15.6,15.6,19.98369855202712 + 12/22 04:10:00,15.6,15.6,19.9900999112132 + 12/22 04:20:00,15.6,15.6,19.996363301298069 + 12/22 04:30:00,15.6,15.6,20.002609449247136 + 12/22 04:40:00,15.6,15.6,20.009052076104678 + 12/22 04:50:00,15.6,15.6,20.01559336273329 + 12/22 05:00:00,15.6,15.6,20.022208207005045 + 12/22 05:10:00,15.6,15.6,20.02766852805778 + 12/22 05:20:00,15.6,15.6,20.03274637946327 + 12/22 05:30:00,15.6,15.6,20.037504213604579 + 12/22 05:40:00,15.6,15.6,20.041854222311409 + 12/22 05:50:00,15.6,15.6,20.045804023650939 + 12/22 06:00:00,15.6,15.6,20.0493820668587 + 12/22 06:10:00,15.6,15.6,20.053662490856039 + 12/22 06:20:00,15.6,15.6,20.057851063543528 + 12/22 06:30:00,15.6,15.6,20.062030504874067 + 12/22 06:40:00,15.6,15.6,20.066188372665164 + 12/22 06:50:00,15.6,15.6,20.070327242079079 + 12/22 07:00:00,15.6,15.6,20.074395179399489 + 12/22 07:10:00,15.6,15.6,18.067541941236333 + 12/22 07:20:00,15.6,15.6,17.83533468002756 + 12/22 07:30:00,15.6,15.6,17.749868605736425 + 12/22 07:40:00,15.6,15.6,17.683492082240848 + 12/22 07:50:00,15.6,15.6,17.631278993749434 + 12/22 08:00:00,15.6,15.6,17.58823841605372 + 12/22 08:10:00,15.6,15.6,16.101505629767315 + 12/22 08:20:00,15.6,15.6,15.88310523325959 + 12/22 08:30:00,15.6,15.6,15.780671478035018 + 12/22 08:40:00,15.6,15.6,15.696798435641338 + 12/22 08:50:00,15.6,15.6,15.626722976247568 + 12/22 09:00:00,15.6,15.6,15.565802395813489 + 12/22 09:10:00,15.6,15.6,15.486397045035157 + 12/22 09:20:00,15.6,15.6,15.429709471223378 + 12/22 09:30:00,15.6,15.6,15.384761130982494 + 12/22 09:40:00,15.6,15.6,15.34316554257087 + 12/22 09:50:00,15.6,15.6,15.304508497058063 + 12/22 10:00:00,15.6,15.6,15.268478972291348 + 12/22 10:10:00,15.6,15.6,15.237869599534962 + 12/22 10:20:00,15.6,15.6,15.198525645941095 + 12/22 10:30:00,15.6,15.6,15.171665721059187 + 12/22 10:40:00,15.6,15.6,15.146532245892623 + 12/22 10:50:00,15.6,15.6,15.12297987680872 + 12/22 11:00:00,15.6,15.6,15.100915509427637 + 12/22 11:10:00,15.6,15.6,15.077363128689907 + 12/22 11:20:00,15.6,15.6,15.052453792692564 + 12/22 11:30:00,15.6,15.6,15.028478303470087 + 12/22 11:40:00,15.6,15.6,15.00876807529739 + 12/22 11:50:00,15.6,15.6,14.986562641113205 + 12/22 12:00:00,15.6,15.6,14.9680809960762 + 12/22 12:10:00,15.6,15.6,14.948776924310293 + 12/22 12:20:00,15.6,15.6,14.94097468476223 + 12/22 12:30:00,15.6,15.6,14.923702708369966 + 12/22 12:40:00,15.6,15.6,14.905641806388973 + 12/22 12:50:00,15.6,15.6,14.890562035110124 + 12/22 13:00:00,15.6,15.6,14.874496659502523 + 12/22 13:10:00,15.6,15.6,14.86023516360229 + 12/22 13:20:00,15.6,15.6,14.839971474322065 + 12/22 13:30:00,15.6,15.6,14.827393355820254 + 12/22 13:40:00,15.6,15.6,14.819061307824406 + 12/22 13:50:00,15.6,15.6,14.808048597448983 + 12/22 14:00:00,15.6,15.6,14.800922002414062 + 12/22 14:10:00,15.6,15.6,14.790620432805897 + 12/22 14:20:00,15.6,15.6,14.785475712538583 + 12/22 14:30:00,15.6,15.6,14.77530240009038 + 12/22 14:40:00,15.6,15.6,14.766172785243456 + 12/22 14:50:00,15.6,15.6,14.757606641604716 + 12/22 15:00:00,15.6,15.6,14.748463718615048 + 12/22 15:10:00,15.6,15.6,14.741664883989312 + 12/22 15:20:00,15.6,15.6,14.735755837203552 + 12/22 15:30:00,15.6,15.6,14.729832024179173 + 12/22 15:40:00,15.6,15.6,14.722929503124659 + 12/22 15:50:00,15.6,15.6,14.716847855854273 + 12/22 16:00:00,15.6,15.6,14.7130096684841 + 12/22 16:10:00,15.553753753753754,15.553753753753754,16.86155232762364 + 12/22 16:20:00,15.507507507507507,15.507507507507507,17.10997559801664 + 12/22 16:30:00,15.46126126126126,15.46126126126126,17.208491697505236 + 12/22 16:40:00,15.415015015015016,15.415015015015016,17.281694498662849 + 12/22 16:50:00,15.368768768768769,15.368768768768769,17.34035141452518 + 12/22 17:00:00,15.322522522522523,15.322522522522523,17.388514475274876 + 12/22 17:10:00,15.368768768768769,15.368768768768769,17.453610968855565 + 12/22 17:20:00,15.415015015015016,15.415015015015016,17.506454609657554 + 12/22 17:30:00,15.46126126126126,15.46126126126126,17.53660310936211 + 12/22 17:40:00,15.507507507507507,15.507507507507507,17.56371747888921 + 12/22 17:50:00,15.553753753753754,15.553753753753754,17.588225239449519 + 12/22 18:00:00,15.6,15.6,17.61033722426521 + 12/22 18:10:00,15.6,15.6,17.64477387893085 + 12/22 18:20:00,15.6,15.6,17.670093257946108 + 12/22 18:30:00,15.6,15.6,17.687976944386148 + 12/22 18:40:00,15.6,15.6,17.704457848978064 + 12/22 18:50:00,15.6,15.6,17.719713860400945 + 12/22 19:00:00,15.6,15.6,17.733857947339794 + 12/22 19:10:00,15.6,15.6,17.746253437398296 + 12/22 19:20:00,15.6,15.6,17.75758124810982 + 12/22 19:30:00,15.6,15.6,17.76820223942537 + 12/22 19:40:00,15.6,15.6,17.778165622165547 + 12/22 19:50:00,15.6,15.6,17.78757526007866 + 12/22 20:00:00,15.6,15.6,17.79652683221552 + 12/22 20:10:00,15.6,15.6,17.818070638669956 + 12/22 20:20:00,15.6,15.6,17.826689557004806 + 12/22 20:30:00,15.6,15.6,17.834599410482043 + 12/22 20:40:00,15.6,15.6,17.842077496614288 + 12/22 20:50:00,15.6,15.6,17.84918118145841 + 12/22 21:00:00,15.6,15.6,17.85598606429401 + 12/22 21:10:00,15.6,15.6,17.840276883310435 + 12/22 21:20:00,15.6,15.6,17.85146133885733 + 12/22 21:30:00,15.6,15.6,17.85810584024278 + 12/22 21:40:00,15.6,15.6,17.864600490989255 + 12/22 21:50:00,15.6,15.6,17.870949797236976 + 12/22 22:00:00,15.6,15.6,17.877146337620205 + 12/22 22:10:00,15.6,15.6,17.882768304989186 + 12/22 22:20:00,15.6,15.6,17.888102453966427 + 12/22 22:30:00,15.6,15.6,17.89320629431685 + 12/22 22:40:00,15.6,15.6,17.89808698832794 + 12/22 22:50:00,15.6,15.6,17.902708535372708 + 12/22 23:00:00,15.6,15.6,17.907118175480229 + 12/22 23:10:00,15.6,15.6,19.276041668560209 + 12/22 23:20:00,15.6,15.6,19.41727492422473 + 12/22 23:30:00,15.6,15.6,19.47924928967153 + 12/22 23:40:00,15.6,15.6,19.527988396481438 + 12/22 23:50:00,15.6,15.6,19.567306444500436 + 12/22 24:00:00,15.6,15.6,19.600300129414685 + 12/23 00:10:00,15.6,15.6,19.629011525013124 + 12/23 00:20:00,15.6,15.6,19.654323139404043 + 12/23 00:30:00,15.6,15.6,19.67688680891048 + 12/23 00:40:00,15.6,15.6,19.697327790105605 + 12/23 00:50:00,15.6,15.6,19.7159990573705 + 12/23 01:00:00,15.6,15.6,19.733170589854255 + 12/23 01:10:00,15.6,15.6,19.749881914805174 + 12/23 01:20:00,15.6,15.6,19.765521387111226 + 12/23 01:30:00,15.6,15.6,19.780229807179624 + 12/23 01:40:00,15.6,15.6,19.794185100534834 + 12/23 01:50:00,15.6,15.6,19.807413499044065 + 12/23 02:00:00,15.6,15.6,19.819992787757589 + 12/23 02:10:00,15.6,15.6,19.829956801120554 + 12/23 02:20:00,15.6,15.6,19.83939546442074 + 12/23 02:30:00,15.6,15.6,19.8484495989922 + 12/23 02:40:00,15.6,15.6,19.857096529565014 + 12/23 02:50:00,15.6,15.6,19.865353733612744 + 12/23 03:00:00,15.6,15.6,19.873265538443808 + 12/23 03:10:00,15.6,15.6,19.881553424048535 + 12/23 03:20:00,15.6,15.6,19.889513030701445 + 12/23 03:30:00,15.6,15.6,19.89716011827295 + 12/23 03:40:00,15.6,15.6,19.90447611305452 + 12/23 03:50:00,15.6,15.6,19.91150615859891 + 12/23 04:00:00,15.6,15.6,19.918182559825114 + 12/23 04:10:00,15.6,15.6,19.92506133441757 + 12/23 04:20:00,15.6,15.6,19.931718216473607 + 12/23 04:30:00,15.6,15.6,19.93815201062498 + 12/23 04:40:00,15.6,15.6,19.944374204144255 + 12/23 04:50:00,15.6,15.6,19.950332131347389 + 12/23 05:00:00,15.6,15.6,19.956128680083255 + 12/23 05:10:00,15.6,15.6,19.96215506867299 + 12/23 05:20:00,15.6,15.6,19.968007517329956 + 12/23 05:30:00,15.6,15.6,19.97369228997288 + 12/23 05:40:00,15.6,15.6,19.97917475176702 + 12/23 05:50:00,15.6,15.6,19.984483459792466 + 12/23 06:00:00,15.6,15.6,19.989709539426955 + 12/23 06:10:00,15.6,15.6,19.994309610277868 + 12/23 06:20:00,15.6,15.6,19.99882814596914 + 12/23 06:30:00,15.6,15.6,20.003175905881017 + 12/23 06:40:00,15.6,15.6,20.007330095276477 + 12/23 06:50:00,15.6,15.6,20.01142919288074 + 12/23 07:00:00,15.6,15.6,20.015389944256115 + 12/23 07:10:00,15.6,15.6,19.35801420541295 + 12/23 07:20:00,15.6,15.6,19.292012006903215 + 12/23 07:30:00,15.6,15.6,19.26651557197465 + 12/23 07:40:00,15.6,15.6,19.2471303916467 + 12/23 07:50:00,15.6,15.6,19.23180431755803 + 12/23 08:00:00,15.6,15.6,19.218874541128267 + 12/23 08:10:00,15.6,15.6,18.13326811604025 + 12/23 08:20:00,15.6,15.6,17.987463721281324 + 12/23 08:30:00,15.6,15.6,17.92605093942266 + 12/23 08:40:00,15.6,15.6,17.876771664939079 + 12/23 08:50:00,15.6,15.6,17.836578162860755 + 12/23 09:00:00,15.6,15.6,17.80245826324296 + 12/23 09:10:00,15.6,15.6,17.77107988160136 + 12/23 09:20:00,15.6,15.6,17.734141036940505 + 12/23 09:30:00,15.6,15.6,17.708559221965435 + 12/23 09:40:00,15.6,15.6,17.685084314760294 + 12/23 09:50:00,15.6,15.6,17.66328472851741 + 12/23 10:00:00,15.6,15.6,17.642903310953089 + 12/23 10:10:00,15.6,15.6,17.624047152092797 + 12/23 10:20:00,15.6,15.6,17.597576583808036 + 12/23 10:30:00,15.6,15.6,17.58077867596273 + 12/23 10:40:00,15.6,15.6,17.564915405091946 + 12/23 10:50:00,15.6,15.6,17.549872789523456 + 12/23 11:00:00,15.6,15.6,17.53562505293898 + 12/23 11:10:00,15.6,15.6,17.522677136193857 + 12/23 11:20:00,15.6,15.6,17.510290646644039 + 12/23 11:30:00,15.6,15.6,17.498391127503809 + 12/23 11:40:00,15.6,15.6,17.486916818327648 + 12/23 11:50:00,15.6,15.6,17.475847201727093 + 12/23 12:00:00,15.6,15.6,17.465141332579497 + 12/23 12:10:00,15.6,15.6,17.454557867870748 + 12/23 12:20:00,15.6,15.6,17.444430926105988 + 12/23 12:30:00,15.6,15.6,17.43465998828772 + 12/23 12:40:00,15.6,15.6,17.425226877521597 + 12/23 12:50:00,15.6,15.6,17.416072073155904 + 12/23 13:00:00,15.6,15.6,17.407167849224626 + 12/23 13:10:00,15.528528528528529,15.528528528528529,17.399025422180679 + 12/23 13:20:00,15.457057057057057,15.457057057057057,17.390900034635476 + 12/23 13:30:00,15.385585585585586,15.385585585585586,17.383072540816465 + 12/23 13:40:00,15.314114114114114,15.314114114114114,17.375685745111626 + 12/23 13:50:00,15.242642642642644,15.242642642642644,17.369155684853479 + 12/23 14:00:00,15.17117117117117,15.17117117117117,17.363565952554575 + 12/23 14:10:00,15.15015015015015,15.15015015015015,17.35804717910593 + 12/23 14:20:00,15.12912912912913,15.12912912912913,17.35263697435846 + 12/23 14:30:00,15.108108108108109,15.108108108108109,17.347394362763177 + 12/23 14:40:00,15.087087087087087,15.087087087087087,17.342279688664484 + 12/23 14:50:00,15.066066066066066,15.066066066066066,17.337753898986109 + 12/23 15:00:00,15.045045045045045,15.045045045045045,17.333821906797806 + 12/23 15:10:00,15.045045045045045,15.045045045045045,17.33103043765096 + 12/23 15:20:00,15.045045045045045,15.045045045045045,17.32923454347543 + 12/23 15:30:00,15.045045045045045,15.045045045045045,17.327244976763244 + 12/23 15:40:00,15.045045045045045,15.045045045045045,17.32480088977461 + 12/23 15:50:00,15.045045045045045,15.045045045045045,17.324478599184439 + 12/23 16:00:00,15.045045045045045,15.045045045045045,17.32456656723348 + 12/23 16:10:00,15.045045045045045,15.045045045045045,17.32448961361693 + 12/23 16:20:00,15.045045045045045,15.045045045045045,17.32414248019504 + 12/23 16:30:00,15.045045045045045,15.045045045045045,17.323552591770875 + 12/23 16:40:00,15.045045045045045,15.045045045045045,17.324836369121177 + 12/23 16:50:00,15.045045045045045,15.045045045045045,17.32636801292098 + 12/23 17:00:00,15.045045045045045,15.045045045045045,17.32797758987096 + 12/23 17:10:00,15.045045045045045,15.045045045045045,17.340889623765745 + 12/23 17:20:00,15.045045045045045,15.045045045045045,17.349533634297669 + 12/23 17:30:00,15.045045045045045,15.045045045045045,17.350358206203418 + 12/23 17:40:00,15.045045045045045,15.045045045045045,17.35126951585751 + 12/23 17:50:00,15.045045045045045,15.045045045045045,17.3521233765944 + 12/23 18:00:00,15.045045045045045,15.045045045045045,17.352724599679055 + 12/23 18:10:00,15.091291291291292,15.091291291291292,19.11364152977484 + 12/23 18:20:00,15.137537537537538,15.137537537537538,19.32106112957624 + 12/23 18:30:00,15.183783783783785,15.183783783783785,19.40237071208615 + 12/23 18:40:00,15.23003003003003,15.23003003003003,19.465419088253286 + 12/23 18:50:00,15.276276276276276,15.276276276276276,19.515392583099929 + 12/23 19:00:00,15.322522522522523,15.322522522522523,19.556717681324746 + 12/23 19:10:00,15.297297297297297,15.297297297297297,19.604278045544896 + 12/23 19:20:00,15.272072072072073,15.272072072072073,19.634787534307426 + 12/23 19:30:00,15.246846846846847,15.246846846846847,19.66124954685767 + 12/23 19:40:00,15.22162162162162,15.22162162162162,19.684764997001133 + 12/23 19:50:00,15.196396396396397,15.196396396396397,19.705804249693114 + 12/23 20:00:00,15.17117117117117,15.17117117117117,19.72468325616617 + 12/23 20:10:00,15.217417417417418,15.217417417417418,19.741959672998939 + 12/23 20:20:00,15.263663663663664,15.263663663663664,19.757917632196305 + 12/23 20:30:00,15.30990990990991,15.30990990990991,19.772845973544 + 12/23 20:40:00,15.356156156156157,15.356156156156157,19.786896218353005 + 12/23 20:50:00,15.402402402402402,15.402402402402402,19.800128827897674 + 12/23 21:00:00,15.448648648648648,15.448648648648648,19.812738281053265 + 12/23 21:10:00,15.427627627627628,15.427627627627628,19.801186205177659 + 12/23 21:20:00,15.406606606606607,15.406606606606607,19.811431663666065 + 12/23 21:30:00,15.385585585585586,15.385585585585586,19.821013259998084 + 12/23 21:40:00,15.364564564564564,15.364564564564564,19.829938889230726 + 12/23 21:50:00,15.343543543543543,15.343543543543543,19.838287654330409 + 12/23 22:00:00,15.322522522522523,15.322522522522523,19.84618510381943 + 12/23 22:10:00,15.322522522522523,15.322522522522523,19.854352067182039 + 12/23 22:20:00,15.322522522522523,15.322522522522523,19.86213833992979 + 12/23 22:30:00,15.322522522522523,15.322522522522523,19.869575525938946 + 12/23 22:40:00,15.322522522522523,15.322522522522523,19.876656006422189 + 12/23 22:50:00,15.322522522522523,15.322522522522523,19.883546031667945 + 12/23 23:00:00,15.322522522522523,15.322522522522523,19.890181198898213 + 12/23 23:10:00,15.322522522522523,15.322522522522523,19.897154953688707 + 12/23 23:20:00,15.322522522522523,15.322522522522523,19.903902390028955 + 12/23 23:30:00,15.322522522522523,15.322522522522523,19.910334562046559 + 12/23 23:40:00,15.322522522522523,15.322522522522523,19.91665633359772 + 12/23 23:50:00,15.322522522522523,15.322522522522523,19.922784665999396 + 12/23 24:00:00,15.322522522522523,15.322522522522523,19.92872399958696 + 12/24 00:10:00,15.322522522522523,15.322522522522523,19.933058040659384 + 12/24 00:20:00,15.322522522522523,15.322522522522523,19.9373013643433 + 12/24 00:30:00,15.322522522522523,15.322522522522523,19.94150214934385 + 12/24 00:40:00,15.322522522522523,15.322522522522523,19.945665700796345 + 12/24 00:50:00,15.322522522522523,15.322522522522523,19.949722167259205 + 12/24 01:00:00,15.322522522522523,15.322522522522523,19.953654604443196 + 12/24 01:10:00,15.297297297297297,15.297297297297297,19.957210849705356 + 12/24 01:20:00,15.272072072072073,15.272072072072073,19.96063110517774 + 12/24 01:30:00,15.246846846846847,15.246846846846847,19.963922985699118 + 12/24 01:40:00,15.22162162162162,15.22162162162162,19.967108758213624 + 12/24 01:50:00,15.196396396396397,15.196396396396397,19.97013511817606 + 12/24 02:00:00,15.17117117117117,15.17117117117117,19.972995072123 + 12/24 02:10:00,15.17117117117117,15.17117117117117,19.97695256788958 + 12/24 02:20:00,15.17117117117117,15.17117117117117,19.98089226913927 + 12/24 02:30:00,15.17117117117117,15.17117117117117,19.98474896847255 + 12/24 02:40:00,15.17117117117117,15.17117117117117,19.988529902473599 + 12/24 02:50:00,15.17117117117117,15.17117117117117,19.992228795322168 + 12/24 03:00:00,15.17117117117117,15.17117117117117,19.995759953089914 + 12/24 03:10:00,15.17117117117117,15.17117117117117,20.00047223133132 + 12/24 03:20:00,15.17117117117117,15.17117117117117,20.00492605108168 + 12/24 03:30:00,15.17117117117117,15.17117117117117,20.009253548648883 + 12/24 03:40:00,15.17117117117117,15.17117117117117,20.013440383080068 + 12/24 03:50:00,15.17117117117117,15.17117117117117,20.017435201127627 + 12/24 04:00:00,15.17117117117117,15.17117117117117,20.021408540649369 + 12/24 04:10:00,15.15015015015015,15.15015015015015,20.023443663208817 + 12/24 04:20:00,15.12912912912913,15.12912912912913,20.025521839217857 + 12/24 04:30:00,15.108108108108109,15.108108108108109,20.027521825559906 + 12/24 04:40:00,15.087087087087087,15.087087087087087,20.029421055584178 + 12/24 04:50:00,15.066066066066066,15.066066066066066,20.031267178594665 + 12/24 05:00:00,15.045045045045045,15.045045045045045,20.033056724472489 + 12/24 05:10:00,15.045045045045045,15.045045045045045,20.035495462226185 + 12/24 05:20:00,15.045045045045045,15.045045045045045,20.037720889100837 + 12/24 05:30:00,15.045045045045045,15.045045045045045,20.039841577830534 + 12/24 05:40:00,15.045045045045045,15.045045045045045,20.04186798921836 + 12/24 05:50:00,15.045045045045045,15.045045045045045,20.0438992712785 + 12/24 06:00:00,15.045045045045045,15.045045045045045,20.045911146975376 + 12/24 06:10:00,14.998798798798799,14.998798798798799,20.04748101709345 + 12/24 06:20:00,14.952552552552552,14.952552552552552,20.049052749431725 + 12/24 06:30:00,14.906306306306306,14.906306306306306,20.05040719582697 + 12/24 06:40:00,14.86006006006006,14.86006006006006,20.051744506832 + 12/24 06:50:00,14.813813813813815,14.813813813813815,20.052942550682944 + 12/24 07:00:00,14.767567567567568,14.767567567567568,20.053984416112223 + 12/24 07:10:00,14.767567567567568,14.767567567567568,20.077297989859905 + 12/24 07:20:00,14.767567567567568,14.767567567567568,20.07812236260531 + 12/24 07:30:00,14.767567567567568,14.767567567567568,20.079234876935624 + 12/24 07:40:00,14.767567567567568,14.767567567567568,20.08055705178115 + 12/24 07:50:00,14.767567567567568,14.767567567567568,20.081747248046559 + 12/24 08:00:00,14.767567567567568,14.767567567567568,20.082412308162345 + 12/24 08:10:00,14.696096096096096,14.696096096096096,18.68850795832632 + 12/24 08:20:00,14.624624624624625,14.624624624624625,18.52413983562912 + 12/24 08:30:00,14.553153153153153,14.553153153153153,18.459390676961126 + 12/24 08:40:00,14.481681681681682,14.481681681681682,18.407770121645244 + 12/24 08:50:00,14.41021021021021,14.41021021021021,18.365813936881187 + 12/24 09:00:00,14.338738738738739,14.338738738738739,18.33029167995387 + 12/24 09:10:00,14.267267267267269,14.267267267267269,18.29905112802701 + 12/24 09:20:00,14.195795795795796,14.195795795795796,18.262476886633949 + 12/24 09:30:00,14.124324324324326,14.124324324324326,18.237407582941118 + 12/24 09:40:00,14.052852852852853,14.052852852852853,18.214626687137458 + 12/24 09:50:00,13.981381381381383,13.981381381381383,18.19368748694697 + 12/24 10:00:00,13.90990990990991,13.90990990990991,18.174268966883415 + 12/24 10:10:00,13.981381381381383,13.981381381381383,18.1582407208771 + 12/24 10:20:00,14.052852852852853,14.052852852852853,18.135151846799823 + 12/24 10:30:00,14.124324324324326,14.124324324324326,18.122204456419046 + 12/24 10:40:00,14.195795795795796,14.195795795795796,18.11075351464155 + 12/24 10:50:00,14.267267267267269,14.267267267267269,18.100633143144905 + 12/24 11:00:00,14.338738738738739,14.338738738738739,18.091673862174255 + 12/24 11:10:00,14.41021021021021,14.41021021021021,18.082376705026605 + 12/24 11:20:00,14.481681681681682,14.481681681681682,18.070720396711459 + 12/24 11:30:00,14.553153153153153,14.553153153153153,18.059696425684789 + 12/24 11:40:00,14.624624624624625,14.624624624624625,18.048488443825556 + 12/24 11:50:00,14.696096096096096,14.696096096096096,18.037881065634399 + 12/24 12:00:00,14.767567567567568,14.767567567567568,18.02768628035532 + 12/24 12:10:00,14.788588588588589,14.788588588588589,18.017341776937085 + 12/24 12:20:00,14.809609609609609,14.809609609609609,18.008771440441053 + 12/24 12:30:00,14.83063063063063,14.83063063063063,18.00048927894249 + 12/24 12:40:00,14.85165165165165,14.85165165165165,17.992772091184869 + 12/24 12:50:00,14.872672672672673,14.872672672672673,17.98520279563172 + 12/24 13:00:00,14.893693693693694,14.893693693693694,17.978006229310457 + 12/24 13:10:00,14.893693693693694,14.893693693693694,17.971946832809235 + 12/24 13:20:00,14.893693693693694,14.893693693693694,17.966785959443489 + 12/24 13:30:00,14.893693693693694,14.893693693693694,17.961949297231766 + 12/24 13:40:00,14.893693693693694,14.893693693693694,17.957424415636063 + 12/24 13:50:00,14.893693693693694,14.893693693693694,17.952721651363324 + 12/24 14:00:00,14.893693693693694,14.893693693693694,17.947531002747366 + 12/24 14:10:00,14.91891891891892,14.91891891891892,17.94266213443973 + 12/24 14:20:00,14.944144144144144,14.944144144144144,17.937258771194395 + 12/24 14:30:00,14.96936936936937,14.96936936936937,17.93167454437068 + 12/24 14:40:00,14.994594594594595,14.994594594594595,17.92620835392779 + 12/24 14:50:00,15.01981981981982,15.01981981981982,17.92134147421919 + 12/24 15:00:00,15.045045045045045,15.045045045045045,17.917258795360714 + 12/24 15:10:00,15.01981981981982,15.01981981981982,17.91281878992934 + 12/24 15:20:00,14.994594594594594,14.994594594594594,17.90898172398117 + 12/24 15:30:00,14.96936936936937,14.96936936936937,17.905453349651557 + 12/24 15:40:00,14.944144144144144,14.944144144144144,17.90219914147576 + 12/24 15:50:00,14.91891891891892,14.91891891891892,17.899412423718954 + 12/24 16:00:00,14.893693693693694,14.893693693693694,17.897197546531208 + 12/24 16:10:00,14.893693693693694,14.893693693693694,19.315631619342044 + 12/24 16:20:00,14.893693693693694,14.893693693693694,19.465421544733564 + 12/24 16:30:00,14.893693693693694,14.893693693693694,19.529891668181013 + 12/24 16:40:00,14.893693693693694,14.893693693693694,19.580569396446273 + 12/24 16:50:00,14.893693693693694,14.893693693693694,19.621324912502325 + 12/24 17:00:00,14.893693693693694,14.893693693693694,19.65598438174125 + 12/24 17:10:00,14.93993993993994,14.93993993993994,19.684700493312737 + 12/24 17:20:00,14.986186186186187,14.986186186186187,19.71834313234882 + 12/24 17:30:00,15.032432432432433,15.032432432432433,19.740883736113515 + 12/24 17:40:00,15.078678678678678,15.078678678678678,19.761510901155558 + 12/24 17:50:00,15.124924924924925,15.124924924924925,19.780417862052823 + 12/24 18:00:00,15.17117117117117,15.17117117117117,19.79761962096408 + 12/24 18:10:00,15.196396396396397,15.196396396396397,19.81356218780782 + 12/24 18:20:00,15.22162162162162,15.22162162162162,19.84410848383098 + 12/24 18:30:00,15.246846846846847,15.246846846846847,19.856545456065509 + 12/24 18:40:00,15.272072072072073,15.272072072072073,19.86764489278666 + 12/24 18:50:00,15.297297297297297,15.297297297297297,19.87774224712361 + 12/24 19:00:00,15.322522522522523,15.322522522522523,19.88713983083427 + 12/24 19:10:00,15.343543543543543,15.343543543543543,19.896918296448399 + 12/24 19:20:00,15.364564564564564,15.364564564564564,19.906127742976218 + 12/24 19:30:00,15.385585585585586,15.385585585585586,19.914573992207477 + 12/24 19:40:00,15.406606606606607,15.406606606606607,19.922413820556636 + 12/24 19:50:00,15.427627627627628,15.427627627627628,19.92972824453151 + 12/24 20:00:00,15.448648648648648,15.448648648648648,19.936515542818748 + 12/24 20:10:00,15.473873873873874,15.473873873873874,19.943137580108638 + 12/24 20:20:00,15.499099099099098,15.499099099099098,19.949848594010093 + 12/24 20:30:00,15.524324324324324,15.524324324324324,19.956241841138977 + 12/24 20:40:00,15.54954954954955,15.54954954954955,19.962473071595768 + 12/24 20:50:00,15.574774774774774,15.574774774774774,19.96856570196605 + 12/24 21:00:00,15.6,15.6,19.974454966524566 + 12/24 21:10:00,15.6,15.6,19.957181519489283 + 12/24 21:20:00,15.6,15.6,19.96233867616457 + 12/24 21:30:00,15.6,15.6,19.96738819708662 + 12/24 21:40:00,15.6,15.6,19.9724818849593 + 12/24 21:50:00,15.6,15.6,19.977528929553765 + 12/24 22:00:00,15.6,15.6,19.98252173764166 + 12/24 22:10:00,15.6,15.6,19.98665049900869 + 12/24 22:20:00,15.6,15.6,19.990711950051485 + 12/24 22:30:00,15.6,15.6,19.99519874718131 + 12/24 22:40:00,15.6,15.6,19.999926629341087 + 12/24 22:50:00,15.6,15.6,20.00493702577375 + 12/24 23:00:00,15.6,15.6,20.010187149517173 + 12/24 23:10:00,15.6,15.6,20.0155744774245 + 12/24 23:20:00,15.6,15.6,20.020784606670334 + 12/24 23:30:00,15.6,15.6,20.025475476833067 + 12/24 23:40:00,15.6,15.6,20.029646117969507 + 12/24 23:50:00,15.6,15.6,20.03329530633078 + 12/24 24:00:00,15.6,15.6,20.036413934759766 + 12/25 00:10:00,15.6,15.6,20.039966081456368 + 12/25 00:20:00,15.6,15.6,20.043677342776215 + 12/25 00:30:00,15.6,15.6,20.047652183108136 + 12/25 00:40:00,15.6,15.6,20.05192289216391 + 12/25 00:50:00,15.6,15.6,20.05642961550985 + 12/25 01:00:00,15.6,15.6,20.06112138955589 + 12/25 01:10:00,15.6,15.6,20.064265971714798 + 12/25 01:20:00,15.6,15.6,20.067134170056034 + 12/25 01:30:00,15.6,15.6,20.069591511754078 + 12/25 01:40:00,15.6,15.6,20.071611865048316 + 12/25 01:50:00,15.6,15.6,20.073141532050025 + 12/25 02:00:00,15.6,15.6,20.074386742270485 + 12/25 02:10:00,15.6,15.6,20.077663564436937 + 12/25 02:20:00,15.6,15.6,20.0808732467933 + 12/25 02:30:00,15.6,15.6,20.0842846539546 + 12/25 02:40:00,15.6,15.6,20.087762628859168 + 12/25 02:50:00,15.6,15.6,20.091488241042918 + 12/25 03:00:00,15.6,15.6,20.09538800847575 + 12/25 03:10:00,15.6,15.6,20.098557512762559 + 12/25 03:20:00,15.6,15.6,20.101465755610655 + 12/25 03:30:00,15.6,15.6,20.103935656826747 + 12/25 03:40:00,15.6,15.6,20.10604192689452 + 12/25 03:50:00,15.6,15.6,20.107832918775896 + 12/25 04:00:00,15.6,15.6,20.109294050823985 + 12/25 04:10:00,15.6,15.6,20.10980192070568 + 12/25 04:20:00,15.6,15.6,20.110455262991409 + 12/25 04:30:00,15.6,15.6,20.1111694009375 + 12/25 04:40:00,15.6,15.6,20.11211931206898 + 12/25 04:50:00,15.6,15.6,20.11317324396517 + 12/25 05:00:00,15.6,15.6,20.114307305129285 + 12/25 05:10:00,15.6,15.6,20.11823855289128 + 12/25 05:20:00,15.6,15.6,20.12229731836099 + 12/25 05:30:00,15.6,15.6,20.126650612354014 + 12/25 05:40:00,15.6,15.6,20.131217915352044 + 12/25 05:50:00,15.6,15.6,20.135951602527997 + 12/25 06:00:00,15.6,15.6,20.14083308848699 + 12/25 06:10:00,15.6,15.6,20.14302737292494 + 12/25 06:20:00,15.6,15.6,20.145260645701183 + 12/25 06:30:00,15.6,15.6,20.14748386910853 + 12/25 06:40:00,15.6,15.6,20.14965864108738 + 12/25 06:50:00,15.6,15.6,20.151801623124478 + 12/25 07:00:00,15.6,15.6,20.153843866892509 + 12/25 07:10:00,15.6,15.6,20.178807415595068 + 12/25 07:20:00,15.6,15.6,20.181118011301263 + 12/25 07:30:00,15.6,15.6,20.183341381183955 + 12/25 07:40:00,15.6,15.6,20.18548246824291 + 12/25 07:50:00,15.6,15.6,20.1873227246516 + 12/25 08:00:00,15.6,15.6,20.188692133822167 + 12/25 08:10:00,15.6,15.6,18.786129624506186 + 12/25 08:20:00,15.6,15.6,18.620666908922784 + 12/25 08:30:00,15.6,15.6,18.55535448834604 + 12/25 08:40:00,15.6,15.6,18.503518978831737 + 12/25 08:50:00,15.6,15.6,18.462057365318477 + 12/25 09:00:00,15.6,15.6,18.427713515917014 + 12/25 09:10:00,15.6,15.6,18.399686581648575 + 12/25 09:20:00,15.6,15.6,18.36664778260202 + 12/25 09:30:00,15.6,15.6,18.34528773021377 + 12/25 09:40:00,15.6,15.6,18.326104279592025 + 12/25 09:50:00,15.6,15.6,18.30826042475776 + 12/25 10:00:00,15.6,15.6,18.29146905647037 + 12/25 10:10:00,15.6,15.6,18.275930308329117 + 12/25 10:20:00,15.6,15.6,18.251900187639174 + 12/25 10:30:00,15.6,15.6,18.237223703915036 + 12/25 10:40:00,15.6,15.6,18.22316652605653 + 12/25 10:50:00,15.6,15.6,18.20987434284168 + 12/25 11:00:00,15.6,15.6,18.197479022391329 + 12/25 11:10:00,15.6,15.6,18.184968946665216 + 12/25 11:20:00,15.6,15.6,18.17331865712777 + 12/25 11:30:00,15.6,15.6,18.162386410561127 + 12/25 11:40:00,15.6,15.6,18.152465202460634 + 12/25 11:50:00,15.6,15.6,18.1438871259967 + 12/25 12:00:00,15.6,15.6,18.136318582086206 + 12/25 12:10:00,15.6,15.6,18.12975394959609 + 12/25 12:20:00,15.6,15.6,18.124151760704586 + 12/25 12:30:00,15.6,15.6,18.119316829511889 + 12/25 12:40:00,15.6,15.6,18.114616278033127 + 12/25 12:50:00,15.6,15.6,18.10959666864884 + 12/25 13:00:00,15.6,15.6,18.103860605856107 + 12/25 13:10:00,15.6,15.6,18.09712623246308 + 12/25 13:20:00,15.6,15.6,18.089448392928778 + 12/25 13:30:00,15.6,15.6,18.081036295554996 + 12/25 13:40:00,15.6,15.6,18.07225446799466 + 12/25 13:50:00,15.6,15.6,18.063788101904906 + 12/25 14:00:00,15.6,15.6,18.056037969992468 + 12/25 14:10:00,15.6,15.6,18.047849683665786 + 12/25 14:20:00,15.6,15.6,18.04042541436648 + 12/25 14:30:00,15.6,15.6,18.033552004634996 + 12/25 14:40:00,15.6,15.6,18.027269688959465 + 12/25 14:50:00,15.6,15.6,18.021466960827924 + 12/25 15:00:00,15.6,15.6,18.016150449491385 + 12/25 15:10:00,15.6,15.6,18.013177447383769 + 12/25 15:20:00,15.6,15.6,18.010753051740765 + 12/25 15:30:00,15.6,15.6,18.008851900563387 + 12/25 15:40:00,15.6,15.6,18.007565721360498 + 12/25 15:50:00,15.6,15.6,18.00668274199956 + 12/25 16:00:00,15.6,15.6,18.006055963050984 + 12/25 16:10:00,15.6,15.6,19.432815809467077 + 12/25 16:20:00,15.6,15.6,19.58178906656149 + 12/25 16:30:00,15.6,15.6,19.64509625591775 + 12/25 16:40:00,15.6,15.6,19.6943139363659 + 12/25 16:50:00,15.6,15.6,19.7338872976354 + 12/25 17:00:00,15.6,15.6,19.766894461353425 + 12/25 17:10:00,15.6,15.6,19.795800327893347 + 12/25 17:20:00,15.6,15.6,19.829742293126207 + 12/25 17:30:00,15.6,15.6,19.852459877084219 + 12/25 17:40:00,15.6,15.6,19.873085193574235 + 12/25 17:50:00,15.6,15.6,19.89217683312283 + 12/25 18:00:00,15.6,15.6,19.90942866487986 + 12/25 18:10:00,15.6,15.6,19.923670014741654 + 12/25 18:20:00,15.6,15.6,19.955724533540477 + 12/25 18:30:00,15.6,15.6,19.968966127804518 + 12/25 18:40:00,15.6,15.6,19.981126552961077 + 12/25 18:50:00,15.6,15.6,19.99231562613313 + 12/25 19:00:00,15.6,15.6,20.00274044370342 + 12/25 19:10:00,15.6,15.6,20.010730013036218 + 12/25 19:20:00,15.6,15.6,20.018126898744059 + 12/25 19:30:00,15.6,15.6,20.025004900340436 + 12/25 19:40:00,15.6,15.6,20.031504874449106 + 12/25 19:50:00,15.6,15.6,20.03760619386192 + 12/25 20:00:00,15.6,15.6,20.043349311826586 + 12/25 20:10:00,15.6,15.6,20.049676660968495 + 12/25 20:20:00,15.6,15.6,20.055974329993114 + 12/25 20:30:00,15.6,15.6,20.06198273060346 + 12/25 20:40:00,15.6,15.6,20.06799834802431 + 12/25 20:50:00,15.6,15.6,20.07368339871641 + 12/25 21:00:00,15.6,15.6,20.079367172857265 + 12/25 21:10:00,15.6,15.6,20.062315292521509 + 12/25 21:20:00,15.6,15.6,20.06772233005767 + 12/25 21:30:00,15.6,15.6,20.072948834750919 + 12/25 21:40:00,15.6,15.6,20.07794840913112 + 12/25 21:50:00,15.6,15.6,20.08274450349192 + 12/25 22:00:00,15.6,15.6,20.087272792222167 + 12/25 22:10:00,15.6,15.6,20.092130776351757 + 12/25 22:20:00,15.6,15.6,20.096848981347596 + 12/25 22:30:00,15.6,15.6,20.101413403428564 + 12/25 22:40:00,15.6,15.6,20.105835763317246 + 12/25 22:50:00,15.6,15.6,20.110067558092376 + 12/25 23:00:00,15.6,15.6,20.114181551726316 + 12/25 23:10:00,15.6,15.6,20.11641482725667 + 12/25 23:20:00,15.6,15.6,20.118548862347067 + 12/25 23:30:00,15.6,15.6,20.120595623332208 + 12/25 23:40:00,15.6,15.6,20.1225244620644 + 12/25 23:50:00,15.6,15.6,20.124332784578344 + 12/25 24:00:00,15.6,15.6,20.126133045431634 + 12/26 00:10:00,15.6,15.6,20.13021142900569 + 12/26 00:20:00,15.6,15.6,20.13408515638908 + 12/26 00:30:00,15.6,15.6,20.137864829653155 + 12/26 00:40:00,15.6,15.6,20.14152214771409 + 12/26 00:50:00,15.6,15.6,20.145207752591469 + 12/26 01:00:00,15.6,15.6,20.148826149300726 + 12/26 01:10:00,15.6,15.6,20.15192871568554 + 12/26 01:20:00,15.6,15.6,20.154909871644429 + 12/26 01:30:00,15.6,15.6,20.157732174906266 + 12/26 01:40:00,15.6,15.6,20.160540295777744 + 12/26 01:50:00,15.6,15.6,20.16329411924132 + 12/26 02:00:00,15.6,15.6,20.165982385551293 + 12/26 02:10:00,15.6,15.6,20.169257897282497 + 12/26 02:20:00,15.6,15.6,20.172420033321794 + 12/26 02:30:00,15.6,15.6,20.17561118780833 + 12/26 02:40:00,15.6,15.6,20.178835754488256 + 12/26 02:50:00,15.6,15.6,20.18206548140029 + 12/26 03:00:00,15.6,15.6,20.185297723573578 + 12/26 03:10:00,15.6,15.6,20.185474061336636 + 12/26 03:20:00,15.6,15.6,20.185624543487984 + 12/26 03:30:00,15.6,15.6,20.18578972550199 + 12/26 03:40:00,15.6,15.6,20.185916607757055 + 12/26 03:50:00,15.6,15.6,20.18599782756022 + 12/26 04:00:00,15.6,15.6,20.186019631951998 + 12/26 04:10:00,15.6,15.6,20.189654069367518 + 12/26 04:20:00,15.6,15.6,20.19331438499105 + 12/26 04:30:00,15.6,15.6,20.196906026004908 + 12/26 04:40:00,15.6,15.6,20.200430582301256 + 12/26 04:50:00,15.6,15.6,20.203892344631244 + 12/26 05:00:00,15.6,15.6,20.20719925294501 + 12/26 05:10:00,15.6,15.6,20.207993602124505 + 12/26 05:20:00,15.6,15.6,20.208756586286016 + 12/26 05:30:00,15.6,15.6,20.209543739596197 + 12/26 05:40:00,15.6,15.6,20.210343291471394 + 12/26 05:50:00,15.6,15.6,20.21109047812488 + 12/26 06:00:00,15.6,15.6,20.211895542186615 + 12/26 06:10:00,15.6,15.6,20.21397307950813 + 12/26 06:20:00,15.6,15.6,20.216084993615767 + 12/26 06:30:00,15.6,15.6,20.218142638987819 + 12/26 06:40:00,15.6,15.6,20.220119654920674 + 12/26 06:50:00,15.6,15.6,20.222039867132467 + 12/26 07:00:00,15.6,15.6,20.22396652701185 + 12/26 07:10:00,15.6,15.6,18.22090644203654 + 12/26 07:20:00,15.6,15.6,17.988363278374796 + 12/26 07:30:00,15.6,15.6,17.90171377685337 + 12/26 07:40:00,15.6,15.6,17.834106642674138 + 12/26 07:50:00,15.6,15.6,17.780801303323906 + 12/26 08:00:00,15.6,15.6,17.736688885200146 + 12/26 08:10:00,15.6,15.6,16.253011220166785 + 12/26 08:20:00,15.6,15.6,16.0350699963979 + 12/26 08:30:00,15.6,15.6,15.932248133069424 + 12/26 08:40:00,15.6,15.6,15.847583809730159 + 12/26 08:50:00,15.6,15.6,15.776276969379485 + 12/26 09:00:00,15.6,15.6,15.713499688802557 + 12/26 09:10:00,15.6,15.6,15.630158407949426 + 12/26 09:20:00,15.6,15.6,15.56919770492593 + 12/26 09:30:00,15.6,15.6,15.519430120801795 + 12/26 09:40:00,15.6,15.6,15.472707037281028 + 12/26 09:50:00,15.6,15.6,15.428872998862609 + 12/26 10:00:00,15.6,15.6,15.387770435264983 + 12/26 10:10:00,15.6,15.6,15.348579967282753 + 12/26 10:20:00,15.6,15.6,15.30063782515732 + 12/26 10:30:00,15.6,15.6,15.264900947648375 + 12/26 10:40:00,15.6,15.6,15.230645961136423 + 12/26 10:50:00,15.6,15.6,15.197650912553895 + 12/26 11:00:00,15.6,15.6,15.16584044393328 + 12/26 11:10:00,15.6,15.6,15.135569324196043 + 12/26 11:20:00,15.6,15.6,15.102755954544099 + 12/26 11:30:00,15.6,15.6,15.0746571546255 + 12/26 11:40:00,15.6,15.6,15.04958706968644 + 12/26 11:50:00,15.6,15.6,15.022863018723776 + 12/26 12:00:00,15.6,15.6,14.998721621988308 + 12/26 12:10:00,15.6,15.6,14.974831502514905 + 12/26 12:20:00,15.6,15.6,14.962358424620556 + 12/26 12:30:00,15.6,15.6,14.942298860951306 + 12/26 12:40:00,15.6,15.6,14.920639214826436 + 12/26 12:50:00,15.6,15.6,14.90287930105611 + 12/26 13:00:00,15.6,15.6,14.885097699538444 + 12/26 13:10:00,15.6,15.6,14.866750900975042 + 12/26 13:20:00,15.557957957957957,15.557957957957957,14.841895953329836 + 12/26 13:30:00,15.46126126126126,15.46126126126126,14.82397992717921 + 12/26 13:40:00,15.364564564564564,15.364564564564564,14.81006015584118 + 12/26 13:50:00,15.267867867867868,15.267867867867868,14.79369813032305 + 12/26 14:00:00,15.17117117117117,15.17117117117117,14.78068135306726 + 12/26 14:10:00,15.15015015015015,15.15015015015015,14.766312245911982 + 12/26 14:20:00,15.12912912912913,15.12912912912913,14.758203618609903 + 12/26 14:30:00,15.108108108108109,15.108108108108109,14.746227930951753 + 12/26 14:40:00,15.087087087087087,15.087087087087087,14.735606132758639 + 12/26 14:50:00,15.066066066066066,15.066066066066066,14.726460875751512 + 12/26 15:00:00,15.045045045045045,15.045045045045045,14.716849698936599 + 12/26 15:10:00,15.045045045045045,15.045045045045045,14.71084673394121 + 12/26 15:20:00,15.045045045045045,15.045045045045045,14.706065816330558 + 12/26 15:30:00,15.045045045045045,15.045045045045045,14.701582262994915 + 12/26 15:40:00,15.045045045045045,15.045045045045045,14.696345621929043 + 12/26 15:50:00,15.045045045045045,15.045045045045045,14.692050654076404 + 12/26 16:00:00,15.045045045045045,15.045045045045045,14.690041036773288 + 12/26 16:05:00,15.137537537537538,15.137537537537538,16.847108509333457 + 12/26 16:10:00,15.137537537537538,15.137537537537538,16.84623013296951 + 12/26 16:20:00,15.23003003003003,15.23003003003003,17.09671901783157 + 12/26 16:30:00,15.322522522522523,15.322522522522523,17.197275726322255 + 12/26 16:40:00,15.415015015015016,15.415015015015016,17.272609399045235 + 12/26 16:50:00,15.507507507507507,15.507507507507507,17.334627141963027 + 12/26 17:00:00,15.6,15.6,17.386665095439239 + 12/26 17:10:00,15.6,15.6,17.455756076501574 + 12/26 17:20:00,15.6,15.6,17.514101268094789 + 12/26 17:30:00,15.6,15.6,17.549076945495174 + 12/26 17:40:00,15.6,15.6,17.58058832836126 + 12/26 17:50:00,15.6,15.6,17.60921564295806 + 12/26 18:00:00,15.6,15.6,17.635086149060088 + 12/26 18:10:00,15.6,15.6,17.670762871346587 + 12/26 18:20:00,15.6,15.6,17.696968037904076 + 12/26 18:30:00,15.6,15.6,17.71573668153409 + 12/26 18:40:00,15.6,15.6,17.732821498487654 + 12/26 18:50:00,15.6,15.6,17.748631103523058 + 12/26 19:00:00,15.6,15.6,17.763313952611385 + 12/26 19:10:00,15.6,15.6,17.777360008402007 + 12/26 19:20:00,15.6,15.6,17.790556604866667 + 12/26 19:30:00,15.6,15.6,17.802960350886104 + 12/26 19:40:00,15.6,15.6,17.814662519994326 + 12/26 19:50:00,15.6,15.6,17.825771708422225 + 12/26 20:00:00,15.6,15.6,17.836322702114058 + 12/26 20:10:00,15.6,15.6,17.86128859066254 + 12/26 20:20:00,15.6,15.6,17.873440013836306 + 12/26 20:30:00,15.6,15.6,17.884771862867379 + 12/26 20:40:00,15.6,15.6,17.89570279433697 + 12/26 20:50:00,15.6,15.6,17.90630042528247 + 12/26 21:00:00,15.6,15.6,17.916521234795988 + 12/26 21:10:00,15.6,15.6,17.90310137779761 + 12/26 21:20:00,15.6,15.6,17.9163613896086 + 12/26 21:30:00,15.6,15.6,17.92488120326704 + 12/26 21:40:00,15.6,15.6,17.933076508988884 + 12/26 21:50:00,15.6,15.6,17.94095687038586 + 12/26 22:00:00,15.6,15.6,17.94867920903715 + 12/26 22:10:00,15.6,15.6,17.954345272108186 + 12/26 22:20:00,15.6,15.6,17.95972461211447 + 12/26 22:30:00,15.6,15.6,17.964898269782507 + 12/26 22:40:00,15.6,15.6,17.969968729982459 + 12/26 22:50:00,15.6,15.6,17.97490349369823 + 12/26 23:00:00,15.6,15.6,17.979707113113237 + 12/26 23:10:00,15.6,15.6,19.35251461386646 + 12/26 23:20:00,15.6,15.6,19.493714480010867 + 12/26 23:30:00,15.6,15.6,19.556014431161147 + 12/26 23:40:00,15.6,15.6,19.605153125358084 + 12/26 23:50:00,15.6,15.6,19.644688108781389 + 12/26 24:00:00,15.6,15.6,19.67781675830728 + 12/27 00:10:00,15.6,15.6,19.708973417261658 + 12/27 00:20:00,15.6,15.6,19.736792972490254 + 12/27 00:30:00,15.6,15.6,19.76194863550038 + 12/27 00:40:00,15.6,15.6,19.784960956036039 + 12/27 00:50:00,15.6,15.6,19.806214227194105 + 12/27 01:00:00,15.6,15.6,19.82592690259703 + 12/27 01:10:00,15.6,15.6,19.843679600511036 + 12/27 01:20:00,15.6,15.6,19.86034797375879 + 12/27 01:30:00,15.6,15.6,19.875989500974837 + 12/27 01:40:00,15.6,15.6,19.890787564332883 + 12/27 01:50:00,15.6,15.6,19.90478602249331 + 12/27 02:00:00,15.6,15.6,19.918096912351208 + 12/27 02:10:00,15.6,15.6,19.930588044251004 + 12/27 02:20:00,15.6,15.6,19.942608236170647 + 12/27 02:30:00,15.6,15.6,19.95421898995631 + 12/27 02:40:00,15.6,15.6,19.96544107798188 + 12/27 02:50:00,15.6,15.6,19.97626845246629 + 12/27 03:00:00,15.6,15.6,19.986860579925854 + 12/27 03:10:00,15.6,15.6,19.99437767233306 + 12/27 03:20:00,15.6,15.6,20.001585940537145 + 12/27 03:30:00,15.6,15.6,20.008498988832288 + 12/27 03:40:00,15.6,15.6,20.015032314598167 + 12/27 03:50:00,15.6,15.6,20.02140371818219 + 12/27 04:00:00,15.6,15.6,20.027530295683197 + 12/27 04:10:00,15.6,15.6,20.035967447700693 + 12/27 04:20:00,15.6,15.6,20.044090759618915 + 12/27 04:30:00,15.6,15.6,20.05185938827226 + 12/27 04:40:00,15.6,15.6,20.059405258988208 + 12/27 04:50:00,15.6,15.6,20.066723503265338 + 12/27 05:00:00,15.6,15.6,20.073806357961037 + 12/27 05:10:00,15.6,15.6,20.079645291247866 + 12/27 05:20:00,15.6,15.6,20.085286766403617 + 12/27 05:30:00,15.6,15.6,20.09077018695503 + 12/27 05:40:00,15.6,15.6,20.09616047197505 + 12/27 05:50:00,15.6,15.6,20.101403756075027 + 12/27 06:00:00,15.6,15.6,20.10650540585922 + 12/27 06:10:00,15.6,15.6,20.113111648060597 + 12/27 06:20:00,15.6,15.6,20.11953385961502 + 12/27 06:30:00,15.6,15.6,20.125921215648086 + 12/27 06:40:00,15.6,15.6,20.1321946439529 + 12/27 06:50:00,15.6,15.6,20.138365440202258 + 12/27 07:00:00,15.6,15.6,20.144430098004219 + 12/27 07:10:00,15.6,15.6,18.14033725150252 + 12/27 07:20:00,15.6,15.6,17.910529961756067 + 12/27 07:30:00,15.6,15.6,17.826758372955529 + 12/27 07:40:00,15.6,15.6,17.761759597101855 + 12/27 07:50:00,15.6,15.6,17.710637702266419 + 12/27 08:00:00,15.6,15.6,17.668124552407808 + 12/27 08:10:00,15.6,15.6,16.18023630081778 + 12/27 08:20:00,15.6,15.6,15.960531316688386 + 12/27 08:30:00,15.6,15.6,15.855845086592853 + 12/27 08:40:00,15.6,15.6,15.76891334809351 + 12/27 08:50:00,15.6,15.6,15.69537424316248 + 12/27 09:00:00,15.6,15.6,15.630690915196223 + 12/27 09:10:00,15.6,15.6,15.54481261966239 + 12/27 09:20:00,15.6,15.6,15.481472981766615 + 12/27 09:30:00,15.6,15.6,15.429512375491717 + 12/27 09:40:00,15.6,15.6,15.380644475883264 + 12/27 09:50:00,15.6,15.6,15.334481726817087 + 12/27 10:00:00,15.6,15.6,15.290773201878017 + 12/27 10:10:00,15.6,15.6,15.251714014989347 + 12/27 10:20:00,15.6,15.6,15.20369332540027 + 12/27 10:30:00,15.6,15.6,15.16780252338625 + 12/27 10:40:00,15.6,15.6,15.133450008919868 + 12/27 10:50:00,15.6,15.6,15.100637727955146 + 12/27 11:00:00,15.6,15.6,15.070230995751979 + 12/27 11:10:00,15.6,15.6,15.041542356237775 + 12/27 11:20:00,15.465465465465466,15.465465465465466,15.00742207701083 + 12/27 11:30:00,15.322522522522523,15.322522522522523,14.980465855838102 + 12/27 11:40:00,15.17957957957958,15.17957957957958,14.952168302651663 + 12/27 11:50:00,15.036636636636637,15.036636636636637,14.926442587388822 + 12/27 12:00:00,14.893693693693694,14.893693693693694,14.89969756515941 + 12/27 12:10:00,14.8012012012012,14.8012012012012,14.87506618408531 + 12/27 12:20:00,14.70870870870871,14.70870870870871,14.861385151247353 + 12/27 12:30:00,14.616216216216217,14.616216216216217,14.838927775530152 + 12/27 12:40:00,14.523723723723723,14.523723723723723,14.819320969150473 + 12/27 12:50:00,14.431231231231232,14.431231231231232,14.798158459971332 + 12/27 13:00:00,14.338738738738739,14.338738738738739,14.779947877327024 + 12/27 13:10:00,14.267267267267269,14.267267267267269,14.763123693993455 + 12/27 13:20:00,14.195795795795796,14.195795795795796,14.735438410205651 + 12/27 13:30:00,14.124324324324326,14.124324324324326,14.721087599699059 + 12/27 13:40:00,14.052852852852853,14.052852852852853,14.704270809546865 + 12/27 13:50:00,13.981381381381383,13.981381381381383,14.691545963615394 + 12/27 14:00:00,13.90990990990991,13.90990990990991,14.676324431534999 + 12/27 14:10:00,13.842642642642645,13.842642642642645,14.664997648741443 + 12/27 14:20:00,13.775375375375376,13.775375375375376,14.655339548198345 + 12/27 14:30:00,13.708108108108109,13.708108108108109,14.64499609442997 + 12/27 14:40:00,13.640840840840842,13.640840840840842,14.634241871849375 + 12/27 14:50:00,13.573573573573574,13.573573573573574,14.625074638360657 + 12/27 15:00:00,13.506306306306307,13.506306306306307,14.617686179712957 + 12/27 15:10:00,13.573573573573574,13.573573573573574,14.610900236118223 + 12/27 15:20:00,13.640840840840842,13.640840840840842,14.612428541719498 + 12/27 15:30:00,13.708108108108109,13.708108108108109,14.608506939978473 + 12/27 15:40:00,13.775375375375376,13.775375375375376,14.608423982458666 + 12/27 15:50:00,13.842642642642645,13.842642642642645,14.607896457843913 + 12/27 16:00:00,13.90990990990991,13.90990990990991,14.607334152827625 + 12/27 16:05:00,13.981381381381383,13.981381381381383,16.773202746636536 + 12/27 16:10:00,13.981381381381383,13.981381381381383,16.77244190867217 + 12/27 16:20:00,14.052852852852853,14.052852852852853,17.02077512376578 + 12/27 16:30:00,14.124324324324326,14.124324324324326,17.12118839483732 + 12/27 16:40:00,14.195795795795796,14.195795795795796,17.198497007823286 + 12/27 16:50:00,14.267267267267269,14.267267267267269,17.257775008594828 + 12/27 17:00:00,14.338738738738739,14.338738738738739,17.306573585623079 + 12/27 17:10:00,14.41021021021021,14.41021021021021,17.376025516818467 + 12/27 17:20:00,14.481681681681682,14.481681681681682,17.433638552389036 + 12/27 17:30:00,14.553153153153153,14.553153153153153,17.46733029956695 + 12/27 17:40:00,14.624624624624625,14.624624624624625,17.49794589631521 + 12/27 17:50:00,14.696096096096096,14.696096096096096,17.52591372724756 + 12/27 18:00:00,14.767567567567568,14.767567567567568,17.550585816256495 + 12/27 18:10:00,14.834834834834835,14.834834834834835,17.58579785396448 + 12/27 18:20:00,14.902102102102102,14.902102102102102,17.61301478910091 + 12/27 18:30:00,14.96936936936937,14.96936936936937,17.632785167202035 + 12/27 18:40:00,15.036636636636637,15.036636636636637,17.6510679074489 + 12/27 18:50:00,15.103903903903904,15.103903903903904,17.668040448431783 + 12/27 19:00:00,15.17117117117117,15.17117117117117,17.683915223359749 + 12/27 19:10:00,15.217417417417418,15.217417417417418,17.69809067838475 + 12/27 19:20:00,15.263663663663664,15.263663663663664,17.71135766832692 + 12/27 19:30:00,15.30990990990991,15.30990990990991,17.723800513920638 + 12/27 19:40:00,15.356156156156157,15.356156156156157,17.735535550846444 + 12/27 19:50:00,15.402402402402402,15.402402402402402,17.74660603041663 + 12/27 20:00:00,15.448648648648648,15.448648648648648,17.757118432312717 + 12/27 20:10:00,15.499099099099098,15.499099099099098,17.77989932190071 + 12/27 20:20:00,15.54954954954955,15.54954954954955,17.789864657590173 + 12/27 20:30:00,15.6,15.6,17.79908839727225 + 12/27 20:40:00,15.6,15.6,17.807949444606775 + 12/27 20:50:00,15.6,15.6,17.816440803380563 + 12/27 21:00:00,15.6,15.6,17.82463152798357 + 12/27 21:10:00,15.6,15.6,17.811033030492639 + 12/27 21:20:00,15.6,15.6,17.823986720931168 + 12/27 21:30:00,15.6,15.6,17.832314990138696 + 12/27 21:40:00,15.6,15.6,17.840251310403198 + 12/27 21:50:00,15.6,15.6,17.848031710513106 + 12/27 22:00:00,15.6,15.6,17.85553072362361 + 12/27 22:10:00,15.6,15.6,17.86042742999416 + 12/27 22:20:00,15.6,15.6,17.865209946648695 + 12/27 22:30:00,15.6,15.6,17.86983880117474 + 12/27 22:40:00,15.6,15.6,17.87432238032264 + 12/27 22:50:00,15.6,15.6,17.87860406270804 + 12/27 23:00:00,15.6,15.6,17.882836233737579 + 12/27 23:10:00,15.6,15.6,19.26073045650308 + 12/27 23:20:00,15.6,15.6,19.40605362725472 + 12/27 23:30:00,15.6,15.6,19.471812874326309 + 12/27 23:40:00,15.6,15.6,19.52413550841259 + 12/27 23:50:00,15.6,15.6,19.566870408783666 + 12/27 24:00:00,15.6,15.6,19.603155548820149 + 12/28 00:10:00,15.6,15.6,19.633525614710565 + 12/28 00:20:00,15.6,15.6,19.660639896775007 + 12/28 00:30:00,15.6,15.6,19.68524754127871 + 12/28 00:40:00,15.6,15.6,19.70799574772839 + 12/28 00:50:00,15.6,15.6,19.729226659672699 + 12/28 01:00:00,15.6,15.6,19.74917724912895 + 12/28 01:10:00,15.6,15.6,19.765058430380916 + 12/28 01:20:00,15.6,15.6,19.779815395517344 + 12/28 01:30:00,15.6,15.6,19.793604024108295 + 12/28 01:40:00,15.6,15.6,19.80653511541358 + 12/28 01:50:00,15.6,15.6,19.81872784354136 + 12/28 02:00:00,15.6,15.6,19.830262707235904 + 12/28 02:10:00,15.6,15.6,19.84487966015696 + 12/28 02:20:00,15.6,15.6,19.858917590893844 + 12/28 02:30:00,15.6,15.6,19.87252504376679 + 12/28 02:40:00,15.6,15.6,19.885672768120487 + 12/28 02:50:00,15.6,15.6,19.898402556318179 + 12/28 03:00:00,15.6,15.6,19.910748045248196 + 12/28 03:10:00,15.6,15.6,19.920665865449779 + 12/28 03:20:00,15.6,15.6,19.93038769015734 + 12/28 03:30:00,15.6,15.6,19.93984278788495 + 12/28 03:40:00,15.6,15.6,19.949057398044137 + 12/28 03:50:00,15.6,15.6,19.958043921522078 + 12/28 04:00:00,15.6,15.6,19.96672912826534 + 12/28 04:10:00,15.6,15.6,19.976198586938386 + 12/28 04:20:00,15.6,15.6,19.985414384308098 + 12/28 04:30:00,15.6,15.6,19.99435023923558 + 12/28 04:40:00,15.6,15.6,20.003014013278269 + 12/28 04:50:00,15.6,15.6,20.01136362707598 + 12/28 05:00:00,15.6,15.6,20.0194947528378 + 12/28 05:10:00,15.6,15.6,20.025314672142235 + 12/28 05:20:00,15.6,15.6,20.030871244105346 + 12/28 05:30:00,15.6,15.6,20.036161905565355 + 12/28 05:40:00,15.6,15.6,20.041164079717239 + 12/28 05:50:00,15.6,15.6,20.04590183957571 + 12/28 06:00:00,15.6,15.6,20.050491178697898 + 12/28 06:10:00,15.6,15.6,20.057463897978314 + 12/28 06:20:00,15.6,15.6,20.06422960879433 + 12/28 06:30:00,15.6,15.6,20.07078945057244 + 12/28 06:40:00,15.6,15.6,20.077088762270969 + 12/28 06:50:00,15.6,15.6,20.083313163926716 + 12/28 07:00:00,15.6,15.6,20.08938395237434 + 12/28 07:10:00,15.6,15.6,18.08347150133858 + 12/28 07:20:00,15.6,15.6,17.851740724575867 + 12/28 07:30:00,15.6,15.6,17.766364962907553 + 12/28 07:40:00,15.6,15.6,17.69980058639663 + 12/28 07:50:00,15.6,15.6,17.647118828941829 + 12/28 08:00:00,15.6,15.6,17.602978156130829 + 12/28 08:10:00,15.6,15.6,16.11853946721529 + 12/28 08:20:00,15.6,15.6,15.901497022799163 + 12/28 08:30:00,15.6,15.6,15.799461593490563 + 12/28 08:40:00,15.6,15.6,15.715251568522131 + 12/28 08:50:00,15.6,15.6,15.644570126112577 + 12/28 09:00:00,15.6,15.6,15.582977081778486 + 12/28 09:10:00,15.6,15.6,15.500403867602604 + 12/28 09:20:00,15.6,15.6,15.440652576668056 + 12/28 09:30:00,15.6,15.6,15.392881102059216 + 12/28 09:40:00,15.6,15.6,15.348731845970552 + 12/28 09:50:00,15.6,15.6,15.30781886300619 + 12/28 10:00:00,15.6,15.6,15.269853451127587 + 12/28 10:10:00,15.6,15.6,15.234789098223809 + 12/28 10:20:00,15.6,15.6,15.191578029510812 + 12/28 10:30:00,15.6,15.6,15.160839566262608 + 12/28 10:40:00,15.6,15.6,15.13170017778755 + 12/28 10:50:00,15.6,15.6,15.103536196270016 + 12/28 11:00:00,15.6,15.6,15.076083403281914 + 12/28 11:10:00,15.6,15.6,15.051703708248932 + 12/28 11:20:00,15.6,15.6,15.023213878496226 + 12/28 11:30:00,15.6,15.6,14.997854420402972 + 12/28 11:40:00,15.6,15.6,14.974730766488479 + 12/28 11:50:00,15.6,15.6,14.951073902945476 + 12/28 12:00:00,15.6,15.6,14.930469833530755 + 12/28 12:10:00,15.553753753753754,15.553753753753754,14.907604213015306 + 12/28 12:20:00,15.507507507507507,15.507507507507507,14.898536137836638 + 12/28 12:30:00,15.46126126126126,15.46126126126126,14.877781018252268 + 12/28 12:40:00,15.415015015015016,15.415015015015016,14.860241590705977 + 12/28 12:50:00,15.368768768768769,15.368768768768769,14.843921348772338 + 12/28 13:00:00,15.322522522522523,15.322522522522523,14.826757973566249 + 12/28 13:10:00,15.251051051051052,15.251051051051052,14.812450804424716 + 12/28 13:20:00,15.17957957957958,15.17957957957958,14.787881397825166 + 12/28 13:30:00,15.108108108108109,15.108108108108109,14.774434493831285 + 12/28 13:40:00,15.036636636636637,15.036636636636637,14.761442765499549 + 12/28 13:50:00,14.965165165165164,14.965165165165164,14.749151386443334 + 12/28 14:00:00,14.893693693693694,14.893693693693694,14.737822340531626 + 12/28 14:10:00,14.872672672672673,14.872672672672673,14.727635210020767 + 12/28 14:20:00,14.85165165165165,14.85165165165165,14.722851426066205 + 12/28 14:30:00,14.83063063063063,14.83063063063063,14.713630294012216 + 12/28 14:40:00,14.809609609609609,14.809609609609609,14.707068548285167 + 12/28 14:50:00,14.788588588588589,14.788588588588589,14.697044388250732 + 12/28 15:00:00,14.767567567567568,14.767567567567568,14.689709032481307 + 12/28 15:10:00,14.788588588588589,14.788588588588589,14.679873403971238 + 12/28 15:20:00,14.809609609609609,14.809609609609609,14.674927273548596 + 12/28 15:30:00,14.83063063063063,14.83063063063063,14.666466391027729 + 12/28 15:40:00,14.85165165165165,14.85165165165165,14.657443110089402 + 12/28 15:50:00,14.872672672672673,14.872672672672673,14.65173701212924 + 12/28 16:00:00,14.893693693693694,14.893693693693694,14.644465918676872 + 12/28 16:05:00,14.91891891891892,14.91891891891892,16.804028620874065 + 12/28 16:10:00,14.91891891891892,14.91891891891892,16.80312842659373 + 12/28 16:20:00,14.944144144144144,14.944144144144144,17.049893941256224 + 12/28 16:30:00,14.96936936936937,14.96936936936937,17.14540609610473 + 12/28 16:40:00,14.994594594594595,14.994594594594595,17.21996955096958 + 12/28 16:50:00,15.01981981981982,15.01981981981982,17.278695400274878 + 12/28 17:00:00,15.045045045045045,15.045045045045045,17.324519098142156 + 12/28 17:10:00,15.091291291291292,15.091291291291292,17.39198168809594 + 12/28 17:20:00,15.137537537537538,15.137537537537538,17.448685914073378 + 12/28 17:30:00,15.183783783783785,15.183783783783785,17.481425746484044 + 12/28 17:40:00,15.23003003003003,15.23003003003003,17.51089933807561 + 12/28 17:50:00,15.276276276276276,15.276276276276276,17.537774320114658 + 12/28 18:00:00,15.322522522522523,15.322522522522523,17.562124414093426 + 12/28 18:10:00,15.368768768768769,15.368768768768769,17.597361770270877 + 12/28 18:20:00,15.415015015015016,15.415015015015016,17.623499457607048 + 12/28 18:30:00,15.46126126126126,15.46126126126126,17.64240842619482 + 12/28 18:40:00,15.507507507507507,15.507507507507507,17.659838952423028 + 12/28 18:50:00,15.553753753753754,15.553753753753754,17.67599359330181 + 12/28 19:00:00,15.6,15.6,17.690913191137505 + 12/28 19:10:00,15.6,15.6,17.70450013177134 + 12/28 19:20:00,15.6,15.6,17.717216796952444 + 12/28 19:30:00,15.6,15.6,17.729197487870587 + 12/28 19:40:00,15.6,15.6,17.740503765138418 + 12/28 19:50:00,15.6,15.6,17.75127398160704 + 12/28 20:00:00,15.6,15.6,17.761541029974958 + 12/28 20:10:00,15.6,15.6,17.783896396985769 + 12/28 20:20:00,15.6,15.6,17.79339582221631 + 12/28 20:30:00,15.6,15.6,17.802074507407974 + 12/28 20:40:00,15.6,15.6,17.810331672953447 + 12/28 20:50:00,15.6,15.6,17.818218489436754 + 12/28 21:00:00,15.6,15.6,17.825733593705313 + 12/28 21:10:00,15.6,15.6,17.811134147062 + 12/28 21:20:00,15.6,15.6,17.823121248438008 + 12/28 21:30:00,15.6,15.6,17.830272576092957 + 12/28 21:40:00,15.6,15.6,17.837123238085604 + 12/28 21:50:00,15.6,15.6,17.843660587243606 + 12/28 22:00:00,15.6,15.6,17.84988340218474 + 12/28 22:10:00,15.6,15.6,17.854812747365256 + 12/28 22:20:00,15.6,15.6,17.859510881987064 + 12/28 22:30:00,15.6,15.6,17.864062567810025 + 12/28 22:40:00,15.6,15.6,17.868491271327494 + 12/28 22:50:00,15.6,15.6,17.87277895274378 + 12/28 23:00:00,15.6,15.6,17.87693158511641 + 12/28 23:10:00,15.6,15.6,19.25314991890783 + 12/28 23:20:00,15.6,15.6,19.395698943048637 + 12/28 23:30:00,15.6,15.6,19.458633527497946 + 12/28 23:40:00,15.6,15.6,19.508265360706024 + 12/28 23:50:00,15.6,15.6,19.548257812062965 + 12/28 24:00:00,15.6,15.6,19.581808301608107 + 12/29 00:10:00,15.6,15.6,19.60971683912057 + 12/29 00:20:00,15.6,15.6,19.63458914827056 + 12/29 00:30:00,15.6,15.6,19.65708595511027 + 12/29 00:40:00,15.6,15.6,19.677721752372415 + 12/29 00:50:00,15.6,15.6,19.696828169443664 + 12/29 01:00:00,15.6,15.6,19.714569432189025 + 12/29 01:10:00,15.6,15.6,19.73246999738534 + 12/29 01:20:00,15.6,15.6,19.749303604104488 + 12/29 01:30:00,15.6,15.6,19.765147433615704 + 12/29 01:40:00,15.6,15.6,19.780100123795564 + 12/29 01:50:00,15.6,15.6,19.794176293652453 + 12/29 02:00:00,15.6,15.6,19.80761200254808 + 12/29 02:10:00,15.6,15.6,19.81875250602446 + 12/29 02:20:00,15.6,15.6,19.82934665142548 + 12/29 02:30:00,15.6,15.6,19.839452372306235 + 12/29 02:40:00,15.6,15.6,19.84905895271955 + 12/29 02:50:00,15.6,15.6,19.858280660060907 + 12/29 03:00:00,15.6,15.6,19.86717613201039 + 12/29 03:10:00,15.6,15.6,19.876888336213854 + 12/29 03:20:00,15.6,15.6,19.886126226388745 + 12/29 03:30:00,15.6,15.6,19.89482734163086 + 12/29 03:40:00,15.6,15.6,19.903014085655565 + 12/29 03:50:00,15.6,15.6,19.910817931804428 + 12/29 04:00:00,15.6,15.6,19.918205642149027 + 12/29 04:10:00,15.6,15.6,19.925240403927054 + 12/29 04:20:00,15.6,15.6,19.93200646938731 + 12/29 04:30:00,15.6,15.6,19.938488692179705 + 12/29 04:40:00,15.6,15.6,19.944884675069788 + 12/29 04:50:00,15.6,15.6,19.951113947389265 + 12/29 05:00:00,15.6,15.6,19.957183250386664 + 12/29 05:10:00,15.6,15.6,19.96276219800099 + 12/29 05:20:00,15.6,15.6,19.968340524144368 + 12/29 05:30:00,15.6,15.6,19.974165555452 + 12/29 05:40:00,15.6,15.6,19.98017010677138 + 12/29 05:50:00,15.6,15.6,19.986320836016227 + 12/29 06:00:00,15.6,15.6,19.992588752843674 + 12/29 06:10:00,15.6,15.6,19.999593197653927 + 12/29 06:20:00,15.6,15.6,20.00630668959841 + 12/29 06:30:00,15.6,15.6,20.01260060752727 + 12/29 06:40:00,15.6,15.6,20.01842006034288 + 12/29 06:50:00,15.6,15.6,20.023789387888315 + 12/29 07:00:00,15.6,15.6,20.028702070263934 + 12/29 07:10:00,15.6,15.6,18.01762251020539 + 12/29 07:20:00,15.6,15.6,17.78470343958454 + 12/29 07:30:00,15.6,15.6,17.69891631225226 + 12/29 07:40:00,15.6,15.6,17.632295955770507 + 12/29 07:50:00,15.6,15.6,17.579876332763825 + 12/29 08:00:00,15.6,15.6,17.53656693060569 + 12/29 08:10:00,15.6,15.6,16.0491084784122 + 12/29 08:20:00,15.6,15.6,15.832051577106606 + 12/29 08:30:00,15.6,15.6,15.730976371757477 + 12/29 08:40:00,15.6,15.6,15.648243643588874 + 12/29 08:50:00,15.6,15.6,15.579233363419089 + 12/29 09:00:00,15.6,15.6,15.519304839123543 + 12/29 09:10:00,15.6,15.6,15.439834193178609 + 12/29 09:20:00,15.6,15.6,15.383074856896329 + 12/29 09:30:00,15.6,15.6,15.33813706317469 + 12/29 09:40:00,15.6,15.6,15.296790816241123 + 12/29 09:50:00,15.6,15.6,15.258836069689817 + 12/29 10:00:00,15.6,15.6,15.224074806908297 + 12/29 10:10:00,15.6,15.6,15.189963681526498 + 12/29 10:20:00,15.6,15.6,15.147706466281699 + 12/29 10:30:00,15.6,15.6,15.118009649057152 + 12/29 10:40:00,15.6,15.6,15.089964518789856 + 12/29 10:50:00,15.6,15.6,15.063186034248539 + 12/29 11:00:00,15.6,15.6,15.039008657199873 + 12/29 11:10:00,15.6,15.6,15.015366550285436 + 12/29 11:20:00,15.6,15.6,14.987880064524218 + 12/29 11:30:00,15.46126126126126,15.46126126126126,14.964477664486271 + 12/29 11:40:00,15.322522522522523,15.322522522522523,14.940012742618319 + 12/29 11:50:00,15.183783783783785,15.183783783783785,14.915692964752344 + 12/29 12:00:00,15.045045045045045,15.045045045045045,14.888946968463803 + 12/29 12:10:00,14.998798798798799,14.998798798798799,14.86227098338373 + 12/29 12:20:00,14.952552552552552,14.952552552552552,14.844731639760957 + 12/29 12:30:00,14.906306306306306,14.906306306306306,14.820025031503367 + 12/29 12:40:00,14.86006006006006,14.86006006006006,14.795061335493756 + 12/29 12:50:00,14.813813813813815,14.813813813813815,14.774204697096169 + 12/29 13:00:00,14.767567567567568,14.767567567567568,14.758662150638769 + 12/29 13:10:00,14.721321321321322,14.721321321321322,14.743396521786546 + 12/29 13:20:00,14.675075075075075,14.675075075075075,14.724629976436998 + 12/29 13:30:00,14.628828828828829,14.628828828828829,14.715634645624107 + 12/29 13:40:00,14.582582582582582,14.582582582582582,14.708790513790879 + 12/29 13:50:00,14.536336336336337,14.536336336336337,14.700698668743936 + 12/29 14:00:00,14.49009009009009,14.49009009009009,14.692164487498545 + 12/29 14:10:00,14.464864864864865,14.464864864864865,14.68336859207637 + 12/29 14:20:00,14.439639639639639,14.439639639639639,14.6781888009982 + 12/29 14:30:00,14.414414414414415,14.414414414414415,14.67019652863971 + 12/29 14:40:00,14.389189189189189,14.389189189189189,14.660761998436618 + 12/29 14:50:00,14.363963963963965,14.363963963963965,14.653990468903143 + 12/29 15:00:00,14.338738738738739,14.338738738738739,14.644368497252849 + 12/29 15:10:00,14.363963963963965,14.363963963963965,14.637659214032569 + 12/29 15:20:00,14.389189189189189,14.389189189189189,14.633641186422029 + 12/29 15:30:00,14.414414414414415,14.414414414414415,14.627902222887985 + 12/29 15:40:00,14.439639639639639,14.439639639639639,14.62283536040253 + 12/29 15:50:00,14.464864864864865,14.464864864864865,14.616524075902757 + 12/29 16:00:00,14.49009009009009,14.49009009009009,14.612974632522758 + 12/29 16:05:00,14.511111111111111,14.511111111111111,16.77467025350323 + 12/29 16:10:00,14.511111111111111,14.511111111111111,16.773699128746864 + 12/29 16:20:00,14.532132132132132,14.532132132132132,17.02177873057791 + 12/29 16:30:00,14.553153153153153,14.553153153153153,17.119964409898146 + 12/29 16:40:00,14.574174174174175,14.574174174174175,17.193014221362416 + 12/29 16:50:00,14.595195195195196,14.595195195195196,17.25117715864395 + 12/29 17:00:00,14.616216216216217,14.616216216216217,17.3000926650348 + 12/29 17:10:00,14.641441441441442,14.641441441441442,17.365990837645329 + 12/29 17:20:00,14.666666666666666,14.666666666666666,17.419518092157476 + 12/29 17:30:00,14.691891891891892,14.691891891891892,17.450565426435266 + 12/29 17:40:00,14.717117117117118,14.717117117117118,17.478558975201474 + 12/29 17:50:00,14.742342342342342,14.742342342342342,17.504021976864807 + 12/29 18:00:00,14.767567567567568,14.767567567567568,17.527064685907115 + 12/29 18:10:00,14.767567567567568,14.767567567567568,17.561564780995153 + 12/29 18:20:00,14.767567567567568,14.767567567567568,17.58659870638311 + 12/29 18:30:00,14.767567567567568,14.767567567567568,17.60415224026223 + 12/29 18:40:00,14.767567567567568,14.767567567567568,17.6199657998682 + 12/29 18:50:00,14.767567567567568,14.767567567567568,17.634484265640283 + 12/29 19:00:00,14.767567567567568,14.767567567567568,17.647848776869837 + 12/29 19:10:00,14.721321321321322,14.721321321321322,17.66049127304778 + 12/29 19:20:00,14.675075075075075,14.675075075075075,17.671998038846998 + 12/29 19:30:00,14.628828828828829,14.628828828828829,17.682522856412729 + 12/29 19:40:00,14.582582582582582,14.582582582582582,17.692166231900975 + 12/29 19:50:00,14.536336336336337,14.536336336336337,17.701005009941814 + 12/29 20:00:00,14.49009009009009,14.49009009009009,17.708989943298989 + 12/29 20:10:00,14.49009009009009,14.49009009009009,17.729769166950438 + 12/29 20:20:00,14.49009009009009,14.49009009009009,17.737803896343409 + 12/29 20:30:00,14.49009009009009,14.49009009009009,17.745125742365074 + 12/29 20:40:00,14.49009009009009,14.49009009009009,17.752207244097048 + 12/29 20:50:00,14.49009009009009,14.49009009009009,17.758968589430663 + 12/29 21:00:00,14.49009009009009,14.49009009009009,17.765463034519589 + 12/29 21:10:00,14.582582582582584,14.582582582582584,17.748435201287799 + 12/29 21:20:00,14.675075075075075,14.675075075075075,17.75886120674661 + 12/29 21:30:00,14.767567567567568,14.767567567567568,17.764966523803119 + 12/29 21:40:00,14.86006006006006,14.86006006006006,17.771253957544347 + 12/29 21:50:00,14.952552552552552,14.952552552552552,17.777621598136478 + 12/29 22:00:00,15.045045045045045,15.045045045045045,17.784025910967267 + 12/29 22:10:00,15.091291291291292,15.091291291291292,17.79138908201447 + 12/29 22:20:00,15.137537537537538,15.137537537537538,17.798687960832966 + 12/29 22:30:00,15.183783783783785,15.183783783783785,17.805874496509977 + 12/29 22:40:00,15.23003003003003,15.23003003003003,17.812917708532937 + 12/29 22:50:00,15.276276276276276,15.276276276276276,17.819751297547055 + 12/29 23:00:00,15.322522522522523,15.322522522522523,17.826516315421697 + 12/29 23:10:00,15.297297297297297,15.297297297297297,19.204535583811596 + 12/29 23:20:00,15.272072072072073,15.272072072072073,19.348192127400656 + 12/29 23:30:00,15.246846846846847,15.246846846846847,19.41163224704188 + 12/29 23:40:00,15.22162162162162,15.22162162162162,19.461275539429658 + 12/29 23:50:00,15.196396396396397,15.196396396396397,19.501105851935088 + 12/29 24:00:00,15.17117117117117,15.17117117117117,19.534200106713845 + 12/30 00:10:00,15.217417417417418,15.217417417417418,19.562351639441549 + 12/30 00:20:00,15.263663663663664,15.263663663663664,19.587224318378494 + 12/30 00:30:00,15.30990990990991,15.30990990990991,19.609271077836114 + 12/30 00:40:00,15.356156156156157,15.356156156156157,19.629227678483344 + 12/30 00:50:00,15.402402402402402,15.402402402402402,19.647374013421876 + 12/30 01:00:00,15.448648648648648,15.448648648648648,19.663971197550948 + 12/30 01:10:00,15.499099099099098,15.499099099099098,19.67992592168567 + 12/30 01:20:00,15.54954954954955,15.54954954954955,19.695360933931114 + 12/30 01:30:00,15.6,15.6,19.71008972668393 + 12/30 01:40:00,15.6,15.6,19.72438878683757 + 12/30 01:50:00,15.6,15.6,19.738139596857378 + 12/30 02:00:00,15.6,15.6,19.751379154546684 + 12/30 02:10:00,15.6,15.6,19.764299161758986 + 12/30 02:20:00,15.6,15.6,19.77677349671984 + 12/30 02:30:00,15.6,15.6,19.78900777740885 + 12/30 02:40:00,15.6,15.6,19.800937740930288 + 12/30 02:50:00,15.6,15.6,19.812590720849003 + 12/30 03:00:00,15.6,15.6,19.823969182125823 + 12/30 03:10:00,15.6,15.6,19.835579040214808 + 12/30 03:20:00,15.6,15.6,19.847053772179494 + 12/30 03:30:00,15.6,15.6,19.858210486685786 + 12/30 03:40:00,15.6,15.6,19.869084714132769 + 12/30 03:50:00,15.6,15.6,19.879670150663 + 12/30 04:00:00,15.6,15.6,19.889894731279566 + 12/30 04:10:00,15.6,15.6,19.898720498658024 + 12/30 04:20:00,15.6,15.6,19.90706016232356 + 12/30 04:30:00,15.6,15.6,19.91495836454356 + 12/30 04:40:00,15.6,15.6,19.922402118296846 + 12/30 04:50:00,15.6,15.6,19.929386358498478 + 12/30 05:00:00,15.6,15.6,19.936040465820786 + 12/30 05:10:00,15.6,15.6,19.94125812377763 + 12/30 05:20:00,15.6,15.6,19.946197490469304 + 12/30 05:30:00,15.6,15.6,19.950901292454757 + 12/30 05:40:00,15.6,15.6,19.95534703287432 + 12/30 05:50:00,15.6,15.6,19.959578599136834 + 12/30 06:00:00,15.6,15.6,19.963678395281315 + 12/30 06:10:00,15.6,15.6,19.96875537092843 + 12/30 06:20:00,15.6,15.6,19.973651563763256 + 12/30 06:30:00,15.6,15.6,19.978329851438518 + 12/30 06:40:00,15.6,15.6,19.982756393188909 + 12/30 06:50:00,15.6,15.6,19.987094353278186 + 12/30 07:00:00,15.6,15.6,19.99126629143995 + 12/30 07:10:00,15.6,15.6,19.333483668249806 + 12/30 07:20:00,15.6,15.6,19.267517334968603 + 12/30 07:30:00,15.6,15.6,19.2421287898299 + 12/30 07:40:00,15.6,15.6,19.222873400101379 + 12/30 07:50:00,15.6,15.6,19.207723252640034 + 12/30 08:00:00,15.6,15.6,19.1950546193058 + 12/30 08:10:00,15.6,15.6,18.108250961322825 + 12/30 08:20:00,15.6,15.6,17.9614289812568 + 12/30 08:30:00,15.6,15.6,17.89894230342248 + 12/30 08:40:00,15.6,15.6,17.84842092860019 + 12/30 08:50:00,15.6,15.6,17.806775169922813 + 12/30 09:00:00,15.6,15.6,17.771015251070879 + 12/30 09:10:00,15.6,15.6,17.740168837989076 + 12/30 09:20:00,15.6,15.6,17.703955905321118 + 12/30 09:30:00,15.6,15.6,17.67908034292678 + 12/30 09:40:00,15.6,15.6,17.65639427144993 + 12/30 09:50:00,15.6,15.6,17.635443367603818 + 12/30 10:00:00,15.6,15.6,17.61598968960722 + 12/30 10:10:00,15.6,15.6,17.59852777999275 + 12/30 10:20:00,15.6,15.6,17.573345994875074 + 12/30 10:30:00,15.6,15.6,17.557944689097185 + 12/30 10:40:00,15.6,15.6,17.543403828698894 + 12/30 10:50:00,15.6,15.6,17.529467825215375 + 12/30 11:00:00,15.6,15.6,17.516040035811935 + 12/30 11:10:00,15.6,15.6,17.503434863581128 + 12/30 11:20:00,15.6,15.6,17.491040570415828 + 12/30 11:30:00,15.6,15.6,17.478995179463305 + 12/30 11:40:00,15.6,15.6,17.467399688322688 + 12/30 11:50:00,15.6,15.6,17.45656038275378 + 12/30 12:00:00,15.6,15.6,17.446537286314887 + 12/30 12:10:00,15.6,15.6,17.435813738191908 + 12/30 12:20:00,15.6,15.6,17.425762998501967 + 12/30 12:30:00,15.6,15.6,17.416275725116877 + 12/30 12:40:00,15.6,15.6,17.407267568822506 + 12/30 12:50:00,15.6,15.6,17.398680721240557 + 12/30 13:00:00,15.6,15.6,17.390455788759135 + 12/30 13:10:00,15.6,15.6,17.382738926458324 + 12/30 13:20:00,15.6,15.6,17.375047571363319 + 12/30 13:30:00,15.6,15.6,17.367647083646618 + 12/30 13:40:00,15.6,15.6,17.360609247892783 + 12/30 13:50:00,15.6,15.6,17.354239153319204 + 12/30 14:00:00,15.6,15.6,17.348601441285095 + 12/30 14:10:00,15.6,15.6,17.3439899909406 + 12/30 14:20:00,15.6,15.6,17.33999978624669 + 12/30 14:30:00,15.6,15.6,17.33693341834694 + 12/30 14:40:00,15.6,15.6,17.334598778036978 + 12/30 14:50:00,15.6,15.6,17.332651729732363 + 12/30 15:00:00,15.6,15.6,17.330992174381167 + 12/30 15:10:00,15.6,15.6,17.3280389419186 + 12/30 15:20:00,15.6,15.6,17.3254740243202 + 12/30 15:30:00,15.6,15.6,17.32447074510926 + 12/30 15:40:00,15.6,15.6,17.32390082871815 + 12/30 15:50:00,15.6,15.6,17.323665728714617 + 12/30 16:00:00,15.6,15.6,17.321685365680339 + 12/30 16:10:00,15.6,15.6,17.321616693811899 + 12/30 16:20:00,15.6,15.6,17.322459996099963 + 12/30 16:30:00,15.6,15.6,17.323728383727909 + 12/30 16:40:00,15.6,15.6,17.325066517625574 + 12/30 16:50:00,15.6,15.6,17.32417916564606 + 12/30 17:00:00,15.6,15.6,17.325758303117284 + 12/30 17:10:00,15.6,15.6,17.34133637539697 + 12/30 17:20:00,15.6,15.6,17.353217953146595 + 12/30 17:30:00,15.6,15.6,17.356143340150099 + 12/30 17:40:00,15.6,15.6,17.359301681159989 + 12/30 17:50:00,15.6,15.6,17.361977739028125 + 12/30 18:00:00,15.6,15.6,17.363562520946517 + 12/30 18:10:00,15.6,15.6,19.128082796770703 + 12/30 18:20:00,15.6,15.6,19.33605530720484 + 12/30 18:30:00,15.6,15.6,19.41726318898761 + 12/30 18:40:00,15.6,15.6,19.479854968823625 + 12/30 18:50:00,15.6,15.6,19.5293195486632 + 12/30 19:00:00,15.6,15.6,19.57006073109636 + 12/30 19:10:00,15.6,15.6,19.61849208104465 + 12/30 19:20:00,15.6,15.6,19.649863169723547 + 12/30 19:30:00,15.6,15.6,19.677224589886316 + 12/30 19:40:00,15.6,15.6,19.701601266980864 + 12/30 19:50:00,15.6,15.6,19.723544094077704 + 12/30 20:00:00,15.6,15.6,19.743327601991408 + 12/30 20:10:00,15.6,15.6,19.759622418303385 + 12/30 20:20:00,15.6,15.6,19.774538753960465 + 12/30 20:30:00,15.6,15.6,19.788255984422368 + 12/30 20:40:00,15.6,15.6,19.800939603606684 + 12/30 20:50:00,15.6,15.6,19.81265495951099 + 12/30 21:00:00,15.6,15.6,19.823613144704024 + 12/30 21:10:00,15.6,15.6,19.813382792480288 + 12/30 21:20:00,15.6,15.6,19.825169072407428 + 12/30 21:30:00,15.6,15.6,19.836584758186576 + 12/30 21:40:00,15.6,15.6,19.84763239671966 + 12/30 21:50:00,15.6,15.6,19.858369785679228 + 12/30 22:00:00,15.6,15.6,19.868886872362237 + 12/30 22:10:00,15.6,15.6,19.878797377420363 + 12/30 22:20:00,15.6,15.6,19.88820647491854 + 12/30 22:30:00,15.6,15.6,19.897032210049948 + 12/30 22:40:00,15.6,15.6,19.905246329431355 + 12/30 22:50:00,15.6,15.6,19.913030951593265 + 12/30 23:00:00,15.6,15.6,19.920344784199118 + 12/30 23:10:00,15.6,15.6,19.926385200521659 + 12/30 23:20:00,15.6,15.6,19.932144360588209 + 12/30 23:30:00,15.6,15.6,19.937591573605308 + 12/30 23:40:00,15.6,15.6,19.942949788524527 + 12/30 23:50:00,15.6,15.6,19.948140908648683 + 12/30 24:00:00,15.6,15.6,19.953167534723997 + 12/31 00:10:00,15.6,15.6,19.95997706871969 + 12/31 00:20:00,15.6,15.6,19.966554245654956 + 12/31 00:30:00,15.6,15.6,19.97306332402512 + 12/31 00:40:00,15.6,15.6,19.97943609700029 + 12/31 00:50:00,15.6,15.6,19.98566530171066 + 12/31 01:00:00,15.6,15.6,19.991751019296524 + 12/31 01:10:00,15.6,15.6,19.997847984381843 + 12/31 01:20:00,15.6,15.6,20.003789627503559 + 12/31 01:30:00,15.6,15.6,20.009705705154106 + 12/31 01:40:00,15.6,15.6,20.015530359280846 + 12/31 01:50:00,15.6,15.6,20.021288165103628 + 12/31 02:00:00,15.6,15.6,20.026954287379369 + 12/31 02:10:00,15.6,15.6,20.029824379022398 + 12/31 02:20:00,15.6,15.6,20.032736277468179 + 12/31 02:30:00,15.6,15.6,20.035549930499877 + 12/31 02:40:00,15.6,15.6,20.038286249652427 + 12/31 02:50:00,15.6,15.6,20.040924707870759 + 12/31 03:00:00,15.6,15.6,20.04337866766264 + 12/31 03:10:00,15.6,15.6,20.048128733248743 + 12/31 03:20:00,15.6,15.6,20.052751089528188 + 12/31 03:30:00,15.6,15.6,20.057328737423739 + 12/31 03:40:00,15.6,15.6,20.06184019103073 + 12/31 03:50:00,15.6,15.6,20.06622491760154 + 12/31 04:00:00,15.6,15.6,20.070639452913789 + 12/31 04:10:00,15.6,15.6,20.07353866824722 + 12/31 04:20:00,15.6,15.6,20.076428496042838 + 12/31 04:30:00,15.6,15.6,20.079234269397344 + 12/31 04:40:00,15.6,15.6,20.08191758997934 + 12/31 04:50:00,15.6,15.6,20.08454257729593 + 12/31 05:00:00,15.6,15.6,20.087133972428867 + 12/31 05:10:00,15.6,15.6,20.090876826849013 + 12/31 05:20:00,15.6,15.6,20.094540246851225 + 12/31 05:30:00,15.6,15.6,20.0980868723292 + 12/31 05:40:00,15.6,15.6,20.10152891882393 + 12/31 05:50:00,15.6,15.6,20.104965712673473 + 12/31 06:00:00,15.6,15.6,20.108333831090684 + 12/31 06:10:00,15.6,15.6,20.110169670199999 + 12/31 06:20:00,15.6,15.6,20.111915068862247 + 12/31 06:30:00,15.6,15.6,20.113577696423357 + 12/31 06:40:00,15.6,15.6,20.115306906595014 + 12/31 06:50:00,15.6,15.6,20.117026966246866 + 12/31 07:00:00,15.6,15.6,20.11873581848267 + 12/31 07:10:00,15.6,15.6,20.144072454713127 + 12/31 07:20:00,15.6,15.6,20.146798278668727 + 12/31 07:30:00,15.6,15.6,20.14953447375773 + 12/31 07:40:00,15.6,15.6,20.15222992237635 + 12/31 07:50:00,15.6,15.6,20.154678040650468 + 12/31 08:00:00,15.6,15.6,20.15668852640832 + 12/31 08:10:00,15.6,15.6,18.756836388876388 + 12/31 08:20:00,15.6,15.6,18.592779406739266 + 12/31 08:30:00,15.6,15.6,18.528789964740484 + 12/31 08:40:00,15.6,15.6,18.47814474406541 + 12/31 08:50:00,15.6,15.6,18.437133114936658 + 12/31 09:00:00,15.6,15.6,18.402703961663478 + 12/31 09:10:00,15.6,15.6,18.373104878407625 + 12/31 09:20:00,15.6,15.6,18.337575354441748 + 12/31 09:30:00,15.6,15.6,18.313193338185046 + 12/31 09:40:00,15.6,15.6,18.29080276149172 + 12/31 09:50:00,15.6,15.6,18.270039327784216 + 12/31 10:00:00,15.6,15.6,18.250656736108117 + 12/31 10:10:00,15.6,15.6,18.23194815915199 + 12/31 10:20:00,15.6,15.6,18.205580074819517 + 12/31 10:30:00,15.6,15.6,18.188943950888004 + 12/31 10:40:00,15.6,15.6,18.173382745368916 + 12/31 10:50:00,15.6,15.6,18.158838104677927 + 12/31 11:00:00,15.6,15.6,18.145226660183466 + 12/31 11:10:00,15.6,15.6,18.134245690508999 + 12/31 11:20:00,15.6,15.6,18.12425272365941 + 12/31 11:30:00,15.6,15.6,18.115076266978833 + 12/31 11:40:00,15.6,15.6,18.106544360519984 + 12/31 11:50:00,15.6,15.6,18.098953637314634 + 12/31 12:00:00,15.6,15.6,18.09184970606005 + 12/31 12:10:00,15.6,15.6,18.084106588932696 + 12/31 12:20:00,15.6,15.6,18.076658836061527 + 12/31 12:30:00,15.6,15.6,18.06953940611773 + 12/31 12:40:00,15.6,15.6,18.062716862662385 + 12/31 12:50:00,15.6,15.6,18.056194354758799 + 12/31 13:00:00,15.6,15.6,18.050201253404589 + 12/31 13:10:00,15.6,15.6,18.04177064065073 + 12/31 13:20:00,15.6,15.6,18.033368413801918 + 12/31 13:30:00,15.6,15.6,18.025102089448315 + 12/31 13:40:00,15.6,15.6,18.016996916557419 + 12/31 13:50:00,15.6,15.6,18.009105937562368 + 12/31 14:00:00,15.6,15.6,18.00140259268033 + 12/31 14:10:00,15.6,15.6,17.99808361878752 + 12/31 14:20:00,15.6,15.6,17.995370244369015 + 12/31 14:30:00,15.6,15.6,17.993086179184844 + 12/31 14:40:00,15.6,15.6,17.99137376022034 + 12/31 14:50:00,15.6,15.6,17.99016946038009 + 12/31 15:00:00,15.6,15.6,17.989370643064008 + 12/31 15:10:00,15.6,15.6,17.986937868515559 + 12/31 15:20:00,15.6,15.6,17.984917045340109 + 12/31 15:30:00,15.6,15.6,17.983194369696574 + 12/31 15:40:00,15.6,15.6,17.98171780069252 + 12/31 15:50:00,15.6,15.6,17.98076114015326 + 12/31 16:00:00,15.6,15.6,17.980298515841427 + 12/31 16:10:00,15.6,15.6,19.404143045447513 + 12/31 16:20:00,15.6,15.6,19.552575831963183 + 12/31 16:30:00,15.6,15.6,19.61542929407013 + 12/31 16:40:00,15.6,15.6,19.66412574949167 + 12/31 16:50:00,15.6,15.6,19.70296157079394 + 12/31 17:00:00,15.6,15.6,19.73512051082134 + 12/31 17:10:00,15.6,15.6,19.763776862326958 + 12/31 17:20:00,15.6,15.6,19.797326790320726 + 12/31 17:30:00,15.6,15.6,19.819498556733018 + 12/31 17:40:00,15.6,15.6,19.839648166475827 + 12/31 17:50:00,15.6,15.6,19.858272044046215 + 12/31 18:00:00,15.6,15.6,19.875095350453735 + 12/31 18:10:00,15.6,15.6,19.88959443336071 + 12/31 18:20:00,15.6,15.6,19.922038478852636 + 12/31 18:30:00,15.6,15.6,19.935847388304209 + 12/31 18:40:00,15.6,15.6,19.94864016474891 + 12/31 18:50:00,15.6,15.6,19.96047498465394 + 12/31 19:00:00,15.6,15.6,19.971616921699299 + 12/31 19:10:00,15.6,15.6,19.980921840957934 + 12/31 19:20:00,15.6,15.6,19.98970612297359 + 12/31 19:30:00,15.6,15.6,19.998050059706637 + 12/31 19:40:00,15.6,15.6,20.005942424389468 + 12/31 19:50:00,15.6,15.6,20.013528271676966 + 12/31 20:00:00,15.6,15.6,20.020836148546754 + 12/31 20:10:00,15.6,15.6,20.028558195187217 + 12/31 20:20:00,15.6,15.6,20.035874852746465 + 12/31 20:30:00,15.6,15.6,20.042797228256693 + 12/31 20:40:00,15.6,15.6,20.049356603564556 + 12/31 20:50:00,15.6,15.6,20.05566688548613 + 12/31 21:00:00,15.6,15.6,20.061697896729645 + 12/31 21:10:00,15.6,15.6,20.044051748131339 + 12/31 21:20:00,15.6,15.6,20.04878462674206 + 12/31 21:30:00,15.6,15.6,20.0532826071062 + 12/31 21:40:00,15.6,15.6,20.05771852528305 + 12/31 21:50:00,15.6,15.6,20.062006894321504 + 12/31 22:00:00,15.6,15.6,20.066153966335464 + 12/31 22:10:00,15.6,15.6,20.071214387728018 + 12/31 22:20:00,15.6,15.6,20.07611068107413 + 12/31 22:30:00,15.6,15.6,20.081057648811144 + 12/31 22:40:00,15.6,15.6,20.085966352402847 + 12/31 22:50:00,15.6,15.6,20.090832293848444 + 12/31 23:00:00,15.6,15.6,20.095652237196675 + 12/31 23:10:00,15.6,15.6,20.09924938866955 + 12/31 23:20:00,15.6,15.6,20.102785167892827 + 12/31 23:30:00,15.6,15.6,20.106221935312094 + 12/31 23:40:00,15.6,15.6,20.10952789230435 + 12/31 23:50:00,15.6,15.6,20.11270968722644 + 12/31 24:00:00,15.6,15.6,20.11571681852878 diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.idf b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.idf new file mode 100644 index 0000000..415f360 --- /dev/null +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.idf @@ -0,0 +1,31092 @@ + +!The DOE Prototype Building Models were developed by Pacific Northwest National Laboratory (PNNL), under contract with the U.S. +!Department of Energy (DOE). These building models were derived from DOE's Commercial Reference Building Models with modifications +!based on input from the ASHRAE Standard 90.1 committee, the Advanced Energy Design Guide series, and building industry experts. The +!prototypes models were developed to quantify energy saving impacts from newly published editions of ASHRAE Standard 90.1, 189.1, IECC, +!and other energy codes and standards. The basic building descriptions can be found in the Scorecards posted at www.energycodes.gov +!website. The recommended citation of the prototype models is +! +!DOE and PNNL. 2020. Commercial Prototype Building Models, Richland, WA, Pacific Northwest National Laboratory. Available at https://www.energycodes.gov/development/commercial/prototype_models. +! +!Detailed descriptions of the prototype model development and addenda modeling strategies can be found in the following reports: +!DOE, 2020. Preliminary Energy Savings Analysis: ANSI/ASHRAE/IES Standard 90.1-2019. Report prepared by Zhang, J., M. Rosenberg, J. +!Lerond, Y. Xie, Nambia, C., Y. Chen, R. Hart, M. Halverson, D. Maddox, and S. Goel, Richland, WA, Pacific Northwest National Laboratory. +! +!Zhang, J., Y. Chen, Y. Xie, M. Rosenberg, R. Hart. Energy and Energy Cost Savings Analysis of the 2018 IECC for Commercial Buildings. +!2018. PNNL-28125. Richland, WA: Pacific Northwest National Laboratory. +! +!DOE. 2017. Energy Savings Analysis: ANSI/ASHRAE/IES Standard 90.1-2016. Prepared by Athalye, R.A, M.A. Halverson, M.I. Rosenberg, B. Liu, +!J. Zhang, R. Hart, V.V. Mendon, S. Goel, Y. Chen, Y. Xie, and M. Zhao, Richland, WA, Pacific Northwest National Laboratory. https://www.energycodes.gov/sites/default/files/documents/02202018_Standard_90.1-2016_Determination_TSD.pdf. +! +!Zhang, J., Y. Xie, R.A. Athalye, J. Zhuge, M. Rosenberg, R. Hart, and B. Liu. Energy and Energy Cost Savings Analysis of the 2015 IECC +!for Commercial Buildings. 2015. PNNL-24269 Rev. 1. Richland, WA: Pacific Northwest National +!Laboratory. https://www.energycodes.gov/sites/default/files/documents/2015_IECC_Commercial_Analysis.pdf. +! +!Halverson M.A., M.I. Rosenberg, W. Wang, J. Zhang, V.V. Mendon, R.A. Athalye, Y. Xie, R. Hart, S. Goel, 2014. ANSI/ASHRAE/IES Standard +!90.1-2013 Determination of Energy Savings: Quantitative Analysis, PNNL-23479. Richland, WA: Pacific Northwest National Laboratory. https://www.energycodes.gov/sites/default/files/documents/901-2013_finalCommercialDeterminationQuantitativeAnalysis_TSD_0.pdf. +! +!Goel S., R.A. Athalye, W. Wang, J. Zhang, M.I. Rosenberg, Y. Xie, and R. Hart, et al. 2014. Enhancements to ASHRAE Standard 90.1 +!Prototype Building Models. PNNL-23269. Richland, WA: Pacific Northwest National Laboratory. https://www.pnnl.gov/main/publications/external/technical_reports/PNNL-23269.pdf. +! +!Zhang J., R.A. Athalye, R. Hart, M.I. Rosenberg, Y. Xie, S. Goel, and V.V. Mendon, et al. 2013. Energy and Energy Cost Savings Analysis +!of the IECC for Commercial Buildings. PNNL-22760. Richland, WA: Pacific Northwest National Laboratory. http://www.pnnl.gov/main/publications/external/technical_reports/PNNL-22760.pdf. +! +!Thornton B.A., M.I. Rosenberg, E.E. Richman, W. Wang, Y. Xie, J. Zhang, H. Cho, VV Mendon, R.A. Athalye, and B. Liu. 2011. Achieving +!the 30% Goal: Energy and Cost Savings Analysis of ASHRAE Standard 90.1-2010. PNNL-20405. Richland, WA: Pacific Northwest National +!Laboratory. https://www.energycodes.gov/sites/default/files/documents/BECP_Energy_Cost_Savings_STD2010_May2011_v00.pdf. +! +! +! WeatherFile: USA_GA_Atlanta-Hartsfield.Jackson.Intl.AP.722190_TMY3.epw + + + +! GPARM parameters as input: +! Case = ASHRAE901_Hospital_STD2019_Atlanta +! SelectedCase = +! basement_tempt = Zone3A_nonres_R0_Hospital_Atlanta_STD2016_out.idf +! annual_run = no +! avg_oa_tempt_ip = 61.88 +! maxdiff_oa_tempt_ip = 40.5 +! ext_wall_type = MassWall +! res_ext_wall_ufactor = 0.590539352 +! nonres_ext_wall_ufactor = 0.698426349 +! roof_type = MetalDeckRoof +! nonres_roof_ufactor = 0.221452257 +! roof_emissivity = 0.75 +! roof_solar_absorp = 0.45 +! res_window = Window_U_0.51_SHGC_0.25 +! nonres_window = Window_U_0.50_SHGC_0.25 +! res_east_window = Window_U_0.55_SHGC_0.25 +! nonres_east_window = Window_U_0.50_SHGC_0.25 +! sidelighting_control = yes_AY +! exterior_lights_watts = 9863 +! cc_sa_humidity = 0.0085 +! condenser_pump_head = 148556.6249 +! chilledwater_pump_head = 44761.27683 +! chilledwater_pump_secondary_head = 134283.8305 +! LPD1_Office = 6.888902667 +! LPD2_ER = 15.06947458 +! LPD3_Record = 8.794114811 +! LPD4_Corridor = 7.642376396 +! LPD5_NurseStn_Lobby1 = 11.17293901 +! LPD6_OR = 24.32643754 +! LPD7_IC = 13.45488802 +! LPD8_NursStn = 12.59377519 +! LPD9_NurseStn_Lobby2 = 10.46252093 +! LPD10_Patient_Room = 7.319459084 +! LPD11_Physical_Therapy = 9.795158479 +! LPD12_Lab = 14.31600085 +! LPD13_Radiology = 10.11807579 +! LPD14_Dining = 4.305564167 +! LPD15_Kitchen = 11.73266235 +! avg_oa_tempt = 16.6 +! maxdiff_oa_tempt = 22.5 +! infil = 0.00056896 +! oa_basement = 0.000368277 +! oa_exam = 0.002370219 +! oa_office1_flr1 = 0.00048257 +! oa_lobby = 0.000338645 +! oa_corridor = 0.000304781 +! oa_nurse = 0.000338645 +! oa_or = 0.003555179 +! oa_ic = 0.002370237 +! oa_patient = 0.002370237 +! oa_therapy = 0.000380976 +! oa_lab = 0.001168327 +! oa_radiology = 0.000380976 +! oa_dining = 0.001295319 +! oa_kitchen = 0.00080005 +! oa_office_flr5 = 0.00048257 +! tsa_exam = 0.01422212 +! tsa_or = 0.017776903 +! tsa_ic = 0.007111113 +! tsa_patient = 0.007111113 +! SAT_reset_switch = Yes +! SAT_reset_T = 15.6 +! VAV_ICU_ERV = Yes +! VAV_PATRMS_ERV = Yes +! Economizer_NoHumidification = DifferentialEnthalpy +! economizer_lockout = LockoutWithHeating +! eco_max_temp_limit = na +! heating_damper_act = ReverseWithLimits +! add_ck_vav_1 = Yes +! add_ck_vav_2 = Yes +! basement_mdp = 0.2 +! corridor_flr_1_mdp = 0.2 +! corridor_flr_2_mdp = 0.2 +! er_nursestn_lobby_flr_1_mdp = 0.2 +! icu_nursestn_lobby_flr_2_mdp = 0.2 +! lobby_records_flr_1_mdp = 0.2 +! office1_mult4_flr_1_mdp = 0.2 +! or_nursestn_lobby_flr_2_mdp = 0.2 +! corridor_flr_5_mdp = 0.2 +! corridor_nw_flr_3_mdp = 0.2 +! corridor_nw_flr_4_mdp = 0.2 +! corridor_se_flr_3_mdp = 0.2 +! corridor_se_flr_4_mdp = 0.2 +! dining_flr_5_mdp = 0.2 +! nursestn_lobby_flr_3_mdp = 0.2 +! nursestn_lobby_flr_4_mdp = 0.2 +! nursestn_lobby_flr_5_mdp = 0.2 +! office1_flr_5_mdp = 0.2 +! office2_mult5_flr_5_mdp = 0.2 +! office3_flr_5_mdp = 0.2 +! office4_mult6_flr_5_mdp = 0.2 +! phystherapy_flr_3_mdp = 0.2 +! radiology_flr_4_mdp = 0.2 +! vav_1_oaf = autosize +! vav_2_oaf = autosize +! Transfer_Air = kitchen_only +! BLDG_ELEVATORS_LIGHTS_FAN_SCH = ELEV_LIGHT_FAN_SCH_ADD_DF +! BLDG_ELEVATORS_LIGHTS_FAN_POWER = 501 +! bsmt_new = National_Hospital_ASHRAE901_STD2016_Zone3A_nonres_GA-Atlanta-GA_out.idf +! osc_key_wall = surfPropOthSdCoefBasementAvgWall +! osc_key_floor = surfPropOthSdCoefBasementAvgFloor +! orientation = -90 +! BLDG_EQUIP_SCH = BLDG_EQUIP_SCH_ADV +! minSysAirFlowRatio = 0.5 +! VAVReheat_flag = yes +! VAVReheat_minAirFrac = 0.5 +! PumpCurve_flag = pump_ride_on_curve +! pv_generator = no +! pv_surface_area = 0 +! STD189_overhang = no +! overhang_pf_ew_TBD = 0 +! swh_et = 0.802764686 +! swh_ua = 15.60100708 +! ext_lgt_sch = Exterior_Lgt_ALWAYS_ON +! VAV_1_ERV = Yes +! VAV_2_ERV = No +! VAV_ER_ERV = No +! VAV_OR_ERV = No +! VAV_LABS_ERV = No +! VAV_ICU_ERV_power = 1539.37265225 +! VAV_PATRMS_ERV_power = 3273.229555 +! VAV_1_ERV_power = 3154.26375 +! VAV_2_ERV_power = 3263.9695 +! VAV_ER_ERV_power = 713.572987 +! VAV_OR_ERV_power = 1614.071075 +! VAV_LABS_ERV_power = 493.9029 +! LTG_SCH_SET = LTG_SET_STD2013 +! transformer_size = 500000 +! transformer_eff = 0.991 +! freezer_power = 555 +! refrigerator_power = 470 +! swh_et_booster = 1 +! swh_ua_booster = 1.053159296 +! swh_et_laundry = 0.803988738 +! swh_ua_laundry = 11.25413987 +! pipe_heat_loss = 17147.66 +! evap_fan_power_case1 = 19.71428571 +! evap_fan_power_case2 = 19.14285714 +! walkin_lighting_sch = walkin_occ_lght_sch +! add_as = yes +! preheatcoil_exists = no +! AddendumAF_TowerFan = Yes +! kitchen_exh_fan_power = 1219 +! skip_EMSprogram = yes +! BoilerAM = Yes +! Wfile_TMY3 = USA_GA_Atlanta-Hartsfield.Jackson.Intl.AP.722190_TMY3.epw +! loadProfile = No +! addendum_DI = yes +! addendum_DV = yes +! receptacle_ctrl_occ_reduction_frac = 0.974001829 +! receptacle_ctrl_unocc_reduction_frac = 0.873170566 +! OR_VAV_zone_mdp = 0.2 +! HOTW_ST_Reset = No +! CHW_ST_Reset = No +! CodeName = ASHRAE90.1_STD2019 +! CZ_City_Old = Memphis +! CZ_Label = 3A +! con_swingdoor_r = 0.475963827 +! con_overheaddoor_r = 0.567741935 +! CHW_deltaT = 8.33 +! HOTW_PumpCurve_flag = pump_ride_on_curve +! nonres_window_u_factor = 0.43 +! nonres_window_shgc = 0.25 +! nonresLSG = 1.1 +! res_window_u_factor = 0.43 +! res_window_shgc = 0.25 +! resLSG = 1.1 +! nonres_east_window_u_factor = 0.43 +! nonres_east_window_shgc = 0.25 +! nonres_eastLSG = 1.1 +! res_east_window_u_factor = 0.43 +! res_east_window_shgc = 0.25 +! res_eastLSG = 1.1 +! AnalysisPurpose = ProgressIndicator +! AnalysisCodeName = ASHRAE901 +! AnalysisCodeYear = 2019 +! AnalysisAmendment = NoneAmend +! AnalysisPrototype = Hospital +! AnalysisScope = National +! AnalysisState = National +! AnalysisClimateZone = 3A +! AnalysisCity = USA_GA_Atlanta +! var_Ffactor_IP = 0.73 +! var_Cfactor_IP = 1.14 +! cop_walkin_freezer = 2.3 +! cop_walkin_cooler = 6.93 + + + + + +! specify overhang_pf for 1891 codes + + + + + + + + + + + + + + + + + + +!- =========== ALL OBJECTS IN CLASS: VERSION =========== + + Version,9.0; + +!- =========== ALL OBJECTS IN CLASS: BUILDING =========== + + + Building, + Hospital, !- Name + -90, !- North Axis {deg} + City, !- Terrain + 0.0400, !- Loads Convergence Tolerance Value + 0.2000, !- Temperature Convergence Tolerance Value {deltaC} + FullInteriorAndExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + +!- =========== ALL OBJECTS IN CLASS: TIMESTEP IN HOUR =========== + + Timestep,6; + +!- =========== ALL OBJECTS IN CLASS: SYSTEM CONVERGENCE LIMITS =========== + + ConvergenceLimits, + 1, !- Minimum System Timestep {minutes} + 20; !- Maximum HVAC Iterations + +!- =========== ALL OBJECTS IN CLASS: INSIDE CONVECTION ALGORITHM =========== + + SurfaceConvectionAlgorithm:Inside,TARP; + +!- =========== ALL OBJECTS IN CLASS: OUTSIDE CONVECTION ALGORITHM =========== + + SurfaceConvectionAlgorithm:Outside,TARP; + +!- =========== ALL OBJECTS IN CLASS: SOLUTION ALGORITHM =========== + + HeatBalanceAlgorithm,ConductionTransferFunction; + +!- =========== ALL OBJECTS IN CLASS: SHADOWING CALCULATIONS =========== + + ShadowCalculation, + AverageOverDaysInFrequency, !- Calculation Method + 30; !- Calculation Frequency + +!- =========== ALL OBJECTS IN CLASS: RUN CONTROL =========== + + SimulationControl, + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + Yes, !- Do Plant Sizing Calculation +No, !- Run Simulation for Sizing Periods +YES; !- Run Simulation for Weather File Run Periods + +!- =========== ALL OBJECTS IN CLASS: RUNPERIOD =========== + + RunPeriod, + , !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + , !- Begin Year + 12, !- End Month + 31, !- End Day of Month + , !- End Year + Sunday, !- Day of Week for Start Day + No, !- Use Weather File Holidays and Special Days + No, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes; !- Use Weather File Snow Indicators + +!- =========== ALL OBJECTS IN CLASS: SPECIALDAYPERIOD =========== + +! US National Holidays + + + RunPeriodControl:SpecialDays, + New Years Day, !- Name + January 1, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Veterans Day, !- Name + November 11, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Christmas, !- Name + December 25, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Independence Day, !- Name + July 4, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + MLK Day, !- Name + 3rd Monday in January, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Presidents Day, !- Name + 3rd Monday in February, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Memorial Day, !- Name + Last Monday in May, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Labor Day, !- Name + 1st Monday in September, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Columbus Day, !- Name + 2nd Monday in October, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Thanksgiving, !- Name + 4th Thursday in November,!- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + +!- =========== ALL OBJECTS IN CLASS: DAYLIGHTSAVINGPERIOD =========== + +! Daylight Saving Period in US + + + RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- Start Date + 1st Sunday in November; !- End Date + +!- =========== ALL OBJECTS IN CLASS: LOCATION =========== +! Site:Location and design-day objects created by: +! ../../_p.bin/ddy2idf /projects/bigsim/weather/EnergyPlus/tmy3.new/all/USA_GA_Atlanta-Hartsfield.Jackson.Intl.AP.722190_TMY3.ddy +! +Site:Location, + Atlanta-Hartsfield.Jackson.Intl.AP_GA_USA WMO=722190, !- Site:Location Name + 33.64, !- Latitude {N+ S-} + -84.43, !- Longitude {W- E+} + -5.00, !- Time Zone Relative to GMT {GMT+/-} + 313.00; !- Elevation {m} + +SizingPeriod:DesignDay, + Atlanta-Hartsfield.Jackson.Intl.AP_GA_USA Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -6.3, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -6.3, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily WetBulb Temperature Range {deltaC} + 97621., !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + +SizingPeriod:DesignDay, + Atlanta-Hartsfield.Jackson.Intl.AP_GA_USA Ann Clg .4% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 34.4, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 23.5, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily WetBulb Temperature Range {deltaC} + 97621., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + +!- =========== ALL OBJECTS IN CLASS: WATER MAINS TEMPERATURES =========== + + + Site:WaterMainsTemperature, + Correlation, !- Calculation Method + , !- Temperature Schedule Name +16.6, !- Annual average outdoor air temperature {C} +22.5; !- Maximum difference in monthly average outdoor air temperatures {C} + + +!- =========== ALL OBJECTS IN CLASS: Site:GroundTemperature:FCfactorMethod =========== + +Site:GroundTemperature:FCfactorMethod, +16.0, !- January Ground Temperature {C} +11.9, !- February Ground Temperature {C} +7.7, !- March Ground Temperature {C} +4.0, !- April Ground Temperature {C} +7.9, !- May Ground Temperature {C} +13.8, !- June Ground Temperature {C} +17.2, !- July Ground Temperature {C} +20.8, !- August Ground Temperature {C} +24.8, !- September Ground Temperature {C} +26.1, !- October Ground Temperature {C} +26.5, !- November Ground Temperature {C} +22.5; !- December Ground Temperature {C} + + +!- =========== ALL OBJECTS IN CLASS: MATERIAL:REGULAR-R =========== + + Material:NoMass, + Opaque Door panel_con, !- Name + MediumRough, !- Roughness + 0.475963827, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material:NoMass, + Overhead Door_con Panel, !- Name + MediumRough, !- Roughness + 0.567741935, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION =========== + + Construction, + Swinging Door_con, !- Name + Opaque Door panel_con; !- Outside Layer + + Construction, + Overhead Door_con, !- Name + Overhead Door_con Panel; !- Outside Layer + +!- =========== Opaque Constructions =========== + + +! +!- =========== ALL OBJECTS IN CLASS: MATERIAL:REGULAR =========== + + Material, + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness {m} + 0.12, !- Conductivity {W/m-K} + 540.0000, !- Density {kg/m3} + 1210, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.7000000; !- Visible Absorptance + + Material, + AC02 Acoustic Ceiling, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 5.7000000E-02, !- Conductivity {W/m-K} + 288.0000, !- Density {kg/m3} + 1339.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.2000000; !- Visible Absorptance + + Material, + F07 25mm stucco, !- Name + Smooth, !- Roughness + 0.0254, !- Thickness {m} + 0.72, !- Conductivity {W/m-K} + 1856, !- Density {kg/m3} + 840, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + F08 Metal surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness {m} + 45.28, !- Conductivity {W/m-K} + 7824, !- Density {kg/m3} + 500; !- Specific Heat {J/kg-K} + + Material, + F08 Metal roof surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness {m} + 45.28, !- Conductivity {W/m-K} + 7824, !- Density {kg/m3} + 500, !- Specific Heat {J/kg-K} + 0.75, !- Absorptance:Thermal + 0.45; !- Absorptance:Solar + + Material, + F12 Asphalt shingles, !- Name + VeryRough, !- Roughness + 0.0032, !- Thickness {m} + 0.04, !- Conductivity {W/m-K} + 1120, !- Density {kg/m3} + 1260, !- Specific Heat {J/kg-K} + 0.75, !- Absorptance:Thermal + 0.45; !- Absorptance:Solar + + Material, + F13 Built-up roofing, !- Name + Rough, !- Roughness + 0.0095, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 1120, !- Density {kg/m3} + 1460, !- Specific Heat {J/kg-K} + 0.75, !- Absorptance:Thermal + 0.45; !- Absorptance:Solar + + Material, + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.1600, !- Conductivity {W/m-K} + 800.0000, !- Density {kg/m3} + 1090.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Absorptance:Thermal + 0.7000, !- Absorptance:Solar + 0.5000; !- Absorptance:Visible + + Material, + G01 16mm gypsum board, !- Name + MediumSmooth, !- Roughness + 0.0159, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090; !- Specific Heat {J/kg-K} + + Material, + G02 16mm plywood, !- Name + Smooth, !- Roughness + 0.0159, !- Thickness {m} + 0.12, !- Conductivity {W/m-K} + 544, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} + + Material, + M14 150mm heavyweight concrete roof, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + + Material, + 100mm Normalweight concrete wall, !- Name - based on 90.1-2004 Appendix-Table A3-1B + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + + Material, + 200mm Normalweight concrete wall, !- Name - based on 90.1-2004 Appendix-Table A3-1B + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + 100mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + 150mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + 200mm Normalweight concrete floor, !- Name - based on 90.1-2004 Appendix-Table A3-1B + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + M10 200mm concrete block wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 0.72, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + M10 200mm concrete block basement wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.326, !- Conductivity {W/m-K} + 1842, !- Density {kg/m3} + 912; !- Specific Heat {J/kg-K} + + + + + + + + Material:NoMass, + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.21648, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + + + Material:NoMass, + Air_Wall_Material, !- Name + Rough, !- Roughness + 0.2079491, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + + + Material:NoMass, + Nonres_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 4.31888738734588, + !- Thermal Resistance {m2-K/W} + 0.9, !- Absorptance:Thermal + 0.7, !- Absorptance:Solar + 0.7; !- Absorptance:Visible + + Material:NoMass, + Res_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, + !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material:NoMass, + Semiheated_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, + !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + + + Material:NoMass, + Nonres_Exterior_Wall_Insulation, !- Name + MediumSmooth, !- Roughness + 1.11475616416303, + !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material:NoMass, + Res_Exterior_Wall_Insulation, !- Name + MediumSmooth, !- Roughness + 1.37633321943004, + !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material:NoMass, + Semiheated_Exterior_Wall_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, + !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + + + Material:NoMass, + Nonres_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + + 0.0299387330245182, + !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material:NoMass, + Res_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + + 0.0299387330245182, + !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material:NoMass, + Semiheated_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + + 0.0299387330245182, + !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + + + + + + Material:NoMass, + Std Opaque Door Panel, !- Name + MediumRough, !- Roughness + 0.123456790123457, !- (corresponds to default RSI-0.12327 or R-0.7) Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION =========== + + Construction, + InteriorFurnishings, !- Name + Std Wood 6inch; !- Outside Layer + + Construction, + Air_Wall, !- Name + Air_Wall_Material; !- Outside Layer + + Construction, + DropCeiling, !- Name + AC02 Acoustic Ceiling; !- Outside Layer + + Construction, + OpaqueDoor, !- Name + Std Opaque Door Panel; !- Outside Layer + + Construction, + AtticRoofDeck, !- Name + F12 Asphalt shingles, !- Outside Layer + G02 16mm plywood; !- Layer 2 + + Construction, + int_wall, !- Name + G01 13mm gypsum board, !- Outside Layer + G01 13mm gypsum board; !- Layer 2 + + Construction, + ext_slab_8in_with_carpet,!- Name + 200mm Normalweight concrete floor, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + + Construction, + ext_slab_8in, !- Name + 200mm Normalweight concrete floor; !- Outside Layer + + Construction, + ext_slab_6in_with_carpet,!- Name + 150mm Normalweight concrete floor, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + + Construction, + ext_slab_6in, !- Name + 150mm Normalweight concrete floor; !- Outside Layer + + Construction, + int_slab_floor, !- Name + 100mm Normalweight concrete floor, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + + Construction, + int_slab_ceiling, !- Name + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor; !- Layer 2 + + Construction, + basement_wall, !- Name + M10 200mm concrete block basement wall; !- Outside Layer + + Construction, + int_wood_floor, !- Name + AC02 Acoustic Ceiling, !- Outside Layer + G02 16mm plywood, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + + Construction, + ext_soffit_floor, !- Name + G02 16mm plywood; !- Outside Layer + + Construction, + nonres_roof, !- Name + F13 Built-up roofing, !- Outside Layer + Nonres_Roof_Insulation, !- Layer #2 + F08 Metal surface; !- Layer #3 + + + Construction, + res_roof, !- Name + F13 Built-up roofing, !- Outside Layer + Res_Roof_Insulation, !- Layer #2 + F08 Metal surface; !- Layer #3 + + + Construction, + semiheated_roof, !- Name + F13 Built-up roofing, !- Outside Layer + Semiheated_Roof_Insulation, !- Layer #2 + F08 Metal surface; !- Layer #3 + + + + + Construction, + nonres_ext_wall, !- Name + 200mm Normalweight concrete wall, !- Outside Layer + Nonres_Exterior_Wall_Insulation, !- Layer #2 + G01 13mm gypsum board; !- Layer #3 + + + Construction, + res_ext_wall, !- Name + 200mm Normalweight concrete wall, !- Outside Layer + Res_Exterior_Wall_Insulation, !- Layer #2 + G01 13mm gypsum board; !- Layer #3 + + + Construction, + semiheated_ext_wall, !- Name + 200mm Normalweight concrete wall, !- Outside Layer + Semiheated_Exterior_Wall_Insulation, !- Layer #2 + G01 13mm gypsum board; !- Layer #3 + + + Construction, + nonres_floor, !- Name + Nonres_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer #1 + CP02 CARPET PAD; !- Layer #2 + + + Construction, + res_floor, !- Name + Res_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer #1 + CP02 CARPET PAD; !- Layer #2 + + + Construction, + semiheated_floor, !- Name + Semiheated_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer #1 + CP02 CARPET PAD; !- Layer #2 + + + Construction, + nonres_floor_ceiling, !- Name - reverse ordered layers for nonres_floor + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer #1 + Nonres_Floor_Insulation; !- Layer #2 + + Construction, + res_floor_ceiling, !- Name - reverse ordered layers for res_floor + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer #1 + Res_Floor_Insulation; !- Layer #2 + + Construction, + semiheated_floor_ceiling, !- Name - reverse ordered layers for semiheated_floor + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer #1 + Semiheated_Floor_Insulation; !- Layer #2 + + + + + + + +!- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:SIMPLEGLAZINGSYSTEM =========== + +WindowMaterial:SimpleGlazingSystem, + Nonres Window Glazing Layer, !- Name + 2.4416518, !- U-Factor {W/m2-K} + 0.25, !- Solar Heat Gain Coefficient + 0.275; !- Visible Transmittance + +Construction, + NonresWindow_U_0.43_SHGC_0.25, !- Name + Nonres Window Glazing Layer; !- Outside Layer +WindowMaterial:SimpleGlazingSystem, + Nonres East Glazing Layer, !- Name + 2.4416518, !- U-Factor {W/m2-K} + 0.25, !- Solar Heat Gain Coefficient + 0.275; !- Visible Transmittance +Construction, + NonreseastWindow_U_0.43_SHGC_0.25, !- Name + Nonres East Glazing Layer; !- Outside Layer + +!- Res Windows + +WindowMaterial:SimpleGlazingSystem, + Res Window Glazing Layer, !- Name + 2.4416518, !- U-Factor {W/m2-K} + 0.25, !- Solar Heat Gain Coefficient + 0.275; !- Visible Transmittance +Construction, + ResWindow_U_0.43_SHGC_0.25, !- Name + Res Window Glazing Layer; !- Outside Layer +WindowMaterial:SimpleGlazingSystem, + Res East Glazing Layer, !- Name + 2.4416518, !- U-Factor {W/m2-K} + 0.25, !- Solar Heat Gain Coefficient + 0.275; !- Visible Transmittance +Construction, + ReseastWindow_U_0.43_SHGC_0.25, !- Name + Res East Glazing Layer; !- Outside Layer + + + Construction:CfactorUndergroundWall, + Basement_Wall_North_Cfactor, !- Name + 6.47292, !- C-Factor + 2.439; !- Height + + Construction:CfactorUndergroundWall, + Basement_Wall_East_Cfactor, !- Name + 6.47292, !- C-Factor + 2.439; !- Height + + Construction:CfactorUndergroundWall, + Basement_Wall_South_Cfactor, !- Name + 6.47292, !- C-Factor + 2.439; !- Height + + Construction:CfactorUndergroundWall, + Basement_Wall_West_Cfactor, !- Name + 6.47292, !- C-Factor + 2.439; !- Height + + + +!- =========== ALL OBJECTS IN CLASS: ZONE =========== + + + Zone, + Basement, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 2.4390, !- Ceiling Height {m} + 9120.2700, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + ER_Exam1_Mult4_Flr_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 4.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 118.9600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + ER_Trauma1_Flr_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 118.9600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + ER_Exam3_Mult4_Flr_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 4.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 118.9600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + ER_Trauma2_Flr_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 118.9600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + ER_Triage_Mult4_Flr_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 4.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 118.9600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Office1_Mult4_Flr_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 5.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 59.5000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Lobby_Records_Flr_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 6294.9200, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Corridor_Flr_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2428.7900, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + ER_NurseStn_Lobby_Flr_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 5273.9500, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + OR1_Flr_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 237.9100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + OR2_Mult5_Flr_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 5.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 237.9100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + OR3_Flr_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 237.9100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + OR4_Flr_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 951.7000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + IC_PatRoom1_Mult5_Flr_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 5.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 89.2100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + IC_PatRoom2_Flr_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 118.9600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + IC_PatRoom3_Mult6_Flr_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 6.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 89.2100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + ICU_Flr_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2637.6300, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + ICU_NurseStn_Lobby_Flr_2,!- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2854.5100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Corridor_Flr_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2428.7900, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + OR_NurseStn_Lobby_Flr_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 4322.2400, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom1_Mult10_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 10.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 89.2100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom2_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 148.7100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom3_Mult10_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 10.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 86.2600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom4_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 148.7100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom5_Mult10_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 10.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 89.2100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PhysTherapy_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2081.8200, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom6_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 118.9600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom7_Mult10_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 10.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 86.2600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom8_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 118.9600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + NurseStn_Lobby_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 3866.2500, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Lab_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 1129.4300, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Corridor_SE_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2418.8800, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Corridor_NW_Flr_3, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2418.8800, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom1_Mult10_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 10.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 89.2100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom2_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 148.7100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom3_Mult10_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 10.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 86.2600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom4_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 148.7100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom5_Mult10_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 10.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 89.2100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Radiology_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2081.8200, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom6_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 118.9600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom7_Mult10_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 10.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 86.2600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + PatRoom8_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 118.9600, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + NurseStn_Lobby_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 3866.2200, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Lab_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 1129.4300, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Corridor_SE_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2418.8800, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Corridor_NW_Flr_4, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2418.8800, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Dining_Flr_5, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2974.0400, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + NurseStn_Lobby_Flr_5, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 4441.2300, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Kitchen_Flr_5, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 3965.3700, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Office1_Flr_5, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 297.5000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Office2_Mult5_Flr_5, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 5.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 297.4100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Office3_Flr_5, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 297.4100, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Office4_Mult6_Flr_5, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 6.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 59.5000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + + + + Zone, + Corridor_Flr_5, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.2683, !- Ceiling Height {m} + 2141.3200, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + YES; !- Part of Total Floor Area + +!- =========== ALL OBJECTS IN CLASS: SURFACEGEOMETRY =========== + + + GlobalGeometryRules, + ULC, !- Starting Vertex Position + CCW, !- Vertex Entry Direction + Relative; !- Coordinate System + +!- =========== ALL OBJECTS IN CLASS: SURFACE:HEATTRANSFER =========== + + + BuildingSurface:Detailed, + Basement_Wall_North, !- Name + Wall, !- Surface Type + Basement_Wall_North_Cfactor, !- Construction Name + Basement, !- Zone Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,53.3400,-2.4390, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,53.3400,-2.4390, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Basement_Wall_East, !- Name + Wall, !- Surface Type + Basement_Wall_East_Cfactor, !- Construction Name + Basement, !- Zone Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,-2.4390, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,53.3400,-2.4390, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Basement_Wall_South, !- Name + Wall, !- Surface Type + Basement_Wall_South_Cfactor, !- Construction Name + Basement, !- Zone Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,-2.4390, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,0.0000,-2.4390, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Basement_Wall_West, !- Name + Wall, !- Surface Type + Basement_Wall_West_Cfactor, !- Construction Name + Basement, !- Zone Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,53.3400,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,53.3400,-2.4390, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,-2.4390, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Basement_Floor, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet,!- Construction Name + Basement, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,-2.4390, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,-2.4390, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,-2.4390, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,-2.4390; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Basement_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Basement, !- Zone Name + Surface, !- Outside Boundary Condition + Basement_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam1_Mult4_Flr_1_Wall_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + ER_Exam1_Mult4_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.7200,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 45.7200,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam1_Mult4_Flr_1_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + ER_Exam1_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Exam1_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.7200,4.5720,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 45.7200,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,4.5720,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam1_Mult4_Flr_1_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Exam1_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Exam1_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.7200,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 45.7200,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam1_Mult4_Flr_1_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Exam1_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Exam1_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.7200,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 45.7200,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.7200,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 45.7200,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam1_Mult4_Flr_1_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Exam1_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Exam1_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam1_Mult4_Flr_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + ER_Exam1_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Exam1_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 45.7200,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 45.7200,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma1_Flr_1_Wall_East, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + ER_Trauma1_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma1_Flr_1_Wall_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + ER_Trauma1_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma1_Flr_1_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + ER_Trauma1_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Trauma1_Flr_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,4.5720,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma1_Flr_1_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Trauma1_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Trauma1_Flr_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma1_Flr_1_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Trauma1_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Trauma1_Flr_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma1_Flr_1_Ceiling,!- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + ER_Trauma1_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Trauma1_Flr_1_Ceiling,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam3_Mult4_Flr_1_Wall_East, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + ER_Exam3_Mult4_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,9.1440,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,9.1440,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam3_Mult4_Flr_1_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + ER_Exam3_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Exam3_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,9.1440,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,9.1440,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam3_Mult4_Flr_1_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Exam3_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Exam3_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,9.1440,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,9.1440,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,9.1440,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,9.1440,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam3_Mult4_Flr_1_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Exam3_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Exam3_Mult4_Flr_1_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam3_Mult4_Flr_1_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Exam3_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Exam3_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,9.1440,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,9.1440,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Exam3_Mult4_Flr_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + ER_Exam3_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Exam3_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,9.1440,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,4.5720,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,9.1440,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma2_Flr_1_Wall_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + ER_Trauma2_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma2_Flr_1_Wall_East, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + ER_Trauma2_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma2_Flr_1_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + ER_Trauma2_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Trauma2_Flr_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma2_Flr_1_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Trauma2_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Trauma2_Flr_1_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma2_Flr_1_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Trauma2_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Trauma2_Flr_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Trauma2_Flr_1_Ceiling,!- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + ER_Trauma2_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Trauma2_Flr_1_Ceiling,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Triage_Mult4_Flr_1_Wall_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + ER_Triage_Mult4_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.7200,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 45.7200,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Triage_Mult4_Flr_1_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + ER_Triage_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Triage_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.7200,53.3400,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 45.7200,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Triage_Mult4_Flr_1_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Triage_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Triage_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 45.7200,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 45.7200,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.7200,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 45.7200,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Triage_Mult4_Flr_1_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Triage_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Triage_Mult4_Flr_1_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 45.7200,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 45.7200,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Triage_Mult4_Flr_1_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_Triage_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Triage_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_Triage_Mult4_Flr_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + ER_Triage_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_Triage_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 45.7200,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 45.7200,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Mult4_Flr_1_Wall_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Office1_Mult4_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Mult4_Flr_1_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Office1_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Office1_Mult4_Flr_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,4.5720,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,4.5720,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Mult4_Flr_1_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office1_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Office1_Mult4_Flr_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Mult4_Flr_1_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office1_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Office1_Mult4_Flr_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Mult4_Flr_1_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office1_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Office1_Mult4_Flr_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Mult4_Flr_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Office1_Mult4_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Office1_Mult4_Flr_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_Records_Flr_1_Wall_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_Records_Flr_1_Wall_1_West, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_Records_Flr_1_Wall_1_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_Records_Flr_1_Wall_2_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 21.3415,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 21.3415,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_Records_Flr_1_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_Records_Flr_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 8, !- Number of Vertices + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 4 {m} + 21.3415,0.0000,0.0000, !- X,Y,Z ==> Vertex 5 {m} + 21.3415,4.5720,0.0000, !- X,Y,Z ==> Vertex 6 {m} + 6.0960,4.5720,0.0000, !- X,Y,Z ==> Vertex 7 {m} + 6.0960,0.0000,0.0000; !- X,Y,Z ==> Vertex 8 {m} + + BuildingSurface:Detailed, + Lobby_Records_Flr_1_Wall_3_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_Records_Flr_1_Wall_3_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 21.3415,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 21.3415,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 21.3415,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 21.3415,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_Records_Flr_1_Wall_1_East, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_1_Wall_1_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,15.2400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,15.2400,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_Records_Flr_1_Wall_2_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_1_Wall_2_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,15.2400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,15.2400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_Records_Flr_1_Wall_3_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_Records_Flr_1_Wall_3_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_Records_Flr_1_Wall_3_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_Records_Flr_1_Wall_3_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 21.3415,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 21.3415,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_Records_Flr_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_Records_Flr_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 8, !- Number of Vertices + 0.0000,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,4.5720,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 21.3415,4.5720,4.2683, !- X,Y,Z ==> Vertex 4 {m} + 21.3415,0.0000,4.2683, !- X,Y,Z ==> Vertex 5 {m} + 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 6 {m} + 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 7 {m} + 0.0000,53.3400,4.2683; !- X,Y,Z ==> Vertex 8 {m} + + BuildingSurface:Detailed, + Corridor_Flr_1_Wall_1_West, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_Records_Flr_1_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,15.2400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,15.2400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_1_Wall_2_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_Records_Flr_1_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,15.2400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,15.2400,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_1_Wall_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,53.3400,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_1_Wall_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_1_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corridor_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,53.3400,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_1_Wall_East,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_1_Wall_East,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,53.3400,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corridor_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_NurseStn_Lobby_Flr_1_Wall_1_East, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + ER_NurseStn_Lobby_Flr_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,13.7160,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,13.7160,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,39.6240,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,39.6240,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_NurseStn_Lobby_Flr_1_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + ER_NurseStn_Lobby_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_NurseStn_Lobby_Flr_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 8, !- Number of Vertices + 39.6240,4.5720,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,39.6240,0.0000, !- X,Y,Z ==> Vertex 4 {m} + 70.1040,39.6240,0.0000, !- X,Y,Z ==> Vertex 5 {m} + 70.1040,13.7160,0.0000, !- X,Y,Z ==> Vertex 6 {m} + 64.0080,13.7160,0.0000, !- X,Y,Z ==> Vertex 7 {m} + 64.0080,4.5720,0.0000; !- X,Y,Z ==> Vertex 8 {m} + + BuildingSurface:Detailed, + ER_NurseStn_Lobby_Flr_1_Wall_1_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_NurseStn_Lobby_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_NurseStn_Lobby_Flr_1_Wall_1_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_NurseStn_Lobby_Flr_1_Wall_2_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_NurseStn_Lobby_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_NurseStn_Lobby_Flr_1_Wall_2_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,39.6240,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,39.6240,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,39.6240,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,39.6240,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_NurseStn_Lobby_Flr_1_Wall_1_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_NurseStn_Lobby_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_NurseStn_Lobby_Flr_1_Wall_1_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,48.7680,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_NurseStn_Lobby_Flr_1_Wall_2_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_NurseStn_Lobby_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_NurseStn_Lobby_Flr_1_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,13.7160,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,13.7160,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_NurseStn_Lobby_Flr_1_Wall_3_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_NurseStn_Lobby_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_NurseStn_Lobby_Flr_1_Wall_3_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,39.6240,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,39.6240,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,48.7680,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_NurseStn_Lobby_Flr_1_Wall_1_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_NurseStn_Lobby_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_NurseStn_Lobby_Flr_1_Wall_1_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,4.5720,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,4.5720,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0080,4.5720,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_NurseStn_Lobby_Flr_1_Wall_2_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ER_NurseStn_Lobby_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_NurseStn_Lobby_Flr_1_Wall_2_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0080,13.7160,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,13.7160,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,13.7160,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,13.7160,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ER_NurseStn_Lobby_Flr_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + ER_NurseStn_Lobby_Flr_1, !- Zone Name + Surface, !- Outside Boundary Condition + ER_NurseStn_Lobby_Flr_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 8, !- Number of Vertices + 39.6240,4.5720,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 64.0080,4.5720,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 64.0080,13.7160,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,13.7160,4.2683, !- X,Y,Z ==> Vertex 4 {m} + 70.1040,39.6240,4.2683, !- X,Y,Z ==> Vertex 5 {m} + 64.0080,39.6240,4.2683, !- X,Y,Z ==> Vertex 6 {m} + 64.0080,48.7680,4.2683, !- X,Y,Z ==> Vertex 7 {m} + 39.6240,48.7680,4.2683; !- X,Y,Z ==> Vertex 8 {m} + + BuildingSurface:Detailed, + OR1_Flr_2_Wall_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + OR1_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR1_Flr_2_Wall_East, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + OR1_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR1_Flr_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + OR1_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR1_Flr_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR1_Flr_2_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR1_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR1_Flr_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR1_Flr_2_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR1_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR1_Flr_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR1_Flr_2_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + OR1_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR1_Flr_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,47.2440,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,47.2440,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR2_Mult5_Flr_2_Wall_East, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + OR2_Mult5_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,41.1480,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,41.1480,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR2_Mult5_Flr_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + OR2_Mult5_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR2_Mult5_Flr_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,41.1480,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,41.1480,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,47.2440,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR2_Mult5_Flr_2_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR2_Mult5_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR2_Mult5_Flr_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR2_Mult5_Flr_2_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR2_Mult5_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR2_Mult5_Flr_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,41.1480,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,41.1480,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,41.1480,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,41.1480,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR2_Mult5_Flr_2_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR2_Mult5_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR2_Mult5_Flr_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,41.1480,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,41.1480,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR2_Mult5_Flr_2_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + OR2_Mult5_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR2_Mult5_Flr_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,41.1480,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,41.1480,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR3_Flr_2_Wall_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + OR3_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 48.7680,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR3_Flr_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + OR3_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR3_Flr_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR3_Flr_2_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR3_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR3_Flr_2_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 48.7680,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 48.7680,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR3_Flr_2_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR3_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR3_Flr_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 48.7680,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR3_Flr_2_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR3_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR3_Flr_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR3_Flr_2_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + OR3_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR3_Flr_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,47.2440,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 48.7680,47.2440,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 48.7680,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR4_Flr_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + OR4_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR4_Flr_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,47.2440,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR4_Flr_2_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR4_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR4_Flr_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 48.7680,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR4_Flr_2_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR4_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR4_Flr_2_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 48.7680,22.8600,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 48.7680,47.2440,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 48.7680,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR4_Flr_2_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR4_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR4_Flr_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,22.8600,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 48.7680,22.8600,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR4_Flr_2_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR4_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR4_Flr_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,47.2440,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,22.8600,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR4_Flr_2_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + OR4_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR4_Flr_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,47.2440,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,22.8600,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 48.7680,22.8600,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 48.7680,47.2440,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom1_Mult5_Flr_2_Wall_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + IC_PatRoom1_Mult5_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 24.3840,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 24.3840,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom1_Mult5_Flr_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + IC_PatRoom1_Mult5_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom1_Mult5_Flr_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 24.3840,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 24.3840,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom1_Mult5_Flr_2_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + IC_PatRoom1_Mult5_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom1_Mult5_Flr_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.3840,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 24.3840,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 24.3840,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 24.3840,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom1_Mult5_Flr_2_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + IC_PatRoom1_Mult5_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom1_Mult5_Flr_2_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom1_Mult5_Flr_2_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + IC_PatRoom1_Mult5_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom1_Mult5_Flr_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.3840,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 24.3840,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom1_Mult5_Flr_2_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + IC_PatRoom1_Mult5_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom1_Mult5_Flr_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.3840,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 24.3840,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom2_Flr_2_Wall_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + IC_PatRoom2_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom2_Flr_2_Wall_West, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + IC_PatRoom2_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom2_Flr_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + IC_PatRoom2_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom2_Flr_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom2_Flr_2_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + IC_PatRoom2_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom2_Flr_2_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom2_Flr_2_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + IC_PatRoom2_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom2_Flr_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom2_Flr_2_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + IC_PatRoom2_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom2_Flr_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom3_Mult6_Flr_2_Wall_West, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + IC_PatRoom3_Mult6_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,44.1960,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,44.1960,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom3_Mult6_Flr_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + IC_PatRoom3_Mult6_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom3_Mult6_Flr_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,44.1960,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,44.1960,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,48.7680,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom3_Mult6_Flr_2_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + IC_PatRoom3_Mult6_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom3_Mult6_Flr_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom3_Mult6_Flr_2_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + IC_PatRoom3_Mult6_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom3_Mult6_Flr_2_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,44.1960,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,44.1960,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom3_Mult6_Flr_2_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + IC_PatRoom3_Mult6_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom3_Mult6_Flr_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,44.1960,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,44.1960,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,44.1960,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,44.1960,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + IC_PatRoom3_Mult6_Flr_2_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + IC_PatRoom3_Mult6_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + IC_PatRoom3_Mult6_Flr_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,44.1960,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,44.1960,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_Flr_2_Wall_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + ICU_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_Flr_2_Wall_West, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + ICU_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,21.3415,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_Flr_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + ICU_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + ICU_Flr_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,21.3415,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,21.3415,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_Flr_2_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ICU_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + ICU_Flr_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,21.3415,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,21.3415,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,21.3415,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_Flr_2_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ICU_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + ICU_Flr_2_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,21.3415,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,21.3415,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_Flr_2_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + ICU_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + ICU_Flr_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,21.3415,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_NurseStn_Lobby_Flr_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + ICU_NurseStn_Lobby_Flr_2,!- Zone Name + Surface, !- Outside Boundary Condition + ICU_NurseStn_Lobby_Flr_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,21.3415,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,21.3415,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_NurseStn_Lobby_Flr_2_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ICU_NurseStn_Lobby_Flr_2,!- Zone Name + Surface, !- Outside Boundary Condition + ICU_NurseStn_Lobby_Flr_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_NurseStn_Lobby_Flr_2_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ICU_NurseStn_Lobby_Flr_2,!- Zone Name + Surface, !- Outside Boundary Condition + ICU_NurseStn_Lobby_Flr_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,48.7680,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,48.7680,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,21.3415,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,21.3415,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_NurseStn_Lobby_Flr_2_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ICU_NurseStn_Lobby_Flr_2,!- Zone Name + Surface, !- Outside Boundary Condition + ICU_NurseStn_Lobby_Flr_2_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,21.3415,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,48.7680,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_NurseStn_Lobby_Flr_2_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + ICU_NurseStn_Lobby_Flr_2,!- Zone Name + Surface, !- Outside Boundary Condition + ICU_NurseStn_Lobby_Flr_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,21.3415,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,21.3415,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,21.3415,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + ICU_NurseStn_Lobby_Flr_2_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + ICU_NurseStn_Lobby_Flr_2,!- Zone Name + Surface, !- Outside Boundary Condition + ICU_NurseStn_Lobby_Flr_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,21.3415,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,21.3415,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,48.7680,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_2_Wall_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_2_Wall_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corridor_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,53.3400,4.2683; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_2_Wall_East,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_2_Wall_East,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_2_Wall_West,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_2_Wall_West,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_2_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corridor_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR_NurseStn_Lobby_Flr_2_Wall_1_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + OR_NurseStn_Lobby_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 48.7680,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR_NurseStn_Lobby_Flr_2_Wall_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + OR_NurseStn_Lobby_Flr_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR_NurseStn_Lobby_Flr_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + OR_NurseStn_Lobby_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR_NurseStn_Lobby_Flr_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 8, !- Number of Vertices + 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 4 {m} + 60.9600,53.3400,4.2683, !- X,Y,Z ==> Vertex 5 {m} + 60.9600,16.7640,4.2683, !- X,Y,Z ==> Vertex 6 {m} + 70.1040,16.7640,4.2683, !- X,Y,Z ==> Vertex 7 {m} + 70.1040,0.0000,4.2683; !- X,Y,Z ==> Vertex 8 {m} + + BuildingSurface:Detailed, + OR_NurseStn_Lobby_Flr_2_Wall_2_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR_NurseStn_Lobby_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR_NurseStn_Lobby_Flr_2_Wall_2_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 48.7680,22.8600,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,22.8600,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR_NurseStn_Lobby_Flr_2_Wall_3_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR_NurseStn_Lobby_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR_NurseStn_Lobby_Flr_2_Wall_3_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,16.7640,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,16.7640,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,16.7640,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,16.7640,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR_NurseStn_Lobby_Flr_2_Wall_1_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR_NurseStn_Lobby_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR_NurseStn_Lobby_Flr_2_Wall_1_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,22.8600,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,22.8600,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR_NurseStn_Lobby_Flr_2_Wall_2_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR_NurseStn_Lobby_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR_NurseStn_Lobby_Flr_2_Wall_2_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 48.7680,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 48.7680,53.3400,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 48.7680,22.8600,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 48.7680,22.8600,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR_NurseStn_Lobby_Flr_2_Wall_1_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR_NurseStn_Lobby_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR_NurseStn_Lobby_Flr_2_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,16.7640,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,16.7640,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR_NurseStn_Lobby_Flr_2_Wall_2_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + OR_NurseStn_Lobby_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR_NurseStn_Lobby_Flr_2_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,16.7640,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,16.7640,4.2683, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,53.3400,4.2683, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + OR_NurseStn_Lobby_Flr_2_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + OR_NurseStn_Lobby_Flr_2, !- Zone Name + Surface, !- Outside Boundary Condition + OR_NurseStn_Lobby_Flr_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 8, !- Number of Vertices + 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,16.7640,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,16.7640,8.5366, !- X,Y,Z ==> Vertex 4 {m} + 60.9600,53.3400,8.5366, !- X,Y,Z ==> Vertex 5 {m} + 48.7680,53.3400,8.5366, !- X,Y,Z ==> Vertex 6 {m} + 48.7680,22.8600,8.5366, !- X,Y,Z ==> Vertex 7 {m} + 39.6240,22.8600,8.5366; !- X,Y,Z ==> Vertex 8 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_3_Wall_South, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom1_Mult10_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom1_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom1_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,4.5720,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,4.5720,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_3_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom1_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom1_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_3_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom1_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom1_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_3_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom1_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom1_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom1_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom1_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_3_Wall_East,!- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom2_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_3_Wall_South, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom2_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom2_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom2_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,4.5720,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_3_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom2_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom2_Flr_3_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_3_Wall_West,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom2_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom2_Flr_3_Wall_West,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom2_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom2_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_3_Wall_East, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom3_Mult10_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,8.9920,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom3_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom3_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,8.9920,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,8.9920,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_3_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom3_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom3_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,8.9920,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,8.9920,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_3_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom3_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom3_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_3_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom3_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom3_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,8.9920,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom3_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom3_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_3_Wall_North, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom4_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_3_Wall_East,!- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom4_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom4_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom4_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_3_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom4_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom4_Flr_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_3_Wall_West,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom4_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom4_Flr_3_Wall_West,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom4_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom4_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_3_Wall_North, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom5_Mult10_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom5_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom5_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_3_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom5_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom5_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_3_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom5_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom5_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_3_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom5_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom5_Mult10_Flr_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom5_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom5_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PhysTherapy_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PhysTherapy_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PhysTherapy_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PhysTherapy_Flr_3_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PhysTherapy_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_2_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PhysTherapy_Flr_3_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PhysTherapy_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Wall_1_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PhysTherapy_Flr_3_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PhysTherapy_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Wall_1_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PhysTherapy_Flr_3_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PhysTherapy_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PhysTherapy_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PhysTherapy_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PhysTherapy_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_3_Wall_South, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom6_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_3_Wall_West,!- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom6_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom6_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom6_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,4.5720,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,4.5720,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_3_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom6_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom6_Flr_3_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_3_Wall_East,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom6_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom6_Flr_3_Wall_East,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom6_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom6_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_3_Wall_West, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom7_Mult10_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,8.9920,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom7_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom7_Mult10_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,8.9920,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,8.9920,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_3_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom7_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom7_Mult10_Flr_3_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,8.9920,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,8.9920,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_3_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom7_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom7_Mult10_Flr_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,8.9920,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_3_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom7_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom7_Mult10_Flr_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom7_Mult10_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom7_Mult10_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_3_Wall_North, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom8_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_3_Wall_West,!- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom8_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom8_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom8_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,53.3400,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,8.5366; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_3_Wall_East,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom8_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom8_Flr_3_Wall_East,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_3_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom8_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom8_Flr_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom8_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom8_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Wall_1_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PhysTherapy_Flr_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Wall_1_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PhysTherapy_Flr_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 4 {m} + 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 5 {m} + 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 6 {m} + 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 7 {m} + 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 8 {m} + 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 9 {m} + 9.1440,33.5280,8.5366; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Wall_2_North, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_3_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Wall_2_East, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Wall_2_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Wall_1_South, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Wall_1_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Wall_1_West, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,33.5280,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,33.5280,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 4 {m} + 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 5 {m} + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 6 {m} + 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 7 {m} + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 8 {m} + 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 9 {m} + 39.6240,42.6720,12.8049; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Wall_2_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_3_Wall_1_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,33.5280,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,33.5280,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Wall_3_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_3_Wall_2_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Wall_2_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_3_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_3_Wall_3_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_3_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Lab_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 6, !- Number of Vertices + 9.1440,33.5280,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 4 {m} + 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 5 {m} + 9.1440,10.6680,8.5366; !- X,Y,Z ==> Vertex 6 {m} + + BuildingSurface:Detailed, + Lab_Flr_3_Wall_1_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Wall_2_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,33.5280,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,33.5280,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_3_Wall_2_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Wall_3_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_3_Wall_1_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Wall_2_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,33.5280,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,33.5280,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_3_Wall_2_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Wall_3_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_3_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Wall_2_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Lab_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 6, !- Number of Vertices + 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 4 {m} + 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 5 {m} + 15.2400,33.5280,12.8049; !- X,Y,Z ==> Vertex 6 {m} + + BuildingSurface:Detailed, + Lab_Flr_3_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_4_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,33.5820,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,33.5820,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_1_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PhysTherapy_Flr_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,19.8120,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_2_West, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,19.8120,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_1_North, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Wall_1_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_2_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 4 {m} + 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 5 {m} + 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 6 {m} + 39.6240,4.5720,8.5366, !- X,Y,Z ==> Vertex 7 {m} + 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 8 {m} + 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 9 {m} + 28.9560,4.5720,8.5366; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_1_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_2_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_1_South, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,0.0000,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_2_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Wall_2_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_3_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Wall_3_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_3_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Wall_3_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,4.5720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_4_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Wall_4_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,4.5720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,0.0000,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,0.0000,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 4 {m} + 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 5 {m} + 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 6 {m} + 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 7 {m} + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 8 {m} + 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 9 {m} + 4.5720,10.6680,12.8049; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_3_Wall_3_North, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_4_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_1_South, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_5_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_2_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + PhysTherapy_Flr_3_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_3_South, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Wall_2_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_1_East, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_3_Wall_1_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,33.5820,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,33.5820,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 4 {m} + 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 5 {m} + 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 6 {m} + 65.5320,48.7680,8.5366, !- X,Y,Z ==> Vertex 7 {m} + 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 8 {m} + 9.1440,42.6720,8.5366, !- X,Y,Z ==> Vertex 9 {m} + 9.1440,10.6680,8.5366; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_1_North, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_2_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_2_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_3_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_3_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_2_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,53.3400,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_3_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_3_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_4_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,33.5820,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,33.5820,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_4_South, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_3_Wall_3_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,42.6720,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,42.6720,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_5_South, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_1_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_1_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_1_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,53.3400,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,48.7680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,48.7680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Wall_2_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Wall_2_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,48.7680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,48.7680,8.5366, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,10.6680,8.5366, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,10.6680,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_3_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 4 {m} + 65.5320,48.7680,12.8049, !- X,Y,Z ==> Vertex 5 {m} + 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 6 {m} + 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 7 {m} + 28.9560,53.3400,12.8049, !- X,Y,Z ==> Vertex 8 {m} + 28.9560,48.7680,12.8049, !- X,Y,Z ==> Vertex 9 {m} + 4.5720,48.7680,12.8049; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_4_Wall_South, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom1_Mult10_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom1_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom1_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_4_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom1_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom1_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_4_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom1_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom1_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_4_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom1_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom1_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom1_Mult10_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom1_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom1_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_4_Wall_East,!- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom2_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_4_Wall_South, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom2_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom2_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom2_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_4_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom2_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom2_Flr_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_4_Wall_West,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom2_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom2_Flr_4_Wall_West,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom2_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom2_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom2_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_4_Wall_East, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom3_Mult10_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,8.9920,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom3_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom3_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_4_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom3_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom3_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,8.9920,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,8.9920,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_4_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom3_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom3_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_4_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom3_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom3_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,8.9920,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom3_Mult10_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom3_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom3_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,4.5720,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,4.5720,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_4_Wall_North, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom4_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_4_Wall_East,!- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom4_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom4_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom4_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_4_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom4_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom4_Flr_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_4_Wall_West,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom4_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom4_Flr_4_Wall_West,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 62.4840,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 62.4840,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom4_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom4_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom4_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 62.4840,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 62.4840,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_4_Wall_North, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom5_Mult10_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom5_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom5_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_4_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom5_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom5_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 44.1960,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 44.1960,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_4_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom5_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom5_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_4_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom5_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom5_Mult10_Flr_4_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom5_Mult10_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom5_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom5_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 44.1960,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 44.1960,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Radiology_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Radiology_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Radiology_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Radiology_Flr_4_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Radiology_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_2_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Radiology_Flr_4_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Radiology_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Wall_1_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Radiology_Flr_4_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Radiology_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Wall_1_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Radiology_Flr_4_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Radiology_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Radiology_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Radiology_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Radiology_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,19.8120,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,19.8120,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_4_Wall_South, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom6_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_4_Wall_West,!- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom6_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom6_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom6_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,4.5720,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_4_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom6_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom6_Flr_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_4_Wall_East,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom6_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom6_Flr_4_Wall_East,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom6_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom6_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom6_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_4_Wall_West, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom7_Mult10_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,8.9920,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom7_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom7_Mult10_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,8.9920,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,8.9920,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_4_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom7_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom7_Mult10_Flr_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,8.9920,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,8.9920,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_4_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom7_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom7_Mult10_Flr_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,8.9920,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_4_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom7_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom7_Mult10_Flr_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom7_Mult10_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom7_Mult10_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom7_Mult10_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,8.9920,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,4.5720,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,4.5720,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,8.9920,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_4_Wall_North, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom8_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_4_Wall_West,!- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + PatRoom8_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + PatRoom8_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom8_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,53.3400,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,12.8049; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_4_Wall_East,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom8_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom8_Flr_4_Wall_East,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 6.0960,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 6.0960,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_4_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + PatRoom8_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom8_Flr_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + PatRoom8_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + PatRoom8_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + PatRoom8_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 6.0960,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 6.0960,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Wall_1_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Radiology_Flr_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Wall_1_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Radiology_Flr_4_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 4 {m} + 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 5 {m} + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 6 {m} + 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 7 {m} + 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 8 {m} + 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 9 {m} + 9.1440,33.5280,12.8049; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Wall_2_North, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_3_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Wall_2_East, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Wall_2_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Wall_1_South, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Wall_1_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Wall_1_West, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,33.5280,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 9.1440,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,33.5280,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,33.5280,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,19.8120,17.0732, !- X,Y,Z ==> Vertex 4 {m} + 28.9560,19.8120,17.0732, !- X,Y,Z ==> Vertex 5 {m} + 28.9560,10.6680,17.0732, !- X,Y,Z ==> Vertex 6 {m} + 60.9600,10.6680,17.0732, !- X,Y,Z ==> Vertex 7 {m} + 60.9600,19.8120,17.0732, !- X,Y,Z ==> Vertex 8 {m} + 39.6240,19.8120,17.0732, !- X,Y,Z ==> Vertex 9 {m} + 39.6240,42.6720,17.0732; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Wall_2_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_4_Wall_1_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,33.5280,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,33.5280,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Wall_3_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_4_Wall_2_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Wall_2_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_4_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,33.5280,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_4_Wall_3_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_4_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Lab_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 6, !- Number of Vertices + 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 4 {m} + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 5 {m} + 9.1440,10.6680,12.8049; !- X,Y,Z ==> Vertex 6 {m} + + BuildingSurface:Detailed, + Lab_Flr_4_Wall_1_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Wall_2_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,33.5280,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,33.5280,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,33.5280,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_4_Wall_2_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Wall_3_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_4_Wall_1_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Wall_2_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,33.5280,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,33.5280,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_4_Wall_2_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Wall_3_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_4_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Wall_2_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lab_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Lab_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 6, !- Number of Vertices + 9.1440,33.5280,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,10.6680,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,10.6680,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,19.8120,17.0732, !- X,Y,Z ==> Vertex 4 {m} + 15.2400,19.8120,17.0732, !- X,Y,Z ==> Vertex 5 {m} + 15.2400,33.5280,17.0732; !- X,Y,Z ==> Vertex 6 {m} + + BuildingSurface:Detailed, + Lab_Flr_4_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lab_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_4_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,33.5820,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,33.5820,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_1_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Radiology_Flr_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,19.8120,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_2_West, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,19.8120,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,19.8120,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_1_North, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Wall_1_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_2_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 4 {m} + 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 5 {m} + 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 6 {m} + 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 7 {m} + 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 8 {m} + 28.9560,0.0000,12.8049, !- X,Y,Z ==> Vertex 9 {m} + 28.9560,4.5720,12.8049; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_1_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_2_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_1_South, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,0.0000,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_2_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Wall_2_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_3_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Wall_3_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_3_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Wall_3_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,4.5720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,4.5720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_4_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Wall_4_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,4.5720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,0.0000,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 4.5720,4.5720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,4.5720,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 4 {m} + 39.6240,4.5720,17.0732, !- X,Y,Z ==> Vertex 5 {m} + 65.5320,4.5720,17.0732, !- X,Y,Z ==> Vertex 6 {m} + 65.5320,42.6720,17.0732, !- X,Y,Z ==> Vertex 7 {m} + 60.9600,42.6720,17.0732, !- X,Y,Z ==> Vertex 8 {m} + 60.9600,10.6680,17.0732, !- X,Y,Z ==> Vertex 9 {m} + 4.5720,10.6680,17.0732; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + Corridor_SE_Flr_4_Wall_3_North, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_4_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_1_South, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_5_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_2_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Radiology_Flr_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 60.9600,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_3_South, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Wall_2_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_1_East, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_4_Wall_1_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,33.5820,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,33.5820,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,53.3400,12.8049, !- X,Y,Z ==> Vertex 4 {m} + 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 5 {m} + 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 6 {m} + 65.5320,48.7680,12.8049, !- X,Y,Z ==> Vertex 7 {m} + 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 8 {m} + 9.1440,42.6720,12.8049, !- X,Y,Z ==> Vertex 9 {m} + 9.1440,10.6680,12.8049; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_1_North, !- Name + Wall, !- Surface Type + res_ext_wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_2_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_2_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_3_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_3_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_2_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,53.3400,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_3_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_3_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 65.5320,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_4_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Lab_Flr_4_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,33.5820,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,33.5820,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_4_South, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_SE_Flr_4_Wall_3_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 60.9600,42.6720,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 60.9600,42.6720,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 65.5320,42.6720,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,42.6720,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_5_South, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_1_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_1_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_1_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 28.9560,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 28.9560,53.3400,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 28.9560,48.7680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 28.9560,48.7680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Wall_2_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Wall_2_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5720,48.7680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 4.5720,48.7680,12.8049, !- X,Y,Z ==> Vertex 2 {m} + 4.5720,10.6680,12.8049, !- X,Y,Z ==> Vertex 3 {m} + 4.5720,10.6680,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_NW_Flr_4_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_NW_Flr_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 10, !- Number of Vertices + 4.5720,10.6680,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,10.6680,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 65.5320,42.6720,17.0732, !- X,Y,Z ==> Vertex 4 {m} + 65.5320,48.7680,17.0732, !- X,Y,Z ==> Vertex 5 {m} + 39.6240,48.7680,17.0732, !- X,Y,Z ==> Vertex 6 {m} + 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 7 {m} + 28.9560,53.3400,17.0732, !- X,Y,Z ==> Vertex 8 {m} + 28.9560,48.7680,17.0732, !- X,Y,Z ==> Vertex 9 {m} + 4.5720,48.7680,17.0732; !- X,Y,Z ==> Vertex 10 {m} + + BuildingSurface:Detailed, + Dining_Flr_5_Wall_East, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Dining_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Dining_Flr_5_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Dining_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Dining_Flr_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Dining_Flr_5_Wall_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Dining_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Dining_Flr_5_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Dining_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Kitchen_Flr_5_Wall_South,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,22.8600,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Dining_Flr_5_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Dining_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_5_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,22.8600,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Dining_Flr_5_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Dining_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,0.0000,21.3415, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,22.8600,21.3415, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_5_Wall_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + NurseStn_Lobby_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_5_Wall_1_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Dining_Flr_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_5_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + NurseStn_Lobby_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,0.0000,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_5_Wall_North, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + NurseStn_Lobby_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_5_Wall_1_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,42.6720,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_5_Wall_2_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Kitchen_Flr_5_Wall_1_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,22.8600,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_5_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + NurseStn_Lobby_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_5_Wall_1_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,42.6720,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + NurseStn_Lobby_Flr_5_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + NurseStn_Lobby_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,0.0000,21.3415, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,42.6720,21.3415, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_Flr_5_Wall_South,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Kitchen_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Dining_Flr_5_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,22.8600,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_Flr_5_Wall_1_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Kitchen_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_5_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,42.6720,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,22.8600,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_Flr_5_Wall_North,!- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Kitchen_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_Flr_5_Wall_East, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Kitchen_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,22.8600,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_Flr_5_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Kitchen_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Kitchen_Flr_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 70.1040,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 70.1040,22.8600,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,22.8600,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_Flr_5_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Kitchen_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,22.8600,21.3415, !- X,Y,Z ==> Vertex 2 {m} + 70.1040,22.8600,21.3415, !- X,Y,Z ==> Vertex 3 {m} + 70.1040,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_Flr_5_Wall_2_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Kitchen_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_5_Wall_2_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Flr_5_Wall_South,!- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Office1_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Flr_5_Wall_West, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Office1_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,7.6220,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,7.6220,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Flr_5_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Office1_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office1_Flr_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,7.6220,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,7.6220,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Flr_5_Wall_North,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office1_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office1_Flr_5_Wall_North,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,7.6220,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,7.6220,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,7.6220,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,7.6220,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Flr_5_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office1_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office1_Flr_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,7.6220,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,7.6220,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office1_Flr_5_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Office1_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,7.6220,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,21.3415, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,0.0000,21.3415, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,7.6220,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office2_Mult5_Flr_5_Wall_West, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Office2_Mult5_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,15.2400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,15.2400,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,7.6220,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,7.6220,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office2_Mult5_Flr_5_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Office2_Mult5_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office2_Mult5_Flr_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,15.2400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,7.6200,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,7.6200,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,15.2400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office2_Mult5_Flr_5_Wall_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office2_Mult5_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office2_Mult5_Flr_5_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,15.2400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,15.2400,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,15.2400,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,15.2400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office2_Mult5_Flr_5_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office2_Mult5_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office2_Mult5_Flr_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,7.6220,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,7.6220,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,15.2400,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,15.2400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office2_Mult5_Flr_5_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office2_Mult5_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office2_Mult5_Flr_5_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,7.6220,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,7.6220,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,7.6220,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,7.6220,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office2_Mult5_Flr_5_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Office2_Mult5_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,15.2400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,7.6200,21.3415, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,7.6200,21.3415, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,15.2400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office3_Flr_5_Wall_North,!- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Office3_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office3_Flr_5_Wall_West, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Office3_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,45.7200,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,45.7200,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office3_Flr_5_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Office3_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office3_Flr_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,45.7200,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,45.7200,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office3_Flr_5_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office3_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office3_Flr_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,45.7200,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,45.7200,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office3_Flr_5_Wall_South,!- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office3_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office3_Flr_5_Wall_South,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,45.7200,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,45.7200,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,45.7200,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,45.7200,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office3_Flr_5_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Office3_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,45.7200,21.3415, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,45.7200,21.3415, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office4_Mult6_Flr_5_Wall_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Office4_Mult6_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 12.1920,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 12.1920,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office4_Mult6_Flr_5_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Office4_Mult6_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office4_Mult6_Flr_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 12.1920,53.3400,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 12.1920,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,53.3400,17.0732; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office4_Mult6_Flr_5_Wall_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office4_Mult6_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office4_Mult6_Flr_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 12.1920,48.7680,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 12.1920,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 12.1920,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 12.1920,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office4_Mult6_Flr_5_Wall_South, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office4_Mult6_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office4_Mult6_Flr_5_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,48.7680,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 12.1920,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 12.1920,48.7680,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office4_Mult6_Flr_5_Wall_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Office4_Mult6_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Office4_Mult6_Flr_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,48.7680,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Office4_Mult6_Flr_5_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Office4_Mult6_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,48.7680,21.3415, !- X,Y,Z ==> Vertex 2 {m} + 12.1920,48.7680,21.3415, !- X,Y,Z ==> Vertex 3 {m} + 12.1920,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_5_Wall_1_South, !- Name + Wall, !- Surface Type + Air_Wall, !- Construction Name + Corridor_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_5_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,42.6720,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_5_Wall_1_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + NurseStn_Lobby_Flr_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.2400,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,42.6720,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_5_Wall_1_North, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 27.4320,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 27.4320,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_5_Wall_2_South, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 15.2400,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_5_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corridor_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 8, !- Number of Vertices + 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 27.4320,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 27.4320,53.3400,17.0732, !- X,Y,Z ==> Vertex 4 {m} + 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 5 {m} + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 6 {m} + 15.2400,42.6720,17.0732, !- X,Y,Z ==> Vertex 7 {m} + 15.2400,0.0000,17.0732; !- X,Y,Z ==> Vertex 8 {m} + + BuildingSurface:Detailed, + Corridor_Flr_5_Wall_2_North, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_5_Wall_2_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 27.4320,48.7680,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 27.4320,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,48.7680,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_5_Wall_2_East, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Kitchen_Flr_5_Wall_2_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 39.6240,42.6720,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 39.6240,42.6720,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 39.6240,53.3400,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,53.3400,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_5_Wall_1_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_5_Wall_1_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 9.1440,48.7680,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 9.1440,48.7680,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 9.1440,0.0000,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 9.1440,0.0000,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_5_Wall_2_West, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Flr_5, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Flr_5_Wall_2_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 27.4320,53.3400,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 27.4320,53.3400,17.0732, !- X,Y,Z ==> Vertex 2 {m} + 27.4320,48.7680,17.0732, !- X,Y,Z ==> Vertex 3 {m} + 27.4320,48.7680,21.3415; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Flr_5_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Corridor_Flr_5, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 8, !- Number of Vertices + 9.1440,0.0000,21.3415, !- X,Y,Z ==> Vertex 1 {m} + 15.2400,0.0000,21.3415, !- X,Y,Z ==> Vertex 2 {m} + 15.2400,42.6720,21.3415, !- X,Y,Z ==> Vertex 3 {m} + 39.6240,42.6720,21.3415, !- X,Y,Z ==> Vertex 4 {m} + 39.6240,53.3400,21.3415, !- X,Y,Z ==> Vertex 5 {m} + 27.4320,53.3400,21.3415, !- X,Y,Z ==> Vertex 6 {m} + 27.4320,48.7680,21.3415, !- X,Y,Z ==> Vertex 7 {m} + 9.1440,48.7680,21.3415; !- X,Y,Z ==> Vertex 8 {m} + +!- =========== ALL OBJECTS IN CLASS: SURFACE:HEATTRANSFER:SUB =========== + + FenestrationSurface:Detailed, + Office1_Mult4_Flr_1_Wall_South_Window, !- Name + Window, !- Surface Type + NonreseastWindow_U_0.43_SHGC_0.25, !- Construction Name + Office1_Mult4_Flr_1_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 6.405,0.0000,2.1340, !- X,Y,Z ==> Vertex 1 {m} + 6.405,0.0000,0.9140, !- X,Y,Z ==> Vertex 2 {m} + 8.835,0.0000,0.9140, !- X,Y,Z ==> Vertex 3 {m} + 8.835,0.0000,2.1340; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Lobby_Records_Flr_1_Wall_2_West, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + Lobby_Records_Flr_1_Wall_1_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,52.3400,2.1340, !- X,Y,Z ==> Vertex 1 {m} + 0.000,52.3400,0.9140, !- X,Y,Z ==> Vertex 2 {m} + 0.000,1.0000,0.9140, !- X,Y,Z ==> Vertex 3 {m} + 0.000,1.0000,2.1340; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + ER_NurseStn_Lobby_Flr_1_Wall_1_East_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + ER_NurseStn_Lobby_Flr_1_Wall_1_East, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 70.104,14.2020,2.1340, !- X,Y,Z ==> Vertex 1 {m} + 70.104,14.2020,0.9140, !- X,Y,Z ==> Vertex 2 {m} + 70.104,39.1380,0.9140, !- X,Y,Z ==> Vertex 3 {m} + 70.104,39.1380,2.1340; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + IC_PatRoom1_Mult5_Flr_2_Wall_North_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + IC_PatRoom1_Mult5_Flr_2_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 28.682,53.3400,6.4010, !- X,Y,Z ==> Vertex 1 {m} + 28.682,53.3400,5.1820, !- X,Y,Z ==> Vertex 2 {m} + 24.658,53.3400,5.1820, !- X,Y,Z ==> Vertex 3 {m} + 24.658,53.3400,6.4010; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + IC_PatRoom2_Flr_2_Wall_North_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + IC_PatRoom2_Flr_2_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 5.730,53.3400,6.4010, !- X,Y,Z ==> Vertex 1 {m} + 5.730,53.3400,5.1820, !- X,Y,Z ==> Vertex 2 {m} + 0.366,53.3400,5.1820, !- X,Y,Z ==> Vertex 3 {m} + 0.366,53.3400,6.4010; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + IC_PatRoom2_Flr_2_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + IC_PatRoom2_Flr_2_Wall_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,53.0660,6.4010, !- X,Y,Z ==> Vertex 1 {m} + 0.000,53.0660,5.1820, !- X,Y,Z ==> Vertex 2 {m} + 0.000,49.0420,5.1820, !- X,Y,Z ==> Vertex 3 {m} + 0.000,49.0420,6.4010; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + IC_PatRoom3_Mult6_Flr_2_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + IC_PatRoom3_Mult6_Flr_2_Wall_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,48.4940,6.4010, !- X,Y,Z ==> Vertex 1 {m} + 0.000,48.4940,5.1820, !- X,Y,Z ==> Vertex 2 {m} + 0.000,44.4700,5.1820, !- X,Y,Z ==> Vertex 3 {m} + 0.000,44.4700,6.4010; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + ICU_Flr_2_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + ICU_Flr_2_Wall_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,20.9360,6.4010, !- X,Y,Z ==> Vertex 1 {m} + 0.000,20.9360,5.1820, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.4000,5.1820, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.4000,6.4010; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + OR_NurseStn_Lobby_Flr_2_Wall_South_Window, !- Name + Window, !- Surface Type + NonreseastWindow_U_0.43_SHGC_0.25, !- Construction Name + OR_NurseStn_Lobby_Flr_2_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 40.195,0.0000,6.4010, !- X,Y,Z ==> Vertex 1 {m} + 40.195,0.0000,5.1820, !- X,Y,Z ==> Vertex 2 {m} + 69.533,0.0000,5.1820, !- X,Y,Z ==> Vertex 3 {m} + 69.533,0.0000,6.4010; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom1_Mult10_Flr_3_Wall_South_Window, !- Name + Window, !- Surface Type + NonreseastWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom1_Mult10_Flr_3_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 39.898,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 39.898,0.0000,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 43.922,0.0000,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 43.922,0.0000,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom2_Flr_3_Wall_East_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom2_Flr_3_Wall_East,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 70.104,0.2740,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 70.104,0.2740,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 70.104,4.2980,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 70.104,4.2980,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom2_Flr_3_Wall_South_Window, !- Name + Window, !- Surface Type + NonreseastWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom2_Flr_3_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 62.941,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 62.941,0.0000,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 69.647,0.0000,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 69.647,0.0000,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom3_Mult10_Flr_3_Wall_East_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom3_Mult10_Flr_3_Wall_East, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 70.104,4.8370,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 70.104,4.8370,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 70.104,8.7260,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 70.104,8.7260,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom4_Flr_3_Wall_North_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom4_Flr_3_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 69.647,53.3400,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 69.647,53.3400,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 62.941,53.3400,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 62.941,53.3400,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom4_Flr_3_Wall_East_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom4_Flr_3_Wall_East,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 70.104,49.0420,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 70.104,49.0420,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 70.104,53.0660,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 70.104,53.0660,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom5_Mult10_Flr_3_Wall_North_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom5_Mult10_Flr_3_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 43.922,53.3400,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 43.922,53.3400,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 39.898,53.3400,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 39.898,53.3400,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom6_Flr_3_Wall_South_Window, !- Name + Window, !- Surface Type + NonreseastWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom6_Flr_3_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.366,0.0000,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 0.366,0.0000,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 5.730,0.0000,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 5.730,0.0000,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom6_Flr_3_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom6_Flr_3_Wall_West,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,4.2980,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 0.000,4.2980,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.2740,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.2740,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom7_Mult10_Flr_3_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom7_Mult10_Flr_3_Wall_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.7260,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.7260,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 0.000,4.8370,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 0.000,4.8370,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom8_Flr_3_Wall_North_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom8_Flr_3_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 5.730,53.3400,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 5.730,53.3400,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 0.366,53.3400,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 0.366,53.3400,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom8_Flr_3_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom8_Flr_3_Wall_West,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,53.0660,10.6680, !- X,Y,Z ==> Vertex 1 {m} + 0.000,53.0660,9.4490, !- X,Y,Z ==> Vertex 2 {m} + 0.000,49.0420,9.4490, !- X,Y,Z ==> Vertex 3 {m} + 0.000,49.0420,10.6680; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom1_Mult10_Flr_4_Wall_South_Window, !- Name + Window, !- Surface Type + NonreseastWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom1_Mult10_Flr_4_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 39.898,0.0000,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 39.898,0.0000,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 43.922,0.0000,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 43.922,0.0000,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom2_Flr_4_Wall_East_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom2_Flr_4_Wall_East,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 70.104,0.2740,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 70.104,0.2740,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 70.104,4.2980,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 70.104,4.2980,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom2_Flr_4_Wall_South_Window, !- Name + Window, !- Surface Type + NonreseastWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom2_Flr_4_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 62.941,0.0000,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 62.941,0.0000,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 69.647,0.0000,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 69.647,0.0000,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom3_Mult10_Flr_4_Wall_East_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom3_Mult10_Flr_4_Wall_East, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 70.104,4.8370,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 70.104,4.8370,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 70.104,8.7260,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 70.104,8.7260,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom4_Flr_4_Wall_North_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom4_Flr_4_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 69.647,53.3400,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 69.647,53.3400,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 62.941,53.3400,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 62.941,53.3400,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom4_Flr_4_Wall_East_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom4_Flr_4_Wall_East,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 70.104,49.0420,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 70.104,49.0420,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 70.104,53.0660,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 70.104,53.0660,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom5_Mult10_Flr_4_Wall_North_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom5_Mult10_Flr_4_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 43.922,53.3400,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 43.922,53.3400,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 39.898,53.3400,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 39.898,53.3400,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom6_Flr_4_Wall_South_Window, !- Name + Window, !- Surface Type + NonreseastWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom6_Flr_4_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.366,0.0000,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 0.366,0.0000,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 5.730,0.0000,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 5.730,0.0000,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom6_Flr_4_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom6_Flr_4_Wall_West,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,4.2980,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 0.000,4.2980,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.2740,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.2740,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom7_Mult10_Flr_4_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom7_Mult10_Flr_4_Wall_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.7260,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.7260,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 0.000,4.8370,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 0.000,4.8370,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom8_Flr_4_Wall_North_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom8_Flr_4_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 5.730,53.3400,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 5.730,53.3400,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 0.366,53.3400,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 0.366,53.3400,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + PatRoom8_Flr_4_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + PatRoom8_Flr_4_Wall_West,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,53.0660,14.9350, !- X,Y,Z ==> Vertex 1 {m} + 0.000,53.0660,13.7160, !- X,Y,Z ==> Vertex 2 {m} + 0.000,49.0420,13.7160, !- X,Y,Z ==> Vertex 3 {m} + 0.000,49.0420,14.9350; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Dining_Flr_5_Wall_South_Window, !- Name + Window, !- Surface Type + NonreseastWindow_U_0.43_SHGC_0.25, !- Construction Name + Dining_Flr_5_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 40.195,0.0000,19.2020, !- X,Y,Z ==> Vertex 1 {m} + 40.195,0.0000,17.9830, !- X,Y,Z ==> Vertex 2 {m} + 69.533,0.0000,17.9830, !- X,Y,Z ==> Vertex 3 {m} + 69.533,0.0000,19.2020; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Office1_Flr_5_Wall_South_Window, !- Name + Window, !- Surface Type + NonreseastWindow_U_0.43_SHGC_0.25, !- Construction Name + Office1_Flr_5_Wall_South,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.549,0.0000,19.2020, !- X,Y,Z ==> Vertex 1 {m} + 0.549,0.0000,17.9830, !- X,Y,Z ==> Vertex 2 {m} + 8.595,0.0000,17.9830, !- X,Y,Z ==> Vertex 3 {m} + 8.595,0.0000,19.2020; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Office1_Flr_5_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + Office1_Flr_5_Wall_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,7.1630,19.2020, !- X,Y,Z ==> Vertex 1 {m} + 0.000,7.1630,17.9830, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.4570,17.9830, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.4570,19.2020; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Office2_Mult5_Flr_5_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + Office2_Mult5_Flr_5_Wall_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,14.7830,19.2020, !- X,Y,Z ==> Vertex 1 {m} + 0.000,14.7830,17.9830, !- X,Y,Z ==> Vertex 2 {m} + 0.000,8.0770,17.9830, !- X,Y,Z ==> Vertex 3 {m} + 0.000,8.0770,19.2020; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Office3_Flr_5_Wall_North_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + Office3_Flr_5_Wall_North,!- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 8.595,53.3400,19.2020, !- X,Y,Z ==> Vertex 1 {m} + 8.595,53.3400,17.9830, !- X,Y,Z ==> Vertex 2 {m} + 0.549,53.3400,17.9830, !- X,Y,Z ==> Vertex 3 {m} + 0.549,53.3400,19.2020; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Office3_Flr_5_Wall_West_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + Office3_Flr_5_Wall_West, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,52.8830,19.2020, !- X,Y,Z ==> Vertex 1 {m} + 0.000,52.8830,17.9830, !- X,Y,Z ==> Vertex 2 {m} + 0.000,46.1770,17.9830, !- X,Y,Z ==> Vertex 3 {m} + 0.000,46.1770,19.2020; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Office4_Mult6_Flr_5_Wall_North_Window, !- Name + Window, !- Surface Type + NonresWindow_U_0.43_SHGC_0.25, !- Construction Name + Office4_Mult6_Flr_5_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 11.883,53.3400,19.2020, !- X,Y,Z ==> Vertex 1 {m} + 11.883,53.3400,17.9830, !- X,Y,Z ==> Vertex 2 {m} + 9.453,53.3400,17.9830, !- X,Y,Z ==> Vertex 3 {m} + 9.453,53.3400,19.2020; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + ER_Exam3_Mult4_Flr_1_Wall_East_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + ER_Exam3_Mult4_Flr_1_Wall_East, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 70.104000000000,7.359108108820,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 70.104000000000,7.359108108820,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 70.104000000000,8.273508108820,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 70.104000000000,8.273508108820,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + ER_Trauma1_Flr_1_Wall_East_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + ER_Trauma1_Flr_1_Wall_East, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 70.104000000000,2.758813671662,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 70.104000000000,2.758813671662,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 70.104000000000,3.673213671662,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 70.104000000000,3.673213671662,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corridor_Flr_1_Wall_South_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Corridor_Flr_1_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 35.953443675091,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 35.953443675091,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 36.867843675091,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 36.867843675091,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corridor_Flr_1_Wall_North_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Corridor_Flr_1_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 31.965236137530,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 31.965236137530,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 31.050836137530,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 31.050836137530,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Lobby_Records_Flr_1_Wall_1_South_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Lobby_Records_Flr_1_Wall_1_South, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 3.585870154051,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 3.585870154051,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 4.500270154051,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 4.500270154051,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Lobby_Records_Flr_1_Wall_2_South_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Lobby_Records_Flr_1_Wall_2_South, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 27.053267114353,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 27.053267114353,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 27.967667114353,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 27.967667114353,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Lobby_Records_Flr_1_Wall_North_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Lobby_Records_Flr_1_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 26.374663905857,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 26.374663905857,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 25.460263905857,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 25.460263905857,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Lobby_Records_Flr_1_Wall_North_Door3, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Lobby_Records_Flr_1_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 3.754282444979,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 3.754282444979,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 2.839882444979,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 2.839882444979,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + ER_Exam1_Mult4_Flr_1_Wall_South_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + ER_Exam1_Mult4_Flr_1_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 42.288205250969,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 42.288205250969,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 43.202605250969,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 43.202605250969,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + ER_Trauma1_Flr_1_Wall_South_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + ER_Trauma1_Flr_1_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 65.379246485980,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 65.379246485980,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 66.293646485980,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 66.293646485980,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + ER_Trauma2_Flr_1_Wall_East_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + ER_Trauma2_Flr_1_Wall_East, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 70.104000000000,49.786049019517,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 70.104000000000,49.786049019517,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 70.104000000000,50.700449019517,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 70.104000000000,50.700449019517,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + ER_Trauma2_Flr_1_Wall_North_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + ER_Trauma2_Flr_1_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 66.434946561573,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 66.434946561573,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 65.520546561573,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 65.520546561573,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + ER_Triage_Mult4_Flr_1_Wall_North_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + ER_Triage_Mult4_Flr_1_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 44.446456441754,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 44.446456441754,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 43.532056441754,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 43.532056441754,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corridor_Flr_1_Wall_South_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Corridor_Flr_1_Wall_South, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 31.496618875192,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 31.496618875192,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 32.411018875192,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 32.411018875192,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corridor_Flr_1_Wall_North_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Corridor_Flr_1_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 37.530463591957,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 37.530463591957,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 36.616063591957,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 36.616063591957,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Lobby_Records_Flr_1_Wall_North_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Lobby_Records_Flr_1_Wall_North, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 16.509001079618,53.340000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 16.509001079618,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 15.594601079618,53.340000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 15.594601079618,53.340000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Lobby_Records_Flr_1_Wall_2_South_RollDoor, !- Name + Door, !- Surface Type + Overhead Door_con, !- Construction Name + Lobby_Records_Flr_1_Wall_2_South, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 22.483082864735,0.000000000000,2.438400000000, !- X,Y,Z ==> Vertex 1 {m} + 22.483082864735,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 25.531082864734,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 25.531082864734,0.000000000000,2.438400000000; !- X,Y,Z ==> Vertex 4 {m} + +!- =========== ALL OBJECTS IN CLASS: SURFACE:HEATTRANSFER:INTERNALMASS =========== + + InternalMass, + Basement_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Basement, !- Zone Name + 7478.6947; !- Surface Area {m2} + + InternalMass, + ER_Exam1_Mult4_Flr_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + ER_Exam1_Mult4_Flr_1, !- Zone Name + 55.7418; !- Surface Area {m2} + + InternalMass, + ER_Trauma1_Flr_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + ER_Trauma1_Flr_1, !- Zone Name + 55.7418; !- Surface Area {m2} + + InternalMass, + ER_Exam3_Mult4_Flr_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + ER_Exam3_Mult4_Flr_1, !- Zone Name + 55.7418; !- Surface Area {m2} + + InternalMass, + ER_Trauma2_Flr_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + ER_Trauma2_Flr_1, !- Zone Name + 55.7418; !- Surface Area {m2} + + InternalMass, + ER_Triage_Mult4_Flr_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + ER_Triage_Mult4_Flr_1, !- Zone Name + 55.7418; !- Surface Area {m2} + + InternalMass, + Office1_Mult4_Flr_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Office1_Mult4_Flr_1, !- Zone Name + 27.8709; !- Surface Area {m2} + + InternalMass, + Lobby_Records_Flr_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Lobby_Records_Flr_1, !- Zone Name + 2949.6212; !- Surface Area {m2} + + InternalMass, + Corridor_Flr_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_Flr_1, !- Zone Name + 1138.0622; !- Surface Area {m2} + + InternalMass, + ER_NurseStn_Lobby_Flr_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + ER_NurseStn_Lobby_Flr_1, !- Zone Name + 2471.2209; !- Surface Area {m2} + + InternalMass, + OR1_Flr_2_InternalMass_1,!- Name + InteriorFurnishings, !- Construction Name + OR1_Flr_2, !- Zone Name + 111.4836; !- Surface Area {m2} + + InternalMass, + OR2_Mult5_Flr_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + OR2_Mult5_Flr_2, !- Zone Name + 111.4836; !- Surface Area {m2} + + InternalMass, + OR3_Flr_2_InternalMass_1,!- Name + InteriorFurnishings, !- Construction Name + OR3_Flr_2, !- Zone Name + 111.4836; !- Surface Area {m2} + + InternalMass, + OR4_Flr_2_InternalMass_1,!- Name + InteriorFurnishings, !- Construction Name + OR4_Flr_2, !- Zone Name + 445.9346; !- Surface Area {m2} + + InternalMass, + IC_PatRoom1_Mult5_Flr_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + IC_PatRoom1_Mult5_Flr_2, !- Zone Name + 41.8064; !- Surface Area {m2} + + InternalMass, + IC_PatRoom2_Flr_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + IC_PatRoom2_Flr_2, !- Zone Name + 55.7418; !- Surface Area {m2} + + InternalMass, + IC_PatRoom3_Mult6_Flr_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + IC_PatRoom3_Mult6_Flr_2, !- Zone Name + 41.8064; !- Surface Area {m2} + + InternalMass, + ICU_Flr_2_InternalMass_1,!- Name + InteriorFurnishings, !- Construction Name + ICU_Flr_2, !- Zone Name + 1235.9289; !- Surface Area {m2} + + InternalMass, + ICU_NurseStn_Lobby_Flr_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + ICU_NurseStn_Lobby_Flr_2,!- Zone Name + 1337.5356; !- Surface Area {m2} + + InternalMass, + Corridor_Flr_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_Flr_2, !- Zone Name + 1138.0622; !- Surface Area {m2} + + InternalMass, + OR_NurseStn_Lobby_Flr_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + OR_NurseStn_Lobby_Flr_2, !- Zone Name + 2025.2863; !- Surface Area {m2} + + InternalMass, + PatRoom1_Mult10_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom1_Mult10_Flr_3, !- Zone Name + 41.8064; !- Surface Area {m2} + + InternalMass, + PatRoom2_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom2_Flr_3, !- Zone Name + 69.6773; !- Surface Area {m2} + + InternalMass, + PatRoom3_Mult10_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom3_Mult10_Flr_3, !- Zone Name + 40.4165; !- Surface Area {m2} + + InternalMass, + PatRoom4_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom4_Flr_3, !- Zone Name + 69.6773; !- Surface Area {m2} + + InternalMass, + PatRoom5_Mult10_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom5_Mult10_Flr_3, !- Zone Name + 41.8064; !- Surface Area {m2} + + InternalMass, + PhysTherapy_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PhysTherapy_Flr_3, !- Zone Name + 975.4819; !- Surface Area {m2} + + InternalMass, + PatRoom6_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom6_Flr_3, !- Zone Name + 55.7418; !- Surface Area {m2} + + InternalMass, + PatRoom7_Mult10_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom7_Mult10_Flr_3, !- Zone Name + 40.4165; !- Surface Area {m2} + + InternalMass, + PatRoom8_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom8_Flr_3, !- Zone Name + 55.7418; !- Surface Area {m2} + + InternalMass, + NurseStn_Lobby_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + NurseStn_Lobby_Flr_3, !- Zone Name + 1811.6093; !- Surface Area {m2} + + InternalMass, + Lab_Flr_3_InternalMass_1,!- Name + InteriorFurnishings, !- Construction Name + Lab_Flr_3, !- Zone Name + 529.5473; !- Surface Area {m2} + + InternalMass, + Corridor_SE_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_SE_Flr_3, !- Zone Name + 1133.4171; !- Surface Area {m2} + + InternalMass, + Corridor_NW_Flr_3_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_NW_Flr_3, !- Zone Name + 1133.4171; !- Surface Area {m2} + + InternalMass, + PatRoom1_Mult10_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom1_Mult10_Flr_4, !- Zone Name + 41.8064; !- Surface Area {m2} + + InternalMass, + PatRoom2_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom2_Flr_4, !- Zone Name + 69.6773; !- Surface Area {m2} + + InternalMass, + PatRoom3_Mult10_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom3_Mult10_Flr_4, !- Zone Name + 40.4165; !- Surface Area {m2} + + InternalMass, + PatRoom4_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom4_Flr_4, !- Zone Name + 69.6773; !- Surface Area {m2} + + InternalMass, + PatRoom5_Mult10_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom5_Mult10_Flr_4, !- Zone Name + 41.8064; !- Surface Area {m2} + + InternalMass, + Radiology_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Radiology_Flr_4, !- Zone Name + 975.4819; !- Surface Area {m2} + + InternalMass, + PatRoom6_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom6_Flr_4, !- Zone Name + 55.7418; !- Surface Area {m2} + + InternalMass, + PatRoom7_Mult10_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom7_Mult10_Flr_4, !- Zone Name + 40.4165; !- Surface Area {m2} + + InternalMass, + PatRoom8_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + PatRoom8_Flr_4, !- Zone Name + 55.7418; !- Surface Area {m2} + + InternalMass, + NurseStn_Lobby_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + NurseStn_Lobby_Flr_4, !- Zone Name + 1811.6093; !- Surface Area {m2} + + InternalMass, + Lab_Flr_4_InternalMass_1,!- Name + InteriorFurnishings, !- Construction Name + Lab_Flr_4, !- Zone Name + 529.5473; !- Surface Area {m2} + + InternalMass, + Corridor_SE_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_SE_Flr_4, !- Zone Name + 1133.4171; !- Surface Area {m2} + + InternalMass, + Corridor_NW_Flr_4_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_NW_Flr_4, !- Zone Name + 1133.4171; !- Surface Area {m2} + + InternalMass, + Dining_Flr_5_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Dining_Flr_5, !- Zone Name + 1393.5456; !- Surface Area {m2} + + InternalMass, + NurseStn_Lobby_Flr_5_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + NurseStn_Lobby_Flr_5, !- Zone Name + 2081.0281; !- Surface Area {m2} + + InternalMass, + Kitchen_Flr_5_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Kitchen_Flr_5, !- Zone Name + 1858.0608; !- Surface Area {m2} + + InternalMass, + Office1_Flr_5_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Office1_Flr_5, !- Zone Name + 139.3911; !- Surface Area {m2} + + InternalMass, + Office2_Mult5_Flr_5_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Office2_Mult5_Flr_5, !- Zone Name + 139.3546; !- Surface Area {m2} + + InternalMass, + Office3_Flr_5_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Office3_Flr_5, !- Zone Name + 139.3546; !- Surface Area {m2} + + InternalMass, + Office4_Mult6_Flr_5_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Office4_Mult6_Flr_5, !- Zone Name + 27.8709; !- Surface Area {m2} + + InternalMass, + Corridor_Flr_5_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_Flr_5, !- Zone Name + 1003.3528; !- Surface Area {m2} + +!- =========== ALL OBJECTS IN CLASS: SCHEDULETYPE =========== + + + ScheduleTypeLimits, + Any Number; !- Name + + ScheduleTypeLimits, + Fraction, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + Continuous; !- Numeric Type + + ScheduleTypeLimits, + Temperature, !- Name + -60, !- Lower Limit Value + 200, !- Upper Limit Value + Continuous; !- Numeric Type + + ScheduleTypeLimits, + On/Off, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete; !- Numeric Type + + ScheduleTypeLimits, + Control Type, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + Discrete; !- Numeric Type + + ScheduleTypeLimits, + Humidity, !- Name + 10, !- Lower Limit Value + 90, !- Upper Limit Value + Continuous; !- Numeric Type + + ScheduleTypeLimits, + Number; !- Name + +!- =========== ALL OBJECTS IN CLASS: SCHEDULE:COMPACT =========== + + + Schedule:Compact, + Patrms_ExtraElecHeatC_Sch, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + Patrms_ExtraWaterHeatC_Sch, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + ER_ExtraElecHeatC_Sch, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + ER_ExtraWaterHeatC_Sch, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + OR_ExtraElecHeatC_Sch, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + OR_ExtraWaterHeatC_Sch, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + ICU_ExtraElecHeatC_Sch, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + ICU_ExtraWaterHeatC_Sch, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + Labs_ExtraElecHeatC_Sch, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + Labs_ExtraWaterHeatC_Sch,!- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + Hours_of_operation, !- Name + on/off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + Exterior_Lgt_ALWAYS_ON, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + ALWAYS_ON, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + ALWAYS_OFF, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.0; !- Field 3 + + + + Schedule:Compact, + HVACOperationSchd, !- Name + on/off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + + + + + + + + + + + + + + + + Schedule:Compact, + BLDG_LIGHT_CORRIDOR_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 8:00,0.4806, !- Field 3 + Until: 16:00,0.86508, !- Field 4 + Until: 24:00,0.4806, !- Field 5 + For: SummerDesignDay, !- Field 6 + Until: 24:00,1, !- Field 7 + For: WinterDesignDay, !- Field 8 + Until: 24:00,0, !- Field 9 + For: Saturday, !- Field 10 + Until: 8:00,0.4806, !- Field 11 + Until: 18:00,0.76896, !- Field 12 + Until: 24:00,0.4806, !- Field 13 + For: Sunday Holidays AllOtherDays, !- Field 14 + Until: 8:00,0.4806, !- Field 15 + Until: 16:00,0.67284, !- Field 16 + Until: 24:00,0.4806; !- Field 17 + + Schedule:Compact, + BLDG_LIGHT_EXAM_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 8:00,0.39, !- Field 3 + Until: 16:00,0.702, !- Field 4 + Until: 24:00,0.39, !- Field 5 + For: SummerDesignDay, !- Field 6 + Until: 24:00,1, !- Field 7 + For: WinterDesignDay, !- Field 8 + Until: 24:00,0, !- Field 9 + For: Saturday, !- Field 10 + Until: 8:00,0.39, !- Field 11 + Until: 18:00,0.624, !- Field 12 + Until: 24:00,0.39, !- Field 13 + For: Sunday Holidays AllOtherDays, !- Field 14 + Until: 8:00,0.39, !- Field 15 + Until: 16:00,0.546, !- Field 16 + Until: 24:00,0.39; !- Field 17 + + Schedule:Compact, + BLDG_LIGHT_EXTD_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 8:00,0.5, !- Field 3 + Until: 16:00,0.9, !- Field 4 + Until: 24:00,0.5, !- Field 5 + For: SummerDesignDay, !- Field 6 + Until: 24:00,1, !- Field 7 + For: WinterDesignDay, !- Field 8 + Until: 24:00,0, !- Field 9 + For: Saturday, !- Field 10 + Until: 8:00,0.5, !- Field 11 + Until: 18:00,0.8, !- Field 12 + Until: 24:00,0.5, !- Field 13 + For: Sunday Holidays AllOtherDays, !- Field 14 + Until: 8:00,0.5, !- Field 15 + Until: 16:00,0.7, !- Field 16 + Until: 24:00,0.5; !- Field 17 + + Schedule:Compact, + BLDG_LIGHT_LOBBYFLR1_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1, !- Field 3 + Until: 8:00,0.4775, !- Field 4 + Until: 16:00,0.8595, !- Field 5 + Until: 22:00,0.2865, !- Field 6 + Until: 23:00,0.3, !- Field 7 + Until: 24:00,0.1, !- Field 8 + For: SummerDesignDay, !- Field 9 + Until: 24:00,1, !- Field 10 + For: WinterDesignDay, !- Field 11 + Until: 24:00,0, !- Field 12 + For: Saturday, !- Field 13 + Until: 7:00,0.1, !- Field 14 + Until: 8:00,0.191, !- Field 15 + Until: 18:00,0.382, !- Field 16 + Until: 19:00,0.0955, !- Field 17 + Until: 24:00,0.1, !- Field 18 + For: Sunday Holidays AllOtherDays, !- Field 19 + Until: 8:00,0.05, !- Field 20 + Until: 16:00,0.0955, !- Field 21 + Until: 24:00,0.05; !- Field 22 + + Schedule:Compact, + BLDG_LIGHT_LOBBYFLR5_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1, !- Field 3 + Until: 8:00,0.485, !- Field 4 + Until: 16:00,0.873, !- Field 5 + Until: 22:00,0.291, !- Field 6 + Until: 23:00,0.3, !- Field 7 + Until: 24:00,0.1, !- Field 8 + For: SummerDesignDay, !- Field 9 + Until: 24:00,1, !- Field 10 + For: WinterDesignDay, !- Field 11 + Until: 24:00,0, !- Field 12 + For: Saturday, !- Field 13 + Until: 7:00,0.1, !- Field 14 + Until: 8:00,0.194, !- Field 15 + Until: 18:00,0.388, !- Field 16 + Until: 19:00,0.097, !- Field 17 + Until: 24:00,0.1, !- Field 18 + For: Sunday Holidays AllOtherDays, !- Field 19 + Until: 8:00,0.05, !- Field 20 + Until: 16:00,0.097, !- Field 21 + Until: 24:00,0.05; !- Field 22 + + Schedule:Compact, + BLDG_LIGHT_NURSEFLR1_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 8:00,0.49, !- Field 3 + Until: 16:00,0.882, !- Field 4 + Until: 24:00,0.49, !- Field 5 + For: SummerDesignDay, !- Field 6 + Until: 24:00,1, !- Field 7 + For: WinterDesignDay, !- Field 8 + Until: 24:00,0, !- Field 9 + For: Saturday, !- Field 10 + Until: 8:00,0.49, !- Field 11 + Until: 18:00,0.784, !- Field 12 + Until: 24:00,0.49, !- Field 13 + For: Sunday Holidays AllOtherDays, !- Field 14 + Until: 8:00,0.49, !- Field 15 + Until: 16:00,0.686, !- Field 16 + Until: 24:00,0.49; !- Field 17 + + Schedule:Compact, + BLDG_LIGHT_NURSEFLR234_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 8:00,0.485, !- Field 3 + Until: 16:00,0.873, !- Field 4 + Until: 24:00,0.485, !- Field 5 + For: SummerDesignDay, !- Field 6 + Until: 24:00,1, !- Field 7 + For: WinterDesignDay, !- Field 8 + Until: 24:00,0, !- Field 9 + For: Saturday, !- Field 10 + Until: 8:00,0.485, !- Field 11 + Until: 18:00,0.776, !- Field 12 + Until: 24:00,0.485, !- Field 13 + For: Sunday Holidays AllOtherDays, !- Field 14 + Until: 8:00,0.485, !- Field 15 + Until: 16:00,0.679, !- Field 16 + Until: 24:00,0.485; !- Field 17 + + Schedule:Compact, + BLDG_LIGHT_OFFICE_BSMT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1, !- Field 3 + Until: 8:00,0.447984375, !- Field 4 + Until: 16:00,0.806371875, !- Field 5 + Until: 22:00,0.268790625, !- Field 6 + Until: 23:00,0.3, !- Field 7 + Until: 24:00,0.1, !- Field 8 + For: SummerDesignDay, !- Field 9 + Until: 24:00,1, !- Field 10 + For: WinterDesignDay, !- Field 11 + Until: 24:00,0, !- Field 12 + For: Saturday, !- Field 13 + Until: 7:00,0.1, !- Field 14 + Until: 8:00,0.17919375, !- Field 15 + Until: 18:00,0.3583875, !- Field 16 + Until: 19:00,0.089596875, !- Field 17 + Until: 24:00,0.1, !- Field 18 + For: Sunday Holidays AllOtherDays, !- Field 19 + Until: 8:00,0.05, !- Field 20 + Until: 16:00,0.089596875, !- Field 21 + Until: 24:00,0.05; !- Field 22 + + Schedule:Compact, + BLDG_LIGHT_OFFICE_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1, !- Field 3 + Until: 8:00,0.40595, !- Field 4 + Until: 16:00,0.73071, !- Field 5 + Until: 22:00,0.24357, !- Field 6 + Until: 23:00,0.3, !- Field 7 + Until: 24:00,0.1, !- Field 8 + For: SummerDesignDay, !- Field 9 + Until: 24:00,1, !- Field 10 + For: WinterDesignDay, !- Field 11 + Until: 24:00,0, !- Field 12 + For: Saturday, !- Field 13 + Until: 7:00,0.1, !- Field 14 + Until: 8:00,0.16238, !- Field 15 + Until: 18:00,0.32476, !- Field 16 + Until: 19:00,0.08119, !- Field 17 + Until: 24:00,0.1, !- Field 18 + For: Sunday Holidays AllOtherDays, !- Field 19 + Until: 8:00,0.05, !- Field 20 + Until: 16:00,0.08119, !- Field 21 + Until: 24:00,0.05; !- Field 22 + + Schedule:Compact, + BLDG_LIGHT_RADIOLOGY_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1, !- Field 3 + Until: 8:00,0.39, !- Field 4 + Until: 16:00,0.702, !- Field 5 + Until: 22:00,0.234, !- Field 6 + Until: 23:00,0.3, !- Field 7 + Until: 24:00,0.1, !- Field 8 + For: SummerDesignDay, !- Field 9 + Until: 24:00,1, !- Field 10 + For: WinterDesignDay, !- Field 11 + Until: 24:00,0, !- Field 12 + For: Saturday, !- Field 13 + Until: 7:00,0.1, !- Field 14 + Until: 8:00,0.156, !- Field 15 + Until: 18:00,0.312, !- Field 16 + Until: 19:00,0.078, !- Field 17 + Until: 24:00,0.1, !- Field 18 + For: Sunday Holidays AllOtherDays, !- Field 19 + Until: 8:00,0.05, !- Field 20 + Until: 16:00,0.078, !- Field 21 + Until: 24:00,0.05; !- Field 22 + + Schedule:Compact, + BLDG_LIGHT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1, !- Field 3 + Until: 8:00,0.5, !- Field 4 + Until: 16:00,0.9, !- Field 5 + Until: 23:00,0.3, !- Field 6 + Until: 24:00,0.1, !- Field 7 + For: SummerDesignDay, !- Field 8 + Until: 24:00,1, !- Field 9 + For: WinterDesignDay, !- Field 10 + Until: 24:00,0, !- Field 11 + For: Saturday, !- Field 12 + Until: 7:00,0.1, !- Field 13 + Until: 8:00,0.2, !- Field 14 + Until: 18:00,0.4, !- Field 15 + Until: 24:00,0.1, !- Field 16 + For: Sunday Holidays AllOtherDays, !- Field 17 + Until: 8:00,0.05, !- Field 18 + Until: 16:00,0.1, !- Field 19 + Until: 24:00,0.05; !- Field 20 + + + + + + + + + Schedule:Compact, + walkin_occ_lght_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1, !- Field 3 + Until: 8:00,0.26, !- Field 5 + Until: 16:00,0.468, !- Field 7 + Until: 23:00,0.156, !- Field 9 + Until: 24:00,0.1, !- Field 11 + For: SummerDesignDay, !- Field 13 + Until: 24:00,1, !- Field 14 + For: WinterDesignDay, !- Field 16 + Until: 24:00,0, !- Field 17 + For: Saturday, !- Field 19 + Until: 7:00,0.1, !- Field 20 + Until: 8:00,0.104, !- Field 22 + Until: 18:00,0.208, !- Field 24 + Until: 24:00,0.1, !- Field 26 + For: Sunday Holidays AllOtherDays, !- Field 28 + Until: 8:00,0.05, !- Field 29 + Until: 16:00,0.052, !- Field 31 + Until: 24:00,0.05; !- Field 33 + + Schedule:Compact, + BLDG_OCC_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 07:00,0.0, !- Field 3 + Until: 08:00,0.1, !- Field 5 + Until: 09:00,0.5, !- Field 7 + Until: 17:00,0.8, !- Field 9 + Until: 18:00,0.5, !- Field 11 + Until: 20:00,0.3, !- Field 13 + Until: 22:00,0.2, !- Field 15 + Until: 24:00,0.0, !- Field 17 + For: SummerDesignDay, !- Field 19 + Until: 24:00,1.0, !- Field 20 + For: WinterDesignDay, !- Field 22 + Until: 24:00,0.0, !- Field 23 + For: Saturday, !- Field 25 + Until: 07:00,0.0, !- Field 26 + Until: 08:00,0.1, !- Field 28 + Until: 09:00,0.3, !- Field 30 + Until: 17:00,0.4, !- Field 32 + Until: 19:00,0.1, !- Field 34 + Until: 24:00,0.0, !- Field 36 + For: Sunday Holidays AllOtherDays, !- Field 38 + Until: 08:00,0.0, !- Field 39 + Until: 16:00,0.05, !- Field 41 + Until: 24:00,0.0; !- Field 43 + + + + Schedule:Compact, + BLDG_OCC_EXTD_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 07:00,0.4, !- Field 3 + Until: 08:00,0.5, !- Field 5 + Until: 09:00,0.6, !- Field 7 + Until: 17:00,0.8, !- Field 9 + Until: 18:00,0.6, !- Field 11 + Until: 20:00,0.5, !- Field 13 + Until: 24:00,0.4, !- Field 15 + For: SummerDesignDay, !- Field 17 + Until: 24:00,1.0, !- Field 18 + For: WinterDesignDay, !- Field 20 + Until: 24:00,0.0, !- Field 21 + For: Saturday, !- Field 23 + Until: 07:00,0.4, !- Field 24 + Until: 08:00,0.5, !- Field 26 + Until: 17:00,0.6, !- Field 28 + Until: 19:00,0.5, !- Field 30 + Until: 24:00,0.4, !- Field 32 + For: Sunday Holidays AllOtherDays, !- Field 34 + Until: 08:00,0.4, !- Field 35 + Until: 16:00,0.6, !- Field 37 + Until: 24:00,0.4; !- Field 39 + + + + Schedule:Compact, + BLDG_EQUIP_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 07:00,0.3492682264, !- Field 3 + Until: 08:00,0.6818012803, !- Field 5 + Until: 16:00,0.8766016461, !- Field 7 + Until: 22:00,0.5844010974, !- Field 9 + Until: 23:00,0.5239023396, !- Field 11 + Until: 24:00,0.3492682264, !- Field 13 + For: SummerDesignDay, !- Field 15 + Until: 24:00,1.0, !- Field 16 + For: WinterDesignDay, !- Field 18 + Until: 24:00,0.0, !- Field 19 + For: Saturday, !- Field 21 + Until: 07:00,0.3492682264, !- Field 22 + Until: 08:00,0.4870009145, !- Field 24 + Until: 18:00,0.63310118885, !- Field 26 + Until: 24:00,0.3492682264, !- Field 28 + For: Sunday Holidays AllOtherDays, !- Field 30 + Until: 08:00,0.2619511698, !- Field 31 + Until: 16:00,0.3492682264, !- Field 33 + Until: 24:00,0.2619511698; !- Field 35 + + Schedule:Compact, + BLDG_EQUIP_EXTD_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 07:00,0.40, !- Field 3 + Until: 08:00,0.70, !- Field 5 + Until: 16:00,0.90, !- Field 7 + Until: 23:00,0.60, !- Field 9 + Until: 24:00,0.40, !- Field 11 + For: SummerDesignDay, !- Field 13 + Until: 24:00,1.0, !- Field 14 + For: WinterDesignDay, !- Field 16 + Until: 24:00,0.0, !- Field 17 + For: Saturday, !- Field 19 + Until: 07:00,0.40, !- Field 20 + Until: 08:00,0.50, !- Field 22 + Until: 18:00,0.65, !- Field 24 + Until: 24:00,0.40, !- Field 26 + For: Sunday Holidays AllOtherDays, !- Field 28 + Until: 08:00,0.40, !- Field 29 + Until: 16:00,0.60, !- Field 31 + Until: 24:00,0.40; !- Field 33 + + + + Schedule:Compact, + BLDG_ELEVATORS, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,1.00, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,0.20, !- Field 6 + For: Weekdays, !- Field 8 + Until: 07:00,0.2, !- Field 9 + Until: 08:00,0.5, !- Field 11 + Until: 09:00,0.75, !- Field 13 + Until: 10:00,1.00, !- Field 15 + Until: 11:00,1.00, !- Field 17 + Until: 12:00,1.00, !- Field 19 + Until: 13:00,0.75, !- Field 21 + Until: 14:00,1.00, !- Field 23 + Until: 15:00,1.00, !- Field 25 + Until: 16:00,1.00, !- Field 27 + Until: 17:00,1.00, !- Field 29 + Until: 18:00,1.00, !- Field 31 + Until: 19:00,0.52, !- Field 33 + Until: 20:00,0.52, !- Field 35 + Until: 21:00,0.52, !- Field 37 + Until: 22:00,0.28, !- Field 39 + Until: 24:00,0.2, !- Field 41 + For: Saturday, !- Field 43 + Until: 07:00,0.2, !- Field 44 + Until: 08:00,0.4, !- Field 46 + Until: 09:00,0.46, !- Field 48 + Until: 10:00,0.70, !- Field 50 + Until: 11:00,0.70, !- Field 52 + Until: 12:00,0.70, !- Field 54 + Until: 13:00,0.51, !- Field 56 + Until: 14:00,0.51, !- Field 58 + Until: 15:00,0.51, !- Field 60 + Until: 16:00,0.51, !- Field 62 + Until: 17:00,0.51, !- Field 64 + Until: 18:00,0.25, !- Field 66 + Until: 24:00,0.2, !- Field 68 + For: AllOtherDays, !- Field 70 + Until: 08:00,0.2, !- Field 71 + Until: 16:00,0.4, !- Field 73 + Until: 24:00,0.2; !- Field 75 + + + + Schedule:Compact, + ELEV_LIGHT_FAN_SCH_24_7, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + + + Schedule:Compact, + ELEV_LIGHT_FAN_SCH_ADD_DF, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,1.00, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,0.20, !- Field 6 + For: Weekdays, !- Field 8 + Until: 07:00,0.2, !- Field 9 + Until: 08:00,0.5, !- Field 11 + Until: 09:00,1.00, !- Field 13 + Until: 10:00,1.00, !- Field 15 + Until: 11:00,1.00, !- Field 17 + Until: 12:00,1.00, !- Field 19 + Until: 13:00,1.00, !- Field 21 + Until: 14:00,1.00, !- Field 23 + Until: 15:00,1.00, !- Field 25 + Until: 16:00,1.00, !- Field 27 + Until: 17:00,1.00, !- Field 29 + Until: 18:00,1.00, !- Field 31 + Until: 19:00,0.52, !- Field 33 + Until: 20:00,0.52, !- Field 35 + Until: 21:00,0.52, !- Field 37 + Until: 22:00,0.28, !- Field 39 + Until: 24:00,0.2, !- Field 41 + For: Saturday, !- Field 43 + Until: 07:00,0.2, !- Field 44 + Until: 08:00,0.4, !- Field 46 + Until: 09:00,0.46, !- Field 48 + Until: 10:00,0.70, !- Field 50 + Until: 11:00,0.70, !- Field 52 + Until: 12:00,0.70, !- Field 54 + Until: 13:00,0.51, !- Field 56 + Until: 14:00,0.51, !- Field 58 + Until: 15:00,0.51, !- Field 60 + Until: 16:00,0.51, !- Field 62 + Until: 17:00,0.51, !- Field 64 + Until: 18:00,0.25, !- Field 66 + Until: 24:00,0.2, !- Field 68 + For: AllOtherDays, !- Field 70 + Until: 08:00,0.2, !- Field 71 + Until: 16:00,0.4, !- Field 73 + Until: 24:00,0.2; !- Field 75 + + + + Schedule:Compact, + Dishwashing Booster Water Inlet Temp Schedule, !- Name + Any Number, !- Schedule Type Limits Name + THROUGH: 12/31, !- Field 1 + FOR: AllDays, !- Field 2 + UNTIL: 24:00,60.00; !- Field 3 + + + + Schedule:Compact, + Dishwashing Booster Setpoint Temp Schedule, !- Name + Any Number, !- Schedule Type Limits Name + THROUGH: 12/31, !- Field 1 + FOR: AllDays, !- Field 2 + UNTIL: 24:00,82.22; !- Field 3 + + + + Schedule:Compact, + Laundry Setpoint Temp Schedule, !- Name + Any Number, !- Schedule Type Limits Name + THROUGH: 12/31, !- Field 1 + FOR: AllDays, !- Field 2 + UNTIL: 24:00,82.22; !- Field 3 + + + + Schedule:Compact, + LAUNDRY_SWH_SCH, !- Name + Fraction, !- Schedule Type Limits Name + THROUGH: 12/31, !- Field 1 + FOR: AllDays, !- Field 2 + UNTIL: 08:00,0.00, !- Field 3 + UNTIL: 15:00,1.00, !- Field 5 + UNTIL: 24:00,0.00; !- Field 7 + + Schedule:Compact, + BLDG_SWH_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 07:00,0.00, !- Field 3 + Until: 08:00,0.17, !- Field 5 + Until: 09:00,0.58, !- Field 7 + Until: 10:00,0.66, !- Field 9 + Until: 11:00,0.78, !- Field 11 + Until: 12:00,0.82, !- Field 13 + Until: 13:00,0.71, !- Field 15 + Until: 14:00,0.82, !- Field 17 + Until: 15:00,0.78, !- Field 19 + Until: 16:00,0.74, !- Field 21 + Until: 17:00,0.63, !- Field 23 + Until: 18:00,0.41, !- Field 25 + Until: 21:00,0.18, !- Field 27 + Until: 22:00,0.1, !- Field 29 + Until: 24:00,0.00, !- Field 31 + For: Saturday WinterDesignDay, !- Field 33 + Until: 07:00,0.00, !- Field 34 + Until: 08:00,0.01, !- Field 36 + Until: 09:00,0.2, !- Field 38 + Until: 10:00,0.28, !- Field 40 + Until: 12:00,0.3, !- Field 42 + Until: 14:00,0.24, !- Field 44 + Until: 17:00,0.23, !- Field 46 + Until: 19:00,0.10, !- Field 48 + Until: 24:00,0.00, !- Field 50 + For: Sunday Holidays AllOtherDays, !- Field 52 + Until: 08:00,0.00, !- Field 53 + Until: 16:00,0.01, !- Field 55 + Until: 24:00,0.00; !- Field 57 + + + + Schedule:Compact, + BLDG_SWH_EXTD_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 07:00,0.3, !- Field 3 + Until: 08:00,0.5, !- Field 5 + Until: 09:00,0.58, !- Field 7 + Until: 10:00,0.66, !- Field 9 + Until: 11:00,0.78, !- Field 11 + Until: 12:00,0.82, !- Field 13 + Until: 13:00,0.71, !- Field 15 + Until: 14:00,0.82, !- Field 17 + Until: 15:00,0.78, !- Field 19 + Until: 16:00,0.74, !- Field 21 + Until: 17:00,0.63, !- Field 23 + Until: 18:00,0.41, !- Field 25 + Until: 21:00,0.35, !- Field 27 + Until: 24:00,0.30, !- Field 29 + For: Saturday WinterDesignDay, !- Field 31 + Until: 08:00,0.3, !- Field 32 + Until: 09:00,0.4, !- Field 34 + Until: 10:00,0.5, !- Field 36 + Until: 17:00,0.6, !- Field 38 + Until: 18:00,0.5, !- Field 40 + Until: 24:00,0.3, !- Field 42 + For: Sunday Holidays AllOtherDays, !- Field 44 + Until: 08:00,0.3, !- Field 45 + Until: 09:00,0.4, !- Field 47 + Until: 10:00,0.5, !- Field 49 + Until: 17:00,0.6, !- Field 51 + Until: 18:00,0.5, !- Field 53 + Until: 24:00,0.3; !- Field 55 + + Schedule:Compact, + ACTIVITY_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,120.; !- Field 3 + + Schedule:Compact, + WORK_EFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.0; !- Field 3 + + Schedule:Compact, + AIR_VELO_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + CLOTHING_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 04/30, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 09/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,0.5, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,1.0; !- Field 11 + + Schedule:Compact, + INFIL_SCH_PNNL, !- Name + fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 24:00,0.25, !- Field 3 + For: Saturday WinterDesignDay, !- Field 5 + Until: 24:00,0.25, !- Field 6 + For: Sunday Holidays AllOtherDays, !- Field 8 + Until: 24:00,0.25; !- Field 9 + + Schedule:Compact, + SHADING_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.0; !- Field 3 + + Schedule:Compact, + PlantOnSched, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + ReheatCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + CoolingCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + HTGSETP_SCH, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: ALLDays, !- Field 2 + Until: 24:00,21.; !- Field 3 + + Schedule:Compact, + CLGSETP_SCH, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,24.0; !- Field 3 + + Schedule:Compact, + Humidity Setpoint Schedule, !- Name + Humidity, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 24:00,50, !- Field 3 + For: Saturday WinterDesignDay, !- Field 5 + Until: 24:00,50, !- Field 6 + For: Sunday Holidays AllOtherDays, !- Field 8 + Until: 24:00,50; !- Field 9 + + Schedule:Compact, + MinOA_Sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + BLDG_OA_FRAC_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 06:00,0.00, !- Field 3 + Until: 18:00,0.25, !- Field 5 + Until: 24:00,0.00, !- Field 7 + For: SummerDesignDay, !- Field 9 + Until: 06:00,0.00, !- Field 10 + Until: 18:00,0.25, !- Field 12 + Until: 24:00,0.00, !- Field 14 + For: WinterDesignDay, !- Field 16 + Until: 06:00,0.00, !- Field 17 + Until: 18:00,0.25, !- Field 19 + Until: 24:00,0.00, !- Field 21 + For: Saturday, !- Field 23 + Until: 06:00,0.00, !- Field 24 + Until: 18:00,0.25, !- Field 26 + Until: 24:00,0.00, !- Field 28 + For: Sunday Holidays AllOtherDays, !- Field 30 + Until: 24:00,0.00; !- Field 31 + + Schedule:Compact, + OR_MinSA_Sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 09:00,0.2, !- Field 3 This is changed to a PARM variable because 2015 IECC has 30pct minimum MDP and 90.1-2010 has 20pct minimum. + Until: 18:00,1.0, !- Field 5 + Until: 24:00,0.2, !- Field 7 + For: SummerDesignDay, !- Field 9 + Until: 24:00,1.0, !- Field 10 + For: WinterDesignDay, !- Field 12 + Until: 24:00,0.2, !- Field 13 + For: Saturday, !- Field 15 + Until: 09:00,0.2, !- Field 16 + Until: 17:00,1.0, !- Field 18 + Until: 24:00,0.2, !- Field 20 + For: Sunday Holidays AllOtherDays, !- Field 22 + Until: 24:00,0.2; !- Field 23 + + Schedule:Compact, + VAV_ER_OAminOAFracSchedule, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.3300; !- Field 3 + + Schedule:Compact, + VAV_OR_OAminOAFracSchedule, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.3300; !- Field 3 + + Schedule:Compact, + VAV_ICU_OAminOAFracSchedule, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.3300; !- Field 3 + + Schedule:Compact, + VAV_PATRMS_OAminOAFracSchedule, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.3300; !- Field 3 + + Schedule:Compact, + VAV_LABS_OAminOAFracSchedule, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0000; !- Field 3 + + Schedule:Compact, + Dual Zone Control Type Sched, !- Name + Control Type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + Cool-Supply-Air-Temp-Sch,!- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,12.8; !- Field 3 + + Schedule:Compact, + Heat-Supply-Air-Temp-Sch,!- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,12.8; !- Field 3 + + Schedule:Compact, + CW-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,6.7; !- Field 3 + + Schedule:Compact, + HW-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,82; !- Field 3 + + Schedule:Compact, + ER_Exam1_Mult4_Flr_1 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + ER_Exam1_Mult4_Flr_1 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + ER_Exam1_Mult4_Flr_1 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + ER_Exam1_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + ER_Trauma1_Flr_1 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + ER_Trauma1_Flr_1 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + ER_Trauma1_Flr_1 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + ER_Trauma1_Flr_1 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + ER_Exam3_Mult4_Flr_1 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + ER_Exam3_Mult4_Flr_1 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + ER_Exam3_Mult4_Flr_1 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + ER_Exam3_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + ER_Trauma2_Flr_1 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + ER_Trauma2_Flr_1 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + ER_Trauma2_Flr_1 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + ER_Trauma2_Flr_1 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + ER_Triage_Mult4_Flr_1 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + ER_Triage_Mult4_Flr_1 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + ER_Triage_Mult4_Flr_1 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + ER_Triage_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + OR1_Flr_2 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + OR1_Flr_2 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + OR1_Flr_2 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + OR1_Flr_2 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + OR2_Mult5_Flr_2 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + OR2_Mult5_Flr_2 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + OR2_Mult5_Flr_2 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + OR2_Mult5_Flr_2 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + OR3_Flr_2 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + OR3_Flr_2 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + OR3_Flr_2 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + OR3_Flr_2 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + OR4_Flr_2 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + OR4_Flr_2 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + OR4_Flr_2 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + OR4_Flr_2 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom1_Mult10_Flr_3 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom1_Mult10_Flr_3 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom1_Mult10_Flr_3 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom1_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom2_Flr_3 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom2_Flr_3 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom2_Flr_3 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom2_Flr_3 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom3_Mult10_Flr_3 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom3_Mult10_Flr_3 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom3_Mult10_Flr_3 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom3_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom4_Flr_3 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom4_Flr_3 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom4_Flr_3 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom4_Flr_3 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom5_Mult10_Flr_3 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom5_Mult10_Flr_3 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom5_Mult10_Flr_3 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom5_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PhysTherapy_Flr_3 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PhysTherapy_Flr_3 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PhysTherapy_Flr_3 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PhysTherapy_Flr_3 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom6_Flr_3 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom6_Flr_3 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom6_Flr_3 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom6_Flr_3 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom7_Mult10_Flr_3 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom7_Mult10_Flr_3 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom7_Mult10_Flr_3 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom7_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom8_Flr_3 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom8_Flr_3 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom8_Flr_3 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom8_Flr_3 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + Lab_Flr_3 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + Lab_Flr_3 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + Lab_Flr_3 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + Lab_Flr_3 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom1_Mult10_Flr_4 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom1_Mult10_Flr_4 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom1_Mult10_Flr_4 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom1_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom2_Flr_4 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom2_Flr_4 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom2_Flr_4 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom2_Flr_4 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom3_Mult10_Flr_4 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom3_Mult10_Flr_4 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom3_Mult10_Flr_4 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom3_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom4_Flr_4 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom4_Flr_4 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom4_Flr_4 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom4_Flr_4 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom5_Mult10_Flr_4 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom5_Mult10_Flr_4 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom5_Mult10_Flr_4 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom5_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + Radiology_Flr_4 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + Radiology_Flr_4 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + Radiology_Flr_4 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + Radiology_Flr_4 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom6_Flr_4 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom6_Flr_4 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom6_Flr_4 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom6_Flr_4 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom7_Mult10_Flr_4 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom7_Mult10_Flr_4 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom7_Mult10_Flr_4 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom7_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + PatRoom8_Flr_4 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + PatRoom8_Flr_4 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + PatRoom8_Flr_4 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + PatRoom8_Flr_4 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + Lab_Flr_4 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + Lab_Flr_4 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + Lab_Flr_4 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + Lab_Flr_4 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + Kitchen_Flr_5 sub cat Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + Kitchen_Flr_5 sub cat Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + + Schedule:Compact, + Kitchen_Flr_5 sub cat Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + Kitchen_Flr_5 sub catHot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseDefrost2aDaySched, !- Name + ON/OFF, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For:AllDays, !- Field 2 + Interpolate:Average, !- Field 3 + Until: 11:00,0, !- Field 4 + Until: 11:20,1, !- Field 6 + Until: 23:00,0, !- Field 8 + Until: 23:20,1, !- Field 10 + Until: 24:00,0; !- Field 12 + + Schedule:Compact, + Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseDripDown2aDaySched, !- Name + ON/OFF, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For:AllDays, !- Field 2 + Interpolate:Average, !- Field 3 + Until: 11:00,0, !- Field 4 + Until: 11:30,1, !- Field 6 + Until: 23:00,0, !- Field 8 + Until: 23:30,1, !- Field 10 + Until: 24:00,0; !- Field 12 + + Schedule:Compact, + Kitchen_Flr_5_Case:1_WALKINFREEZER_WalkInStockingSched, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Tuesday Friday, !- Field 2 + Until: 4:00,0.0, !- Field 3 + Until: 5:00,725.0, !- Field 5 + Until: 6:00,417.0, !- Field 7 + Until: 7:00,290.0, !- Field 9 + Until: 24:00,0.0, !- Field 11 + For: AllOtherDays, !- Field 13 + Until: 4:00,0.0, !- Field 14 + Until: 5:00,125.0, !- Field 16 + Until: 6:00,117.0, !- Field 18 + Until: 7:00,90.0, !- Field 20 + Until: 19:00,0.0, !- Field 22 + Until: 20:00,125.0, !- Field 24 + Until: 21:00,117.0, !- Field 26 + Until: 22:00,90.0, !- Field 28 + Until: 24:00,0.0; !- Field 30 + + Schedule:Compact, + Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseCreditReduxSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For:AllDays, !- Field 2 + Interpolate:No, !- Field 3 + Until: 7:00,0.2, !- Field 4 + Until: 21:00,0.4, !- Field 6 + Until: 24:00,0.2; !- Field 8 + + Schedule:Compact, + Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASE_CaseStockingSched, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For:AllDays, !- Field 2 + Until: 6:00,0.0, !- Field 3 + Until: 7:00,50.0, !- Field 5 + Until: 9:00,70.0, !- Field 7 + Until: 10:00,80.0, !- Field 9 + Until: 11:00,70.0, !- Field 11 + Until: 13:00,50.0, !- Field 13 + Until: 14:00,80.0, !- Field 15 + Until: 15:00,90.0, !- Field 17 + Until: 16:00,80.0, !- Field 19 + Until: 24:00,0.0; !- Field 21 + + + + Schedule:Compact, + Kitchen_Exhaust_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 07:00,0, !- Field 3 + Until: 24:00,1; !- Field 5 + +!- Per 90.1-2010 G3.1.3.11, the tower shall be controlled to maintain a 70F leaving water temperature +!- where weather permits, floating up to leaving water temperature at design conditions. + Schedule:Compact, + Tower-Loop-Temp-Schedule,!- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,21.1; !- Field 3 + + Schedule:Compact, + SHWSys1-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60; !- Field 3 + + Schedule:Compact, + SHWSys1 Water Heater Setpoint Temperature Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + SHWSys1 Water Heater Ambient Temperature Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,22.0; !- Field 3 + + Schedule:Compact, + VAV_SAT_SCH, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,12.8; !- Field 3 + + + + Schedule:Compact, + MinRelHumSetSch, !- Name + Humidity, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,40; !- Field 3 + + Schedule:Compact, + MinRelHumSetSch_addDI, !- Name + Humidity, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,30; !- Field 3 + + + + Schedule:Compact, + MinRelHumSetSch_addDI_ICU, !- Name + Humidity, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,35; !- Field 3 + + Schedule:Compact, + MaxRelHumSetSch, !- Name + Humidity, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60; !- Field 3 + + + Schedule:Constant, + VAV_1 Max OA Fraction, !- Name + , !- Schedule Type Limits Name + 1.0; !- Hourly Value + + Schedule:Constant, + VAV_2 Max OA Fraction, !- Name + , !- Schedule Type Limits Name + 1.0; !- Hourly Value + + + + Schedule:Constant, + Heat Recovery Chiller Setpoint, + Temperature, + 48.89; + + Schedule:Constant, + Dummy Water Heater Setpoint, + Temperature, + 10.0; !- Low enough to ensure that the burner doesn't turn on + + Schedule:Constant, + Bypass Heat Exchanger Status, + Any Number, + 1; + + +!- =========== ALL OBJECTS IN CLASS: PEOPLE =========== + + People, + Basement, !- Name + Basement, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 100.5885, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + ER_Exam1_Mult4_Flr_1, !- Name + ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 5.9976, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + ER_Trauma1_Flr_1, !- Name + ER_Trauma1_Flr_1, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 5.9976, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + ER_Exam3_Mult4_Flr_1, !- Name + ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 5.9976, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + ER_Trauma2_Flr_1, !- Name + ER_Trauma2_Flr_1, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 5.9976, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + ER_Triage_Mult4_Flr_1, !- Name + ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 5.9976, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Office1_Mult4_Flr_1, !- Name + Office1_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.05, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Lobby_Records_Flr_1, !- Name + Lobby_Records_Flr_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 21.1586, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_Flr_1, !- Name + Corridor_Flr_1, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 6.1228, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + ER_NurseStn_Lobby_Flr_1, !- Name + ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 17.7269, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + OR1_Flr_2, !- Name + OR1_Flr_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 2.9988, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + OR2_Mult5_Flr_2, !- Name + OR2_Mult5_Flr_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 2.9988, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + OR3_Flr_2, !- Name + OR3_Flr_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 2.9988, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + OR4_Flr_2, !- Name + OR4_Flr_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 11.9956, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + IC_PatRoom1_Mult5_Flr_2, !- Name + IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.1244, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + IC_PatRoom2_Flr_2, !- Name + IC_PatRoom2_Flr_2, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.4994, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + IC_PatRoom3_Mult6_Flr_2, !- Name + IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.1244, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + ICU_Flr_2, !- Name + ICU_Flr_2, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 33.2462, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + ICU_NurseStn_Lobby_Flr_2,!- Name + ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 9.5946, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_Flr_2, !- Name + Corridor_Flr_2, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 6.1228, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + OR_NurseStn_Lobby_Flr_2, !- Name + OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 14.528, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom1_Mult10_Flr_3, !- Name + PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.1244, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom2_Flr_3, !- Name + PatRoom2_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.8744, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom3_Mult10_Flr_3, !- Name + PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.0873, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom4_Flr_3, !- Name + PatRoom4_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.8744, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom5_Mult10_Flr_3, !- Name + PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.1244, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PhysTherapy_Flr_3, !- Name + PhysTherapy_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 26.2404, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom6_Flr_3, !- Name + PatRoom6_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.4994, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom7_Mult10_Flr_3, !- Name + PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.0873, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom8_Flr_3, !- Name + PatRoom8_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.4994, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + NurseStn_Lobby_Flr_3, !- Name + NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 12.9952, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Lab_Flr_3, !- Name + Lab_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 14.2446, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_SE_Flr_3, !- Name + Corridor_SE_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 6.0978, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_NW_Flr_3, !- Name + Corridor_NW_Flr_3, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 6.0978, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom1_Mult10_Flr_4, !- Name + PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.1244, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom2_Flr_4, !- Name + PatRoom2_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.8744, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom3_Mult10_Flr_4, !- Name + PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.0873, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom4_Flr_4, !- Name + PatRoom4_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.8744, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom5_Mult10_Flr_4, !- Name + PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.1244, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Radiology_Flr_4, !- Name + Radiology_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 26.2404, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom6_Flr_4, !- Name + PatRoom6_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.4994, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom7_Mult10_Flr_4, !- Name + PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.0873, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + PatRoom8_Flr_4, !- Name + PatRoom8_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.4994, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + NurseStn_Lobby_Flr_4, !- Name + NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 12.9952, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Lab_Flr_4, !- Name + Lab_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 14.2446, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_SE_Flr_4, !- Name + Corridor_SE_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 6.0978, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_NW_Flr_4, !- Name + Corridor_NW_Flr_4, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 6.0978, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Dining_Flr_5, !- Name + Dining_Flr_5, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 74.9725, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + NurseStn_Lobby_Flr_5, !- Name + NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 14.9279, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Kitchen_Flr_5, !- Name + Kitchen_Flr_5, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 49.9818, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Office1_Flr_5, !- Name + Office1_Flr_5, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 5.2498, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Office2_Mult5_Flr_5, !- Name + Office2_Mult5_Flr_5, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 5.2483, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Office3_Flr_5, !- Name + Office3_Flr_5, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 5.2483, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Office4_Mult6_Flr_5, !- Name + Office4_Mult6_Flr_5, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1.05, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_Flr_5, !- Name + Corridor_Flr_5, !- Zone or ZoneList Name + BLDG_OCC_EXTD_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 5.3981, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + +!- =========== ALL OBJECTS IN CLASS: LIGHTS =========== + + Lights, + Basement_Lights, !- Name + Basement, !- Zone or ZoneList Name + BLDG_LIGHT_OFFICE_BSMT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.888902667, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + + + Lights, + ER_Exam1_Mult4_Flr_1_Lights, !- Name + ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_LIGHT_EXAM_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 15.06947458, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + ER_Trauma1_Flr_1_Lights, !- Name + ER_Trauma1_Flr_1, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 15.06947458, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + ER_Exam3_Mult4_Flr_1_Lights, !- Name + ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_LIGHT_EXAM_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 15.06947458, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + ER_Trauma2_Flr_1_Lights, !- Name + ER_Trauma2_Flr_1, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 15.06947458, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + ER_Triage_Mult4_Flr_1_Lights, !- Name + ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 15.06947458, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Office1_Mult4_Flr_1_Lights, !- Name + Office1_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_LIGHT_OFFICE_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.888902667, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Lobby_Records_Flr_1_Lights, !- Name + Lobby_Records_Flr_1, !- Zone or ZoneList Name + BLDG_LIGHT_LOBBYFLR1_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.794114811, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_Flr_1_Lights, !- Name + Corridor_Flr_1, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.642376396, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + ER_NurseStn_Lobby_Flr_1_Lights, !- Name + ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name + BLDG_LIGHT_NURSEFLR1_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 11.17293901, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + OR1_Flr_2_Lights, !- Name + OR1_Flr_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 24.32643754, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + OR2_Mult5_Flr_2_Lights, !- Name + OR2_Mult5_Flr_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 24.32643754, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + OR3_Flr_2_Lights, !- Name + OR3_Flr_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 24.32643754, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + OR4_Flr_2_Lights, !- Name + OR4_Flr_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 24.32643754, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + IC_PatRoom1_Mult5_Flr_2_Lights, !- Name + IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 13.45488802, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + IC_PatRoom2_Flr_2_Lights,!- Name + IC_PatRoom2_Flr_2, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 13.45488802, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + IC_PatRoom3_Mult6_Flr_2_Lights, !- Name + IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 13.45488802, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + ICU_Flr_2_Lights, !- Name + ICU_Flr_2, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 13.45488802, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + ICU_NurseStn_Lobby_Flr_2_Lights, !- Name + ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 12.59377519,!- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_Flr_2_Lights, !- Name + Corridor_Flr_2, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.642376396, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + OR_NurseStn_Lobby_Flr_2_Lights, !- Name + OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name + BLDG_LIGHT_NURSEFLR234_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.46252093, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom1_Mult10_Flr_3_Lights, !- Name + PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom2_Flr_3_Lights, !- Name + PatRoom2_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom3_Mult10_Flr_3_Lights, !- Name + PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom4_Flr_3_Lights, !- Name + PatRoom4_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom5_Mult10_Flr_3_Lights, !- Name + PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PhysTherapy_Flr_3_Lights,!- Name + PhysTherapy_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_RADIOLOGY_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.795158479, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom6_Flr_3_Lights, !- Name + PatRoom6_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom7_Mult10_Flr_3_Lights, !- Name + PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom8_Flr_3_Lights, !- Name + PatRoom8_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + NurseStn_Lobby_Flr_3_Lights, !- Name + NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_NURSEFLR234_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.46252093, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Lab_Flr_3_Lights, !- Name + Lab_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 14.31600085, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_SE_Flr_3_Lights,!- Name + Corridor_SE_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.642376396, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_NW_Flr_3_Lights,!- Name + Corridor_NW_Flr_3, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.642376396, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom1_Mult10_Flr_4_Lights, !- Name + PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom2_Flr_4_Lights, !- Name + PatRoom2_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom3_Mult10_Flr_4_Lights, !- Name + PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom4_Flr_4_Lights, !- Name + PatRoom4_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom5_Mult10_Flr_4_Lights, !- Name + PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Radiology_Flr_4_Lights, !- Name + Radiology_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_RADIOLOGY_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.11807579, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom6_Flr_4_Lights, !- Name + PatRoom6_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom7_Mult10_Flr_4_Lights, !- Name + PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + PatRoom8_Flr_4_Lights, !- Name + PatRoom8_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.319459084, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + NurseStn_Lobby_Flr_4_Lights, !- Name + NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_NURSEFLR234_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.46252093, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Lab_Flr_4_Lights, !- Name + Lab_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 14.31600085, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_SE_Flr_4_Lights,!- Name + Corridor_SE_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.642376396, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_NW_Flr_4_Lights,!- Name + Corridor_NW_Flr_4, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.642376396, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Dining_Flr_5_Lights, !- Name + Dining_Flr_5, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.305564167,!- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + NurseStn_Lobby_Flr_5_Lights, !- Name + NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name + BLDG_LIGHT_LOBBYFLR5_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.46252093, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Kitchen_Flr_5_Lights, !- Name + Kitchen_Flr_5, !- Zone or ZoneList Name + BLDG_LIGHT_EXTD_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 11.73266235, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Office1_Flr_5_Lights, !- Name + Office1_Flr_5, !- Zone or ZoneList Name + BLDG_LIGHT_OFFICE_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.888902667, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Office2_Mult5_Flr_5_Lights, !- Name + Office2_Mult5_Flr_5, !- Zone or ZoneList Name + BLDG_LIGHT_OFFICE_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.888902667, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Office3_Flr_5_Lights, !- Name + Office3_Flr_5, !- Zone or ZoneList Name + BLDG_LIGHT_OFFICE_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.888902667, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Office4_Mult6_Flr_5_Lights, !- Name + Office4_Mult6_Flr_5, !- Zone or ZoneList Name + BLDG_LIGHT_OFFICE_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.888902667, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_Flr_5_Lights, !- Name + Corridor_Flr_5, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.642376396, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.7000, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + LightsWired, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +!- =========== ALL OBJECTS IN CLASS: ELECTRICEQUIPMENT =========== + + ElectricEquipment, + Basement_MiscPlug_Equip, !- Name + Basement, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 30176.5332, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + ER_Exam1_Mult4_Flr_1_MiscPlug_Equip, !- Name + ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 449.8365, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + ER_Trauma1_Flr_1_MiscPlug_Equip, !- Name + ER_Trauma1_Flr_1, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1199.5641, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + ER_Exam3_Mult4_Flr_1_MiscPlug_Equip, !- Name + ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 449.8365, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + ER_Trauma2_Flr_1_MiscPlug_Equip, !- Name + ER_Trauma2_Flr_1, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1199.5641, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + ER_Triage_Mult4_Flr_1_MiscPlug_Equip, !- Name + ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 599.9803, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Office1_Mult4_Flr_1_MiscPlug_Equip, !- Name + Office1_Mult4_Flr_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 164.9958, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Lobby_Records_Flr_1_MiscPlug_Equip, !- Name + Lobby_Records_Flr_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1592.7955, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + ER_NurseStn_Lobby_Flr_1_MiscPlug_Equip, !- Name + ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 18076.9806, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + OR1_Flr_2_MiscPlug_Equip,!- Name + OR1_Flr_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 2399.1281, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + OR2_Mult5_Flr_2_MiscPlug_Equip, !- Name + OR2_Mult5_Flr_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 2399.1281, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + OR3_Flr_2_MiscPlug_Equip,!- Name + OR3_Flr_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 2399.1281, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + OR4_Flr_2_MiscPlug_Equip,!- Name + OR4_Flr_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 9596.5124, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + IC_PatRoom1_Mult5_Flr_2_MiscPlug_Equip, !- Name + IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 674.7548, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + IC_PatRoom2_Flr_2_MiscPlug_Equip, !- Name + IC_PatRoom2_Flr_2, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 899.6730, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + IC_PatRoom3_Mult6_Flr_2_MiscPlug_Equip, !- Name + IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 674.7548, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + ICU_Flr_2_MiscPlug_Equip,!- Name + ICU_Flr_2, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 19947.8932, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + ICU_NurseStn_Lobby_Flr_2_MiscPlug_Equip, !- Name + ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 14391.8825, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + OR_NurseStn_Lobby_Flr_2_MiscPlug_Equip, !- Name + OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 11331.4767, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom1_Mult10_Flr_3_MiscPlug_Equip, !- Name + PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 449.8365, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom2_Flr_3_MiscPlug_Equip, !- Name + PatRoom2_Flr_3, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 749.7275, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom3_Mult10_Flr_3_MiscPlug_Equip, !- Name + PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 434.8813, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom4_Flr_3_MiscPlug_Equip, !- Name + PatRoom4_Flr_3, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 749.7275, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom5_Mult10_Flr_3_MiscPlug_Equip, !- Name + PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 449.8365, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PhysTherapy_Flr_3_MiscPlug_Equip, !- Name + PhysTherapy_Flr_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 7872.1391, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom6_Flr_3_MiscPlug_Equip, !- Name + PatRoom6_Flr_3, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 599.7820, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom7_Mult10_Flr_3_MiscPlug_Equip, !- Name + PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 434.8813, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom8_Flr_3_MiscPlug_Equip, !- Name + PatRoom8_Flr_3, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 599.7820, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + NurseStn_Lobby_Flr_3_MiscPlug_Equip, !- Name + NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 10135.9539, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Lab_Flr_3_MiscPlug_Equip,!- Name + Lab_Flr_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 11395.8585, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom1_Mult10_Flr_4_MiscPlug_Equip, !- Name + PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 449.8365, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom2_Flr_4_MiscPlug_Equip, !- Name + PatRoom2_Flr_4, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 749.7275, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom3_Mult10_Flr_4_MiscPlug_Equip, !- Name + PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 434.8813, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom4_Flr_4_MiscPlug_Equip, !- Name + PatRoom4_Flr_4, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 749.7275, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom5_Mult10_Flr_4_MiscPlug_Equip, !- Name + PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 449.8365, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Radiology_Flr_4_MiscPlug_Equip, !- Name + Radiology_Flr_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 52499.8946, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom6_Flr_4_MiscPlug_Equip, !- Name + PatRoom6_Flr_4, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 599.7820, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom7_Mult10_Flr_4_MiscPlug_Equip, !- Name + PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 434.8813, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + PatRoom8_Flr_4_MiscPlug_Equip, !- Name + PatRoom8_Flr_4, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 599.7820, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + NurseStn_Lobby_Flr_4_MiscPlug_Equip, !- Name + NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 10135.9539, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Lab_Flr_4_MiscPlug_Equip,!- Name + Lab_Flr_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 11395.8585, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Dining_Flr_5_MiscPlug_Equip, !- Name + Dining_Flr_5, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 7497.2753, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + NurseStn_Lobby_Flr_5_MiscPlug_Equip, !- Name + NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 11643.3522, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + + ElectricEquipment, + Kitchen_Flr_5_MiscPlug_Equip, !- Name + Kitchen_Flr_5, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 74972.7533, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + Cooking; !- End-Use Subcategory + + + + ElectricEquipment, + Office1_Flr_5_MiscPlug_Equip, !- Name + Office1_Flr_5, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 749.9243, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Office2_Mult5_Flr_5_MiscPlug_Equip, !- Name + Office2_Mult5_Flr_5, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 749.7275, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Office3_Flr_5_MiscPlug_Equip, !- Name + Office3_Flr_5, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 749.7275, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + ElectricEquipment, + Office4_Mult6_Flr_5_MiscPlug_Equip, !- Name + Office4_Mult6_Flr_5, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 149.9455, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + MiscPlug; !- End-Use Subcategory + + + + Exterior:FuelEquipment, + Elevators, !- Name + Electricity, !- Fuel Use Type + BLDG_ELEVATORS, !- Schedule Name + 162962.637362637, !- Design Level {W} + ElevatorLift; !- End-Use Subcategory + + Exterior:FuelEquipment, + Elevators_Lights_Fan, !- Name + Electricity, !- Fuel Use Type + ELEV_LIGHT_FAN_SCH_ADD_DF, !- Schedule Name + 501, !- Design Level {W} + ElevatorLightsFan; !- End-Use Subcategory + + ElectricEquipment, + Kitchen_Flr_5_Reach-in-Freezer, !- Name + Kitchen_Flr_5, !- Zone or ZoneList Name + Always_on, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 555, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.2500, !- Fraction Radiant + 0.0000, !- Fraction Lost + ReachInFreezer; !- End-Use Subcategory + + ElectricEquipment, + Kitchen_Flr_5_Reach-in-Refrigerator, !- Name + Kitchen_Flr_5, !- Zone or ZoneList Name + Always_on, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 470, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.2500, !- Fraction Radiant + 0.0000, !- Fraction Lost + ReachInRefrigerator; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: GAS EQUIPMENT =========== + + GasEquipment, + Kitchen_Flr_5_MiscPlugGas_Equip, !- Name + Kitchen_Flr_5, !- Zone or ZoneList Name + BLDG_EQUIP_EXTD_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 149945.5066, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + Cooking; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: EXTERIORLIGHTS =========== + + Exterior:Lights, + Exterior_Lights, !- Name + Exterior_Lgt_ALWAYS_ON, !- Schedule Name + 9863, !- Design Level {W} + AstronomicalClock, !- Control Option + General; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: DAYLIGHTING:CONTROLS =========== + + Daylighting:Controls, + Office1_Flr_5_DaylCtrl, !- Name + Office1_Flr_5, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Continuousoff, !- Lighting Control Type + 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Office1_Flr_5_DaylRefPt1,!- Glare Calculation Daylighting Reference Point Name + 270.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Office1_Flr_5_DaylRefPt1,!- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 377, !- Illuminance Setpoint at Reference Point 1 {lux} + Office1_Flr_5_DaylRefPt2,!- Daylighting Reference Point 2 Name + 0.21, !- Fraction of Zone Controlled by Reference Point 2 + 377; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Office1_Flr_5_DaylRefPt1,!- Name + Office1_Flr_5, !- Zone Name + 6.096000, !- X-Coordinate of Reference Point {m} + 2.859000, !- Y-Coordinate of Reference Point {m} + 17.835200; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Office1_Flr_5_DaylRefPt2,!- Name + Office1_Flr_5, !- Zone Name + 2.859000, !- X-Coordinate of Reference Point {m} + 5.183600, !- Y-Coordinate of Reference Point {m} + 17.835200; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Office3_Flr_5_DaylCtrl, !- Name + Office3_Flr_5, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Continuousoff, !- Lighting Control Type + 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Office3_Flr_5_DaylRefPt1,!- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Office3_Flr_5_DaylRefPt1,!- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 377.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Office3_Flr_5_DaylRefPt2,!- Daylighting Reference Point 2 Name + 0.21, !- Fraction of Zone Controlled by Reference Point 2 + 377.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Office3_Flr_5_DaylRefPt1,!- Name + Office3_Flr_5, !- Zone Name + 6.096000, !- X-Coordinate of Reference Point {m} + 50.481000, !- Y-Coordinate of Reference Point {m} + 17.835200; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Office3_Flr_5_DaylRefPt2,!- Name + Office3_Flr_5, !- Zone Name + 2.859000, !- X-Coordinate of Reference Point {m} + 48.158400, !- Y-Coordinate of Reference Point {m} + 17.835200; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Lobby_Records_Flr_1_DaylCtrl, !- Name + Lobby_Records_Flr_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Continuousoff, !- Lighting Control Type + 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Lobby_Records_Flr_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 270.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Lobby_Records_Flr_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.15, !- Fraction of Zone Controlled by Reference Point 1 + 269; !- Illuminance Setpoint at Reference Point 1 {lux} + + Daylighting:ReferencePoint, + Lobby_Records_Flr_1_DaylRefPt1, !- Name + Lobby_Records_Flr_1, !- Zone Name + 2.859000, !- X-Coordinate of Reference Point {m} + 26.670000, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Office4_Mult6_Flr_5_DaylCtrl, !- Name + Office4_Mult6_Flr_5, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Continuousoff, !- Lighting Control Type + 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Office4_Mult6_Flr_5_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Office4_Mult6_Flr_5_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.94, !- Fraction of Zone Controlled by Reference Point 1 + 377.0; !- Illuminance Setpoint at Reference Point 1 {lux} + + Daylighting:ReferencePoint, + Office4_Mult6_Flr_5_DaylRefPt1, !- Name + Office4_Mult6_Flr_5, !- Zone Name + 10.668000, !- X-Coordinate of Reference Point {m} + 50.481000, !- Y-Coordinate of Reference Point {m} + 17.835200; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Office2_Mult5_Flr_5_DaylCtrl, !- Name + Office2_Mult5_Flr_5, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Continuousoff, !- Lighting Control Type + 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Office2_Mult5_Flr_5_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Office2_Mult5_Flr_5_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.47, !- Fraction of Zone Controlled by Reference Point 1 + 377.0; !- Illuminance Setpoint at Reference Point 1 {lux} + + Daylighting:ReferencePoint, + Office2_Mult5_Flr_5_DaylRefPt1, !- Name + Office2_Mult5_Flr_5, !- Zone Name + 2.859000, !- X-Coordinate of Reference Point {m} + 11.430000, !- Y-Coordinate of Reference Point {m} + 17.835200; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Dining_Flr_5_DaylCtrl, !- Name + Dining_Flr_5, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Continuousoff, !- Lighting Control Type + 0.2, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Dining_Flr_5_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Dining_Flr_5_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.19, !- Fraction of Zone Controlled by Reference Point 1 + 215.0; !- Illuminance Setpoint at Reference Point 1 {lux} + + Daylighting:ReferencePoint, + Dining_Flr_5_DaylRefPt1, !- Name + Dining_Flr_5, !- Zone Name + 54.864000, !- X-Coordinate of Reference Point {m} + 2.859024, !- Y-Coordinate of Reference Point {m} + 17.835200; !- Z-Coordinate of Reference Point {m} + + +!- =========== ALL OBJECTS IN CLASS: INFILTRATION =========== + + ZoneInfiltration:DesignFlowRate, + Basement_Infiltration, !- Name + Basement, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + ER_Exam1_Mult4_Flr_1_Infiltration, !- Name + ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + ER_Trauma1_Flr_1_Infiltration, !- Name + ER_Trauma1_Flr_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + ER_Exam3_Mult4_Flr_1_Infiltration, !- Name + ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + ER_Trauma2_Flr_1_Infiltration, !- Name + ER_Trauma2_Flr_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + ER_Triage_Mult4_Flr_1_Infiltration, !- Name + ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Office1_Mult4_Flr_1_Infiltration, !- Name + Office1_Mult4_Flr_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Lobby_Records_Flr_1_Infiltration, !- Name + Lobby_Records_Flr_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_Flr_1_Infiltration, !- Name + Corridor_Flr_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + ER_NurseStn_Lobby_Flr_1_Infiltration, !- Name + ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + OR1_Flr_2_Infiltration, !- Name + OR1_Flr_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + OR2_Mult5_Flr_2_Infiltration, !- Name + OR2_Mult5_Flr_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + OR3_Flr_2_Infiltration, !- Name + OR3_Flr_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + OR4_Flr_2_Infiltration, !- Name + OR4_Flr_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + IC_PatRoom1_Mult5_Flr_2_Infiltration, !- Name + IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + IC_PatRoom2_Flr_2_Infiltration, !- Name + IC_PatRoom2_Flr_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + IC_PatRoom3_Mult6_Flr_2_Infiltration, !- Name + IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + ICU_Flr_2_Infiltration, !- Name + ICU_Flr_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + ICU_NurseStn_Lobby_Flr_2_Infiltration, !- Name + ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_Flr_2_Infiltration, !- Name + Corridor_Flr_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + OR_NurseStn_Lobby_Flr_2_Infiltration, !- Name + OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom1_Mult10_Flr_3_Infiltration, !- Name + PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom2_Flr_3_Infiltration, !- Name + PatRoom2_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom3_Mult10_Flr_3_Infiltration, !- Name + PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom4_Flr_3_Infiltration, !- Name + PatRoom4_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom5_Mult10_Flr_3_Infiltration, !- Name + PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PhysTherapy_Flr_3_Infiltration, !- Name + PhysTherapy_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom6_Flr_3_Infiltration, !- Name + PatRoom6_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom7_Mult10_Flr_3_Infiltration, !- Name + PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom8_Flr_3_Infiltration, !- Name + PatRoom8_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + NurseStn_Lobby_Flr_3_Infiltration, !- Name + NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Lab_Flr_3_Infiltration, !- Name + Lab_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_SE_Flr_3_Infiltration, !- Name + Corridor_SE_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_NW_Flr_3_Infiltration, !- Name + Corridor_NW_Flr_3, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom1_Mult10_Flr_4_Infiltration, !- Name + PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom2_Flr_4_Infiltration, !- Name + PatRoom2_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom3_Mult10_Flr_4_Infiltration, !- Name + PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom4_Flr_4_Infiltration, !- Name + PatRoom4_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom5_Mult10_Flr_4_Infiltration, !- Name + PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Radiology_Flr_4_Infiltration, !- Name + Radiology_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom6_Flr_4_Infiltration, !- Name + PatRoom6_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom7_Mult10_Flr_4_Infiltration, !- Name + PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + PatRoom8_Flr_4_Infiltration, !- Name + PatRoom8_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + NurseStn_Lobby_Flr_4_Infiltration, !- Name + NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Lab_Flr_4_Infiltration, !- Name + Lab_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_SE_Flr_4_Infiltration, !- Name + Corridor_SE_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_NW_Flr_4_Infiltration, !- Name + Corridor_NW_Flr_4, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Dining_Flr_5_Infiltration, !- Name + Dining_Flr_5, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000140134848, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + NurseStn_Lobby_Flr_5_Infiltration, !- Name + NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 5.1718464e-05, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Kitchen_Flr_5_Infiltration, !- Name + Kitchen_Flr_5, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000124488448, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Office1_Flr_5_Infiltration, !- Name + Office1_Flr_5, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000288235136, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Office2_Mult5_Flr_5_Infiltration, !- Name + Office2_Mult5_Flr_5, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000181043072, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Office3_Flr_5_Infiltration, !- Name + Office3_Flr_5, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000288235136, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Office4_Mult6_Flr_5_Infiltration, !- Name + Office4_Mult6_Flr_5, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.000274636992, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_Flr_5_Infiltration, !- Name + Corridor_Flr_5, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 7.6582016e-05, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + +!- =========== ALL OBJECTS IN CLASS: SIZING PARAMETERS =========== + + Sizing:Parameters, + 1.0, !- Heating Sizing Factor + 1.0, !- Cooling Sizing Factor + 6; !- Timesteps in Averaging Window + +!- =========== ALL OBJECTS IN CLASS: ZONE SIZING =========== + + Sizing:Zone, + Basement, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Basement, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Basement, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000368277, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA ER_Exam1_Mult4_Flr_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.01422212, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA ER_Exam1_Mult4_Flr_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370219, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + ER_Trauma1_Flr_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA ER_Trauma1_Flr_1,!- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.01422212, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA ER_Trauma1_Flr_1,!- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370219, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA ER_Exam3_Mult4_Flr_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.01422212, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA ER_Exam3_Mult4_Flr_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370219, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + ER_Trauma2_Flr_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA ER_Trauma2_Flr_1,!- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.01422212, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA ER_Trauma2_Flr_1,!- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370219, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA ER_Triage_Mult4_Flr_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.01422212, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA ER_Triage_Mult4_Flr_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370219, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Office1_Mult4_Flr_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Office1_Mult4_Flr_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Office1_Mult4_Flr_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00048257, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Lobby_Records_Flr_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Lobby_Records_Flr_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Lobby_Records_Flr_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Corridor_Flr_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_Flr_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_Flr_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA ER_NurseStn_Lobby_Flr_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA ER_NurseStn_Lobby_Flr_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + OR1_Flr_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA OR1_Flr_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.017776903, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA OR1_Flr_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.003555179, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + OR2_Mult5_Flr_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA OR2_Mult5_Flr_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.017776903, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA OR2_Mult5_Flr_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.003555179, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + OR3_Flr_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA OR3_Flr_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.017776903, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA OR3_Flr_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.003555179, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + OR4_Flr_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA OR4_Flr_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.017776903, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA OR4_Flr_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.003555179, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA IC_PatRoom1_Mult5_Flr_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA IC_PatRoom1_Mult5_Flr_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + IC_PatRoom2_Flr_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA IC_PatRoom2_Flr_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA IC_PatRoom2_Flr_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA IC_PatRoom3_Mult6_Flr_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA IC_PatRoom3_Mult6_Flr_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + ICU_Flr_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA ICU_Flr_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA ICU_Flr_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA ICU_NurseStn_Lobby_Flr_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA ICU_NurseStn_Lobby_Flr_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Corridor_Flr_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_Flr_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_Flr_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA OR_NurseStn_Lobby_Flr_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA OR_NurseStn_Lobby_Flr_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom1_Mult10_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom1_Mult10_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom2_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom2_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom2_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom3_Mult10_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom3_Mult10_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom4_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom4_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom4_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom5_Mult10_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom5_Mult10_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PhysTherapy_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PhysTherapy_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA PhysTherapy_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000380976, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom6_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom6_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom6_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom7_Mult10_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom7_Mult10_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom8_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom8_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom8_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA NurseStn_Lobby_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA NurseStn_Lobby_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Lab_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Lab_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Lab_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.001168327, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Corridor_SE_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_SE_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_SE_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Corridor_NW_Flr_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_NW_Flr_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_NW_Flr_3, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom1_Mult10_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom1_Mult10_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom2_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom2_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom2_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom3_Mult10_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom3_Mult10_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom4_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom4_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom4_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom5_Mult10_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom5_Mult10_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Radiology_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Radiology_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Radiology_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000380976,!- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom6_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom6_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom6_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom7_Mult10_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom7_Mult10_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + PatRoom8_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA PatRoom8_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + 0.007111113, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA PatRoom8_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002370237, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA NurseStn_Lobby_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA NurseStn_Lobby_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Lab_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Lab_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Lab_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.001168327, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Corridor_SE_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_SE_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_SE_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Corridor_NW_Flr_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_NW_Flr_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_NW_Flr_4, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Dining_Flr_5, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Dining_Flr_5, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Dining_Flr_5, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.001295319, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA NurseStn_Lobby_Flr_5, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA NurseStn_Lobby_Flr_5, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Kitchen_Flr_5, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Kitchen_Flr_5, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 1.88354224873518, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + ; !- Heating Maximum Air Flow Fraction + + DesignSpecification:OutdoorAir, + SZ DSOA Kitchen_Flr_5, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00202742887606986, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Office1_Flr_5, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Office1_Flr_5, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Office1_Flr_5, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00048257, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Office2_Mult5_Flr_5, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Office2_Mult5_Flr_5, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Office2_Mult5_Flr_5, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00048257, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Office3_Flr_5, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Office3_Flr_5, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Office3_Flr_5, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00048257, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Office4_Mult6_Flr_5, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Office4_Mult6_Flr_5, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Office4_Mult6_Flr_5, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00048257, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Zone, + Corridor_Flr_5, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_Flr_5, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + VAV_Zone_AirDistribution;!- Design Specification Zone Air Distribution Object Name + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_Flr_5, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.0; !- Outdoor Air Flow per Zone {m3/s} + + + DesignSpecification:ZoneAirDistribution, + VAV_Zone_AirDistribution, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + , !- Zone Air Distribution Effectiveness Schedule Name + , !- Zone Secondary Recirculation Fraction {dimensionless} + 0.6; !- Minimum Zone Ventilation Efficiency {dimensionless} + + +!- =========== ALL OBJECTS IN CLASS: SIZING:SYSTEM =========== + + + + + + Sizing:System, + VAV_1, !- AirLoop Name + Sensible, !- Type of Load to Size On + 4.3265, !- Design Outdoor Air Flow Rate {m3/s} + 0.3000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 12.8000, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum; !- System Outdoor Air Method + + + Sizing:System, + VAV_ER, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 12.8, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum; !- System Outdoor Air Method + + Sizing:System, + VAV_OR, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 12.8, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum; !- System Outdoor Air Method + + Sizing:System, + VAV_ICU, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 12.8, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum; !- System Outdoor Air Method + + + + Sizing:System, + VAV_PATRMS, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 0.5, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 12.8, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum; !- System Outdoor Air Method + + Sizing:System, + VAV_2, !- AirLoop Name + Sensible, !- Type of Load to Size On + 4.4794, !- Design Outdoor Air Flow Rate {m3/s} + 0.3000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 12.8000, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum; !- System Outdoor Air Method + + + Sizing:System, + VAV_LABS, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 12.8, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum; !- System Outdoor Air Method + + Sizing:System, + CAV_KITCHEN, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 12.8, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum; !- System Outdoor Air Method + +!- =========== ALL OBJECTS IN CLASS: PLANT SIZING =========== + + Sizing:Plant, + SHWSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60, !- Design Loop Exit Temperature {C} + 5.0; !- Loop Design Temperature Difference {deltaC} + + Sizing:Plant, + HeatSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 48.89, !- Design Loop Exit Temperature {C} + 13.89; !- Loop Design Temperature Difference {deltaC} + + + + Sizing:Plant, + CoolSys1_Supply, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 7.22, !- Design Loop Exit Temperature {C} + 8.33; !- Loop Design Temperature Difference {deltaC} + + Sizing:Plant, + CoolSys1_Demand, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 7.22, !- Design Loop Exit Temperature {C} + 8.33; !- Loop Design Temperature Difference {deltaC} + +!- Design Loop Exit Temperature: Per 90.1-2010 G3.1.3.13, condenser water design supply temperature shall be +!- 85F or 10F approaching design wet-bulb temperature, whichever is lower, with a design temperature rise of 10F (range temperature). +!- Loop Design Temperature Difference: Per 90.1-2010 G3.1.3.13, design temperature rise of 10F (range temperature). +!- Sizing Option: new inputs after V8.3. We choose coincident to be aligned with system sizing. Default (leaving blank) is noncoincident. +!- Zone Timesteps in Averaging Window: alignment with system inputs for Timesteps in Averaging Window. +!- Coincident Sizing Factor Mode: GlobalCoolingSizingFactor aligns with the system level sizing parameter inputs. + + + Sizing:Plant, + TowerWaterSys, !- Plant or Condenser Loop Name + Condenser, !- Loop Type + 29.4444444444444, !- Design Loop Exit Temperature {C} + 5.55555555555556, !- Loop Design Temperature Difference {deltaC} + Coincident, !- Sizing Option + 6, !- Zone Timesteps in Averaging Window + GlobalCoolingSizingFactor; !- Coincident Sizing Factor Mode + + Sizing:Plant, + Heat Recovery Water Loop,!- Plant or Condenser Loop Name + Heating, !- Loop Type + 48.89, !- Design Loop Exit Temperature {C} + 13.89; !- Loop Design Temperature Difference {deltaC}"; + + Sizing:Plant, + Heat Recovery Chiller Bypass Loop, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 7.22, !- Design Loop Exit Temperature {C} + 8.33; !- Loop Design Temperature Difference {deltaC} + + +!- =========== ALL OBJECTS IN CLASS: ZONECONTROL:HUMIDISTAT =========== + + + ZoneControl:Humidistat, + ER_Exam3_Mult4_Flr_1 Humidistat, !- Name + ER_Exam3_Mult4_Flr_1, !- Zone Name + MinRelHumSetSch_addDI, !- Humidifying Relative Humidity Setpoint Schedule Name + + MaxRelHumSetSch; !- Dehumidifying Relative Humidity Setpoint Schedule Name + + ZoneControl:Humidistat, + OR2_Mult5_Flr_2 Humidistat, !- Name + OR2_Mult5_Flr_2, !- Zone Name + MinRelHumSetSch_addDI, !- Humidifying Relative Humidity Setpoint Schedule Name + + MaxRelHumSetSch; !- Dehumidifying Relative Humidity Setpoint Schedule Name + + ZoneControl:Humidistat, + ICU_Flr_2 Humidistat, !- Name + ICU_Flr_2, !- Zone Name + MinRelHumSetSch_addDI_ICU, !- Humidifying Relative Humidity Setpoint Schedule Name + + MaxRelHumSetSch; !- Dehumidifying Relative Humidity Setpoint Schedule Name + + ZoneControl:Humidistat, + Lab_Flr_3 Humidistat, !- Name + Lab_Flr_3, !- Zone Name + MinRelHumSetSch_addDI, !- Humidifying Relative Humidity Setpoint Schedule Name + + MaxRelHumSetSch; !- Dehumidifying Relative Humidity Setpoint Schedule Name + + ZoneControl:Humidistat, + PatRoom5_Mult10_Flr_4 Humidistat, !- Name + PatRoom5_Mult10_Flr_4, !- Zone Name + MinRelHumSetSch_addDI, !- Humidifying Relative Humidity Setpoint Schedule Name + + MaxRelHumSetSch; !- Dehumidifying Relative Humidity Setpoint Schedule Name + + + +!- Set of chiller curves based on Dick Lord's study dated January 17, 2010... + +!- Hospital and Large Office have water cooled chillers...Hence set of water cooled chillers to be used in these prototypes... +!- Large Office will follow 90.1-2010 Path B in the PI case whereas Hospital will follow Path A based on the discussion with the SWG + +!- Changed the min. chiller condenser fluid entering temperature to 64 F (17.78 deg C) for water cooled chillers based on Dick's email dated June 4, 2010 +!- and 55 F (12.7 deg C) for air cooled chillers +!- based on email string and energyplus support clarification dated June 1, 2010...also changed the upper limit for air cooled chillers to 125 F (51.67 deg C) +!- and the water cooled chillers to 115 F (46.11 deg C) later the same day... + +! Temporary changes to address Dick's wrong PLR curves. On Oct. 27, 2010 +! Water cooled chiller PLR curve comes from E+ data library "ReformEIRChiller Carrier 19FA 5651kW/5.50COP/Vanes EIRFPLR" +! Air-cooled chiller PLR comes from the original curve before addendum M. + + +!- Water cooled chillers: Positive Displacement chillers... + +!- 90.1-2004 and 2007 Baseline curves... + +Curve:Biquadratic, + WC_PD_2004_CAPFT, !- Name + 0.9061150, !- Coefficient1 Constant + 0.0292277, !- Coefficient2 x + -0.0003647, !- Coefficient3 x**2 + -0.0009709, !- Coefficient4 y + -0.0000905, !- Coefficient5 y**2 + 0.0002527, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Biquadratic, + WC_PD_2004_EIRFT, !- Name + 0.3617105, !- Coefficient1 Constant + -0.0229833, !- Coefficient2 x + 0.0009519, !- Coefficient3 x**2 + 0.0131889, !- Coefficient4 y + 0.0003752, !- Coefficient5 y**2 + -0.0007059, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + + +Curve:Bicubic, + WC_PD_LT75_2004_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + + + + +Curve:Bicubic, + WC_PD_75TO150_2004_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_PD_150TO300_2004_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_PD_GT300_2004_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +!- 90.1-2010 Path A curves... + +Curve:Biquadratic, + WC_PD_LT150_2010_PA_CAPFT, !- Name + 0.9061150, !- Coefficient1 Constant + 0.0292277, !- Coefficient2 x + -0.0003647, !- Coefficient3 x**2 + -0.0009709, !- Coefficient4 y + -0.0000905, !- Coefficient5 y**2 + 0.0002527, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Biquadratic, + WC_PD_LT150_2010_PA_EIRFT, !- Name + 0.3617105, !- Coefficient1 Constant + -0.0229833, !- Coefficient2 x + 0.0009519, !- Coefficient3 x**2 + 0.0131889, !- Coefficient4 y + 0.0003752, !- Coefficient5 y**2 + -0.0007059, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Biquadratic, + WC_PD_GT150_2010_PA_CAPFT, !- Name + 0.9061150, !- Coefficient1 Constant + 0.0292277, !- Coefficient2 x + -0.0003647, !- Coefficient3 x**2 + -0.0009709, !- Coefficient4 y + -0.0000905, !- Coefficient5 y**2 + 0.0002527, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Biquadratic, + WC_PD_GT150_2010_PA_EIRFT, !- Name + 0.3773115, !- Coefficient1 Constant + -0.0229032, !- Coefficient2 x + 0.0016504, !- Coefficient3 x**2 + 0.0118156, !- Coefficient4 y + 0.0004345, !- Coefficient5 y**2 + -0.0010132, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Bicubic, + WC_PD_LT75_2010_PA_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_PD_75TO150_2010_PA_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_PD_150TO300_2010_PA_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_PD_GT300_2010_PA_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +!- 90.1-2010 Path B curves.. + +Curve:Biquadratic, + WC_PD_2010_PB_CAPFT, !- Name + 0.9061171, !- Coefficient1 Constant + 0.0292267, !- Coefficient2 x + -0.0003665, !- Coefficient3 x**2 + -0.0009698, !- Coefficient4 y + -0.0000907, !- Coefficient5 y**2 + 0.0002535, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Biquadratic, + WC_PD_2010_PB_EIRFT, !- Name + 0.3617782, !- Coefficient1 Constant + -0.0230016, !- Coefficient2 x + 0.0009672, !- Coefficient3 x**2 + 0.0131801, !- Coefficient4 y + 0.0003761, !- Coefficient5 y**2 + -0.0007121, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Bicubic, + WC_PD_LT75_2010_PB_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_PD_75TO150_2010_PB_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_PD_150TO300_2010_PB_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_PD_GT300_2010_PB_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + + +!- Water cooled chillers: Centrifugal Chillers... + +!- 90.1-2004 Baseline curves... + +Curve:Biquadratic, + WC_Cent_LT150_2004_CAPFT, !- Name + 0.7446451, !- Coefficient1 Constant + 0.0114858, !- Coefficient2 x + 0.0000148, !- Coefficient3 x**2 + 0.0224010, !- Coefficient4 y + -0.0006880, !- Coefficient5 y**2 + 0.0009839, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Biquadratic, + WC_Cent_LT150_2004_EIRFT, !- Name + 0.7728770, !- Coefficient1 Constant + 0.0221010, !- Coefficient2 x + -0.0000799, !- Coefficient3 x**2 + -0.0070045, !- Coefficient4 y + 0.0004763, !- Coefficient5 y**2 + -0.0010612, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Biquadratic, + WC_Cent_GT150_2004_CAPFT, !- Name + 0.7600172, !- Coefficient1 Constant + 0.0147432, !- Coefficient2 x + 0.0002144, !- Coefficient3 x**2 + 0.0207218, !- Coefficient4 y + -0.0006425, !- Coefficient5 y**2 + 0.0008007, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Biquadratic, + WC_Cent_GT150_2004_EIRFT, !- Name + 0.6772577, !- Coefficient1 Constant + 0.0117857, !- Coefficient2 x + -0.0001967, !- Coefficient3 x**2 + 0.0014414, !- Coefficient4 y + 0.0003005, !- Coefficient5 y**2 + -0.0006807, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Bicubic, + WC_Cent_LT150_2004_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_Cent_150TO300_2004_EIRFPLR,!- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + + +Curve:Bicubic, + WC_Cent_GT300_2004_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + + + !- 90.1-2010 Path A curves... + +Curve:Biquadratic, + WC_Cent_2010_PA_CAPFT, !- Name + 0.7600172, !- Coefficient1 Constant + 0.0147432, !- Coefficient2 x + 0.0002144, !- Coefficient3 x**2 + 0.0207218, !- Coefficient4 y + -0.0006425, !- Coefficient5 y**2 + 0.0008007, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Biquadratic, + WC_Cent_2010_PA_EIRFT, !- Name + 0.6772577, !- Coefficient1 Constant + 0.0117857, !- Coefficient2 x + -0.0001967, !- Coefficient3 x**2 + 0.0014414, !- Coefficient4 y + 0.0003005, !- Coefficient5 y**2 + -0.0006807, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + + +Curve:Bicubic, + WC_Cent_LT150_2010_PA_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_Cent_150TO300_2010_PA_EIRFPLR,!- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_Cent_300TO600_2010_PA_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_Cent_GT600_2010_PA_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +!- 90.1-2010 Path B curves... + +Curve:Biquadratic, + WC_Cent_2010_PB_CAPFT, !- Name + 0.5362340, !- Coefficient1 Constant + 0.005581, !- Coefficient2 x + -0.0013654, !- Coefficient3 x**2 + 0.0488966, !- Coefficient4 y + -0.0012018, !- Coefficient5 y**2 + 0.0010523, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + +Curve:Biquadratic, + WC_Cent_2010_PB_EIRFT, !- Name + 1.0821822, !- Coefficient1 Constant + 0.0042977, !- Coefficient2 x + -0.0013182, !- Coefficient3 x**2 + -0.0260781, !- Coefficient4 y + 0.0008256, !- Coefficient5 y**2 + -0.0006013, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + + +Curve:Bicubic, + WC_Cent_LT150_2010_PB_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + + +Curve:Bicubic, + WC_Cent_150TO300_2010_PB_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + + +Curve:Bicubic, + WC_Cent_300TO600_2010_PB_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +Curve:Bicubic, + WC_Cent_GT600_2010_PB_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + +!- Air cooled chillers... + +!- 90.1-2004 Baseline curves... + +Curve:Biquadratic, + AC_2004_CAPFT, !- Name + 1.0433811, !- Coefficient1 Constant + 0.0407077, !- Coefficient2 x + 0.0004506, !- Coefficient3 x**2 + -0.0041514, !- Coefficient4 y + -0.0000886, !- Coefficient5 y**2 + -0.0003467, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 12.7, !- Minimum Value of y + 51.67; !- Maximum Value of y + +Curve:Biquadratic, + AC_2004_EIRFT, !- Name + 0.5961915, !- Coefficient1 Constant + -0.0099496, !- Coefficient2 x + 0.0007888, !- Coefficient3 x**2 + 0.0004506, !- Coefficient4 y + 0.0004875, !- Coefficient5 y**2 + -0.0007623, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 12.7, !- Minimum Value of y + 51.67; !- Maximum Value of y + +Curve:Quadratic, + AC_LT150_2004_EIRFPLR, !- Name + 0.1410, !- Coefficient1 Constant + 0.6550, !- Coefficient2 x + 0.2030, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 1.0000; !- Maximum Value of x + +Curve:Quadratic, + AC_GT150_2004_EIRFPLR, !- Name + 0.1410, !- Coefficient1 Constant + 0.6550, !- Coefficient2 x + 0.2030, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 1.0000; !- Maximum Value of x + +!- 90.1-2010 Path A curves... + +Curve:Biquadratic, + AC_2010_PA_CAPFT, !- Name + 1.0433825, !- Coefficient1 Constant + 0.0407073, !- Coefficient2 x + 0.0004506, !- Coefficient3 x**2 + -0.0041514, !- Coefficient4 y + -0.0000886, !- Coefficient5 y**2 + -0.0003467, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 12.7, !- Minimum Value of y + 51.67; !- Maximum Value of y + +Curve:Biquadratic, + AC_2010_PA_EIRFT, !- Name + 0.5961907, !- Coefficient1 Constant + -0.0099493, !- Coefficient2 x + 0.0007888, !- Coefficient3 x**2 + 0.0004506, !- Coefficient4 y + 0.0004875, !- Coefficient5 y**2 + -0.0007623, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 12.7, !- Minimum Value of y + 51.67; !- Maximum Value of y + +Curve:Quadratic, + AC_LT150_2010_PA_EIRFPLR, !- Name + 0.1410, !- Coefficient1 Constant + 0.6550, !- Coefficient2 x + 0.2030, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 1.0000; !- Maximum Value of x + +Curve:Quadratic, + AC_GT150_2010_PA_EIRFPLR, !- Name + 0.1410, !- Coefficient1 Constant + 0.6550, !- Coefficient2 x + 0.2030, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 1.0000; !- Maximum Value of x + + + + + +!- =========== ALL OBJECTS IN CLASS: CURVE:BIQUADRATIC =========== + +!***** Following curve is from Dick Lord's Chiller Model study for ASHRAE 2007 baseline ***** + + Curve:Biquadratic, + ChillerCentCapFT, !- Name + 0.7446451, !- Coefficient1 Constant + 0.0114858, !- Coefficient2 x + 0.0000148, !- Coefficient3 x**2 + 0.0224010, !- Coefficient4 y + -0.0006880, !- Coefficient5 y**2 + 0.0009839, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 24.0000, !- Minimum Value of y + 35.0000; !- Maximum Value of y +!***** Following curve is from Dick Lord's Chiller Model study for ASHRAE 2007 baseline ***** + + Curve:Biquadratic, + ChillerCentEIRFT, !- Name + 0.7728770, !- Coefficient1 Constant + 0.0221010, !- Coefficient2 x + -0.0000799, !- Coefficient3 x**2 + -0.0070045, !- Coefficient4 y + 0.0004763, !- Coefficient5 y**2 + -0.0010612, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 24.0000, !- Minimum Value of y + 35.0000; !- Maximum Value of y + + + + + +!- =========== ALL OBJECTS IN CLASS: CURVE:BICUBIC =========== +!***** Following curve is from Dick Lord's Chiller Model study for ASHRAE 2007 baseline ***** + + Curve:Bicubic, + ChillerCentEIRPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +!- =========== ALL OBJECTS IN CLASS: CURVE:CUBIC =========== + + Curve:Cubic, + Kitchen_Flr_5_Case:1_WALKINFREEZERSingleShelfHorizontal_LatentEnergyMult, !- Name + 0.0236, !- Coefficient1 Constant + 0.0006, !- Coefficient2 x + 0.0000, !- Coefficient3 x**2 + 0.0000, !- Coefficient4 x**3 + -35.0, !- Minimum Value of x + 20.0; !- Maximum Value of x + + Curve:Cubic, + Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASEMultiShelfVertical_LatentEnergyMult, !- Name + 0.026526281, !- Coefficient1 Constant + 0.001078032, !- Coefficient2 x + 0.0000602558, !- Coefficient3 x**2 + 0.00000123732, !- Coefficient4 x**3 + -35.0, !- Minimum Value of x + 20.0; !- Maximum Value of x + +!- =========== ALL OBJECTS IN CLASS: CURVE:QUADRATIC =========== + + Curve:Quadratic, + RACK1_RackCOPfTCurve, !- Name + 1.7603, !- Coefficient1 Constant + -0.0377, !- Coefficient2 x + 0.0004, !- Coefficient3 x**2 + 10.0000, !- Minimum Value of x + 35.0000; !- Maximum Value of x + + Curve:Quadratic, + RACK1_RackCondFanCurve2, !- Name + 0.0000, !- Coefficient1 Constant + 0.0286, !- Coefficient2 x + 0.0000, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 35.0000; !- Maximum Value of x + + Curve:Quadratic, + RACK2_RackCOPfTCurve, !- Name + 1.0000, !- Coefficient1 Constant + 0.0000, !- Coefficient2 x + 0.0000, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 50.0000; !- Maximum Value of x + +!- =========== ALL OBJECTS IN CLASS: NODELIST =========== + + NodeList, + Basement Inlet Nodes, !- Name + Basement VAV Box Outlet Node; !- Node 1 Name + + NodeList, + ER_Exam1_Mult4_Flr_1 Inlet Nodes, !- Name + ER_Exam1_Mult4_Flr_1 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + ER_Trauma1_Flr_1 Inlet Nodes, !- Name + ER_Trauma1_Flr_1 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + ER_Exam3_Mult4_Flr_1 Inlet Nodes, !- Name + ER_Exam3_Mult4_Flr_1 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + ER_Trauma2_Flr_1 Inlet Nodes, !- Name + ER_Trauma2_Flr_1 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + ER_Triage_Mult4_Flr_1 Inlet Nodes, !- Name + ER_Triage_Mult4_Flr_1 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Office1_Mult4_Flr_1 Inlet Nodes, !- Name + Office1_Mult4_Flr_1 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Lobby_Records_Flr_1 Inlet Nodes, !- Name + Lobby_Records_Flr_1 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Corridor_Flr_1 Inlet Nodes, !- Name + Corridor_Flr_1 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + ER_NurseStn_Lobby_Flr_1 Inlet Nodes, !- Name + ER_NurseStn_Lobby_Flr_1 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + OR1_Flr_2 Inlet Nodes, !- Name + OR1_Flr_2 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + OR2_Mult5_Flr_2 Inlet Nodes, !- Name + OR2_Mult5_Flr_2 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + OR3_Flr_2 Inlet Nodes, !- Name + OR3_Flr_2 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + OR4_Flr_2 Inlet Nodes, !- Name + OR4_Flr_2 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + IC_PatRoom1_Mult5_Flr_2 Inlet Nodes, !- Name + IC_PatRoom1_Mult5_Flr_2 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + IC_PatRoom2_Flr_2 Inlet Nodes, !- Name + IC_PatRoom2_Flr_2 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + IC_PatRoom3_Mult6_Flr_2 Inlet Nodes, !- Name + IC_PatRoom3_Mult6_Flr_2 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + ICU_Flr_2 Inlet Nodes, !- Name + ICU_Flr_2 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + ICU_NurseStn_Lobby_Flr_2 Inlet Nodes, !- Name + ICU_NurseStn_Lobby_Flr_2 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Corridor_Flr_2 Inlet Nodes, !- Name + Corridor_Flr_2 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + OR_NurseStn_Lobby_Flr_2 Inlet Nodes, !- Name + OR_NurseStn_Lobby_Flr_2 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom1_Mult10_Flr_3 Inlet Nodes, !- Name + PatRoom1_Mult10_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom2_Flr_3 Inlet Nodes, !- Name + PatRoom2_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom3_Mult10_Flr_3 Inlet Nodes, !- Name + PatRoom3_Mult10_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom4_Flr_3 Inlet Nodes, !- Name + PatRoom4_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom5_Mult10_Flr_3 Inlet Nodes, !- Name + PatRoom5_Mult10_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PhysTherapy_Flr_3 Inlet Nodes, !- Name + PhysTherapy_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom6_Flr_3 Inlet Nodes, !- Name + PatRoom6_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom7_Mult10_Flr_3 Inlet Nodes, !- Name + PatRoom7_Mult10_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom8_Flr_3 Inlet Nodes, !- Name + PatRoom8_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + NurseStn_Lobby_Flr_3 Inlet Nodes, !- Name + NurseStn_Lobby_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Lab_Flr_3 Inlet Nodes, !- Name + Lab_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Corridor_SE_Flr_3 Inlet Nodes, !- Name + Corridor_SE_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Corridor_NW_Flr_3 Inlet Nodes, !- Name + Corridor_NW_Flr_3 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom1_Mult10_Flr_4 Inlet Nodes, !- Name + PatRoom1_Mult10_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom2_Flr_4 Inlet Nodes, !- Name + PatRoom2_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom3_Mult10_Flr_4 Inlet Nodes, !- Name + PatRoom3_Mult10_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom4_Flr_4 Inlet Nodes, !- Name + PatRoom4_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom5_Mult10_Flr_4 Inlet Nodes, !- Name + PatRoom5_Mult10_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Radiology_Flr_4 Inlet Nodes, !- Name + Radiology_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom6_Flr_4 Inlet Nodes, !- Name + PatRoom6_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom7_Mult10_Flr_4 Inlet Nodes, !- Name + PatRoom7_Mult10_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + PatRoom8_Flr_4 Inlet Nodes, !- Name + PatRoom8_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + NurseStn_Lobby_Flr_4 Inlet Nodes, !- Name + NurseStn_Lobby_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Lab_Flr_4 Inlet Nodes, !- Name + Lab_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Corridor_SE_Flr_4 Inlet Nodes, !- Name + Corridor_SE_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Corridor_NW_Flr_4 Inlet Nodes, !- Name + Corridor_NW_Flr_4 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Dining_Flr_5 Inlet Nodes,!- Name + Dining_Flr_5 VAV Box Outlet Node; !- Node 1 Name + + + NodeList, + NurseStn_Lobby_Flr_5 Inlet Nodes, !- Name + NurseStn_Lobby_Flr_5 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Kitchen_Flr_5 Inlet Nodes, !- Name + Kitchen_Flr_5 Inlet Node;!- Node 1 Name + + NodeList, + Kitchen_Flr_5 Exhaust Nodes, !- Name + Kitchen_Flr_5 Exhaust Fan Node; !- Node 1 Name + + NodeList, + Office1_Flr_5 Inlet Nodes, !- Name + Office1_Flr_5 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Office2_Mult5_Flr_5 Inlet Nodes, !- Name + Office2_Mult5_Flr_5 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Office3_Flr_5 Inlet Nodes, !- Name + Office3_Flr_5 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Office4_Mult6_Flr_5 Inlet Nodes, !- Name + Office4_Mult6_Flr_5 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + Corridor_Flr_5 Inlet Nodes, !- Name + Corridor_Flr_5 VAV Box Outlet Node; !- Node 1 Name + + NodeList, + VAV_1_OANode List, !- Name + VAV_1_OAInlet Node; !- Node 1 Name + + NodeList, + VAV_ER_OANode List, !- Name + VAV_ER_OAInlet Node; !- Node 1 Name + + NodeList, + VAV_OR_OANode List, !- Name + VAV_OR_OAInlet Node; !- Node 1 Name + + NodeList, + VAV_ICU_OANode List, !- Name + VAV_ICU_OAInlet Node; !- Node 1 Name + + NodeList, + VAV_PATRMS_OANode List, !- Name + VAV_PATRMS_OAInlet Node; !- Node 1 Name + + NodeList, + VAV_2_OANode List, !- Name + VAV_2_OAInlet Node; !- Node 1 Name + + NodeList, + VAV_LABS_OANode List, !- Name + VAV_LABS_OAInlet Node; !- Node 1 Name + + NodeList, + CAV_KITCHEN_OANode List, !- Name + CAV_KITCHEN_OAInlet Node;!- Node 1 Name + +!- =========== ALL OBJECTS IN CLASS: BRANCHLIST =========== + + BranchList, + VAV_1 Air Loop Branches, !- Name + VAV_1 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + VAV_ER Air Loop Branches,!- Name + VAV_ER Air Loop Main Branch; !- Branch 1 Name + + BranchList, + VAV_OR Air Loop Branches,!- Name + VAV_OR Air Loop Main Branch; !- Branch 1 Name + + BranchList, + VAV_ICU Air Loop Branches, !- Name + VAV_ICU Air Loop Main Branch; !- Branch 1 Name + + BranchList, + VAV_PATRMS Air Loop Branches, !- Name + VAV_PATRMS Air Loop Main Branch; !- Branch 1 Name + + BranchList, + VAV_2 Air Loop Branches, !- Name + VAV_2 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + VAV_LABS Air Loop Branches, !- Name + VAV_LABS Air Loop Main Branch; !- Branch 1 Name + + BranchList, + CAV_KITCHEN Air Loop Branches, !- Name + CAV_KITCHEN Air Loop Main Branch; !- Branch 1 Name + + BranchList, + SHWSys1 Supply Branches, !- Name + SHWSys1 Supply Inlet Branch, !- Branch 1 Name + SHWSys1 Supply Equipment Branch, !- Branch 2 Name + SHWSys1 Supply Equipment Bypass Branch, !- Branch 3 Name + SHWSys1 Supply Outlet Branch; !- Branch 4 Name + + BranchList, + SHWSys1 Demand Branches, !- Name + SHWSys1 Demand Inlet Branch, !- Branch 1 Name + SHWSys1 Demand Load Branch 1, !- Branch 2 Name + SHWSys1 Demand Load Branch 2, !- Branch 3 Name + SHWSys1 Demand Load Branch 3, !- Branch 4 Name + SHWSys1 Demand Load Branch 4, !- Branch 5 Name + SHWSys1 Demand Load Branch 5, !- Branch 6 Name + SHWSys1 Demand Load Branch 6, !- Branch 7 Name + SHWSys1 Demand Load Branch 7, !- Branch 8 Name + SHWSys1 Demand Load Branch 8, !- Branch 9 Name + SHWSys1 Demand Load Branch 9, !- Branch 10 Name + SHWSys1 Demand Load Branch 10, !- Branch 11 Name + SHWSys1 Demand Load Branch 11, !- Branch 12 Name + SHWSys1 Demand Load Branch 12, !- Branch 13 Name + SHWSys1 Demand Load Branch 13, !- Branch 14 Name + SHWSys1 Demand Load Branch 14, !- Branch 15 Name + SHWSys1 Demand Load Branch 15, !- Branch 16 Name + SHWSys1 Demand Load Branch 16, !- Branch 17 Name + SHWSys1 Demand Load Branch 17, !- Branch 18 Name + SHWSys1 Demand Load Branch 18, !- Branch 19 Name + SHWSys1 Demand Load Branch 19, !- Branch 20 Name + SHWSys1 Demand Load Branch 20, !- Branch 21 Name + SHWSys1 Demand Load Branch 21, !- Branch 22 Name + SHWSys1 Demand Load Branch 22, !- Branch 23 Name + SHWSys1 Demand Load Branch 23, !- Branch 24 Name + SHWSys1 Demand Load Branch 24, !- Branch 25 Name + SHWSys1 Demand Load Branch 25, !- Branch 26 Name + SHWSys1 Demand Load Branch 26, !- Branch 27 Name + SHWSys1 Demand Load Branch 27, !- Branch 28 Name + SHWSys1 Demand Load Branch 28, !- Branch 29 Name + SHWSys1 Demand Load Branch 29, !- Branch 30 Name + SHWSys1 Demand Load Branch 30, !- Branch 31 Name + SHWSys1 Demand Bypass Branch, !- Branch 32 Name + SHWSys1 Demand Outlet Branch; !- Branch 33 Name + + BranchList, + HeatSys1 Supply Branches,!- Name + HeatSys1 Supply Inlet Branch, !- Branch 1 Name + HeatSys1 Supply Equipment Branch, !- Branch 2 Name + HeatSys1 Supply Equipment Bypass Branch, !- Branch 3 Name + HeatSys1 Supply Outlet Branch; !- Branch 4 Name + + BranchList, + HeatSys1 Demand Branches,!- Name + HeatSys1 Demand Inlet Branch, !- Branch 1 Name + HeatSys1 Demand Load Branch 1, !- Branch 2 Name + HeatSys1 Demand Load Branch 2, !- Branch 3 Name + HeatSys1 Demand Load Branch 3, !- Branch 4 Name + HeatSys1 Demand Load Branch 4, !- Branch 5 Name + HeatSys1 Demand Load Branch 5, !- Branch 6 Name + HeatSys1 Demand Load Branch 6, !- Branch 7 Name + HeatSys1 Demand Load Branch 7, !- Branch 8 Name + HeatSys1 Demand Load Branch 8, !- Branch 9 Name + HeatSys1 Demand Load Branch 9, !- Branch 10 Name + HeatSys1 Demand Load Branch 10, !- Branch 11 Name + HeatSys1 Demand Load Branch 11, !- Branch 12 Name + HeatSys1 Demand Load Branch 12, !- Branch 13 Name + HeatSys1 Demand Load Branch 13, !- Branch 14 Name + HeatSys1 Demand Load Branch 14, !- Branch 15 Name + HeatSys1 Demand Load Branch 15, !- Branch 16 Name + HeatSys1 Demand Load Branch 16, !- Branch 17 Name + HeatSys1 Demand Load Branch 17, !- Branch 18 Name + HeatSys1 Demand Load Branch 18, !- Branch 19 Name + HeatSys1 Demand Load Branch 19, !- Branch 20 Name + HeatSys1 Demand Load Branch 20, !- Branch 21 Name + HeatSys1 Demand Load Branch 21, !- Branch 22 Name + HeatSys1 Demand Load Branch 22, !- Branch 23 Name + HeatSys1 Demand Load Branch 23, !- Branch 24 Name + HeatSys1 Demand Load Branch 24, !- Branch 25 Name + HeatSys1 Demand Load Branch 25, !- Branch 26 Name + HeatSys1 Demand Load Branch 26, !- Branch 27 Name + HeatSys1 Demand Load Branch 27, !- Branch 28 Name + HeatSys1 Demand Load Branch 28, !- Branch 29 Name + HeatSys1 Demand Load Branch 29, !- Branch 30 Name + HeatSys1 Demand Load Branch 30, !- Branch 31 Name + HeatSys1 Demand Load Branch 31, !- Branch 32 Name + HeatSys1 Demand Load Branch 32, !- Branch 33 Name + HeatSys1 Demand Load Branch 33, !- Branch 34 Name + HeatSys1 Demand Load Branch 34, !- Branch 35 Name + HeatSys1 Demand Load Branch 35, !- Branch 36 Name + HeatSys1 Demand Load Branch 36, !- Branch 37 Name + HeatSys1 Demand Load Branch 37, !- Branch 38 Name + HeatSys1 Demand Load Branch 38, !- Branch 39 Name + HeatSys1 Demand Load Branch 39, !- Branch 40 Name + HeatSys1 Demand Load Branch 40, !- Branch 41 Name + HeatSys1 Demand Load Branch 41, !- Branch 42 Name + HeatSys1 Demand Load Branch 42, !- Branch 43 Name + HeatSys1 Demand Load Branch 43, !- Branch 44 Name + HeatSys1 Demand Load Branch 44, !- Branch 45 Name + HeatSys1 Demand Load Branch 45, !- Branch 46 Name + HeatSys1 Demand Load Branch 46, !- Branch 47 Name + HeatSys1 Demand Load Branch 47, !- Branch 48 Name + HeatSys1 Demand Load Branch 48, !- Branch 49 Name + HeatSys1 Demand Load Branch 49, !- Branch 50 Name + HeatSys1 Demand Load Branch 50, !- Branch 51 Name + HeatSys1 Demand Load Branch 51, !- Branch 52 Name + HeatSys1 Demand Load Branch 52, !- Branch 53 Name + HeatSys1 Demand Load Branch 53, !- Branch 54 Name + HeatSys1 Demand Load Branch 54, !- Branch 55 Name + HeatSys1 Demand Load Branch 55, !- Branch 56 Name + HeatSys1 Demand Load Branch 56, !- Branch 57 Name + HeatSys1 Demand Load Branch 57, !- Branch 58 Name + HeatSys1 Demand Load Branch 58, !- Branch 59 Name + HeatSys1 Demand Load Branch 59, !- Branch 60 Name + HeatSys1 Demand Load Branch 60, !- Branch 61 Name + HeatSys1 Demand Load Branch 61, !- Branch 62 Name + HeatSys1 Demand Load Branch 62, !- Branch 63 Name + HeatSys1 Demand Load Branch 63, !- Branch 64 Name + HeatSys1 Demand Load Branch 64, !- Branch 65 Name + HeatSys1 Demand Load Branch 65, !- Branch 66 Name + HeatSys1 Demand Load Branch 66, !- Branch 67 Name + HeatSys1 Demand Load Branch 67, !- Branch 68 Name + HeatSys1 Demand Bypass Branch, !- Branch 69 Name + HeatSys1 Demand Outlet Branch; !- Branch 70 Name + + BranchList, + CoolSys1 Supply Supply Side Branches,!- Name + CoolSys1 Supply Inlet Branch, !- Branch 1 Name + CoolSys1 Supply Equipment Branch 1, !- Branch 2 Name + CoolSys1 Supply Equipment Branch 2, !- Branch 3 Name + CoolSys1 Supply Equipment Bypass Branch, !- Branch 4 Name + CoolSys1 Supply Outlet Branch; !- Branch 5 Name + + BranchList, + CoolSys1 Demand Demand Side Branches,!- Name + CoolSys1 Demand Inlet Branch, !- Branch 1 Name + CoolSys1 Demand Load Branch 1, !- Branch 2 Name + CoolSys1 Demand Load Branch 2, !- Branch 3 Name + CoolSys1 Demand Load Branch 3, !- Branch 4 Name + CoolSys1 Demand Load Branch 4, !- Branch 5 Name + CoolSys1 Demand Load Branch 5, !- Branch 6 Name + CoolSys1 Demand Load Branch 6, !- Branch 7 Name + CoolSys1 Demand Load Branch 7, !- Branch 8 Name + CoolSys1 Demand Load Branch 8, !- Branch 9 Name + CoolSys1 Demand Outlet Branch; !- Branch 10 Name + + BranchList, + TowerWaterSys Supply Branches, !- Name + TowerWaterSys Supply Inlet Branch, !- Branch 1 Name + TowerWaterSys Supply Equipment Branch 1, !- Branch 2 Name + TowerWaterSys Supply Equipment Branch 2, !- Branch 3 Name + TowerWaterSys Supply Equipment Bypass Branch, !- Branch 4 Name + TowerWaterSys Supply Outlet Branch; !- Branch 5 Name + + BranchList, + TowerWaterSys Demand Branches, !- Name + TowerWaterSys Demand Inlet Branch, !- Branch 1 Name + TowerWaterSys Demand Load Branch 1, !- Branch 2 Name + TowerWaterSys Demand Load Branch 2, !- Branch 3 Name + TowerWaterSys Demand Load Branch 3, !- Branch Name + TowerWaterSys Demand Bypass Branch, !- Branch 4 Name + TowerWaterSys Demand Outlet Branch; !- Branch 5 Name + + BranchList, + CoolSys1 Supply Demand Side Branches, !- Name + CoolSys1 Supply Demand Side Inlet Branch, !- Branch 1 Name + CoolSys1 Heat Exchanger Supply Branch, !- Branch 2 Name + CoolSys1 Supply Side Bypass, !- Branch 3 Name + CoolSys1 Supply Demand Side Outlet Branch; !- Branch 4 Name + + BranchList, + CoolSys1 Demand Supply Side Branches, !- Name + CoolSys1 Demand Supply Side Inlet Branch, !- Branch 1 Name + CoolSys1 Heat Exchanger Demand Branch, !- Branch 2 Name + CoolSys1 Demand Side Bypass, !- Branch 3 Name + CoolSys1 Demand Supply Side Outlet Branch; !- Branch 4 Name + +!- =========== ALL OBJECTS IN CLASS: CONNECTORLIST =========== + +ConnectorList, + Heat Recovery Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heat Recovery Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heat Recovery Supply Mixer; !- Connector 2 Name + +ConnectorList, + Heat Recovery Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heat Recovery Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heat Recovery Mixer; !- Connector 2 Name + + + + ConnectorList, + SHWSys1 Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SHWSys1 Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SHWSys1 Supply Mixer; !- Connector 2 Name + + ConnectorList, + SHWSys1 Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SHWSys1 Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SHWSys1 Demand Mixer; !- Connector 2 Name + + ConnectorList, + HeatSys1 Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + HeatSys1 Supply Splitter,!- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + HeatSys1 Supply Mixer; !- Connector 2 Name + + ConnectorList, + HeatSys1 Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + HeatSys1 Demand Splitter,!- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + HeatSys1 Demand Mixer; !- Connector 2 Name + + ConnectorList, + CoolSys1 Supply Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CoolSys1 Supply Supply Side Splitter,!- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CoolSys1 Supply Supply Side Mixer; !- Connector 2 Name + + ConnectorList, + CoolSys1 Demand Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CoolSys1 Demand Demand Side Splitter,!- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CoolSys1 Demand Demand Side Mixer; !- Connector 2 Name + + ConnectorList, + TowerWaterSys Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + TowerWaterSys Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + TowerWaterSys Supply Mixer; !- Connector 2 Name + + ConnectorList, + TowerWaterSys Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + TowerWaterSys Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + TowerWaterSys Demand Mixer; !- Connector 2 Name + + ConnectorList, + CoolSys1 Supply Demand Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CoolSys1 Supply Demand Side Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CoolSys1 Supply Demand Side Mixer; !- Connector 2 Name + + ConnectorList, + CoolSys1 Demand Supply Side Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CoolSys1 Demand Supply Side Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CoolSys1 Demand Supply Side Mixer; !- Connector 2 Name + + +!- =========== ALL OBJECTS IN CLASS: BRANCH =========== + + Branch, + VAV_1 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_1_OA, !- Component 1 Name + VAV_1 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_1_OA-VAV_1_CoolCNode,!- Component 1 Outlet Node Name + Coil:Cooling:Water, !- Component 2 Object Type + VAV_1_CoolC, !- Component 2 Name + VAV_1_OA-VAV_1_CoolCNode,!- Component 2 Inlet Node Name + VAV_1_CoolC-VAV_1_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Water, !- Component 3 Object Type + VAV_1_HeatC, !- Component 3 Name + VAV_1_CoolC-VAV_1_HeatCNode, !- Component 3 Inlet Node Name + VAV_1_HeatC-VAV_1_FanNode, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + VAV_1_Fan, !- Component 4 Name + VAV_1_HeatC-VAV_1_FanNode, !- Component 4 Inlet Node Name + VAV_1 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + VAV_ER Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_ER_OA, !- Component 1 Name + VAV_ER Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_ER_OA-VAV_ER HumidifierNode, !- Component 1 Outlet Node Name + Humidifier:Steam:Electric, !- Component 2 Object Type + VAV_ER Humidifier, !- Component 2 Name + VAV_ER_OA-VAV_ER HumidifierNode, !- Component 2 Inlet Node Name + VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Electric, !- Component 3 Object Type + VAV_ER_ExtraElecHeatC, !- Component 3 Name + VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode, !- Component 3 Inlet Node Name + VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode, !- Component 3 Outlet Node Name + Coil:Heating:Water, !- Component 4 Object Type + VAV_ER_ExtraWaterHeatC, !- Component 4 Name + VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode, !- Component 4 Inlet Node Name + VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Component 4 Outlet Node Name + Coil:Cooling:Water, !- Component 5 Object Type + VAV_ER_CoolC, !- Component 5 Name + VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Component 5 Inlet Node Name + VAV_ER_CoolC-VAV_ER_HeatCNode, !- Component 5 Outlet Node Name + Coil:Heating:Water, !- Component 6 Object Type + VAV_ER_HeatC, !- Component 6 Name + VAV_ER_CoolC-VAV_ER_HeatCNode, !- Component 6 Inlet Node Name + VAV_ER_HeatC-VAV_ER_FanNode, !- Component 6 Outlet Node Name + Fan:VariableVolume, !- Component 7 Object Type + VAV_ER_Fan, !- Component 7 Name + VAV_ER_HeatC-VAV_ER_FanNode, !- Component 7 Inlet Node Name + VAV_ER Supply Equipment Outlet Node; !- Component 7 Outlet Node Name + + Branch, + VAV_OR Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_OR_OA, !- Component 1 Name + VAV_OR Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_OR_OA-VAV_OR HumidifierNode, !- Component 1 Outlet Node Name + Humidifier:Steam:Electric, !- Component 2 Object Type + VAV_OR Humidifier, !- Component 2 Name + VAV_OR_OA-VAV_OR HumidifierNode, !- Component 2 Inlet Node Name + VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Electric, !- Component 3 Object Type + VAV_OR_ExtraElecHeatC, !- Component 3 Name + VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode, !- Component 3 Inlet Node Name + VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode, !- Component 3 Outlet Node Name + Coil:Heating:Water, !- Component 4 Object Type + VAV_OR_ExtraWaterHeatC, !- Component 4 Name + VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode, !- Component 4 Inlet Node Name + VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Component 4 Outlet Node Name + Coil:Cooling:Water, !- Component 5 Object Type + VAV_OR_CoolC, !- Component 5 Name + VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Component 5 Inlet Node Name + VAV_OR_CoolC-VAV_OR_HeatCNode, !- Component 5 Outlet Node Name + Coil:Heating:Water, !- Component 6 Object Type + VAV_OR_HeatC, !- Component 6 Name + VAV_OR_CoolC-VAV_OR_HeatCNode, !- Component 6 Inlet Node Name + VAV_OR_HeatC-VAV_OR_FanNode, !- Component 6 Outlet Node Name + Fan:VariableVolume, !- Component 7 Object Type + VAV_OR_Fan, !- Component 7 Name + VAV_OR_HeatC-VAV_OR_FanNode, !- Component 7 Inlet Node Name + VAV_OR Supply Equipment Outlet Node; !- Component 7 Outlet Node Name + + Branch, + VAV_ICU Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_ICU_OA, !- Component 1 Name + VAV_ICU Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_ICU_OA-VAV_ICU HumidifierNode, !- Component 1 Outlet Node Name + Humidifier:Steam:Electric, !- Component 2 Object Type + VAV_ICU Humidifier, !- Component 2 Name + VAV_ICU_OA-VAV_ICU HumidifierNode, !- Component 2 Inlet Node Name + VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Electric, !- Component 3 Object Type + VAV_ICU_ExtraElecHeatC, !- Component 3 Name + VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode, !- Component 3 Inlet Node Name + VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode, !- Component 3 Outlet Node Name + Coil:Heating:Water, !- Component 4 Object Type + VAV_ICU_ExtraWaterHeatC, !- Component 4 Name + VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode, !- Component 4 Inlet Node Name + VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Component 4 Outlet Node Name + Coil:Cooling:Water, !- Component 5 Object Type + VAV_ICU_CoolC, !- Component 5 Name + VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Component 5 Inlet Node Name + VAV_ICU_CoolC-VAV_ICU_HeatCNode, !- Component 5 Outlet Node Name + Coil:Heating:Water, !- Component 6 Object Type + VAV_ICU_HeatC, !- Component 6 Name + VAV_ICU_CoolC-VAV_ICU_HeatCNode, !- Component 6 Inlet Node Name + VAV_ICU_HeatC-VAV_ICU_FanNode, !- Component 6 Outlet Node Name + Fan:VariableVolume, !- Component 7 Object Type + VAV_ICU_Fan, !- Component 7 Name + VAV_ICU_HeatC-VAV_ICU_FanNode, !- Component 7 Inlet Node Name + VAV_ICU Supply Equipment Outlet Node; !- Component 7 Outlet Node Name + + + + Branch, + VAV_PATRMS Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_PATRMS_OA, !- Component 1 Name + VAV_PATRMS Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Component 1 Outlet Node Name + Humidifier:Steam:Electric, !- Component 2 Object Type + VAV_PATRMS Humidifier, !- Component 2 Name + VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Component 2 Inlet Node Name + VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Electric, !- Component 3 Object Type + VAV_PATRMS_ExtraElecHeatC, !- Component 3 Name + VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode, !- Component 3 Inlet Node Name + VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode, !- Component 3 Outlet Node Name + Coil:Heating:Water, !- Component 4 Object Type + VAV_PATRMS_ExtraWaterHeatC, !- Component 4 Name + VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode, !- Component 4 Inlet Node Name + VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Component 4 Outlet Node Name + Coil:Cooling:Water, !- Component 5 Object Type + VAV_PATRMS_CoolC, !- Component 5 Name + VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Component 5 Inlet Node Name + VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode, !- Component 5 Outlet Node Name + Coil:Heating:Water, !- Component 6 Object Type + VAV_PATRMS_HeatC, !- Component 6 Name + VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode, !- Component 6 Inlet Node Name + VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Component 6 Outlet Node Name + Fan:VariableVolume, !- Component 7 Object Type + VAV_PATRMS_Fan, !- Component 7 Name + VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Component 7 Inlet Node Name + VAV_PATRMS Supply Equipment Outlet Node; !- Component 7 Outlet Node Name + + Branch, + VAV_2 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_2_OA, !- Component 1 Name + VAV_2 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_2_OA-VAV_2_CoolCNode,!- Component 1 Outlet Node Name + Coil:Cooling:Water, !- Component 2 Object Type + VAV_2_CoolC, !- Component 2 Name + VAV_2_OA-VAV_2_CoolCNode,!- Component 2 Inlet Node Name + VAV_2_CoolC-VAV_2_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Water, !- Component 3 Object Type + VAV_2_HeatC, !- Component 3 Name + VAV_2_CoolC-VAV_2_HeatCNode, !- Component 3 Inlet Node Name + VAV_2_HeatC-VAV_2_FanNode, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + VAV_2_Fan, !- Component 4 Name + VAV_2_HeatC-VAV_2_FanNode, !- Component 4 Inlet Node Name + VAV_2 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + VAV_LABS Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_LABS_OA, !- Component 1 Name + VAV_LABS Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_LABS_OA-VAV_LABS HumidifierNode, !- Component 1 Outlet Node Name + Humidifier:Steam:Electric, !- Component 2 Object Type + VAV_LABS Humidifier, !- Component 2 Name + VAV_LABS_OA-VAV_LABS HumidifierNode, !- Component 2 Inlet Node Name + VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Electric, !- Component 3 Object Type + VAV_LABS_ExtraElecHeatC, !- Component 3 Name + VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode, !- Component 3 Inlet Node Name + VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode, !- Component 3 Outlet Node Name + Coil:Heating:Water, !- Component 4 Object Type + VAV_LABS_ExtraWaterHeatC,!- Component 4 Name + VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode, !- Component 4 Inlet Node Name + VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Component 4 Outlet Node Name + Coil:Cooling:Water, !- Component 5 Object Type + VAV_LABS_CoolC, !- Component 5 Name + VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Component 5 Inlet Node Name + VAV_LABS_CoolC-VAV_LABS_HeatCNode, !- Component 5 Outlet Node Name + Coil:Heating:Water, !- Component 6 Object Type + VAV_LABS_HeatC, !- Component 6 Name + VAV_LABS_CoolC-VAV_LABS_HeatCNode, !- Component 6 Inlet Node Name + VAV_LABS_HeatC-VAV_LABS_FanNode, !- Component 6 Outlet Node Name + Fan:VariableVolume, !- Component 7 Object Type + VAV_LABS_Fan, !- Component 7 Name + VAV_LABS_HeatC-VAV_LABS_FanNode, !- Component 7 Inlet Node Name + VAV_LABS Supply Equipment Outlet Node; !- Component 7 Outlet Node Name + + Branch, + CAV_KITCHEN Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + CAV_KITCHEN_OA, !- Component 1 Name + CAV_KITCHEN Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode, !- Component 1 Outlet Node Name + Coil:Cooling:Water, !- Component 2 Object Type + CAV_KITCHEN_CoolC, !- Component 2 Name + CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode, !- Component 2 Inlet Node Name + CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Water, !- Component 3 Object Type + CAV_KITCHEN_HeatC, !- Component 3 Name + CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode, !- Component 3 Inlet Node Name + CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Component 3 Outlet Node Name + Fan:ConstantVolume, !- Component 4 Object Type + CAV_KITCHEN_Fan, !- Component 4 Name + CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Component 4 Inlet Node Name + CAV_KITCHEN Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + + + Branch, + SHWSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:ConstantSpeed, !- Component 1 Object Type + SHWSys1 Pump, !- Component 1 Name + SHWSys1 Supply Inlet Node, !- Component 1 Inlet Node Name + SHWSys1 Pump-SHWSys1 Water HeaterNodeviaConnector; !- Component 1 Outlet Node Name + + + + Branch, + SHWSys1 Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + WaterHeater:Mixed, !- Component 1 Object Type + SHWSys1 Water Heater, !- Component 1 Name + SHWSys1 Pump-SHWSys1 Water HeaterNode, !- Component 1 Inlet Node Name + SHWSys1 Supply Equipment Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SHWSys1 Supply Equipment Bypass Pipe, !- Component 1 Name + SHWSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name + SHWSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SHWSys1 Supply Outlet Pipe, !- Component 1 Name + SHWSys1 Supply Mixer-SHWSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + SHWSys1 Supply Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SHWSys1 Demand Inlet Pipe, !- Component 1 Name + SHWSys1 Demand Inlet Node, !- Component 1 Inlet Node Name + SHWSys1 Demand Inlet Pipe-SHWSys1 Demand Mixer; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + ER_Exam1_Mult4_Flr_1 sub cat, !- Component 1 Name + ER_Exam1_Mult4_Flr_1 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + ER_Exam1_Mult4_Flr_1 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + ER_Trauma1_Flr_1 sub cat,!- Component 1 Name + ER_Trauma1_Flr_1 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + ER_Trauma1_Flr_1 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + ER_Exam3_Mult4_Flr_1 sub cat, !- Component 1 Name + ER_Exam3_Mult4_Flr_1 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + ER_Exam3_Mult4_Flr_1 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 4, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + ER_Trauma2_Flr_1 sub cat,!- Component 1 Name + ER_Trauma2_Flr_1 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + ER_Trauma2_Flr_1 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 5, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + ER_Triage_Mult4_Flr_1 sub cat, !- Component 1 Name + ER_Triage_Mult4_Flr_1 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + ER_Triage_Mult4_Flr_1 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 6, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + OR1_Flr_2 sub cat, !- Component 1 Name + OR1_Flr_2 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + OR1_Flr_2 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 7, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + OR2_Mult5_Flr_2 sub cat, !- Component 1 Name + OR2_Mult5_Flr_2 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + OR2_Mult5_Flr_2 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 8, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + OR3_Flr_2 sub cat, !- Component 1 Name + OR3_Flr_2 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + OR3_Flr_2 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 9, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + OR4_Flr_2 sub cat, !- Component 1 Name + OR4_Flr_2 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + OR4_Flr_2 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 10, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom1_Mult10_Flr_3 sub cat, !- Component 1 Name + PatRoom1_Mult10_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom1_Mult10_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 11, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom2_Flr_3 sub cat, !- Component 1 Name + PatRoom2_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom2_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 12, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom3_Mult10_Flr_3 sub cat, !- Component 1 Name + PatRoom3_Mult10_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom3_Mult10_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 13, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom4_Flr_3 sub cat, !- Component 1 Name + PatRoom4_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom4_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 14, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom5_Mult10_Flr_3 sub cat, !- Component 1 Name + PatRoom5_Mult10_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom5_Mult10_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 15, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PhysTherapy_Flr_3 sub cat, !- Component 1 Name + PhysTherapy_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PhysTherapy_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 16, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom6_Flr_3 sub cat, !- Component 1 Name + PatRoom6_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom6_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 17, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom7_Mult10_Flr_3 sub cat, !- Component 1 Name + PatRoom7_Mult10_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom7_Mult10_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 18, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom8_Flr_3 sub cat, !- Component 1 Name + PatRoom8_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom8_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 19, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Lab_Flr_3 sub cat, !- Component 1 Name + Lab_Flr_3 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + Lab_Flr_3 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 20, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom1_Mult10_Flr_4 sub cat, !- Component 1 Name + PatRoom1_Mult10_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom1_Mult10_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 21, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom2_Flr_4 sub cat, !- Component 1 Name + PatRoom2_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom2_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 22, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom3_Mult10_Flr_4 sub cat, !- Component 1 Name + PatRoom3_Mult10_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom3_Mult10_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 23, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom4_Flr_4 sub cat, !- Component 1 Name + PatRoom4_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom4_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 24, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom5_Mult10_Flr_4 sub cat, !- Component 1 Name + PatRoom5_Mult10_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom5_Mult10_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 25, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Radiology_Flr_4 sub cat, !- Component 1 Name + Radiology_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + Radiology_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 26, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom6_Flr_4 sub cat, !- Component 1 Name + PatRoom6_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom6_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 27, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom7_Mult10_Flr_4 sub cat, !- Component 1 Name + PatRoom7_Mult10_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom7_Mult10_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 28, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + PatRoom8_Flr_4 sub cat, !- Component 1 Name + PatRoom8_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + PatRoom8_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 29, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Lab_Flr_4 sub cat, !- Component 1 Name + Lab_Flr_4 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + Lab_Flr_4 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 30, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Kitchen_Flr_5 sub cat, !- Component 1 Name + Kitchen_Flr_5 sub cat Water Inlet Node, !- Component 1 Inlet Node Name + Kitchen_Flr_5 sub cat Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SHWSys1 Demand Bypass Pipe, !- Component 1 Name + SHWSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name + SHWSys1 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SHWSys1 Demand Outlet Pipe, !- Component 1 Name + SHWSys1 Demand Mixer-SHWSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + SHWSys1 Demand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + HeatSys1 Pump, !- Component 1 Name + HeatSys1 Supply Inlet Node, !- Component 1 Inlet Node Name + HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector, !- Component 1 Outlet Node Name + WaterHeater:Mixed, !- Component 2 Object Type + Dummy Water Heater, !- Component 2 Name + HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector, !- Component 2 Inlet Node Name + Dummy Water Heater Use Side Outlet Node; !- Component 2 Outlet Node Name + + + Branch, + HeatSys1 Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + Boiler:HotWater, !- Component 1 Object Type + HeatSys1 Boiler, !- Component 1 Name + HeatSys1 Pump-HeatSys1 BoilerNode, !- Component 1 Inlet Node Name + HeatSys1 Supply Equipment Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + HeatSys1 Supply Equipment Bypass Pipe, !- Component 1 Name + HeatSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name + HeatSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + HeatSys1 Supply Outlet Pipe, !- Component 1 Name + HeatSys1 Supply Mixer-HeatSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + HeatSys1 Supply Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + HeatSys1 Demand Inlet Pipe, !- Component 1 Name + HeatSys1 Demand Inlet Node, !- Component 1 Inlet Node Name + HeatSys1 Demand Inlet Pipe-HeatSys1 Demand Mixer; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Basement VAV Box Reheat Coil, !- Component 1 Name + Basement VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Basement VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + ER_Exam1_Mult4_Flr_1 VAV Box Reheat Coil, !- Component 1 Name + ER_Exam1_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + ER_Exam1_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + ER_Trauma1_Flr_1 VAV Box Reheat Coil, !- Component 1 Name + ER_Trauma1_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + ER_Trauma1_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 4, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + ER_Exam3_Mult4_Flr_1 VAV Box Reheat Coil, !- Component 1 Name + ER_Exam3_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + ER_Exam3_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 5, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + ER_Trauma2_Flr_1 VAV Box Reheat Coil, !- Component 1 Name + ER_Trauma2_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + ER_Trauma2_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 6, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + ER_Triage_Mult4_Flr_1 VAV Box Reheat Coil, !- Component 1 Name + ER_Triage_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + ER_Triage_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 7, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Office1_Mult4_Flr_1 VAV Box Reheat Coil, !- Component 1 Name + Office1_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Office1_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 8, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Lobby_Records_Flr_1 VAV Box Reheat Coil, !- Component 1 Name + Lobby_Records_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Lobby_Records_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 9, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_Flr_1 VAV Box Reheat Coil, !- Component 1 Name + Corridor_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 10, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + ER_NurseStn_Lobby_Flr_1 VAV Box Reheat Coil, !- Component 1 Name + ER_NurseStn_Lobby_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + ER_NurseStn_Lobby_Flr_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 11, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + OR1_Flr_2 VAV Box Reheat Coil, !- Component 1 Name + OR1_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + OR1_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 12, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + OR2_Mult5_Flr_2 VAV Box Reheat Coil, !- Component 1 Name + OR2_Mult5_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + OR2_Mult5_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 13, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + OR3_Flr_2 VAV Box Reheat Coil, !- Component 1 Name + OR3_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + OR3_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 14, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + OR4_Flr_2 VAV Box Reheat Coil, !- Component 1 Name + OR4_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + OR4_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 15, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat Coil, !- Component 1 Name + IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 16, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + IC_PatRoom2_Flr_2 VAV Box Reheat Coil, !- Component 1 Name + IC_PatRoom2_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + IC_PatRoom2_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 17, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat Coil, !- Component 1 Name + IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 18, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + ICU_Flr_2 VAV Box Reheat Coil, !- Component 1 Name + ICU_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + ICU_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 19, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Component 1 Name + ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 20, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_Flr_2 VAV Box Reheat Coil, !- Component 1 Name + Corridor_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 21, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + OR_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Component 1 Name + OR_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + OR_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 22, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom1_Mult10_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + PatRoom1_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom1_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 23, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom2_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + PatRoom2_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom2_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 24, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom3_Mult10_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + PatRoom3_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom3_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 25, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom4_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + PatRoom4_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom4_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 26, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom5_Mult10_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + PatRoom5_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom5_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 27, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PhysTherapy_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + PhysTherapy_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PhysTherapy_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 28, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom6_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + PatRoom6_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom6_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 29, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom7_Mult10_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + PatRoom7_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom7_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 30, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom8_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + PatRoom8_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom8_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 31, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + NurseStn_Lobby_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + NurseStn_Lobby_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + NurseStn_Lobby_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 32, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Lab_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + Lab_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Lab_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 33, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_SE_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + Corridor_SE_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_SE_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 34, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_NW_Flr_3 VAV Box Reheat Coil, !- Component 1 Name + Corridor_NW_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_NW_Flr_3 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 35, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom1_Mult10_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + PatRoom1_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom1_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 36, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom2_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + PatRoom2_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom2_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 37, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom3_Mult10_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + PatRoom3_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom3_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 38, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom4_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + PatRoom4_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom4_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 39, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom5_Mult10_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + PatRoom5_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom5_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 40, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Radiology_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + Radiology_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Radiology_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 41, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom6_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + PatRoom6_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom6_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 42, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom7_Mult10_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + PatRoom7_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom7_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 43, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + PatRoom8_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + PatRoom8_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + PatRoom8_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 44, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + NurseStn_Lobby_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + NurseStn_Lobby_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + NurseStn_Lobby_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 45, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Lab_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + Lab_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Lab_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 46, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_SE_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + Corridor_SE_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_SE_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 47, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_NW_Flr_4 VAV Box Reheat Coil, !- Component 1 Name + Corridor_NW_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_NW_Flr_4 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 48, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Dining_Flr_5 VAV Box Reheat Coil, !- Component 1 Name + Dining_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Dining_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 49, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + NurseStn_Lobby_Flr_5 VAV Box Reheat Coil, !- Component 1 Name + NurseStn_Lobby_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + NurseStn_Lobby_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 50, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Office1_Flr_5 VAV Box Reheat Coil, !- Component 1 Name + Office1_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Office1_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 51, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Office2_Mult5_Flr_5 VAV Box Reheat Coil, !- Component 1 Name + Office2_Mult5_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Office2_Mult5_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 52, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Office3_Flr_5 VAV Box Reheat Coil, !- Component 1 Name + Office3_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Office3_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 53, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Office4_Mult6_Flr_5 VAV Box Reheat Coil, !- Component 1 Name + Office4_Mult6_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Office4_Mult6_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 54, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_Flr_5 VAV Box Reheat Coil, !- Component 1 Name + Corridor_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_Flr_5 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 55, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_1_HeatC, !- Component 1 Name + VAV_1_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_1_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 56, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_ER_HeatC, !- Component 1 Name + VAV_ER_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_ER_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 57, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_OR_HeatC, !- Component 1 Name + VAV_OR_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_OR_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 58, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_ICU_HeatC, !- Component 1 Name + VAV_ICU_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_ICU_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 59, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_PATRMS_HeatC, !- Component 1 Name + VAV_PATRMS_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_PATRMS_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 60, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_2_HeatC, !- Component 1 Name + VAV_2_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_2_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 61, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_LABS_HeatC, !- Component 1 Name + VAV_LABS_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_LABS_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 62, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + CAV_KITCHEN_HeatC, !- Component 1 Name + CAV_KITCHEN_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + CAV_KITCHEN_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 63, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_PATRMS_ExtraWaterHeatC, !- Component 1 Name + VAV_PATRMS_ExtraWaterHeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_PATRMS_ExtraWaterHeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 64, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_ER_ExtraWaterHeatC, !- Component 1 Name + VAV_ER_ExtraWaterHeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_ER_ExtraWaterHeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 65, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_OR_ExtraWaterHeatC, !- Component 1 Name + VAV_OR_ExtraWaterHeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_OR_ExtraWaterHeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 66, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_ICU_ExtraWaterHeatC, !- Component 1 Name + VAV_ICU_ExtraWaterHeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_ICU_ExtraWaterHeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 67, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_LABS_ExtraWaterHeatC,!- Component 1 Name + VAV_LABS_ExtraWaterHeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_LABS_ExtraWaterHeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + HeatSys1 Demand Bypass Pipe, !- Component 1 Name + HeatSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name + HeatSys1 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + HeatSys1 Demand Outlet Pipe, !- Component 1 Name + HeatSys1 Demand Mixer-HeatSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + HeatSys1 Demand Outlet Node; !- Component 1 Outlet Node Name + + + + Branch, + CoolSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Supply Inlet Pipe, !- Component 1 Name + CoolSys1 Supply Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNodeviaConnector; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Supply Equipment Branch 1, !- Name + , !- Pressure Drop Curve Name + Pump:ConstantSpeed, !- Component 1 Object Type + CoolSys1 Chiller1 Pump, !- Component 1 Name + CoolSys1 Chiller1 Pump Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Pump-CoolSys1 Chiller1Node, !- Component 1 Outlet Node Name + Chiller:Electric:ReformulatedEIR, !- Component 2 Object Type + CoolSys1 Chiller1, !- Component 2 Name + CoolSys1 Pump-CoolSys1 Chiller1Node, !- Component 2 Inlet Node Name + CoolSys1 Supply Equipment Outlet Node 1; !- Component 2 Outlet Node Name + + Branch, + CoolSys1 Supply Equipment Branch 2, !- Name + , !- Pressure Drop Curve Name + Pump:ConstantSpeed, !- Component 1 Object Type + CoolSys1 Chiller2 Pump, !- Component 1 Name + CoolSys1 Chiller2 Pump Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Pump-CoolSys1 Chiller2Node, !- Component 1 Outlet Node Name + Chiller:Electric:ReformulatedEIR, !- Component 2 Object Type + CoolSys1 Chiller2, !- Component 2 Name + CoolSys1 Pump-CoolSys1 Chiller2Node, !- Component 2 Inlet Node Name + CoolSys1 Supply Equipment Outlet Node 2; !- Component 2 Outlet Node Name + + + Branch, + CoolSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Supply Equipment Bypass Pipe, !- Component 1 Name + CoolSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Supply Outlet Pipe, !- Component 1 Name + CoolSys1 Supply Mixer-CoolSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + CoolSys1 Supply Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + CoolSys1 Pump Secondary, !- Component 1 Name + CoolSys1 Demand Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Pump Secondary-CoolSys1 Demand Mixer; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + VAV_1_CoolC, !- Component 1 Name + VAV_1_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_1_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + VAV_ER_CoolC, !- Component 1 Name + VAV_ER_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_ER_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + VAV_OR_CoolC, !- Component 1 Name + VAV_OR_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_OR_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 4, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + VAV_ICU_CoolC, !- Component 1 Name + VAV_ICU_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_ICU_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 5, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + VAV_PATRMS_CoolC, !- Component 1 Name + VAV_PATRMS_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_PATRMS_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 6, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + VAV_2_CoolC, !- Component 1 Name + VAV_2_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_2_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 7, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + VAV_LABS_CoolC, !- Component 1 Name + VAV_LABS_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_LABS_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 8, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + CAV_KITCHEN_CoolC, !- Component 1 Name + CAV_KITCHEN_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + CAV_KITCHEN_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + + Branch, + CoolSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Demand Outlet Pipe, !- Component 1 Name + CoolSys1 Demand Mixer-CoolSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + CoolSys1 Demand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + TowerWaterSys Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + HeaderedPumps:VariableSpeed, !- Component 1 Object Type + TowerWaterSys Pump, !- Component 1 Name + TowerWaterSys Supply Inlet Node, !- Component 1 Inlet Node Name + TowerWaterSys Pump-TowerWaterSys CoolTowerNodeviaConnector; !- Component 1 Outlet Node Name + + Branch, + TowerWaterSys Supply Equipment Branch 1, !- Name + , !- Pressure Drop Curve Name + CoolingTower:VariableSpeed, !- Component 1 Object Type + TowerWaterSys CoolTower 1, !- Component 1 Name + TowerWaterSys Pump-TowerWaterSys CoolTower1Node, !- Component 1 Inlet Node Name + TowerWaterSys Supply Equipment Outlet Node 1; !- Component 1 Outlet Node Name + + Branch, + TowerWaterSys Supply Equipment Branch 2, !- Name + , !- Pressure Drop Curve Name + CoolingTower:VariableSpeed, !- Component 1 Object Type + TowerWaterSys CoolTower 2, !- Component 1 Name + TowerWaterSys Pump-TowerWaterSys CoolTower2Node, !- Component 1 Inlet Node Name + TowerWaterSys Supply Equipment Outlet Node 2; !- Component 1 Outlet Node Name + + Branch, + TowerWaterSys Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + TowerWaterSys Supply Equipment Bypass Pipe, !- Component 1 Name + TowerWaterSys Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name + TowerWaterSys Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + TowerWaterSys Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + TowerWaterSys Supply Outlet Pipe, !- Component 1 Name + TowerWaterSys Supply Mixer-TowerWaterSys Supply Outlet Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Supply Outlet Node; !- Component 1 Outlet Node Name + + Branch, + TowerWaterSys Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + TowerWaterSys Demand Inlet Pipe, !- Component 1 Name + TowerWaterSys Demand Inlet Node, !- Component 1 Inlet Node Name + TowerWaterSys Demand Inlet Pipe-TowerWaterSys Demand Mixer; !- Component 1 Outlet Node Name + + Branch, + TowerWaterSys Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric:ReformulatedEIR, !- Component 1 Object Type + CoolSys1 Chiller1, !- Component 1 Name + CoolSys1 Chiller1 Water Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Chiller1 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + TowerWaterSys Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric:ReformulatedEIR, !- Component 1 Object Type + CoolSys1 Chiller2, !- Component 1 Name + CoolSys1 Chiller2 Water Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Chiller2 Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + TowerWaterSys Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + TowerWaterSys Demand Bypass Pipe, !- Component 1 Name + TowerWaterSys Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name + TowerWaterSys Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + TowerWaterSys Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + TowerWaterSys Demand Outlet Pipe, !- Component 1 Name + TowerWaterSys Demand Mixer-TowerWaterSys Demand Outlet Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Demand Outlet Node; !- Component 1 Outlet Node Name + + + Branch, + CoolSys1 Heat Exchanger Supply Branch, !- Name + , !- Pressure Drop Curve Name + HeatExchanger:FluidToFluid, !- Component 1 Object Type + Bypass Heat Exchanger , !- Component 1 Name + CoolSys1 Exchanger Supply Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Exchanger Supply Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Heat Exchanger Demand Branch, !- Name + , !- Pressure Drop Curve Name + HeatExchanger:FluidToFluid, !- Component 1 Object Type + Bypass Heat Exchanger , !- Component 1 Name + CoolSys1 Exchanger Demand Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Exchanger Demand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Supply Side Bypass, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Supply Bypass, !- Component 1 Name + CoolSys1 Supply Bypass Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Supply Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Side Bypass, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Demand Bypass, !- Component 1 Name + CoolSys1 Demand Bypass Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Demand Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Supply Demand Side Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Supply Demand Side Inlet Pipe, !- Component 1 Name + CoolSys1 Supply Demand Side Inlet Pipe Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Supply Demand Side Inlet Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Supply Demand Side Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Supply Demand Side Outlet Pipe , !- Component 1 Name + CoolSys1 Supply Demand Side Outlet Pipe Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Supply Demand Side Outlet Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Supply Side Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Demand Supply Side Inlet Pipe , !- Component 1 Name + CoolSys1 Demand Supply Side Inlet Pipe Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Demand Supply Side Inlet Pipe Outlet Node, !- Component 1 Outlet Node Name + HeatExchanger:FluidToFluid, !- Component 2 Object Type + Heat Recovery Chiller Bypass Heat Exchanger, !- Component 2 Name + CoolSys1 Demand Supply Side Inlet Pipe Outlet Node, !- Component 2 Inlet Node Name + Heat Recovery Chiller Bypass Heat Exchanger Outlet; !- Component 2 Outlet Node Name + + + + Branch, + CoolSys1 Demand Supply Side Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Demand Supply Side Outlet Pipe , !- Component 1 Name + CoolSys1 Demand Supply Side Outlet Pipe Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Demand Supply Side Outlet Pipe Outlet Node; !- Component 1 Outlet Node Name + + BranchList, + Heat Recovery Chiller Bypass Loop Supply Side Branches, !- Name + Heat Recovery Chiller Bypass Loop Supply Inlet Branch, !- Branch 1 Name + Heat Recovery Chiller Bypass Loop Supply Equipment Branch, !- Branch 2 Name + Heat Recovery Chiller Bypass Loop Supply Outlet Branch; !- Branch 3 Name + + BranchList, + Heat Recovery Chiller Bypass Loop Demand Side Branches, !- Name + Heat Recovery Chiller Bypass Loop Demand Inlet Branch, !- Branch 1 Name + Heat Recovery Chiller Bypass Loop Demand Load Branch, !- Branch 2 Name + Heat Recovery Chiller Bypass Loop Demand Outlet Branch; !- Branch 3 Name + + Branch, + Heat Recovery Chiller Bypass Loop Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + Heat Recovery Chiller Bypass Loop Pump, !- Component 1 Name + Heat Recovery Chiller Bypass Loop Pump Inlet, !- Component 1 Inlet Node Name + Heat Recovery Chiller Bypass Loop Pump Outlet; !- Component 1 Outlet Node Name + + Branch, + Heat Recovery Chiller Bypass Loop Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric:EIR, !- Component 1 Object Type + Heat Recovery Chiller, !- Component 1 Name + Heat Recovery Chiller Inlet, !- Component 1 Inlet Node Name + Heat Recovery Chiller Outlet; !- Component 1 Outlet Node Name + + Branch, + Heat Recovery Chiller Bypass Loop Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heat Recovery Chiller Bypass Loop Supply Outlet Pipe, !- Component 1 Name + Heat Recovery Chiller Bypass Loop Supply Outlet Pipe Inlet, !- Component 1 Inlet Node Name + Heat Recovery Chiller Bypass Loop Supply Outlet Pipe Outlet; !- Component 1 Outlet Node Name + + Branch, + Heat Recovery Chiller Bypass Loop Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heat Recovery Chiller Bypass Loop Demand Inlet Pipe, !- Component 1 Name + Heat Recovery Chiller Bypass Loop Demand Inlet Pipe Inlet, !- Component 1 Inlet Node Name + Heat Recovery Chiller Bypass Loop Demand Inlet Pipe Outlet; !- Component 1 Outlet Node Name + + Branch, + Heat Recovery Chiller Bypass Loop Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heat Recovery Chiller Bypass Loop Demand Outlet Pipe, !- Component 1 Name + Heat Recovery Chiller Bypass Loop Demand Outlet Pipe Inlet, !- Component 1 Inlet Node Name + Heat Recovery Chiller Bypass Loop Demand Outlet Pipe Outlet; !- Component 1 Outlet Node Name + + Branch, + Heat Recovery Chiller Bypass Loop Demand Load Branch, !- Name + , !- Pressure Drop Curve Name + HeatExchanger:FluidToFluid, !- Component 1 Object Type + Heat Recovery Chiller Bypass Heat Exchanger, !- Component 1 Name + Heat Recovery Chiller Bypass Heat Exchanger Demand Side Inlet, !- Component 1 Inlet Node Name + Heat Recovery Chiller Bypass Heat Exchanger Demand Side Outlet; !- Component 1 Outlet Node Name + + BranchList, + Heat Recovery Supply Side Branches, !- Name + Heat Recovery Supply Inlet Branch, !- Branch 1 Name + Dummy Water Heater Branch, !- Branch 2 Name + Heat Recovery Supply Outlet Branch; !- Branch 3 Name + + BranchList, + Heat Recovery Demand Side Branches, !- Name + Heat Recovery Inlet Branch, !- Branch 1 Name + Heat Recovery Chiller HR Branch, !- Branch 2 Name + Heat Recovery Bypass Branch, !- Branch 3 Name + Heat Recovery Outlet Branch; !- Branch 4 Name + + Branch, + TowerWaterSys Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric:EIR, !- Component 1 Object Type + Heat Recovery Chiller, !- Component 1 Name + Heat Recovery Chiller Condenser Inlet, !- Component 1 Inlet Node Name + Heat Recovery Chiller Condenser Outlet; !- Component 1 Outlet Node Name + + Branch, + Heat Recovery Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + Heat Recovery Circ Pump, !- Component 1 Name + Heat Recovery Supply Inlet Node, !- Component 1 Inlet Node Name + Heat Recovery Pump Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Dummy Water Heater Branch, !- Name + , !- Pressure Drop Curve Name + WaterHeater:Mixed, !- Component 1 Object Type + Dummy Water Heater, !- Component 1 Name + Dummy Water Heater Source Side Inlet Node, !- Component 1 Inlet Node Name + Dummy Water Heater Source Side Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Heat Recovery Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heat Recovery Supply Outlet, !- Component 1 Name + Heat Recovery Supply Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + Heat Recovery Supply Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Heat Recovery Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heat Recovery Inlet Pipe,!- Component 1 Name + Heat Recovery Demand Inlet Node, !- Component 1 Inlet Node Name + Heat Recovery Demand Entrance Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Heat Recovery Chiller HR Branch, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric:EIR, !- Component 1 Object Type + Heat Recovery Chiller, !- Component 1 Name + Heat Recovery Chiller HR Inlet Node,!- Component 1 Inlet Node Name + Heat Recovery Chiller HR Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Heat Recovery Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heat Recovery Bypass, !- Component 1 Name + Heat Recovery Bypass Inlet Node, !- Component 1 Inlet Node Name + Heat Recovery Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Heat Recovery Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Heat Recovery Outlet Pipe, !- Component 1 Name + Heat Recovery Demand Exit Pipe Inlet Node, !- Component 1 Inlet Node Name + Heat Recovery Demand Outlet Node; !- Component 1 Outlet Node Name + + Connector:Splitter, + Heat Recovery Chiller Bypass Loop Supply Splitter, !- Name + Heat Recovery Chiller Bypass Loop Supply Inlet Branch, !- Inlet Branch Name + Heat Recovery Chiller Bypass Loop Supply Equipment Branch; !- Outlet Branch 1 Name + + Connector:Splitter, + Heat Recovery Chiller Bypass Loop Demand Splitter, !- Name + Heat Recovery Chiller Bypass Loop Demand Inlet Branch, !- Inlet Branch Name + Heat Recovery Chiller Bypass Loop Demand Load Branch; !- Outlet Branch 1 Name + + Connector:Mixer, + Heat Recovery Chiller Bypass Loop Supply Mixer, !- Name + Heat Recovery Chiller Bypass Loop Supply Outlet Branch, !- Outlet Branch Name + Heat Recovery Chiller Bypass Loop Supply Equipment Branch; !- Inlet Branch 1 Name + + Connector:Mixer, + Heat Recovery Chiller Bypass Loop Demand Mixer, !- Name + Heat Recovery Chiller Bypass Loop Demand Outlet Branch, !- Outlet Branch Name + Heat Recovery Chiller Bypass Loop Demand Load Branch; !- Inlet Branch 1 Name + + ConnectorList, + Heat Recovery Chiller Bypass Loop Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heat Recovery Chiller Bypass Loop Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heat Recovery Chiller Bypass Loop Supply Mixer; !- Connector 2 Name + + ConnectorList, + Heat Recovery Chiller Bypass Loop Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + Heat Recovery Chiller Bypass Loop Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Heat Recovery Chiller Bypass Loop Demand Mixer; !- Connector 2 Name + + + +!- =========== ALL OBJECTS IN CLASS: PIPE =========== + + Pipe:Adiabatic, + SHWSys1 Supply Equipment Bypass Pipe, !- Name + SHWSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name + SHWSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SHWSys1 Supply Outlet Pipe, !- Name + SHWSys1 Supply Mixer-SHWSys1 Supply Outlet Pipe, !- Inlet Node Name + SHWSys1 Supply Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SHWSys1 Demand Inlet Pipe, !- Name + SHWSys1 Demand Inlet Node, !- Inlet Node Name + SHWSys1 Demand Inlet Pipe-SHWSys1 Demand Mixer; !- Outlet Node Name + + Pipe:Adiabatic, + SHWSys1 Demand Bypass Pipe, !- Name + SHWSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + SHWSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SHWSys1 Demand Outlet Pipe, !- Name + SHWSys1 Demand Mixer-SHWSys1 Demand Outlet Pipe, !- Inlet Node Name + SHWSys1 Demand Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + HeatSys1 Supply Equipment Bypass Pipe, !- Name + HeatSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name + HeatSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + HeatSys1 Supply Outlet Pipe, !- Name + HeatSys1 Supply Mixer-HeatSys1 Supply Outlet Pipe, !- Inlet Node Name + HeatSys1 Supply Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + HeatSys1 Demand Inlet Pipe, !- Name + HeatSys1 Demand Inlet Node, !- Inlet Node Name + HeatSys1 Demand Inlet Pipe-HeatSys1 Demand Mixer; !- Outlet Node Name + + Pipe:Adiabatic, + HeatSys1 Demand Bypass Pipe, !- Name + HeatSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + HeatSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + HeatSys1 Demand Outlet Pipe, !- Name + HeatSys1 Demand Mixer-HeatSys1 Demand Outlet Pipe, !- Inlet Node Name + HeatSys1 Demand Outlet Node; !- Outlet Node Name + + + + Pipe:Adiabatic, + CoolSys1 Supply Inlet Pipe, !- Name + CoolSys1 Supply Inlet Node, !- Inlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNodeviaConnector; !- Outlet Node Name + + + Pipe:Adiabatic, + CoolSys1 Supply Equipment Bypass Pipe, !- Name + CoolSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name + CoolSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + CoolSys1 Supply Outlet Pipe, !- Name + CoolSys1 Supply Mixer-CoolSys1 Supply Outlet Pipe, !- Inlet Node Name + CoolSys1 Supply Outlet Node; !- Outlet Node Name + + + + Pipe:Adiabatic, + CoolSys1 Demand Outlet Pipe, !- Name + CoolSys1 Demand Mixer-CoolSys1 Demand Outlet Pipe, !- Inlet Node Name + CoolSys1 Demand Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + TowerWaterSys Supply Equipment Bypass Pipe, !- Name + TowerWaterSys Supply Equip Bypass Inlet Node, !- Inlet Node Name + TowerWaterSys Supply Equip Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + TowerWaterSys Supply Outlet Pipe, !- Name + TowerWaterSys Supply Mixer-TowerWaterSys Supply Outlet Pipe, !- Inlet Node Name + TowerWaterSys Supply Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + TowerWaterSys Demand Inlet Pipe, !- Name + TowerWaterSys Demand Inlet Node, !- Inlet Node Name + TowerWaterSys Demand Inlet Pipe-TowerWaterSys Demand Mixer; !- Outlet Node Name + + Pipe:Adiabatic, + TowerWaterSys Demand Bypass Pipe, !- Name + TowerWaterSys Demand Bypass Pipe Inlet Node, !- Inlet Node Name + TowerWaterSys Demand Bypass Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + TowerWaterSys Demand Outlet Pipe, !- Name + TowerWaterSys Demand Mixer-TowerWaterSys Demand Outlet Pipe, !- Inlet Node Name + TowerWaterSys Demand Outlet Node; !- Outlet Node Name + + + Pipe:Adiabatic, + CoolSys1 Supply Bypass, !- Name + CoolSys1 Supply Bypass Inlet Node, !- Inlet Node Name + CoolSys1 Supply Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + CoolSys1 Demand Bypass, !- Name + CoolSys1 Demand Bypass Inlet Node, !- Inlet Node Name + CoolSys1 Demand Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + CoolSys1 Supply Demand Side Inlet Pipe, !- Name + CoolSys1 Supply Demand Side Inlet Pipe Inlet Node, !- Inlet Node Name + CoolSys1 Supply Demand Side Inlet Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + CoolSys1 Supply Demand Side Outlet Pipe , !- Name + CoolSys1 Supply Demand Side Outlet Pipe Inlet Node, !- Inlet Node Name + CoolSys1 Supply Demand Side Outlet Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + CoolSys1 Demand Supply Side Outlet Pipe , !- Name + CoolSys1 Demand Supply Side Outlet Pipe Inlet Node, !- Inlet Node Name + CoolSys1 Demand Supply Side Outlet Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + CoolSys1 Demand Supply Side Inlet Pipe , !- Name + CoolSys1 Demand Supply Side Inlet Pipe Inlet Node, !- Inlet Node Name + CoolSys1 Demand Supply Side Inlet Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + Heat Recovery Supply Outlet, !- Name + Heat Recovery Supply Exit Pipe Inlet Node, !- Inlet Node Name + Heat Recovery Supply Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + Heat Recovery Inlet Pipe,!- Name + Heat Recovery Demand Inlet Node, !- Inlet Node Name + Heat Recovery Demand Entrance Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + Heat Recovery Bypass, !- Name + Heat Recovery Bypass Inlet Node, !- Inlet Node Name + Heat Recovery Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + Heat Recovery Outlet Pipe, !- Name + Heat Recovery Demand Exit Pipe Inlet Node, !- Inlet Node Name + Heat Recovery Demand Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + Heat Recovery Chiller Bypass Loop Supply Outlet Pipe, !- Name + Heat Recovery Chiller Bypass Loop Supply Outlet Pipe Inlet, !- Inlet Node Name + Heat Recovery Chiller Bypass Loop Supply Outlet Pipe Outlet; !- Outlet Node Name + + Pipe:Adiabatic, + Heat Recovery Chiller Bypass Loop Demand Inlet Pipe, !- Name + Heat Recovery Chiller Bypass Loop Demand Inlet Pipe Inlet, !- Inlet Node Name + Heat Recovery Chiller Bypass Loop Demand Inlet Pipe Outlet; !- Outlet Node Name + + Pipe:Adiabatic, + Heat Recovery Chiller Bypass Loop Demand Outlet Pipe, !- Name + Heat Recovery Chiller Bypass Loop Demand Outlet Pipe Inlet, !- Inlet Node Name + Heat Recovery Chiller Bypass Loop Demand Outlet Pipe Outlet; !- Outlet Node Name + + + + +!- =========== ALL OBJECTS IN CLASS: PLANT LOOP =========== + + PlantLoop, + SHWSys1, !- Name + WATER, !- Fluid Type + , !- User Defined Fluid Type + SHWSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name + SHWSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 60.0, !- Maximum Loop Temperature {C} + 10.0, !- Minimum Loop Temperature {C} + AUTOSIZE, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + AUTOSIZE, !- Plant Loop Volume {m3} + SHWSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + SHWSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + SHWSys1 Supply Branches, !- Plant Side Branch List Name + SHWSys1 Supply Connectors, !- Plant Side Connector List Name + SHWSys1 Demand Inlet Node, !- Demand Side Inlet Node Name + SHWSys1 Demand Outlet Node, !- Demand Side Outlet Node Name + SHWSys1 Demand Branches, !- Demand Side Branch List Name + SHWSys1 Demand Connectors, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + + PlantLoop, + HeatSys1, !- Name + WATER, !- Fluid Type + , !- User Defined Fluid Type + HeatSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name + HeatSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 100.0, !- Maximum Loop Temperature {C} + 10.0, !- Minimum Loop Temperature {C} + AUTOSIZE, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + AUTOSIZE, !- Plant Loop Volume {m3} + HeatSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + HeatSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + HeatSys1 Supply Branches,!- Plant Side Branch List Name + HeatSys1 Supply Connectors, !- Plant Side Connector List Name + HeatSys1 Demand Inlet Node, !- Demand Side Inlet Node Name + HeatSys1 Demand Outlet Node, !- Demand Side Outlet Node Name + HeatSys1 Demand Branches,!- Demand Side Branch List Name + HeatSys1 Demand Connectors, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + + PlantLoop, + CoolSys1_Supply, !- Name + WATER, !- Fluid Type + , !- User Defined Fluid Type + CoolSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name + CoolSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 98.0, !- Maximum Loop Temperature {C} + 1.0, !- Minimum Loop Temperature {C} + AUTOSIZE, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + autocalculate, !- Plant Loop Volume {m3} + CoolSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + CoolSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + CoolSys1 Supply Supply Side Branches, !- Plant Side Branch List Name + CoolSys1 Supply Supply Side Connectors, !- Plant Side Connector List Name + CoolSys1 Supply Demand Side Inlet Pipe Inlet Node, !- Demand Side Inlet Node Name + CoolSys1 Supply Demand Side Outlet Pipe Outlet Node, !- Demand Side Outlet Node Name + CoolSys1 Supply Demand Side Branches, !- Demand Side Branch List Name + CoolSys1 Supply Demand Side Connectors, !- Demand Side Connector List Name + UniformLoad; !- Load Distribution Scheme + + PlantLoop, + CoolSys1_Demand, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + CoolSys1 Sec Loop Operation, !- Plant Equipment Operation Scheme Name + CoolSys1 Demand Inlet Node, !- Loop Temperature Setpoint Node Name + 98, !- Maximum Loop Temperature {C} + 1, !- Minimum Loop Temperature {C} + autosize, !- Maximum Loop Flow Rate {m3/s} + 0, !- Minimum Loop Flow Rate {m3/s} + autocalculate, !- Plant Loop Volume {m3} + CoolSys1 Demand Supply Side Inlet Pipe Inlet Node, !- Plant Side Inlet Node Name + CoolSys1 Demand Supply Side Outlet Pipe Outlet Node, !- Plant Side Outlet Node Name + CoolSys1 Demand Supply Side Branches, !- Plant Side Branch List Name + CoolSys1 Demand Supply Side Connectors, !- Plant Side Connector List Name + CoolSys1 Demand Inlet Node, !- Demand Side Inlet Node Name + CoolSys1 Demand Outlet Node, !- Demand Side Outlet Node Name + CoolSys1 Demand Demand Side Branches, !- Demand Side Branch List Name + CoolSys1 Demand Demand Side Connectors, !- Demand Side Connector List Name + UniformLoad; !- Load Distribution Scheme + + PlantLoop, + Heat Recovery Water Loop,!- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + Heat Recovery Loop Operation, !- Plant Equipment Operation Scheme Name + Heat Recovery Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 50, !- Maximum Loop Temperature {C} + 10, !- Minimum Loop Temperature {C} + autosize, !- Maximum Loop Flow Rate {m3/s} + 0, !- Minimum Loop Flow Rate {m3/s} + autocalculate, !- Plant Loop Volume {m3} + Heat Recovery Supply Inlet Node, !- Plant Side Inlet Node Name + Heat Recovery Supply Outlet Node, !- Plant Side Outlet Node Name + Heat Recovery Supply Side Branches, !- Plant Side Branch List Name + Heat Recovery Supply Side Connectors, !- Plant Side Connector List Name + Heat Recovery Demand Inlet Node, !- Demand Side Inlet Node Name + Heat Recovery Demand Outlet Node, !- Demand Side Outlet Node Name + Heat Recovery Demand Side Branches, !- Demand Side Branch List Name + Heat Recovery Demand Side Connectors, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + +PlantLoop, + Heat Recovery Chiller Bypass Loop, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + Heat Recovery Chiller Bypass Loop Operation, !- Plant Equipment Operation Scheme Name + Heat Recovery Chiller Outlet, !- Loop Temperature Setpoint Node Name + 50, !- Maximum Loop Temperature {C} + 1, !- Minimum Loop Temperature {C} + autosize, !- Maximum Loop Flow Rate {m3/s} + 0, !- Minimum Loop Flow Rate {m3/s} + autocalculate, !- Plant Loop Volume {m3} + Heat Recovery Chiller Bypass Loop Pump Inlet, !- Plant Side Inlet Node Name + Heat Recovery Chiller Bypass Loop Supply Outlet Pipe Outlet, !- Plant Side Outlet Node Name + Heat Recovery Chiller Bypass Loop Supply Side Branches, !- Plant Side Branch List Name + Heat Recovery Chiller Bypass Loop Supply Connectors, !- Plant Side Connector List Name + Heat Recovery Chiller Bypass Loop Demand Inlet Pipe Inlet, !- Demand Side Inlet Node Name + Heat Recovery Chiller Bypass Loop Demand Outlet Pipe Outlet, !- Demand Side Outlet Node Name + Heat Recovery Chiller Bypass Loop Demand Side Branches, !- Demand Side Branch List Name + Heat Recovery Chiller Bypass Loop Demand Connectors, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + + + +!- =========== ALL OBJECTS IN CLASS: CONDENSER LOOP =========== +!- Minimum and maximum Loop Temperatures are relaxed and not used to set the control or sizing limits. + + CondenserLoop, + TowerWaterSys, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + TowerWaterSys Loop Operation Scheme List, !- Condenser Equipment Operation Scheme Name + TowerWaterSys Supply Outlet Node, !- Condenser Loop Temperature Setpoint Node Name + 80.0, !- Maximum Loop Temperature {C} + 5.0, !- Minimum Loop Temperature {C} + AUTOSIZE, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + AUTOSIZE, !- Condenser Loop Volume {m3} + TowerWaterSys Supply Inlet Node, !- Condenser Side Inlet Node Name + TowerWaterSys Supply Outlet Node, !- Condenser Side Outlet Node Name + TowerWaterSys Supply Branches, !- Condenser Side Branch List Name + TowerWaterSys Supply Connectors, !- Condenser Side Connector List Name + TowerWaterSys Demand Inlet Node, !- Demand Side Inlet Node Name + TowerWaterSys Demand Outlet Node, !- Demand Side Outlet Node Name + TowerWaterSys Demand Branches, !- Condenser Demand Side Branch List Name + TowerWaterSys Demand Connectors, !- Condenser Demand Side Connector List Name + SequentialLoad; !- Load Distribution Scheme + +!- =========== ALL OBJECTS IN CLASS: PLANT OPERATION SCHEMES =========== + + PlantEquipmentOperationSchemes, + SHWSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + SHWSys1 Operation Scheme,!- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperationSchemes, + HeatSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + HeatSys1 Operation Scheme, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperationSchemes, + CoolSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + CoolSys1 Operation Scheme, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperationSchemes, + CoolSys1 Sec Loop Operation, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + CoolSys1 Sec Operation Scheme, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperationSchemes, + Heat Recovery Loop Operation, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + Dummy Water Heater Only, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperationSchemes, + Heat Recovery Chiller Bypass Loop Operation, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + Heat Recovery Chiller, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + +!- =========== ALL OBJECTS IN CLASS: CONDENSER OPERATION SCHEMES =========== + + CondenserEquipmentOperationSchemes, + TowerWaterSys Loop Operation Scheme List, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + TowerWaterSys Operation Scheme, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + +!- =========== ALL OBJECTS IN CLASS: COOLING LOAD RANGE BASED OPERATION =========== + +PlantEquipmentOperation:CoolingLoad, + Heat Recovery Chiller, !- Name + 0.0, !- Load Range 1 Lower Limit {W} +100000000000000, !- Load Range 1 Upper Limit {W} + Heat Recovery Equipment List; !- Range 1 Equipment List Name + + + PlantEquipmentOperation:CoolingLoad, + CoolSys1 Operation Scheme, !- Name + 0.0, !- Load Range 1 Lower Limit {W} +962024.585, !- Load Range 1 Upper Limit {W} + CoolSys1 Equipment List 1, !- Range 1 Equipment List Name +962024.585, !- Load Range 2 Lower Limit {W} + 100000000000000, !- Load Range 2 Upper Limit {W} + CoolSys1 Equipment List 2; !- Range 2 Equipment List Name + + PlantEquipmentOperation:CoolingLoad, + CoolSys1 Sec Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit {W} +962024.585, !- Load Range 1 Upper Limit {W} + CoolSys1 HeatExchanger; !- Range 1 Equipment List Name + + PlantEquipmentOperation:CoolingLoad, + TowerWaterSys Operation Scheme, !- Name + 0.0, !- Load Range 1 Lower Limit {W} +962024.585, !- Load Range 1 Upper Limit {W} + TowerWaterSys Equipment List 1, !- Range 1 Equipment List Name +962024.585, !- Load Range 2 Lower Limit {W} + 100000000000000, !- Load Range 2 Upper Limit {W} + TowerWaterSys Equipment List 2; !- Range 2 Equipment List Name + +!- =========== ALL OBJECTS IN CLASS: HEATING LOAD RANGE BASED OPERATION =========== + + PlantEquipmentOperation:HeatingLoad, + SHWSys1 Operation Scheme,!- Name + 0.0, !- Load Range 1 Lower Limit {W} + 1000000000000000, !- Load Range 1 Upper Limit {W} + SHWSys1 Equipment List; !- Range 1 Equipment List Name + + PlantEquipmentOperation:HeatingLoad, + HeatSys1 Operation Scheme, !- Name + 0.0, !- Load Range 1 Lower Limit {W} + 1000000000000000, !- Load Range 1 Upper Limit {W} + HeatSys1 Equipment List; !- Range 1 Equipment List Name + + + PlantEquipmentOperation:HeatingLoad, + Dummy Water Heater Only, !- Name + 0, !- Load Range 1 Lower Limit {W} + 1000000000000000, !- Load Range 1 Upper Limit {W} + Heat Recovery Plant Equipment List; !- Range 1 Equipment List Name + + + +!- =========== ALL OBJECTS IN CLASS: PLANT EQUIPMENT LIST =========== + + PlantEquipmentList, + SHWSys1 Equipment List, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + SHWSys1 Water Heater; !- Equipment 1 Name + + PlantEquipmentList, + HeatSys1 Equipment List, !- Name + Boiler:HotWater, !- Equipment 1 Object Type + HeatSys1 Boiler; !- Equipment 1 Name + + PlantEquipmentList, + CoolSys1 Equipment List 1, !- Name + Chiller:Electric:ReformulatedEIR, !- Equipment 1 Object Type + CoolSys1 Chiller1; !- Equipment 1 Name + + PlantEquipmentList, + CoolSys1 Equipment List 2, !- Name + Chiller:Electric:ReformulatedEIR, !- Equipment 1 Object Type + CoolSys1 Chiller1, !- Equipment 1 Name + Chiller:Electric:ReformulatedEIR, !- Equipment 2 Object Type + CoolSys1 Chiller2; !- Equipment 2 Name + + PlantEquipmentList, + CoolSys1 HeatExchanger, !- Name + HeatExchanger:FluidToFluid, !- Equipment 1 Object Type + Bypass Heat Exchanger ; !- Equipment 1 Name + + PlantEquipmentList, + Heat Recovery Plant Equipment List, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + Dummy Water Heater; !- Equipment 1 Name + + PlantEquipmentList, + Heat Recovery Equipment List, !- Name + Chiller:Electric:EIR, !- Equipment 1 Object Type + Heat Recovery Chiller; !- Equipment 1 Name + + PlantEquipmentList, + Bypass Heat Exchanger , !- Name + HeatExchanger:FluidToFluid, !- Equipment 1 Object Type + Bypass Heat Exchanger ; !- Equipment 1 Name + + +!- =========== ALL OBJECTS IN CLASS: CONDENSER EQUIPMENT LIST =========== + + CondenserEquipmentList, + TowerWaterSys Equipment List 1, !- Name + CoolingTower:VariableSpeed, !- Equipment 1 Object Type + TowerWaterSys CoolTower 1; !- Equipment 1 Name + + CondenserEquipmentList, + TowerWaterSys Equipment List 2, !- Name + CoolingTower:VariableSpeed, !- Equipment 1 Object Type + TowerWaterSys CoolTower 1, !- Equipment 1 Name + CoolingTower:VariableSpeed, !- Equipment 2 Object Type + TowerWaterSys CoolTower 2; !- Equipment 2 Name + +!- =========== ALL OBJECTS IN CLASS: CONNECTOR:SPLITTER =========== + +Connector:Splitter, + Heat Recovery Supply Splitter, !- Name + Heat Recovery Supply Inlet Branch, !- Inlet Branch Name + Dummy Water Heater Branch; !- Outlet Branch 1 Name + +Connector:Splitter, + Heat Recovery Splitter, !- Name + Heat Recovery Inlet Branch, !- Inlet Branch Name + Heat Recovery Chiller HR Branch, !- Outlet Branch 1 Name + Heat Recovery Bypass Branch; !- Outlet Branch 2 Name + + + Connector:Splitter, + SHWSys1 Supply Splitter, !- Name + SHWSys1 Supply Inlet Branch, !- Inlet Branch Name + SHWSys1 Supply Equipment Branch, !- Outlet Branch 1 Name + SHWSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name + + Connector:Splitter, + SHWSys1 Demand Splitter, !- Name + SHWSys1 Demand Inlet Branch, !- Inlet Branch Name + SHWSys1 Demand Load Branch 1, !- Outlet Branch 1 Name + SHWSys1 Demand Load Branch 2, !- Outlet Branch 2 Name + SHWSys1 Demand Load Branch 3, !- Outlet Branch 3 Name + SHWSys1 Demand Load Branch 4, !- Outlet Branch 4 Name + SHWSys1 Demand Load Branch 5, !- Outlet Branch 5 Name + SHWSys1 Demand Load Branch 6, !- Outlet Branch 6 Name + SHWSys1 Demand Load Branch 7, !- Outlet Branch 7 Name + SHWSys1 Demand Load Branch 8, !- Outlet Branch 8 Name + SHWSys1 Demand Load Branch 9, !- Outlet Branch 9 Name + SHWSys1 Demand Load Branch 10, !- Outlet Branch 10 Name + SHWSys1 Demand Load Branch 11, !- Outlet Branch 11 Name + SHWSys1 Demand Load Branch 12, !- Outlet Branch 12 Name + SHWSys1 Demand Load Branch 13, !- Outlet Branch 13 Name + SHWSys1 Demand Load Branch 14, !- Outlet Branch 14 Name + SHWSys1 Demand Load Branch 15, !- Outlet Branch 15 Name + SHWSys1 Demand Load Branch 16, !- Outlet Branch 16 Name + SHWSys1 Demand Load Branch 17, !- Outlet Branch 17 Name + SHWSys1 Demand Load Branch 18, !- Outlet Branch 18 Name + SHWSys1 Demand Load Branch 19, !- Outlet Branch 19 Name + SHWSys1 Demand Load Branch 20, !- Outlet Branch 20 Name + SHWSys1 Demand Load Branch 21, !- Outlet Branch 21 Name + SHWSys1 Demand Load Branch 22, !- Outlet Branch 22 Name + SHWSys1 Demand Load Branch 23, !- Outlet Branch 23 Name + SHWSys1 Demand Load Branch 24, !- Outlet Branch 24 Name + SHWSys1 Demand Load Branch 25, !- Outlet Branch 25 Name + SHWSys1 Demand Load Branch 26, !- Outlet Branch 26 Name + SHWSys1 Demand Load Branch 27, !- Outlet Branch 27 Name + SHWSys1 Demand Load Branch 28, !- Outlet Branch 28 Name + SHWSys1 Demand Load Branch 29, !- Outlet Branch 29 Name + SHWSys1 Demand Load Branch 30, !- Outlet Branch 30 Name + SHWSys1 Demand Bypass Branch; !- Outlet Branch 31 Name + + Connector:Splitter, + HeatSys1 Supply Splitter,!- Name + HeatSys1 Supply Inlet Branch, !- Inlet Branch Name + HeatSys1 Supply Equipment Branch, !- Outlet Branch 1 Name + HeatSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name + + Connector:Splitter, + HeatSys1 Demand Splitter,!- Name + HeatSys1 Demand Inlet Branch, !- Inlet Branch Name + HeatSys1 Demand Load Branch 1, !- Outlet Branch 1 Name + HeatSys1 Demand Load Branch 2, !- Outlet Branch 2 Name + HeatSys1 Demand Load Branch 3, !- Outlet Branch 3 Name + HeatSys1 Demand Load Branch 4, !- Outlet Branch 4 Name + HeatSys1 Demand Load Branch 5, !- Outlet Branch 5 Name + HeatSys1 Demand Load Branch 6, !- Outlet Branch 6 Name + HeatSys1 Demand Load Branch 7, !- Outlet Branch 7 Name + HeatSys1 Demand Load Branch 8, !- Outlet Branch 8 Name + HeatSys1 Demand Load Branch 9, !- Outlet Branch 9 Name + HeatSys1 Demand Load Branch 10, !- Outlet Branch 10 Name + HeatSys1 Demand Load Branch 11, !- Outlet Branch 11 Name + HeatSys1 Demand Load Branch 12, !- Outlet Branch 12 Name + HeatSys1 Demand Load Branch 13, !- Outlet Branch 13 Name + HeatSys1 Demand Load Branch 14, !- Outlet Branch 14 Name + HeatSys1 Demand Load Branch 15, !- Outlet Branch 15 Name + HeatSys1 Demand Load Branch 16, !- Outlet Branch 16 Name + HeatSys1 Demand Load Branch 17, !- Outlet Branch 17 Name + HeatSys1 Demand Load Branch 18, !- Outlet Branch 18 Name + HeatSys1 Demand Load Branch 19, !- Outlet Branch 19 Name + HeatSys1 Demand Load Branch 20, !- Outlet Branch 20 Name + HeatSys1 Demand Load Branch 21, !- Outlet Branch 21 Name + HeatSys1 Demand Load Branch 22, !- Outlet Branch 22 Name + HeatSys1 Demand Load Branch 23, !- Outlet Branch 23 Name + HeatSys1 Demand Load Branch 24, !- Outlet Branch 24 Name + HeatSys1 Demand Load Branch 25, !- Outlet Branch 25 Name + HeatSys1 Demand Load Branch 26, !- Outlet Branch 26 Name + HeatSys1 Demand Load Branch 27, !- Outlet Branch 27 Name + HeatSys1 Demand Load Branch 28, !- Outlet Branch 28 Name + HeatSys1 Demand Load Branch 29, !- Outlet Branch 29 Name + HeatSys1 Demand Load Branch 30, !- Outlet Branch 30 Name + HeatSys1 Demand Load Branch 31, !- Outlet Branch 31 Name + HeatSys1 Demand Load Branch 32, !- Outlet Branch 32 Name + HeatSys1 Demand Load Branch 33, !- Outlet Branch 33 Name + HeatSys1 Demand Load Branch 34, !- Outlet Branch 34 Name + HeatSys1 Demand Load Branch 35, !- Outlet Branch 35 Name + HeatSys1 Demand Load Branch 36, !- Outlet Branch 36 Name + HeatSys1 Demand Load Branch 37, !- Outlet Branch 37 Name + HeatSys1 Demand Load Branch 38, !- Outlet Branch 38 Name + HeatSys1 Demand Load Branch 39, !- Outlet Branch 39 Name + HeatSys1 Demand Load Branch 40, !- Outlet Branch 40 Name + HeatSys1 Demand Load Branch 41, !- Outlet Branch 41 Name + HeatSys1 Demand Load Branch 42, !- Outlet Branch 42 Name + HeatSys1 Demand Load Branch 43, !- Outlet Branch 43 Name + HeatSys1 Demand Load Branch 44, !- Outlet Branch 44 Name + HeatSys1 Demand Load Branch 45, !- Outlet Branch 45 Name + HeatSys1 Demand Load Branch 46, !- Outlet Branch 46 Name + HeatSys1 Demand Load Branch 47, !- Outlet Branch 47 Name + HeatSys1 Demand Load Branch 48, !- Outlet Branch 48 Name + HeatSys1 Demand Load Branch 49, !- Outlet Branch 49 Name + HeatSys1 Demand Load Branch 50, !- Outlet Branch 50 Name + HeatSys1 Demand Load Branch 51, !- Outlet Branch 51 Name + HeatSys1 Demand Load Branch 52, !- Outlet Branch 52 Name + HeatSys1 Demand Load Branch 53, !- Outlet Branch 53 Name + HeatSys1 Demand Load Branch 54, !- Outlet Branch 54 Name + HeatSys1 Demand Load Branch 55, !- Outlet Branch 55 Name + HeatSys1 Demand Load Branch 56, !- Outlet Branch 56 Name + HeatSys1 Demand Load Branch 57, !- Outlet Branch 57 Name + HeatSys1 Demand Load Branch 58, !- Outlet Branch 58 Name + HeatSys1 Demand Load Branch 59, !- Outlet Branch 59 Name + HeatSys1 Demand Load Branch 60, !- Outlet Branch 60 Name + HeatSys1 Demand Load Branch 61, !- Outlet Branch 61 Name + HeatSys1 Demand Load Branch 62, !- Outlet Branch 62 Name + HeatSys1 Demand Load Branch 63, !- Outlet Branch 63 Name + HeatSys1 Demand Load Branch 64, !- Outlet Branch 64 Name + HeatSys1 Demand Load Branch 65, !- Outlet Branch 65 Name + HeatSys1 Demand Load Branch 66, !- Outlet Branch 66 Name + HeatSys1 Demand Load Branch 67, !- Outlet Branch 67 Name + HeatSys1 Demand Bypass Branch; !- Outlet Branch 68 Name + + Connector:Splitter, + CoolSys1 Supply Supply Side Splitter,!- Name + CoolSys1 Supply Inlet Branch, !- Inlet Branch Name + CoolSys1 Supply Equipment Branch 1, !- Outlet Branch 1 Name + CoolSys1 Supply Equipment Branch 2, !- Outlet Branch 2 Name + CoolSys1 Supply Equipment Bypass Branch; !- Outlet Branch 3 Name + + Connector:Splitter, + CoolSys1 Demand Demand Side Splitter,!- Name + CoolSys1 Demand Inlet Branch, !- Inlet Branch Name + CoolSys1 Demand Load Branch 1, !- Outlet Branch 1 Name + CoolSys1 Demand Load Branch 2, !- Outlet Branch 2 Name + CoolSys1 Demand Load Branch 3, !- Outlet Branch 3 Name + CoolSys1 Demand Load Branch 4, !- Outlet Branch 4 Name + CoolSys1 Demand Load Branch 5, !- Outlet Branch 5 Name + CoolSys1 Demand Load Branch 6, !- Outlet Branch 6 Name + CoolSys1 Demand Load Branch 7, !- Outlet Branch 7 Name + CoolSys1 Demand Load Branch 8; !- Outlet Branch 8 Name + + Connector:Splitter, + TowerWaterSys Supply Splitter, !- Name + TowerWaterSys Supply Inlet Branch, !- Inlet Branch Name + TowerWaterSys Supply Equipment Branch 1, !- Outlet Branch 1 Name + TowerWaterSys Supply Equipment Branch 2, !- Outlet Branch 2 Name + TowerWaterSys Supply Equipment Bypass Branch; !- Outlet Branch 3 Name + + Connector:Splitter, + TowerWaterSys Demand Splitter, !- Name + TowerWaterSys Demand Inlet Branch, !- Inlet Branch Name + TowerWaterSys Demand Load Branch 1, !- Outlet Branch 1 Name + TowerWaterSys Demand Load Branch 2, !- Outlet Branch 2 Name + TowerWaterSys Demand Load Branch 3, !- Outlet Branch Name + TowerWaterSys Demand Bypass Branch; !- Outlet Branch 3 Name + + Connector:Splitter, + CoolSys1 Supply Demand Side Splitter, !- Name + CoolSys1 Supply Demand Side Inlet Branch, !- Inlet Branch Name + CoolSys1 Heat Exchanger Supply Branch, !- Outlet Branch 1 Name + CoolSys1 Supply Side Bypass; !- Outlet Branch 2 Name + + Connector:Splitter, + CoolSys1 Demand Supply Side Splitter, !- Name + CoolSys1 Demand Supply Side Inlet Branch, !- Inlet Branch Name + CoolSys1 Heat Exchanger Demand Branch, !- Outlet Branch 1 Name + CoolSys1 Demand Side Bypass; !- Outlet Branch 2 Name + +!- =========== ALL OBJECTS IN CLASS: CONNECTOR:MIXER =========== + +Connector:Mixer, + Heat Recovery Supply Mixer, !- Name + Heat Recovery Supply Outlet Branch, !- Outlet Branch Name + Dummy Water Heater Branch; !- Inlet Branch 1 Name + +Connector:Mixer, + Heat Recovery Mixer, !- Name + Heat Recovery Outlet Branch, !- Outlet Branch Name + Heat Recovery Chiller HR Branch, !- Inlet Branch 1 Name + Heat Recovery Bypass Branch; !- Inlet Branch 2 Name + + + Connector:Mixer, + SHWSys1 Supply Mixer, !- Name + SHWSys1 Supply Outlet Branch, !- Outlet Branch Name + SHWSys1 Supply Equipment Branch, !- Inlet Branch 1 Name + SHWSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name + + Connector:Mixer, + SHWSys1 Demand Mixer, !- Name + SHWSys1 Demand Outlet Branch, !- Outlet Branch Name + SHWSys1 Demand Load Branch 1, !- Inlet Branch 1 Name + SHWSys1 Demand Load Branch 2, !- Inlet Branch 2 Name + SHWSys1 Demand Load Branch 3, !- Inlet Branch 3 Name + SHWSys1 Demand Load Branch 4, !- Inlet Branch 4 Name + SHWSys1 Demand Load Branch 5, !- Inlet Branch 5 Name + SHWSys1 Demand Load Branch 6, !- Inlet Branch 6 Name + SHWSys1 Demand Load Branch 7, !- Inlet Branch 7 Name + SHWSys1 Demand Load Branch 8, !- Inlet Branch 8 Name + SHWSys1 Demand Load Branch 9, !- Inlet Branch 9 Name + SHWSys1 Demand Load Branch 10, !- Inlet Branch 10 Name + SHWSys1 Demand Load Branch 11, !- Inlet Branch 11 Name + SHWSys1 Demand Load Branch 12, !- Inlet Branch 12 Name + SHWSys1 Demand Load Branch 13, !- Inlet Branch 13 Name + SHWSys1 Demand Load Branch 14, !- Inlet Branch 14 Name + SHWSys1 Demand Load Branch 15, !- Inlet Branch 15 Name + SHWSys1 Demand Load Branch 16, !- Inlet Branch 16 Name + SHWSys1 Demand Load Branch 17, !- Inlet Branch 17 Name + SHWSys1 Demand Load Branch 18, !- Inlet Branch 18 Name + SHWSys1 Demand Load Branch 19, !- Inlet Branch 19 Name + SHWSys1 Demand Load Branch 20, !- Inlet Branch 20 Name + SHWSys1 Demand Load Branch 21, !- Inlet Branch 21 Name + SHWSys1 Demand Load Branch 22, !- Inlet Branch 22 Name + SHWSys1 Demand Load Branch 23, !- Inlet Branch 23 Name + SHWSys1 Demand Load Branch 24, !- Inlet Branch 24 Name + SHWSys1 Demand Load Branch 25, !- Inlet Branch 25 Name + SHWSys1 Demand Load Branch 26, !- Inlet Branch 26 Name + SHWSys1 Demand Load Branch 27, !- Inlet Branch 27 Name + SHWSys1 Demand Load Branch 28, !- Inlet Branch 28 Name + SHWSys1 Demand Load Branch 29, !- Inlet Branch 29 Name + SHWSys1 Demand Load Branch 30, !- Inlet Branch 30 Name + SHWSys1 Demand Bypass Branch; !- Inlet Branch 31 Name + + Connector:Mixer, + HeatSys1 Supply Mixer, !- Name + HeatSys1 Supply Outlet Branch, !- Outlet Branch Name + HeatSys1 Supply Equipment Branch, !- Inlet Branch 1 Name + HeatSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name + + Connector:Mixer, + HeatSys1 Demand Mixer, !- Name + HeatSys1 Demand Outlet Branch, !- Outlet Branch Name + HeatSys1 Demand Load Branch 1, !- Inlet Branch 1 Name + HeatSys1 Demand Load Branch 2, !- Inlet Branch 2 Name + HeatSys1 Demand Load Branch 3, !- Inlet Branch 3 Name + HeatSys1 Demand Load Branch 4, !- Inlet Branch 4 Name + HeatSys1 Demand Load Branch 5, !- Inlet Branch 5 Name + HeatSys1 Demand Load Branch 6, !- Inlet Branch 6 Name + HeatSys1 Demand Load Branch 7, !- Inlet Branch 7 Name + HeatSys1 Demand Load Branch 8, !- Inlet Branch 8 Name + HeatSys1 Demand Load Branch 9, !- Inlet Branch 9 Name + HeatSys1 Demand Load Branch 10, !- Inlet Branch 10 Name + HeatSys1 Demand Load Branch 11, !- Inlet Branch 11 Name + HeatSys1 Demand Load Branch 12, !- Inlet Branch 12 Name + HeatSys1 Demand Load Branch 13, !- Inlet Branch 13 Name + HeatSys1 Demand Load Branch 14, !- Inlet Branch 14 Name + HeatSys1 Demand Load Branch 15, !- Inlet Branch 15 Name + HeatSys1 Demand Load Branch 16, !- Inlet Branch 16 Name + HeatSys1 Demand Load Branch 17, !- Inlet Branch 17 Name + HeatSys1 Demand Load Branch 18, !- Inlet Branch 18 Name + HeatSys1 Demand Load Branch 19, !- Inlet Branch 19 Name + HeatSys1 Demand Load Branch 20, !- Inlet Branch 20 Name + HeatSys1 Demand Load Branch 21, !- Inlet Branch 21 Name + HeatSys1 Demand Load Branch 22, !- Inlet Branch 22 Name + HeatSys1 Demand Load Branch 23, !- Inlet Branch 23 Name + HeatSys1 Demand Load Branch 24, !- Inlet Branch 24 Name + HeatSys1 Demand Load Branch 25, !- Inlet Branch 25 Name + HeatSys1 Demand Load Branch 26, !- Inlet Branch 26 Name + HeatSys1 Demand Load Branch 27, !- Inlet Branch 27 Name + HeatSys1 Demand Load Branch 28, !- Inlet Branch 28 Name + HeatSys1 Demand Load Branch 29, !- Inlet Branch 29 Name + HeatSys1 Demand Load Branch 30, !- Inlet Branch 30 Name + HeatSys1 Demand Load Branch 31, !- Inlet Branch 31 Name + HeatSys1 Demand Load Branch 32, !- Inlet Branch 32 Name + HeatSys1 Demand Load Branch 33, !- Inlet Branch 33 Name + HeatSys1 Demand Load Branch 34, !- Inlet Branch 34 Name + HeatSys1 Demand Load Branch 35, !- Inlet Branch 35 Name + HeatSys1 Demand Load Branch 36, !- Inlet Branch 36 Name + HeatSys1 Demand Load Branch 37, !- Inlet Branch 37 Name + HeatSys1 Demand Load Branch 38, !- Inlet Branch 38 Name + HeatSys1 Demand Load Branch 39, !- Inlet Branch 39 Name + HeatSys1 Demand Load Branch 40, !- Inlet Branch 40 Name + HeatSys1 Demand Load Branch 41, !- Inlet Branch 41 Name + HeatSys1 Demand Load Branch 42, !- Inlet Branch 42 Name + HeatSys1 Demand Load Branch 43, !- Inlet Branch 43 Name + HeatSys1 Demand Load Branch 44, !- Inlet Branch 44 Name + HeatSys1 Demand Load Branch 45, !- Inlet Branch 45 Name + HeatSys1 Demand Load Branch 46, !- Inlet Branch 46 Name + HeatSys1 Demand Load Branch 47, !- Inlet Branch 47 Name + HeatSys1 Demand Load Branch 48, !- Inlet Branch 48 Name + HeatSys1 Demand Load Branch 49, !- Inlet Branch 49 Name + HeatSys1 Demand Load Branch 50, !- Inlet Branch 50 Name + HeatSys1 Demand Load Branch 51, !- Inlet Branch 51 Name + HeatSys1 Demand Load Branch 52, !- Inlet Branch 52 Name + HeatSys1 Demand Load Branch 53, !- Inlet Branch 53 Name + HeatSys1 Demand Load Branch 54, !- Inlet Branch 54 Name + HeatSys1 Demand Load Branch 55, !- Inlet Branch 55 Name + HeatSys1 Demand Load Branch 56, !- Inlet Branch 56 Name + HeatSys1 Demand Load Branch 57, !- Inlet Branch 57 Name + HeatSys1 Demand Load Branch 58, !- Inlet Branch 58 Name + HeatSys1 Demand Load Branch 59, !- Inlet Branch 59 Name + HeatSys1 Demand Load Branch 60, !- Inlet Branch 60 Name + HeatSys1 Demand Load Branch 61, !- Inlet Branch 61 Name + HeatSys1 Demand Load Branch 62, !- Inlet Branch 62 Name + HeatSys1 Demand Load Branch 63, !- Inlet Branch 63 Name + HeatSys1 Demand Load Branch 64, !- Inlet Branch 64 Name + HeatSys1 Demand Load Branch 65, !- Inlet Branch 65 Name + HeatSys1 Demand Load Branch 66, !- Inlet Branch 66 Name + HeatSys1 Demand Load Branch 67, !- Inlet Branch 67 Name + HeatSys1 Demand Bypass Branch; !- Inlet Branch 68 Name + + Connector:Mixer, + CoolSys1 Supply Supply Side Mixer, !- Name + CoolSys1 Supply Outlet Branch, !- Outlet Branch Name + CoolSys1 Supply Equipment Branch 1, !- Inlet Branch 1 Name + CoolSys1 Supply Equipment Branch 2, !- Inlet Branch 2 Name + CoolSys1 Supply Equipment Bypass Branch; !- Inlet Branch 3 Name + + Connector:Mixer, + CoolSys1 Demand Demand Side Mixer, !- Name + CoolSys1 Demand Outlet Branch, !- Outlet Branch Name + CoolSys1 Demand Load Branch 1, !- Inlet Branch 1 Name + CoolSys1 Demand Load Branch 2, !- Inlet Branch 2 Name + CoolSys1 Demand Load Branch 3, !- Inlet Branch 3 Name + CoolSys1 Demand Load Branch 4, !- Inlet Branch 4 Name + CoolSys1 Demand Load Branch 5, !- Inlet Branch 5 Name + CoolSys1 Demand Load Branch 6, !- Inlet Branch 6 Name + CoolSys1 Demand Load Branch 7, !- Inlet Branch 7 Name + CoolSys1 Demand Load Branch 8; !- Inlet Branch 8 Name + + Connector:Mixer, + TowerWaterSys Supply Mixer, !- Name + TowerWaterSys Supply Outlet Branch, !- Outlet Branch Name + TowerWaterSys Supply Equipment Branch 1, !- Inlet Branch 1 Name + TowerWaterSys Supply Equipment Branch 2, !- Inlet Branch 2 Name + TowerWaterSys Supply Equipment Bypass Branch; !- Inlet Branch 3 Name + + Connector:Mixer, + TowerWaterSys Demand Mixer, !- Name + TowerWaterSys Demand Outlet Branch, !- Outlet Branch Name + TowerWaterSys Demand Load Branch 1, !- Inlet Branch 1 Name + TowerWaterSys Demand Load Branch 2, !- Inlet Branch 2 Name + TowerWaterSys Demand Load Branch 3, !- Inlet Branch Name + TowerWaterSys Demand Bypass Branch; !- Inlet Branch 3 Name + + Connector:Mixer, + CoolSys1 Supply Demand Side Mixer, !- Name + CoolSys1 Supply Demand Side Outlet Branch, !- Outlet Branch Name + CoolSys1 Heat Exchanger Supply Branch, !- Inlet Branch 1 Name + CoolSys1 Supply Side Bypass; !- Inlet Branch 2 Name + + Connector:Mixer, + CoolSys1 Demand Supply Side Mixer, !- Name + CoolSys1 Demand Supply Side Outlet Branch, !- Outlet Branch Name + CoolSys1 Heat Exchanger Demand Branch, !- Inlet Branch 1 Name + CoolSys1 Demand Side Bypass; !- Inlet Branch 2 Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC =========== + + AirLoopHVAC, + VAV_1, !- Name + VAV_1_Controllers, !- Controller List Name + VAV_1 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_1 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_1 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_1 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_1 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_1 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + VAV_ER, !- Name + VAV_ER_Controllers, !- Controller List Name + VAV_ER Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_ER Air Loop Branches,!- Branch List Name + , !- Connector List Name + VAV_ER Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_ER Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_ER Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_ER Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + VAV_OR, !- Name + VAV_OR_Controllers, !- Controller List Name + VAV_OR Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_OR Air Loop Branches,!- Branch List Name + , !- Connector List Name + VAV_OR Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_OR Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_OR Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_OR Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + VAV_ICU, !- Name + VAV_ICU_Controllers, !- Controller List Name + VAV_ICU Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_ICU Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_ICU Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_ICU Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_ICU Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_ICU Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + VAV_PATRMS, !- Name + VAV_PATRMS_Controllers, !- Controller List Name + VAV_PATRMS Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_PATRMS Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_PATRMS Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_PATRMS Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_PATRMS Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_PATRMS Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + VAV_2, !- Name + VAV_2_Controllers, !- Controller List Name + VAV_2 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_2 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_2 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_2 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_2 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_2 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + VAV_LABS, !- Name + VAV_LABS_Controllers, !- Controller List Name + VAV_LABS Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_LABS Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_LABS Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_LABS Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_LABS Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_LABS Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + + AirLoopHVAC, + CAV_KITCHEN, !- Name + CAV_KITCHEN_Controllers, !- Controller List Name + CAV_KITCHEN Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + CAV_KITCHEN Air Loop Branches, !- Branch List Name + , !- Connector List Name + CAV_KITCHEN Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + CAV_KITCHEN Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + CAV_KITCHEN Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + CAV_KITCHEN Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:CONTROLLERLIST =========== + + AirLoopHVAC:ControllerList, + VAV_1_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_1_CoolC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_1_HeatC_Controller; !- Controller 2 Name + + AirLoopHVAC:ControllerList, + VAV_1_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_1_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + VAV_ER_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_ER_ExtraWaterHeatC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_ER_CoolC_Controller, !- Controller 2 Name + Controller:WaterCoil, !- Controller 3 Object Type + VAV_ER_HeatC_Controller; !- Controller 3 Name + + AirLoopHVAC:ControllerList, + VAV_ER_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_ER_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + VAV_OR_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_OR_ExtraWaterHeatC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_OR_CoolC_Controller, !- Controller 2 Name + Controller:WaterCoil, !- Controller 3 Object Type + VAV_OR_HeatC_Controller; !- Controller 3 Name + + AirLoopHVAC:ControllerList, + VAV_OR_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_OR_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + VAV_ICU_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_ICU_ExtraWaterHeatC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_ICU_CoolC_Controller,!- Controller 2 Name + Controller:WaterCoil, !- Controller 3 Object Type + VAV_ICU_HeatC_Controller;!- Controller 3 Name + + AirLoopHVAC:ControllerList, + VAV_ICU_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_ICU_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + VAV_PATRMS_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_PATRMS_ExtraWaterHeatC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_PATRMS_CoolC_Controller, !- Controller 2 Name + Controller:WaterCoil, !- Controller 3 Object Type + VAV_PATRMS_HeatC_Controller; !- Controller 3 Name + + AirLoopHVAC:ControllerList, + VAV_PATRMS_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_PATRMS_OA_Controller;!- Controller 1 Name + + AirLoopHVAC:ControllerList, + VAV_2_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_2_CoolC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_2_HeatC_Controller; !- Controller 2 Name + + AirLoopHVAC:ControllerList, + VAV_2_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_2_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + VAV_LABS_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_LABS_ExtraWaterHeatC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_LABS_CoolC_Controller, !- Controller 2 Name + Controller:WaterCoil, !- Controller 3 Object Type + VAV_LABS_HeatC_Controller; !- Controller 3 Name + + AirLoopHVAC:ControllerList, + VAV_LABS_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_LABS_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + CAV_KITCHEN_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + CAV_KITCHEN_CoolC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + CAV_KITCHEN_HeatC_Controller; !- Controller 2 Name + + AirLoopHVAC:ControllerList, + CAV_KITCHEN_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + CAV_KITCHEN_OA_Controller; !- Controller 1 Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:OUTDOORAIRSYSTEM:EQUIPMENTLIST =========== + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_1_OA_Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + VAV_1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + VAV_1_OAMixing Box; !- Component 2 Name + + + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_ER_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_ER_OAMixing Box; !- Component 1 Name + + + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_OR_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_OR_OAMixing Box; !- Component 1 Name + + + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_ICU_OA_Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + ICU OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + VAV_ICU_OAMixing Box; !- Component 2 Name + + + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_PATRMS_OA_Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + PATRMS OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + VAV_PATRMS_OAMixing Box; !- Component 2 Name + + + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_2_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_2_OAMixing Box; !- Component 1 Name + + + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_LABS_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_LABS_OAMixing Box; !- Component 1 Name + + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + CAV_KITCHEN_OA_Equipment,!- Name + OutdoorAir:Mixer, !- Component 1 Object Type + CAV_KITCHEN_OAMixing Box;!- Component 1 Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:OUTDOORAIRSYSTEM =========== + + AirLoopHVAC:OutdoorAirSystem, + VAV_1_OA, !- Name + VAV_1_OA_Controllers, !- Controller List Name + VAV_1_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_1 Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_ER_OA, !- Name + VAV_ER_OA_Controllers, !- Controller List Name + VAV_ER_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_ER Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_OR_OA, !- Name + VAV_OR_OA_Controllers, !- Controller List Name + VAV_OR_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_OR Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_ICU_OA, !- Name + VAV_ICU_OA_Controllers, !- Controller List Name + VAV_ICU_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_ICU Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_PATRMS_OA, !- Name + VAV_PATRMS_OA_Controllers, !- Controller List Name + VAV_PATRMS_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_PATRMS Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_2_OA, !- Name + VAV_2_OA_Controllers, !- Controller List Name + VAV_2_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_2 Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_LABS_OA, !- Name + VAV_LABS_OA_Controllers, !- Controller List Name + VAV_LABS_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_LABS Availability Manager List; !- Availability Manager List Name + + AirLoopHVAC:OutdoorAirSystem, + CAV_KITCHEN_OA, !- Name + CAV_KITCHEN_OA_Controllers, !- Controller List Name + CAV_KITCHEN_OA_Equipment,!- Outdoor Air Equipment List Name + CAV_KITCHEN Availability Manager List; !- Availability Manager List Name + +!- =========== ALL OBJECTS IN CLASS: OUTSIDE AIR NODE =========== + + OutdoorAir:Node, + RACK1_condenserInlet; !- Name + + OutdoorAir:Node, + RACK2_condenserInlet; !- Name + + OutdoorAir:Node, + TowerWaterSys CoolTower OA ref Node; !- Name + + OutdoorAir:Node, + Dummy Water Heater OA Node; !- Name + + + +!- =========== ALL OBJECTS IN CLASS: OUTSIDE AIR INLET NODE LIST =========== + + OutdoorAir:NodeList, + VAV_1_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + VAV_ER_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + VAV_OR_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + VAV_ICU_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + VAV_PATRMS_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + VAV_2_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + VAV_LABS_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + CAV_KITCHEN_OANode List; !- Node or NodeList Name 1 + +!- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:MIXER =========== + OutdoorAir:Mixer, + VAV_1_OAMixing Box, !- Name + VAV_1_OA-VAV_1_CoolCNode, !- Mixed Air Node Name + VAV_1 Heat Recovery Outlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name + VAV_1_OARelief Node, !- Relief Air Stream Node Name + VAV_1 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + + + OutdoorAir:Mixer, + VAV_ER_OAMixing Box, !- Name + VAV_ER_OA-VAV_ER HumidifierNode, !- Mixed Air Node Name + VAV_ER_OAInlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name + VAV_ER_OARelief Node, !- Relief Air Stream Node Name + VAV_ER Supply Equipment Inlet Node; !- Return Air Stream Node Name + + + + OutdoorAir:Mixer, + VAV_OR_OAMixing Box, !- Name + VAV_OR_OA-VAV_OR HumidifierNode, !- Mixed Air Node Name + VAV_OR_OAInlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name + VAV_OR_OARelief Node, !- Relief Air Stream Node Name + VAV_OR Supply Equipment Inlet Node; !- Return Air Stream Node Name + + + + OutdoorAir:Mixer, + VAV_ICU_OAMixing Box, !- Name + VAV_ICU_OA-VAV_ICU HumidifierNode, !- Mixed Air Node Name + ICU Heat Recovery Outlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name + VAV_ICU_OARelief Node, !- Relief Air Stream Node Name + VAV_ICU Supply Equipment Inlet Node; !- Return Air Stream Node Name + + + + OutdoorAir:Mixer, + VAV_PATRMS_OAMixing Box, !- Name + VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Mixed Air Node Name + PATRMS Heat Recovery Outlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name + VAV_PATRMS_OARelief Node,!- Relief Air Stream Node Name + VAV_PATRMS Supply Equipment Inlet Node; !- Return Air Stream Node Name + + + + OutdoorAir:Mixer, + VAV_2_OAMixing Box, !- Name + VAV_2_OA-VAV_2_CoolCNode, !- Mixed Air Node Name + VAV_2_OAInlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name + VAV_2_OARelief Node, !- Relief Air Stream Node Name + VAV_2 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + + + OutdoorAir:Mixer, + VAV_LABS_OAMixing Box, !- Name + VAV_LABS_OA-VAV_LABS HumidifierNode, !- Mixed Air Node Name + VAV_LABS_OAInlet Node, !- Outdoor Air Stream Node Name !- Outdoor Air Stream Node Name + VAV_LABS_OARelief Node, !- Relief Air Stream Node Name + VAV_LABS Supply Equipment Inlet Node; !- Return Air Stream Node Name + + + + OutdoorAir:Mixer, + CAV_KITCHEN_OAMixing Box,!- Name + CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode, !- Mixed Air Node Name + CAV_KITCHEN_OAInlet Node,!- Outdoor Air Stream Node Name + CAV_KITCHEN_OARelief Node, !- Relief Air Stream Node Name + CAV_KITCHEN Supply Equipment Inlet Node; !- Return Air Stream Node Name + +!- =========== ALL OBJECTS IN CLASS: SYSTEM AVAILABILITY MANAGER LIST =========== + + AvailabilityManager:NightCycle, + VAV_1 Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + VAV_ER Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + VAV_OR Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + VAV_ICU Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + VAV_PATRMS Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + VAV_2 Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + VAV_LABS Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + CAV_KITCHEN Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + +!- =========== ALL OBJECTS IN CLASS: SYSTEM AVAILABILITY MANAGER:NIGHT CYCLE =========== + + AvailabilityManagerAssignmentList, + VAV_1 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_1 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + VAV_ER Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_ER Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + VAV_OR Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_OR Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + VAV_ICU Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_ICU Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + VAV_PATRMS Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_PATRMS Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + VAV_2 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_2 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + VAV_LABS Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_LABS Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + CAV_KITCHEN Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + CAV_KITCHEN Availability Manager; !- Availability Manager 1 Name + +!- =========== ALL OBJECTS IN CLASS: SET POINT MANAGER:SCHEDULED =========== + + SetpointManager:Scheduled, + CoolSys1 Loop Plant Demand Inlet Setpoint Manager, !- Name + Temperature, !- Control Variable + CW-Loop-Temp-Schedule, !- Schedule Name + CoolSys1 Demand Inlet Node; !- Setpoint Node or NodeList Name + + + + SetpointManager:Scheduled, + SHWSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + SHWSys1-Loop-Temp-Schedule, !- Schedule Name + SHWSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + + + SetpointManager:OutdoorAirReset, + HeatSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + 60.0, !- Setpoint at Outdoor Low Temperature {C} + -6.7, !- Outdoor Low Temperature {C} + 48.89, !- Setpoint at Outdoor High Temperature {C} + 10, !- Outdoor High Temperature {C} + HeatSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + Heat Recovery Chiller Bypass Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + Heat Recovery Chiller Bypass Loop Setpoint Schedule, !- Schedule Name + Heat Recovery Chiller Outlet; !- Setpoint Node or NodeList Name + + Schedule:Constant, + Heat Recovery Chiller Bypass Loop Setpoint Schedule, + Temperature, + 6.67; + + + + SetpointManager:OutdoorAirReset, + CoolSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + 8.89, !- Setpoint at Outdoor Low Temperature {C} + 12.78, !- Outdoor Low Temperature {C} + 6.7, !- Setpoint at Outdoor High Temperature {C} + 21.11, !- Outdoor High Temperature {C} + CoolSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + + + SetpointManager:Scheduled, + TowerWaterSystem Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + Tower-Loop-Temp-Schedule,!- Schedule Name + TowerWaterSys Supply Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + VAV_ER SAT setpoint, !- Name + Temperature, !- Control Variable + VAV_SAT_SCH, !- Schedule Name + VAV_ER Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + VAV_OR SAT setpoint, !- Name + Temperature, !- Control Variable + VAV_SAT_SCH, !- Schedule Name + VAV_OR Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + VAV_ICU SAT setpoint, !- Name + Temperature, !- Control Variable + VAV_SAT_SCH, !- Schedule Name + VAV_ICU Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + VAV_PATRMS SAT setpoint, !- Name + Temperature, !- Control Variable + VAV_SAT_SCH, !- Schedule Name + VAV_PATRMS Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + VAV_LABS SAT setpoint, !- Name + Temperature, !- Control Variable + VAV_SAT_SCH, !- Schedule Name + VAV_LABS Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: SET POINT MANAGER:SINGLEZONE:HEATING AND COOLING =========== + + SetpointManager:SingleZone:Heating, + CAV_KITCHEN SAT setpoint - Htg, !- Name + Temperature, !- Control Variable + 12.8, !- Minimum Supply Air Temperature {C} + 40.0, !- Maximum Supply Air Temperature {C} + Kitchen_Flr_5, !- Control Zone Name + Kitchen_Flr_5 Air Node, !- Zone Node Name + Kitchen_Flr_5 Inlet Node, !- Zone Inlet Node Name + Kitchen_Flr_5 Inlet Nodes; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + CAV_KITCHEN SAT setpoint - Coil Htg, !- Name + Temperature, !- Control Variable + Kitchen_Flr_5 Inlet Nodes, !- Reference Setpoint Node Name + CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Fan Inlet Node Name + CAV_KITCHEN Supply Equipment Outlet Node, !- Fan Outlet Node Name + CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:SingleZone:Cooling, + CAV_KITCHEN SAT setpoint - Clg, !- Name + Temperature, !- Control Variable + 12.8, !- Minimum Supply Air Temperature {C} + 40.0, !- Maximum Supply Air Temperature {C} + Kitchen_Flr_5, !- Control Zone Name + Kitchen_Flr_5 Air Node, !- Zone Node Name + Kitchen_Flr_5 Inlet Node, !- Zone Inlet Node Name + CAV_KITCHEN Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + CAV_KITCHEN SAT setpoint - Coil Clg, !- Name + Temperature, !- Control Variable + CAV_KITCHEN Supply Equipment Outlet Node, !- Reference Setpoint Node Name + CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Fan Inlet Node Name + CAV_KITCHEN Supply Equipment Outlet Node, !- Fan Outlet Node Name + CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode; !- Setpoint Node or NodeList Name + + + SetpointManager:Scheduled, + Heat Recovery Chiller Setpoint, !- Name + Temperature, !- Control Variable + Heat Recovery Chiller Setpoint, !- Schedule Name + Heat Recovery Chiller HR Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + Dummy Water Heater Setpoint, !- Name + Temperature, !- Control Variable + Dummy Water Heater Setpoint, !- Schedule Name + Heat Recovery Supply Outlet Node; !- Setpoint Node or NodeList Name + + + +!- =========== ALL OBJECTS IN CLASS: SET POINT MANAGER:OUTDOORAIRRESET =========== + + SetpointManager:OutdoorAirReset, + VAV_1 Supply Air Temperature Manager, !- Name + Temperature, !- Control Variable + 15.6, !- Setpoint at Outdoor Low Temperature {C} + 10, !- Outdoor Low Temperature {C} + 12.8, !- Setpoint at Outdoor High Temperature {C} + 21.1, !- Outdoor High Temperature {C} + VAV_1 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:OutdoorAirReset, + VAV_2 Supply Air Temperature Manager, !- Name + Temperature, !- Control Variable + 15.6, !- Setpoint at Outdoor Low Temperature {C} + 10, !- Outdoor Low Temperature {C} + 12.8, !- Setpoint at Outdoor High Temperature {C} + 21.1, !- Outdoor High Temperature {C} + VAV_2 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + + SetpointManager:MixedAir, + VAV_PATRMS_ExtraElecHeatC Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_PATRMS Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Fan Inlet Node Name + VAV_PATRMS Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_PATRMS_ExtraWaterHeatC Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_PATRMS Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Fan Inlet Node Name + VAV_PATRMS Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_ER_ExtraElecHeatC Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_ER Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_ER_HeatC-VAV_ER_FanNode, !- Fan Inlet Node Name + VAV_ER Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_ER_ExtraWaterHeatC Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_ER Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_ER_HeatC-VAV_ER_FanNode, !- Fan Inlet Node Name + VAV_ER Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_OR_ExtraElecHeatC Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_OR Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_OR_HeatC-VAV_OR_FanNode, !- Fan Inlet Node Name + VAV_OR Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_OR_ExtraWaterHeatC Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_OR Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_OR_HeatC-VAV_OR_FanNode, !- Fan Inlet Node Name + VAV_OR Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_ICU_ExtraElecHeatC Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_ICU Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_ICU_HeatC-VAV_ICU_FanNode, !- Fan Inlet Node Name + VAV_ICU Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_ICU_ExtraWaterHeatC Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_ICU Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_ICU_HeatC-VAV_ICU_FanNode, !- Fan Inlet Node Name + VAV_ICU Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_LABS_ExtraElecHeatC Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_LABS Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_LABS_HeatC-VAV_LABS_FanNode, !- Fan Inlet Node Name + VAV_LABS Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_LABS_ExtraWaterHeatC Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_LABS Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_LABS_HeatC-VAV_LABS_FanNode, !- Fan Inlet Node Name + VAV_LABS Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SINGLEZONE:HUMIDITY:MINIMUM =========== + + + SetpointManager:MultiZone:Humidity:Minimum, + VAV_ER Humidifier HUMRAT setpoint, !- Name + VAV_ER, !- HVAC Air Loop Name + , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MultiZone:Humidity:Minimum, + VAV_OR Humidifier HUMRAT setpoint, !- Name + VAV_OR, !- HVAC Air Loop Name + , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MultiZone:Humidity:Minimum, + VAV_ICU Humidifier HUMRAT setpoint, !- Name + VAV_ICU, !- HVAC Air Loop Name + , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MultiZone:Humidity:Minimum, + VAV_PATRMS Humidifier HUMRAT setpoint, !- Name + VAV_PATRMS, !- HVAC Air Loop Name + , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MultiZone:Humidity:Minimum, + VAV_LABS Humidifier HUMRAT setpoint, !- Name + VAV_LABS, !- HVAC Air Loop Name + , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SINGLEZONE:HUMIDITY:MAXIMUM =========== + + SetpointManager:MultiZone:Humidity:Maximum, + VAV_ER_CoolC HUMRAT setpoint, !- Name + VAV_ER, !- HVAC Air Loop Name + , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_ER_CoolC-VAV_ER_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MultiZone:Humidity:Maximum, + VAV_OR_CoolC HUMRAT setpoint, !- Name + VAV_OR, !- HVAC Air Loop Name + , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_OR_CoolC-VAV_OR_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MultiZone:Humidity:Maximum, + VAV_ICU_CoolC HUMRAT setpoint, !- Name + VAV_ICU, !- HVAC Air Loop Name + , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_ICU_CoolC-VAV_ICU_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MultiZone:Humidity:Maximum, + VAV_PATRMS_CoolC HUMRAT setpoint, !- Name + VAV_PATRMS, !- HVAC Air Loop Name + , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MultiZone:Humidity:Maximum, + VAV_LABS_CoolC HUMRAT setpoint, !- Name + VAV_LABS, !- HVAC Air Loop Name + , !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + , !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_LABS_CoolC-VAV_LABS_HeatCNode; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:MIXEDAIR =========== + + SetpointManager:MixedAir, + VAV_1_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_1_HeatC-VAV_1_FanNode, !- Fan Inlet Node Name + VAV_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_1_CoolC-VAV_1_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_1_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_1_HeatC-VAV_1_FanNode, !- Fan Inlet Node Name + VAV_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_1_HeatC-VAV_1_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_1_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_1_HeatC-VAV_1_FanNode, !- Fan Inlet Node Name + VAV_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_1_OA-VAV_1_CoolCNode;!- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_ER_CoolC SAT Manager,!- Name + Temperature, !- Control Variable + VAV_ER Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_ER_HeatC-VAV_ER_FanNode, !- Fan Inlet Node Name + VAV_ER Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_ER_CoolC-VAV_ER_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_ER_HeatC SAT Manager,!- Name + Temperature, !- Control Variable + VAV_ER Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_ER_HeatC-VAV_ER_FanNode, !- Fan Inlet Node Name + VAV_ER Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_ER_HeatC-VAV_ER_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_ER_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_ER Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_ER_HeatC-VAV_ER_FanNode, !- Fan Inlet Node Name + VAV_ER Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_ER_OA-VAV_ER HumidifierNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_OR_CoolC SAT Manager,!- Name + Temperature, !- Control Variable + VAV_OR Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_OR_HeatC-VAV_OR_FanNode, !- Fan Inlet Node Name + VAV_OR Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_OR_CoolC-VAV_OR_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_OR_HeatC SAT Manager,!- Name + Temperature, !- Control Variable + VAV_OR Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_OR_HeatC-VAV_OR_FanNode, !- Fan Inlet Node Name + VAV_OR Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_OR_HeatC-VAV_OR_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_OR_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_OR Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_OR_HeatC-VAV_OR_FanNode, !- Fan Inlet Node Name + VAV_OR Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_OR_OA-VAV_OR HumidifierNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_ICU_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_ICU Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_ICU_HeatC-VAV_ICU_FanNode, !- Fan Inlet Node Name + VAV_ICU Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_ICU_CoolC-VAV_ICU_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_ICU_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_ICU Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_ICU_HeatC-VAV_ICU_FanNode, !- Fan Inlet Node Name + VAV_ICU Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_ICU_HeatC-VAV_ICU_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_ICU_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_ICU Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_ICU_HeatC-VAV_ICU_FanNode, !- Fan Inlet Node Name + VAV_ICU Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_ICU_OA-VAV_ICU HumidifierNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_PATRMS_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_PATRMS Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Fan Inlet Node Name + VAV_PATRMS Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_PATRMS_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_PATRMS Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Fan Inlet Node Name + VAV_PATRMS Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_PATRMS_HeatC-VAV_PATRMS_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_PATRMS_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_PATRMS Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Fan Inlet Node Name + VAV_PATRMS Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_PATRMS_OA-VAV_PATRMS HumidifierNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_2_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_2_HeatC-VAV_2_FanNode, !- Fan Inlet Node Name + VAV_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_2_CoolC-VAV_2_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_2_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_2_HeatC-VAV_2_FanNode, !- Fan Inlet Node Name + VAV_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_2_HeatC-VAV_2_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_2_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_2_HeatC-VAV_2_FanNode, !- Fan Inlet Node Name + VAV_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_2_OA-VAV_2_CoolCNode;!- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_LABS_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_LABS Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_LABS_HeatC-VAV_LABS_FanNode, !- Fan Inlet Node Name + VAV_LABS Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_LABS_CoolC-VAV_LABS_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_LABS_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_LABS Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_LABS_HeatC-VAV_LABS_FanNode, !- Fan Inlet Node Name + VAV_LABS Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_LABS_HeatC-VAV_LABS_FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_LABS_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_LABS Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_LABS_HeatC-VAV_LABS_FanNode, !- Fan Inlet Node Name + VAV_LABS Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_LABS_OA-VAV_LABS HumidifierNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + CAV_KITCHEN_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + CAV_KITCHEN Supply Equipment Outlet Node, !- Reference Setpoint Node Name + CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Fan Inlet Node Name + CAV_KITCHEN Supply Equipment Outlet Node, !- Fan Outlet Node Name + CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode; !- Setpoint Node or NodeList Name + + + SetpointManager:OutdoorAirPretreat, + ICU Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 0.00001, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1.0, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_ICU_OA-VAV_ICU HumidifierNode, !- Reference Setpoint Node Name + VAV_ICU_OA-VAV_ICU HumidifierNode, !- Mixed Air Stream Node Name + VAV_ICU_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_ICU Supply Equipment Inlet Node, !- Return Air Stream Node Name + ICU Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + + + + SetpointManager:OutdoorAirPretreat, + PATRMS Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 0.00001, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1.0, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Reference Setpoint Node Name + VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Mixed Air Stream Node Name + VAV_PATRMS_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_PATRMS Supply Equipment Inlet Node, !- Return Air Stream Node Name + PATRMS Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + + + + SetpointManager:OutdoorAirPretreat, + VAV_1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature {C} + 99, !- Maximum Setpoint Temperature {C} + 0.00001, !- Minimum Setpoint Humidity Ratio {kgWater/kgDryAir} + 1.0, !- Maximum Setpoint Humidity Ratio {kgWater/kgDryAir} + VAV_1_OA-VAV_1_CoolCNode,!- Reference Setpoint Node Name + VAV_1_OA-VAV_1_CoolCNode,!- Mixed Air Stream Node Name + VAV_1_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_1 Supply Equipment Inlet Node, !- Return Air Stream Node Name + VAV_1 Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + + + + + + +!- =========== ALL OBJECTS IN CLASS: CONTROLLER:WATERCOIL =========== + + Controller:WaterCoil, + VAV_PATRMS_ExtraWaterHeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Sensor Node Name + VAV_PATRMS_ExtraWaterHeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_ER_ExtraWaterHeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Sensor Node Name + VAV_ER_ExtraWaterHeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_OR_ExtraWaterHeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Sensor Node Name + VAV_OR_ExtraWaterHeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_ICU_ExtraWaterHeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Sensor Node Name + VAV_ICU_ExtraWaterHeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_LABS_ExtraWaterHeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Sensor Node Name + VAV_LABS_ExtraWaterHeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_1_CoolC_Controller, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_1_CoolC-VAV_1_HeatCNode, !- Sensor Node Name + VAV_1_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_1_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_1_HeatC-VAV_1_FanNode, !- Sensor Node Name + VAV_1_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_ER_CoolC_Controller, !- Name + TemperatureAndHumidityRatio, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_ER_CoolC-VAV_ER_HeatCNode, !- Sensor Node Name + VAV_ER_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_ER_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_ER_HeatC-VAV_ER_FanNode, !- Sensor Node Name + VAV_ER_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_OR_CoolC_Controller, !- Name + TemperatureAndHumidityRatio, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_OR_CoolC-VAV_OR_HeatCNode, !- Sensor Node Name + VAV_OR_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_OR_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_OR_HeatC-VAV_OR_FanNode, !- Sensor Node Name + VAV_OR_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_ICU_CoolC_Controller,!- Name + TemperatureAndHumidityRatio, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_ICU_CoolC-VAV_ICU_HeatCNode, !- Sensor Node Name + VAV_ICU_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_ICU_HeatC_Controller,!- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_ICU_HeatC-VAV_ICU_FanNode, !- Sensor Node Name + VAV_ICU_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_PATRMS_CoolC_Controller, !- Name + TemperatureAndHumidityRatio, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode, !- Sensor Node Name + VAV_PATRMS_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_PATRMS_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Sensor Node Name + VAV_PATRMS_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_2_CoolC_Controller, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_2_CoolC-VAV_2_HeatCNode, !- Sensor Node Name + VAV_2_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_2_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_2_HeatC-VAV_2_FanNode, !- Sensor Node Name + VAV_2_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_LABS_CoolC_Controller, !- Name + TemperatureAndHumidityRatio, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_LABS_CoolC-VAV_LABS_HeatCNode, !- Sensor Node Name + VAV_LABS_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_LABS_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_LABS_HeatC-VAV_LABS_FanNode, !- Sensor Node Name + VAV_LABS_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + CAV_KITCHEN_CoolC_Controller, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode, !- Sensor Node Name + CAV_KITCHEN_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + CAV_KITCHEN_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Sensor Node Name + CAV_KITCHEN_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + +!- =========== ALL OBJECTS IN CLASS: CONTROLLER:OUTDOORAIR =========== + + Controller:OutdoorAir, + VAV_1_OA_Controller, !- Name + VAV_1_OARelief Node, !- Relief Air Outlet Node Name + VAV_1 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_1_OA-VAV_1_CoolCNode, !- Mixed Air Node Name + VAV_1_OAInlet Node, !- Actuator Node Name + 0, !- Minimum Outdoor Air Flow Rate {m3/s} !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type +, !- Economizer Maximum Limit Dry-Bulb Temperature {C} !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + LockoutWithHeating, !- Lockout Type, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + BLDG_OA_FRAC_SCH, !- Minimum Fraction of Outdoor Air Schedule Name + VAV_1 Max OA Fraction, !- Maximum Fraction of Outdoor Air Schedule Name + + VAV_1_DCV, !- Mechanical Ventilation Controller Name + , !- Time of Day Economizer Control Schedule Name + , !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum; !- Heat Recovery Bypass Control Type +!- Mechanical Ventilation Controller Name + + + + Controller:OutdoorAir, + VAV_ER_OA_Controller, !- Name + VAV_ER_OARelief Node, !- Relief Air Outlet Node Name + VAV_ER Supply Equipment Inlet Node, !- Return Air Node Name + VAV_ER_OA-VAV_ER HumidifierNode, !- Mixed Air Node Name + VAV_ER_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + LockoutWithHeating, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + VAV_ER_OAminOAFracSchedule; !- Minimum Fraction of Outdoor Air Schedule Name + + + + + Controller:OutdoorAir, + VAV_OR_OA_Controller, !- Name + VAV_OR_OARelief Node, !- Relief Air Outlet Node Name + VAV_OR Supply Equipment Inlet Node, !- Return Air Node Name + VAV_OR_OA-VAV_OR HumidifierNode, !- Mixed Air Node Name + VAV_OR_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + LockoutWithHeating, !- Lockout Type, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + VAV_OR_OAminOAFracSchedule; !- Minimum Fraction of Outdoor Air Schedule Name + + + + + Controller:OutdoorAir, + VAV_ICU_OA_Controller, !- Name + VAV_ICU_OARelief Node, !- Relief Air Outlet Node Name + VAV_ICU Supply Equipment Inlet Node, !- Return Air Node Name + VAV_ICU_OA-VAV_ICU HumidifierNode, !- Mixed Air Node Name + VAV_ICU_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + LockoutWithHeating, !- Lockout Type, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + VAV_ICU_OAminOAFracSchedule, !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + , !- Mechanical Ventilation Controller Name + , !- Time of Day Economizer Control Schedule Name + , !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum; !- Heat Recovery Bypass Control Type + + + + + Controller:OutdoorAir, + VAV_PATRMS_OA_Controller, !- Name + VAV_PATRMS_OARelief Node, !- Relief Air Outlet Node Name + VAV_PATRMS Supply Equipment Inlet Node, !- Return Air Node Name + VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Mixed Air Node Name + VAV_PATRMS_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + LockoutWithHeating, !- Lockout Type, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + VAV_PATRMS_OAminOAFracSchedule, !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + , !- Mechanical Ventilation Controller Name + , !- Time of Day Economizer Control Schedule Name + , !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenOAFlowGreaterThanMinimum; !- Heat Recovery Bypass Control Type + + + + + Controller:OutdoorAir, + VAV_2_OA_Controller, !- Name + VAV_2_OARelief Node, !- Relief Air Outlet Node Name + VAV_2 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_2_OA-VAV_2_CoolCNode, !- Mixed Air Node Name + VAV_2_OAInlet Node, !- Actuator Node Name + 0, !- Minimum Outdoor Air Flow Rate {m3/s} !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type +, !- Economizer Maximum Limit Dry-Bulb Temperature {C} !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + LockoutWithHeating, !- Lockout Type, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + BLDG_OA_FRAC_SCH, !- Minimum Fraction of Outdoor Air Schedule Name + VAV_2 Max OA Fraction, !- Maximum Fraction of Outdoor Air Schedule Name + + VAV_2_DCV; !- Mechanical Ventilation Controller Name + + + + + Controller:OutdoorAir, + VAV_LABS_OA_Controller, !- Name + VAV_LABS_OARelief Node, !- Relief Air Outlet Node Name + VAV_LABS Supply Equipment Inlet Node, !- Return Air Node Name + VAV_LABS_OA-VAV_LABS HumidifierNode, !- Mixed Air Node Name + VAV_LABS_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + LockoutWithHeating, !- Lockout Type, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_Sched, !- Minimum Outdoor Air Schedule Name + VAV_LABS_OAminOAFracSchedule; !- Minimum Fraction of Outdoor Air Schedule Name + + + + + Controller:OutdoorAir, + CAV_KITCHEN_OA_Controller, !- Name + CAV_KITCHEN_OARelief Node, !- Relief Air Outlet Node Name + CAV_KITCHEN Supply Equipment Inlet Node, !- Return Air Node Name + CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode, !- Mixed Air Node Name + CAV_KITCHEN_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialEnthalpy, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type +, !- Economizer Maximum Limit Dry-Bulb Temperature {C} !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + LockoutWithHeating, !- Lockout Type, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + Kitchen_Exhaust_SCH; !- Minimum Outdoor Air Schedule Name + +!- =========== ALL OBJECTS IN CLASS: CONTROLLED ZONE EQUIP CONFIGURATION =========== + + ZoneHVAC:EquipmentConnections, + Basement, !- Zone Name + Basement Equipment, !- Zone Conditioning Equipment List Name + Basement Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Basement Air Node, !- Zone Air Node Name + Basement Return Air Node;!- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + ER_Exam1_Mult4_Flr_1, !- Zone Name + ER_Exam1_Mult4_Flr_1 Equipment, !- Zone Conditioning Equipment List Name + ER_Exam1_Mult4_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + ER_Exam1_Mult4_Flr_1 Air Node, !- Zone Air Node Name + ER_Exam1_Mult4_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + ER_Trauma1_Flr_1, !- Zone Name + ER_Trauma1_Flr_1 Equipment, !- Zone Conditioning Equipment List Name + ER_Trauma1_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + ER_Trauma1_Flr_1 Air Node, !- Zone Air Node Name + ER_Trauma1_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + ER_Exam3_Mult4_Flr_1, !- Zone Name + ER_Exam3_Mult4_Flr_1 Equipment, !- Zone Conditioning Equipment List Name + ER_Exam3_Mult4_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + ER_Exam3_Mult4_Flr_1 Air Node, !- Zone Air Node Name + ER_Exam3_Mult4_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + ER_Trauma2_Flr_1, !- Zone Name + ER_Trauma2_Flr_1 Equipment, !- Zone Conditioning Equipment List Name + ER_Trauma2_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + ER_Trauma2_Flr_1 Air Node, !- Zone Air Node Name + ER_Trauma2_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + ER_Triage_Mult4_Flr_1, !- Zone Name + ER_Triage_Mult4_Flr_1 Equipment, !- Zone Conditioning Equipment List Name + ER_Triage_Mult4_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + ER_Triage_Mult4_Flr_1 Air Node, !- Zone Air Node Name + ER_Triage_Mult4_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Office1_Mult4_Flr_1, !- Zone Name + Office1_Mult4_Flr_1 Equipment, !- Zone Conditioning Equipment List Name + Office1_Mult4_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Office1_Mult4_Flr_1 Air Node, !- Zone Air Node Name + Office1_Mult4_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Lobby_Records_Flr_1, !- Zone Name + Lobby_Records_Flr_1 Equipment, !- Zone Conditioning Equipment List Name + Lobby_Records_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Lobby_Records_Flr_1 Air Node, !- Zone Air Node Name + Lobby_Records_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_Flr_1, !- Zone Name + Corridor_Flr_1 Equipment,!- Zone Conditioning Equipment List Name + Corridor_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_Flr_1 Air Node, !- Zone Air Node Name + Corridor_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + ER_NurseStn_Lobby_Flr_1, !- Zone Name + ER_NurseStn_Lobby_Flr_1 Equipment, !- Zone Conditioning Equipment List Name + ER_NurseStn_Lobby_Flr_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + ER_NurseStn_Lobby_Flr_1 Air Node, !- Zone Air Node Name + ER_NurseStn_Lobby_Flr_1 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + OR1_Flr_2, !- Zone Name + OR1_Flr_2 Equipment, !- Zone Conditioning Equipment List Name + OR1_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + OR1_Flr_2 Air Node, !- Zone Air Node Name + OR1_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + OR2_Mult5_Flr_2, !- Zone Name + OR2_Mult5_Flr_2 Equipment, !- Zone Conditioning Equipment List Name + OR2_Mult5_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + OR2_Mult5_Flr_2 Air Node,!- Zone Air Node Name + OR2_Mult5_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + OR3_Flr_2, !- Zone Name + OR3_Flr_2 Equipment, !- Zone Conditioning Equipment List Name + OR3_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + OR3_Flr_2 Air Node, !- Zone Air Node Name + OR3_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + OR4_Flr_2, !- Zone Name + OR4_Flr_2 Equipment, !- Zone Conditioning Equipment List Name + OR4_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + OR4_Flr_2 Air Node, !- Zone Air Node Name + OR4_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + IC_PatRoom1_Mult5_Flr_2, !- Zone Name + IC_PatRoom1_Mult5_Flr_2 Equipment, !- Zone Conditioning Equipment List Name + IC_PatRoom1_Mult5_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + IC_PatRoom1_Mult5_Flr_2 Air Node, !- Zone Air Node Name + IC_PatRoom1_Mult5_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + IC_PatRoom2_Flr_2, !- Zone Name + IC_PatRoom2_Flr_2 Equipment, !- Zone Conditioning Equipment List Name + IC_PatRoom2_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + IC_PatRoom2_Flr_2 Air Node, !- Zone Air Node Name + IC_PatRoom2_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + IC_PatRoom3_Mult6_Flr_2, !- Zone Name + IC_PatRoom3_Mult6_Flr_2 Equipment, !- Zone Conditioning Equipment List Name + IC_PatRoom3_Mult6_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + IC_PatRoom3_Mult6_Flr_2 Air Node, !- Zone Air Node Name + IC_PatRoom3_Mult6_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + ICU_Flr_2, !- Zone Name + ICU_Flr_2 Equipment, !- Zone Conditioning Equipment List Name + ICU_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + ICU_Flr_2 Air Node, !- Zone Air Node Name + ICU_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + ICU_NurseStn_Lobby_Flr_2,!- Zone Name + ICU_NurseStn_Lobby_Flr_2 Equipment, !- Zone Conditioning Equipment List Name + ICU_NurseStn_Lobby_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + ICU_NurseStn_Lobby_Flr_2 Air Node, !- Zone Air Node Name + ICU_NurseStn_Lobby_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_Flr_2, !- Zone Name + Corridor_Flr_2 Equipment,!- Zone Conditioning Equipment List Name + Corridor_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_Flr_2 Air Node, !- Zone Air Node Name + Corridor_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + OR_NurseStn_Lobby_Flr_2, !- Zone Name + OR_NurseStn_Lobby_Flr_2 Equipment, !- Zone Conditioning Equipment List Name + OR_NurseStn_Lobby_Flr_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + OR_NurseStn_Lobby_Flr_2 Air Node, !- Zone Air Node Name + OR_NurseStn_Lobby_Flr_2 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom1_Mult10_Flr_3, !- Zone Name + PatRoom1_Mult10_Flr_3 Equipment, !- Zone Conditioning Equipment List Name + PatRoom1_Mult10_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom1_Mult10_Flr_3 Air Node, !- Zone Air Node Name + PatRoom1_Mult10_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom2_Flr_3, !- Zone Name + PatRoom2_Flr_3 Equipment,!- Zone Conditioning Equipment List Name + PatRoom2_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom2_Flr_3 Air Node, !- Zone Air Node Name + PatRoom2_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom3_Mult10_Flr_3, !- Zone Name + PatRoom3_Mult10_Flr_3 Equipment, !- Zone Conditioning Equipment List Name + PatRoom3_Mult10_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom3_Mult10_Flr_3 Air Node, !- Zone Air Node Name + PatRoom3_Mult10_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom4_Flr_3, !- Zone Name + PatRoom4_Flr_3 Equipment,!- Zone Conditioning Equipment List Name + PatRoom4_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom4_Flr_3 Air Node, !- Zone Air Node Name + PatRoom4_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom5_Mult10_Flr_3, !- Zone Name + PatRoom5_Mult10_Flr_3 Equipment, !- Zone Conditioning Equipment List Name + PatRoom5_Mult10_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom5_Mult10_Flr_3 Air Node, !- Zone Air Node Name + PatRoom5_Mult10_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PhysTherapy_Flr_3, !- Zone Name + PhysTherapy_Flr_3 Equipment, !- Zone Conditioning Equipment List Name + PhysTherapy_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PhysTherapy_Flr_3 Air Node, !- Zone Air Node Name + PhysTherapy_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom6_Flr_3, !- Zone Name + PatRoom6_Flr_3 Equipment,!- Zone Conditioning Equipment List Name + PatRoom6_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom6_Flr_3 Air Node, !- Zone Air Node Name + PatRoom6_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom7_Mult10_Flr_3, !- Zone Name + PatRoom7_Mult10_Flr_3 Equipment, !- Zone Conditioning Equipment List Name + PatRoom7_Mult10_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom7_Mult10_Flr_3 Air Node, !- Zone Air Node Name + PatRoom7_Mult10_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom8_Flr_3, !- Zone Name + PatRoom8_Flr_3 Equipment,!- Zone Conditioning Equipment List Name + PatRoom8_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom8_Flr_3 Air Node, !- Zone Air Node Name + PatRoom8_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + NurseStn_Lobby_Flr_3, !- Zone Name + NurseStn_Lobby_Flr_3 Equipment, !- Zone Conditioning Equipment List Name + NurseStn_Lobby_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + NurseStn_Lobby_Flr_3 Air Node, !- Zone Air Node Name + NurseStn_Lobby_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Lab_Flr_3, !- Zone Name + Lab_Flr_3 Equipment, !- Zone Conditioning Equipment List Name + Lab_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Lab_Flr_3 Air Node, !- Zone Air Node Name + Lab_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_SE_Flr_3, !- Zone Name + Corridor_SE_Flr_3 Equipment, !- Zone Conditioning Equipment List Name + Corridor_SE_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_SE_Flr_3 Air Node, !- Zone Air Node Name + Corridor_SE_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_NW_Flr_3, !- Zone Name + Corridor_NW_Flr_3 Equipment, !- Zone Conditioning Equipment List Name + Corridor_NW_Flr_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_NW_Flr_3 Air Node, !- Zone Air Node Name + Corridor_NW_Flr_3 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom1_Mult10_Flr_4, !- Zone Name + PatRoom1_Mult10_Flr_4 Equipment, !- Zone Conditioning Equipment List Name + PatRoom1_Mult10_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom1_Mult10_Flr_4 Air Node, !- Zone Air Node Name + PatRoom1_Mult10_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom2_Flr_4, !- Zone Name + PatRoom2_Flr_4 Equipment,!- Zone Conditioning Equipment List Name + PatRoom2_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom2_Flr_4 Air Node, !- Zone Air Node Name + PatRoom2_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom3_Mult10_Flr_4, !- Zone Name + PatRoom3_Mult10_Flr_4 Equipment, !- Zone Conditioning Equipment List Name + PatRoom3_Mult10_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom3_Mult10_Flr_4 Air Node, !- Zone Air Node Name + PatRoom3_Mult10_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom4_Flr_4, !- Zone Name + PatRoom4_Flr_4 Equipment,!- Zone Conditioning Equipment List Name + PatRoom4_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom4_Flr_4 Air Node, !- Zone Air Node Name + PatRoom4_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom5_Mult10_Flr_4, !- Zone Name + PatRoom5_Mult10_Flr_4 Equipment, !- Zone Conditioning Equipment List Name + PatRoom5_Mult10_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom5_Mult10_Flr_4 Air Node, !- Zone Air Node Name + PatRoom5_Mult10_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Radiology_Flr_4, !- Zone Name + Radiology_Flr_4 Equipment, !- Zone Conditioning Equipment List Name + Radiology_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Radiology_Flr_4 Air Node,!- Zone Air Node Name + Radiology_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom6_Flr_4, !- Zone Name + PatRoom6_Flr_4 Equipment,!- Zone Conditioning Equipment List Name + PatRoom6_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom6_Flr_4 Air Node, !- Zone Air Node Name + PatRoom6_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom7_Mult10_Flr_4, !- Zone Name + PatRoom7_Mult10_Flr_4 Equipment, !- Zone Conditioning Equipment List Name + PatRoom7_Mult10_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom7_Mult10_Flr_4 Air Node, !- Zone Air Node Name + PatRoom7_Mult10_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + PatRoom8_Flr_4, !- Zone Name + PatRoom8_Flr_4 Equipment,!- Zone Conditioning Equipment List Name + PatRoom8_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + PatRoom8_Flr_4 Air Node, !- Zone Air Node Name + PatRoom8_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + NurseStn_Lobby_Flr_4, !- Zone Name + NurseStn_Lobby_Flr_4 Equipment, !- Zone Conditioning Equipment List Name + NurseStn_Lobby_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + NurseStn_Lobby_Flr_4 Air Node, !- Zone Air Node Name + NurseStn_Lobby_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Lab_Flr_4, !- Zone Name + Lab_Flr_4 Equipment, !- Zone Conditioning Equipment List Name + Lab_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Lab_Flr_4 Air Node, !- Zone Air Node Name + Lab_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_SE_Flr_4, !- Zone Name + Corridor_SE_Flr_4 Equipment, !- Zone Conditioning Equipment List Name + Corridor_SE_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_SE_Flr_4 Air Node, !- Zone Air Node Name + Corridor_SE_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_NW_Flr_4, !- Zone Name + Corridor_NW_Flr_4 Equipment, !- Zone Conditioning Equipment List Name + Corridor_NW_Flr_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_NW_Flr_4 Air Node, !- Zone Air Node Name + Corridor_NW_Flr_4 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Dining_Flr_5, !- Zone Name + Dining_Flr_5 Equipment, !- Zone Conditioning Equipment List Name + Dining_Flr_5 Inlet Nodes,!- Zone Air Inlet Node or NodeList Name + Dining_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name + Dining_Flr_5 Air Node, !- Zone Air Node Name + Dining_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + NurseStn_Lobby_Flr_5, !- Zone Name + NurseStn_Lobby_Flr_5 Equipment, !- Zone Conditioning Equipment List Name + NurseStn_Lobby_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + NurseStn_Lobby_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name + NurseStn_Lobby_Flr_5 Air Node, !- Zone Air Node Name + NurseStn_Lobby_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Kitchen_Flr_5, !- Zone Name + Kitchen_Flr_5 Equipment, !- Zone Conditioning Equipment List Name + Kitchen_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + Kitchen_Flr_5 Exhaust Nodes, !- Zone Air Exhaust Node or NodeList Name + Kitchen_Flr_5 Air Node, !- Zone Air Node Name + Kitchen_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Office1_Flr_5, !- Zone Name + Office1_Flr_5 Equipment, !- Zone Conditioning Equipment List Name + Office1_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + Office1_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name + Office1_Flr_5 Air Node, !- Zone Air Node Name + Office1_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Office2_Mult5_Flr_5, !- Zone Name + Office2_Mult5_Flr_5 Equipment, !- Zone Conditioning Equipment List Name + Office2_Mult5_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + Office2_Mult5_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name + Office2_Mult5_Flr_5 Air Node, !- Zone Air Node Name + Office2_Mult5_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Office3_Flr_5, !- Zone Name + Office3_Flr_5 Equipment, !- Zone Conditioning Equipment List Name + Office3_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + Office3_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name + Office3_Flr_5 Air Node, !- Zone Air Node Name + Office3_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Office4_Mult6_Flr_5, !- Zone Name + Office4_Mult6_Flr_5 Equipment, !- Zone Conditioning Equipment List Name + Office4_Mult6_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + Office4_Mult6_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name + Office4_Mult6_Flr_5 Air Node, !- Zone Air Node Name + Office4_Mult6_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_Flr_5, !- Zone Name + Corridor_Flr_5 Equipment,!- Zone Conditioning Equipment List Name + Corridor_Flr_5 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + Corridor_Flr_5 Dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name + Corridor_Flr_5 Air Node, !- Zone Air Node Name + Corridor_Flr_5 Return Air Node; !- Zone Return Air Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: ZONE EQUIPMENT LIST =========== + + ZoneHVAC:EquipmentList, + Basement Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Basement VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + ER_Exam1_Mult4_Flr_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ER_Exam1_Mult4_Flr_1 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + ER_Trauma1_Flr_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ER_Trauma1_Flr_1 VAV Box,!- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + ER_Exam3_Mult4_Flr_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ER_Exam3_Mult4_Flr_1 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + ER_Trauma2_Flr_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ER_Trauma2_Flr_1 VAV Box,!- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + ER_Triage_Mult4_Flr_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ER_Triage_Mult4_Flr_1 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Office1_Mult4_Flr_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Office1_Mult4_Flr_1 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Lobby_Records_Flr_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Lobby_Records_Flr_1 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Corridor_Flr_1 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_Flr_1 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + ER_NurseStn_Lobby_Flr_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ER_NurseStn_Lobby_Flr_1 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + OR1_Flr_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + OR1_Flr_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + OR2_Mult5_Flr_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + OR2_Mult5_Flr_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + OR3_Flr_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + OR3_Flr_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + OR4_Flr_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + OR4_Flr_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + IC_PatRoom1_Mult5_Flr_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + IC_PatRoom1_Mult5_Flr_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + IC_PatRoom2_Flr_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + IC_PatRoom2_Flr_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + IC_PatRoom3_Mult6_Flr_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + IC_PatRoom3_Mult6_Flr_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + ICU_Flr_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ICU_Flr_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + ICU_NurseStn_Lobby_Flr_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ICU_NurseStn_Lobby_Flr_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Corridor_Flr_2 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_Flr_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + OR_NurseStn_Lobby_Flr_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + OR_NurseStn_Lobby_Flr_2 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom1_Mult10_Flr_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom1_Mult10_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom2_Flr_3 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom2_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom3_Mult10_Flr_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom3_Mult10_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom4_Flr_3 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom4_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom5_Mult10_Flr_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom5_Mult10_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PhysTherapy_Flr_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PhysTherapy_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom6_Flr_3 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom6_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom7_Mult10_Flr_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom7_Mult10_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom8_Flr_3 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom8_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + NurseStn_Lobby_Flr_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + NurseStn_Lobby_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Lab_Flr_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Lab_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Corridor_SE_Flr_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_SE_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Corridor_NW_Flr_3 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_NW_Flr_3 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom1_Mult10_Flr_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom1_Mult10_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom2_Flr_4 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom2_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom3_Mult10_Flr_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom3_Mult10_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom4_Flr_4 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom4_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom5_Mult10_Flr_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom5_Mult10_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Radiology_Flr_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Radiology_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom6_Flr_4 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom6_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom7_Mult10_Flr_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom7_Mult10_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + PatRoom8_Flr_4 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + PatRoom8_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + NurseStn_Lobby_Flr_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + NurseStn_Lobby_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Lab_Flr_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Lab_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Corridor_SE_Flr_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_SE_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Corridor_NW_Flr_4 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_NW_Flr_4 VAV Box, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1; !- Zone Equipment 1 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Dining_Flr_5 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Dining_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type + Dining_Flr_5 VAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2; !- Zone Equipment 2 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + NurseStn_Lobby_Flr_5 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + NurseStn_Lobby_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type + NurseStn_Lobby_Flr_5 VAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2; !- Zone Equipment 2 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Kitchen_Flr_5 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Kitchen_Flr_5 Exhaust Fan, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 2 Object Type + Kitchen_Flr_5 CAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2; !- Zone Equipment 2 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Office1_Flr_5 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Office1_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type + Office1_Flr_5 VAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2; !- Zone Equipment 2 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Office2_Mult5_Flr_5 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Office2_Mult5_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type + Office2_Mult5_Flr_5 VAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2; !- Zone Equipment 2 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Office3_Flr_5 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Office3_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type + Office3_Flr_5 VAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2; !- Zone Equipment 2 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Office4_Mult6_Flr_5 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Office4_Mult6_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type + Office4_Mult6_Flr_5 VAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2; !- Zone Equipment 2 Heating or No-Load Sequence + + ZoneHVAC:EquipmentList, + Corridor_Flr_5 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Corridor_Flr_5 Dummy Exhaust Fan, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 2 Object Type + Corridor_Flr_5 VAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2; !- Zone Equipment 2 Heating or No-Load Sequence + +!- =========== ALL OBJECTS IN CLASS: AIR DISTRIBUTION UNIT =========== + + ZoneHVAC:AirDistributionUnit, + Basement VAV Box, !- Name + Basement VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Basement VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ER_Exam1_Mult4_Flr_1 VAV Box, !- Name + ER_Exam1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + ER_Exam1_Mult4_Flr_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ER_Trauma1_Flr_1 VAV Box,!- Name + ER_Trauma1_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + ER_Trauma1_Flr_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ER_Exam3_Mult4_Flr_1 VAV Box, !- Name + ER_Exam3_Mult4_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + ER_Exam3_Mult4_Flr_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ER_Trauma2_Flr_1 VAV Box,!- Name + ER_Trauma2_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + ER_Trauma2_Flr_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ER_Triage_Mult4_Flr_1 VAV Box, !- Name + ER_Triage_Mult4_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + ER_Triage_Mult4_Flr_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Office1_Mult4_Flr_1 VAV Box, !- Name + Office1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Office1_Mult4_Flr_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Lobby_Records_Flr_1 VAV Box, !- Name + Lobby_Records_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Lobby_Records_Flr_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_Flr_1 VAV Box, !- Name + Corridor_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_Flr_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ER_NurseStn_Lobby_Flr_1 VAV Box, !- Name + ER_NurseStn_Lobby_Flr_1 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + ER_NurseStn_Lobby_Flr_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + OR1_Flr_2 VAV Box, !- Name + OR1_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + OR1_Flr_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + OR2_Mult5_Flr_2 VAV Box, !- Name + OR2_Mult5_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + OR2_Mult5_Flr_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + OR3_Flr_2 VAV Box, !- Name + OR3_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + OR3_Flr_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + OR4_Flr_2 VAV Box, !- Name + OR4_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + OR4_Flr_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + IC_PatRoom1_Mult5_Flr_2 VAV Box, !- Name + IC_PatRoom1_Mult5_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + IC_PatRoom1_Mult5_Flr_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + IC_PatRoom2_Flr_2 VAV Box, !- Name + IC_PatRoom2_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + IC_PatRoom2_Flr_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + IC_PatRoom3_Mult6_Flr_2 VAV Box, !- Name + IC_PatRoom3_Mult6_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + IC_PatRoom3_Mult6_Flr_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ICU_Flr_2 VAV Box, !- Name + ICU_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + ICU_Flr_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ICU_NurseStn_Lobby_Flr_2 VAV Box, !- Name + ICU_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + ICU_NurseStn_Lobby_Flr_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_Flr_2 VAV Box, !- Name + Corridor_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_Flr_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + OR_NurseStn_Lobby_Flr_2 VAV Box, !- Name + OR_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + OR_NurseStn_Lobby_Flr_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom1_Mult10_Flr_3 VAV Box, !- Name + PatRoom1_Mult10_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom1_Mult10_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom2_Flr_3 VAV Box, !- Name + PatRoom2_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom2_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom3_Mult10_Flr_3 VAV Box, !- Name + PatRoom3_Mult10_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom3_Mult10_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom4_Flr_3 VAV Box, !- Name + PatRoom4_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom4_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom5_Mult10_Flr_3 VAV Box, !- Name + PatRoom5_Mult10_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom5_Mult10_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PhysTherapy_Flr_3 VAV Box, !- Name + PhysTherapy_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PhysTherapy_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom6_Flr_3 VAV Box, !- Name + PatRoom6_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom6_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom7_Mult10_Flr_3 VAV Box, !- Name + PatRoom7_Mult10_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom7_Mult10_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom8_Flr_3 VAV Box, !- Name + PatRoom8_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom8_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + NurseStn_Lobby_Flr_3 VAV Box, !- Name + NurseStn_Lobby_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + NurseStn_Lobby_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Lab_Flr_3 VAV Box, !- Name + Lab_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Lab_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_SE_Flr_3 VAV Box, !- Name + Corridor_SE_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_SE_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_NW_Flr_3 VAV Box, !- Name + Corridor_NW_Flr_3 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_NW_Flr_3 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom1_Mult10_Flr_4 VAV Box, !- Name + PatRoom1_Mult10_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom1_Mult10_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom2_Flr_4 VAV Box, !- Name + PatRoom2_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom2_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom3_Mult10_Flr_4 VAV Box, !- Name + PatRoom3_Mult10_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom3_Mult10_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom4_Flr_4 VAV Box, !- Name + PatRoom4_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom4_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom5_Mult10_Flr_4 VAV Box, !- Name + PatRoom5_Mult10_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom5_Mult10_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Radiology_Flr_4 VAV Box, !- Name + Radiology_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Radiology_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom6_Flr_4 VAV Box, !- Name + PatRoom6_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom6_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom7_Mult10_Flr_4 VAV Box, !- Name + PatRoom7_Mult10_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom7_Mult10_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + PatRoom8_Flr_4 VAV Box, !- Name + PatRoom8_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + PatRoom8_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + NurseStn_Lobby_Flr_4 VAV Box, !- Name + NurseStn_Lobby_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + NurseStn_Lobby_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Lab_Flr_4 VAV Box, !- Name + Lab_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Lab_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_SE_Flr_4 VAV Box, !- Name + Corridor_SE_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_SE_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_NW_Flr_4 VAV Box, !- Name + Corridor_NW_Flr_4 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_NW_Flr_4 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Dining_Flr_5 VAV Box, !- Name + Dining_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Dining_Flr_5 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + NurseStn_Lobby_Flr_5 VAV Box, !- Name + NurseStn_Lobby_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + NurseStn_Lobby_Flr_5 VAV Box Component; !- Air Terminal Name + + + + ZoneHVAC:AirDistributionUnit, + Office1_Flr_5 VAV Box, !- Name + Office1_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Office1_Flr_5 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Office2_Mult5_Flr_5 VAV Box, !- Name + Office2_Mult5_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Office2_Mult5_Flr_5 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Office3_Flr_5 VAV Box, !- Name + Office3_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Office3_Flr_5 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Office4_Mult6_Flr_5 VAV Box, !- Name + Office4_Mult6_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Office4_Mult6_Flr_5 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_Flr_5 VAV Box, !- Name + Corridor_Flr_5 VAV Box Outlet Node, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_Flr_5 VAV Box Component; !- Air Terminal Name + +!- =========== ALL OBJECTS IN CLASS: COMPRESSOR RACK:REFRIGERATED CASE =========== + + Refrigeration:CompressorRack, + RACK1, !- Name + OUTDOORS, !- Heat Rejection Location + 2.3, !- Design Compressor Rack COP {W/W} + RACK1_RackCOPfTCurve, !- Compressor Rack COP Function of Temperature Curve Name + 1000.0000, !- Design Condenser Fan Power {W} + RACK1_RackCondFanCurve2, !- Condenser Fan Power Function of Temperature Curve Name + AirCooled, !- Condenser Type + , !- Water-Cooled Condenser Inlet Node Name + , !- Water-Cooled Condenser Outlet Node Name + , !- Water-Cooled Loop Flow Type + , !- Water-Cooled Condenser Outlet Temperature Schedule Name + , !- Water-Cooled Condenser Design Flow Rate {m3/s} + , !- Water-Cooled Condenser Maximum Flow Rate {m3/s} + , !- Water-Cooled Condenser Maximum Water Outlet Temperature {C} + , !- Water-Cooled Condenser Minimum Water Inlet Temperature {C} + , !- Evaporative Condenser Availability Schedule Name + , !- Evaporative Condenser Effectiveness {dimensionless} + , !- Evaporative Condenser Air Flow Rate {m3/s} + , !- Basin Heater Capacity {W/K} + , !- Basin Heater Setpoint Temperature {C} + , !- Design Evaporative Condenser Water Pump Power {W} + , !- Evaporative Water Supply Tank Name + RACK1_condenserInlet, !- Condenser Air Inlet Node Name + LowTempRefrigeration, !- End-Use Subcategory + RACK1CaseList; !- Refrigeration Case Name or WalkIn Name or CaseAndWalkInList Name + + Refrigeration:CaseAndWalkInList, + RACK1CaseList, !- Name + Kitchen_Flr_5_Case:1_WALKINFREEZER; !- Case or WalkIn 1 Name + + Refrigeration:CompressorRack, + RACK2, !- Name + OUTDOORS, !- Heat Rejection Location + 6.93, !- Design Compressor Rack COP {W/W} + RACK2_RackCOPfTCurve, !- Compressor Rack COP Function of Temperature Curve Name + 1000.0000, !- Design Condenser Fan Power {W} + , !- Condenser Fan Power Function of Temperature Curve Name + AirCooled, !- Condenser Type + , !- Water-Cooled Condenser Inlet Node Name + , !- Water-Cooled Condenser Outlet Node Name + , !- Water-Cooled Loop Flow Type + , !- Water-Cooled Condenser Outlet Temperature Schedule Name + , !- Water-Cooled Condenser Design Flow Rate {m3/s} + , !- Water-Cooled Condenser Maximum Flow Rate {m3/s} + , !- Water-Cooled Condenser Maximum Water Outlet Temperature {C} + , !- Water-Cooled Condenser Minimum Water Inlet Temperature {C} + , !- Evaporative Condenser Availability Schedule Name + , !- Evaporative Condenser Effectiveness {dimensionless} + , !- Evaporative Condenser Air Flow Rate {m3/s} + , !- Basin Heater Capacity {W/K} + , !- Basin Heater Setpoint Temperature {C} + , !- Design Evaporative Condenser Water Pump Power {W} + , !- Evaporative Water Supply Tank Name + RACK2_condenserInlet, !- Condenser Air Inlet Node Name + MedTempRefrigeration, !- End-Use Subcategory + RACK2CaseList; !- Refrigeration Case Name or WalkIn Name or CaseAndWalkInList Name + + Refrigeration:CaseAndWalkInList, + RACK2CaseList, !- Name + Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASE; !- Case or WalkIn 1 Name + +!- =========== ALL OBJECTS IN CLASS: CASE:REFRIGERATED =========== + + Refrigeration:Case, + Kitchen_Flr_5_Case:1_WALKINFREEZER, !- Name + ALWAYS_ON, !- Availability Schedule Name + Kitchen_Flr_5, !- Zone Name + 23.8800, !- Rated Ambient Temperature {C} + 55.0000, !- Rated Ambient Relative Humidity {percent} + 734.0000, !- Rated Total Cooling Capacity per Unit Length {W/m} + 0.1000, !- Rated Latent Heat Ratio + 0.4000, !- Rated Runtime Fraction + 10.9800, !- Case Length {m} + -23.0000, !- Case Operating Temperature {C} + CaseTemperatureMethod, !- Latent Case Credit Curve Type + Kitchen_Flr_5_Case:1_WALKINFREEZERSingleShelfHorizontal_LatentEnergyMult, !- Latent Case Credit Curve Name + 19.71428571, !- Standard Case Fan Power per Unit Length {W/m} + 19.71428571, !- Operating Case Fan Power per Unit Length {W/m} + 33.0000, !- Standard Case Lighting Power per Unit Length {W/m} + , !- Installed Case Lighting Power per Unit Length {W/m} + walkin_occ_lght_sch, !- Case Lighting Schedule Name + 1.0000, !- Fraction of Lighting Energy to Case + 0.0000, !- Case Anti-Sweat Heater Power per Unit Length {W/m} + 0.0000, !- Minimum Anti-Sweat Heater Power per Unit Length {W/m} + NONE, !- Anti-Sweat Heater Control Type + 0.0, !- Humidity at Zero Anti-Sweat Heater Energy {percent} + 0.0, !- Case Height {m} + 0.0000, !- Fraction of Anti-Sweat Heater Energy to Case + 364.0000, !- Case Defrost Power per Unit Length {W/m} + ELECTRIC, !- Case Defrost Type + Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseDefrost2aDaySched, !- Case Defrost Schedule Name + Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseDripDown2aDaySched, !- Case Defrost Drip-Down Schedule Name + , !- Defrost Energy Correction Curve Type + , !- Defrost Energy Correction Curve Name + 0.0000, !- Under Case HVAC Return Air Fraction + Kitchen_Flr_5_Case:1_WALKINFREEZER_WalkInStockingSched, !- Refrigerated Case Restocking Schedule Name + Kitchen_Flr_5_Case:1_WALKINFREEZER_CaseCreditReduxSched; !- Case Credit Fraction Schedule Name + + Refrigeration:Case, + Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASE, !- Name + ALWAYS_ON, !- Availability Schedule Name + Kitchen_Flr_5, !- Zone Name + 23.8800, !- Rated Ambient Temperature {C} + 55.0000, !- Rated Ambient Relative Humidity {percent} + 886.5000, !- Rated Total Cooling Capacity per Unit Length {W/m} + 0.0800, !- Rated Latent Heat Ratio + 0.8500, !- Rated Runtime Fraction + 8.9300, !- Case Length {m} + 2.0000, !- Case Operating Temperature {C} + CaseTemperatureMethod, !- Latent Case Credit Curve Type + Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASEMultiShelfVertical_LatentEnergyMult, !- Latent Case Credit Curve Name + 19.14285714, !- Standard Case Fan Power per Unit Length {W/m} + 19.14285714, !- Operating Case Fan Power per Unit Length {W/m} + 40.0000, !- Standard Case Lighting Power per Unit Length {W/m} + , !- Installed Case Lighting Power per Unit Length {W/m} + walkin_occ_lght_sch, !- Case Lighting Schedule Name + 1.0000, !- Fraction of Lighting Energy to Case + 0.0000, !- Case Anti-Sweat Heater Power per Unit Length {W/m} + 0.0000, !- Minimum Anti-Sweat Heater Power per Unit Length {W/m} + NONE, !- Anti-Sweat Heater Control Type + 0.0, !- Humidity at Zero Anti-Sweat Heater Energy {percent} + 0.0, !- Case Height {m} + 0.2000, !- Fraction of Anti-Sweat Heater Energy to Case + 0.0000, !- Case Defrost Power per Unit Length {W/m} + NONE, !- Case Defrost Type + , !- Case Defrost Schedule Name + , !- Case Defrost Drip-Down Schedule Name + , !- Defrost Energy Correction Curve Type + , !- Defrost Energy Correction Curve Name + 0.0500, !- Under Case HVAC Return Air Fraction + Kitchen_Flr_5_Case:2_SELFCONTAINEDDISPLAYCASE_CaseStockingSched; !- Refrigerated Case Restocking Schedule Name + +!- =========== ALL OBJECTS IN CLASS: SINGLE DUCT:UNCONTROLLED =========== + + AirTerminal:SingleDuct:Uncontrolled, + Kitchen_Flr_5 CAV Box, !- Name + ALWAYS_ON, !- Availability Schedule Name + Kitchen_Flr_5 Inlet Node,!- Zone Supply Air Node Name + AUTOSIZE; !- Maximum Air Flow Rate {m3/s} + +!- =========== ALL OBJECTS IN CLASS: SINGLE DUCT:VAV:REHEAT =========== + + AirTerminal:SingleDuct:VAV:Reheat, + ER_Exam1_Mult4_Flr_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + ER_Exam1_Mult4_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + ER_Exam1_Mult4_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1.0000, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + ER_Exam1_Mult4_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + ER_Exam1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + ER_Trauma1_Flr_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + ER_Trauma1_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + ER_Trauma1_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1.0000, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + ER_Trauma1_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + ER_Trauma1_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + ER_Exam3_Mult4_Flr_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + ER_Exam3_Mult4_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + ER_Exam3_Mult4_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1.0000, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + ER_Exam3_Mult4_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + ER_Exam3_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + ER_Trauma2_Flr_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + ER_Trauma2_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + ER_Trauma2_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1.0000, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + ER_Trauma2_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + ER_Trauma2_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + ER_Triage_Mult4_Flr_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + ER_Triage_Mult4_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + ER_Triage_Mult4_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1.0000, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + ER_Triage_Mult4_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + ER_Triage_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + OR1_Flr_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + OR1_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + OR1_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Scheduled, !- Zone Minimum Air Flow Input Method + , !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + OR_MinSA_Sched, !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + OR1_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + OR1_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + OR2_Mult5_Flr_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + OR2_Mult5_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + OR2_Mult5_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Scheduled, !- Zone Minimum Air Flow Input Method + , !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + OR_MinSA_Sched, !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + OR2_Mult5_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + OR2_Mult5_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + OR3_Flr_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + OR3_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + OR3_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Scheduled, !- Zone Minimum Air Flow Input Method + , !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + OR_MinSA_Sched, !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + OR3_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + OR3_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + OR4_Flr_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + OR4_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + OR4_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Scheduled, !- Zone Minimum Air Flow Input Method + , !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + OR_MinSA_Sched, !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + OR4_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + OR4_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + IC_PatRoom1_Mult5_Flr_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + IC_PatRoom1_Mult5_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + IC_PatRoom1_Mult5_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1.0000, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + IC_PatRoom1_Mult5_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + IC_PatRoom2_Flr_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + IC_PatRoom2_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + IC_PatRoom2_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1.0000, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + IC_PatRoom2_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + IC_PatRoom2_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + IC_PatRoom3_Mult6_Flr_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + IC_PatRoom3_Mult6_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + IC_PatRoom3_Mult6_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1.0000, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + IC_PatRoom3_Mult6_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + ICU_Flr_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + ICU_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + ICU_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1.0000, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + ICU_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + ICU_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom1_Mult10_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom1_Mult10_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom1_Mult10_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom1_Mult10_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom1_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom2_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom2_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom2_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom2_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom2_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom3_Mult10_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom3_Mult10_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom3_Mult10_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom3_Mult10_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom3_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom4_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom4_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom4_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom4_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom4_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom5_Mult10_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom5_Mult10_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom5_Mult10_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom5_Mult10_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom5_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom6_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom6_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom6_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom6_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom6_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom7_Mult10_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom7_Mult10_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom7_Mult10_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom7_Mult10_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom7_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom8_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom8_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom8_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom8_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom8_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Lab_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Lab_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Lab_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1.0000, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Lab_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Lab_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom1_Mult10_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom1_Mult10_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom1_Mult10_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom1_Mult10_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom1_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom2_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom2_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom2_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom2_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom2_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom3_Mult10_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom3_Mult10_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom3_Mult10_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom3_Mult10_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom3_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom4_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom4_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom4_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom4_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom4_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom5_Mult10_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom5_Mult10_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom5_Mult10_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom5_Mult10_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom5_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom6_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom6_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom6_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom6_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom6_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom7_Mult10_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom7_Mult10_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom7_Mult10_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom7_Mult10_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom7_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + + AirTerminal:SingleDuct:VAV:Reheat, + PatRoom8_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PatRoom8_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + PatRoom8_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.5, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PatRoom8_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PatRoom8_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Lab_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Lab_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Lab_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1.0000, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Lab_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Lab_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Basement VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Basement VAV Box Damper Node, !- Damper Air Outlet Node Name + Basement VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.448, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Basement VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Basement VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Office1_Mult4_Flr_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Office1_Mult4_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Office1_Mult4_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.183, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Office1_Mult4_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Office1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Lobby_Records_Flr_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Lobby_Records_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Lobby_Records_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.508, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Lobby_Records_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Lobby_Records_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_Flr_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.577, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + ER_NurseStn_Lobby_Flr_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + ER_NurseStn_Lobby_Flr_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + ER_NurseStn_Lobby_Flr_1 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.242, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + ER_NurseStn_Lobby_Flr_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + ER_NurseStn_Lobby_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + ICU_NurseStn_Lobby_Flr_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + ICU_NurseStn_Lobby_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + ICU_NurseStn_Lobby_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.192, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + ICU_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_Flr_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.603, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + OR_NurseStn_Lobby_Flr_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + OR_NurseStn_Lobby_Flr_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + OR_NurseStn_Lobby_Flr_2 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.25, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + OR_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + OR_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + PhysTherapy_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + PhysTherapy_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + PhysTherapy_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.266, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + PhysTherapy_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + PhysTherapy_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + NurseStn_Lobby_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + NurseStn_Lobby_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + NurseStn_Lobby_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.298, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + NurseStn_Lobby_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + NurseStn_Lobby_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_SE_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_SE_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_SE_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.559, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_SE_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_SE_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_NW_Flr_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_NW_Flr_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_NW_Flr_3 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.558, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_NW_Flr_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_NW_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Radiology_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Radiology_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Radiology_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.067, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Radiology_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Radiology_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + NurseStn_Lobby_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + NurseStn_Lobby_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + NurseStn_Lobby_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.277, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + NurseStn_Lobby_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + NurseStn_Lobby_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_SE_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_SE_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_SE_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.495, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_SE_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_SE_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_NW_Flr_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_NW_Flr_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_NW_Flr_4 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.498, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_NW_Flr_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_NW_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Dining_Flr_5 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Dining_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name + Dining_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.706, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Dining_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Dining_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + NurseStn_Lobby_Flr_5 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + NurseStn_Lobby_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name + NurseStn_Lobby_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.219, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + NurseStn_Lobby_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + NurseStn_Lobby_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Office1_Flr_5 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Office1_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name + Office1_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.211, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Office1_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Office1_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Office2_Mult5_Flr_5 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Office2_Mult5_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name + Office2_Mult5_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.288, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Office2_Mult5_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Office2_Mult5_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Office3_Flr_5 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Office3_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name + Office3_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.185, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Office3_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Office3_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Office4_Mult6_Flr_5 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Office4_Mult6_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name + Office4_Mult6_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.169, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Office4_Mult6_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Office4_Mult6_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_Flr_5 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_Flr_5 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_Flr_5 VAV Box Inlet Node, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.321, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_Flr_5 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + +!- =========== ALL OBJECTS IN CLASS: ZONE CONTROL:THERMOSTATIC =========== + + ZoneControl:Thermostat, + Basement Thermostat, !- Name + Basement, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Basement DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + ER_Exam1_Mult4_Flr_1 Thermostat, !- Name + ER_Exam1_Mult4_Flr_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + ER_Exam1_Mult4_Flr_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + ER_Trauma1_Flr_1 Thermostat, !- Name + ER_Trauma1_Flr_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + ER_Trauma1_Flr_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + ER_Exam3_Mult4_Flr_1 Thermostat, !- Name + ER_Exam3_Mult4_Flr_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + ER_Exam3_Mult4_Flr_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + ER_Trauma2_Flr_1 Thermostat, !- Name + ER_Trauma2_Flr_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + ER_Trauma2_Flr_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + ER_Triage_Mult4_Flr_1 Thermostat, !- Name + ER_Triage_Mult4_Flr_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + ER_Triage_Mult4_Flr_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Office1_Mult4_Flr_1 Thermostat, !- Name + Office1_Mult4_Flr_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Office1_Mult4_Flr_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Lobby_Records_Flr_1 Thermostat, !- Name + Lobby_Records_Flr_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Lobby_Records_Flr_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_Flr_1 Thermostat, !- Name + Corridor_Flr_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_Flr_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + ER_NurseStn_Lobby_Flr_1 Thermostat, !- Name + ER_NurseStn_Lobby_Flr_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + ER_NurseStn_Lobby_Flr_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + OR1_Flr_2 Thermostat, !- Name + OR1_Flr_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + OR1_Flr_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + OR2_Mult5_Flr_2 Thermostat, !- Name + OR2_Mult5_Flr_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + OR2_Mult5_Flr_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + OR3_Flr_2 Thermostat, !- Name + OR3_Flr_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + OR3_Flr_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + OR4_Flr_2 Thermostat, !- Name + OR4_Flr_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + OR4_Flr_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + IC_PatRoom1_Mult5_Flr_2 Thermostat, !- Name + IC_PatRoom1_Mult5_Flr_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + IC_PatRoom1_Mult5_Flr_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + IC_PatRoom2_Flr_2 Thermostat, !- Name + IC_PatRoom2_Flr_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + IC_PatRoom2_Flr_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + IC_PatRoom3_Mult6_Flr_2 Thermostat, !- Name + IC_PatRoom3_Mult6_Flr_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + IC_PatRoom3_Mult6_Flr_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + ICU_Flr_2 Thermostat, !- Name + ICU_Flr_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + ICU_Flr_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + ICU_NurseStn_Lobby_Flr_2 Thermostat, !- Name + ICU_NurseStn_Lobby_Flr_2,!- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + ICU_NurseStn_Lobby_Flr_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_Flr_2 Thermostat, !- Name + Corridor_Flr_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_Flr_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + OR_NurseStn_Lobby_Flr_2 Thermostat, !- Name + OR_NurseStn_Lobby_Flr_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + OR_NurseStn_Lobby_Flr_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom1_Mult10_Flr_3 Thermostat, !- Name + PatRoom1_Mult10_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom1_Mult10_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom2_Flr_3 Thermostat, !- Name + PatRoom2_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom2_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom3_Mult10_Flr_3 Thermostat, !- Name + PatRoom3_Mult10_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom3_Mult10_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom4_Flr_3 Thermostat, !- Name + PatRoom4_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom4_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom5_Mult10_Flr_3 Thermostat, !- Name + PatRoom5_Mult10_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom5_Mult10_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PhysTherapy_Flr_3 Thermostat, !- Name + PhysTherapy_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PhysTherapy_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom6_Flr_3 Thermostat, !- Name + PatRoom6_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom6_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom7_Mult10_Flr_3 Thermostat, !- Name + PatRoom7_Mult10_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom7_Mult10_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom8_Flr_3 Thermostat, !- Name + PatRoom8_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom8_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + NurseStn_Lobby_Flr_3 Thermostat, !- Name + NurseStn_Lobby_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + NurseStn_Lobby_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Lab_Flr_3 Thermostat, !- Name + Lab_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Lab_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_SE_Flr_3 Thermostat, !- Name + Corridor_SE_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_SE_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_NW_Flr_3 Thermostat, !- Name + Corridor_NW_Flr_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_NW_Flr_3 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom1_Mult10_Flr_4 Thermostat, !- Name + PatRoom1_Mult10_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom1_Mult10_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom2_Flr_4 Thermostat, !- Name + PatRoom2_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom2_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom3_Mult10_Flr_4 Thermostat, !- Name + PatRoom3_Mult10_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom3_Mult10_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom4_Flr_4 Thermostat, !- Name + PatRoom4_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom4_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom5_Mult10_Flr_4 Thermostat, !- Name + PatRoom5_Mult10_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom5_Mult10_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Radiology_Flr_4 Thermostat, !- Name + Radiology_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Radiology_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom6_Flr_4 Thermostat, !- Name + PatRoom6_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom6_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom7_Mult10_Flr_4 Thermostat, !- Name + PatRoom7_Mult10_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom7_Mult10_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + PatRoom8_Flr_4 Thermostat, !- Name + PatRoom8_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + PatRoom8_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + NurseStn_Lobby_Flr_4 Thermostat, !- Name + NurseStn_Lobby_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + NurseStn_Lobby_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Lab_Flr_4 Thermostat, !- Name + Lab_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Lab_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_SE_Flr_4 Thermostat, !- Name + Corridor_SE_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_SE_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_NW_Flr_4 Thermostat, !- Name + Corridor_NW_Flr_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_NW_Flr_4 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Dining_Flr_5 Thermostat, !- Name + Dining_Flr_5, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Dining_Flr_5 DualSPSched;!- Control 1 Name + + ZoneControl:Thermostat, + NurseStn_Lobby_Flr_5 Thermostat, !- Name + NurseStn_Lobby_Flr_5, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + NurseStn_Lobby_Flr_5 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Kitchen_Flr_5 Thermostat,!- Name + Kitchen_Flr_5, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Kitchen_Flr_5 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Office1_Flr_5 Thermostat,!- Name + Office1_Flr_5, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Office1_Flr_5 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Office2_Mult5_Flr_5 Thermostat, !- Name + Office2_Mult5_Flr_5, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Office2_Mult5_Flr_5 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Office3_Flr_5 Thermostat,!- Name + Office3_Flr_5, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Office3_Flr_5 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Office4_Mult6_Flr_5 Thermostat, !- Name + Office4_Mult6_Flr_5, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Office4_Mult6_Flr_5 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_Flr_5 Thermostat, !- Name + Corridor_Flr_5, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_Flr_5 DualSPSched; !- Control 1 Name + +!- =========== ALL OBJECTS IN CLASS: DUAL SETPOINT WITH DEADBAND =========== + + ThermostatSetpoint:DualSetpoint, + Basement DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + ER_Exam1_Mult4_Flr_1 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + ER_Trauma1_Flr_1 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + ER_Exam3_Mult4_Flr_1 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + ER_Trauma2_Flr_1 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + ER_Triage_Mult4_Flr_1 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Office1_Mult4_Flr_1 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Lobby_Records_Flr_1 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_Flr_1 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + ER_NurseStn_Lobby_Flr_1 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + OR1_Flr_2 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + OR2_Mult5_Flr_2 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + OR3_Flr_2 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + OR4_Flr_2 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + IC_PatRoom1_Mult5_Flr_2 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + IC_PatRoom2_Flr_2 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + IC_PatRoom3_Mult6_Flr_2 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + ICU_Flr_2 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + ICU_NurseStn_Lobby_Flr_2 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_Flr_2 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + OR_NurseStn_Lobby_Flr_2 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom1_Mult10_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom2_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom3_Mult10_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom4_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom5_Mult10_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PhysTherapy_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom6_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom7_Mult10_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom8_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + NurseStn_Lobby_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Lab_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_SE_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_NW_Flr_3 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom1_Mult10_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom2_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom3_Mult10_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom4_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom5_Mult10_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Radiology_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom6_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom7_Mult10_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + PatRoom8_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + NurseStn_Lobby_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Lab_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_SE_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_NW_Flr_4 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Dining_Flr_5 DualSPSched,!- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + NurseStn_Lobby_Flr_5 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Kitchen_Flr_5 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Office1_Flr_5 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Office2_Mult5_Flr_5 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Office3_Flr_5 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Office4_Mult6_Flr_5 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_Flr_5 DualSPSched, !- Name + HtgSetP_Sch, !- Heating Setpoint Temperature Schedule Name + ClgSetP_Sch; !- Cooling Setpoint Temperature Schedule Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:SUPPLYPATH =========== + + AirLoopHVAC:SupplyPath, + VAV_1, !- Name + VAV_1 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_1 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + VAV_ER, !- Name + VAV_ER Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_ER Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + VAV_OR, !- Name + VAV_OR Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_OR Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + VAV_ICU, !- Name + VAV_ICU Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_ICU Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + VAV_PATRMS, !- Name + VAV_PATRMS Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_PATRMS Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + VAV_2, !- Name + VAV_2 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_2 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + VAV_LABS, !- Name + VAV_LABS Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_LABS Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + CAV_KITCHEN, !- Name + CAV_KITCHEN Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + CAV_KITCHEN Supply Air Splitter; !- Component 1 Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:RETURNPATH =========== + + AirLoopHVAC:ReturnPath, + VAV_1 Return Air Path, !- Name + VAV_1 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_1 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + VAV_ER Return Air Path, !- Name + VAV_ER Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_ER Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + VAV_OR Return Air Path, !- Name + VAV_OR Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_OR Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + VAV_ICU Return Air Path, !- Name + VAV_ICU Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_ICU Return Air Mixer;!- Component 1 Name + + AirLoopHVAC:ReturnPath, + VAV_PATRMS Return Air Path, !- Name + VAV_PATRMS Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_PATRMS Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + VAV_2 Return Air Path, !- Name + VAV_2 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_2 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + VAV_LABS Return Air Path,!- Name + VAV_LABS Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_LABS Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + CAV_KITCHEN Return Air Path, !- Name + CAV_KITCHEN Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + CAV_KITCHEN Return Air Mixer; !- Component 1 Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONESPLITTER =========== + + AirLoopHVAC:ZoneSplitter, + VAV_1 Supply Air Splitter, !- Name + VAV_1 Zone Equipment Inlet Node, !- Inlet Node Name + Basement VAV Box Inlet Node, !- Outlet 1 Node Name + Office1_Mult4_Flr_1 VAV Box Inlet Node, !- Outlet 2 Node Name + Lobby_Records_Flr_1 VAV Box Inlet Node, !- Outlet 3 Node Name + Corridor_Flr_1 VAV Box Inlet Node, !- Outlet 4 Node Name + ER_NurseStn_Lobby_Flr_1 VAV Box Inlet Node, !- Outlet 5 Node Name + ICU_NurseStn_Lobby_Flr_2 VAV Box Inlet Node, !- Outlet 6 Node Name + Corridor_Flr_2 VAV Box Inlet Node, !- Outlet 7 Node Name + OR_NurseStn_Lobby_Flr_2 VAV Box Inlet Node; !- Outlet 8 Node Name + + AirLoopHVAC:ZoneSplitter, + VAV_ER Supply Air Splitter, !- Name + VAV_ER Zone Equipment Inlet Node, !- Inlet Node Name + ER_Exam1_Mult4_Flr_1 VAV Box Inlet Node, !- Outlet 1 Node Name + ER_Trauma1_Flr_1 VAV Box Inlet Node, !- Outlet 2 Node Name + ER_Exam3_Mult4_Flr_1 VAV Box Inlet Node, !- Outlet 3 Node Name + ER_Trauma2_Flr_1 VAV Box Inlet Node, !- Outlet 4 Node Name + ER_Triage_Mult4_Flr_1 VAV Box Inlet Node; !- Outlet 5 Node Name + + AirLoopHVAC:ZoneSplitter, + VAV_OR Supply Air Splitter, !- Name + VAV_OR Zone Equipment Inlet Node, !- Inlet Node Name + OR1_Flr_2 VAV Box Inlet Node, !- Outlet 1 Node Name + OR2_Mult5_Flr_2 VAV Box Inlet Node, !- Outlet 2 Node Name + OR3_Flr_2 VAV Box Inlet Node, !- Outlet 3 Node Name + OR4_Flr_2 VAV Box Inlet Node; !- Outlet 4 Node Name + + AirLoopHVAC:ZoneSplitter, + VAV_ICU Supply Air Splitter, !- Name + VAV_ICU Zone Equipment Inlet Node, !- Inlet Node Name + IC_PatRoom1_Mult5_Flr_2 VAV Box Inlet Node, !- Outlet 1 Node Name + IC_PatRoom2_Flr_2 VAV Box Inlet Node, !- Outlet 2 Node Name + IC_PatRoom3_Mult6_Flr_2 VAV Box Inlet Node, !- Outlet 3 Node Name + ICU_Flr_2 VAV Box Inlet Node; !- Outlet 4 Node Name + + AirLoopHVAC:ZoneSplitter, + VAV_PATRMS Supply Air Splitter, !- Name + VAV_PATRMS Zone Equipment Inlet Node, !- Inlet Node Name + PatRoom1_Mult10_Flr_3 VAV Box Inlet Node, !- Outlet 1 Node Name + PatRoom2_Flr_3 VAV Box Inlet Node, !- Outlet 2 Node Name + PatRoom3_Mult10_Flr_3 VAV Box Inlet Node, !- Outlet 3 Node Name + PatRoom4_Flr_3 VAV Box Inlet Node, !- Outlet 4 Node Name + PatRoom5_Mult10_Flr_3 VAV Box Inlet Node, !- Outlet 5 Node Name + PatRoom6_Flr_3 VAV Box Inlet Node, !- Outlet 6 Node Name + PatRoom7_Mult10_Flr_3 VAV Box Inlet Node, !- Outlet 7 Node Name + PatRoom8_Flr_3 VAV Box Inlet Node, !- Outlet 8 Node Name + PatRoom1_Mult10_Flr_4 VAV Box Inlet Node, !- Outlet 9 Node Name + PatRoom2_Flr_4 VAV Box Inlet Node, !- Outlet 10 Node Name + PatRoom3_Mult10_Flr_4 VAV Box Inlet Node, !- Outlet 11 Node Name + PatRoom4_Flr_4 VAV Box Inlet Node, !- Outlet 12 Node Name + PatRoom5_Mult10_Flr_4 VAV Box Inlet Node, !- Outlet 13 Node Name + PatRoom6_Flr_4 VAV Box Inlet Node, !- Outlet 14 Node Name + PatRoom7_Mult10_Flr_4 VAV Box Inlet Node, !- Outlet 15 Node Name + PatRoom8_Flr_4 VAV Box Inlet Node; !- Outlet 16 Node Name + + AirLoopHVAC:ZoneSplitter, + VAV_2 Supply Air Splitter, !- Name + VAV_2 Zone Equipment Inlet Node, !- Inlet Node Name + PhysTherapy_Flr_3 VAV Box Inlet Node, !- Outlet 1 Node Name + NurseStn_Lobby_Flr_3 VAV Box Inlet Node, !- Outlet 2 Node Name + Corridor_SE_Flr_3 VAV Box Inlet Node, !- Outlet 3 Node Name + Corridor_NW_Flr_3 VAV Box Inlet Node, !- Outlet 4 Node Name + Radiology_Flr_4 VAV Box Inlet Node, !- Outlet 5 Node Name + NurseStn_Lobby_Flr_4 VAV Box Inlet Node, !- Outlet 6 Node Name + Corridor_SE_Flr_4 VAV Box Inlet Node, !- Outlet 7 Node Name + Corridor_NW_Flr_4 VAV Box Inlet Node, !- Outlet 8 Node Name + Dining_Flr_5 VAV Box Inlet Node, !- Outlet 9 Node Name + NurseStn_Lobby_Flr_5 VAV Box Inlet Node, !- Outlet 10 Node Name + Office1_Flr_5 VAV Box Inlet Node, !- Outlet 11 Node Name + Office2_Mult5_Flr_5 VAV Box Inlet Node, !- Outlet 12 Node Name + Office3_Flr_5 VAV Box Inlet Node, !- Outlet 13 Node Name + Office4_Mult6_Flr_5 VAV Box Inlet Node, !- Outlet 14 Node Name + Corridor_Flr_5 VAV Box Inlet Node; !- Outlet 15 Node Name + + AirLoopHVAC:ZoneSplitter, + VAV_LABS Supply Air Splitter, !- Name + VAV_LABS Zone Equipment Inlet Node, !- Inlet Node Name + Lab_Flr_3 VAV Box Inlet Node, !- Outlet 1 Node Name + Lab_Flr_4 VAV Box Inlet Node; !- Outlet 2 Node Name + + AirLoopHVAC:ZoneSplitter, + CAV_KITCHEN Supply Air Splitter, !- Name + CAV_KITCHEN Zone Equipment Inlet Node, !- Inlet Node Name + Kitchen_Flr_5 Inlet Nodes; !- Outlet 1 Node Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONEMIXER =========== + + AirLoopHVAC:ZoneMixer, + VAV_1 Return Air Mixer, !- Name + VAV_1 Zone Equipment Outlet Node, !- Outlet Node Name + Basement Return Air Node,!- Inlet 1 Node Name + Office1_Mult4_Flr_1 Return Air Node, !- Inlet 2 Node Name + Lobby_Records_Flr_1 Return Air Node, !- Inlet 3 Node Name + Corridor_Flr_1 Return Air Node, !- Inlet 4 Node Name + ER_NurseStn_Lobby_Flr_1 Return Air Node, !- Inlet 5 Node Name + ICU_NurseStn_Lobby_Flr_2 Return Air Node, !- Inlet 6 Node Name + Corridor_Flr_2 Return Air Node, !- Inlet 7 Node Name + OR_NurseStn_Lobby_Flr_2 Return Air Node; !- Inlet 8 Node Name + + AirLoopHVAC:ZoneMixer, + VAV_ER Return Air Mixer, !- Name + VAV_ER Zone Equipment Outlet Node, !- Outlet Node Name + ER_Exam1_Mult4_Flr_1 Return Air Node, !- Inlet 1 Node Name + ER_Trauma1_Flr_1 Return Air Node, !- Inlet 2 Node Name + ER_Exam3_Mult4_Flr_1 Return Air Node, !- Inlet 3 Node Name + ER_Trauma2_Flr_1 Return Air Node, !- Inlet 4 Node Name + ER_Triage_Mult4_Flr_1 Return Air Node; !- Inlet 5 Node Name + + AirLoopHVAC:ZoneMixer, + VAV_OR Return Air Mixer, !- Name + VAV_OR Zone Equipment Outlet Node, !- Outlet Node Name + OR1_Flr_2 Return Air Node, !- Inlet 1 Node Name + OR2_Mult5_Flr_2 Return Air Node, !- Inlet 2 Node Name + OR3_Flr_2 Return Air Node, !- Inlet 3 Node Name + OR4_Flr_2 Return Air Node; !- Inlet 4 Node Name + + AirLoopHVAC:ZoneMixer, + VAV_ICU Return Air Mixer,!- Name + VAV_ICU Zone Equipment Outlet Node, !- Outlet Node Name + IC_PatRoom1_Mult5_Flr_2 Return Air Node, !- Inlet 1 Node Name + IC_PatRoom2_Flr_2 Return Air Node, !- Inlet 2 Node Name + IC_PatRoom3_Mult6_Flr_2 Return Air Node, !- Inlet 3 Node Name + ICU_Flr_2 Return Air Node; !- Inlet 4 Node Name + + AirLoopHVAC:ZoneMixer, + VAV_PATRMS Return Air Mixer, !- Name + VAV_PATRMS Zone Equipment Outlet Node, !- Outlet Node Name + PatRoom1_Mult10_Flr_3 Return Air Node, !- Inlet 1 Node Name + PatRoom2_Flr_3 Return Air Node, !- Inlet 2 Node Name + PatRoom3_Mult10_Flr_3 Return Air Node, !- Inlet 3 Node Name + PatRoom4_Flr_3 Return Air Node, !- Inlet 4 Node Name + PatRoom5_Mult10_Flr_3 Return Air Node, !- Inlet 5 Node Name + PatRoom6_Flr_3 Return Air Node, !- Inlet 6 Node Name + PatRoom7_Mult10_Flr_3 Return Air Node, !- Inlet 7 Node Name + PatRoom8_Flr_3 Return Air Node, !- Inlet 8 Node Name + PatRoom1_Mult10_Flr_4 Return Air Node, !- Inlet 9 Node Name + PatRoom2_Flr_4 Return Air Node, !- Inlet 10 Node Name + PatRoom3_Mult10_Flr_4 Return Air Node, !- Inlet 11 Node Name + PatRoom4_Flr_4 Return Air Node, !- Inlet 12 Node Name + PatRoom5_Mult10_Flr_4 Return Air Node, !- Inlet 13 Node Name + PatRoom6_Flr_4 Return Air Node, !- Inlet 14 Node Name + PatRoom7_Mult10_Flr_4 Return Air Node, !- Inlet 15 Node Name + PatRoom8_Flr_4 Return Air Node; !- Inlet 16 Node Name + + AirLoopHVAC:ZoneMixer, + VAV_2 Return Air Mixer, !- Name + VAV_2 Zone Equipment Outlet Node, !- Outlet Node Name + PhysTherapy_Flr_3 Return Air Node, !- Inlet 1 Node Name + NurseStn_Lobby_Flr_3 Return Air Node, !- Inlet 2 Node Name + Corridor_SE_Flr_3 Return Air Node, !- Inlet 3 Node Name + Corridor_NW_Flr_3 Return Air Node, !- Inlet 4 Node Name + Radiology_Flr_4 Return Air Node, !- Inlet 5 Node Name + NurseStn_Lobby_Flr_4 Return Air Node, !- Inlet 6 Node Name + Corridor_SE_Flr_4 Return Air Node, !- Inlet 7 Node Name + Corridor_NW_Flr_4 Return Air Node, !- Inlet 8 Node Name + Dining_Flr_5 Return Air Node, !- Inlet 9 Node Name + NurseStn_Lobby_Flr_5 Return Air Node, !- Inlet 10 Node Name + Office1_Flr_5 Return Air Node, !- Inlet 11 Node Name + Office2_Mult5_Flr_5 Return Air Node, !- Inlet 12 Node Name + Office3_Flr_5 Return Air Node, !- Inlet 13 Node Name + Office4_Mult6_Flr_5 Return Air Node, !- Inlet 14 Node Name + Corridor_Flr_5 Return Air Node; !- Inlet 15 Node Name + + AirLoopHVAC:ZoneMixer, + VAV_LABS Return Air Mixer, !- Name + VAV_LABS Zone Equipment Outlet Node, !- Outlet Node Name + Lab_Flr_3 Return Air Node, !- Inlet 1 Node Name + Lab_Flr_4 Return Air Node; !- Inlet 2 Node Name + + AirLoopHVAC:ZoneMixer, + CAV_KITCHEN Return Air Mixer, !- Name + CAV_KITCHEN Zone Equipment Outlet Node, !- Outlet Node Name + Kitchen_Flr_5 Return Air Node; !- Inlet 1 Node Name + +!- =========== ALL OBJECTS IN CLASS: BOILER:SIMPLE =========== + + Boiler:HotWater, + HeatSys1 Boiler, !- Name + NATURALGAS, !- Fuel Type +875441.29, !- Nominal Capacity {W} +0.8125, !- Nominal Thermal Efficiency + LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable + HeatSys1 Boiler Efficiency Curve, !- Normalized Boiler Efficiency Curve Name + AUTOSIZE, !- Design Water Flow Rate {m3/s} + 0.0, !- Minimum Part Load Ratio + 1.2, !- Maximum Part Load Ratio + 1.0, !- Optimum Part Load Ratio + HeatSys1 Pump-HeatSys1 BoilerNode, !- Boiler Water Inlet Node Name + HeatSys1 Supply Equipment Outlet Node, !- Boiler Water Outlet Node Name + 95.0, !- Water Outlet Upper Temperature Limit {C} + LeavingSetpointModulated;!- Boiler Flow Mode + + + SetpointManager:Scheduled, + HeatSys1 Boiler Setpoint Manager, !- Name + Temperature, !- Control Variable + HW-Loop-Temp-Schedule, !- Schedule Name + HeatSys1 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + + Curve:Quadratic, + HeatSys1 Boiler Efficiency Curve, !- Name + 1.0, !- Coefficient1 Constant + 0.0, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +!- =========== ALL OBJECTS IN CLASS: CHILLER:ELECTRIC:EIR =========== + + Chiller:Electric:EIR, + Heat Recovery Chiller, !- Name +132274.6404, !- Reference Capacity {W} +4.47, !- Reference COP {W/W} + 6.67, !- Reference Leaving Chilled Water Temperature {C} + 23.88, !- Reference Entering Condenser Fluid Temperature {C} +0.00579873044137616, !- Reference Chilled Water Flow Rate {m3/s} + autosize, !- Reference Condenser Fluid Flow Rate {m3/s} +Lp2LpChlr_CAP_FT, !- Cooling Capacity Function of Temperature Curve Name +Lp2LpChlr_EIR_FT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name +Lp2LpChlr_PLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + 0.1, !- Minimum Part Load Ratio + 1, !- Maximum Part Load Ratio + 1, !- Optimum Part Load Ratio + 0.2, !- Minimum Unloading Ratio + Heat Recovery Chiller Inlet, !- Chilled Water Inlet Node Name + Heat Recovery Chiller Outlet, !- Chilled Water Outlet Node Name + Heat Recovery Chiller Condenser Inlet, !- Condenser Inlet Node Name + Heat Recovery Chiller Condenser Outlet, !- Condenser Outlet Node Name + WaterCooled, !- Condenser Type + , !- Condenser Fan Power Ratio {W/W} + 1, !- Fraction of Compressor Electric Consumption Rejected by Condenser + 2, !- Leaving Chilled Water Lower Temperature Limit {C} + NotModulated, !- Chiller Flow Mode + autosize, !- Design Heat Recovery Water Flow Rate {m3/s} + Heat Recovery Chiller HR Inlet Node, !- Heat Recovery Inlet Node Name + Heat Recovery Chiller HR Outlet Node, !- Heat Recovery Outlet Node Name + 1, !- Sizing Factor + , !- Basin Heater Capacity {W/K} + 2, !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + , !- Condenser Heat Recovery Relative Capacity Fraction + , !- Heat Recovery Inlet High Temperature Limit Schedule Name + Heat Recovery Chiller HR Outlet Node, !- Heat Recovery Leaving Temperature Setpoint Node Name + General; !- End-Use Subcategory + + Curve:Quadratic, + Lp2LpChlr_PLR, !- Name + 0.02297712, !- Coefficient1 Constant + 0.90150452, !- Coefficient2 x + 0.07551826, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + + Curve:Biquadratic, + Lp2LpChlr_CAP_FT, !- Name + 0.91244573, !- Coefficient1 Constant + 0.033950641, !- Coefficient2 x + 0.000258828, !- Coefficient3 x**2 + -.002545924, !- Coefficient4 y + -.0000833545, !- Coefficient5 y**2 + -.000263086, !- Coefficient6 x*y + 0, !- Minimum Value of x + 999, !- Maximum Value of x + 0, !- Minimum Value of y + 999, !- Maximum Value of y + , !- Minimum Curve Output + , !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + + Curve:Biquadratic, + Lp2LpChlr_EIR_FT, !- Name + 0.685706383, !- Coefficient1 Constant + -.010880034, !- Coefficient2 x + 0.000383057, !- Coefficient3 x**2 + 0.00988623, !- Coefficient4 y + 0.000357473, !- Coefficient5 y**2 + -.000441863, !- Coefficient6 x*y + 0, !- Minimum Value of x + 999, !- Maximum Value of x + 0, !- Minimum Value of y + 999, !- Maximum Value of y + , !- Minimum Curve Output + , !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + + + + + +!- =========== ALL OBJECTS IN CLASS: Chiller:Electric:ReformulatedEIR =========== + + + Chiller:Electric:ReformulatedEIR, + CoolSys1 Chiller1, !- Name +944818.86, !- Reference Capacity {W} +5.33, !- Reference COP {W/W} + 6.6700, !- Reference Leaving Chilled Water Temperature {C} + 34.4444, !- Reference Leaving Condenser Water Temperature {C} +0.0275138, !- Reference Chilled Water Flow Rate {m3/s} + AutoSize, !- Reference Condenser Water Flow Rate {m3/s} +WC_PD_GT150_2010_PA_CAPFT, !- Cooling Capacity Function of Temperature Curve Name +WC_PD_GT150_2010_PA_EIRFT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + LeavingCondenserWaterTemperature, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type +WC_PD_150to300_2010_PA_EIRFPLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + 0.1000, !- Minimum Part Load Ratio + 1.0000, !- Maximum Part Load Ratio + 1.0000, !- Optimum Part Load Ratio + 0.1000, !- Minimum Unloading Ratio + CoolSys1 Pump-CoolSys1 Chiller1Node, !- Chilled Water Inlet Node Name + CoolSys1 Supply Equipment Outlet Node 1, !- Chilled Water Outlet Node Name + CoolSys1 Chiller1 Water Inlet Node, !- Condenser Inlet Node Name + CoolSys1 Chiller1 Water Outlet Node, !- Condenser Outlet Node Name + , !- Fraction of Compressor Electric Consumption Rejected by Condenser + 5.0000, !- Leaving Chilled Water Lower Temperature Limit {C} + ConstantFlow, !- Chiller Flow Mode Type + 0.0000; !- Design Heat Recovery Water Flow Rate {m3/s} + + + Chiller:Electric:ReformulatedEIR, + CoolSys1 Chiller2, !- Name +944818.86, !- Reference Capacity {W} +5.33, !- Reference COP {W/W} + 6.6700, !- Reference Leaving Chilled Water Temperature {C} + 34.4444, !- Reference Leaving Condenser Water Temperature {C} +0.0275138, !- Reference Chilled Water Flow Rate {m3/s} + AutoSize, !- Reference Condenser Water Flow Rate {m3/s} +WC_PD_GT150_2010_PA_CAPFT, !- Cooling Capacity Function of Temperature Curve Name +WC_PD_GT150_2010_PA_EIRFT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + LeavingCondenserWaterTemperature, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type +WC_PD_150to300_2010_PA_EIRFPLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + 0.1000, !- Minimum Part Load Ratio + 1.0000, !- Maximum Part Load Ratio + 1.0000, !- Optimum Part Load Ratio + 0.1000, !- Minimum Unloading Ratio + CoolSys1 Pump-CoolSys1 Chiller2Node, !- Chilled Water Inlet Node Name + CoolSys1 Supply Equipment Outlet Node 2, !- Chilled Water Outlet Node Name + CoolSys1 Chiller2 Water Inlet Node, !- Condenser Inlet Node Name + CoolSys1 Chiller2 Water Outlet Node, !- Condenser Outlet Node Name + , !- Fraction of Compressor Electric Consumption Rejected by Condenser + 5.0000, !- Leaving Chilled Water Lower Temperature Limit {C} + ConstantFlow, !- Chiller Flow Mode Type + 0.0000; !- Design Heat Recovery Water Flow Rate {m3/s} + +!- =========== ALL OBJECTS IN CLASS: WATER HEATER:MIXED =========== + + + WaterHeater:Mixed, + SHWSys1 Water Heater, !- Name + 2.271247, !- Tank Volume {m3} + SHWSys1 Water Heater Setpoint Temperature Schedule, !- Setpoint Temperature Schedule Name + 2.0, !- Deadband Temperature Difference {deltaC} + 82.2222, !- Maximum Temperature Limit {C} + Cycle, !- Heater Control Type + 175842.64, !- Heater Maximum Capacity {W} + , !- Heater Minimum Capacity {W} + , !- Heater Ignition Minimum Flow Rate {m3/s} + , !- Heater Ignition Delay {s} + NATURALGAS, !- Heater Fuel Type + 0.802764686, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + 17147.66, !- Off Cycle Parasitic Fuel Consumption Rate {W} + NATURALGAS, !- Off Cycle Parasitic Fuel Type + 0.8, !- Off Cycle Parasitic Heat Fraction to Tank + 17147.66, !- On Cycle Parasitic Fuel Consumption Rate {W} + NATURALGAS, !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + zone, !- Ambient Temperature Indicator + , !- Ambient Temperature Schedule Name + BASEMENT, !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 15.60100708, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- Off Cycle Loss Fraction to Zone + 15.60100708, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- On Cycle Loss Fraction to Zone + , !- Peak Use Flow Rate {m3/s} + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + SHWSys1 Pump-SHWSys1 Water HeaterNode, !- Use Side Inlet Node Name + SHWSys1 Supply Equipment Outlet Node, !- Use Side Outlet Node Name + 1.0, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1.0, !- Source Side Effectiveness + AUTOSIZE, !- Use Side Design Flow Rate {m3/s} + AUTOSIZE, !- Source Side Design Flow Rate {m3/s} + 1.5; !- Indirect Water Heating Recovery Time {hr} + + + + WaterHeater:Mixed, + SWH DishWashing Booster, !- Name + 0.02271247, !- Tank Volume {m3} + Dishwashing Booster Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name + 2.00000005298191, !- Deadband Temperature Difference {deltaC} + 82.2222244003673, !- Maximum Temperature Limit {C} + Cycle, !- Heater Control Type + 3000, !- Heater Maximum Capacity {W} + 0, !- Heater Minimum Capacity {W} + , !- Heater Ignition Minimum Flow Rate {m3/s} + , !- Heater Ignition Delay {s} + Electricity, !- Heater Fuel Type + 1, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + , !- Off Cycle Parasitic Fuel Consumption Rate {W} + Electricity, !- Off Cycle Parasitic Fuel Type + 0, !- Off Cycle Parasitic Heat Fraction to Tank + , !- On Cycle Parasitic Fuel Consumption Rate {W} + , !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + Zone, !- Ambient Temperature Indicator + , !- Ambient Temperature Schedule Name + KITCHEN_FLR_5, !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 1.053159296, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- Off Cycle Loss Fraction to Zone + 1.053159296, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- On Cycle Loss Fraction to Zone + 3.659231E-5, !- Peak Use Flow Rate {m3/s} + BLDG_SWH_SCH, !- Use Flow Rate Fraction Schedule Name + Dishwashing Booster Water Inlet Temp Schedule; !- Cold Water Supply Temperature Schedule Name + + + + WaterHeater:Mixed, + SWH Laundry, !- Name + 1.1356235, !- Tank Volume {m3} + Laundry Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name + 2.00000005298191, !- Deadband Temperature Difference {deltaC} + 82.2222244003673, !- Maximum Temperature Limit {C} + Cycle, !- Heater Control Type + 87921.32, !- Heater Maximum Capacity {W} + 0, !- Heater Minimum Capacity {W} + , !- Heater Ignition Minimum Flow Rate {m3/s} + , !- Heater Ignition Delay {s} + NaturalGas, !- Heater Fuel Type + 0.803988738, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + , !- Off Cycle Parasitic Fuel Consumption Rate {W} + NaturalGas, !- Off Cycle Parasitic Fuel Type + 0, !- Off Cycle Parasitic Heat Fraction to Tank + , !- On Cycle Parasitic Fuel Consumption Rate {W} + , !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + Zone, !- Ambient Temperature Indicator + , !- Ambient Temperature Schedule Name + BASEMENT, !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 11.25413987, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- Off Cycle Loss Fraction to Zone + 11.25413987, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- On Cycle Loss Fraction to Zone + 1.766525E-4, !- Peak Use Flow Rate {m3/s} + LAUNDRY_SWH_SCH, !- Use Flow Rate Fraction Schedule Name + ; !- Cold Water Supply Temperature Schedule Name + + WaterHeater:Mixed, + Dummy Water Heater, !- Name + 0.0189271, !- Tank Volume {m3} + Dummy Water Heater Setpoint, !- Setpoint Temperature Schedule Name + 0, !- Deadband Temperature Difference {deltaC} + 50, !- Maximum Temperature Limit {C} + CYCLE, !- Heater Control Type + 0, !- Heater Maximum Capacity {W} + , !- Heater Minimum Capacity {W} + , !- Heater Ignition Minimum Flow Rate {m3/s} + , !- Heater Ignition Delay {s} + Electricity, !- Heater Fuel Type + 1, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + , !- Off Cycle Parasitic Fuel Consumption Rate {W} + , !- Off Cycle Parasitic Fuel Type + , !- Off Cycle Parasitic Heat Fraction to Tank + , !- On Cycle Parasitic Fuel Consumption Rate {W} + , !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + Outdoors, !- Ambient Temperature Indicator + , !- Ambient Temperature Schedule Name + , !- Ambient Temperature Zone Name + Dummy Water Heater OA Node, !- Ambient Temperature Outdoor Air Node Name + 0, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} + 0, !- Off Cycle Loss Fraction to Zone + 0, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} + 0, !- On Cycle Loss Fraction to Zone + , !- Peak Use Flow Rate {m3/s} + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector, !- Use Side Inlet Node Name + Dummy Water Heater Use Side Outlet Node, !- Use Side Outlet Node Name + 1.0, !- Use Side Effectiveness + Dummy Water Heater Source Side Inlet Node, !- Source Side Inlet Node Name + Dummy Water Heater Source Side Outlet Node, !- Source Side Outlet Node Name + 1.0, !- Source Side Effectiveness + autosize, !- Use Side Design Flow Rate {m3/s} + autosize; !- Source Side Design Flow Rate {m3/s} + + +!- =========== ALL OBJECTS IN CLASS: COOLING TOWER:TWO SPEED =========== + +!- Design Outdoor Air Wet-Bulb Temperature from the EPW file +!- Design Range Temperature is set to 10 deltaF per 90.1-2010 G3.1.3.13 +!- Design Approach Temperature. Per 90.1-2010 G3.1.3.13, condenser water design supply temperature shall be +!- 85F or 10F approaching design wet-bulb temperature, whichever is lower, with a design temperature rise of 10F (range temperature). +!- Therefore, we use Design Approach Temperature to set condenser water design supply temperature, i.e. Design Approach Temperature = min(10F, (85 - Design OA WbT from EPW)) + + CoolingTower:VariableSpeed, + TowerWaterSys CoolTower 1, !- Name + TowerWaterSys Pump-TowerWaterSys CoolTower1Node, !- Water Inlet Node Name + TowerWaterSys Supply Equipment Outlet Node 1, !- Water Outlet Node Name + CoolToolsCrossFlow, !- Model Type + , !- Model Coefficient Name + 25.1, !- Design Inlet Air Wet-Bulb Temperature {C} + 4.34444444444444, !- Design Approach Temperature {deltaC} + 5.55555555555556, !- Design Range Temperature {deltaC} +0.0375568, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} +13359.1956098796, !- Design Fan Power {W} + Tower_Fan_Curve, !- Fan Power Ratio Function of Air Flow Rate Ratio Curve Name + 0.2, !- Minimum Air Flow Rate Ratio + 0.125, !- Fraction of Tower Capacity in Free Convection Regime + , !- Basin Heater Capacity {W/K} + , !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + , !- Evaporation Loss Mode + , !- Evaporation Loss Factor {percent/K} + , !- Drift Loss Percent {percent} + , !- Blowdown Calculation Mode + , !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule Name + , !- Supply Water Storage Tank Name + , !- Outdoor Air Inlet Node Name + 4, !- Number of Cells + MaximalCell, !- Cell Control !- Cell Control + , !- Cell Minimum Water Flow Rate Fraction + , !- Cell Maximum Water Flow Rate Fraction + 1.000; !- Sizing Factor + CoolingTower:VariableSpeed, + TowerWaterSys CoolTower 2, !- Name + TowerWaterSys Pump-TowerWaterSys CoolTower2Node, !- Water Inlet Node Name + TowerWaterSys Supply Equipment Outlet Node 2, !- Water Outlet Node Name + CoolToolsCrossFlow, !- Model Type + , !- Model Coefficient Name + 25.1, !- Design Inlet Air Wet-Bulb Temperature {C} + 4.34444444444444, !- Design Approach Temperature {deltaC} + 5.55555555555556, !- Design Range Temperature {deltaC} +0.0375568, !- Design Water Flow Rate {m3/s} + autosize, !- Design Air Flow Rate {m3/s} +13359.1956098796, !- Design Fan Power {W} + Tower_Fan_Curve, !- Fan Power Ratio Function of Air Flow Rate Ratio Curve Name + 0.2, !- Minimum Air Flow Rate Ratio + 0.125, !- Fraction of Tower Capacity in Free Convection Regime + , !- Basin Heater Capacity {W/K} + , !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + , !- Evaporation Loss Mode + , !- Evaporation Loss Factor {percent/K} + , !- Drift Loss Percent {percent} + , !- Blowdown Calculation Mode + , !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule Name + , !- Supply Water Storage Tank Name + , !- Outdoor Air Inlet Node Name + 4, !- Number of Cells + MaximalCell, !- Cell Control + , !- Cell Minimum Water Flow Rate Fraction + , !- Cell Maximum Water Flow Rate Fraction + 1.000; !- Sizing Factor +!- =========== ALL OBJECTS IN CLASS: PUMP:VARIABLE SPEED =========== + + Pump:ConstantSpeed, + SHWSys1 Pump, !- Name + SHWSys1 Supply Inlet Node, !- Inlet Node Name + SHWSys1 Pump-SHWSys1 Water HeaterNodeviaConnector, !- Outlet Node Name + autosize, !- Design Flow Rate {m3/s} + 29891, !- Design Pump Head {Pa} + AUTOSIZE, !- Design Power Consumption {W} + 0.30, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent; !- Pump Control Type + + + + + + Pump:VariableSpeed, + HeatSys1 Pump, !- Name + HeatSys1 Supply Inlet Node, !- Inlet Node Name + HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Design Maximum Flow Rate {m3/s} + 179352, !- Design Pump Head {Pa} + AUTOSIZE, !- Design Power Consumption {W} + 0.909, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0,3.2485,-4.7443,2.5295, !- VariableSpeed Pump Curve Coefficients + + 0, !- Minimum Flow Rate {m3/s} + Intermittent; + + + + + Pump:ConstantSpeed, + CoolSys1 Chiller1 Pump, !- Name + CoolSys1 Chiller1 Pump Inlet Node, !- Inlet Node Name + CoolSys1 Pump-CoolSys1 Chiller1Node, !- Outlet Node Name + AUTOSIZE, !- Design Flow Rate {m3/s} + 44761.27683, !- Design Pump Head {Pa} + AUTOSIZE, !- Design Power Consumption {W} + 0.909, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent, !- Pump Control Type + ; !- Pump Flow Rate Schedule Name + + Pump:ConstantSpeed, + CoolSys1 Chiller2 Pump, !- Name + CoolSys1 Chiller2 Pump Inlet Node, !- Inlet Node Name + CoolSys1 Pump-CoolSys1 Chiller2Node, !- Outlet Node Name + AUTOSIZE, !- Design Flow Rate {m3/s} + 44761.27683, !- Design Pump Head {Pa} + AUTOSIZE, !- Design Power Consumption {W} + 0.909, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent, !- Pump Control Type + ; !- Pump Flow Rate Schedule Name + + + + + Pump:VariableSpeed, + CoolSys1 Pump Secondary, !- Name + CoolSys1 Demand Inlet Node, !- Inlet Node Name + CoolSys1 Pump Secondary-CoolSys1 Demand Mixer, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate {m3/s} + 134283.8305, !- Design Pump Head {Pa} + autosize, !- Design Power Consumption {W} + 0.909, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0,0.0205, 0.4101,0.5753, !- VariableSpeed Pump Curve Coefficients + + 0, !- Minimum Flow Rate {m3/s} + Intermittent; + + Pump:VariableSpeed, + Heat Recovery Circ Pump, !- Name + Heat Recovery Supply Inlet Node, !- Inlet Node Name + Heat Recovery Pump Outlet Node, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate {m3/s} + 0, !- Design Pump Head {Pa} + 0, !- Design Power Consumption {W} + 1, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 1, !- Coefficient 2 of the Part Load Performance Curve + 0, !- Coefficient 3 of the Part Load Performance Curve + 0, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + INTERMITTENT; !- Pump Control Type + + Pump:VariableSpeed, + Heat Recovery Chiller Bypass Loop Pump, !- Name + Heat Recovery Chiller Bypass Loop Pump Inlet, !- Inlet Node Name + Heat Recovery Chiller Bypass Loop Pump Outlet, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate {m3/s} + 44761.27683, !- Design Pump Head {Pa} + autosize, !- Design Power Consumption {W} + 0.909, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0,0.0205, 0.4101,0.5753, !- VariableSpeed Pump Curve Coefficients + 0, !- Design Minimum Flow Rate {m3/s} + Intermittent; !- Pump Control Type + + +!- =========== ALL OBJECTS IN CLASS: PUMP:CONSTANT SPEED =========== + + HeaderedPumps:VariableSpeed, + TowerWaterSys Pump, !- Name + TowerWaterSys Supply Inlet Node, !- Inlet Node Name + TowerWaterSys Pump-TowerWaterSys CoolTowerNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Total Design Flow Rate {m3/s} + 4, !- Number of Pumps in Bank + SEQUENTIAL, !- Flow Sequencing Control Scheme + 148556.6249, !- Design Pump Head {Pa} + autosize, !- Design Power Consumption {W} + 0.909, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 0.0216, !- Coefficient 2 of the Part Load Performance Curve + -0.0325, !- Coefficient 3 of the Part Load Performance Curve + 1.0095, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Minimum Flow Rate Fraction + Intermittent, !- Pump Control Type + ; !- Pump Flow Rate Schedule Name + +!- =========== ALL OBJECTS IN CLASS: COIL:COOLING:WATER =========== + + Coil:Cooling:Water, + VAV_1_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate {m3/s} + AUTOSIZE, !- Design Air Flow Rate {m3/s} + 8.89, !- Design Inlet Water Temperature {C} + AUTOSIZE, !- Design Inlet Air Temperature {C} + AUTOSIZE, !- Design Outlet Air Temperature {C} + AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + VAV_1_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_1_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_1_OA-VAV_1_CoolCNode,!- Air Inlet Node Name + VAV_1_CoolC-VAV_1_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + + Coil:Cooling:Water, + VAV_ER_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate {m3/s} + AUTOSIZE, !- Design Air Flow Rate {m3/s} + 8.89, !- Design Inlet Water Temperature {C} + AUTOSIZE, !- Design Inlet Air Temperature {C} + AUTOSIZE, !- Design Outlet Air Temperature {C} + AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + VAV_ER_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_ER_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Air Inlet Node Name + VAV_ER_CoolC-VAV_ER_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + + Coil:Cooling:Water, + VAV_OR_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate {m3/s} + AUTOSIZE, !- Design Air Flow Rate {m3/s} + 8.89, !- Design Inlet Water Temperature {C} + AUTOSIZE, !- Design Inlet Air Temperature {C} + AUTOSIZE, !- Design Outlet Air Temperature {C} + AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + VAV_OR_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_OR_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Air Inlet Node Name + VAV_OR_CoolC-VAV_OR_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + + Coil:Cooling:Water, + VAV_ICU_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate {m3/s} + AUTOSIZE, !- Design Air Flow Rate {m3/s} + 8.89, !- Design Inlet Water Temperature {C} + AUTOSIZE, !- Design Inlet Air Temperature {C} + AUTOSIZE, !- Design Outlet Air Temperature {C} + AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + VAV_ICU_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_ICU_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Air Inlet Node Name + VAV_ICU_CoolC-VAV_ICU_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + + Coil:Cooling:Water, + VAV_PATRMS_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate {m3/s} + AUTOSIZE, !- Design Air Flow Rate {m3/s} + 8.89, !- Design Inlet Water Temperature {C} + AUTOSIZE, !- Design Inlet Air Temperature {C} + AUTOSIZE, !- Design Outlet Air Temperature {C} + AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + VAV_PATRMS_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_PATRMS_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Air Inlet Node Name + VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + + Coil:Cooling:Water, + VAV_2_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate {m3/s} + AUTOSIZE, !- Design Air Flow Rate {m3/s} + 8.89, !- Design Inlet Water Temperature {C} + AUTOSIZE, !- Design Inlet Air Temperature {C} + AUTOSIZE, !- Design Outlet Air Temperature {C} + AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + VAV_2_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_2_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_2_OA-VAV_2_CoolCNode,!- Air Inlet Node Name + VAV_2_CoolC-VAV_2_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + + Coil:Cooling:Water, + VAV_LABS_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate {m3/s} + AUTOSIZE, !- Design Air Flow Rate {m3/s} + 8.89, !- Design Inlet Water Temperature {C} + AUTOSIZE, !- Design Inlet Air Temperature {C} + AUTOSIZE, !- Design Outlet Air Temperature {C} + AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + VAV_LABS_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_LABS_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Air Inlet Node Name + VAV_LABS_CoolC-VAV_LABS_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + + Coil:Cooling:Water, + CAV_KITCHEN_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate {m3/s} + AUTOSIZE, !- Design Air Flow Rate {m3/s} + 8.89, !- Design Inlet Water Temperature {C} + AUTOSIZE, !- Design Inlet Air Temperature {C} + AUTOSIZE, !- Design Outlet Air Temperature {C} + AUTOSIZE, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + AUTOSIZE, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + CAV_KITCHEN_CoolCDemand Inlet Node, !- Water Inlet Node Name + CAV_KITCHEN_CoolCDemand Outlet Node, !- Water Outlet Node Name + CAV_KITCHEN_OA-CAV_KITCHEN_CoolCNode, !- Air Inlet Node Name + CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + +!- =========== ALL OBJECTS IN CLASS: COIL:HEATING:WATER =========== + + + Coil:Heating:Water, + VAV_PATRMS_ExtraWaterHeatC, !- Name + Patrms_ExtraWaterHeatC_Sch, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + VAV_PATRMS_ExtraWaterHeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_PATRMS_ExtraWaterHeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode, !- Air Inlet Node Name + VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + autosize, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_ER_ExtraWaterHeatC, !- Name + ER_ExtraWaterHeatC_Sch, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + VAV_ER_ExtraWaterHeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_ER_ExtraWaterHeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode, !- Air Inlet Node Name + VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + autosize, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_OR_ExtraWaterHeatC, !- Name + OR_ExtraWaterHeatC_Sch, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + VAV_OR_ExtraWaterHeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_OR_ExtraWaterHeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode, !- Air Inlet Node Name + VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + autosize, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_ICU_ExtraWaterHeatC, !- Name + ICU_ExtraWaterHeatC_Sch, !- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + VAV_ICU_ExtraWaterHeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_ICU_ExtraWaterHeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode, !- Air Inlet Node Name + VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + autosize, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_LABS_ExtraWaterHeatC,!- Name + LABS_ExtraWaterHeatC_Sch,!- Availability Schedule Name + , !- U-Factor Times Area Value {W/K} + , !- Maximum Water Flow Rate {m3/s} + VAV_LABS_ExtraWaterHeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_LABS_ExtraWaterHeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode, !- Air Inlet Node Name + VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Air Outlet Node Name + NominalCapacity, !- Performance Input Method + autosize, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + +!- =========== ALL OBJECTS IN CLASS: COIL:HEATING:ELECTRIC =========== + + + Coil:Heating:Electric, + VAV_PATRMS_ExtraElecHeatC, !- Name + Patrms_ExtraElecHeatC_Sch, !- Availability Schedule Name + 1.0000, !- Efficiency + 10000000, !- Nominal Capacity {W} + VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode, !- Air Inlet Node Name + VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode, !- Air Outlet Node Name + VAV_PATRMS ExtraElecHeatC-VAV_PATRMS_ExtraWaterHeatCNode; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + VAV_ER_ExtraElecHeatC, !- Name + ER_ExtraElecHeatC_Sch, !- Availability Schedule Name + 1.0000, !- Efficiency + 10000000, !- Nominal Capacity {W} + VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode, !- Air Inlet Node Name + VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode, !- Air Outlet Node Name + VAV_ER ExtraElecHeatC-VAV_ER_ExtraWaterHeatCNode; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + VAV_OR_ExtraElecHeatC, !- Name + OR_ExtraElecHeatC_Sch, !- Availability Schedule Name + 1.0000, !- Efficiency + 10000000, !- Nominal Capacity {W} + VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode, !- Air Inlet Node Name + VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode, !- Air Outlet Node Name + VAV_OR ExtraElecHeatC-VAV_OR_ExtraWaterHeatCNode; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + VAV_ICU_ExtraElecHeatC, !- Name + ICU_ExtraElecHeatC_Sch, !- Availability Schedule Name + 1.0000, !- Efficiency + 10000000, !- Nominal Capacity {W} + VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode, !- Air Inlet Node Name + VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode, !- Air Outlet Node Name + VAV_ICU ExtraElecHeatC-VAV_ICU_ExtraWaterHeatCNode; !- Temperature Setpoint Node Name + + Coil:Heating:Electric, + VAV_LABS_ExtraElecHeatC, !- Name + LABS_ExtraElecHeatC_Sch, !- Availability Schedule Name + 1.0000, !- Efficiency + 10000000, !- Nominal Capacity {W} + VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode, !- Air Inlet Node Name + VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode, !- Air Outlet Node Name + VAV_LABS ExtraElecHeatC-VAV_LABS_ExtraWaterHeatCNode; !- Temperature Setpoint Node Name + + Coil:Heating:Water, + Basement VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Basement VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Basement VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Basement VAV Box Damper Node, !- Air Inlet Node Name + Basement VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + ER_Exam1_Mult4_Flr_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + ER_Exam1_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + ER_Exam1_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + ER_Exam1_Mult4_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name + ER_Exam1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + ER_Trauma1_Flr_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + ER_Trauma1_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + ER_Trauma1_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + ER_Trauma1_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name + ER_Trauma1_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + ER_Exam3_Mult4_Flr_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + ER_Exam3_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + ER_Exam3_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + ER_Exam3_Mult4_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name + ER_Exam3_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + ER_Trauma2_Flr_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + ER_Trauma2_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + ER_Trauma2_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + ER_Trauma2_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name + ER_Trauma2_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + ER_Triage_Mult4_Flr_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + ER_Triage_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + ER_Triage_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + ER_Triage_Mult4_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name + ER_Triage_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Office1_Mult4_Flr_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Office1_Mult4_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Office1_Mult4_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Office1_Mult4_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name + Office1_Mult4_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Lobby_Records_Flr_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Lobby_Records_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Lobby_Records_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Lobby_Records_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name + Lobby_Records_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_Flr_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + ER_NurseStn_Lobby_Flr_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + ER_NurseStn_Lobby_Flr_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + ER_NurseStn_Lobby_Flr_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + ER_NurseStn_Lobby_Flr_1 VAV Box Damper Node, !- Air Inlet Node Name + ER_NurseStn_Lobby_Flr_1 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + OR1_Flr_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + OR1_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + OR1_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + OR1_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name + OR1_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + OR2_Mult5_Flr_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + OR2_Mult5_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + OR2_Mult5_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + OR2_Mult5_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name + OR2_Mult5_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + OR3_Flr_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + OR3_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + OR3_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + OR3_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name + OR3_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + OR4_Flr_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + OR4_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + OR4_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + OR4_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name + OR4_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + IC_PatRoom1_Mult5_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + IC_PatRoom1_Mult5_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name + IC_PatRoom1_Mult5_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + IC_PatRoom2_Flr_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + IC_PatRoom2_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + IC_PatRoom2_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + IC_PatRoom2_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name + IC_PatRoom2_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + IC_PatRoom3_Mult6_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + IC_PatRoom3_Mult6_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name + IC_PatRoom3_Mult6_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + ICU_Flr_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + ICU_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + ICU_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + ICU_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name + ICU_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + ICU_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + ICU_NurseStn_Lobby_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name + ICU_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_Flr_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + OR_NurseStn_Lobby_Flr_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + OR_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + OR_NurseStn_Lobby_Flr_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + OR_NurseStn_Lobby_Flr_2 VAV Box Damper Node, !- Air Inlet Node Name + OR_NurseStn_Lobby_Flr_2 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom1_Mult10_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom1_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom1_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom1_Mult10_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom1_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom2_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom2_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom2_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom2_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom2_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom3_Mult10_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom3_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom3_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom3_Mult10_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom3_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom4_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom4_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom4_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom4_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom4_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom5_Mult10_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom5_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom5_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom5_Mult10_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom5_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PhysTherapy_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PhysTherapy_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PhysTherapy_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PhysTherapy_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + PhysTherapy_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom6_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom6_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom6_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom6_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom6_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom7_Mult10_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom7_Mult10_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom7_Mult10_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom7_Mult10_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom7_Mult10_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom8_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom8_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom8_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom8_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom8_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + NurseStn_Lobby_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + NurseStn_Lobby_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + NurseStn_Lobby_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + NurseStn_Lobby_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + NurseStn_Lobby_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Lab_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Lab_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Lab_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Lab_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + Lab_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_SE_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_SE_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_SE_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_SE_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_SE_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_NW_Flr_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_NW_Flr_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_NW_Flr_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_NW_Flr_3 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_NW_Flr_3 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom1_Mult10_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom1_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom1_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom1_Mult10_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom1_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom2_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom2_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom2_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom2_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom2_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom3_Mult10_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom3_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom3_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom3_Mult10_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom3_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom4_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom4_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom4_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom4_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom4_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom5_Mult10_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom5_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom5_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom5_Mult10_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom5_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Radiology_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Radiology_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Radiology_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Radiology_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + Radiology_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom6_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom6_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom6_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom6_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom6_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom7_Mult10_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom7_Mult10_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom7_Mult10_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom7_Mult10_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom7_Mult10_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + PatRoom8_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + PatRoom8_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + PatRoom8_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + PatRoom8_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + PatRoom8_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + NurseStn_Lobby_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + NurseStn_Lobby_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + NurseStn_Lobby_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + NurseStn_Lobby_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + NurseStn_Lobby_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Lab_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Lab_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Lab_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Lab_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + Lab_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_SE_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_SE_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_SE_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_SE_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_SE_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_NW_Flr_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_NW_Flr_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_NW_Flr_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_NW_Flr_4 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_NW_Flr_4 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Dining_Flr_5 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Dining_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Dining_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Dining_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name + Dining_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + NurseStn_Lobby_Flr_5 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + NurseStn_Lobby_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + NurseStn_Lobby_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + NurseStn_Lobby_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name + NurseStn_Lobby_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Office1_Flr_5 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Office1_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Office1_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Office1_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name + Office1_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Office2_Mult5_Flr_5 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Office2_Mult5_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Office2_Mult5_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Office2_Mult5_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name + Office2_Mult5_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Office3_Flr_5 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Office3_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Office3_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Office3_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name + Office3_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Office4_Mult6_Flr_5 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Office4_Mult6_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Office4_Mult6_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Office4_Mult6_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name + Office4_Mult6_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_Flr_5 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_Flr_5 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_Flr_5 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_Flr_5 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_Flr_5 VAV Box Outlet Node, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_1_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + VAV_1_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_1_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_1_CoolC-VAV_1_HeatCNode, !- Air Inlet Node Name + VAV_1_HeatC-VAV_1_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_ER_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + VAV_ER_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_ER_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_ER_CoolC-VAV_ER_HeatCNode, !- Air Inlet Node Name + VAV_ER_HeatC-VAV_ER_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_OR_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + VAV_OR_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_OR_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_OR_CoolC-VAV_OR_HeatCNode, !- Air Inlet Node Name + VAV_OR_HeatC-VAV_OR_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_ICU_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + VAV_ICU_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_ICU_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_ICU_CoolC-VAV_ICU_HeatCNode, !- Air Inlet Node Name + VAV_ICU_HeatC-VAV_ICU_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_PATRMS_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + VAV_PATRMS_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_PATRMS_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_PATRMS_CoolC-VAV_PATRMS_HeatCNode, !- Air Inlet Node Name + VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_2_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + VAV_2_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_2_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_2_CoolC-VAV_2_HeatCNode, !- Air Inlet Node Name + VAV_2_HeatC-VAV_2_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_LABS_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + VAV_LABS_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_LABS_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_LABS_CoolC-VAV_LABS_HeatCNode, !- Air Inlet Node Name + VAV_LABS_HeatC-VAV_LABS_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + CAV_KITCHEN_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + CAV_KITCHEN_HeatCDemand Inlet Node, !- Water Inlet Node Name + CAV_KITCHEN_HeatCDemand Outlet Node, !- Water Outlet Node Name + CAV_KITCHEN_CoolC-CAV_KITCHEN_HeatCNode, !- Air Inlet Node Name + CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 48.89, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 35, !- Rated Outlet Water Temperature {C} + 40, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +!- =========== ALL OBJECTS IN CLASS: HUMIDIFIER:STEAM:ELECTRIC =========== + + Humidifier:Steam:Electric, + VAV_ER Humidifier, !- Name + ALWAYS_ON, !- Availability Schedule Name + 3.72E-5, !- Rated Capacity {m3/s} + 100000, !- Rated Power {W} + 0, !- Rated Fan Power {W} + 0, !- Standby Power {W} + VAV_ER_OA-VAV_ER HumidifierNode, !- Air Inlet Node Name + VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode; !- Air Outlet Node Name + + Humidifier:Steam:Electric, + VAV_OR Humidifier, !- Name + ALWAYS_ON, !- Availability Schedule Name + 3.72E-5, !- Rated Capacity {m3/s} + 100000, !- Rated Power {W} + 0, !- Rated Fan Power {W} + 0, !- Standby Power {W} + VAV_OR_OA-VAV_OR HumidifierNode, !- Air Inlet Node Name + VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode; !- Air Outlet Node Name + + Humidifier:Steam:Electric, + VAV_ICU Humidifier, !- Name + ALWAYS_ON, !- Availability Schedule Name + 3.72E-5, !- Rated Capacity {m3/s} + 100000, !- Rated Power {W} + 0, !- Rated Fan Power {W} + 0, !- Standby Power {W} + VAV_ICU_OA-VAV_ICU HumidifierNode, !- Air Inlet Node Name + VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode; !- Air Outlet Node Name + + Humidifier:Steam:Electric, + VAV_PATRMS Humidifier, !- Name + ALWAYS_ON, !- Availability Schedule Name + 3.72E-5, !- Rated Capacity {m3/s} + 100000, !- Rated Power {W} + 0, !- Rated Fan Power {W} + 0, !- Standby Power {W} + VAV_PATRMS_OA-VAV_PATRMS HumidifierNode, !- Air Inlet Node Name + VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode; !- Air Outlet Node Name + + Humidifier:Steam:Electric, + VAV_LABS Humidifier, !- Name + ALWAYS_ON, !- Availability Schedule Name + 3.72E-5, !- Rated Capacity {m3/s} + 100000, !- Rated Power {W} + 0, !- Rated Fan Power {W} + 0, !- Standby Power {W} + VAV_LABS_OA-VAV_LABS HumidifierNode, !- Air Inlet Node Name + VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode; !- Air Outlet Node Name + +!- =========== ALL OBJECTS IN CLASS: FAN:SIMPLE:VARIABLEVOLUME =========== + + Fan:VariableVolume, + VAV_1_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name +0.61425, !- Fan Total Efficiency +1389.42, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.25, !- Fan Power Minimum Flow Fraction + , !- Fan Power Minimum Air Flow Rate {m3/s} +0.945, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction +0.0408, !- Fan Power Coefficient 1 +0.088, !- Fan Power Coefficient 2 +-0.0729, !- Fan Power Coefficient 3 +0.9437, !- Fan Power Coefficient 4 +0, !- Fan Power Coefficient 5 + VAV_1_HeatC-VAV_1_FanNode, !- Air Inlet Node Name + VAV_1 Supply Equipment Outlet Node, !- Air Outlet Node Name + General; !- End-Use Subcategory + + Fan:VariableVolume, + VAV_2_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name +0.6175, !- Fan Total Efficiency +1314.72, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.25, !- Fan Power Minimum Flow Fraction + , !- Fan Power Minimum Air Flow Rate {m3/s} +0.95, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction +0.0408, !- Fan Power Coefficient 1 +0.088, !- Fan Power Coefficient 2 +-0.0729, !- Fan Power Coefficient 3 +0.9437, !- Fan Power Coefficient 4 +0, !- Fan Power Coefficient 5 + VAV_2_HeatC-VAV_2_FanNode, !- Air Inlet Node Name + VAV_2 Supply Equipment Outlet Node, !- Air Outlet Node Name + General; !- End-Use Subcategory + + + + + Fan:VariableVolume, + VAV_ER_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name +0.6045, !- Fan Total Efficiency +1314.72, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.25, !- Fan Power Minimum Flow Fraction + , !- Fan Power Minimum Air Flow Rate {m3/s} +0.93, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction +0.0408, !- Fan Power Coefficient 1 +0.088, !- Fan Power Coefficient 2 +-0.0729, !- Fan Power Coefficient 3 +0.9437, !- Fan Power Coefficient 4 +0, !- Fan Power Coefficient 5 + VAV_ER_HeatC-VAV_ER_FanNode, !- Air Inlet Node Name + VAV_ER Supply Equipment Outlet Node, !- Air Outlet Node Name + General; !- End-Use Subcategory + + Fan:VariableVolume, + VAV_OR_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name +0.61165, !- Fan Total Efficiency +1314.72, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} +0.941, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction +0.0408, !- Fan Power Coefficient 1 +0.088, !- Fan Power Coefficient 2 +-0.0729, !- Fan Power Coefficient 3 +0.9437, !- Fan Power Coefficient 4 +0, !- Fan Power Coefficient 5 + VAV_OR_HeatC-VAV_OR_FanNode, !- Air Inlet Node Name + VAV_OR Supply Equipment Outlet Node, !- Air Outlet Node Name + General; !- End-Use Subcategory + + Fan:VariableVolume, + VAV_ICU_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name +0.6045, !- Fan Total Efficiency +1389.42, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.25, !- Fan Power Minimum Flow Fraction + , !- Fan Power Minimum Air Flow Rate {m3/s} +0.93, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction +0.0408, !- Fan Power Coefficient 1 +0.088, !- Fan Power Coefficient 2 +-0.0729, !- Fan Power Coefficient 3 +0.9437, !- Fan Power Coefficient 4 +0, !- Fan Power Coefficient 5 + VAV_ICU_HeatC-VAV_ICU_FanNode, !- Air Inlet Node Name + VAV_ICU Supply Equipment Outlet Node, !- Air Outlet Node Name + General; !- End-Use Subcategory + + Fan:VariableVolume, + VAV_PATRMS_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name +0.61425, !- Fan Total Efficiency +1389.42, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} +0.945, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction +0.0408, !- Fan Power Coefficient 1 +0.088, !- Fan Power Coefficient 2 +-0.0729, !- Fan Power Coefficient 3 +0.9437, !- Fan Power Coefficient 4 +0, !- Fan Power Coefficient 5 + VAV_PATRMS_HeatC-VAV_PATRMS_FanNode, !- Air Inlet Node Name + VAV_PATRMS Supply Equipment Outlet Node, !- Air Outlet Node Name + General; !- End-Use Subcategory + + Fan:VariableVolume, + VAV_LABS_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name +0.59605, !- Fan Total Efficiency +1389.42, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.25, !- Fan Power Minimum Flow Fraction + , !- Fan Power Minimum Air Flow Rate {m3/s} +0.917, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction +0.18984763, !- Fan Power Coefficient 1 +0.31447014, !- Fan Power Coefficient 2 +0.49568211, !- Fan Power Coefficient 3 +0, !- Fan Power Coefficient 4 +0, !- Fan Power Coefficient 5 + VAV_LABS_HeatC-VAV_LABS_FanNode, !- Air Inlet Node Name + VAV_LABS Supply Equipment Outlet Node, !- Air Outlet Node Name + General; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: FAN:CONSTANTVOLUME =========== + + Fan:ConstantVolume, + CAV_KITCHEN_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name +0.61425, !- Fan Total Efficiency +1018.41, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} +0.945, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + CAV_KITCHEN_HeatC-CAV_KITCHEN_FanNode, !- Air Inlet Node Name + CAV_KITCHEN Supply Equipment Outlet Node, !- Air Outlet Node Name + General; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: ZONE EXHAUST FAN =========== + + Fan:ZoneExhaust, + Kitchen_Flr_5 Exhaust Fan, !- Name + Kitchen_Exhaust_SCH, !- Availability Schedule Name + 0.16, !- Fan Total Efficiency + 124.5, !- Pressure Rise {Pa} + 3.39802159631503, !- Maximum Flow Rate {m3/s} + Kitchen_Flr_5 Exhaust Fan Node, !- Air Inlet Node Name + Kitchen_Flr_5 Exhaust Fan Outlet Node, !- Air Outlet Node Name + General, !- End-Use Subcategory + , !- Flow Fraction Schedule Name + , !- System Availability Manager Coupling Mode + , !- Minimum Zone Temperature Limit Schedule Name + Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule; !- Balanced Exhaust Fraction Schedule Name Balanced Exhaust Fraction Schedule Name + + + + Schedule:Compact, + Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 07:00,0, !- Field 3 + Until: 24:00,0.445694444444444; !- Field 5 + + Fan:ZoneExhaust, + Dining_Flr_5 Dummy Exhaust Fan, !- Name + Kitchen_Exhaust_SCH, !- Availability Schedule Name + 1.0000, !- Fan Total Efficiency + 0, !- Pressure Rise {Pa} + 0.902363512799215, !- Maximum Flow Rate {m3/s} + Dining_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name + Dining_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + General; !- End-Use Subcategory + + Fan:ZoneExhaust, + NurseStn_Lobby_Flr_5 Dummy Exhaust Fan, !- Name + Kitchen_Exhaust_SCH, !- Availability Schedule Name + 1.0000, !- Fan Total Efficiency + 0, !- Pressure Rise {Pa} + 0.352072793173752, !- Maximum Flow Rate {m3/s} + NurseStn_Lobby_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name + NurseStn_Lobby_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + General; !- End-Use Subcategory + + Fan:ZoneExhaust, + Office1_Flr_5 Dummy Exhaust Fan, !- Name + Kitchen_Exhaust_SCH, !- Availability Schedule Name + 1.0000, !- Fan Total Efficiency + 0, !- Pressure Rise {Pa} + 0.0335082685192177, !- Maximum Flow Rate {m3/s} + Office1_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name + Office1_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + General; !- End-Use Subcategory + + Fan:ZoneExhaust, + Office2_Mult5_Flr_5 Dummy Exhaust Fan, !- Name + Kitchen_Exhaust_SCH, !- Availability Schedule Name + 1.0000, !- Fan Total Efficiency + 0, !- Pressure Rise {Pa} + 0.0335082685192177, !- Maximum Flow Rate {m3/s} + Office2_Mult5_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name + Office2_Mult5_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + General; !- End-Use Subcategory + + Fan:ZoneExhaust, + Office3_Flr_5 Dummy Exhaust Fan, !- Name + Kitchen_Exhaust_SCH, !- Availability Schedule Name + 1.0000, !- Fan Total Efficiency + 0, !- Pressure Rise {Pa} + 0.0335082685192177, !- Maximum Flow Rate {m3/s} + Office3_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name + Office3_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + General; !- End-Use Subcategory + + Fan:ZoneExhaust, + Office4_Mult6_Flr_5 Dummy Exhaust Fan, !- Name + Kitchen_Exhaust_SCH, !- Availability Schedule Name + 1.0000, !- Fan Total Efficiency + 0, !- Pressure Rise {Pa} + 0.00660726421505701, !- Maximum Flow Rate {m3/s} + Office4_Mult6_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name + Office4_Mult6_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + General; !- End-Use Subcategory + + Fan:ZoneExhaust, + Corridor_Flr_5 Dummy Exhaust Fan, !- Name + Kitchen_Exhaust_SCH, !- Availability Schedule Name + 1.0000, !- Fan Total Efficiency + 0, !- Pressure Rise {Pa} + 0.152910971834177, !- Maximum Flow Rate {m3/s} + Corridor_Flr_5 Dummy Exhaust Fan Node, !- Air Inlet Node Name + Corridor_Flr_5 Dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + General; !- End-Use Subcategory +!- =========== ALL OBJECTS IN CLASS: HEATEXCHANGER:AIRTOAIR:SENSIBLEANDLATENT =========== + + HeatExchanger:AirToAir:SensibleAndLatent, + ICU OA Heat Recovery, !- Name + Always_On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s} + 0.70, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.70, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.75, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.75, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + VAV_ICU_OAInlet Node, !- Supply Air Inlet Node Name + ICU Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + VAV_ICU_OARelief Node, !- Exhaust Air Inlet Node Name + ICU Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 1539.37265225, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44; !- Rate of Defrost Time Fraction Increase {1/K} + + +!- =========== ALL OBJECTS IN CLASS: HEATEXCHANGER:AIRTOAIR:SENSIBLEANDLATENT =========== + + HeatExchanger:AirToAir:SensibleAndLatent, + PATRMS OA Heat Recovery, !- Name + Always_On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s} + 0.70, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.70, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.75, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.75, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + VAV_PATRMS_OAInlet Node, !- Supply Air Inlet Node Name + PATRMS Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + VAV_PATRMS_OARelief Node,!- Exhaust Air Inlet Node Name + PATRMS Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 3273.229555, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44; !- Rate of Defrost Time Fraction Increase {1/K} + + + + HeatExchanger:AirToAir:SensibleAndLatent, + VAV_1 OA Heat Recovery, !- Name + Always_On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate {m3/s} + 0.70, !- Sensible Effectiveness at 100% Heating Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 100% Heating Air Flow {dimensionless} + 0.70, !- Sensible Effectiveness at 75% Heating Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 75% Heating Air Flow {dimensionless} + 0.75, !- Sensible Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 100% Cooling Air Flow {dimensionless} + 0.75, !- Sensible Effectiveness at 75% Cooling Air Flow {dimensionless} + 0.60, !- Latent Effectiveness at 75% Cooling Air Flow {dimensionless} + VAV_1_OAInlet Node, !- Supply Air Inlet Node Name + VAV_1 Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + VAV_1_OARelief Node, !- Exhaust Air Inlet Node Name + VAV_1 Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 3154.26375, !- Nominal Electric Power {W} + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature {C} + 0.167, !- Initial Defrost Time Fraction {dimensionless} + 1.44; !- Rate of Defrost Time Fraction Increase {1/K} + + + + + + + Curve:Cubic, + Tower_Fan_Curve, !- Name + 0, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 1, !- Coefficient4 x**3 + 0.0, !- Minimum Value of x + 1.0; !- Maximum Value of x + +!- =========== ALL OBJECTS IN CLASS: HEATEXCHANGER:FLUIDTOFLUID =========== + + HeatExchanger:FluidToFluid, + Heat Recovery Chiller Bypass Heat Exchanger, !- Name + Bypass Heat Exchanger Status, !- Availability Schedule Name + Heat Recovery Chiller Bypass Heat Exchanger Demand Side Inlet, !- Loop Demand Side Inlet Node Name + Heat Recovery Chiller Bypass Heat Exchanger Demand Side Outlet, !- Loop Demand Side Outlet Node Name + autosize, !- Loop Demand Side Design Flow Rate {m3/s} + CoolSys1 Demand Supply Side Inlet Pipe Outlet Node, !- Loop Supply Side Inlet Node Name + Heat Recovery Chiller Bypass Heat Exchanger Outlet, !- Loop Supply Side Outlet Node Name + autosize, !- Loop Supply Side Design Flow Rate {m3/s} + Ideal, !- Heat Exchange Model Type + autosize, !- Heat Exchanger U-Factor Times Area Value {W/K} + UncontrolledOn, !- Control Type + , !- Heat Exchanger Setpoint Node Name + , !- Minimum Temperature Difference to Activate Heat Exchanger {deltaC} + LoopToLoop, !- Heat Transfer Metering End Use Type + , !- Component Override Loop Supply Side Inlet Node Name + , !- Component Override Loop Demand Side Inlet Node Name + Loop, !- Component Override Cooling Control Temperature Mode + 1; !- Sizing Factor + + +HeatExchanger:FluidToFluid, + Bypass Heat Exchanger , !- Name + ALWAYS_ON, !- Availability Schedule Name + CoolSys1 Exchanger Supply Inlet Node, !- Loop Demand Side Inlet Node Name + CoolSys1 Exchanger Supply Outlet Node, !- Loop Demand Side Outlet Node Name + autosize, !- Loop Demand Side Design Flow Rate {m3/s} + CoolSys1 Exchanger Demand Inlet Node, !- Loop Supply Side Inlet Node Name + CoolSys1 Exchanger Demand Outlet Node, !- Loop Supply Side Outlet Node Name + autosize, !- Loop Supply Side Design Flow Rate {m3/s} + Ideal, !- Heat Exchange Model Type + autosize, !- Heat Exchanger U-Factor Times Area Value {W/K} + UncontrolledOn, !- Control Type + , !- Heat Exchanger Setpoint Node Name + 0.01, !- Minimum Temperature Difference to Activate Heat Exchanger {deltaC} + LoopToLoop, !- Heat Transfer Metering End Use Type + , !- Component Override Loop Supply Side Inlet Node Name + , !- Component Override Loop Demand Side Inlet Node Name + Loop, !- Component Override Cooling Control Temperature Mode + 1; !- Sizing Factor + +!- =========== ALL OBJECTS IN CLASS: WATER USE EQUIPMENT =========== + + + WaterUse:Equipment, + ER_Exam1_Mult4_Flr_1 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + ER_Exam1_Mult4_Flr_1 sub cat Temp Sched, !- Target Temperature Schedule Name + ER_Exam1_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + ER_Exam1_Mult4_Flr_1, !- Zone Name + ER_Exam1_Mult4_Flr_1 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + ER_Exam1_Mult4_Flr_1 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + ER_Trauma1_Flr_1 sub cat,!- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + ER_Trauma1_Flr_1 sub cat Temp Sched, !- Target Temperature Schedule Name + ER_Trauma1_Flr_1 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + ER_Trauma1_Flr_1, !- Zone Name + ER_Trauma1_Flr_1 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + ER_Trauma1_Flr_1 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + ER_Exam3_Mult4_Flr_1 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + ER_Exam3_Mult4_Flr_1 sub cat Temp Sched, !- Target Temperature Schedule Name + ER_Exam3_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + ER_Exam3_Mult4_Flr_1, !- Zone Name + ER_Exam3_Mult4_Flr_1 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + ER_Exam3_Mult4_Flr_1 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + ER_Trauma2_Flr_1 sub cat,!- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + ER_Trauma2_Flr_1 sub cat Temp Sched, !- Target Temperature Schedule Name + ER_Trauma2_Flr_1 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + ER_Trauma2_Flr_1, !- Zone Name + ER_Trauma2_Flr_1 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + ER_Trauma2_Flr_1 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + ER_Triage_Mult4_Flr_1 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + ER_Triage_Mult4_Flr_1 sub cat Temp Sched, !- Target Temperature Schedule Name + ER_Triage_Mult4_Flr_1 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + ER_Triage_Mult4_Flr_1, !- Zone Name + ER_Triage_Mult4_Flr_1 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + ER_Triage_Mult4_Flr_1 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + OR1_Flr_2 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 2.11111111111111E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + OR1_Flr_2 sub cat Temp Sched, !- Target Temperature Schedule Name + OR1_Flr_2 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + OR1_Flr_2, !- Zone Name + OR1_Flr_2 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + OR1_Flr_2 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + OR2_Mult5_Flr_2 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 2.11111111111111E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + OR2_Mult5_Flr_2 sub cat Temp Sched, !- Target Temperature Schedule Name + OR2_Mult5_Flr_2 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + OR2_Mult5_Flr_2, !- Zone Name + OR2_Mult5_Flr_2 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + OR2_Mult5_Flr_2 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + OR3_Flr_2 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 2.11111111111111E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + OR3_Flr_2 sub cat Temp Sched, !- Target Temperature Schedule Name + OR3_Flr_2 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + OR3_Flr_2, !- Zone Name + OR3_Flr_2 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + OR3_Flr_2 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + OR4_Flr_2 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 6.30555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + OR4_Flr_2 sub cat Temp Sched, !- Target Temperature Schedule Name + OR4_Flr_2 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + OR4_Flr_2, !- Zone Name + OR4_Flr_2 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + OR4_Flr_2 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom1_Mult10_Flr_3 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom1_Mult10_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom1_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom1_Mult10_Flr_3, !- Zone Name + PatRoom1_Mult10_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom1_Mult10_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom2_Flr_3 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom2_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom2_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom2_Flr_3, !- Zone Name + PatRoom2_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom2_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom3_Mult10_Flr_3 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom3_Mult10_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom3_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom3_Mult10_Flr_3, !- Zone Name + PatRoom3_Mult10_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom3_Mult10_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom4_Flr_3 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom4_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom4_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom4_Flr_3, !- Zone Name + PatRoom4_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom4_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom5_Mult10_Flr_3 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom5_Mult10_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom5_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom5_Mult10_Flr_3, !- Zone Name + PatRoom5_Mult10_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom5_Mult10_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PhysTherapy_Flr_3 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + PhysTherapy_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name + PhysTherapy_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PhysTherapy_Flr_3, !- Zone Name + PhysTherapy_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PhysTherapy_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom6_Flr_3 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom6_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom6_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom6_Flr_3, !- Zone Name + PatRoom6_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom6_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom7_Mult10_Flr_3 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom7_Mult10_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom7_Mult10_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom7_Mult10_Flr_3, !- Zone Name + PatRoom7_Mult10_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom7_Mult10_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom8_Flr_3 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom8_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom8_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom8_Flr_3, !- Zone Name + PatRoom8_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom8_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + Lab_Flr_3 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 2.11111111111111E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Lab_Flr_3 sub cat Temp Sched, !- Target Temperature Schedule Name + Lab_Flr_3 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Lab_Flr_3, !- Zone Name + Lab_Flr_3 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + Lab_Flr_3 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom1_Mult10_Flr_4 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom1_Mult10_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom1_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom1_Mult10_Flr_4, !- Zone Name + PatRoom1_Mult10_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom1_Mult10_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom2_Flr_4 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom2_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom2_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom2_Flr_4, !- Zone Name + PatRoom2_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom2_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom3_Mult10_Flr_4 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom3_Mult10_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom3_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom3_Mult10_Flr_4, !- Zone Name + PatRoom3_Mult10_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom3_Mult10_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom4_Flr_4 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom4_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom4_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom4_Flr_4, !- Zone Name + PatRoom4_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom4_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom5_Mult10_Flr_4 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom5_Mult10_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom5_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom5_Mult10_Flr_4, !- Zone Name + PatRoom5_Mult10_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom5_Mult10_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + Radiology_Flr_4 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + Radiology_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name + Radiology_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Radiology_Flr_4, !- Zone Name + Radiology_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + Radiology_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom6_Flr_4 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom6_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom6_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom6_Flr_4, !- Zone Name + PatRoom6_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom6_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom7_Mult10_Flr_4 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom7_Mult10_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom7_Mult10_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom7_Mult10_Flr_4, !- Zone Name + PatRoom7_Mult10_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom7_Mult10_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + PatRoom8_Flr_4 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 1.05555555555556E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + PatRoom8_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name + PatRoom8_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + PatRoom8_Flr_4, !- Zone Name + PatRoom8_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + PatRoom8_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + Lab_Flr_4 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 2.11111111111111E-6, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Lab_Flr_4 sub cat Temp Sched, !- Target Temperature Schedule Name + Lab_Flr_4 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Lab_Flr_4, !- Zone Name + Lab_Flr_4 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + Lab_Flr_4 sub cat Latent fract sched; !- Latent Fraction Schedule Name + + + + WaterUse:Equipment, + Kitchen_Flr_5 sub cat, !- Name + WaterUse, !- End-Use Subcategory + 6.059182e-5, !- Peak Flow Rate {m3/s} + BLDG_SWH_EXTD_SCH, !- Flow Rate Fraction Schedule Name + Kitchen_Flr_5 sub cat Temp Sched, !- Target Temperature Schedule Name + Kitchen_Flr_5 sub catHot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Kitchen_Flr_5, !- Zone Name + Kitchen_Flr_5 sub cat Sensible fract sched, !- Sensible Fraction Schedule Name + Kitchen_Flr_5 sub cat Latent fract sched; !- Latent Fraction Schedule Name + +!- =========== ALL OBJECTS IN CLASS: WATER USE CONNECTIONS =========== + + WaterUse:Connections, + ER_Exam1_Mult4_Flr_1 sub cat, !- Name + ER_Exam1_Mult4_Flr_1 sub cat Water Inlet Node, !- Inlet Node Name + ER_Exam1_Mult4_Flr_1 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + ER_Exam1_Mult4_Flr_1 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + ER_Trauma1_Flr_1 sub cat,!- Name + ER_Trauma1_Flr_1 sub cat Water Inlet Node, !- Inlet Node Name + ER_Trauma1_Flr_1 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + ER_Trauma1_Flr_1 sub cat;!- Water Use Equipment 1 Name + + WaterUse:Connections, + ER_Exam3_Mult4_Flr_1 sub cat, !- Name + ER_Exam3_Mult4_Flr_1 sub cat Water Inlet Node, !- Inlet Node Name + ER_Exam3_Mult4_Flr_1 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + ER_Exam3_Mult4_Flr_1 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + ER_Trauma2_Flr_1 sub cat,!- Name + ER_Trauma2_Flr_1 sub cat Water Inlet Node, !- Inlet Node Name + ER_Trauma2_Flr_1 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + ER_Trauma2_Flr_1 sub cat;!- Water Use Equipment 1 Name + + WaterUse:Connections, + ER_Triage_Mult4_Flr_1 sub cat, !- Name + ER_Triage_Mult4_Flr_1 sub cat Water Inlet Node, !- Inlet Node Name + ER_Triage_Mult4_Flr_1 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + ER_Triage_Mult4_Flr_1 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + OR1_Flr_2 sub cat, !- Name + OR1_Flr_2 sub cat Water Inlet Node, !- Inlet Node Name + OR1_Flr_2 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + OR1_Flr_2 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + OR2_Mult5_Flr_2 sub cat, !- Name + OR2_Mult5_Flr_2 sub cat Water Inlet Node, !- Inlet Node Name + OR2_Mult5_Flr_2 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + OR2_Mult5_Flr_2 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + OR3_Flr_2 sub cat, !- Name + OR3_Flr_2 sub cat Water Inlet Node, !- Inlet Node Name + OR3_Flr_2 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + OR3_Flr_2 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + OR4_Flr_2 sub cat, !- Name + OR4_Flr_2 sub cat Water Inlet Node, !- Inlet Node Name + OR4_Flr_2 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + OR4_Flr_2 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom1_Mult10_Flr_3 sub cat, !- Name + PatRoom1_Mult10_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom1_Mult10_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom1_Mult10_Flr_3 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom2_Flr_3 sub cat, !- Name + PatRoom2_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom2_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom2_Flr_3 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom3_Mult10_Flr_3 sub cat, !- Name + PatRoom3_Mult10_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom3_Mult10_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom3_Mult10_Flr_3 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom4_Flr_3 sub cat, !- Name + PatRoom4_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom4_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom4_Flr_3 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom5_Mult10_Flr_3 sub cat, !- Name + PatRoom5_Mult10_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom5_Mult10_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom5_Mult10_Flr_3 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PhysTherapy_Flr_3 sub cat, !- Name + PhysTherapy_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name + PhysTherapy_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PhysTherapy_Flr_3 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom6_Flr_3 sub cat, !- Name + PatRoom6_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom6_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom6_Flr_3 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom7_Mult10_Flr_3 sub cat, !- Name + PatRoom7_Mult10_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom7_Mult10_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom7_Mult10_Flr_3 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom8_Flr_3 sub cat, !- Name + PatRoom8_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom8_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom8_Flr_3 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + Lab_Flr_3 sub cat, !- Name + Lab_Flr_3 sub cat Water Inlet Node, !- Inlet Node Name + Lab_Flr_3 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + Lab_Flr_3 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom1_Mult10_Flr_4 sub cat, !- Name + PatRoom1_Mult10_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom1_Mult10_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom1_Mult10_Flr_4 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom2_Flr_4 sub cat, !- Name + PatRoom2_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom2_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom2_Flr_4 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom3_Mult10_Flr_4 sub cat, !- Name + PatRoom3_Mult10_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom3_Mult10_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom3_Mult10_Flr_4 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom4_Flr_4 sub cat, !- Name + PatRoom4_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom4_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom4_Flr_4 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom5_Mult10_Flr_4 sub cat, !- Name + PatRoom5_Mult10_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom5_Mult10_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom5_Mult10_Flr_4 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + Radiology_Flr_4 sub cat, !- Name + Radiology_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name + Radiology_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + Radiology_Flr_4 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom6_Flr_4 sub cat, !- Name + PatRoom6_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom6_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom6_Flr_4 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom7_Mult10_Flr_4 sub cat, !- Name + PatRoom7_Mult10_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom7_Mult10_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom7_Mult10_Flr_4 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + PatRoom8_Flr_4 sub cat, !- Name + PatRoom8_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name + PatRoom8_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + PatRoom8_Flr_4 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + Lab_Flr_4 sub cat, !- Name + Lab_Flr_4 sub cat Water Inlet Node, !- Inlet Node Name + Lab_Flr_4 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + Lab_Flr_4 sub cat; !- Water Use Equipment 1 Name + + WaterUse:Connections, + Kitchen_Flr_5 sub cat, !- Name + Kitchen_Flr_5 sub cat Water Inlet Node, !- Inlet Node Name + Kitchen_Flr_5 sub cat Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + Kitchen_Flr_5 sub cat; !- Water Use Equipment 1 Name + +!No PV for this case +!- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:SENSOR =========== + + EnergyManagementSystem:Sensor, + T_OA, !- Name + , !- Output:Variable or Output:Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Patrms_FanMassFlow, !- Name + VAV_PATRMS Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Patrms_Humidifier_Status,!- Name + VAV_PATRMS Humidifier, !- Output:Variable or Output:Meter Index Key Name + Humidifier Water Volume Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Patrms_HeatC_Status, !- Name + VAV_PATRMS_HeatC, !- Output:Variable or Output:Meter Index Key Name + Heating Coil Heating Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Patrms_AfterHumidifier_Temp, !- Name + VAV_PATRMS Humidifier-VAV_PATRMS_ExtraElecHeatCNode, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Patrms_AfterElecHeatC_Temp, !- Name + VAV_PATRMS EXTRAELECHEATC-VAV_PATRMS_EXTRAWATERHEATCNODE, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ER_FanMassFlow, !- Name + VAV_ER Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ER_Humidifier_Status, !- Name + VAV_ER Humidifier, !- Output:Variable or Output:Meter Index Key Name + Humidifier Water Volume Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ER_HeatC_Status, !- Name + VAV_ER_HeatC, !- Output:Variable or Output:Meter Index Key Name + Heating Coil Heating Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ER_AfterHumidifier_Temp, !- Name + VAV_ER Humidifier-VAV_ER_ExtraElecHeatCNode, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ER_AfterElecHeatC_Temp, !- Name + VAV_ER EXTRAELECHEATC-VAV_ER_EXTRAWATERHEATCNODE, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + OR_FanMassFlow, !- Name + VAV_OR Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + OR_Humidifier_Status, !- Name + VAV_OR Humidifier, !- Output:Variable or Output:Meter Index Key Name + Humidifier Water Volume Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + OR_HeatC_Status, !- Name + VAV_OR_HeatC, !- Output:Variable or Output:Meter Index Key Name + Heating Coil Heating Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + OR_AfterHumidifier_Temp, !- Name + VAV_OR Humidifier-VAV_OR_ExtraElecHeatCNode, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + OR_AfterElecHeatC_Temp, !- Name + VAV_OR EXTRAELECHEATC-VAV_OR_EXTRAWATERHEATCNODE, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ICU_FanMassFlow, !- Name + VAV_ICU Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ICU_Humidifier_Status, !- Name + VAV_ICU Humidifier, !- Output:Variable or Output:Meter Index Key Name + Humidifier Water Volume Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ICU_HeatC_Status, !- Name + VAV_ICU_HeatC, !- Output:Variable or Output:Meter Index Key Name + Heating Coil Heating Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ICU_AfterHumidifier_Temp,!- Name + VAV_ICU Humidifier-VAV_ICU_ExtraElecHeatCNode, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + ICU_AfterElecHeatC_Temp, !- Name + VAV_ICU EXTRAELECHEATC-VAV_ICU_EXTRAWATERHEATCNODE, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + LABS_FanMassFlow, !- Name + VAV_LABS Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + LABS_Humidifier_Status, !- Name + VAV_LABS Humidifier, !- Output:Variable or Output:Meter Index Key Name + Humidifier Water Volume Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + LABS_HeatC_Status, !- Name + VAV_LABS_HeatC, !- Output:Variable or Output:Meter Index Key Name + Heating Coil Heating Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + LABS_AfterHumidifier_Temp, !- Name + VAV_LABS Humidifier-VAV_LABS_ExtraElecHeatCNode, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + LABS_AfterElecHeatC_Temp,!- Name + VAV_LABS EXTRAELECHEATC-VAV_LABS_EXTRAWATERHEATCNODE, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + HotWaterDemand, !- Name + HeatSys1, !- Output:Variable or Output:Meter Index Key Name + Plant Supply Side Heating Demand Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + CHWR, + Heat Recovery Chiller Inlet, + System Node Temperature; + + + +!- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:ACTUATOR =========== + + EnergyManagementSystem:Actuator, + Patrms_ExtraElecHeatC_SP,!- Name + VAV_PATRMS EXTRAELECHEATC-VAV_PATRMS_EXTRAWATERHEATCNODE, !- Actuated Component Unique Name + System Node Setpoint, !- Actuated Component Type + Temperature Setpoint; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + Patrms_ExtraWaterHeatC_SP, !- Name + VAV_PATRMS ExtraWaterHeatC-VAV_PATRMS_CoolCNode, !- Actuated Component Unique Name + System Node Setpoint, !- Actuated Component Type + Temperature Setpoint; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + Patrms_ExtraElecHeatC_Status, !- Name + Patrms_ExtraElecHeatC_Sch, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + Patrms_ExtraWaterHeatC_Status, !- Name + Patrms_ExtraWaterHeatC_Sch, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + ER_ExtraElecHeatC_SP, !- Name + VAV_ER EXTRAELECHEATC-VAV_ER_EXTRAWATERHEATCNODE, !- Actuated Component Unique Name + System Node Setpoint, !- Actuated Component Type + Temperature Setpoint; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + ER_ExtraWaterHeatC_SP, !- Name + VAV_ER ExtraWaterHeatC-VAV_ER_CoolCNode, !- Actuated Component Unique Name + System Node Setpoint, !- Actuated Component Type + Temperature Setpoint; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + ER_ExtraElecHeatC_Status,!- Name + ER_ExtraElecHeatC_Sch, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + ER_ExtraWaterHeatC_Status, !- Name + ER_ExtraWaterHeatC_Sch, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + OR_ExtraElecHeatC_SP, !- Name + VAV_OR EXTRAELECHEATC-VAV_OR_EXTRAWATERHEATCNODE, !- Actuated Component Unique Name + System Node Setpoint, !- Actuated Component Type + Temperature Setpoint; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + OR_ExtraWaterHeatC_SP, !- Name + VAV_OR ExtraWaterHeatC-VAV_OR_CoolCNode, !- Actuated Component Unique Name + System Node Setpoint, !- Actuated Component Type + Temperature Setpoint; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + OR_ExtraElecHeatC_Status,!- Name + OR_ExtraElecHeatC_Sch, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + OR_ExtraWaterHeatC_Status, !- Name + OR_ExtraWaterHeatC_Sch, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + ICU_ExtraElecHeatC_SP, !- Name + VAV_ICU EXTRAELECHEATC-VAV_ICU_EXTRAWATERHEATCNODE, !- Actuated Component Unique Name + System Node Setpoint, !- Actuated Component Type + Temperature Setpoint; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + ICU_ExtraWaterHeatC_SP, !- Name + VAV_ICU ExtraWaterHeatC-VAV_ICU_CoolCNode, !- Actuated Component Unique Name + System Node Setpoint, !- Actuated Component Type + Temperature Setpoint; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + ICU_ExtraElecHeatC_Status, !- Name + ICU_ExtraElecHeatC_Sch, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + ICU_ExtraWaterHeatC_Status, !- Name + ICU_ExtraWaterHeatC_Sch, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + LABS_ExtraElecHeatC_SP, !- Name + VAV_LABS EXTRAELECHEATC-VAV_LABS_EXTRAWATERHEATCNODE, !- Actuated Component Unique Name + System Node Setpoint, !- Actuated Component Type + Temperature Setpoint; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + LABS_ExtraWaterHeatC_SP, !- Name + VAV_LABS ExtraWaterHeatC-VAV_LABS_CoolCNode, !- Actuated Component Unique Name + System Node Setpoint, !- Actuated Component Type + Temperature Setpoint; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + LABS_ExtraElecHeatC_Status, !- Name + LABS_ExtraElecHeatC_Sch, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + LABS_ExtraWaterHeatC_Status, !- Name + LABS_ExtraWaterHeatC_Sch,!- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + BypassHXStatus, !- Name + Bypass Heat Exchanger Status, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + HRC_SPM_Reset, !- Name + Heat Recovery Chiller Bypass Loop Setpoint Schedule, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + + +!- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:PROGRAMCALLINGMANAGER =========== + + EnergyManagementSystem:ProgramCallingManager, + Patrms_Main_Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + Patrms_Main; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + ER_Main_Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + ER_Main; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + OR_Main_Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + OR_Main; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + ICU_Main_Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + ICU_Main; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + LABS_Main_Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + LABS_Main; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + BypassHXStatus_Manager, !- Name + AfterPredictorBeforeHVACManagers, !- EnergyPlus Model Calling Point + BypassHXStatus_Prg; !- Program Name 1 + + + +!- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:PROGRAM =========== + + EnergyManagementSystem:Program, + Patrms_Main, !- Name + IF Patrms_Humidifier_Status > 0, !- Program Line 1 + SET Patrms_ExtraElecHeatC_Status = 1, !- Program Line 2 + SET Patrms_ExtraElecHeatC_SP = Patrms_AfterHumidifier_Temp + 0.36, !- + ELSE, !- + SET Patrms_ExtraElecHeatC_Status = 0, !- + SET Patrms_ExtraElecHeatC_SP = NULL, !- + ENDIF, !- + IF T_OA < 10 && Patrms_HeatC_Status >0, !- + SET HeatGain = 0 * (Patrms_FanDesignMass/1.2) *2118, !- + SET FlowRate = (Patrms_FanMassFlow/1.2)*2118, !- + SET Patrms_PreheatDeltaT = HeatGain/(1.08*FlowRate), !- + SET Patrms_ExtraWaterHeatC_Status = 1, !- + SET Patrms_ExtraWaterHeatC_SP = Patrms_AfterElecHeatC_Temp + Patrms_PreheatDeltaT, !- + ELSE, !- + SET Patrms_ExtraWaterHeatC_Status = 0, !- + SET Patrms_ExtraWaterHeatC_SP = NULL, !- + ENDIF; !- + + + EnergyManagementSystem:Program, + ER_Main, !- Name + IF ER_Humidifier_Status > 0, !- Program Line 1 + SET ER_ExtraElecHeatC_Status = 1, !- Program Line 2 + SET ER_ExtraElecHeatC_SP = ER_AfterHumidifier_Temp + 0.36, !- + ELSE, !- + SET ER_ExtraElecHeatC_Status = 0, !- + SET ER_ExtraElecHeatC_SP = NULL, !- + ENDIF, !- + IF T_OA < 10 && ER_HeatC_Status >0, !- + SET HeatGain = 0 * (ER_FanDesignMass/1.2) *2118, !- + SET FlowRate = (ER_FanMassFlow/1.2)*2118, !- + SET ER_PreheatDeltaT = HeatGain/(1.08*FlowRate), !- + SET ER_ExtraWaterHeatC_Status = 1, !- + SET ER_ExtraWaterHeatC_SP = ER_AfterElecHeatC_Temp + ER_PreheatDeltaT, !- + ELSE, !- + SET ER_ExtraWaterHeatC_Status = 0, !- + SET ER_ExtraWaterHeatC_SP = NULL, !- + ENDIF; !- + + + EnergyManagementSystem:Program, + OR_Main, !- Name + IF OR_Humidifier_Status > 0, !- Program Line 1 + SET OR_ExtraElecHeatC_Status = 1, !- Program Line 2 + SET OR_ExtraElecHeatC_SP = OR_AfterHumidifier_Temp + 0.36, !- + ELSE, !- + SET OR_ExtraElecHeatC_Status = 0, !- + SET OR_ExtraElecHeatC_SP = NULL, !- + ENDIF, !- + IF T_OA < 10 && OR_HeatC_Status >0, !- + SET HeatGain = 0 * (OR_FanDesignMass/1.2) *2118, !- + SET FlowRate = (OR_FanMassFlow/1.2)*2118, !- + SET OR_PreheatDeltaT = HeatGain/(1.08*FlowRate), !- + SET OR_ExtraWaterHeatC_Status = 1, !- + SET OR_ExtraWaterHeatC_SP = OR_AfterElecHeatC_Temp + OR_PreheatDeltaT, !- + ELSE, !- + SET OR_ExtraWaterHeatC_Status = 0, !- + SET OR_ExtraWaterHeatC_SP = NULL, !- + ENDIF; !- + + + EnergyManagementSystem:Program, + ICU_Main, !- Name + IF ICU_Humidifier_Status > 0, !- Program Line 1 + SET ICU_ExtraElecHeatC_Status = 1, !- Program Line 2 + SET ICU_ExtraElecHeatC_SP = ICU_AfterHumidifier_Temp + 0.36, !- + ELSE, !- + SET ICU_ExtraElecHeatC_Status = 0, !- + SET ICU_ExtraElecHeatC_SP = NULL, !- + ENDIF, !- + IF T_OA < 10 && ICU_HeatC_Status >0, !- + SET HeatGain = 0 * (ICU_FanDesignMass/1.2) *2118, !- + SET FlowRate = (ICU_FanMassFlow/1.2)*2118, !- + SET ICU_PreheatDeltaT = HeatGain/(1.08*FlowRate), !- + SET ICU_ExtraWaterHeatC_Status = 1, !- + SET ICU_ExtraWaterHeatC_SP = ICU_AfterElecHeatC_Temp + ICU_PreheatDeltaT, !- + ELSE, !- + SET ICU_ExtraWaterHeatC_Status = 0, !- + SET ICU_ExtraWaterHeatC_SP = NULL, !- + ENDIF; !- + + + EnergyManagementSystem:Program, + LABS_Main, !- Name + IF LABS_Humidifier_Status > 0, !- Program Line 1 + SET LABS_ExtraElecHeatC_Status = 1, !- Program Line 2 + SET LABS_ExtraElecHeatC_SP = LABS_AfterHumidifier_Temp + 0.36, !- + ELSE, !- + SET LABS_ExtraElecHeatC_Status = 0, !- + SET LABS_ExtraElecHeatC_SP = NULL, !- + ENDIF, !- + IF T_OA < 10 && LABS_HeatC_Status >0, !- + SET HeatGain = 0 * (LABS_FanDesignMass/1.2) *2118, !- + SET FlowRate = (LABS_FanMassFlow/1.2)*2118, !- + SET LABS_PreheatDeltaT = HeatGain/(1.08*FlowRate), !- + SET LABS_ExtraWaterHeatC_Status = 1, !- + SET LABS_ExtraWaterHeatC_SP = LABS_AfterElecHeatC_Temp + LABS_PreheatDeltaT, !- + ELSE, !- + SET LABS_ExtraWaterHeatC_Status = 0, !- + SET LABS_ExtraWaterHeatC_SP = NULL, !- + ENDIF; !- + + + + EnergyManagementSystem:Program, ! HtRecChlr + BypassHXStatus_Prg, !- Name + SET HLOAD = HotWaterDemand / (132274.6404 * ((1/4.47) + 1)), ! HtRecChlr EMS HR Chiller Condenser Capacity + SET HLOAD = @Min HLOAD 1, + SET HLOAD = CHWR - (HLOAD * 8.33), + SET HLOAD = @Max HLOAD 6.7, + SET HRC_SPM_Reset = @Min HLOAD 14.44; + + EnergyManagementSystem:GlobalVariable, + HLOAD; !- Erl Variable 1 Name + +!- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:GLOBALVARIABLE =========== + + EnergyManagementSystem:GlobalVariable, + Patrms_PreheatDeltaT; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + ER_PreheatDeltaT; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + OR_PreheatDeltaT; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + ICU_PreheatDeltaT; !- Erl Variable 1 Name + + EnergyManagementSystem:GlobalVariable, + LABS_PreheatDeltaT; !- Erl Variable 1 Name + +!- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:OUTPUTVARIABLE =========== + + EnergyManagementSystem:OutputVariable, + Patrms_ExtraElecHeatC_Status, !- Name + Patrms_ExtraElecHeatC_Status, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + Patrms_ExtraWaterHeatC_Status, !- Name + Patrms_ExtraWaterHeatC_Status, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + Patrms_ExtraElecHeatC_SP,!- Name + Patrms_ExtraElecHeatC_SP,!- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + Patrms_ExtraWaterHeatC_SP, !- Name + Patrms_ExtraWaterHeatC_SP, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + Patrms_PreheatDeltaT, !- Name + Patrms_PreheatDeltaT, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + ER_ExtraElecHeatC_Status,!- Name + ER_ExtraElecHeatC_Status,!- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + ER_ExtraWaterHeatC_Status, !- Name + ER_ExtraWaterHeatC_Status, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + ER_ExtraElecHeatC_SP, !- Name + ER_ExtraElecHeatC_SP, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + ER_ExtraWaterHeatC_SP, !- Name + ER_ExtraWaterHeatC_SP, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + ER_PreheatDeltaT, !- Name + ER_PreheatDeltaT, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + OR_ExtraElecHeatC_Status,!- Name + OR_ExtraElecHeatC_Status,!- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + OR_ExtraWaterHeatC_Status, !- Name + OR_ExtraWaterHeatC_Status, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + OR_ExtraElecHeatC_SP, !- Name + OR_ExtraElecHeatC_SP, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + OR_ExtraWaterHeatC_SP, !- Name + OR_ExtraWaterHeatC_SP, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + OR_PreheatDeltaT, !- Name + OR_PreheatDeltaT, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + ICU_ExtraElecHeatC_Status, !- Name + ICU_ExtraElecHeatC_Status, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + ICU_ExtraWaterHeatC_Status, !- Name + ICU_ExtraWaterHeatC_Status, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + ICU_ExtraElecHeatC_SP, !- Name + ICU_ExtraElecHeatC_SP, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + ICU_ExtraWaterHeatC_SP, !- Name + ICU_ExtraWaterHeatC_SP, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + ICU_PreheatDeltaT, !- Name + ICU_PreheatDeltaT, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + LABS_ExtraElecHeatC_Status, !- Name + LABS_ExtraElecHeatC_Status, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + LABS_ExtraWaterHeatC_Status, !- Name + LABS_ExtraWaterHeatC_Status, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + LABS_ExtraElecHeatC_SP, !- Name + LABS_ExtraElecHeatC_SP, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + LABS_ExtraWaterHeatC_SP, !- Name + LABS_ExtraWaterHeatC_SP, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + + EnergyManagementSystem:OutputVariable, + LABS_PreheatDeltaT, !- Name + LABS_PreheatDeltaT, !- EMS Variable Name + Averaged, !- Type of Data in Variable + SystemTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + ; !- Units + +!- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:INTERNALVARIABLE =========== + + EnergyManagementSystem:InternalVariable, + Patrms_FanDesignMass, !- Name + VAV_PATRMS_Fan, !- Internal Data Index Key Name + Fan Maximum Mass Flow Rate; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + ER_FanDesignMass, !- Name + VAV_ER_Fan, !- Internal Data Index Key Name + Fan Maximum Mass Flow Rate; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + OR_FanDesignMass, !- Name + VAV_OR_Fan, !- Internal Data Index Key Name + Fan Maximum Mass Flow Rate; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + ICU_FanDesignMass, !- Name + VAV_ICU_Fan, !- Internal Data Index Key Name + Fan Maximum Mass Flow Rate; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + LABS_FanDesignMass, !- Name + VAV_LABS_Fan, !- Internal Data Index Key Name + Fan Maximum Mass Flow Rate; !- Internal Data Type + +!- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLE =========== + + !Output:Variable,*,Site Outdoor Air Drybulb Temperature,Hourly; + !Output:Variable,*,Site Outdoor Air Wetbulb Temperature,Hourly; + !Output:Variable,*,Heating Coil Heating Energy,hourly; !- HVAC Sum J ! the total amount of heat transfer taking place in the coil + !Output:Variable,*,Cooling Coil Total Cooling Energy,hourly; !- HVAC Sum J ! Energy removed from air loop by Cooling Coils. total amount of heat transfer taking place in the coil + !Output:Variable,*,Pump Mass Flow Rate,hourly; !- HVAC Average ! the water outlet mass flow rate + !Output:Variable,*,Fan Air Mass Flow Rate,hourly; !- HVAC Average ! the amount of outdoor air entering the zone + !Output:Variable,*,Air System Outdoor Air Mass Flow Rate,hourly; !- HVAC Average ! average outdoor air mass flow rate introduced by the outdoor air controller + !Output:Variable,*,Boiler Heating Energy,hourly; !- HVAC Sum J ! the heating output (load) of the boiler + !Output:Variable,*,Chiller Evaporator Cooling Energy,hourly; !- HVAC Sum J ! the evaporator heat transfer which is the cooling delivered by the chiller + + !! Heating coils named as XXX_EXTRAWATERHEATC are dummy heating coils to capture heat transfer from the preheating coil to the bypass air when the air handling units are in the cooling mode. + !! Heating coils named as XXX_ EXTRAELECHEATC are dummy heating coils to capture heat transfer from the electric steam humidifier airstream in the air handling units. + !! The modeling strategy is documented in Section 5.2.2.8 Addendum 90.1-2010as Humidification System Requirements in the “ANSI/ASHRAE/IES Standard 90.1-2013 Determination of Energy Savings: Quantitative Analysis" report. + !! Fans named as XXXDUMMY EXHAUST FAN are dummy exhaust fans in the source zone of the + !! The modeling strategy is documented in Section B.1.2.4 Addendum u: Expands Use of Transfer Air in the "Energy Savings Analysis: ANSI/ASHRAE/IES Standard 90.1-2016" report. + + !! Additional output variables that can be useful to review the mechancial equipment load profiles + !! Utility and Submeter +! Output:Meter,Electricity:Facility,Hourly; +! Output:Meter,Gas:Facility,Hourly; +! Output:Meter,InteriorLights:Electricity,Hourly; +! Output:Meter,ExteriorLights:Electricity,Hourly; +! Output:Meter,InteriorEquipment:Electricity,Hourly; +! Output:Meter,ExteriorEquipment:Electricity,Hourly; +! Output:Meter,Fans:Electricity,Hourly; +! Output:Meter,Pumps:Electricity,Hourly; +! Output:Meter,Heating:Electricity,Hourly; +! Output:Meter,Cooling:Electricity,Hourly; +! Output:Meter,HeatRejection:Electricity,Hourly; +! Output:Meter,Humidifier:Electricity,Hourly; +! Output:Meter,HeatRecovery:Electricity,Hourly; +! Output:Meter,DHW:Electricity,Hourly; +! Output:Meter,Cogeneration:Electricity,Hourly; +! Output:Meter,Refrigeration:Electricity,Hourly; +! Output:Meter,WaterSystems:Electricity,Hourly; +! +! Output:Meter,InteriorLights:Gas,Hourly; +! Output:Meter,ExteriorLights:Gas,Hourly; +! Output:Meter,InteriorEquipment:Gas,Hourly; +! Output:Meter,ExteriorEquipment:Gas,Hourly; +! Output:Meter,Fans:Gas,Hourly; +! Output:Meter,Pumps:Gas,Hourly; +! Output:Meter,Heating:Gas,Hourly; +! Output:Meter,Cooling:Gas,Hourly; +! Output:Meter,HeatRejection:Gas,Hourly; +! Output:Meter,Humidifier:Gas,Hourly; +! Output:Meter,HeatRecovery:Gas,Hourly; +! Output:Meter,DHW:Gas,Hourly; +! Output:Meter,Cogeneration:Gas,Hourly; +! Output:Meter,Refrigeration:Gas,Hourly; +! Output:Meter,WaterSystems:Gas,Hourly; + + !! Site + ! Output:Variable,MinOA_Sched,Schedule Value,Hourly; + + !! Outdoor Air + ! Output:Variable,VAV_1_OAInlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_2_OAInlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_ER_OAInlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_OR_OAInlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_ICU_OAInlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_PATRMS_OAInlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_LABS_OAInlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,CAV_KITCHEN_OAInlet Node,System Node Standard Density Volume Flow Rate,Hourly; + + !! Return Air + ! Output:Variable,VAV_1 Supply Equipment Inlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_2 Supply Equipment Inlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_ER Supply Equipment Inlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_OR Supply Equipment Inlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_ICU Supply Equipment Inlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_PATRMS Supply Equipment Inlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_LABS Supply Equipment Inlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,CAV_KITCHEN Supply Equipment Inlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_1 Supply Equipment Inlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_2 Supply Equipment Inlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_ER Supply Equipment Inlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_OR Supply Equipment Inlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_ICU Supply Equipment Inlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_PATRMS Supply Equipment Inlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_LABS Supply Equipment Inlet Node,System Node Temperature,Hourly; + ! Output:Variable,CAV_KITCHEN Supply Equipment Inlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_1 Supply Equipment Inlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_2 Supply Equipment Inlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_ER Supply Equipment Inlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_OR Supply Equipment Inlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_ICU Supply Equipment Inlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_PATRMS Supply Equipment Inlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_LABS Supply Equipment Inlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,CAV_KITCHEN Supply Equipment Inlet Node,System Node Wetbulb Temperature,Hourly; + + !! Supply Air + ! Output:Variable,VAV_1 Supply Equipment Outlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_2 Supply Equipment Outlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_ER Supply Equipment Outlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_OR Supply Equipment Outlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_ICU Supply Equipment Outlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_PATRMS Supply Equipment Outlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_LABS Supply Equipment Outlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,CAV_KITCHEN Supply Equipment Outlet Node,System Node Standard Density Volume Flow Rate,Hourly; + ! Output:Variable,VAV_1 Supply Equipment Outlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_2 Supply Equipment Outlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_ER Supply Equipment Outlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_OR Supply Equipment Outlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_ICU Supply Equipment Outlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_PATRMS Supply Equipment Outlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_LABS Supply Equipment Outlet Node,System Node Temperature,Hourly; + ! Output:Variable,CAV_KITCHEN Supply Equipment Outlet Node,System Node Temperature,Hourly; + ! Output:Variable,VAV_1 Supply Equipment Outlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_2 Supply Equipment Outlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_ER Supply Equipment Outlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_OR Supply Equipment Outlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_ICU Supply Equipment Outlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_PATRMS Supply Equipment Outlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,VAV_LABS Supply Equipment Outlet Node,System Node Wetbulb Temperature,Hourly; + ! Output:Variable,CAV_KITCHEN Supply Equipment Outlet Node,System Node Wetbulb Temperature,Hourly; + + !! Coil Load + ! Output:Variable,*,Air System Cooling Coil Total Cooling Energy,Hourly; + ! Output:Variable,*,Air System Heating Coil Total Heating Energy,Hourly; + ! Output:Variable,*,Chiller Evaporator Cooling Rate,Hourly; + + !! Plants + ! Output:Variable,*,Boiler Heating Rate,Hourly; + + !! SHW + ! Output:Variable,*,Water Heater Heating Rate,Hourly; ! The average heating rate supplied by the heater element or burner. + + !! Fan and Pump + ! Output:Variable,*,Fan Electric Power,hourly; !- HVAC Average W + ! Output:Variable,*,Pump Electric Power,hourly; !- HVAC Average W + ! Output:Variable,*,Humidifier Electric Power,hourly; !- HVAC Average W + + !! additional variables added on 07 29 2016 + ! Output:Variable,*,Water Heater Heating Rate,hourly; !- HVAC Average W + ! Output:Variable,*,Chiller Condenser Heat Transfer Energy,hourly; !- HVAC Sum J + ! Output:Variable,*,Chiller Condenser Inlet Temperature,hourly; !- HVAC Average C + ! Output:Variable,*,Chiller Condenser Outlet Temperature,hourly; !- HVAC Average C + ! Output:Variable,*,Pump Shaft Power,hourly; !- HVAC Average W + ! Output:Variable,*,Pump Outlet Temperature,hourly; !- HVAC Average C + + +!- =========== ALL OBJECTS IN CLASS: REPORT =========== + + Output:Surfaces:Drawing,DXF; + + Output:Surfaces:List,Details; + + Output:VariableDictionary,IDF; + + Output:Constructions,Constructions; + +!- =========== ALL OBJECTS IN CLASS: REPORT:TABLE:STYLE =========== + + OutputControl:Table:Style, + CommaAndHTML; !- Column Separator + +!- =========== ALL OBJECTS IN CLASS: OUTPUTCONTROL:REPORTINGTOLERANCES =========== + + + +OutputControl:ReportingTolerances, + 0.556, !- Tolerance for Time Heating Setpoint Not Met {deltaC} + 0.556; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} + +!- =========== ALL OBJECTS IN CLASS: REPORT:TABLE:PREDEFINED =========== + + Output:Table:SummaryReports, + AllSummaryAndMonthly, !- Report 1 Name + Standard62.1Summary; !- Report 2 Name + +!- =========== ALL OBJECTS IN CLASS: REPORT:TABLE:MONTHLY =========== + + + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,Hourly; + + + + Output:Meter:MeterFileOnly,InteriorEquipment:Electricity,Hourly; + + Output:Table:Monthly, + NameHolderMonthlySummary TaskPurpose ProgressIndicator, !- Name ProgressIndicator,ForDetermination2019, ... + 3, !- Digits After Decimal + Site Outdoor Air Drybulb, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating:Gas, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + NameHolderMonthlySummary CodeName ASHRAE901, !- Name ASHRAE901, ASHRAE1891, IECC, Title24, ORSC, IGCC, ... + 3, !- Digits After Decimal + Site Outdoor Air Drybulb, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating:Gas, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + NameHolderMonthlySummary CodeYear 2019, !- Name all years for ASHRAE90.1, IECC, ASHRAE189.1 + 3, !- Digits After Decimal + Site Outdoor Air Drybulb, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating:Gas, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + NameHolderMonthlySummary CodeAmendment NoneAmend, !- Name StateAmend,EEM, NoneAmend for national or state without amendment + 3, !- Digits After Decimal + Site Outdoor Air Drybulb, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating:Gas, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + NameHolderMonthlySummary PrototypeName Hospital, !- Name 16 Prototypes + 3, !- Digits After Decimal + Site Outdoor Air Drybulb, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating:Gas, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + NameHolderMonthlySummary TaskScope National, !- Name National, State, City + 3, !- Digits After Decimal + Site Outdoor Air Drybulb, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating:Gas, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + + Output:Table:Monthly, + NameHolderMonthlySummary State National, !- Name National for national analysis, NewYork, Utah,... for state analysis, or city name for city analysis. Spell out the name of the state without space between words + 3, !- Digits After Decimal + Site Outdoor Air Drybulb, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating:Gas, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + NameHolderMonthlySummary ClimateZone 3A, !- Name 0-8 + 3, !- Digits After Decimal + Site Outdoor Air Drybulb, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating:Gas, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + NameHolderMonthlySummary RepresentCity USA_GA_Atlanta, !- Name representative city like Honolulu for national, for each state, for city analysis. this is not the city of the weather file. The weather city will be extracted from epw file + 3, !- Digits After Decimal + Site Outdoor Air Drybulb, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating:Gas, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + + + + +!- =========== ALL OBJECTS IN CLASS: CONTROLLER:MECHANICALVENTILATION =========== + + Controller:MechanicalVentilation, + VAV_1_DCV, !- Name + BLDG_OA_FRAC_SCH, !- Availability Schedule Name + Yes, !- Demand Controlled Ventilation + VentilationRateProcedure,!- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction {dimensionless} + Basement, !- Zone 1 Name + CM DSOA Basement, !- Design Specification Outdoor Air Object Name + CM DSZAD Basement, !- Design Specification Zone Air Distribution Object Name 1 + Office1_Mult4_Flr_1, !- Zone 2 Name + CM DSOA Office1_Mult4_Flr_1, !- Design Specification Outdoor Air Object Name 2 + CM DSZAD Office1_Mult4_Flr_1, !- Design Specification Zone Air Distribution Object Name 2 + Lobby_Records_Flr_1, !- Zone 3 Name + CM DSOA Lobby_Records_Flr_1, !- Design Specification Outdoor Air Object Name 3 + CM DSZAD Lobby_Records_Flr_1, !- Design Specification Zone Air Distribution Object Name 3 + Corridor_Flr_1, !- Zone 4 Name + CM DSOA Corridor_Flr_1, !- Design Specification Outdoor Air Object Name 4 + CM DSZAD Corridor_Flr_1, !- Design Specification Zone Air Distribution Object Name 4 + Er_Nursestn_Lobby_Flr_1, !- Zone 5 Name + CM DSOA Er_Nursestn_Lobby_Flr_1, !- Design Specification Outdoor Air Object Name 5 + CM DSZAD Er_Nursestn_Lobby_Flr_1, !- Design Specification Zone Air Distribution Object Name 5 + Icu_Nursestn_Lobby_Flr_2,!- Zone 6 Name + CM DSOA Icu_Nursestn_Lobby_Flr_2, !- Design Specification Outdoor Air Object Name 6 + CM DSZAD Icu_Nursestn_Lobby_Flr_2, !- Design Specification Zone Air Distribution Object Name 6 + Corridor_Flr_2, !- Zone 7 Name + CM DSOA Corridor_Flr_2, !- Design Specification Outdoor Air Object Name 7 + CM DSZAD Corridor_Flr_2, !- Design Specification Zone Air Distribution Object Name 7 + Or_Nursestn_Lobby_Flr_2, !- Zone 8 Name + CM DSOA Or_Nursestn_Lobby_Flr_2, !- Design Specification Outdoor Air Object Name 8 + CM DSZAD Or_Nursestn_Lobby_Flr_2; !- Design Specification Zone Air Distribution Object Name 8 + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Basement, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Office1_Mult4_Flr_1, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Lobby_Records_Flr_1, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Corridor_Flr_1, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Er_Nursestn_Lobby_Flr_1, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Icu_Nursestn_Lobby_Flr_2, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Corridor_Flr_2, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Or_Nursestn_Lobby_Flr_2, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:OutdoorAir, + CM DSOA Basement, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000368277; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Office1_Mult4_Flr_1, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.00048257; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Lobby_Records_Flr_1, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Corridor_Flr_1, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Er_Nursestn_Lobby_Flr_1, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Icu_Nursestn_Lobby_Flr_2, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Corridor_Flr_2, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Or_Nursestn_Lobby_Flr_2, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + Controller:MechanicalVentilation, + VAV_2_DCV, !- Name + BLDG_OA_FRAC_SCH, !- Availability Schedule Name + Yes, !- Demand Controlled Ventilation + VentilationRateProcedure,!- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction {dimensionless} + Phystherapy_Flr_3, !- Zone 1 Name + CM DSOA Phystherapy_Flr_3, !- Design Specification Outdoor Air Object Name 1 + CM DSZAD Phystherapy_Flr_3, !- Design Specification Zone Air Distribution Object Name 1 + Nursestn_Lobby_Flr_3, !- Zone 2 Name + CM DSOA Nursestn_Lobby_Flr_3, !- Design Specification Outdoor Air Object Name 2 + CM DSZAD Nursestn_Lobby_Flr_3, !- Design Specification Zone Air Distribution Object Name 2 + Corridor_Se_Flr_3, !- Zone 3 Name + CM DSOA Corridor_Se_Flr_3, !- Design Specification Outdoor Air Object Name 3 + CM DSZAD Corridor_Se_Flr_3, !- Design Specification Zone Air Distribution Object Name 3 + Corridor_Nw_Flr_3, !- Zone 4 Name + CM DSOA Corridor_Nw_Flr_3, !- Design Specification Outdoor Air Object Name 4 + CM DSZAD Corridor_Nw_Flr_3, !- Design Specification Zone Air Distribution Object Name 4 + Radiology_Flr_4, !- Zone 5 Name + CM DSOA Radiology_Flr_4, !- Design Specification Outdoor Air Object Name 5 + CM DSZAD Radiology_Flr_4,!- Design Specification Zone Air Distribution Object Name 5 + Nursestn_Lobby_Flr_4, !- Zone 6 Name + CM DSOA Nursestn_Lobby_Flr_4, !- Design Specification Outdoor Air Object Name 6 + CM DSZAD Nursestn_Lobby_Flr_4, !- Design Specification Zone Air Distribution Object Name 6 + Corridor_Se_Flr_4, !- Zone 7 Name + CM DSOA Corridor_Se_Flr_4, !- Design Specification Outdoor Air Object Name 7 + CM DSZAD Corridor_Se_Flr_4, !- Design Specification Zone Air Distribution Object Name 7 + Corridor_Nw_Flr_4, !- Zone 8 Name + CM DSOA Corridor_Nw_Flr_4, !- Design Specification Outdoor Air Object Name 8 + CM DSZAD Corridor_Nw_Flr_4, !- Design Specification Zone Air Distribution Object Name 8 + Dining_Flr_5, !- Zone 9 Name + CM DSOA Dining_Flr_5, !- Design Specification Outdoor Air Object Name 9 + CM DSZAD Dining_Flr_5, !- Design Specification Zone Air Distribution Object Name 9 + Nursestn_Lobby_Flr_5, !- Zone 10 Name + CM DSOA Nursestn_Lobby_Flr_5, !- Design Specification Outdoor Air Object Name 10 + CM DSZAD Nursestn_Lobby_Flr_5, !- Design Specification Zone Air Distribution Object Name 10 + Office1_Flr_5, !- Zone 11 Name + CM DSOA Office1_Flr_5, !- Design Specification Outdoor Air Object Name 11 + CM DSZAD Office1_Flr_5, !- Design Specification Zone Air Distribution Object Name 11 + Office2_Mult5_Flr_5, !- Zone 12 Name + CM DSOA Office2_Mult5_Flr_5, !- Design Specification Outdoor Air Object Name 12 + CM DSZAD Office2_Mult5_Flr_5, !- Design Specification Zone Air Distribution Object Name 12 + Office3_Flr_5, !- Zone 13 Name + CM DSOA Office3_Flr_5, !- Design Specification Outdoor Air Object Name 13 + CM DSZAD Office3_Flr_5, !- Design Specification Zone Air Distribution Object Name 13 + Office4_Mult6_Flr_5, !- Zone 14 Name + CM DSOA Office4_Mult6_Flr_5, !- Design Specification Outdoor Air Object Name 14 + CM DSZAD Office4_Mult6_Flr_5, !- Design Specification Zone Air Distribution Object Name 14 + Corridor_Flr_5, !- Zone 15 Name + CM DSOA Corridor_Flr_5, !- Design Specification Outdoor Air Object Name 15 + CM DSZAD Corridor_Flr_5; !- Design Specification Zone Air Distribution Object Name 15 + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Phystherapy_Flr_3, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Nursestn_Lobby_Flr_3, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Corridor_Se_Flr_3, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Corridor_Nw_Flr_3, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Radiology_Flr_4,!- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Nursestn_Lobby_Flr_4, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Corridor_Se_Flr_4, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Corridor_Nw_Flr_4, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Dining_Flr_5, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Nursestn_Lobby_Flr_5, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Office1_Flr_5, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Office2_Mult5_Flr_5, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Office3_Flr_5, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Office4_Mult6_Flr_5, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Corridor_Flr_5, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:OutdoorAir, + CM DSOA Phystherapy_Flr_3, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000380976; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Nursestn_Lobby_Flr_3, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Corridor_Se_Flr_3, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Corridor_Nw_Flr_3, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Radiology_Flr_4, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000380976;!- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Nursestn_Lobby_Flr_4, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Corridor_Se_Flr_4, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Corridor_Nw_Flr_4, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Dining_Flr_5, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.001295319; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Nursestn_Lobby_Flr_5, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000338645; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Office1_Flr_5, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.00048257; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Office2_Mult5_Flr_5, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.00048257; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Office3_Flr_5, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.00048257; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Office4_Mult6_Flr_5, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.00048257; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + CM DSOA Corridor_Flr_5, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + + + + EnergyManagementSystem:Sensor, + Facility_Int_LTG, !- Name + , !- Output:Variable or Output:Meter Index Key Name + InteriorLights:Electricity; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:GlobalVariable, + Wired_LTG; !- Erl Variable 1 Name + + EnergyManagementSystem:Program, + Transformer_Load_Prog, !- Name + SET Wired_LTG = Facility_Int_LTG*0.022; !- Program Line 1 + + EnergyManagementSystem:ProgramCallingManager, + Transformer_Load_Prog_Manager, !- Name + AfterPredictorAfterHVACManagers, !- EnergyPlus Model Calling Point + Transformer_Load_Prog; !- Program Name 1 + + EnergyManagementSystem:OutputVariable, + Wired_LTG, !- Name + Wired_LTG, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + J; !- Units + + Meter:Custom, + Wired_LTG_Electricity, !- Name + Electricity, !- Fuel Type + , !- Key Name 1 + Wired_LTG; !- Output Variable or Meter Name 1 + + ElectricLoadCenter:Transformer, + Transformer 1, !- Name + Always_On, !- Availability Schedule Name + PowerInFromGrid, !- Transformer Usage + , !- Zone Name + , !- Radiative Fraction + 500000, !- Rated Capacity {VA} + 3, !- Phase + Aluminum, !- Conductor Material + 150, !- Full Load Temperature Rise {C} + 0.1, !- Fraction of Eddy Current Losses + NominalEfficiency, !- Performance Input Method + , !- Rated No Load Loss {W} + , !- Rated Load Loss {W} + 0.991, !- Nameplate Efficiency + 0.35, !- Per Unit Load for Nameplate Efficiency + 75, !- Reference Temperature for Nameplate Efficiency {C} + , !- Per Unit Load for Maximum Efficiency + Yes, !- Consider Transformer Loss for Utility Cost + Wired_LTG_Electricity, !- Meter 1 Name + InteriorEquipment:Electricity; !- Meter 2 Name + + + EnergyManagementSystem:Sensor, + Tower_PumpMassFlow, !- Name + TowerWaterSys Supply Inlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Chiller1_Status, !- Name + CoolSys1 Chiller1, !- Output:Variable or Output:Meter Index Key Name + Chiller Electric Power; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Chiller2_Status, !- Name + CoolSys1 Chiller2, !- Output:Variable or Output:Meter Index Key Name + Chiller Electric Power; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + SensedCurveInput, !- Name + Tower_Fan_Curve, !- Output:Variable or Output:Meter Index Key Name + Performance Curve Input Variable 1 Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + SensedCurveValue, !- Name + Tower_Fan_Curve, !- Output:Variable or Output:Meter Index Key Name + Performance Curve Output Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Actuator, + TowerCurveOutput, !- Name + Tower_Fan_Curve, !- Actuated Component Unique Name + Curve, !- Actuated Component Type + Curve Result; !- Actuated Component Control Type + + + EnergyManagementSystem:Program, + ChangTowerFlow, !- Name + IF Chiller1_Status > 0 && Chiller2_Status == 0 && SensedCurveInput > 0.2, !- Program Line 1 + IF (0.5 * SensedCurveInput) > 0.2, !- Program Line 2 + SET AirInput = 0.5 * SensedCurveInput, !- + ELSE, !- + SET AirInput = 0.2, !- + ENDIF, !- + SET TowerCurveOutput = 2* (AirInput^3), !- + ELSE, !- + SET TowerCurveOutput = SensedCurveValue, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + ChangeTowerFlow_Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + ChangTowerFlow; !- Program Name 1 + + + + + EnergyManagementSystem:GlobalVariable, + BoilerType, !- Erl Variable 1 Name + CapRated, !- Erl Variable 2 Name + EtRated, !- Erl Variable 3 Name + PLRx, !- + Ecx, !- + SkinLossRate; !- + + EnergyManagementSystem:Sensor, + BoilerPLR, !- Name + HeatSys1 Boiler, !- Output:Variable or Output:Meter Index Key Name + Boiler Part Load Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Actuator, + BoilerCurve, !- Name + HEATSYS1 BOILER EFFICIENCY CURVE, !- Actuated Component Unique Name + Curve, !- Actuated Component Type + Curve Result; !- Actuated Component Control Type + +EnergyManagementSystem:Program, ! Addendum AM + SetBoilerPar, +SET CapRated = 875441.29, ! EMS Bolier Nominal Capacity {W}. +SET EtRated = 0.8125, ! EMS Boiler Nominal Thermal Efficiency. overriden by script + SET CapRated = (CapRated *3.412)/1000, !Change from W to MBH + SET SkinLossRate = 0.02, + SET BoilerType = 1, + IF BoilerType == 1, + IF CapRated >10000, + SET PLRx = 0.2, + ELSEIF CapRated >5000, + SET PLRx = 0.25, + ELSEIF CapRated >1000, + SET PLRx = 0.33, + ELSE, + SET BoilerType = 2, + SET PLRx = 0.2, + ENDIF, + ELSE, + SET PLRx = 0.2, + ENDIF, + IF BoilerType == 1, + SET CurveX = 0.975 + 0.305 * PLRx - 0.527 * (PLRx^2) + 0.249 * (PLRx^3), + ELSE, + SET CurveX = 0.907 + 0.320 * PLRx - 0.420 * (PLRx^2) + 0.193 * (PLRx^3), + ENDIF, + SET LoadX = CapRated * PLRx, + SET Etx = CurveX * EtRated, + SET InputEx = LoadX/Etx, + SET SkinEx = CapRated * SkinLossRate, + SET Ecx = (LoadX + SkinEx)/InputEx; + + EnergyManagementSystem:Program, + SetBoilerCurve, !- Name + IF BoilerPLR >= PLRx, !- Program Line 1 + IF BoilerType == 1, !- Program Line 2 + SET BoilerCurve = 0.975 + 0.305*BoilerPLR - 0.527*(BoilerPLR^2) + 0.249*(BoilerPLR^3), !- + ELSE, !- + SET BoilerCurve = 0.907 + 0.320*BoilerPLR - 0.420*(BoilerPLR^2) + 0.193*(BoilerPLR^3), !- + ENDIF, !- + ELSE, !- + IF BoilerPLR == 0, !- + SET BoilerCurve = NULL, !- + ELSE, !- + IF BoilerPLR <0.05, !- + SET BoilerCurve = (0.05/(0.05 + SkinLossRate)) * (Ecx/EtRated), !- + ELSE, !- + SET BoilerCurve = (BoilerPLR/(BoilerPLR + SkinLossRate)) * (Ecx/EtRated), !- + ENDIF, !- + ENDIF, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + BoilerParManager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + SetBoilerPar; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + BoilerCurveManager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + SetBoilerCurve; !- Program Name 1 + + + + EnergyManagementSystem:InternalVariable, + Chiller2PumpDesignFlow, !- Name + COOLSYS1 CHILLER2 PUMP, !- Internal Data Index Key Name + Pump Maximum Mass Flow Rate; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Chiller2PumpStatus, !- Name + COOLSYS1 CHILLER2 PUMP, !- Actuated Component Unique Name + Plant Component Pump:ConstantSpeed, !- Actuated Component Type + On/Off Supervisory; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + Chiller1PumpFlow, !- Name + COOLSYS1 CHILLER1 PUMP, !- Actuated Component Unique Name + Pump, !- Actuated Component Type + Pump Mass Flow Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + Chiller2PumpFlow, !- Name + COOLSYS1 CHILLER2 PUMP, !- Actuated Component Unique Name + Pump, !- Actuated Component Type + Pump Mass Flow Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + Chiller2Status, !- Name + COOLSYS1 CHILLER2, !- Actuated Component Unique Name + Plant Component Chiller:Electric:ReformulatedEIR, !- Actuated Component Type + On/Off Supervisory; !- Actuated Component Control Type + + EnergyManagementSystem:Sensor, + ChillerPlantDemandLoad, !- Name + CoolSys1_Supply, !- Output:Variable or Output:Meter Index Key Name + Plant Supply Side Cooling Demand Rate; !- Output:Variable or Output:Meter Name + +EnergyManagementSystem:Program, ! Addendum DV + PlantPump_EMS_Program, !- Name +IF ChillerPlantDemandLoad < 944818.86, ! Addendum DV EMS Chiller Capacity. Will be overriden by sizing script. + SET Chiller2PumpStatus = 0, !- Program Line 2 + SET Chiller2Status = 0, !- + SET Chiller2PumpFlow = 0,!- + ELSE, !- + SET Chiller2PumpStatus = 1, !- + SET Chiller2Status = 1, !- + SET Chiller2PumpFlow = Chiller2PumpDesignFlow, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + PlantPump_EMS_Program Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + PlantPump_EMS_Program; !- Program Name 1 + + + + + EnergyManagementSystem:Sensor, + VAV_1_OA_VRP, !- Name + VAV_1, !- Output:Variable or Output:Meter Index Key Name + Air System Outdoor Air Mechanical Ventilation Requested Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + VAV_1_OA, !- Name + VAV_1, !- Output:Variable or Output:Meter Index Key Name + Air System Outdoor Air Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Actuator, + VAV_1_MAX_OA_FRAC, !- Name + VAV_1 Max OA Fraction, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Sensor, + VAV_1_SUPPLY_FLOW, !- Name + VAV_1_OA-VAV_1_CoolCNode, !- Output:Variable or Output:Meter Index Key Name + System Node Standard Density Volume Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:ProgramCallingManager, + VAV_1_MAX_OA_FRAC_Prog_Manager,!- Name + AfterPredictorAfterHVACManagers, !- EnergyPlus Model Calling Point + VAV_1_MAX_OA_FRAC; !- Program Name 1 + + EnergyManagementSystem:Program, + VAV_1_MAX_OA_FRAC, !- Name + IF VAV_1_OA > VAV_1_OA_VRP, !- Program Line 1 + SET VAV_1_MAX_OA_FRAC = NULL, !- Program Line 2 + ELSE, !- A4 + IF VAV_1_SUPPLY_FLOW > 0, !- A5 + SET VAV_1_MAX_OA_FRAC = 4.3265 / VAV_1_SUPPLY_FLOW,!- A6 + ELSE, !- A7 + SET VAV_1_MAX_OA_FRAC = NULL, !- A8 + ENDIF, !- A9 + ENDIF; !- A10 + + + + EnergyManagementSystem:Sensor, + VAV_2_OA_VRP, !- Name + VAV_2, !- Output:Variable or Output:Meter Index Key Name + Air System Outdoor Air Mechanical Ventilation Requested Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + VAV_2_OA, !- Name + VAV_2, !- Output:Variable or Output:Meter Index Key Name + Air System Outdoor Air Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Actuator, + VAV_2_MAX_OA_FRAC, !- Name + VAV_2 Max OA Fraction, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Sensor, + VAV_2_SUPPLY_FLOW, !- Name + VAV_2_OA-VAV_2_CoolCNode, !- Output:Variable or Output:Meter Index Key Name + System Node Standard Density Volume Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:ProgramCallingManager, + VAV_2_MAX_OA_FRAC_Prog_Manager,!- Name + AfterPredictorAfterHVACManagers, !- EnergyPlus Model Calling Point + VAV_2_MAX_OA_FRAC; !- Program Name 1 + + EnergyManagementSystem:Program, + VAV_2_MAX_OA_FRAC, !- Name + IF VAV_2_OA > VAV_2_OA_VRP, !- Program Line 1 + SET VAV_2_MAX_OA_FRAC = NULL, !- Program Line 2 + ELSE, !- A4 + IF VAV_2_SUPPLY_FLOW > 0, !- A5 + SET VAV_2_MAX_OA_FRAC = 4.4794 / VAV_2_SUPPLY_FLOW,!- A6 + ELSE, !- A7 + SET VAV_2_MAX_OA_FRAC = NULL, !- A8 + ENDIF, !- A9 + ENDIF; !- A10 + + + diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json new file mode 100644 index 0000000..18bee76 --- /dev/null +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json @@ -0,0 +1,144 @@ +{ + "workflow_name": "Supply Air Temperature Reset Verification", + "meta": { + "author": "None", + "date": "05/08/2024", + "version": "1.0", + "description": "Supply Air Temperature Reset Verification" + }, + "imports": [ + "numpy as np", + "pandas as pd", + "datetime", + "glob" + ], + "states": { + "load_data": { + "Type": "MethodCall", + "MethodCall": "DataProcessing", + "Parameters": { + "data_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.idf", + "data_source": "EnergyPlus" + }, + "Payloads": { + "data_processing_obj": "$" + }, + "Start": "True", + "Next": "load_verification_case" + } + }, + "load_verification_case": { + "Type": "MethodCall", + "MethodCall": "VerificationCase", + "Parameters": { + "json_case_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/outputverification_case.json" + }, + "Payloads": { + "verification_case_obj": "$" + }, + "Next": "validate_case" + }, + "validate_cases": { + "Type": "Choice", + "Choices": [ + { + "Value": "Payloads['verification_case_obj'].validate()", + "Equals": "True", + "Next": "setup_verification" + } + ], + "Default": "Report Error in Workflow" + }, + "configure verification runner": { + "Type": "MethodCall", + "MethodCall": "Payloads['verification_obj'].configure", + "Parameters": { + "output_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output", + "lib_items_path": "./schema/library.json", + "plot_option": "+x None", + "fig_size": "+x (6, 5)", + "num_threads": 1, + "preprocessed_data": "Payloads['data_processing_obj']" + }, + "Payloads": {}, + "Next": "run verification" + }, + "run verification": { + "Type": "MethodCall", + "MethodCall": "Payloads['verification_obj'].run", + "Parameters": {}, + "Payloads": { + "verification_return": "$" + }, + "Next": "check results" + }, + "setup verification": { + "Type": "MethodCall", + "MethodCall": "Verification", + "Parameters": { + "verifications": "Payloads['verification_case_obj']" + }, + "Payloads": { + "verification_obj": "$" + }, + "Next": "configure verification runner" + }, + "check results": { + "Type": "MethodCall", + "MethodCall": "glob.glob", + "Parameters": [ + "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/*_md.json" + ], + "Payloads": { + "length_of_mdjson": "len($)" + }, + "Next": "check number of result files" + }, + "check number of result files": { + "Type": "Choice", + "Choices": [ + { + "Value": "Payloads['length_of_mdjson']", + "Equals": "1", + "Next": "reporting_object_instantiation" + } + ], + "Default": "Report Error in workflow" + }, + "reporting_object_instantiation": { + "Type": "MethodCall", + "MethodCall": "Reporting", + "Parameters": { + "verification_json": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/*_md.json", + "result_md_name": "report_summary.md", + "report_format": "markdown" + }, + "Payloads": { + "reporting_obj": "$" + }, + "Next": "report_cases" + }, + "report_cases": { + "Type": "MethodCall", + "MethodCall": "Payloads['reporting_obj'].report_multiple_cases", + "Parameters": {}, + "Payloads": {}, + "Next": "Success" + }, + "Success": { + "Type": "MethodCall", + "MethodCall": "print", + "Parameters": [ + "Congratulations! the demo workflow is executed with expected results and no error!" + ], + "End": "True" + }, + "Report Error in workflow": { + "Type": "MethodCall", + "MethodCall": "logging.error", + "Parameters": [ + "Something is wrong in the workflow execution" + ], + "End": "True" + } +} \ No newline at end of file diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/verification_case.json b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/verification_case.json new file mode 100644 index 0000000..76edccc --- /dev/null +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/verification_case.json @@ -0,0 +1,26 @@ +{ + "cases": [ + { + "no": 1, + "run_simulation": false, + "expected_result": "pass", + "simulation_IO": { + "idf": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.idf", + "output": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.csv" + }, + "datapoints_source": { + "idf_output_variables": { + "T_sa_set": { + "subject": "Node 2", + "variable": "Test Air Loop Supply Outlet Temperature", + "frequency": "detailed" + } + }, + "parameters": { + "T_z_coo": 40.0 + } + }, + "verification_class": "SupplyAirTempReset" + } + ] +} \ No newline at end of file diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py index 533890d..f5c829c 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py @@ -26,9 +26,12 @@ def test_number_of_arguments_and_argument_names(self): # get arguments and test that they are what we are expecting arguments = measure.arguments(model) - assert arguments.size() == 2 + assert arguments.size() == 5 assert arguments[0].name() == "air_loop_name" assert arguments[1].name() == "design_zone_cooling_air_temp" + assert arguments[2].name() == "idf_path" + assert arguments[3].name() == "output_dataset_path" + assert arguments[4].name() == "output_dir" def test_good_argument_values(self): """ @@ -52,9 +55,13 @@ def test_good_argument_values(self): arguments = measure.arguments(model) argument_map = openstudio.measure.convertOSArgumentVectorToMap(arguments) - args_dict = {} - args_dict["air_loop_name"] = "Test Air Loop" - args_dict["design_zone_cooling_air_temp"] = 40 + args_dict = { + "air_loop_name": "Test Air Loop", + "design_zone_cooling_air_temp": 40, + "idf_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.idf", + "output_dataset_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.csv", + "output_dir": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output" + } for arg in arguments: temp_arg_var = arg.clone() From 2b87e319f99ac3f35cbec3a1210b475e18552635 Mon Sep 17 00:00:00 2001 From: Julian Slane Date: Wed, 28 Aug 2024 13:06:19 -0700 Subject: [PATCH 03/10] Added xml and README for measure --- .../README.md | 28 +++++++ .../measure.py | 2 +- .../measure.xml | 83 +++++++++++++++++++ 3 files changed, 112 insertions(+), 1 deletion(-) diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/README.md b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/README.md index e69de29..573a7d6 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/README.md +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/README.md @@ -0,0 +1,28 @@ +# Generate ConStrain Supply Air Temperature Reset Verification Case +## Description +This is a ModelMeasure that generates a ConStrain Supply Air Temperature Reset Verification Case. +## Modeler Description +## Measure Type +ModelMeasure +## Taxonomy +## Arguments +### IDF Path +**Name:** idf_path, +**Type:** string, +**Required:** true +### Output Dataset Path +**Name:** output_dataset_path, +**Type:** string, +**Required:** true +### Output Directory +**Name:** output_dir, +**Type:** string, +**Required:** true +### Air Loop Name +**Name:** air_loop_name, +**Type:** string, +**Required:** true +### Design Zone Cooling Air Temp +**Name:** design_zone_cooling_air_temp, +**Type:** string, +**Required:** true \ No newline at end of file diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py index a922ac6..2b435dc 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py @@ -266,7 +266,7 @@ def run( air_loop, design_zone_cooling_air_temp, ) - with open(f"{output_dir}/verification_case.json", "w") as f: + with open(f"{output_dir}/supply_air_temperature_verification_case.json", "w") as f: json.dump(verification_cases, f, indent=2) workflow = self.get_workflow(idf_file_path, output_dir) diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.xml b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.xml index e69de29..7771a0f 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.xml +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.xml @@ -0,0 +1,83 @@ + + + 3.1 + generate_constrain_supply_air_temperature_reset_verification_case + + + 2024-08-28T12:00:00Z + ConstrainSupplyAirTemperatureResetVerification + Generate ConStrain Supply Air Temperature Reset Verification Case + This measure generates a ConStrain Supply Air Tempearature Reset Verification Case. + + + + idf_path + IDF Path + string + true + + + output_dataset_path + Output Dataset Path + string + true + + + output_dir + Output Directory + string + true + + + air_loop_name + Air Loop Name + string + true + + + design_zone_cooling_air_temp + Design Zone Cooling Air Temp + string + true + + + + + + Reporting.QAQC + + + + Measure Type + ModelMeasure + string + + + Uses SketchUp API + false + boolean + + + + + LICENSE.md + md + license + + + README.md + erb + readmee + + + + OpenStudio + 2.0.0 + 3.6.0 + + measure.py + py + script + + + \ No newline at end of file From 885d5bd54b837a3f8a42d5ea03c12e4fc8632879 Mon Sep 17 00:00:00 2001 From: Julian Slane Date: Fri, 6 Sep 2024 09:39:35 -0700 Subject: [PATCH 04/10] Fixed verification case path in generated workflow --- .../measure.py | 8 ++------ .../tests/output/constrain_workflow.json | 4 ++-- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py index 2b435dc..7c6a73e 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py @@ -83,7 +83,7 @@ def get_workflow(self, idf_file_path, output_dir): "load_verification_case": { "Type": "MethodCall", "MethodCall": "VerificationCase", - "Parameters": {"json_case_path": f"{output_dir}verification_case.json"}, + "Parameters": {"json_case_path": f"{output_dir}/supply_air_temperature_verification_case.json"}, "Payloads": { "verification_case_obj": "$", }, @@ -168,7 +168,7 @@ def get_workflow(self, idf_file_path, output_dir): "Type": "MethodCall", "MethodCall": "print", "Parameters": [ - "Congratulations! the demo workflow is executed with expected results and no error!" + "Congratulations! The supply air temperature reset verification workflow is executed with expected results and no error!" ], "End": "True", }, @@ -253,10 +253,6 @@ def run( output_variable.setName(f"{air_loop.name} Supply Outlet Temperature") output_variable.setKeyValue(f"{supply_outlet_node.name}") - output_variables = model.getOutputVariables() - - # raise Exception(len(output_variables)) - # model.outputVariable("System Node Temperature", supply_outlet_node.handle) runner.registerInfo("Added OutputVariable for supply outlet node temperature") verification_cases = self.get_verification_case( diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json index 18bee76..bbf59a0 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json @@ -31,7 +31,7 @@ "Type": "MethodCall", "MethodCall": "VerificationCase", "Parameters": { - "json_case_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/outputverification_case.json" + "json_case_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json" }, "Payloads": { "verification_case_obj": "$" @@ -129,7 +129,7 @@ "Type": "MethodCall", "MethodCall": "print", "Parameters": [ - "Congratulations! the demo workflow is executed with expected results and no error!" + "Congratulations! The supply air temperature reset verification workflow is executed with expected results and no error!" ], "End": "True" }, From e4a3ad99a0a212441a02b907461ef8d8a85e2346 Mon Sep 17 00:00:00 2001 From: Julian Slane Date: Fri, 6 Sep 2024 11:30:39 -0700 Subject: [PATCH 05/10] Updated verification case filename --- .../ConstrainSupplyAirTemperatureResetVerification/measure.py | 2 +- ...son => supply_air_temperature_reset_verification_case.json} | 0 .../tests/test_measure.py | 3 --- 3 files changed, 1 insertion(+), 4 deletions(-) rename lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/{verification_case.json => supply_air_temperature_reset_verification_case.json} (100%) diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py index 7c6a73e..843dda1 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py @@ -262,7 +262,7 @@ def run( air_loop, design_zone_cooling_air_temp, ) - with open(f"{output_dir}/supply_air_temperature_verification_case.json", "w") as f: + with open(f"{output_dir}/supply_air_temperature_reset_verification_case.json", "w") as f: json.dump(verification_cases, f, indent=2) workflow = self.get_workflow(idf_file_path, output_dir) diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/verification_case.json b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json similarity index 100% rename from lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/verification_case.json rename to lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py index f5c829c..547b88b 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py @@ -1,7 +1,5 @@ import pytest import openstudio -import pathlib -import sys from measure import ConstrainSupplyAirTemperatureResetVerification @@ -67,7 +65,6 @@ def test_good_argument_values(self): temp_arg_var = arg.clone() if arg.name() in args_dict: temp_arg_var.setValue(args_dict[arg.name()]) - # if arg.name() != "chiller_name": assert temp_arg_var.setValue(args_dict[arg.name()]) argument_map[arg.name()] = temp_arg_var From 416d3a263c3c5c4762532e5596255f9e743e4f1c Mon Sep 17 00:00:00 2001 From: Julian Slane Date: Mon, 30 Sep 2024 16:01:00 -0700 Subject: [PATCH 06/10] Update verification case measure --- .../README.md | 2 - .../measure.py | 18 ++-- .../measure.xml | 87 +++++++++++++------ .../tests/output/constrain_workflow.json | 12 +-- ...r_temperature_reset_verification_case.json | 5 +- .../tests/test_measure.py | 25 ++++-- 6 files changed, 90 insertions(+), 59 deletions(-) diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/README.md b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/README.md index 573a7d6..df4c6d4 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/README.md +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/README.md @@ -6,8 +6,6 @@ This is a ModelMeasure that generates a ConStrain Supply Air Temperature Reset V ModelMeasure ## Taxonomy ## Arguments -### IDF Path -**Name:** idf_path, **Type:** string, **Required:** true ### Output Dataset Path diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py index 843dda1..c449848 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py @@ -32,7 +32,6 @@ def arguments(self, model): """ args = openstudio.measure.OSArgumentVector() - idf_path = openstudio.measure.OSArgument.makeStringArgument("idf_path", True) output_dataset_path = openstudio.measure.OSArgument.makeStringArgument( "output_dataset_path", True ) @@ -50,14 +49,12 @@ def arguments(self, model): args.append(air_loop_name) args.append(design_zone_cooling_air_temp) - args.append(idf_path) args.append(output_dataset_path) args.append(output_dir) - # TODO: If the user doesn't provide a design_zone_cooling_air_temp, we can infer it from other modeling inputs return args - def get_workflow(self, idf_file_path, output_dir): + def get_workflow(self, output_dataset_path, output_dir): workflow = { "workflow_name": "Supply Air Temperature Reset Verification", "meta": { @@ -72,7 +69,7 @@ def get_workflow(self, idf_file_path, output_dir): "Type": "MethodCall", "MethodCall": "DataProcessing", "Parameters": { - "data_path": idf_file_path, + "data_path": output_dataset_path, "data_source": "EnergyPlus", }, "Payloads": {"data_processing_obj": "$"}, @@ -184,7 +181,6 @@ def get_workflow(self, idf_file_path, output_dir): def get_verification_case( self, - idf_file_path, output_dataset_path, supply_outlet_node, air_loop, @@ -194,7 +190,7 @@ def get_verification_case( "no": 1, "run_simulation": False, "expected_result": "pass", - "simulation_IO": {"idf": idf_file_path, "output": output_dataset_path}, + "simulation_IO": {"output": output_dataset_path}, "datapoints_source": { "idf_output_variables": { "T_sa_set": { @@ -228,7 +224,6 @@ def run( design_zone_cooling_air_temp = runner.getDoubleArgumentValue( "design_zone_cooling_air_temp", user_arguments ) - idf_file_path = runner.getStringArgumentValue("idf_path", user_arguments) output_dataset_path = runner.getStringArgumentValue( "output_dataset_path", user_arguments ) @@ -250,13 +245,12 @@ def run( output_variable = openstudio.model.OutputVariable( "System Node Temperature", model ) - output_variable.setName(f"{air_loop.name} Supply Outlet Temperature") - output_variable.setKeyValue(f"{supply_outlet_node.name}") + output_variable.setName(f"{air_loop.name().get()} Supply Outlet Temperature") + output_variable.setKeyValue(f"{supply_outlet_node.name().get()}") runner.registerInfo("Added OutputVariable for supply outlet node temperature") verification_cases = self.get_verification_case( - idf_file_path, output_dataset_path, supply_outlet_node, air_loop, @@ -265,7 +259,7 @@ def run( with open(f"{output_dir}/supply_air_temperature_reset_verification_case.json", "w") as f: json.dump(verification_cases, f, indent=2) - workflow = self.get_workflow(idf_file_path, output_dir) + workflow = self.get_workflow(output_dataset_path, output_dir) with open(f"{output_dir}/constrain_workflow.json", "w") as f: json.dump(workflow, f, indent=2) diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.xml b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.xml index 7771a0f..e37324a 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.xml +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.xml @@ -1,44 +1,43 @@ 3.1 - generate_constrain_supply_air_temperature_reset_verification_case - - - 2024-08-28T12:00:00Z + constrain_supply_air_temperature_reset_verification + 7f59756b-16e7-4bb2-a122-7e7a3a8bfbc6 + 54f5d1b9-a933-4ecb-96c6-11f954165f26 + 2024-09-30T22:52:39Z + 6A20E99B ConstrainSupplyAirTemperatureResetVerification - Generate ConStrain Supply Air Temperature Reset Verification Case - This measure generates a ConStrain Supply Air Tempearature Reset Verification Case. - + Supply Air Temperature Reset Verification + Verifies supply air temperature reset for a specified AirLoopHVAC. + Verifies supply air temperature reset for a specified AirLoopHVAC. - idf_path - IDF Path - string - true - - - output_dataset_path - Output Dataset Path - string + air_loop_name + air_loop_name + String true + false - output_dir - Output Directory - string + design_zone_cooling_air_temp + design_zone_cooling_air_temp + Double true + false - air_loop_name - Air Loop Name - string + output_dataset_path + output_dataset_path + String true + false - design_zone_cooling_air_temp - Design Zone Cooling Air Temp - string + output_dir + output_dir + String true + false @@ -57,17 +56,24 @@ false boolean + + Measure Language + Python + string + LICENSE.md md license + 00000000 README.md - erb - readmee + md + readme + CBA8CEA9 @@ -78,6 +84,31 @@ measure.py py script + 6CDC5A23 + + + __init__.py + py + test + 00000000 + + + input/test.csv + csv + test + 788E5208 + + + input/test.idf + idf + test + FA084E6A + + + test_measure.py + py + test + E483C774 - \ No newline at end of file + diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json index bbf59a0..bc852ff 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json @@ -2,7 +2,7 @@ "workflow_name": "Supply Air Temperature Reset Verification", "meta": { "author": "None", - "date": "05/08/2024", + "date": "09/30/2024", "version": "1.0", "description": "Supply Air Temperature Reset Verification" }, @@ -17,7 +17,7 @@ "Type": "MethodCall", "MethodCall": "DataProcessing", "Parameters": { - "data_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.idf", + "data_path": "./tests/input/test.csv", "data_source": "EnergyPlus" }, "Payloads": { @@ -31,7 +31,7 @@ "Type": "MethodCall", "MethodCall": "VerificationCase", "Parameters": { - "json_case_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json" + "json_case_path": "./tests/output/supply_air_temperature_verification_case.json" }, "Payloads": { "verification_case_obj": "$" @@ -53,7 +53,7 @@ "Type": "MethodCall", "MethodCall": "Payloads['verification_obj'].configure", "Parameters": { - "output_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output", + "output_path": "./tests/output", "lib_items_path": "./schema/library.json", "plot_option": "+x None", "fig_size": "+x (6, 5)", @@ -87,7 +87,7 @@ "Type": "MethodCall", "MethodCall": "glob.glob", "Parameters": [ - "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/*_md.json" + "./tests/output/*_md.json" ], "Payloads": { "length_of_mdjson": "len($)" @@ -109,7 +109,7 @@ "Type": "MethodCall", "MethodCall": "Reporting", "Parameters": { - "verification_json": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/*_md.json", + "verification_json": "./tests/output/*_md.json", "result_md_name": "report_summary.md", "report_format": "markdown" }, diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json index 76edccc..52251a2 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json @@ -5,8 +5,7 @@ "run_simulation": false, "expected_result": "pass", "simulation_IO": { - "idf": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.idf", - "output": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.csv" + "output": "./tests/input/test.csv" }, "datapoints_source": { "idf_output_variables": { @@ -17,7 +16,7 @@ } }, "parameters": { - "T_z_coo": 40.0 + "T_z_coo": 24.0 } }, "verification_class": "SupplyAirTempReset" diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py index 547b88b..a026a64 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py @@ -24,12 +24,11 @@ def test_number_of_arguments_and_argument_names(self): # get arguments and test that they are what we are expecting arguments = measure.arguments(model) - assert arguments.size() == 5 + assert arguments.size() == 4 assert arguments[0].name() == "air_loop_name" assert arguments[1].name() == "design_zone_cooling_air_temp" - assert arguments[2].name() == "idf_path" - assert arguments[3].name() == "output_dataset_path" - assert arguments[4].name() == "output_dir" + assert arguments[2].name() == "output_dataset_path" + assert arguments[3].name() == "output_dir" def test_good_argument_values(self): """ @@ -55,10 +54,9 @@ def test_good_argument_values(self): args_dict = { "air_loop_name": "Test Air Loop", - "design_zone_cooling_air_temp": 40, - "idf_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.idf", - "output_dataset_path": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/input/test.csv", - "output_dir": "./lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output" + "design_zone_cooling_air_temp": 24, + "output_dataset_path": "./tests/input/test.csv", + "output_dir": "./tests/output" } for arg in arguments: @@ -72,5 +70,16 @@ def test_good_argument_values(self): result = runner.result() assert result.value().valueName() == "Success" + output_var_found = False + expected_var_name = "Test Air Loop Supply Outlet Temperature" + + for output_variable in model.getOutputVariables(): + if output_variable.name().get() == expected_var_name and output_variable.keyValue() == "Node 2": + output_var_found = True + break + + assert output_var_found, f"Expected OutputVariable '{expected_var_name}' not found in the model" + + if __name__ == "__main__": pytest.main() \ No newline at end of file From 20c8ffe64e65f14622caf2ae50568d553d66f325 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Tue, 1 Oct 2024 17:07:55 -0700 Subject: [PATCH 07/10] Correct comments. --- .../tests/test_measure.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py index a026a64..f9d7f11 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py @@ -14,11 +14,10 @@ def test_number_of_arguments_and_argument_names(self): # make an empty model model = openstudio.model.Model() - # get arguments and test that they are expecting a failure - # because the model doesn't have a chiller + # get arguments arguments = measure.arguments(model) - # Create dummy chiller object + # Create dummy air loop object air_loop = openstudio.model.AirLoopHVAC(model) air_loop.setName("Test Air Loop") From 35df8e86e3f8f9d7e292e07b7c9a2480ff8a8422 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Tue, 1 Oct 2024 17:09:52 -0700 Subject: [PATCH 08/10] Update licenses. --- .../LICENSE.md | 9 +++++++++ lib/measures/GenerateConStrainReport/LICENSE.md | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/LICENSE.md b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/LICENSE.md index e69de29..a20f3f6 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/LICENSE.md +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/LICENSE.md @@ -0,0 +1,9 @@ +BSD 2-Clause License + +Generate ConStrain Supply Air Temperature Reset Verification Case Copyright (c) 2024, Battelle Memorial Institute +All rights reserved. +1. Battelle Memorial Institute (hereinafter Battelle) hereby grants permission to any person or entity lawfully obtaining a copy of this software and associated documentation files (hereinafter “the Software”) to redistribute and use the Software in source and binary forms, with or without modification. Such person or entity may use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and may permit others to do so, subject to the following conditions: + - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers. + - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + - Other than as used herein, neither the name Battelle Memorial Institute or Battelle may be used in any form whatsoever without the express written consent of Battelle. +2. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BATTELLE OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/lib/measures/GenerateConStrainReport/LICENSE.md b/lib/measures/GenerateConStrainReport/LICENSE.md index e69de29..24ca414 100644 --- a/lib/measures/GenerateConStrainReport/LICENSE.md +++ b/lib/measures/GenerateConStrainReport/LICENSE.md @@ -0,0 +1,9 @@ +BSD 2-Clause License + +Generate ConStrain Report Copyright (c) 2024, Battelle Memorial Institute +All rights reserved. +1. Battelle Memorial Institute (hereinafter Battelle) hereby grants permission to any person or entity lawfully obtaining a copy of this software and associated documentation files (hereinafter “the Software”) to redistribute and use the Software in source and binary forms, with or without modification. Such person or entity may use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and may permit others to do so, subject to the following conditions: + - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers. + - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + - Other than as used herein, neither the name Battelle Memorial Institute or Battelle may be used in any form whatsoever without the express written consent of Battelle. +2. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BATTELLE OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file From 0c1f37768cb13588d056f824020b5d3322281f8a Mon Sep 17 00:00:00 2001 From: Julian Slane Date: Fri, 4 Oct 2024 11:39:41 -0700 Subject: [PATCH 09/10] Create output directory if it does not yet exist --- .../ConstrainSupplyAirTemperatureResetVerification/measure.py | 3 +++ .../tests/test_measure.py | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py index c449848..9d53f6f 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/measure.py @@ -2,6 +2,7 @@ import logging import datetime import json +import os logger = logging.getLogger(__name__) @@ -256,6 +257,8 @@ def run( air_loop, design_zone_cooling_air_temp, ) + + os.makedirs(output_dir, exist_ok=True) with open(f"{output_dir}/supply_air_temperature_reset_verification_case.json", "w") as f: json.dump(verification_cases, f, indent=2) diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py index f9d7f11..11180f8 100644 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py +++ b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/test_measure.py @@ -14,9 +14,6 @@ def test_number_of_arguments_and_argument_names(self): # make an empty model model = openstudio.model.Model() - # get arguments - arguments = measure.arguments(model) - # Create dummy air loop object air_loop = openstudio.model.AirLoopHVAC(model) air_loop.setName("Test Air Loop") From bf0ac3cf3a9acaac464648d2b2282663222b8b44 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Mon, 7 Oct 2024 09:09:29 -0700 Subject: [PATCH 10/10] Remove test output. --- .../tests/output/constrain_workflow.json | 144 ------------------ ...r_temperature_reset_verification_case.json | 25 --- 2 files changed, 169 deletions(-) delete mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json delete mode 100644 lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json deleted file mode 100644 index bc852ff..0000000 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/constrain_workflow.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "workflow_name": "Supply Air Temperature Reset Verification", - "meta": { - "author": "None", - "date": "09/30/2024", - "version": "1.0", - "description": "Supply Air Temperature Reset Verification" - }, - "imports": [ - "numpy as np", - "pandas as pd", - "datetime", - "glob" - ], - "states": { - "load_data": { - "Type": "MethodCall", - "MethodCall": "DataProcessing", - "Parameters": { - "data_path": "./tests/input/test.csv", - "data_source": "EnergyPlus" - }, - "Payloads": { - "data_processing_obj": "$" - }, - "Start": "True", - "Next": "load_verification_case" - } - }, - "load_verification_case": { - "Type": "MethodCall", - "MethodCall": "VerificationCase", - "Parameters": { - "json_case_path": "./tests/output/supply_air_temperature_verification_case.json" - }, - "Payloads": { - "verification_case_obj": "$" - }, - "Next": "validate_case" - }, - "validate_cases": { - "Type": "Choice", - "Choices": [ - { - "Value": "Payloads['verification_case_obj'].validate()", - "Equals": "True", - "Next": "setup_verification" - } - ], - "Default": "Report Error in Workflow" - }, - "configure verification runner": { - "Type": "MethodCall", - "MethodCall": "Payloads['verification_obj'].configure", - "Parameters": { - "output_path": "./tests/output", - "lib_items_path": "./schema/library.json", - "plot_option": "+x None", - "fig_size": "+x (6, 5)", - "num_threads": 1, - "preprocessed_data": "Payloads['data_processing_obj']" - }, - "Payloads": {}, - "Next": "run verification" - }, - "run verification": { - "Type": "MethodCall", - "MethodCall": "Payloads['verification_obj'].run", - "Parameters": {}, - "Payloads": { - "verification_return": "$" - }, - "Next": "check results" - }, - "setup verification": { - "Type": "MethodCall", - "MethodCall": "Verification", - "Parameters": { - "verifications": "Payloads['verification_case_obj']" - }, - "Payloads": { - "verification_obj": "$" - }, - "Next": "configure verification runner" - }, - "check results": { - "Type": "MethodCall", - "MethodCall": "glob.glob", - "Parameters": [ - "./tests/output/*_md.json" - ], - "Payloads": { - "length_of_mdjson": "len($)" - }, - "Next": "check number of result files" - }, - "check number of result files": { - "Type": "Choice", - "Choices": [ - { - "Value": "Payloads['length_of_mdjson']", - "Equals": "1", - "Next": "reporting_object_instantiation" - } - ], - "Default": "Report Error in workflow" - }, - "reporting_object_instantiation": { - "Type": "MethodCall", - "MethodCall": "Reporting", - "Parameters": { - "verification_json": "./tests/output/*_md.json", - "result_md_name": "report_summary.md", - "report_format": "markdown" - }, - "Payloads": { - "reporting_obj": "$" - }, - "Next": "report_cases" - }, - "report_cases": { - "Type": "MethodCall", - "MethodCall": "Payloads['reporting_obj'].report_multiple_cases", - "Parameters": {}, - "Payloads": {}, - "Next": "Success" - }, - "Success": { - "Type": "MethodCall", - "MethodCall": "print", - "Parameters": [ - "Congratulations! The supply air temperature reset verification workflow is executed with expected results and no error!" - ], - "End": "True" - }, - "Report Error in workflow": { - "Type": "MethodCall", - "MethodCall": "logging.error", - "Parameters": [ - "Something is wrong in the workflow execution" - ], - "End": "True" - } -} \ No newline at end of file diff --git a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json b/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json deleted file mode 100644 index 52251a2..0000000 --- a/lib/measures/ConstrainSupplyAirTemperatureResetVerification/tests/output/supply_air_temperature_reset_verification_case.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "cases": [ - { - "no": 1, - "run_simulation": false, - "expected_result": "pass", - "simulation_IO": { - "output": "./tests/input/test.csv" - }, - "datapoints_source": { - "idf_output_variables": { - "T_sa_set": { - "subject": "Node 2", - "variable": "Test Air Loop Supply Outlet Temperature", - "frequency": "detailed" - } - }, - "parameters": { - "T_z_coo": 24.0 - } - }, - "verification_class": "SupplyAirTempReset" - } - ] -} \ No newline at end of file