diff --git a/Model_Library b/Model_Library index 2562cac5ba7b6280539585cb0496dcd7b0ffdda0..464d488d4660999a14542f1c636825c3b28fc2ab 160000 --- a/Model_Library +++ b/Model_Library @@ -1 +1 @@ -Subproject commit 2562cac5ba7b6280539585cb0496dcd7b0ffdda0 +Subproject commit 464d488d4660999a14542f1c636825c3b28fc2ab diff --git a/README.md b/README.md index a0d07a9dfdb56d09cb50ecb26ebfba45a22cc46d..c80186675aa656fc9151086b4448ffc01d1af2b9 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ The ineed-dc-framework repository is the framework's main repository. It contain The sub-repository Model_Libary contains the mathematical models of component, prosumer, quarter, and city levels. - `Components/` : Contains all component models and initialized pre-configured components - - `Prosumer/` : Includes BaseProsumer model whhich allows to flexibily model any Prosumer application + - `Prosumer/` : Includes Prosumer model whhich allows to flexibily model any Prosumer application - `District/` : Will contain district level model (implementation in progress). - `City/` : Will contain city level model (implementation in progress). diff --git a/input_files/convert_input_files_refactoring_part_2.py b/input_files/convert_input_files_refactoring_part_2.py new file mode 100644 index 0000000000000000000000000000000000000000..7b4ebc532282934c0467694689536af079ec47c5 --- /dev/null +++ b/input_files/convert_input_files_refactoring_part_2.py @@ -0,0 +1,250 @@ +""" +This script inspects the input files and modifies them such that they adhere to the new input file specification used by the framework after merge of merge request !16 Refactoring Part 2. +""" + +import os.path +import pandas as pd +import math + +def read_matrix(df): + matrix = [] + for i in df.index: + matrix_row = [] + for j in df.index: + matrix_row.append(df[df["name"][j]][i]) + matrix.append(matrix_row) + return matrix + +def read_components(df): + components = {} + for i in df.index: + components[df["name"][i]] = i + return components + +def compare_components(comp_1, comp_2): + different = False + for column in ['name', 'type', 'model', 'min_size', 'max_size', 'current_size']: + if comp_1[column] != comp_2[column]: + if not math.isnan(comp_1[column]) and not math.isnan(comp_2[column]): + different = True + break + return different + +def get_connected_components(matrix, components, comp): + connected_components = [] + for component in components: + if get_connection(matrix, components, comp, component) == 1: + connected_components.append(component) + return connected_components + +def get_connection(matrix, components, comp_from, comp_to): + return matrix[components[comp_from]][components[comp_to]] + +def get_bypasses(component_name, connections): + inputs = [] + outputs = [] + sector = '' + for i in connections.index: + if connections['to'][i] == component_name and connections['from'][i] not in inputs: + inputs.append(connections['from'][i]) + if sector == '': + sector = connections['sector'][i] + else: + if sector != connections['sector'][i]: + raise KeyError + if connections['from'][i] == component_name and connections['to'][i] not in outputs: + outputs.append(connections['to'][i]) + if sector == '': + sector = connections['sector'][i] + else: + if sector != connections['sector'][i]: + raise KeyError + bypasses = [] + for input in inputs: + for output in outputs: + if input != output: + if not ((connections['sector'] == sector) & (connections['from'] == input) & (connections['to'] == output)).any(): + bypasses.append((sector, input, output)) + return bypasses + +def read_config(config_path): + config_df = pd.read_csv(config_path) + config_dict = config_df.to_dict(orient='list') + + for k in config_dict: + config_dict[k] = config_dict[k][0] + return config_dict + +changed_topologies = [] +invalid_topologies = [] +renamed_components = {'StandardElectricalConsumption': 'ElectricalConsumption', + 'StandardACGrid': 'ElectricalGrid', + 'StandardPVGenerator': 'PVGenerator', + 'StandardGasGrid': 'GasGrid', + 'StandardPEMElectrolyzer': 'PEMElectrolyzer', + 'StandardPEMFuelCell': 'PEMFuelCell', + 'BasicInverter': 'StaticInverter', + 'Inverter': 'DynamicInverter'} +consumption_components = ['CoolConsumption', 'ChargingInfrastructure', 'ElectricalConsumption', 'HeatConsumption', 'Radiator', 'HotWaterConsumption'] +storage_components = ['LiionBattery', 'HotWaterStorage', 'PressureStorage'] +for dirpath, dirnames, filenames in os.walk(".\\input_files"): + topology_here = False + matrix_files = [] + for filename in filenames: + if filename.find('matrix') and filename.endswith('.csv') and (filename.find('elec') is not -1): + topology_here = True + matrix_files.append((filename, 'electricity')) + if filename.find('matrix') and filename.endswith('.csv') and (filename.find('gas') is not -1): + topology_here = True + matrix_files.append((filename, 'gas')) + if filename.find('matrix') and filename.endswith('.csv') and (filename.find('hydro') is not -1): + topology_here = True + matrix_files.append((filename, 'hydrogen')) + if filename.find('matrix') and filename.endswith('.csv') and (filename.find('therm') is not -1): + topology_here = True + matrix_files.append((filename, 'heat')) + if topology_here: + try: + print(f"Inspecting topology {dirpath}") + file_contents = [] + for matrix_file, sector in matrix_files: + df = pd.read_csv(os.path.join(dirpath, matrix_file)) + df.rename(columns = {'comp_name': 'name', 'comp_type': 'type'}, inplace = True) + for i in df.index: + if df['type'][i] in renamed_components: + df.loc[i, 'type'] = renamed_components[df['type'][i]] + if df['type'][i] in consumption_components: + df.loc[i, 'model'] = '' + df.loc[i, 'min_size'] = '' + df.loc[i, 'max_size'] = '' + df.loc[i, 'current_size'] = '' + file_contents.append((df, read_matrix(df), read_components(df), sector)) + all_components = pd.DataFrame(columns = ['name', 'type', 'model', 'min_size', 'max_size', 'current_size']) + all_connections = pd.DataFrame(columns = ['sector', 'from', 'to']) + for df, matrix, components, sector in file_contents: + for component in components: + if component not in all_components.loc[:]['name']: + all_components.loc[component] = df.loc[components[component]][['name', 'type', 'model', 'min_size', 'max_size', 'current_size']] + else: + if compare_components(all_components.loc[component], df.loc[components[component]][['name', 'type', 'model', 'min_size', 'max_size', 'current_size']]): + raise KeyError + for connected_component in get_connected_components(matrix, components, component): + all_connections = pd.concat([all_connections, pd.Series({'sector': sector, 'from': component, 'to': connected_component}).to_frame().T], ignore_index = True) + while True: + number_of_connections_before = len(all_connections) + for i in all_components.index: + if all_components['type'][i] in storage_components: + for sector, from_component, to_component in get_bypasses(all_components['name'][i], all_connections): + all_connections = pd.concat([all_connections, pd.Series({'sector': sector, 'from': from_component, 'to': to_component}).to_frame().T], ignore_index = True) + number_of_connections_after = len(all_connections) + if number_of_connections_before == number_of_connections_after: + break + + config = read_config(os.path.join(dirpath, "config.csv")) + changed_topologies.append(dirpath) + new_config = dict() + for name, value in config.items(): + # configs to delete + if name in ['injection/pvpeak', 'elec_price_cap_low', 'elec_price_cap_high']: + pass + # configs to keep + elif name in ['yearly_interest', 'planning_horizon']: + new_config[name] = value + # configs that are handled by other configs + elif name in ['elec_price_variable', 'injection_price_variable', 'gas_price_variable', 'injection_price_gas_variable', 'heat_price_variable', 'injection_price_heat_variable', 'cooling_price_variable', 'injection_price_cooling_variable']: + pass + elif name == 'elec_price': + if config['elec_price_variable'] == 1: + print(f"Config of topology {dirpath} has a variable electricity price, so be sure to add a price profile!") + else: + for i in all_components.index: + if all_components['type'][i] == 'ElectricalGrid': + new_config[all_components['name'][i] + '_price'] = value + elif name == 'injection_price': + if config['injection_price_variable'] == 1: + print(f"Config of topology {dirpath} has a variable electricity injection price, so be sure to add a price profile!") + else: + for i in all_components.index: + if all_components['type'][i] == 'ElectricalGrid': + new_config[all_components['name'][i] + '_injection_price'] = value + elif name == 'gas_price': + if config['gas_price_variable'] == 1: + print(f"Config of topology {dirpath} has a variable gas price, so be sure to add a price profile!") + else: + for i in all_components.index: + if all_components['type'][i] == 'GasGrid': + new_config[all_components['name'][i] + '_price'] = value + elif name == 'injection_price_gas': + if config['injection_price_gas_variable'] == 1: + print(f"Config of topology {dirpath} has a variable gas injection price, so be sure to add a price profile!") + else: + for i in all_components.index: + if all_components['type'][i] == 'GasGrid': + new_config[all_components['name'][i] + '_injection_price'] = value + elif name == 'heat_price': + if config['heat_price_variable'] == 1: + print(f"Config of topology {dirpath} has a variable heat price, so be sure to add a price profile!") + else: + for i in all_components.index: + if all_components['type'][i] == 'HeatGrid': + new_config[all_components['name'][i] + '_price'] = value + elif name == 'injection_price_heat': + if config['injection_price_heat_variable'] == 1: + print(f"Config of topology {dirpath} has a variable heat injection price, so be sure to add a price profile!") + else: + for i in all_components.index: + if all_components['type'][i] == 'HeatGrid': + new_config[all_components['name'][i] + '_injection_price'] = value + elif name == 'cooling_price': + if config['cooling_price_variable'] == 1: + print(f"Config of topology {dirpath} has a variable cooling price, so be sure to add a price profile!") + else: + for i in all_components.index: + if all_components['type'][i] == 'CoolingGrid': + new_config[all_components['name'][i] + '_price'] = value + elif name == 'injection_price_cooling': + if config['injection_price_cooling_variable'] == 1: + print(f"Config of topology {dirpath} has a variable cooling injection price, so be sure to add a price profile!") + else: + for i in all_components.index: + if all_components['type'][i] == 'CoolingGrid': + new_config[all_components['name'][i] + '_injection_price'] = value + elif name == 'elec_emission': + for i in all_components.index: + if all_components['type'][i] == 'ElectricalGrid': + new_config[all_components['name'][i] + '_emission'] = value + elif name == 'gas_emission': + for i in all_components.index: + if all_components['type'][i] == 'GasGrid': + new_config[all_components['name'][i] + '_emission'] = value + else: + new_config[name] = value + all_components.to_csv(os.path.join(dirpath, "temp.csv"), index = False) + df_str = pd.read_csv(os.path.join(dirpath, "temp.csv"), dtype = str, keep_default_na = False) + for i in all_components.columns: + counter = 0 + for j in all_components.index: + if issubclass(type(all_components[i][j]), float): + if len(df_str[i][counter]) != 0 and df_str[i][counter].endswith(".0"): + df_str[i][counter] = f"{all_components[i][j]:.0f}" + counter += 1 + df_str.to_csv(os.path.join(dirpath, "components.csv"), index = False) + os.remove(os.path.join(dirpath, "temp.csv")) + all_connections.to_csv(os.path.join(dirpath, "connections.csv"), index = False) + for matrix_file, sector in matrix_files: + os.remove(os.path.join(dirpath, matrix_file)) + os.remove(os.path.join(dirpath, "config.csv")) + new_config_df = pd.DataFrame(columns = list(new_config.keys()), index = [0]) + for key, value in new_config.items(): + string = str(value) + if issubclass(type(value), float): + if len(string) != 0 and string.endswith(".0"): + string = f"{value:.0f}" + new_config_df.loc[0, key] = string + new_config_df.to_csv(os.path.join(dirpath, "config.csv"), index = False) + except: + invalid_topologies.append(dirpath) +for directory in changed_topologies: + print(f"Modified topology {directory}!") +for file in invalid_topologies: + print(f"Topology {file} breaks some part of the input file specification!") diff --git a/input_files/convert_input_files_released_focused_refactoring.py b/input_files/convert_input_files_released_focused_refactoring.py new file mode 100644 index 0000000000000000000000000000000000000000..876de61f5c8d091a3a26cc45ae78c4b506c4ff47 --- /dev/null +++ b/input_files/convert_input_files_released_focused_refactoring.py @@ -0,0 +1,127 @@ +""" +This script inspects the input files and modifies them such that they adhere to the new input file specification used by the framework after merge of merge request !13 Release focused refactoring. +""" + +import os.path +import pandas as pd + +def component_to_commodities(type): + if type == "AbsorptionChiller": + return "heat", None, "cold", None + if type == "CompressorChiller": + return "electricity", None, "cold", None + if type == "CoolConsumption": + return "cold", None, None, None + if type == "CoolGrid": + return "cold", None, "cold", None + if type == "ChargingInfrastructure": + return "electricity", None, None, None + if type == "ElectricalBusBar": + return "electricity", None, "electricity", None + if type == "ElectricalConsumption": + return "electricity", None, None, None + if type == "ElectricalGrid": + return "electricity", None, "electricity", None + if type == "PVGenerator": + return None, None, "electricity", None + if type == "DynamicInverter": + return "electricity", None, "electricity", None + if type == "StaticInverter": + return "electricity", None, "electricity", None + if type == "LiionBattery": + return "electricity", None, "electricity", None + if type == "BHKW": + return "gas", None, "heat", "electricity" + if type == "CHP": + return "gas", None, "heat", "electricity" + if type == "GasGrid": + return "gas", None, "gas", None + if type == "ElectricBoiler": + return "electricity", None, "heat", None + if type == "GasBoiler": + return "gas", None, "heat", None + if type == "HeatGrid": + return "heat", None, "heat", None + if type == "ElectricRadiator": + return "electricity", None, "heat", None + if type == "HeatConsumption": + return "heat", None, None, None + if type == "Radiator": + return "heat", None, None, None + if type == "UnderfloorHeat": + return "heat", None, "heat", None + if type == "HeatExchanger": + return "heat", None, "heat", None + if type == "GasHeatPump": + return "gas", None, "heat", None + if type == "HeatPump": + return "electricity", None, "heat", None + if type == "HotWaterConsumption": + return "heat", None, None, None + if type == "SolarThermalCollector": + return None, None, "heat", None + if type == "HotWaterStorage": + return "heat", None, "heat", None + if type == "PEMElectrolyzer": + return "electricity", None, "hydrogen", None + if type == "PEMFuelCell": + return "hydrogen", None, "electricity", "heat" + if type == "PEMElectrolyzer": + return "electricity", None, "hydrogen", None + if type == "PressureStorage": + return "hydrogen", None, "hydrogen", None + raise KeyError + +changed_topologies = [] +invalid_topologies = [] +for dirpath, dirnames, filenames in os.walk(".\\input_files"): + components_here = False + connections_here = False + for filename in filenames: + if filename == "components.csv": + components_file = filename + components_here = True + elif filename == "connections.csv": + connections_file = filename + connections_here = True + + if components_here and connections_here: + try: + print(f"Inspecting topology {dirpath}") + components_df = pd.read_csv(os.path.join(dirpath, components_file)) + components = {} + for i in components_df.index: + components[components_df["name"][i]] = components_df.loc[i] + connections = pd.read_csv(os.path.join(dirpath, connections_file)) + connections['output'] = pd.Series("", index = connections.index) + connections['input'] = pd.Series("", index = connections.index) + for i in connections.index: + commodity = connections['sector'][i] + connection_from = connections['from'][i] + connection_to = connections['to'][i] + from_type = components[connection_from]['type'] + input_commodity_1, input_commodity_2, output_commodity_1, output_commodity_2 = component_to_commodities(from_type) + if commodity == output_commodity_1: + connections['output'][i] = "1" + elif commodity == output_commodity_2: + connections['output'][i] = "2" + else: + raise KeyError + to_type = components[connection_to]['type'] + input_commodity_1, input_commodity_2, output_commodity_1, output_commodity_2 = component_to_commodities(to_type) + if commodity == input_commodity_1: + connections['input'][i] = "1" + elif commodity == input_commodity_2: + connections['input'][i] = "2" + else: + raise KeyError + connections.drop("sector", axis = 1) + connections = connections[["from", "output", "to", "input"]] + changed_topologies.append(dirpath) + connections.to_csv(os.path.join(dirpath, "connections.csv"), index = False) + except: + invalid_topologies.append(dirpath) +for directory in changed_topologies: + print(f"Modified topology {directory}!") +for file in invalid_topologies: + print(f"Topology {file} breaks some part of the input file specification!") diff --git a/input_files/data/carbon/elec_carbon_intensity_average_2021_GER.csv b/input_files/data/carbon/elec_carbon_intensity_average_2021_GER.csv new file mode 100644 index 0000000000000000000000000000000000000000..125caeeb47cc12b9d2cb7d2d7635939f8434e11c --- /dev/null +++ b/input_files/data/carbon/elec_carbon_intensity_average_2021_GER.csv @@ -0,0 +1,8761 @@ +datetime,values +2021-01-01 00:00:00,541.56 +2021-01-01 01:00:00,548.3 +2021-01-01 02:00:00,558.65 +2021-01-01 03:00:00,558.97 +2021-01-01 04:00:00,570.36 +2021-01-01 05:00:00,577.87 +2021-01-01 06:00:00,573.77 +2021-01-01 07:00:00,572.17 +2021-01-01 08:00:00,556.69 +2021-01-01 09:00:00,533.41 +2021-01-01 10:00:00,519.5 +2021-01-01 11:00:00,513.14 +2021-01-01 12:00:00,518.62 +2021-01-01 13:00:00,533.77 +2021-01-01 14:00:00,550.12 +2021-01-01 15:00:00,549.07 +2021-01-01 16:00:00,549.16 +2021-01-01 17:00:00,546.25 +2021-01-01 18:00:00,544.49 +2021-01-01 19:00:00,543.76 +2021-01-01 20:00:00,536.1 +2021-01-01 21:00:00,526.68 +2021-01-01 22:00:00,524.43 +2021-01-01 23:00:00,527.39 +2021-01-02 00:00:00,526.54 +2021-01-02 01:00:00,522.46 +2021-01-02 02:00:00,522.61 +2021-01-02 03:00:00,530.71 +2021-01-02 04:00:00,543.01 +2021-01-02 05:00:00,554.76 +2021-01-02 06:00:00,569.13 +2021-01-02 07:00:00,583.64 +2021-01-02 08:00:00,584.03 +2021-01-02 09:00:00,580.23 +2021-01-02 10:00:00,575.46 +2021-01-02 11:00:00,575.42 +2021-01-02 12:00:00,584.52 +2021-01-02 13:00:00,595.96 +2021-01-02 14:00:00,606.33 +2021-01-02 15:00:00,605.3 +2021-01-02 16:00:00,593.55 +2021-01-02 17:00:00,582.99 +2021-01-02 18:00:00,577.63 +2021-01-02 19:00:00,574.84 +2021-01-02 20:00:00,567.18 +2021-01-02 21:00:00,549.67 +2021-01-02 22:00:00,521.27 +2021-01-02 23:00:00,488.75 +2021-01-03 00:00:00,468.6 +2021-01-03 01:00:00,442.78 +2021-01-03 02:00:00,420.22 +2021-01-03 03:00:00,395.39 +2021-01-03 04:00:00,376.12 +2021-01-03 05:00:00,367.09 +2021-01-03 06:00:00,370.23 +2021-01-03 07:00:00,385.88 +2021-01-03 08:00:00,394.31 +2021-01-03 09:00:00,393.69 +2021-01-03 10:00:00,397.39 +2021-01-03 11:00:00,398.85 +2021-01-03 12:00:00,396.45 +2021-01-03 13:00:00,390.54 +2021-01-03 14:00:00,397.64 +2021-01-03 15:00:00,398.76 +2021-01-03 16:00:00,409.34 +2021-01-03 17:00:00,413.45 +2021-01-03 18:00:00,420.0 +2021-01-03 19:00:00,412.63 +2021-01-03 20:00:00,414.45 +2021-01-03 21:00:00,417.06 +2021-01-03 22:00:00,413.89 +2021-01-03 23:00:00,417.05 +2021-01-04 00:00:00,432.32 +2021-01-04 01:00:00,442.58 +2021-01-04 02:00:00,446.38 +2021-01-04 03:00:00,449.37 +2021-01-04 04:00:00,456.9 +2021-01-04 05:00:00,498.52 +2021-01-04 06:00:00,523.03 +2021-01-04 07:00:00,524.7 +2021-01-04 08:00:00,527.66 +2021-01-04 09:00:00,528.14 +2021-01-04 10:00:00,531.66 +2021-01-04 11:00:00,519.95 +2021-01-04 12:00:00,527.18 +2021-01-04 13:00:00,526.37 +2021-01-04 14:00:00,534.23 +2021-01-04 15:00:00,536.99 +2021-01-04 16:00:00,542.97 +2021-01-04 17:00:00,542.65 +2021-01-04 18:00:00,544.36 +2021-01-04 19:00:00,546.8 +2021-01-04 20:00:00,549.03 +2021-01-04 21:00:00,547.52 +2021-01-04 22:00:00,544.17 +2021-01-04 23:00:00,521.76 +2021-01-05 00:00:00,515.43 +2021-01-05 01:00:00,516.11 +2021-01-05 02:00:00,517.28 +2021-01-05 03:00:00,520.54 +2021-01-05 04:00:00,535.3 +2021-01-05 05:00:00,551.02 +2021-01-05 06:00:00,564.76 +2021-01-05 07:00:00,565.94 +2021-01-05 08:00:00,568.11 +2021-01-05 09:00:00,555.85 +2021-01-05 10:00:00,555.21 +2021-01-05 11:00:00,552.07 +2021-01-05 12:00:00,556.63 +2021-01-05 13:00:00,553.67 +2021-01-05 14:00:00,556.08 +2021-01-05 15:00:00,552.24 +2021-01-05 16:00:00,547.46 +2021-01-05 17:00:00,550.59 +2021-01-05 18:00:00,555.06 +2021-01-05 19:00:00,550.59 +2021-01-05 20:00:00,543.22 +2021-01-05 21:00:00,536.96 +2021-01-05 22:00:00,522.36 +2021-01-05 23:00:00,506.64 +2021-01-06 00:00:00,503.9 +2021-01-06 01:00:00,505.87 +2021-01-06 02:00:00,507.7 +2021-01-06 03:00:00,519.48 +2021-01-06 04:00:00,534.95 +2021-01-06 05:00:00,555.6 +2021-01-06 06:00:00,575.55 +2021-01-06 07:00:00,594.45 +2021-01-06 08:00:00,604.06 +2021-01-06 09:00:00,613.74 +2021-01-06 10:00:00,621.39 +2021-01-06 11:00:00,618.52 +2021-01-06 12:00:00,627.4 +2021-01-06 13:00:00,637.91 +2021-01-06 14:00:00,646.87 +2021-01-06 15:00:00,642.45 +2021-01-06 16:00:00,633.71 +2021-01-06 17:00:00,631.55 +2021-01-06 18:00:00,642.51 +2021-01-06 19:00:00,646.69 +2021-01-06 20:00:00,642.97 +2021-01-06 21:00:00,633.0 +2021-01-06 22:00:00,621.93 +2021-01-06 23:00:00,608.34 +2021-01-07 00:00:00,604.09 +2021-01-07 01:00:00,597.13 +2021-01-07 02:00:00,592.37 +2021-01-07 03:00:00,596.77 +2021-01-07 04:00:00,612.5 +2021-01-07 05:00:00,641.38 +2021-01-07 06:00:00,648.19 +2021-01-07 07:00:00,647.45 +2021-01-07 08:00:00,641.17 +2021-01-07 09:00:00,635.93 +2021-01-07 10:00:00,632.55 +2021-01-07 11:00:00,630.67 +2021-01-07 12:00:00,637.63 +2021-01-07 13:00:00,649.8 +2021-01-07 14:00:00,660.91 +2021-01-07 15:00:00,665.82 +2021-01-07 16:00:00,649.95 +2021-01-07 17:00:00,642.04 +2021-01-07 18:00:00,640.81 +2021-01-07 19:00:00,644.14 +2021-01-07 20:00:00,643.28 +2021-01-07 21:00:00,641.09 +2021-01-07 22:00:00,632.02 +2021-01-07 23:00:00,621.71 +2021-01-08 00:00:00,614.17 +2021-01-08 01:00:00,612.04 +2021-01-08 02:00:00,609.68 +2021-01-08 03:00:00,612.21 +2021-01-08 04:00:00,633.63 +2021-01-08 05:00:00,648.37 +2021-01-08 06:00:00,656.23 +2021-01-08 07:00:00,659.96 +2021-01-08 08:00:00,655.45 +2021-01-08 09:00:00,647.54 +2021-01-08 10:00:00,636.98 +2021-01-08 11:00:00,638.3 +2021-01-08 12:00:00,647.27 +2021-01-08 13:00:00,652.09 +2021-01-08 14:00:00,663.25 +2021-01-08 15:00:00,661.13 +2021-01-08 16:00:00,647.09 +2021-01-08 17:00:00,649.33 +2021-01-08 18:00:00,657.26 +2021-01-08 19:00:00,661.7 +2021-01-08 20:00:00,657.41 +2021-01-08 21:00:00,657.99 +2021-01-08 22:00:00,639.35 +2021-01-08 23:00:00,622.85 +2021-01-09 00:00:00,617.11 +2021-01-09 01:00:00,618.85 +2021-01-09 02:00:00,619.26 +2021-01-09 03:00:00,619.72 +2021-01-09 04:00:00,625.06 +2021-01-09 05:00:00,634.16 +2021-01-09 06:00:00,653.68 +2021-01-09 07:00:00,671.0 +2021-01-09 08:00:00,675.25 +2021-01-09 09:00:00,664.91 +2021-01-09 10:00:00,655.83 +2021-01-09 11:00:00,653.58 +2021-01-09 12:00:00,658.35 +2021-01-09 13:00:00,668.94 +2021-01-09 14:00:00,688.91 +2021-01-09 15:00:00,697.96 +2021-01-09 16:00:00,683.41 +2021-01-09 17:00:00,677.69 +2021-01-09 18:00:00,681.87 +2021-01-09 19:00:00,683.88 +2021-01-09 20:00:00,675.43 +2021-01-09 21:00:00,663.97 +2021-01-09 22:00:00,649.74 +2021-01-09 23:00:00,631.7 +2021-01-10 00:00:00,613.71 +2021-01-10 01:00:00,604.1 +2021-01-10 02:00:00,595.0 +2021-01-10 03:00:00,589.51 +2021-01-10 04:00:00,585.74 +2021-01-10 05:00:00,580.35 +2021-01-10 06:00:00,580.4 +2021-01-10 07:00:00,578.12 +2021-01-10 08:00:00,568.67 +2021-01-10 09:00:00,542.58 +2021-01-10 10:00:00,523.4 +2021-01-10 11:00:00,506.29 +2021-01-10 12:00:00,495.52 +2021-01-10 13:00:00,501.55 +2021-01-10 14:00:00,524.12 +2021-01-10 15:00:00,537.92 +2021-01-10 16:00:00,525.51 +2021-01-10 17:00:00,521.43 +2021-01-10 18:00:00,520.34 +2021-01-10 19:00:00,521.9 +2021-01-10 20:00:00,520.94 +2021-01-10 21:00:00,522.75 +2021-01-10 22:00:00,503.14 +2021-01-10 23:00:00,485.24 +2021-01-11 00:00:00,466.21 +2021-01-11 01:00:00,453.76 +2021-01-11 02:00:00,446.27 +2021-01-11 03:00:00,442.86 +2021-01-11 04:00:00,453.21 +2021-01-11 05:00:00,464.73 +2021-01-11 06:00:00,463.51 +2021-01-11 07:00:00,459.26 +2021-01-11 08:00:00,454.64 +2021-01-11 09:00:00,445.04 +2021-01-11 10:00:00,441.74 +2021-01-11 11:00:00,438.73 +2021-01-11 12:00:00,438.04 +2021-01-11 13:00:00,438.77 +2021-01-11 14:00:00,440.29 +2021-01-11 15:00:00,436.71 +2021-01-11 16:00:00,428.79 +2021-01-11 17:00:00,414.71 +2021-01-11 18:00:00,399.21 +2021-01-11 19:00:00,374.52 +2021-01-11 20:00:00,334.53 +2021-01-11 21:00:00,318.34 +2021-01-11 22:00:00,299.81 +2021-01-11 23:00:00,273.64 +2021-01-12 00:00:00,268.86 +2021-01-12 01:00:00,274.95 +2021-01-12 02:00:00,282.13 +2021-01-12 03:00:00,303.72 +2021-01-12 04:00:00,341.41 +2021-01-12 05:00:00,391.14 +2021-01-12 06:00:00,421.97 +2021-01-12 07:00:00,440.06 +2021-01-12 08:00:00,445.21 +2021-01-12 09:00:00,446.41 +2021-01-12 10:00:00,450.37 +2021-01-12 11:00:00,446.52 +2021-01-12 12:00:00,438.07 +2021-01-12 13:00:00,440.37 +2021-01-12 14:00:00,454.92 +2021-01-12 15:00:00,458.42 +2021-01-12 16:00:00,452.82 +2021-01-12 17:00:00,439.16 +2021-01-12 18:00:00,432.19 +2021-01-12 19:00:00,421.43 +2021-01-12 20:00:00,406.43 +2021-01-12 21:00:00,400.95 +2021-01-12 22:00:00,381.65 +2021-01-12 23:00:00,362.41 +2021-01-13 00:00:00,353.33 +2021-01-13 01:00:00,349.31 +2021-01-13 02:00:00,346.75 +2021-01-13 03:00:00,355.9 +2021-01-13 04:00:00,375.26 +2021-01-13 05:00:00,398.99 +2021-01-13 06:00:00,398.52 +2021-01-13 07:00:00,402.07 +2021-01-13 08:00:00,393.54 +2021-01-13 09:00:00,376.48 +2021-01-13 10:00:00,355.83 +2021-01-13 11:00:00,344.1 +2021-01-13 12:00:00,334.44 +2021-01-13 13:00:00,335.3 +2021-01-13 14:00:00,345.53 +2021-01-13 15:00:00,352.93 +2021-01-13 16:00:00,356.84 +2021-01-13 17:00:00,354.92 +2021-01-13 18:00:00,356.81 +2021-01-13 19:00:00,356.07 +2021-01-13 20:00:00,357.29 +2021-01-13 21:00:00,361.77 +2021-01-13 22:00:00,350.34 +2021-01-13 23:00:00,323.07 +2021-01-14 00:00:00,319.8 +2021-01-14 01:00:00,327.08 +2021-01-14 02:00:00,348.47 +2021-01-14 03:00:00,400.34 +2021-01-14 04:00:00,454.88 +2021-01-14 05:00:00,507.92 +2021-01-14 06:00:00,554.94 +2021-01-14 07:00:00,576.23 +2021-01-14 08:00:00,596.1 +2021-01-14 09:00:00,600.64 +2021-01-14 10:00:00,598.25 +2021-01-14 11:00:00,602.21 +2021-01-14 12:00:00,613.73 +2021-01-14 13:00:00,624.73 +2021-01-14 14:00:00,633.17 +2021-01-14 15:00:00,634.56 +2021-01-14 16:00:00,616.06 +2021-01-14 17:00:00,623.98 +2021-01-14 18:00:00,633.09 +2021-01-14 19:00:00,631.91 +2021-01-14 20:00:00,626.67 +2021-01-14 21:00:00,624.57 +2021-01-14 22:00:00,611.18 +2021-01-14 23:00:00,599.55 +2021-01-15 00:00:00,593.4 +2021-01-15 01:00:00,590.78 +2021-01-15 02:00:00,585.42 +2021-01-15 03:00:00,585.37 +2021-01-15 04:00:00,595.9 +2021-01-15 05:00:00,619.29 +2021-01-15 06:00:00,629.42 +2021-01-15 07:00:00,619.72 +2021-01-15 08:00:00,621.71 +2021-01-15 09:00:00,617.39 +2021-01-15 10:00:00,613.58 +2021-01-15 11:00:00,612.92 +2021-01-15 12:00:00,614.03 +2021-01-15 13:00:00,623.27 +2021-01-15 14:00:00,632.95 +2021-01-15 15:00:00,641.3 +2021-01-15 16:00:00,637.58 +2021-01-15 17:00:00,648.79 +2021-01-15 18:00:00,661.68 +2021-01-15 19:00:00,685.22 +2021-01-15 20:00:00,690.46 +2021-01-15 21:00:00,679.72 +2021-01-15 22:00:00,659.92 +2021-01-15 23:00:00,641.57 +2021-01-16 00:00:00,632.59 +2021-01-16 01:00:00,625.51 +2021-01-16 02:00:00,626.72 +2021-01-16 03:00:00,626.81 +2021-01-16 04:00:00,627.6 +2021-01-16 05:00:00,633.01 +2021-01-16 06:00:00,641.5 +2021-01-16 07:00:00,642.98 +2021-01-16 08:00:00,638.73 +2021-01-16 09:00:00,624.39 +2021-01-16 10:00:00,607.34 +2021-01-16 11:00:00,590.52 +2021-01-16 12:00:00,580.41 +2021-01-16 13:00:00,586.15 +2021-01-16 14:00:00,593.76 +2021-01-16 15:00:00,596.85 +2021-01-16 16:00:00,597.54 +2021-01-16 17:00:00,593.67 +2021-01-16 18:00:00,598.93 +2021-01-16 19:00:00,595.19 +2021-01-16 20:00:00,579.93 +2021-01-16 21:00:00,578.43 +2021-01-16 22:00:00,574.53 +2021-01-16 23:00:00,572.94 +2021-01-17 00:00:00,571.45 +2021-01-17 01:00:00,573.23 +2021-01-17 02:00:00,575.55 +2021-01-17 03:00:00,574.35 +2021-01-17 04:00:00,573.74 +2021-01-17 05:00:00,584.43 +2021-01-17 06:00:00,589.34 +2021-01-17 07:00:00,603.36 +2021-01-17 08:00:00,612.66 +2021-01-17 09:00:00,616.82 +2021-01-17 10:00:00,615.19 +2021-01-17 11:00:00,615.69 +2021-01-17 12:00:00,625.08 +2021-01-17 13:00:00,636.93 +2021-01-17 14:00:00,644.18 +2021-01-17 15:00:00,647.54 +2021-01-17 16:00:00,634.05 +2021-01-17 17:00:00,632.34 +2021-01-17 18:00:00,623.38 +2021-01-17 19:00:00,615.09 +2021-01-17 20:00:00,602.81 +2021-01-17 21:00:00,584.46 +2021-01-17 22:00:00,564.86 +2021-01-17 23:00:00,552.76 +2021-01-18 00:00:00,549.93 +2021-01-18 01:00:00,552.85 +2021-01-18 02:00:00,552.99 +2021-01-18 03:00:00,549.65 +2021-01-18 04:00:00,550.67 +2021-01-18 05:00:00,556.76 +2021-01-18 06:00:00,551.0 +2021-01-18 07:00:00,542.52 +2021-01-18 08:00:00,531.69 +2021-01-18 09:00:00,522.99 +2021-01-18 10:00:00,507.72 +2021-01-18 11:00:00,495.02 +2021-01-18 12:00:00,486.3 +2021-01-18 13:00:00,474.57 +2021-01-18 14:00:00,473.62 +2021-01-18 15:00:00,464.6 +2021-01-18 16:00:00,457.93 +2021-01-18 17:00:00,453.45 +2021-01-18 18:00:00,438.7 +2021-01-18 19:00:00,418.42 +2021-01-18 20:00:00,408.11 +2021-01-18 21:00:00,405.86 +2021-01-18 22:00:00,389.78 +2021-01-18 23:00:00,373.56 +2021-01-19 00:00:00,367.57 +2021-01-19 01:00:00,367.97 +2021-01-19 02:00:00,375.48 +2021-01-19 03:00:00,369.33 +2021-01-19 04:00:00,368.45 +2021-01-19 05:00:00,382.4 +2021-01-19 06:00:00,399.8 +2021-01-19 07:00:00,403.23 +2021-01-19 08:00:00,400.79 +2021-01-19 09:00:00,396.28 +2021-01-19 10:00:00,397.26 +2021-01-19 11:00:00,412.16 +2021-01-19 12:00:00,426.65 +2021-01-19 13:00:00,435.3 +2021-01-19 14:00:00,440.05 +2021-01-19 15:00:00,447.56 +2021-01-19 16:00:00,441.65 +2021-01-19 17:00:00,432.68 +2021-01-19 18:00:00,413.41 +2021-01-19 19:00:00,379.26 +2021-01-19 20:00:00,336.44 +2021-01-19 21:00:00,313.61 +2021-01-19 22:00:00,276.51 +2021-01-19 23:00:00,259.67 +2021-01-20 00:00:00,265.87 +2021-01-20 01:00:00,269.29 +2021-01-20 02:00:00,275.57 +2021-01-20 03:00:00,277.93 +2021-01-20 04:00:00,291.78 +2021-01-20 05:00:00,309.55 +2021-01-20 06:00:00,333.31 +2021-01-20 07:00:00,343.63 +2021-01-20 08:00:00,336.87 +2021-01-20 09:00:00,329.03 +2021-01-20 10:00:00,321.65 +2021-01-20 11:00:00,317.64 +2021-01-20 12:00:00,321.31 +2021-01-20 13:00:00,331.44 +2021-01-20 14:00:00,336.86 +2021-01-20 15:00:00,338.89 +2021-01-20 16:00:00,328.43 +2021-01-20 17:00:00,334.59 +2021-01-20 18:00:00,321.5 +2021-01-20 19:00:00,303.6 +2021-01-20 20:00:00,282.5 +2021-01-20 21:00:00,269.69 +2021-01-20 22:00:00,257.56 +2021-01-20 23:00:00,241.99 +2021-01-21 00:00:00,237.85 +2021-01-21 01:00:00,234.29 +2021-01-21 02:00:00,229.31 +2021-01-21 03:00:00,226.9 +2021-01-21 04:00:00,220.88 +2021-01-21 05:00:00,216.12 +2021-01-21 06:00:00,242.55 +2021-01-21 07:00:00,279.07 +2021-01-21 08:00:00,281.12 +2021-01-21 09:00:00,269.63 +2021-01-21 10:00:00,259.01 +2021-01-21 11:00:00,262.55 +2021-01-21 12:00:00,267.05 +2021-01-21 13:00:00,285.48 +2021-01-21 14:00:00,307.24 +2021-01-21 15:00:00,317.31 +2021-01-21 16:00:00,318.86 +2021-01-21 17:00:00,325.65 +2021-01-21 18:00:00,326.81 +2021-01-21 19:00:00,312.09 +2021-01-21 20:00:00,285.72 +2021-01-21 21:00:00,265.38 +2021-01-21 22:00:00,237.89 +2021-01-21 23:00:00,219.29 +2021-01-22 00:00:00,217.86 +2021-01-22 01:00:00,215.75 +2021-01-22 02:00:00,217.78 +2021-01-22 03:00:00,220.46 +2021-01-22 04:00:00,232.71 +2021-01-22 05:00:00,279.14 +2021-01-22 06:00:00,335.18 +2021-01-22 07:00:00,363.75 +2021-01-22 08:00:00,387.89 +2021-01-22 09:00:00,396.08 +2021-01-22 10:00:00,417.5 +2021-01-22 11:00:00,426.13 +2021-01-22 12:00:00,433.26 +2021-01-22 13:00:00,450.28 +2021-01-22 14:00:00,479.04 +2021-01-22 15:00:00,495.45 +2021-01-22 16:00:00,502.22 +2021-01-22 17:00:00,503.82 +2021-01-22 18:00:00,499.22 +2021-01-22 19:00:00,499.19 +2021-01-22 20:00:00,504.37 +2021-01-22 21:00:00,506.54 +2021-01-22 22:00:00,512.67 +2021-01-22 23:00:00,514.27 +2021-01-23 00:00:00,518.46 +2021-01-23 01:00:00,521.36 +2021-01-23 02:00:00,520.89 +2021-01-23 03:00:00,512.88 +2021-01-23 04:00:00,512.83 +2021-01-23 05:00:00,516.31 +2021-01-23 06:00:00,516.61 +2021-01-23 07:00:00,510.02 +2021-01-23 08:00:00,500.98 +2021-01-23 09:00:00,488.38 +2021-01-23 10:00:00,483.4 +2021-01-23 11:00:00,491.68 +2021-01-23 12:00:00,503.24 +2021-01-23 13:00:00,528.54 +2021-01-23 14:00:00,564.03 +2021-01-23 15:00:00,591.26 +2021-01-23 16:00:00,592.44 +2021-01-23 17:00:00,588.94 +2021-01-23 18:00:00,585.96 +2021-01-23 19:00:00,599.25 +2021-01-23 20:00:00,607.82 +2021-01-23 21:00:00,609.78 +2021-01-23 22:00:00,602.51 +2021-01-23 23:00:00,594.01 +2021-01-24 00:00:00,573.66 +2021-01-24 01:00:00,545.41 +2021-01-24 02:00:00,523.5 +2021-01-24 03:00:00,522.77 +2021-01-24 04:00:00,526.89 +2021-01-24 05:00:00,528.49 +2021-01-24 06:00:00,540.79 +2021-01-24 07:00:00,553.41 +2021-01-24 08:00:00,556.29 +2021-01-24 09:00:00,552.74 +2021-01-24 10:00:00,550.97 +2021-01-24 11:00:00,552.97 +2021-01-24 12:00:00,560.93 +2021-01-24 13:00:00,567.74 +2021-01-24 14:00:00,583.64 +2021-01-24 15:00:00,602.47 +2021-01-24 16:00:00,608.76 +2021-01-24 17:00:00,612.63 +2021-01-24 18:00:00,622.96 +2021-01-24 19:00:00,624.48 +2021-01-24 20:00:00,622.56 +2021-01-24 21:00:00,618.19 +2021-01-24 22:00:00,615.91 +2021-01-24 23:00:00,618.35 +2021-01-25 00:00:00,626.44 +2021-01-25 01:00:00,628.96 +2021-01-25 02:00:00,633.91 +2021-01-25 03:00:00,637.71 +2021-01-25 04:00:00,670.85 +2021-01-25 05:00:00,681.71 +2021-01-25 06:00:00,673.38 +2021-01-25 07:00:00,666.09 +2021-01-25 08:00:00,664.96 +2021-01-25 09:00:00,655.45 +2021-01-25 10:00:00,640.16 +2021-01-25 11:00:00,637.99 +2021-01-25 12:00:00,631.89 +2021-01-25 13:00:00,630.52 +2021-01-25 14:00:00,632.16 +2021-01-25 15:00:00,634.34 +2021-01-25 16:00:00,629.59 +2021-01-25 17:00:00,621.35 +2021-01-25 18:00:00,615.06 +2021-01-25 19:00:00,607.72 +2021-01-25 20:00:00,603.1 +2021-01-25 21:00:00,595.0 +2021-01-25 22:00:00,580.3 +2021-01-25 23:00:00,554.88 +2021-01-26 00:00:00,541.27 +2021-01-26 01:00:00,529.6 +2021-01-26 02:00:00,525.16 +2021-01-26 03:00:00,527.13 +2021-01-26 04:00:00,547.61 +2021-01-26 05:00:00,570.72 +2021-01-26 06:00:00,584.75 +2021-01-26 07:00:00,589.58 +2021-01-26 08:00:00,587.64 +2021-01-26 09:00:00,585.23 +2021-01-26 10:00:00,574.45 +2021-01-26 11:00:00,569.97 +2021-01-26 12:00:00,573.5 +2021-01-26 13:00:00,582.01 +2021-01-26 14:00:00,592.63 +2021-01-26 15:00:00,594.27 +2021-01-26 16:00:00,582.46 +2021-01-26 17:00:00,579.7 +2021-01-26 18:00:00,577.22 +2021-01-26 19:00:00,570.42 +2021-01-26 20:00:00,559.56 +2021-01-26 21:00:00,535.05 +2021-01-26 22:00:00,522.83 +2021-01-26 23:00:00,515.54 +2021-01-27 00:00:00,511.02 +2021-01-27 01:00:00,502.1 +2021-01-27 02:00:00,495.46 +2021-01-27 03:00:00,500.74 +2021-01-27 04:00:00,531.98 +2021-01-27 05:00:00,565.23 +2021-01-27 06:00:00,583.46 +2021-01-27 07:00:00,583.59 +2021-01-27 08:00:00,577.86 +2021-01-27 09:00:00,569.95 +2021-01-27 10:00:00,569.54 +2021-01-27 11:00:00,576.5 +2021-01-27 12:00:00,590.02 +2021-01-27 13:00:00,601.87 +2021-01-27 14:00:00,612.79 +2021-01-27 15:00:00,610.44 +2021-01-27 16:00:00,599.33 +2021-01-27 17:00:00,601.45 +2021-01-27 18:00:00,603.14 +2021-01-27 19:00:00,604.92 +2021-01-27 20:00:00,593.61 +2021-01-27 21:00:00,572.1 +2021-01-27 22:00:00,553.02 +2021-01-27 23:00:00,543.67 +2021-01-28 00:00:00,540.27 +2021-01-28 01:00:00,536.73 +2021-01-28 02:00:00,530.54 +2021-01-28 03:00:00,531.48 +2021-01-28 04:00:00,549.34 +2021-01-28 05:00:00,584.3 +2021-01-28 06:00:00,597.44 +2021-01-28 07:00:00,597.86 +2021-01-28 08:00:00,588.13 +2021-01-28 09:00:00,575.89 +2021-01-28 10:00:00,564.02 +2021-01-28 11:00:00,561.72 +2021-01-28 12:00:00,559.63 +2021-01-28 13:00:00,551.94 +2021-01-28 14:00:00,554.29 +2021-01-28 15:00:00,566.05 +2021-01-28 16:00:00,560.94 +2021-01-28 17:00:00,561.74 +2021-01-28 18:00:00,548.48 +2021-01-28 19:00:00,557.0 +2021-01-28 20:00:00,552.7 +2021-01-28 21:00:00,540.59 +2021-01-28 22:00:00,505.1 +2021-01-28 23:00:00,470.98 +2021-01-29 00:00:00,452.27 +2021-01-29 01:00:00,444.76 +2021-01-29 02:00:00,425.64 +2021-01-29 03:00:00,412.86 +2021-01-29 04:00:00,415.19 +2021-01-29 05:00:00,427.07 +2021-01-29 06:00:00,439.55 +2021-01-29 07:00:00,434.32 +2021-01-29 08:00:00,424.84 +2021-01-29 09:00:00,410.58 +2021-01-29 10:00:00,388.55 +2021-01-29 11:00:00,385.19 +2021-01-29 12:00:00,377.73 +2021-01-29 13:00:00,380.16 +2021-01-29 14:00:00,392.8 +2021-01-29 15:00:00,413.04 +2021-01-29 16:00:00,427.95 +2021-01-29 17:00:00,438.51 +2021-01-29 18:00:00,442.46 +2021-01-29 19:00:00,428.94 +2021-01-29 20:00:00,423.41 +2021-01-29 21:00:00,423.37 +2021-01-29 22:00:00,418.63 +2021-01-29 23:00:00,405.24 +2021-01-30 00:00:00,399.85 +2021-01-30 01:00:00,404.48 +2021-01-30 02:00:00,409.46 +2021-01-30 03:00:00,419.76 +2021-01-30 04:00:00,445.1 +2021-01-30 05:00:00,473.11 +2021-01-30 06:00:00,510.18 +2021-01-30 07:00:00,537.68 +2021-01-30 08:00:00,547.53 +2021-01-30 09:00:00,544.3 +2021-01-30 10:00:00,542.19 +2021-01-30 11:00:00,545.73 +2021-01-30 12:00:00,549.9 +2021-01-30 13:00:00,541.1 +2021-01-30 14:00:00,543.4 +2021-01-30 15:00:00,545.41 +2021-01-30 16:00:00,539.97 +2021-01-30 17:00:00,545.8 +2021-01-30 18:00:00,555.94 +2021-01-30 19:00:00,552.47 +2021-01-30 20:00:00,541.32 +2021-01-30 21:00:00,528.13 +2021-01-30 22:00:00,518.1 +2021-01-30 23:00:00,511.34 +2021-01-31 00:00:00,507.93 +2021-01-31 01:00:00,495.99 +2021-01-31 02:00:00,483.14 +2021-01-31 03:00:00,482.52 +2021-01-31 04:00:00,482.96 +2021-01-31 05:00:00,503.78 +2021-01-31 06:00:00,512.45 +2021-01-31 07:00:00,513.64 +2021-01-31 08:00:00,508.42 +2021-01-31 09:00:00,501.11 +2021-01-31 10:00:00,488.65 +2021-01-31 11:00:00,488.61 +2021-01-31 12:00:00,489.73 +2021-01-31 13:00:00,502.0 +2021-01-31 14:00:00,528.39 +2021-01-31 15:00:00,556.67 +2021-01-31 16:00:00,551.09 +2021-01-31 17:00:00,545.93 +2021-01-31 18:00:00,546.95 +2021-01-31 19:00:00,535.39 +2021-01-31 20:00:00,510.77 +2021-01-31 21:00:00,495.45 +2021-01-31 22:00:00,489.98 +2021-01-31 23:00:00,479.38 +2021-02-01 00:00:00,467.75 +2021-02-01 01:00:00,458.25 +2021-02-01 02:00:00,448.66 +2021-02-01 03:00:00,452.66 +2021-02-01 04:00:00,480.22 +2021-02-01 05:00:00,515.33 +2021-02-01 06:00:00,537.43 +2021-02-01 07:00:00,545.18 +2021-02-01 08:00:00,547.37 +2021-02-01 09:00:00,549.55 +2021-02-01 10:00:00,552.66 +2021-02-01 11:00:00,565.3 +2021-02-01 12:00:00,575.4 +2021-02-01 13:00:00,589.4 +2021-02-01 14:00:00,593.96 +2021-02-01 15:00:00,603.66 +2021-02-01 16:00:00,601.82 +2021-02-01 17:00:00,613.11 +2021-02-01 18:00:00,621.29 +2021-02-01 19:00:00,627.39 +2021-02-01 20:00:00,633.18 +2021-02-01 21:00:00,632.34 +2021-02-01 22:00:00,613.38 +2021-02-01 23:00:00,595.8 +2021-02-02 00:00:00,575.38 +2021-02-02 01:00:00,560.18 +2021-02-02 02:00:00,553.12 +2021-02-02 03:00:00,556.03 +2021-02-02 04:00:00,577.33 +2021-02-02 05:00:00,599.59 +2021-02-02 06:00:00,611.68 +2021-02-02 07:00:00,602.26 +2021-02-02 08:00:00,592.99 +2021-02-02 09:00:00,581.66 +2021-02-02 10:00:00,570.89 +2021-02-02 11:00:00,558.49 +2021-02-02 12:00:00,555.29 +2021-02-02 13:00:00,555.11 +2021-02-02 14:00:00,554.93 +2021-02-02 15:00:00,558.39 +2021-02-02 16:00:00,551.55 +2021-02-02 17:00:00,547.77 +2021-02-02 18:00:00,536.69 +2021-02-02 19:00:00,501.74 +2021-02-02 20:00:00,459.84 +2021-02-02 21:00:00,434.86 +2021-02-02 22:00:00,409.12 +2021-02-02 23:00:00,363.7 +2021-02-03 00:00:00,337.92 +2021-02-03 01:00:00,332.16 +2021-02-03 02:00:00,328.06 +2021-02-03 03:00:00,338.72 +2021-02-03 04:00:00,360.12 +2021-02-03 05:00:00,406.36 +2021-02-03 06:00:00,450.25 +2021-02-03 07:00:00,462.45 +2021-02-03 08:00:00,464.58 +2021-02-03 09:00:00,459.2 +2021-02-03 10:00:00,458.39 +2021-02-03 11:00:00,462.5 +2021-02-03 12:00:00,448.01 +2021-02-03 13:00:00,429.44 +2021-02-03 14:00:00,418.42 +2021-02-03 15:00:00,420.54 +2021-02-03 16:00:00,424.47 +2021-02-03 17:00:00,427.93 +2021-02-03 18:00:00,419.06 +2021-02-03 19:00:00,394.76 +2021-02-03 20:00:00,359.45 +2021-02-03 21:00:00,346.79 +2021-02-03 22:00:00,339.75 +2021-02-03 23:00:00,333.53 +2021-02-04 00:00:00,326.89 +2021-02-04 01:00:00,323.85 +2021-02-04 02:00:00,328.76 +2021-02-04 03:00:00,349.73 +2021-02-04 04:00:00,383.67 +2021-02-04 05:00:00,441.64 +2021-02-04 06:00:00,484.0 +2021-02-04 07:00:00,506.28 +2021-02-04 08:00:00,500.3 +2021-02-04 09:00:00,490.77 +2021-02-04 10:00:00,492.51 +2021-02-04 11:00:00,498.98 +2021-02-04 12:00:00,514.62 +2021-02-04 13:00:00,537.86 +2021-02-04 14:00:00,575.91 +2021-02-04 15:00:00,604.12 +2021-02-04 16:00:00,605.22 +2021-02-04 17:00:00,601.77 +2021-02-04 18:00:00,605.91 +2021-02-04 19:00:00,605.57 +2021-02-04 20:00:00,593.74 +2021-02-04 21:00:00,576.16 +2021-02-04 22:00:00,556.54 +2021-02-04 23:00:00,531.25 +2021-02-05 00:00:00,505.58 +2021-02-05 01:00:00,492.98 +2021-02-05 02:00:00,484.66 +2021-02-05 03:00:00,477.55 +2021-02-05 04:00:00,482.23 +2021-02-05 05:00:00,521.45 +2021-02-05 06:00:00,522.45 +2021-02-05 07:00:00,511.04 +2021-02-05 08:00:00,492.83 +2021-02-05 09:00:00,476.03 +2021-02-05 10:00:00,464.9 +2021-02-05 11:00:00,459.42 +2021-02-05 12:00:00,453.73 +2021-02-05 13:00:00,455.26 +2021-02-05 14:00:00,467.34 +2021-02-05 15:00:00,471.55 +2021-02-05 16:00:00,469.66 +2021-02-05 17:00:00,473.16 +2021-02-05 18:00:00,477.76 +2021-02-05 19:00:00,471.18 +2021-02-05 20:00:00,453.33 +2021-02-05 21:00:00,429.57 +2021-02-05 22:00:00,392.56 +2021-02-05 23:00:00,352.65 +2021-02-06 00:00:00,320.23 +2021-02-06 01:00:00,297.23 +2021-02-06 02:00:00,283.34 +2021-02-06 03:00:00,278.89 +2021-02-06 04:00:00,275.1 +2021-02-06 05:00:00,272.85 +2021-02-06 06:00:00,278.35 +2021-02-06 07:00:00,302.62 +2021-02-06 08:00:00,301.61 +2021-02-06 09:00:00,293.65 +2021-02-06 10:00:00,294.36 +2021-02-06 11:00:00,293.36 +2021-02-06 12:00:00,286.56 +2021-02-06 13:00:00,278.18 +2021-02-06 14:00:00,273.79 +2021-02-06 15:00:00,269.13 +2021-02-06 16:00:00,252.68 +2021-02-06 17:00:00,252.24 +2021-02-06 18:00:00,246.4 +2021-02-06 19:00:00,235.03 +2021-02-06 20:00:00,230.3 +2021-02-06 21:00:00,230.57 +2021-02-06 22:00:00,226.97 +2021-02-06 23:00:00,234.74 +2021-02-07 00:00:00,235.39 +2021-02-07 01:00:00,235.28 +2021-02-07 02:00:00,237.78 +2021-02-07 03:00:00,238.54 +2021-02-07 04:00:00,239.34 +2021-02-07 05:00:00,240.66 +2021-02-07 06:00:00,241.42 +2021-02-07 07:00:00,241.89 +2021-02-07 08:00:00,233.14 +2021-02-07 09:00:00,236.79 +2021-02-07 10:00:00,249.49 +2021-02-07 11:00:00,258.04 +2021-02-07 12:00:00,251.37 +2021-02-07 13:00:00,245.58 +2021-02-07 14:00:00,249.2 +2021-02-07 15:00:00,263.04 +2021-02-07 16:00:00,275.54 +2021-02-07 17:00:00,299.84 +2021-02-07 18:00:00,300.59 +2021-02-07 19:00:00,286.12 +2021-02-07 20:00:00,273.81 +2021-02-07 21:00:00,279.09 +2021-02-07 22:00:00,280.47 +2021-02-07 23:00:00,288.86 +2021-02-08 00:00:00,304.0 +2021-02-08 01:00:00,313.18 +2021-02-08 02:00:00,323.36 +2021-02-08 03:00:00,336.92 +2021-02-08 04:00:00,369.49 +2021-02-08 05:00:00,400.74 +2021-02-08 06:00:00,438.31 +2021-02-08 07:00:00,456.49 +2021-02-08 08:00:00,465.19 +2021-02-08 09:00:00,467.88 +2021-02-08 10:00:00,464.89 +2021-02-08 11:00:00,465.28 +2021-02-08 12:00:00,468.46 +2021-02-08 13:00:00,483.02 +2021-02-08 14:00:00,501.26 +2021-02-08 15:00:00,518.22 +2021-02-08 16:00:00,523.29 +2021-02-08 17:00:00,526.09 +2021-02-08 18:00:00,534.64 +2021-02-08 19:00:00,544.19 +2021-02-08 20:00:00,554.36 +2021-02-08 21:00:00,560.92 +2021-02-08 22:00:00,559.52 +2021-02-08 23:00:00,543.47 +2021-02-09 00:00:00,539.28 +2021-02-09 01:00:00,541.27 +2021-02-09 02:00:00,539.93 +2021-02-09 03:00:00,543.49 +2021-02-09 04:00:00,554.12 +2021-02-09 05:00:00,576.14 +2021-02-09 06:00:00,579.97 +2021-02-09 07:00:00,582.72 +2021-02-09 08:00:00,576.75 +2021-02-09 09:00:00,571.45 +2021-02-09 10:00:00,569.24 +2021-02-09 11:00:00,569.2 +2021-02-09 12:00:00,588.26 +2021-02-09 13:00:00,609.47 +2021-02-09 14:00:00,617.9 +2021-02-09 15:00:00,627.35 +2021-02-09 16:00:00,626.41 +2021-02-09 17:00:00,621.83 +2021-02-09 18:00:00,628.35 +2021-02-09 19:00:00,623.29 +2021-02-09 20:00:00,615.93 +2021-02-09 21:00:00,618.27 +2021-02-09 22:00:00,610.98 +2021-02-09 23:00:00,595.43 +2021-02-10 00:00:00,594.98 +2021-02-10 01:00:00,598.57 +2021-02-10 02:00:00,594.4 +2021-02-10 03:00:00,590.03 +2021-02-10 04:00:00,596.18 +2021-02-10 05:00:00,605.16 +2021-02-10 06:00:00,597.6 +2021-02-10 07:00:00,595.06 +2021-02-10 08:00:00,591.58 +2021-02-10 09:00:00,591.86 +2021-02-10 10:00:00,587.79 +2021-02-10 11:00:00,586.49 +2021-02-10 12:00:00,591.76 +2021-02-10 13:00:00,595.23 +2021-02-10 14:00:00,602.54 +2021-02-10 15:00:00,609.93 +2021-02-10 16:00:00,597.07 +2021-02-10 17:00:00,587.17 +2021-02-10 18:00:00,590.5 +2021-02-10 19:00:00,602.09 +2021-02-10 20:00:00,618.7 +2021-02-10 21:00:00,617.74 +2021-02-10 22:00:00,611.66 +2021-02-10 23:00:00,608.64 +2021-02-11 00:00:00,600.17 +2021-02-11 01:00:00,597.54 +2021-02-11 02:00:00,598.94 +2021-02-11 03:00:00,607.37 +2021-02-11 04:00:00,631.99 +2021-02-11 05:00:00,646.91 +2021-02-11 06:00:00,627.89 +2021-02-11 07:00:00,622.44 +2021-02-11 08:00:00,620.14 +2021-02-11 09:00:00,617.11 +2021-02-11 10:00:00,614.68 +2021-02-11 11:00:00,606.15 +2021-02-11 12:00:00,610.0 +2021-02-11 13:00:00,614.25 +2021-02-11 14:00:00,616.32 +2021-02-11 15:00:00,628.98 +2021-02-11 16:00:00,623.89 +2021-02-11 17:00:00,617.72 +2021-02-11 18:00:00,615.39 +2021-02-11 19:00:00,629.71 +2021-02-11 20:00:00,630.63 +2021-02-11 21:00:00,615.03 +2021-02-11 22:00:00,602.75 +2021-02-11 23:00:00,584.14 +2021-02-12 00:00:00,576.3 +2021-02-12 01:00:00,566.22 +2021-02-12 02:00:00,553.56 +2021-02-12 03:00:00,542.39 +2021-02-12 04:00:00,549.59 +2021-02-12 05:00:00,565.67 +2021-02-12 06:00:00,567.2 +2021-02-12 07:00:00,556.08 +2021-02-12 08:00:00,548.48 +2021-02-12 09:00:00,543.64 +2021-02-12 10:00:00,534.42 +2021-02-12 11:00:00,522.04 +2021-02-12 12:00:00,501.81 +2021-02-12 13:00:00,504.7 +2021-02-12 14:00:00,517.74 +2021-02-12 15:00:00,552.52 +2021-02-12 16:00:00,570.55 +2021-02-12 17:00:00,567.56 +2021-02-12 18:00:00,554.94 +2021-02-12 19:00:00,538.19 +2021-02-12 20:00:00,530.27 +2021-02-12 21:00:00,528.03 +2021-02-12 22:00:00,526.37 +2021-02-12 23:00:00,526.62 +2021-02-13 00:00:00,535.27 +2021-02-13 01:00:00,542.1 +2021-02-13 02:00:00,544.79 +2021-02-13 03:00:00,549.34 +2021-02-13 04:00:00,555.63 +2021-02-13 05:00:00,566.28 +2021-02-13 06:00:00,576.84 +2021-02-13 07:00:00,578.21 +2021-02-13 08:00:00,561.34 +2021-02-13 09:00:00,546.31 +2021-02-13 10:00:00,540.94 +2021-02-13 11:00:00,531.84 +2021-02-13 12:00:00,526.32 +2021-02-13 13:00:00,535.69 +2021-02-13 14:00:00,558.12 +2021-02-13 15:00:00,588.24 +2021-02-13 16:00:00,596.92 +2021-02-13 17:00:00,583.73 +2021-02-13 18:00:00,569.15 +2021-02-13 19:00:00,549.82 +2021-02-13 20:00:00,542.89 +2021-02-13 21:00:00,533.76 +2021-02-13 22:00:00,517.31 +2021-02-13 23:00:00,491.91 +2021-02-14 00:00:00,475.13 +2021-02-14 01:00:00,472.86 +2021-02-14 02:00:00,479.2 +2021-02-14 03:00:00,478.53 +2021-02-14 04:00:00,480.58 +2021-02-14 05:00:00,475.44 +2021-02-14 06:00:00,477.16 +2021-02-14 07:00:00,468.98 +2021-02-14 08:00:00,453.95 +2021-02-14 09:00:00,432.65 +2021-02-14 10:00:00,422.1 +2021-02-14 11:00:00,415.54 +2021-02-14 12:00:00,398.94 +2021-02-14 13:00:00,398.66 +2021-02-14 14:00:00,424.69 +2021-02-14 15:00:00,469.51 +2021-02-14 16:00:00,483.55 +2021-02-14 17:00:00,465.77 +2021-02-14 18:00:00,441.91 +2021-02-14 19:00:00,419.24 +2021-02-14 20:00:00,406.37 +2021-02-14 21:00:00,405.07 +2021-02-14 22:00:00,386.13 +2021-02-14 23:00:00,371.12 +2021-02-15 00:00:00,361.81 +2021-02-15 01:00:00,357.92 +2021-02-15 02:00:00,353.84 +2021-02-15 03:00:00,354.15 +2021-02-15 04:00:00,373.61 +2021-02-15 05:00:00,396.24 +2021-02-15 06:00:00,415.64 +2021-02-15 07:00:00,417.5 +2021-02-15 08:00:00,403.8 +2021-02-15 09:00:00,408.46 +2021-02-15 10:00:00,421.05 +2021-02-15 11:00:00,436.45 +2021-02-15 12:00:00,443.15 +2021-02-15 13:00:00,460.97 +2021-02-15 14:00:00,479.26 +2021-02-15 15:00:00,497.78 +2021-02-15 16:00:00,500.59 +2021-02-15 17:00:00,498.82 +2021-02-15 18:00:00,508.71 +2021-02-15 19:00:00,517.38 +2021-02-15 20:00:00,515.09 +2021-02-15 21:00:00,516.7 +2021-02-15 22:00:00,507.21 +2021-02-15 23:00:00,485.45 +2021-02-16 00:00:00,477.64 +2021-02-16 01:00:00,476.13 +2021-02-16 02:00:00,465.19 +2021-02-16 03:00:00,468.82 +2021-02-16 04:00:00,482.58 +2021-02-16 05:00:00,522.48 +2021-02-16 06:00:00,534.29 +2021-02-16 07:00:00,535.29 +2021-02-16 08:00:00,526.66 +2021-02-16 09:00:00,508.84 +2021-02-16 10:00:00,496.09 +2021-02-16 11:00:00,488.35 +2021-02-16 12:00:00,480.55 +2021-02-16 13:00:00,480.32 +2021-02-16 14:00:00,477.58 +2021-02-16 15:00:00,478.8 +2021-02-16 16:00:00,479.95 +2021-02-16 17:00:00,473.94 +2021-02-16 18:00:00,467.79 +2021-02-16 19:00:00,460.13 +2021-02-16 20:00:00,435.36 +2021-02-16 21:00:00,410.03 +2021-02-16 22:00:00,381.73 +2021-02-16 23:00:00,342.15 +2021-02-17 00:00:00,305.42 +2021-02-17 01:00:00,291.89 +2021-02-17 02:00:00,281.81 +2021-02-17 03:00:00,283.89 +2021-02-17 04:00:00,296.5 +2021-02-17 05:00:00,322.06 +2021-02-17 06:00:00,360.87 +2021-02-17 07:00:00,388.27 +2021-02-17 08:00:00,388.93 +2021-02-17 09:00:00,360.9 +2021-02-17 10:00:00,342.84 +2021-02-17 11:00:00,331.85 +2021-02-17 12:00:00,330.11 +2021-02-17 13:00:00,346.39 +2021-02-17 14:00:00,380.12 +2021-02-17 15:00:00,427.78 +2021-02-17 16:00:00,458.47 +2021-02-17 17:00:00,470.8 +2021-02-17 18:00:00,469.73 +2021-02-17 19:00:00,459.94 +2021-02-17 20:00:00,434.56 +2021-02-17 21:00:00,429.52 +2021-02-17 22:00:00,402.28 +2021-02-17 23:00:00,391.89 +2021-02-18 00:00:00,387.02 +2021-02-18 01:00:00,377.77 +2021-02-18 02:00:00,368.64 +2021-02-18 03:00:00,372.61 +2021-02-18 04:00:00,376.6 +2021-02-18 05:00:00,400.41 +2021-02-18 06:00:00,417.07 +2021-02-18 07:00:00,399.89 +2021-02-18 08:00:00,374.55 +2021-02-18 09:00:00,348.33 +2021-02-18 10:00:00,335.44 +2021-02-18 11:00:00,321.34 +2021-02-18 12:00:00,311.79 +2021-02-18 13:00:00,321.14 +2021-02-18 14:00:00,327.24 +2021-02-18 15:00:00,329.4 +2021-02-18 16:00:00,339.8 +2021-02-18 17:00:00,346.61 +2021-02-18 18:00:00,347.16 +2021-02-18 19:00:00,343.26 +2021-02-18 20:00:00,334.74 +2021-02-18 21:00:00,336.4 +2021-02-18 22:00:00,312.11 +2021-02-18 23:00:00,299.85 +2021-02-19 00:00:00,305.94 +2021-02-19 01:00:00,308.89 +2021-02-19 02:00:00,302.06 +2021-02-19 03:00:00,313.93 +2021-02-19 04:00:00,340.25 +2021-02-19 05:00:00,381.04 +2021-02-19 06:00:00,411.14 +2021-02-19 07:00:00,417.86 +2021-02-19 08:00:00,401.94 +2021-02-19 09:00:00,379.48 +2021-02-19 10:00:00,371.1 +2021-02-19 11:00:00,356.46 +2021-02-19 12:00:00,349.33 +2021-02-19 13:00:00,352.97 +2021-02-19 14:00:00,385.74 +2021-02-19 15:00:00,435.56 +2021-02-19 16:00:00,464.84 +2021-02-19 17:00:00,458.04 +2021-02-19 18:00:00,434.81 +2021-02-19 19:00:00,407.37 +2021-02-19 20:00:00,382.42 +2021-02-19 21:00:00,376.05 +2021-02-19 22:00:00,356.72 +2021-02-19 23:00:00,316.74 +2021-02-20 00:00:00,308.29 +2021-02-20 01:00:00,286.36 +2021-02-20 02:00:00,271.56 +2021-02-20 03:00:00,260.99 +2021-02-20 04:00:00,260.62 +2021-02-20 05:00:00,265.31 +2021-02-20 06:00:00,267.0 +2021-02-20 07:00:00,258.99 +2021-02-20 08:00:00,236.7 +2021-02-20 09:00:00,211.36 +2021-02-20 10:00:00,207.15 +2021-02-20 11:00:00,200.91 +2021-02-20 12:00:00,200.9 +2021-02-20 13:00:00,208.05 +2021-02-20 14:00:00,227.07 +2021-02-20 15:00:00,280.55 +2021-02-20 16:00:00,307.26 +2021-02-20 17:00:00,290.36 +2021-02-20 18:00:00,268.91 +2021-02-20 19:00:00,230.83 +2021-02-20 20:00:00,215.61 +2021-02-20 21:00:00,216.68 +2021-02-20 22:00:00,219.57 +2021-02-20 23:00:00,206.46 +2021-02-21 00:00:00,211.36 +2021-02-21 01:00:00,213.53 +2021-02-21 02:00:00,212.78 +2021-02-21 03:00:00,217.74 +2021-02-21 04:00:00,225.03 +2021-02-21 05:00:00,222.57 +2021-02-21 06:00:00,228.34 +2021-02-21 07:00:00,225.76 +2021-02-21 08:00:00,218.03 +2021-02-21 09:00:00,220.88 +2021-02-21 10:00:00,230.34 +2021-02-21 11:00:00,219.83 +2021-02-21 12:00:00,220.65 +2021-02-21 13:00:00,238.39 +2021-02-21 14:00:00,275.84 +2021-02-21 15:00:00,351.86 +2021-02-21 16:00:00,417.05 +2021-02-21 17:00:00,427.86 +2021-02-21 18:00:00,425.08 +2021-02-21 19:00:00,415.78 +2021-02-21 20:00:00,405.15 +2021-02-21 21:00:00,401.98 +2021-02-21 22:00:00,394.62 +2021-02-21 23:00:00,380.83 +2021-02-22 00:00:00,379.57 +2021-02-22 01:00:00,372.72 +2021-02-22 02:00:00,370.91 +2021-02-22 03:00:00,375.7 +2021-02-22 04:00:00,395.93 +2021-02-22 05:00:00,428.75 +2021-02-22 06:00:00,441.62 +2021-02-22 07:00:00,430.79 +2021-02-22 08:00:00,405.56 +2021-02-22 09:00:00,375.14 +2021-02-22 10:00:00,364.53 +2021-02-22 11:00:00,356.18 +2021-02-22 12:00:00,357.51 +2021-02-22 13:00:00,376.52 +2021-02-22 14:00:00,414.99 +2021-02-22 15:00:00,448.7 +2021-02-22 16:00:00,474.95 +2021-02-22 17:00:00,460.92 +2021-02-22 18:00:00,450.86 +2021-02-22 19:00:00,433.15 +2021-02-22 20:00:00,412.54 +2021-02-22 21:00:00,405.85 +2021-02-22 22:00:00,391.98 +2021-02-22 23:00:00,388.77 +2021-02-23 00:00:00,391.83 +2021-02-23 01:00:00,387.68 +2021-02-23 02:00:00,381.01 +2021-02-23 03:00:00,377.65 +2021-02-23 04:00:00,389.35 +2021-02-23 05:00:00,412.94 +2021-02-23 06:00:00,413.59 +2021-02-23 07:00:00,396.49 +2021-02-23 08:00:00,369.43 +2021-02-23 09:00:00,340.27 +2021-02-23 10:00:00,312.09 +2021-02-23 11:00:00,280.57 +2021-02-23 12:00:00,264.72 +2021-02-23 13:00:00,275.06 +2021-02-23 14:00:00,311.35 +2021-02-23 15:00:00,379.48 +2021-02-23 16:00:00,425.2 +2021-02-23 17:00:00,421.21 +2021-02-23 18:00:00,412.81 +2021-02-23 19:00:00,383.43 +2021-02-23 20:00:00,346.05 +2021-02-23 21:00:00,310.25 +2021-02-23 22:00:00,273.55 +2021-02-23 23:00:00,248.57 +2021-02-24 00:00:00,244.26 +2021-02-24 01:00:00,243.66 +2021-02-24 02:00:00,245.01 +2021-02-24 03:00:00,250.86 +2021-02-24 04:00:00,267.24 +2021-02-24 05:00:00,307.93 +2021-02-24 06:00:00,335.33 +2021-02-24 07:00:00,333.36 +2021-02-24 08:00:00,311.5 +2021-02-24 09:00:00,281.89 +2021-02-24 10:00:00,261.04 +2021-02-24 11:00:00,247.25 +2021-02-24 12:00:00,246.86 +2021-02-24 13:00:00,261.84 +2021-02-24 14:00:00,313.95 +2021-02-24 15:00:00,372.46 +2021-02-24 16:00:00,397.97 +2021-02-24 17:00:00,386.82 +2021-02-24 18:00:00,376.24 +2021-02-24 19:00:00,364.82 +2021-02-24 20:00:00,353.24 +2021-02-24 21:00:00,341.56 +2021-02-24 22:00:00,320.39 +2021-02-24 23:00:00,301.1 +2021-02-25 00:00:00,290.12 +2021-02-25 01:00:00,287.33 +2021-02-25 02:00:00,290.96 +2021-02-25 03:00:00,298.23 +2021-02-25 04:00:00,323.89 +2021-02-25 05:00:00,360.2 +2021-02-25 06:00:00,377.87 +2021-02-25 07:00:00,368.03 +2021-02-25 08:00:00,353.18 +2021-02-25 09:00:00,333.98 +2021-02-25 10:00:00,314.26 +2021-02-25 11:00:00,303.7 +2021-02-25 12:00:00,307.35 +2021-02-25 13:00:00,326.83 +2021-02-25 14:00:00,369.15 +2021-02-25 15:00:00,422.58 +2021-02-25 16:00:00,454.68 +2021-02-25 17:00:00,461.85 +2021-02-25 18:00:00,457.79 +2021-02-25 19:00:00,456.04 +2021-02-25 20:00:00,460.32 +2021-02-25 21:00:00,459.45 +2021-02-25 22:00:00,459.02 +2021-02-25 23:00:00,447.54 +2021-02-26 00:00:00,435.68 +2021-02-26 01:00:00,421.35 +2021-02-26 02:00:00,412.42 +2021-02-26 03:00:00,413.8 +2021-02-26 04:00:00,427.55 +2021-02-26 05:00:00,452.46 +2021-02-26 06:00:00,452.16 +2021-02-26 07:00:00,433.48 +2021-02-26 08:00:00,410.79 +2021-02-26 09:00:00,378.85 +2021-02-26 10:00:00,356.05 +2021-02-26 11:00:00,332.03 +2021-02-26 12:00:00,333.84 +2021-02-26 13:00:00,348.29 +2021-02-26 14:00:00,370.16 +2021-02-26 15:00:00,404.07 +2021-02-26 16:00:00,424.45 +2021-02-26 17:00:00,431.5 +2021-02-26 18:00:00,437.34 +2021-02-26 19:00:00,430.76 +2021-02-26 20:00:00,421.24 +2021-02-26 21:00:00,417.98 +2021-02-26 22:00:00,419.21 +2021-02-26 23:00:00,416.67 +2021-02-27 00:00:00,403.19 +2021-02-27 01:00:00,391.48 +2021-02-27 02:00:00,397.38 +2021-02-27 03:00:00,415.98 +2021-02-27 04:00:00,429.57 +2021-02-27 05:00:00,457.2 +2021-02-27 06:00:00,469.32 +2021-02-27 07:00:00,445.38 +2021-02-27 08:00:00,423.57 +2021-02-27 09:00:00,389.41 +2021-02-27 10:00:00,365.38 +2021-02-27 11:00:00,351.71 +2021-02-27 12:00:00,336.09 +2021-02-27 13:00:00,329.82 +2021-02-27 14:00:00,358.3 +2021-02-27 15:00:00,416.4 +2021-02-27 16:00:00,482.84 +2021-02-27 17:00:00,490.23 +2021-02-27 18:00:00,474.77 +2021-02-27 19:00:00,458.48 +2021-02-27 20:00:00,448.6 +2021-02-27 21:00:00,450.73 +2021-02-27 22:00:00,448.68 +2021-02-27 23:00:00,435.26 +2021-02-28 00:00:00,433.14 +2021-02-28 01:00:00,427.98 +2021-02-28 02:00:00,423.72 +2021-02-28 03:00:00,423.78 +2021-02-28 04:00:00,431.37 +2021-02-28 05:00:00,441.39 +2021-02-28 06:00:00,438.48 +2021-02-28 07:00:00,399.56 +2021-02-28 08:00:00,353.93 +2021-02-28 09:00:00,308.04 +2021-02-28 10:00:00,286.64 +2021-02-28 11:00:00,278.36 +2021-02-28 12:00:00,271.87 +2021-02-28 13:00:00,280.36 +2021-02-28 14:00:00,322.82 +2021-02-28 15:00:00,405.78 +2021-02-28 16:00:00,495.92 +2021-02-28 17:00:00,506.79 +2021-02-28 18:00:00,504.41 +2021-02-28 19:00:00,520.18 +2021-02-28 20:00:00,514.88 +2021-02-28 21:00:00,513.34 +2021-02-28 22:00:00,518.77 +2021-02-28 23:00:00,506.0 +2021-03-01 00:00:00,513.91 +2021-03-01 01:00:00,510.52 +2021-03-01 02:00:00,526.96 +2021-03-01 03:00:00,547.87 +2021-03-01 04:00:00,568.46 +2021-03-01 05:00:00,572.9 +2021-03-01 06:00:00,567.76 +2021-03-01 07:00:00,544.73 +2021-03-01 08:00:00,519.02 +2021-03-01 09:00:00,490.28 +2021-03-01 10:00:00,464.46 +2021-03-01 11:00:00,432.23 +2021-03-01 12:00:00,416.11 +2021-03-01 13:00:00,426.66 +2021-03-01 14:00:00,456.63 +2021-03-01 15:00:00,517.64 +2021-03-01 16:00:00,565.65 +2021-03-01 17:00:00,573.15 +2021-03-01 18:00:00,569.76 +2021-03-01 19:00:00,565.82 +2021-03-01 20:00:00,561.59 +2021-03-01 21:00:00,550.83 +2021-03-01 22:00:00,540.31 +2021-03-01 23:00:00,539.74 +2021-03-02 00:00:00,541.63 +2021-03-02 01:00:00,545.48 +2021-03-02 02:00:00,548.19 +2021-03-02 03:00:00,553.3 +2021-03-02 04:00:00,574.09 +2021-03-02 05:00:00,584.62 +2021-03-02 06:00:00,581.24 +2021-03-02 07:00:00,548.64 +2021-03-02 08:00:00,503.11 +2021-03-02 09:00:00,461.94 +2021-03-02 10:00:00,428.54 +2021-03-02 11:00:00,403.36 +2021-03-02 12:00:00,400.35 +2021-03-02 13:00:00,418.22 +2021-03-02 14:00:00,470.07 +2021-03-02 15:00:00,542.1 +2021-03-02 16:00:00,605.97 +2021-03-02 17:00:00,610.21 +2021-03-02 18:00:00,610.81 +2021-03-02 19:00:00,615.24 +2021-03-02 20:00:00,616.68 +2021-03-02 21:00:00,622.79 +2021-03-02 22:00:00,621.23 +2021-03-02 23:00:00,615.26 +2021-03-03 00:00:00,604.3 +2021-03-03 01:00:00,598.59 +2021-03-03 02:00:00,595.05 +2021-03-03 03:00:00,597.7 +2021-03-03 04:00:00,619.71 +2021-03-03 05:00:00,620.38 +2021-03-03 06:00:00,603.25 +2021-03-03 07:00:00,576.86 +2021-03-03 08:00:00,542.4 +2021-03-03 09:00:00,516.31 +2021-03-03 10:00:00,496.96 +2021-03-03 11:00:00,490.22 +2021-03-03 12:00:00,489.58 +2021-03-03 13:00:00,505.05 +2021-03-03 14:00:00,528.48 +2021-03-03 15:00:00,548.98 +2021-03-03 16:00:00,558.42 +2021-03-03 17:00:00,550.51 +2021-03-03 18:00:00,540.85 +2021-03-03 19:00:00,536.49 +2021-03-03 20:00:00,522.97 +2021-03-03 21:00:00,514.41 +2021-03-03 22:00:00,507.24 +2021-03-03 23:00:00,500.92 +2021-03-04 00:00:00,497.27 +2021-03-04 01:00:00,497.15 +2021-03-04 02:00:00,491.15 +2021-03-04 03:00:00,497.99 +2021-03-04 04:00:00,526.82 +2021-03-04 05:00:00,556.95 +2021-03-04 06:00:00,562.65 +2021-03-04 07:00:00,548.15 +2021-03-04 08:00:00,531.09 +2021-03-04 09:00:00,507.74 +2021-03-04 10:00:00,497.35 +2021-03-04 11:00:00,496.91 +2021-03-04 12:00:00,498.18 +2021-03-04 13:00:00,504.2 +2021-03-04 14:00:00,512.62 +2021-03-04 15:00:00,526.91 +2021-03-04 16:00:00,537.67 +2021-03-04 17:00:00,541.3 +2021-03-04 18:00:00,539.78 +2021-03-04 19:00:00,534.04 +2021-03-04 20:00:00,523.25 +2021-03-04 21:00:00,519.86 +2021-03-04 22:00:00,503.14 +2021-03-04 23:00:00,493.94 +2021-03-05 00:00:00,493.89 +2021-03-05 01:00:00,498.41 +2021-03-05 02:00:00,505.04 +2021-03-05 03:00:00,513.82 +2021-03-05 04:00:00,533.87 +2021-03-05 05:00:00,555.07 +2021-03-05 06:00:00,560.38 +2021-03-05 07:00:00,543.19 +2021-03-05 08:00:00,519.76 +2021-03-05 09:00:00,485.92 +2021-03-05 10:00:00,452.92 +2021-03-05 11:00:00,435.5 +2021-03-05 12:00:00,436.82 +2021-03-05 13:00:00,445.94 +2021-03-05 14:00:00,465.37 +2021-03-05 15:00:00,494.02 +2021-03-05 16:00:00,539.02 +2021-03-05 17:00:00,553.76 +2021-03-05 18:00:00,554.99 +2021-03-05 19:00:00,557.16 +2021-03-05 20:00:00,558.51 +2021-03-05 21:00:00,553.23 +2021-03-05 22:00:00,544.52 +2021-03-05 23:00:00,529.54 +2021-03-06 00:00:00,515.36 +2021-03-06 01:00:00,493.06 +2021-03-06 02:00:00,474.41 +2021-03-06 03:00:00,459.51 +2021-03-06 04:00:00,471.55 +2021-03-06 05:00:00,488.06 +2021-03-06 06:00:00,474.74 +2021-03-06 07:00:00,433.96 +2021-03-06 08:00:00,389.91 +2021-03-06 09:00:00,340.17 +2021-03-06 10:00:00,308.72 +2021-03-06 11:00:00,297.3 +2021-03-06 12:00:00,299.77 +2021-03-06 13:00:00,306.37 +2021-03-06 14:00:00,339.48 +2021-03-06 15:00:00,399.65 +2021-03-06 16:00:00,471.34 +2021-03-06 17:00:00,489.29 +2021-03-06 18:00:00,489.07 +2021-03-06 19:00:00,478.72 +2021-03-06 20:00:00,473.06 +2021-03-06 21:00:00,470.66 +2021-03-06 22:00:00,465.62 +2021-03-06 23:00:00,437.91 +2021-03-07 00:00:00,423.27 +2021-03-07 01:00:00,425.72 +2021-03-07 02:00:00,433.1 +2021-03-07 03:00:00,434.44 +2021-03-07 04:00:00,430.38 +2021-03-07 05:00:00,425.99 +2021-03-07 06:00:00,412.68 +2021-03-07 07:00:00,373.36 +2021-03-07 08:00:00,318.14 +2021-03-07 09:00:00,281.46 +2021-03-07 10:00:00,267.27 +2021-03-07 11:00:00,261.05 +2021-03-07 12:00:00,259.14 +2021-03-07 13:00:00,276.29 +2021-03-07 14:00:00,319.58 +2021-03-07 15:00:00,390.24 +2021-03-07 16:00:00,471.14 +2021-03-07 17:00:00,512.46 +2021-03-07 18:00:00,525.48 +2021-03-07 19:00:00,531.42 +2021-03-07 20:00:00,535.27 +2021-03-07 21:00:00,542.82 +2021-03-07 22:00:00,549.7 +2021-03-07 23:00:00,554.51 +2021-03-08 00:00:00,560.67 +2021-03-08 01:00:00,578.66 +2021-03-08 02:00:00,588.8 +2021-03-08 03:00:00,604.6 +2021-03-08 04:00:00,622.27 +2021-03-08 05:00:00,645.04 +2021-03-08 06:00:00,628.22 +2021-03-08 07:00:00,596.9 +2021-03-08 08:00:00,557.09 +2021-03-08 09:00:00,518.57 +2021-03-08 10:00:00,492.19 +2021-03-08 11:00:00,481.89 +2021-03-08 12:00:00,490.27 +2021-03-08 13:00:00,519.84 +2021-03-08 14:00:00,555.41 +2021-03-08 15:00:00,598.48 +2021-03-08 16:00:00,637.86 +2021-03-08 17:00:00,642.61 +2021-03-08 18:00:00,636.55 +2021-03-08 19:00:00,626.9 +2021-03-08 20:00:00,619.4 +2021-03-08 21:00:00,608.03 +2021-03-08 22:00:00,606.4 +2021-03-08 23:00:00,605.03 +2021-03-09 00:00:00,589.52 +2021-03-09 01:00:00,581.99 +2021-03-09 02:00:00,587.81 +2021-03-09 03:00:00,599.75 +2021-03-09 04:00:00,619.91 +2021-03-09 05:00:00,635.06 +2021-03-09 06:00:00,626.17 +2021-03-09 07:00:00,599.36 +2021-03-09 08:00:00,570.75 +2021-03-09 09:00:00,545.87 +2021-03-09 10:00:00,527.37 +2021-03-09 11:00:00,523.44 +2021-03-09 12:00:00,535.26 +2021-03-09 13:00:00,550.6 +2021-03-09 14:00:00,580.67 +2021-03-09 15:00:00,617.48 +2021-03-09 16:00:00,640.95 +2021-03-09 17:00:00,647.83 +2021-03-09 18:00:00,655.58 +2021-03-09 19:00:00,668.82 +2021-03-09 20:00:00,676.63 +2021-03-09 21:00:00,674.0 +2021-03-09 22:00:00,657.14 +2021-03-09 23:00:00,653.6 +2021-03-10 00:00:00,647.37 +2021-03-10 01:00:00,640.88 +2021-03-10 02:00:00,634.02 +2021-03-10 03:00:00,620.64 +2021-03-10 04:00:00,624.75 +2021-03-10 05:00:00,613.73 +2021-03-10 06:00:00,582.36 +2021-03-10 07:00:00,557.19 +2021-03-10 08:00:00,522.59 +2021-03-10 09:00:00,495.55 +2021-03-10 10:00:00,454.81 +2021-03-10 11:00:00,418.94 +2021-03-10 12:00:00,392.75 +2021-03-10 13:00:00,378.0 +2021-03-10 14:00:00,395.88 +2021-03-10 15:00:00,423.42 +2021-03-10 16:00:00,433.32 +2021-03-10 17:00:00,424.56 +2021-03-10 18:00:00,401.54 +2021-03-10 19:00:00,343.62 +2021-03-10 20:00:00,297.08 +2021-03-10 21:00:00,263.65 +2021-03-10 22:00:00,245.11 +2021-03-10 23:00:00,199.19 +2021-03-11 00:00:00,191.84 +2021-03-11 01:00:00,191.56 +2021-03-11 02:00:00,187.58 +2021-03-11 03:00:00,186.48 +2021-03-11 04:00:00,183.66 +2021-03-11 05:00:00,181.69 +2021-03-11 06:00:00,201.91 +2021-03-11 07:00:00,206.9 +2021-03-11 08:00:00,197.58 +2021-03-11 09:00:00,192.03 +2021-03-11 10:00:00,177.97 +2021-03-11 11:00:00,170.84 +2021-03-11 12:00:00,169.68 +2021-03-11 13:00:00,171.71 +2021-03-11 14:00:00,175.13 +2021-03-11 15:00:00,182.48 +2021-03-11 16:00:00,203.73 +2021-03-11 17:00:00,225.42 +2021-03-11 18:00:00,225.11 +2021-03-11 19:00:00,224.27 +2021-03-11 20:00:00,203.91 +2021-03-11 21:00:00,197.32 +2021-03-11 22:00:00,186.26 +2021-03-11 23:00:00,176.18 +2021-03-12 00:00:00,174.83 +2021-03-12 01:00:00,173.11 +2021-03-12 02:00:00,170.92 +2021-03-12 03:00:00,170.4 +2021-03-12 04:00:00,175.55 +2021-03-12 05:00:00,190.12 +2021-03-12 06:00:00,202.55 +2021-03-12 07:00:00,187.35 +2021-03-12 08:00:00,159.75 +2021-03-12 09:00:00,147.85 +2021-03-12 10:00:00,142.89 +2021-03-12 11:00:00,142.89 +2021-03-12 12:00:00,144.98 +2021-03-12 13:00:00,150.33 +2021-03-12 14:00:00,160.28 +2021-03-12 15:00:00,176.36 +2021-03-12 16:00:00,205.75 +2021-03-12 17:00:00,221.31 +2021-03-12 18:00:00,225.84 +2021-03-12 19:00:00,206.63 +2021-03-12 20:00:00,193.72 +2021-03-12 21:00:00,195.79 +2021-03-12 22:00:00,187.69 +2021-03-12 23:00:00,183.13 +2021-03-13 00:00:00,181.21 +2021-03-13 01:00:00,179.78 +2021-03-13 02:00:00,179.33 +2021-03-13 03:00:00,180.54 +2021-03-13 04:00:00,182.8 +2021-03-13 05:00:00,175.99 +2021-03-13 06:00:00,171.38 +2021-03-13 07:00:00,163.29 +2021-03-13 08:00:00,154.87 +2021-03-13 09:00:00,150.5 +2021-03-13 10:00:00,146.49 +2021-03-13 11:00:00,146.26 +2021-03-13 12:00:00,149.74 +2021-03-13 13:00:00,150.76 +2021-03-13 14:00:00,152.83 +2021-03-13 15:00:00,155.01 +2021-03-13 16:00:00,161.4 +2021-03-13 17:00:00,171.06 +2021-03-13 18:00:00,178.04 +2021-03-13 19:00:00,169.41 +2021-03-13 20:00:00,162.47 +2021-03-13 21:00:00,165.89 +2021-03-13 22:00:00,172.51 +2021-03-13 23:00:00,160.98 +2021-03-14 00:00:00,157.97 +2021-03-14 01:00:00,158.21 +2021-03-14 02:00:00,159.36 +2021-03-14 03:00:00,162.59 +2021-03-14 04:00:00,166.36 +2021-03-14 05:00:00,169.91 +2021-03-14 06:00:00,169.66 +2021-03-14 07:00:00,165.78 +2021-03-14 08:00:00,167.82 +2021-03-14 09:00:00,159.9 +2021-03-14 10:00:00,156.0 +2021-03-14 11:00:00,155.93 +2021-03-14 12:00:00,159.7 +2021-03-14 13:00:00,160.63 +2021-03-14 14:00:00,166.63 +2021-03-14 15:00:00,182.76 +2021-03-14 16:00:00,225.21 +2021-03-14 17:00:00,264.26 +2021-03-14 18:00:00,268.78 +2021-03-14 19:00:00,267.53 +2021-03-14 20:00:00,264.34 +2021-03-14 21:00:00,261.01 +2021-03-14 22:00:00,259.18 +2021-03-14 23:00:00,252.85 +2021-03-15 00:00:00,244.09 +2021-03-15 01:00:00,243.06 +2021-03-15 02:00:00,240.37 +2021-03-15 03:00:00,260.5 +2021-03-15 04:00:00,296.43 +2021-03-15 05:00:00,333.53 +2021-03-15 06:00:00,350.9 +2021-03-15 07:00:00,344.52 +2021-03-15 08:00:00,329.23 +2021-03-15 09:00:00,322.36 +2021-03-15 10:00:00,313.02 +2021-03-15 11:00:00,296.89 +2021-03-15 12:00:00,285.66 +2021-03-15 13:00:00,275.48 +2021-03-15 14:00:00,275.64 +2021-03-15 15:00:00,292.54 +2021-03-15 16:00:00,325.49 +2021-03-15 17:00:00,346.68 +2021-03-15 18:00:00,351.69 +2021-03-15 19:00:00,347.97 +2021-03-15 20:00:00,342.44 +2021-03-15 21:00:00,343.97 +2021-03-15 22:00:00,337.95 +2021-03-15 23:00:00,328.39 +2021-03-16 00:00:00,328.47 +2021-03-16 01:00:00,336.84 +2021-03-16 02:00:00,337.97 +2021-03-16 03:00:00,352.41 +2021-03-16 04:00:00,382.41 +2021-03-16 05:00:00,408.25 +2021-03-16 06:00:00,431.2 +2021-03-16 07:00:00,430.43 +2021-03-16 08:00:00,416.19 +2021-03-16 09:00:00,404.71 +2021-03-16 10:00:00,403.82 +2021-03-16 11:00:00,402.86 +2021-03-16 12:00:00,407.06 +2021-03-16 13:00:00,416.85 +2021-03-16 14:00:00,435.52 +2021-03-16 15:00:00,463.22 +2021-03-16 16:00:00,498.61 +2021-03-16 17:00:00,520.46 +2021-03-16 18:00:00,522.48 +2021-03-16 19:00:00,525.88 +2021-03-16 20:00:00,519.25 +2021-03-16 21:00:00,514.75 +2021-03-16 22:00:00,503.08 +2021-03-16 23:00:00,483.97 +2021-03-17 00:00:00,469.51 +2021-03-17 01:00:00,454.63 +2021-03-17 02:00:00,451.97 +2021-03-17 03:00:00,464.75 +2021-03-17 04:00:00,493.75 +2021-03-17 05:00:00,522.21 +2021-03-17 06:00:00,527.44 +2021-03-17 07:00:00,520.25 +2021-03-17 08:00:00,509.09 +2021-03-17 09:00:00,489.52 +2021-03-17 10:00:00,480.59 +2021-03-17 11:00:00,471.85 +2021-03-17 12:00:00,468.87 +2021-03-17 13:00:00,466.87 +2021-03-17 14:00:00,474.27 +2021-03-17 15:00:00,503.77 +2021-03-17 16:00:00,553.41 +2021-03-17 17:00:00,581.8 +2021-03-17 18:00:00,588.99 +2021-03-17 19:00:00,596.54 +2021-03-17 20:00:00,592.92 +2021-03-17 21:00:00,588.93 +2021-03-17 22:00:00,591.85 +2021-03-17 23:00:00,591.14 +2021-03-18 00:00:00,585.08 +2021-03-18 01:00:00,587.24 +2021-03-18 02:00:00,585.68 +2021-03-18 03:00:00,595.27 +2021-03-18 04:00:00,615.97 +2021-03-18 05:00:00,627.41 +2021-03-18 06:00:00,605.8 +2021-03-18 07:00:00,586.84 +2021-03-18 08:00:00,553.39 +2021-03-18 09:00:00,532.68 +2021-03-18 10:00:00,518.29 +2021-03-18 11:00:00,516.45 +2021-03-18 12:00:00,511.65 +2021-03-18 13:00:00,513.58 +2021-03-18 14:00:00,525.93 +2021-03-18 15:00:00,550.08 +2021-03-18 16:00:00,577.61 +2021-03-18 17:00:00,583.73 +2021-03-18 18:00:00,586.81 +2021-03-18 19:00:00,594.53 +2021-03-18 20:00:00,573.51 +2021-03-18 21:00:00,558.2 +2021-03-18 22:00:00,541.62 +2021-03-18 23:00:00,537.29 +2021-03-19 00:00:00,531.79 +2021-03-19 01:00:00,526.02 +2021-03-19 02:00:00,514.49 +2021-03-19 03:00:00,507.85 +2021-03-19 04:00:00,516.41 +2021-03-19 05:00:00,526.25 +2021-03-19 06:00:00,520.47 +2021-03-19 07:00:00,497.59 +2021-03-19 08:00:00,466.05 +2021-03-19 09:00:00,412.41 +2021-03-19 10:00:00,361.08 +2021-03-19 11:00:00,335.71 +2021-03-19 12:00:00,324.15 +2021-03-19 13:00:00,322.35 +2021-03-19 14:00:00,334.9 +2021-03-19 15:00:00,387.76 +2021-03-19 16:00:00,449.13 +2021-03-19 17:00:00,490.74 +2021-03-19 18:00:00,506.95 +2021-03-19 19:00:00,515.56 +2021-03-19 20:00:00,532.15 +2021-03-19 21:00:00,545.13 +2021-03-19 22:00:00,564.69 +2021-03-19 23:00:00,574.45 +2021-03-20 00:00:00,577.58 +2021-03-20 01:00:00,572.0 +2021-03-20 02:00:00,558.74 +2021-03-20 03:00:00,551.76 +2021-03-20 04:00:00,549.68 +2021-03-20 05:00:00,550.12 +2021-03-20 06:00:00,521.63 +2021-03-20 07:00:00,472.66 +2021-03-20 08:00:00,417.74 +2021-03-20 09:00:00,367.02 +2021-03-20 10:00:00,343.06 +2021-03-20 11:00:00,317.38 +2021-03-20 12:00:00,293.72 +2021-03-20 13:00:00,291.26 +2021-03-20 14:00:00,310.23 +2021-03-20 15:00:00,347.44 +2021-03-20 16:00:00,412.15 +2021-03-20 17:00:00,438.82 +2021-03-20 18:00:00,435.14 +2021-03-20 19:00:00,421.11 +2021-03-20 20:00:00,403.01 +2021-03-20 21:00:00,377.12 +2021-03-20 22:00:00,354.47 +2021-03-20 23:00:00,320.25 +2021-03-21 00:00:00,302.53 +2021-03-21 01:00:00,293.31 +2021-03-21 02:00:00,295.55 +2021-03-21 03:00:00,288.94 +2021-03-21 04:00:00,285.66 +2021-03-21 05:00:00,273.41 +2021-03-21 06:00:00,271.13 +2021-03-21 07:00:00,263.87 +2021-03-21 08:00:00,258.47 +2021-03-21 09:00:00,259.49 +2021-03-21 10:00:00,257.17 +2021-03-21 11:00:00,251.63 +2021-03-21 12:00:00,232.78 +2021-03-21 13:00:00,232.56 +2021-03-21 14:00:00,235.31 +2021-03-21 15:00:00,249.06 +2021-03-21 16:00:00,298.52 +2021-03-21 17:00:00,364.97 +2021-03-21 18:00:00,380.44 +2021-03-21 19:00:00,390.43 +2021-03-21 20:00:00,391.85 +2021-03-21 21:00:00,396.2 +2021-03-21 22:00:00,394.89 +2021-03-21 23:00:00,393.75 +2021-03-22 00:00:00,405.22 +2021-03-22 01:00:00,422.53 +2021-03-22 02:00:00,437.29 +2021-03-22 03:00:00,466.9 +2021-03-22 04:00:00,508.25 +2021-03-22 05:00:00,542.34 +2021-03-22 06:00:00,548.54 +2021-03-22 07:00:00,541.13 +2021-03-22 08:00:00,522.02 +2021-03-22 09:00:00,501.67 +2021-03-22 10:00:00,488.35 +2021-03-22 11:00:00,486.2 +2021-03-22 12:00:00,482.41 +2021-03-22 13:00:00,484.61 +2021-03-22 14:00:00,493.47 +2021-03-22 15:00:00,513.18 +2021-03-22 16:00:00,554.92 +2021-03-22 17:00:00,579.29 +2021-03-22 18:00:00,571.86 +2021-03-22 19:00:00,571.58 +2021-03-22 20:00:00,572.37 +2021-03-22 21:00:00,565.02 +2021-03-22 22:00:00,547.63 +2021-03-22 23:00:00,549.98 +2021-03-23 00:00:00,551.22 +2021-03-23 01:00:00,547.99 +2021-03-23 02:00:00,552.92 +2021-03-23 03:00:00,570.41 +2021-03-23 04:00:00,596.59 +2021-03-23 05:00:00,609.43 +2021-03-23 06:00:00,607.85 +2021-03-23 07:00:00,588.11 +2021-03-23 08:00:00,572.45 +2021-03-23 09:00:00,554.09 +2021-03-23 10:00:00,540.19 +2021-03-23 11:00:00,535.48 +2021-03-23 12:00:00,542.17 +2021-03-23 13:00:00,543.21 +2021-03-23 14:00:00,547.26 +2021-03-23 15:00:00,568.49 +2021-03-23 16:00:00,603.64 +2021-03-23 17:00:00,623.21 +2021-03-23 18:00:00,635.15 +2021-03-23 19:00:00,631.99 +2021-03-23 20:00:00,619.71 +2021-03-23 21:00:00,597.7 +2021-03-23 22:00:00,578.24 +2021-03-23 23:00:00,552.15 +2021-03-24 00:00:00,540.21 +2021-03-24 01:00:00,533.22 +2021-03-24 02:00:00,526.7 +2021-03-24 03:00:00,536.25 +2021-03-24 04:00:00,566.99 +2021-03-24 05:00:00,570.33 +2021-03-24 06:00:00,548.21 +2021-03-24 07:00:00,509.98 +2021-03-24 08:00:00,457.13 +2021-03-24 09:00:00,388.77 +2021-03-24 10:00:00,348.84 +2021-03-24 11:00:00,334.04 +2021-03-24 12:00:00,331.72 +2021-03-24 13:00:00,347.13 +2021-03-24 14:00:00,387.37 +2021-03-24 15:00:00,469.06 +2021-03-24 16:00:00,550.86 +2021-03-24 17:00:00,578.03 +2021-03-24 18:00:00,582.74 +2021-03-24 19:00:00,590.54 +2021-03-24 20:00:00,591.4 +2021-03-24 21:00:00,593.72 +2021-03-24 22:00:00,591.91 +2021-03-24 23:00:00,592.75 +2021-03-25 00:00:00,608.67 +2021-03-25 01:00:00,616.43 +2021-03-25 02:00:00,627.65 +2021-03-25 03:00:00,637.07 +2021-03-25 04:00:00,643.34 +2021-03-25 05:00:00,634.4 +2021-03-25 06:00:00,593.65 +2021-03-25 07:00:00,547.63 +2021-03-25 08:00:00,493.14 +2021-03-25 09:00:00,437.81 +2021-03-25 10:00:00,405.06 +2021-03-25 11:00:00,394.16 +2021-03-25 12:00:00,401.47 +2021-03-25 13:00:00,429.16 +2021-03-25 14:00:00,472.36 +2021-03-25 15:00:00,527.12 +2021-03-25 16:00:00,570.87 +2021-03-25 17:00:00,592.46 +2021-03-25 18:00:00,592.51 +2021-03-25 19:00:00,598.87 +2021-03-25 20:00:00,592.34 +2021-03-25 21:00:00,580.09 +2021-03-25 22:00:00,554.74 +2021-03-25 23:00:00,520.62 +2021-03-26 00:00:00,487.1 +2021-03-26 01:00:00,473.12 +2021-03-26 02:00:00,458.01 +2021-03-26 03:00:00,454.85 +2021-03-26 04:00:00,464.38 +2021-03-26 05:00:00,469.43 +2021-03-26 06:00:00,459.34 +2021-03-26 07:00:00,434.49 +2021-03-26 08:00:00,371.04 +2021-03-26 09:00:00,290.47 +2021-03-26 10:00:00,246.4 +2021-03-26 11:00:00,233.81 +2021-03-26 12:00:00,239.72 +2021-03-26 13:00:00,257.48 +2021-03-26 14:00:00,291.16 +2021-03-26 15:00:00,347.7 +2021-03-26 16:00:00,413.61 +2021-03-26 17:00:00,442.76 +2021-03-26 18:00:00,437.02 +2021-03-26 19:00:00,426.32 +2021-03-26 20:00:00,400.58 +2021-03-26 21:00:00,371.94 +2021-03-26 22:00:00,346.92 +2021-03-26 23:00:00,298.6 +2021-03-27 00:00:00,259.91 +2021-03-27 01:00:00,238.41 +2021-03-27 02:00:00,216.19 +2021-03-27 03:00:00,203.52 +2021-03-27 04:00:00,191.08 +2021-03-27 05:00:00,189.41 +2021-03-27 06:00:00,181.93 +2021-03-27 07:00:00,170.27 +2021-03-27 08:00:00,159.05 +2021-03-27 09:00:00,152.21 +2021-03-27 10:00:00,148.56 +2021-03-27 11:00:00,154.48 +2021-03-27 12:00:00,153.16 +2021-03-27 13:00:00,157.04 +2021-03-27 14:00:00,163.61 +2021-03-27 15:00:00,195.54 +2021-03-27 16:00:00,259.87 +2021-03-27 17:00:00,303.23 +2021-03-27 18:00:00,316.96 +2021-03-27 19:00:00,319.13 +2021-03-27 20:00:00,311.16 +2021-03-27 21:00:00,305.8 +2021-03-27 22:00:00,298.21 +2021-03-27 23:00:00,285.36 +2021-03-28 00:00:00,264.07 +2021-03-28 01:00:00,256.41 +2021-03-28 02:00:00,253.57 +2021-03-28 03:00:00,244.09 +2021-03-28 04:00:00,241.31 +2021-03-28 05:00:00,236.66 +2021-03-28 06:00:00,218.11 +2021-03-28 07:00:00,203.95 +2021-03-28 08:00:00,181.82 +2021-03-28 09:00:00,163.7 +2021-03-28 10:00:00,157.47 +2021-03-28 11:00:00,162.31 +2021-03-28 12:00:00,166.35 +2021-03-28 13:00:00,171.21 +2021-03-28 14:00:00,173.26 +2021-03-28 15:00:00,186.08 +2021-03-28 16:00:00,230.15 +2021-03-28 17:00:00,294.94 +2021-03-28 18:00:00,307.84 +2021-03-28 19:00:00,297.33 +2021-03-28 20:00:00,289.53 +2021-03-28 21:00:00,270.52 +2021-03-28 22:00:00,252.17 +2021-03-28 23:00:00,243.64 +2021-03-29 00:00:00,238.79 +2021-03-29 01:00:00,243.45 +2021-03-29 02:00:00,257.08 +2021-03-29 03:00:00,277.17 +2021-03-29 04:00:00,303.48 +2021-03-29 05:00:00,314.53 +2021-03-29 06:00:00,307.11 +2021-03-29 07:00:00,273.18 +2021-03-29 08:00:00,238.72 +2021-03-29 09:00:00,211.0 +2021-03-29 10:00:00,186.83 +2021-03-29 11:00:00,178.88 +2021-03-29 12:00:00,179.85 +2021-03-29 13:00:00,191.45 +2021-03-29 14:00:00,217.35 +2021-03-29 15:00:00,269.68 +2021-03-29 16:00:00,344.92 +2021-03-29 17:00:00,393.92 +2021-03-29 18:00:00,406.51 +2021-03-29 19:00:00,400.84 +2021-03-29 20:00:00,396.36 +2021-03-29 21:00:00,405.63 +2021-03-29 22:00:00,393.75 +2021-03-29 23:00:00,395.03 +2021-03-30 00:00:00,387.92 +2021-03-30 01:00:00,386.03 +2021-03-30 02:00:00,402.85 +2021-03-30 03:00:00,435.93 +2021-03-30 04:00:00,462.38 +2021-03-30 05:00:00,466.59 +2021-03-30 06:00:00,440.58 +2021-03-30 07:00:00,399.57 +2021-03-30 08:00:00,365.55 +2021-03-30 09:00:00,332.66 +2021-03-30 10:00:00,302.41 +2021-03-30 11:00:00,284.18 +2021-03-30 12:00:00,289.67 +2021-03-30 13:00:00,308.17 +2021-03-30 14:00:00,341.06 +2021-03-30 15:00:00,407.84 +2021-03-30 16:00:00,488.87 +2021-03-30 17:00:00,524.11 +2021-03-30 18:00:00,531.71 +2021-03-30 19:00:00,552.69 +2021-03-30 20:00:00,560.84 +2021-03-30 21:00:00,555.52 +2021-03-30 22:00:00,554.89 +2021-03-30 23:00:00,542.89 +2021-03-31 00:00:00,527.47 +2021-03-31 01:00:00,521.52 +2021-03-31 02:00:00,522.51 +2021-03-31 03:00:00,539.61 +2021-03-31 04:00:00,538.41 +2021-03-31 05:00:00,527.08 +2021-03-31 06:00:00,492.21 +2021-03-31 07:00:00,443.97 +2021-03-31 08:00:00,400.79 +2021-03-31 09:00:00,363.13 +2021-03-31 10:00:00,338.93 +2021-03-31 11:00:00,321.75 +2021-03-31 12:00:00,315.02 +2021-03-31 13:00:00,327.88 +2021-03-31 14:00:00,373.02 +2021-03-31 15:00:00,443.74 +2021-03-31 16:00:00,510.41 +2021-03-31 17:00:00,539.91 +2021-03-31 18:00:00,544.08 +2021-03-31 19:00:00,552.17 +2021-03-31 20:00:00,558.83 +2021-03-31 21:00:00,556.8 +2021-03-31 22:00:00,531.33 +2021-03-31 23:00:00,507.81 +2021-04-01 00:00:00,481.5 +2021-04-01 01:00:00,452.67 +2021-04-01 02:00:00,442.35 +2021-04-01 03:00:00,449.23 +2021-04-01 04:00:00,449.54 +2021-04-01 05:00:00,442.3 +2021-04-01 06:00:00,414.92 +2021-04-01 07:00:00,385.45 +2021-04-01 08:00:00,348.23 +2021-04-01 09:00:00,306.17 +2021-04-01 10:00:00,265.78 +2021-04-01 11:00:00,243.62 +2021-04-01 12:00:00,235.01 +2021-04-01 13:00:00,247.19 +2021-04-01 14:00:00,273.71 +2021-04-01 15:00:00,308.1 +2021-04-01 16:00:00,356.17 +2021-04-01 17:00:00,395.42 +2021-04-01 18:00:00,402.42 +2021-04-01 19:00:00,404.97 +2021-04-01 20:00:00,409.72 +2021-04-01 21:00:00,402.47 +2021-04-01 22:00:00,379.75 +2021-04-01 23:00:00,365.76 +2021-04-02 00:00:00,354.96 +2021-04-02 01:00:00,341.8 +2021-04-02 02:00:00,343.95 +2021-04-02 03:00:00,364.8 +2021-04-02 04:00:00,374.24 +2021-04-02 05:00:00,367.91 +2021-04-02 06:00:00,349.3 +2021-04-02 07:00:00,314.35 +2021-04-02 08:00:00,260.78 +2021-04-02 09:00:00,219.51 +2021-04-02 10:00:00,197.34 +2021-04-02 11:00:00,170.78 +2021-04-02 12:00:00,154.38 +2021-04-02 13:00:00,152.94 +2021-04-02 14:00:00,156.65 +2021-04-02 15:00:00,174.32 +2021-04-02 16:00:00,212.34 +2021-04-02 17:00:00,247.83 +2021-04-02 18:00:00,267.52 +2021-04-02 19:00:00,263.01 +2021-04-02 20:00:00,268.33 +2021-04-02 21:00:00,267.7 +2021-04-02 22:00:00,258.65 +2021-04-02 23:00:00,244.91 +2021-04-03 00:00:00,250.17 +2021-04-03 01:00:00,248.7 +2021-04-03 02:00:00,247.12 +2021-04-03 03:00:00,255.37 +2021-04-03 04:00:00,264.74 +2021-04-03 05:00:00,270.79 +2021-04-03 06:00:00,262.44 +2021-04-03 07:00:00,235.79 +2021-04-03 08:00:00,210.62 +2021-04-03 09:00:00,189.14 +2021-04-03 10:00:00,179.85 +2021-04-03 11:00:00,176.38 +2021-04-03 12:00:00,174.32 +2021-04-03 13:00:00,180.66 +2021-04-03 14:00:00,191.92 +2021-04-03 15:00:00,213.53 +2021-04-03 16:00:00,257.63 +2021-04-03 17:00:00,292.92 +2021-04-03 18:00:00,307.3 +2021-04-03 19:00:00,312.71 +2021-04-03 20:00:00,318.46 +2021-04-03 21:00:00,330.8 +2021-04-03 22:00:00,323.08 +2021-04-03 23:00:00,327.0 +2021-04-04 00:00:00,333.5 +2021-04-04 01:00:00,327.96 +2021-04-04 02:00:00,337.99 +2021-04-04 03:00:00,324.79 +2021-04-04 04:00:00,323.47 +2021-04-04 05:00:00,314.08 +2021-04-04 06:00:00,286.09 +2021-04-04 07:00:00,244.68 +2021-04-04 08:00:00,216.81 +2021-04-04 09:00:00,198.5 +2021-04-04 10:00:00,188.5 +2021-04-04 11:00:00,177.86 +2021-04-04 12:00:00,175.08 +2021-04-04 13:00:00,173.89 +2021-04-04 14:00:00,178.51 +2021-04-04 15:00:00,190.05 +2021-04-04 16:00:00,226.84 +2021-04-04 17:00:00,271.44 +2021-04-04 18:00:00,280.12 +2021-04-04 19:00:00,269.3 +2021-04-04 20:00:00,261.26 +2021-04-04 21:00:00,237.05 +2021-04-04 22:00:00,214.56 +2021-04-04 23:00:00,208.13 +2021-04-05 00:00:00,202.07 +2021-04-05 01:00:00,191.49 +2021-04-05 02:00:00,185.49 +2021-04-05 03:00:00,183.5 +2021-04-05 04:00:00,183.28 +2021-04-05 05:00:00,186.46 +2021-04-05 06:00:00,173.5 +2021-04-05 07:00:00,163.02 +2021-04-05 08:00:00,160.17 +2021-04-05 09:00:00,153.69 +2021-04-05 10:00:00,151.22 +2021-04-05 11:00:00,155.34 +2021-04-05 12:00:00,155.63 +2021-04-05 13:00:00,155.3 +2021-04-05 14:00:00,158.56 +2021-04-05 15:00:00,162.64 +2021-04-05 16:00:00,169.55 +2021-04-05 17:00:00,198.82 +2021-04-05 18:00:00,215.04 +2021-04-05 19:00:00,218.09 +2021-04-05 20:00:00,212.57 +2021-04-05 21:00:00,204.12 +2021-04-05 22:00:00,207.85 +2021-04-05 23:00:00,207.7 +2021-04-06 00:00:00,201.95 +2021-04-06 01:00:00,205.81 +2021-04-06 02:00:00,226.29 +2021-04-06 03:00:00,260.45 +2021-04-06 04:00:00,291.39 +2021-04-06 05:00:00,300.26 +2021-04-06 06:00:00,304.3 +2021-04-06 07:00:00,303.28 +2021-04-06 08:00:00,272.76 +2021-04-06 09:00:00,256.56 +2021-04-06 10:00:00,237.84 +2021-04-06 11:00:00,222.2 +2021-04-06 12:00:00,214.8 +2021-04-06 13:00:00,213.01 +2021-04-06 14:00:00,224.51 +2021-04-06 15:00:00,268.53 +2021-04-06 16:00:00,309.72 +2021-04-06 17:00:00,338.25 +2021-04-06 18:00:00,345.3 +2021-04-06 19:00:00,345.85 +2021-04-06 20:00:00,344.24 +2021-04-06 21:00:00,333.25 +2021-04-06 22:00:00,313.45 +2021-04-06 23:00:00,308.65 +2021-04-07 00:00:00,319.3 +2021-04-07 01:00:00,329.1 +2021-04-07 02:00:00,352.01 +2021-04-07 03:00:00,379.09 +2021-04-07 04:00:00,397.35 +2021-04-07 05:00:00,400.0 +2021-04-07 06:00:00,385.42 +2021-04-07 07:00:00,360.69 +2021-04-07 08:00:00,330.58 +2021-04-07 09:00:00,307.62 +2021-04-07 10:00:00,282.3 +2021-04-07 11:00:00,258.82 +2021-04-07 12:00:00,252.7 +2021-04-07 13:00:00,254.89 +2021-04-07 14:00:00,264.34 +2021-04-07 15:00:00,285.97 +2021-04-07 16:00:00,315.75 +2021-04-07 17:00:00,332.96 +2021-04-07 18:00:00,330.5 +2021-04-07 19:00:00,326.1 +2021-04-07 20:00:00,326.21 +2021-04-07 21:00:00,305.56 +2021-04-07 22:00:00,294.41 +2021-04-07 23:00:00,308.85 +2021-04-08 00:00:00,306.41 +2021-04-08 01:00:00,319.67 +2021-04-08 02:00:00,344.65 +2021-04-08 03:00:00,369.95 +2021-04-08 04:00:00,397.2 +2021-04-08 05:00:00,414.95 +2021-04-08 06:00:00,409.04 +2021-04-08 07:00:00,384.17 +2021-04-08 08:00:00,349.31 +2021-04-08 09:00:00,335.93 +2021-04-08 10:00:00,338.56 +2021-04-08 11:00:00,334.02 +2021-04-08 12:00:00,323.12 +2021-04-08 13:00:00,322.31 +2021-04-08 14:00:00,329.04 +2021-04-08 15:00:00,352.89 +2021-04-08 16:00:00,408.0 +2021-04-08 17:00:00,449.68 +2021-04-08 18:00:00,454.74 +2021-04-08 19:00:00,438.54 +2021-04-08 20:00:00,417.04 +2021-04-08 21:00:00,391.54 +2021-04-08 22:00:00,357.44 +2021-04-08 23:00:00,339.57 +2021-04-09 00:00:00,335.48 +2021-04-09 01:00:00,328.04 +2021-04-09 02:00:00,324.01 +2021-04-09 03:00:00,335.15 +2021-04-09 04:00:00,346.96 +2021-04-09 05:00:00,354.73 +2021-04-09 06:00:00,342.84 +2021-04-09 07:00:00,310.83 +2021-04-09 08:00:00,272.7 +2021-04-09 09:00:00,244.42 +2021-04-09 10:00:00,226.25 +2021-04-09 11:00:00,229.7 +2021-04-09 12:00:00,245.95 +2021-04-09 13:00:00,280.35 +2021-04-09 14:00:00,339.9 +2021-04-09 15:00:00,405.24 +2021-04-09 16:00:00,471.04 +2021-04-09 17:00:00,517.44 +2021-04-09 18:00:00,530.16 +2021-04-09 19:00:00,535.65 +2021-04-09 20:00:00,543.49 +2021-04-09 21:00:00,544.67 +2021-04-09 22:00:00,540.71 +2021-04-09 23:00:00,526.08 +2021-04-10 00:00:00,514.82 +2021-04-10 01:00:00,508.1 +2021-04-10 02:00:00,509.83 +2021-04-10 03:00:00,516.78 +2021-04-10 04:00:00,517.31 +2021-04-10 05:00:00,509.11 +2021-04-10 06:00:00,489.48 +2021-04-10 07:00:00,460.62 +2021-04-10 08:00:00,439.76 +2021-04-10 09:00:00,422.93 +2021-04-10 10:00:00,414.3 +2021-04-10 11:00:00,411.91 +2021-04-10 12:00:00,408.17 +2021-04-10 13:00:00,414.43 +2021-04-10 14:00:00,434.25 +2021-04-10 15:00:00,468.27 +2021-04-10 16:00:00,500.05 +2021-04-10 17:00:00,507.43 +2021-04-10 18:00:00,484.79 +2021-04-10 19:00:00,460.1 +2021-04-10 20:00:00,441.54 +2021-04-10 21:00:00,407.99 +2021-04-10 22:00:00,378.18 +2021-04-10 23:00:00,362.09 +2021-04-11 00:00:00,360.65 +2021-04-11 01:00:00,356.38 +2021-04-11 02:00:00,358.97 +2021-04-11 03:00:00,362.63 +2021-04-11 04:00:00,373.87 +2021-04-11 05:00:00,371.55 +2021-04-11 06:00:00,354.8 +2021-04-11 07:00:00,326.28 +2021-04-11 08:00:00,289.01 +2021-04-11 09:00:00,275.1 +2021-04-11 10:00:00,265.98 +2021-04-11 11:00:00,262.04 +2021-04-11 12:00:00,267.03 +2021-04-11 13:00:00,279.26 +2021-04-11 14:00:00,295.26 +2021-04-11 15:00:00,336.46 +2021-04-11 16:00:00,382.47 +2021-04-11 17:00:00,409.3 +2021-04-11 18:00:00,419.94 +2021-04-11 19:00:00,418.03 +2021-04-11 20:00:00,411.7 +2021-04-11 21:00:00,422.54 +2021-04-11 22:00:00,441.14 +2021-04-11 23:00:00,453.81 +2021-04-12 00:00:00,467.48 +2021-04-12 01:00:00,476.24 +2021-04-12 02:00:00,500.13 +2021-04-12 03:00:00,523.35 +2021-04-12 04:00:00,549.83 +2021-04-12 05:00:00,559.46 +2021-04-12 06:00:00,564.11 +2021-04-12 07:00:00,540.26 +2021-04-12 08:00:00,510.08 +2021-04-12 09:00:00,497.65 +2021-04-12 10:00:00,478.87 +2021-04-12 11:00:00,457.91 +2021-04-12 12:00:00,438.05 +2021-04-12 13:00:00,440.19 +2021-04-12 14:00:00,452.92 +2021-04-12 15:00:00,483.11 +2021-04-12 16:00:00,530.26 +2021-04-12 17:00:00,571.46 +2021-04-12 18:00:00,576.45 +2021-04-12 19:00:00,564.62 +2021-04-12 20:00:00,544.89 +2021-04-12 21:00:00,511.15 +2021-04-12 22:00:00,496.16 +2021-04-12 23:00:00,477.28 +2021-04-13 00:00:00,469.63 +2021-04-13 01:00:00,472.92 +2021-04-13 02:00:00,487.52 +2021-04-13 03:00:00,505.09 +2021-04-13 04:00:00,519.62 +2021-04-13 05:00:00,519.71 +2021-04-13 06:00:00,499.67 +2021-04-13 07:00:00,440.09 +2021-04-13 08:00:00,392.09 +2021-04-13 09:00:00,390.55 +2021-04-13 10:00:00,378.57 +2021-04-13 11:00:00,365.7 +2021-04-13 12:00:00,359.46 +2021-04-13 13:00:00,362.51 +2021-04-13 14:00:00,384.3 +2021-04-13 15:00:00,446.71 +2021-04-13 16:00:00,508.73 +2021-04-13 17:00:00,553.92 +2021-04-13 18:00:00,571.92 +2021-04-13 19:00:00,575.97 +2021-04-13 20:00:00,571.31 +2021-04-13 21:00:00,559.5 +2021-04-13 22:00:00,560.59 +2021-04-13 23:00:00,555.07 +2021-04-14 00:00:00,560.53 +2021-04-14 01:00:00,562.76 +2021-04-14 02:00:00,570.28 +2021-04-14 03:00:00,581.02 +2021-04-14 04:00:00,592.27 +2021-04-14 05:00:00,587.47 +2021-04-14 06:00:00,551.05 +2021-04-14 07:00:00,507.99 +2021-04-14 08:00:00,474.02 +2021-04-14 09:00:00,462.97 +2021-04-14 10:00:00,464.62 +2021-04-14 11:00:00,450.51 +2021-04-14 12:00:00,444.21 +2021-04-14 13:00:00,447.13 +2021-04-14 14:00:00,479.27 +2021-04-14 15:00:00,518.03 +2021-04-14 16:00:00,567.87 +2021-04-14 17:00:00,607.94 +2021-04-14 18:00:00,630.15 +2021-04-14 19:00:00,632.71 +2021-04-14 20:00:00,630.31 +2021-04-14 21:00:00,628.69 +2021-04-14 22:00:00,619.37 +2021-04-14 23:00:00,606.9 +2021-04-15 00:00:00,610.67 +2021-04-15 01:00:00,613.78 +2021-04-15 02:00:00,621.5 +2021-04-15 03:00:00,629.16 +2021-04-15 04:00:00,636.17 +2021-04-15 05:00:00,612.13 +2021-04-15 06:00:00,573.17 +2021-04-15 07:00:00,519.85 +2021-04-15 08:00:00,465.47 +2021-04-15 09:00:00,442.76 +2021-04-15 10:00:00,439.5 +2021-04-15 11:00:00,423.44 +2021-04-15 12:00:00,401.72 +2021-04-15 13:00:00,405.01 +2021-04-15 14:00:00,436.46 +2021-04-15 15:00:00,482.9 +2021-04-15 16:00:00,528.11 +2021-04-15 17:00:00,557.44 +2021-04-15 18:00:00,573.04 +2021-04-15 19:00:00,571.13 +2021-04-15 20:00:00,557.19 +2021-04-15 21:00:00,536.61 +2021-04-15 22:00:00,521.41 +2021-04-15 23:00:00,522.92 +2021-04-16 00:00:00,526.71 +2021-04-16 01:00:00,529.36 +2021-04-16 02:00:00,534.45 +2021-04-16 03:00:00,551.58 +2021-04-16 04:00:00,570.06 +2021-04-16 05:00:00,560.93 +2021-04-16 06:00:00,531.18 +2021-04-16 07:00:00,489.21 +2021-04-16 08:00:00,449.52 +2021-04-16 09:00:00,424.39 +2021-04-16 10:00:00,412.65 +2021-04-16 11:00:00,412.02 +2021-04-16 12:00:00,413.18 +2021-04-16 13:00:00,419.91 +2021-04-16 14:00:00,444.11 +2021-04-16 15:00:00,487.94 +2021-04-16 16:00:00,530.35 +2021-04-16 17:00:00,563.25 +2021-04-16 18:00:00,572.84 +2021-04-16 19:00:00,573.57 +2021-04-16 20:00:00,572.92 +2021-04-16 21:00:00,555.39 +2021-04-16 22:00:00,550.03 +2021-04-16 23:00:00,539.6 +2021-04-17 00:00:00,538.87 +2021-04-17 01:00:00,542.13 +2021-04-17 02:00:00,542.65 +2021-04-17 03:00:00,547.91 +2021-04-17 04:00:00,551.97 +2021-04-17 05:00:00,539.28 +2021-04-17 06:00:00,514.31 +2021-04-17 07:00:00,478.93 +2021-04-17 08:00:00,426.68 +2021-04-17 09:00:00,390.21 +2021-04-17 10:00:00,369.6 +2021-04-17 11:00:00,346.11 +2021-04-17 12:00:00,347.07 +2021-04-17 13:00:00,363.8 +2021-04-17 14:00:00,408.42 +2021-04-17 15:00:00,457.59 +2021-04-17 16:00:00,506.35 +2021-04-17 17:00:00,544.65 +2021-04-17 18:00:00,564.64 +2021-04-17 19:00:00,564.67 +2021-04-17 20:00:00,567.81 +2021-04-17 21:00:00,565.3 +2021-04-17 22:00:00,561.12 +2021-04-17 23:00:00,570.63 +2021-04-18 00:00:00,569.68 +2021-04-18 01:00:00,575.77 +2021-04-18 02:00:00,585.57 +2021-04-18 03:00:00,586.56 +2021-04-18 04:00:00,584.89 +2021-04-18 05:00:00,572.89 +2021-04-18 06:00:00,553.02 +2021-04-18 07:00:00,521.28 +2021-04-18 08:00:00,493.03 +2021-04-18 09:00:00,471.27 +2021-04-18 10:00:00,451.94 +2021-04-18 11:00:00,428.81 +2021-04-18 12:00:00,417.91 +2021-04-18 13:00:00,434.97 +2021-04-18 14:00:00,471.57 +2021-04-18 15:00:00,523.17 +2021-04-18 16:00:00,572.05 +2021-04-18 17:00:00,597.06 +2021-04-18 18:00:00,603.9 +2021-04-18 19:00:00,599.01 +2021-04-18 20:00:00,595.21 +2021-04-18 21:00:00,592.25 +2021-04-18 22:00:00,588.8 +2021-04-18 23:00:00,590.27 +2021-04-19 00:00:00,590.97 +2021-04-19 01:00:00,597.67 +2021-04-19 02:00:00,603.78 +2021-04-19 03:00:00,621.65 +2021-04-19 04:00:00,628.07 +2021-04-19 05:00:00,613.66 +2021-04-19 06:00:00,587.62 +2021-04-19 07:00:00,565.56 +2021-04-19 08:00:00,534.06 +2021-04-19 09:00:00,509.36 +2021-04-19 10:00:00,491.26 +2021-04-19 11:00:00,476.91 +2021-04-19 12:00:00,467.94 +2021-04-19 13:00:00,476.25 +2021-04-19 14:00:00,501.44 +2021-04-19 15:00:00,529.33 +2021-04-19 16:00:00,570.5 +2021-04-19 17:00:00,598.33 +2021-04-19 18:00:00,607.14 +2021-04-19 19:00:00,604.5 +2021-04-19 20:00:00,601.14 +2021-04-19 21:00:00,595.6 +2021-04-19 22:00:00,596.42 +2021-04-19 23:00:00,599.2 +2021-04-20 00:00:00,605.93 +2021-04-20 01:00:00,615.75 +2021-04-20 02:00:00,629.94 +2021-04-20 03:00:00,638.99 +2021-04-20 04:00:00,641.29 +2021-04-20 05:00:00,620.85 +2021-04-20 06:00:00,582.44 +2021-04-20 07:00:00,531.38 +2021-04-20 08:00:00,477.98 +2021-04-20 09:00:00,442.02 +2021-04-20 10:00:00,420.09 +2021-04-20 11:00:00,412.04 +2021-04-20 12:00:00,416.22 +2021-04-20 13:00:00,436.2 +2021-04-20 14:00:00,470.59 +2021-04-20 15:00:00,517.74 +2021-04-20 16:00:00,573.13 +2021-04-20 17:00:00,617.41 +2021-04-20 18:00:00,630.23 +2021-04-20 19:00:00,632.67 +2021-04-20 20:00:00,633.1 +2021-04-20 21:00:00,630.7 +2021-04-20 22:00:00,627.33 +2021-04-20 23:00:00,621.66 +2021-04-21 00:00:00,613.48 +2021-04-21 01:00:00,611.25 +2021-04-21 02:00:00,608.22 +2021-04-21 03:00:00,609.36 +2021-04-21 04:00:00,610.36 +2021-04-21 05:00:00,575.14 +2021-04-21 06:00:00,518.28 +2021-04-21 07:00:00,449.34 +2021-04-21 08:00:00,370.87 +2021-04-21 09:00:00,315.19 +2021-04-21 10:00:00,278.3 +2021-04-21 11:00:00,268.08 +2021-04-21 12:00:00,271.85 +2021-04-21 13:00:00,285.17 +2021-04-21 14:00:00,306.74 +2021-04-21 15:00:00,335.01 +2021-04-21 16:00:00,370.67 +2021-04-21 17:00:00,404.83 +2021-04-21 18:00:00,420.5 +2021-04-21 19:00:00,411.94 +2021-04-21 20:00:00,402.74 +2021-04-21 21:00:00,391.59 +2021-04-21 22:00:00,380.27 +2021-04-21 23:00:00,375.37 +2021-04-22 00:00:00,377.67 +2021-04-22 01:00:00,386.55 +2021-04-22 02:00:00,396.77 +2021-04-22 03:00:00,412.04 +2021-04-22 04:00:00,420.86 +2021-04-22 05:00:00,403.54 +2021-04-22 06:00:00,363.16 +2021-04-22 07:00:00,314.05 +2021-04-22 08:00:00,280.44 +2021-04-22 09:00:00,250.57 +2021-04-22 10:00:00,236.24 +2021-04-22 11:00:00,221.08 +2021-04-22 12:00:00,214.35 +2021-04-22 13:00:00,215.69 +2021-04-22 14:00:00,223.15 +2021-04-22 15:00:00,257.12 +2021-04-22 16:00:00,329.99 +2021-04-22 17:00:00,391.98 +2021-04-22 18:00:00,422.27 +2021-04-22 19:00:00,432.5 +2021-04-22 20:00:00,428.13 +2021-04-22 21:00:00,409.7 +2021-04-22 22:00:00,397.45 +2021-04-22 23:00:00,400.62 +2021-04-23 00:00:00,408.41 +2021-04-23 01:00:00,424.46 +2021-04-23 02:00:00,433.67 +2021-04-23 03:00:00,449.1 +2021-04-23 04:00:00,462.37 +2021-04-23 05:00:00,452.28 +2021-04-23 06:00:00,416.3 +2021-04-23 07:00:00,369.19 +2021-04-23 08:00:00,336.3 +2021-04-23 09:00:00,298.43 +2021-04-23 10:00:00,265.63 +2021-04-23 11:00:00,242.75 +2021-04-23 12:00:00,232.39 +2021-04-23 13:00:00,238.68 +2021-04-23 14:00:00,264.58 +2021-04-23 15:00:00,326.55 +2021-04-23 16:00:00,395.18 +2021-04-23 17:00:00,455.86 +2021-04-23 18:00:00,480.5 +2021-04-23 19:00:00,489.68 +2021-04-23 20:00:00,479.0 +2021-04-23 21:00:00,469.36 +2021-04-23 22:00:00,455.27 +2021-04-23 23:00:00,446.82 +2021-04-24 00:00:00,428.39 +2021-04-24 01:00:00,425.98 +2021-04-24 02:00:00,419.69 +2021-04-24 03:00:00,415.59 +2021-04-24 04:00:00,416.87 +2021-04-24 05:00:00,403.94 +2021-04-24 06:00:00,376.98 +2021-04-24 07:00:00,331.86 +2021-04-24 08:00:00,269.68 +2021-04-24 09:00:00,236.67 +2021-04-24 10:00:00,220.25 +2021-04-24 11:00:00,212.7 +2021-04-24 12:00:00,211.22 +2021-04-24 13:00:00,215.33 +2021-04-24 14:00:00,227.47 +2021-04-24 15:00:00,257.95 +2021-04-24 16:00:00,329.59 +2021-04-24 17:00:00,378.06 +2021-04-24 18:00:00,404.34 +2021-04-24 19:00:00,392.61 +2021-04-24 20:00:00,386.15 +2021-04-24 21:00:00,377.98 +2021-04-24 22:00:00,351.07 +2021-04-24 23:00:00,343.02 +2021-04-25 00:00:00,342.98 +2021-04-25 01:00:00,344.55 +2021-04-25 02:00:00,348.11 +2021-04-25 03:00:00,348.86 +2021-04-25 04:00:00,347.82 +2021-04-25 05:00:00,334.0 +2021-04-25 06:00:00,306.03 +2021-04-25 07:00:00,256.69 +2021-04-25 08:00:00,221.1 +2021-04-25 09:00:00,212.08 +2021-04-25 10:00:00,210.02 +2021-04-25 11:00:00,209.02 +2021-04-25 12:00:00,213.93 +2021-04-25 13:00:00,217.78 +2021-04-25 14:00:00,224.25 +2021-04-25 15:00:00,248.5 +2021-04-25 16:00:00,315.73 +2021-04-25 17:00:00,403.81 +2021-04-25 18:00:00,437.12 +2021-04-25 19:00:00,424.2 +2021-04-25 20:00:00,416.21 +2021-04-25 21:00:00,420.78 +2021-04-25 22:00:00,421.52 +2021-04-25 23:00:00,424.95 +2021-04-26 00:00:00,438.42 +2021-04-26 01:00:00,446.07 +2021-04-26 02:00:00,460.59 +2021-04-26 03:00:00,513.98 +2021-04-26 04:00:00,538.49 +2021-04-26 05:00:00,529.06 +2021-04-26 06:00:00,500.74 +2021-04-26 07:00:00,438.2 +2021-04-26 08:00:00,376.88 +2021-04-26 09:00:00,344.42 +2021-04-26 10:00:00,322.92 +2021-04-26 11:00:00,312.85 +2021-04-26 12:00:00,312.44 +2021-04-26 13:00:00,330.86 +2021-04-26 14:00:00,369.25 +2021-04-26 15:00:00,441.42 +2021-04-26 16:00:00,517.22 +2021-04-26 17:00:00,553.38 +2021-04-26 18:00:00,559.79 +2021-04-26 19:00:00,537.49 +2021-04-26 20:00:00,515.9 +2021-04-26 21:00:00,480.83 +2021-04-26 22:00:00,466.18 +2021-04-26 23:00:00,454.76 +2021-04-27 00:00:00,457.04 +2021-04-27 01:00:00,448.9 +2021-04-27 02:00:00,457.46 +2021-04-27 03:00:00,485.06 +2021-04-27 04:00:00,516.57 +2021-04-27 05:00:00,514.18 +2021-04-27 06:00:00,489.03 +2021-04-27 07:00:00,431.93 +2021-04-27 08:00:00,347.09 +2021-04-27 09:00:00,303.95 +2021-04-27 10:00:00,287.14 +2021-04-27 11:00:00,273.09 +2021-04-27 12:00:00,270.16 +2021-04-27 13:00:00,283.67 +2021-04-27 14:00:00,327.46 +2021-04-27 15:00:00,409.38 +2021-04-27 16:00:00,483.48 +2021-04-27 17:00:00,529.07 +2021-04-27 18:00:00,531.03 +2021-04-27 19:00:00,499.79 +2021-04-27 20:00:00,455.74 +2021-04-27 21:00:00,432.44 +2021-04-27 22:00:00,428.5 +2021-04-27 23:00:00,445.67 +2021-04-28 00:00:00,462.99 +2021-04-28 01:00:00,472.72 +2021-04-28 02:00:00,487.82 +2021-04-28 03:00:00,527.59 +2021-04-28 04:00:00,548.17 +2021-04-28 05:00:00,539.46 +2021-04-28 06:00:00,512.93 +2021-04-28 07:00:00,457.59 +2021-04-28 08:00:00,401.19 +2021-04-28 09:00:00,345.07 +2021-04-28 10:00:00,315.16 +2021-04-28 11:00:00,313.03 +2021-04-28 12:00:00,320.43 +2021-04-28 13:00:00,346.19 +2021-04-28 14:00:00,388.24 +2021-04-28 15:00:00,443.64 +2021-04-28 16:00:00,482.69 +2021-04-28 17:00:00,502.46 +2021-04-28 18:00:00,501.57 +2021-04-28 19:00:00,490.56 +2021-04-28 20:00:00,474.57 +2021-04-28 21:00:00,464.53 +2021-04-28 22:00:00,462.03 +2021-04-28 23:00:00,462.85 +2021-04-29 00:00:00,470.27 +2021-04-29 01:00:00,478.49 +2021-04-29 02:00:00,490.42 +2021-04-29 03:00:00,509.39 +2021-04-29 04:00:00,511.04 +2021-04-29 05:00:00,503.88 +2021-04-29 06:00:00,485.61 +2021-04-29 07:00:00,459.96 +2021-04-29 08:00:00,425.62 +2021-04-29 09:00:00,405.29 +2021-04-29 10:00:00,373.88 +2021-04-29 11:00:00,338.42 +2021-04-29 12:00:00,318.56 +2021-04-29 13:00:00,319.16 +2021-04-29 14:00:00,334.03 +2021-04-29 15:00:00,381.18 +2021-04-29 16:00:00,427.7 +2021-04-29 17:00:00,460.17 +2021-04-29 18:00:00,473.08 +2021-04-29 19:00:00,465.03 +2021-04-29 20:00:00,461.66 +2021-04-29 21:00:00,454.36 +2021-04-29 22:00:00,440.46 +2021-04-29 23:00:00,442.22 +2021-04-30 00:00:00,456.82 +2021-04-30 01:00:00,471.78 +2021-04-30 02:00:00,494.73 +2021-04-30 03:00:00,524.38 +2021-04-30 04:00:00,561.05 +2021-04-30 05:00:00,566.51 +2021-04-30 06:00:00,551.5 +2021-04-30 07:00:00,527.48 +2021-04-30 08:00:00,504.97 +2021-04-30 09:00:00,491.2 +2021-04-30 10:00:00,482.24 +2021-04-30 11:00:00,481.78 +2021-04-30 12:00:00,487.29 +2021-04-30 13:00:00,507.89 +2021-04-30 14:00:00,531.54 +2021-04-30 15:00:00,561.64 +2021-04-30 16:00:00,595.82 +2021-04-30 17:00:00,614.97 +2021-04-30 18:00:00,620.78 +2021-04-30 19:00:00,624.25 +2021-04-30 20:00:00,624.29 +2021-04-30 21:00:00,614.45 +2021-04-30 22:00:00,597.7 +2021-04-30 23:00:00,593.78 +2021-05-01 00:00:00,587.51 +2021-05-01 01:00:00,568.18 +2021-05-01 02:00:00,524.72 +2021-05-01 03:00:00,511.31 +2021-05-01 04:00:00,492.63 +2021-05-01 05:00:00,474.54 +2021-05-01 06:00:00,455.23 +2021-05-01 07:00:00,417.19 +2021-05-01 08:00:00,372.02 +2021-05-01 09:00:00,357.04 +2021-05-01 10:00:00,358.82 +2021-05-01 11:00:00,355.19 +2021-05-01 12:00:00,352.68 +2021-05-01 13:00:00,362.86 +2021-05-01 14:00:00,380.17 +2021-05-01 15:00:00,412.95 +2021-05-01 16:00:00,454.46 +2021-05-01 17:00:00,489.03 +2021-05-01 18:00:00,495.07 +2021-05-01 19:00:00,489.75 +2021-05-01 20:00:00,477.18 +2021-05-01 21:00:00,462.96 +2021-05-01 22:00:00,458.66 +2021-05-01 23:00:00,449.97 +2021-05-02 00:00:00,446.9 +2021-05-02 01:00:00,437.46 +2021-05-02 02:00:00,426.25 +2021-05-02 03:00:00,427.3 +2021-05-02 04:00:00,423.44 +2021-05-02 05:00:00,406.63 +2021-05-02 06:00:00,375.75 +2021-05-02 07:00:00,343.75 +2021-05-02 08:00:00,315.53 +2021-05-02 09:00:00,297.59 +2021-05-02 10:00:00,275.43 +2021-05-02 11:00:00,256.43 +2021-05-02 12:00:00,237.42 +2021-05-02 13:00:00,220.05 +2021-05-02 14:00:00,225.21 +2021-05-02 15:00:00,271.63 +2021-05-02 16:00:00,329.5 +2021-05-02 17:00:00,376.07 +2021-05-02 18:00:00,408.31 +2021-05-02 19:00:00,412.8 +2021-05-02 20:00:00,418.94 +2021-05-02 21:00:00,401.49 +2021-05-02 22:00:00,404.05 +2021-05-02 23:00:00,393.07 +2021-05-03 00:00:00,391.63 +2021-05-03 01:00:00,407.0 +2021-05-03 02:00:00,412.01 +2021-05-03 03:00:00,439.24 +2021-05-03 04:00:00,454.74 +2021-05-03 05:00:00,444.25 +2021-05-03 06:00:00,403.86 +2021-05-03 07:00:00,350.02 +2021-05-03 08:00:00,315.07 +2021-05-03 09:00:00,304.77 +2021-05-03 10:00:00,290.69 +2021-05-03 11:00:00,276.5 +2021-05-03 12:00:00,272.98 +2021-05-03 13:00:00,278.27 +2021-05-03 14:00:00,298.78 +2021-05-03 15:00:00,339.9 +2021-05-03 16:00:00,389.71 +2021-05-03 17:00:00,438.58 +2021-05-03 18:00:00,462.71 +2021-05-03 19:00:00,457.97 +2021-05-03 20:00:00,410.67 +2021-05-03 21:00:00,356.75 +2021-05-03 22:00:00,267.68 +2021-05-03 23:00:00,226.3 +2021-05-04 00:00:00,210.64 +2021-05-04 01:00:00,200.15 +2021-05-04 02:00:00,192.89 +2021-05-04 03:00:00,187.27 +2021-05-04 04:00:00,192.68 +2021-05-04 05:00:00,197.53 +2021-05-04 06:00:00,198.16 +2021-05-04 07:00:00,182.42 +2021-05-04 08:00:00,168.52 +2021-05-04 09:00:00,162.31 +2021-05-04 10:00:00,160.96 +2021-05-04 11:00:00,159.8 +2021-05-04 12:00:00,160.93 +2021-05-04 13:00:00,162.82 +2021-05-04 14:00:00,164.54 +2021-05-04 15:00:00,175.71 +2021-05-04 16:00:00,201.6 +2021-05-04 17:00:00,235.33 +2021-05-04 18:00:00,245.64 +2021-05-04 19:00:00,244.58 +2021-05-04 20:00:00,236.42 +2021-05-04 21:00:00,216.43 +2021-05-04 22:00:00,213.52 +2021-05-04 23:00:00,222.99 +2021-05-05 00:00:00,229.13 +2021-05-05 01:00:00,242.07 +2021-05-05 02:00:00,253.18 +2021-05-05 03:00:00,260.96 +2021-05-05 04:00:00,269.37 +2021-05-05 05:00:00,263.52 +2021-05-05 06:00:00,235.18 +2021-05-05 07:00:00,207.98 +2021-05-05 08:00:00,190.66 +2021-05-05 09:00:00,176.39 +2021-05-05 10:00:00,164.44 +2021-05-05 11:00:00,163.11 +2021-05-05 12:00:00,156.66 +2021-05-05 13:00:00,160.87 +2021-05-05 14:00:00,172.82 +2021-05-05 15:00:00,198.62 +2021-05-05 16:00:00,233.72 +2021-05-05 17:00:00,295.32 +2021-05-05 18:00:00,334.92 +2021-05-05 19:00:00,343.23 +2021-05-05 20:00:00,337.35 +2021-05-05 21:00:00,327.79 +2021-05-05 22:00:00,341.71 +2021-05-05 23:00:00,351.11 +2021-05-06 00:00:00,354.13 +2021-05-06 01:00:00,358.93 +2021-05-06 02:00:00,377.21 +2021-05-06 03:00:00,396.68 +2021-05-06 04:00:00,406.61 +2021-05-06 05:00:00,400.47 +2021-05-06 06:00:00,383.29 +2021-05-06 07:00:00,357.93 +2021-05-06 08:00:00,350.34 +2021-05-06 09:00:00,352.6 +2021-05-06 10:00:00,353.84 +2021-05-06 11:00:00,360.54 +2021-05-06 12:00:00,381.95 +2021-05-06 13:00:00,409.82 +2021-05-06 14:00:00,440.9 +2021-05-06 15:00:00,489.98 +2021-05-06 16:00:00,528.81 +2021-05-06 17:00:00,547.92 +2021-05-06 18:00:00,555.86 +2021-05-06 19:00:00,564.57 +2021-05-06 20:00:00,555.61 +2021-05-06 21:00:00,553.53 +2021-05-06 22:00:00,554.92 +2021-05-06 23:00:00,542.89 +2021-05-07 00:00:00,523.88 +2021-05-07 01:00:00,517.76 +2021-05-07 02:00:00,521.39 +2021-05-07 03:00:00,525.99 +2021-05-07 04:00:00,525.3 +2021-05-07 05:00:00,503.48 +2021-05-07 06:00:00,481.37 +2021-05-07 07:00:00,451.65 +2021-05-07 08:00:00,407.26 +2021-05-07 09:00:00,357.81 +2021-05-07 10:00:00,313.18 +2021-05-07 11:00:00,270.64 +2021-05-07 12:00:00,251.06 +2021-05-07 13:00:00,252.95 +2021-05-07 14:00:00,268.07 +2021-05-07 15:00:00,300.11 +2021-05-07 16:00:00,355.59 +2021-05-07 17:00:00,403.27 +2021-05-07 18:00:00,431.51 +2021-05-07 19:00:00,442.16 +2021-05-07 20:00:00,439.65 +2021-05-07 21:00:00,435.9 +2021-05-07 22:00:00,417.72 +2021-05-07 23:00:00,412.93 +2021-05-08 00:00:00,420.31 +2021-05-08 01:00:00,422.81 +2021-05-08 02:00:00,415.64 +2021-05-08 03:00:00,412.59 +2021-05-08 04:00:00,407.39 +2021-05-08 05:00:00,376.65 +2021-05-08 06:00:00,326.13 +2021-05-08 07:00:00,274.24 +2021-05-08 08:00:00,222.27 +2021-05-08 09:00:00,203.5 +2021-05-08 10:00:00,186.35 +2021-05-08 11:00:00,185.19 +2021-05-08 12:00:00,188.76 +2021-05-08 13:00:00,191.6 +2021-05-08 14:00:00,204.36 +2021-05-08 15:00:00,223.22 +2021-05-08 16:00:00,237.64 +2021-05-08 17:00:00,281.59 +2021-05-08 18:00:00,304.33 +2021-05-08 19:00:00,299.54 +2021-05-08 20:00:00,265.98 +2021-05-08 21:00:00,232.88 +2021-05-08 22:00:00,210.98 +2021-05-08 23:00:00,210.2 +2021-05-09 00:00:00,213.65 +2021-05-09 01:00:00,213.34 +2021-05-09 02:00:00,211.41 +2021-05-09 03:00:00,210.89 +2021-05-09 04:00:00,210.58 +2021-05-09 05:00:00,201.86 +2021-05-09 06:00:00,190.96 +2021-05-09 07:00:00,175.67 +2021-05-09 08:00:00,169.1 +2021-05-09 09:00:00,157.21 +2021-05-09 10:00:00,154.01 +2021-05-09 11:00:00,160.16 +2021-05-09 12:00:00,163.49 +2021-05-09 13:00:00,168.2 +2021-05-09 14:00:00,173.69 +2021-05-09 15:00:00,182.02 +2021-05-09 16:00:00,189.59 +2021-05-09 17:00:00,218.91 +2021-05-09 18:00:00,224.57 +2021-05-09 19:00:00,219.22 +2021-05-09 20:00:00,224.03 +2021-05-09 21:00:00,209.48 +2021-05-09 22:00:00,209.72 +2021-05-09 23:00:00,215.3 +2021-05-10 00:00:00,235.43 +2021-05-10 01:00:00,265.22 +2021-05-10 02:00:00,271.19 +2021-05-10 03:00:00,293.25 +2021-05-10 04:00:00,303.6 +2021-05-10 05:00:00,293.31 +2021-05-10 06:00:00,296.53 +2021-05-10 07:00:00,275.82 +2021-05-10 08:00:00,247.38 +2021-05-10 09:00:00,227.37 +2021-05-10 10:00:00,219.02 +2021-05-10 11:00:00,222.38 +2021-05-10 12:00:00,241.5 +2021-05-10 13:00:00,259.03 +2021-05-10 14:00:00,291.05 +2021-05-10 15:00:00,357.76 +2021-05-10 16:00:00,430.52 +2021-05-10 17:00:00,467.67 +2021-05-10 18:00:00,480.96 +2021-05-10 19:00:00,481.25 +2021-05-10 20:00:00,487.88 +2021-05-10 21:00:00,496.27 +2021-05-10 22:00:00,474.45 +2021-05-10 23:00:00,463.52 +2021-05-11 00:00:00,452.95 +2021-05-11 01:00:00,443.14 +2021-05-11 02:00:00,449.89 +2021-05-11 03:00:00,487.82 +2021-05-11 04:00:00,511.81 +2021-05-11 05:00:00,502.85 +2021-05-11 06:00:00,498.53 +2021-05-11 07:00:00,487.65 +2021-05-11 08:00:00,464.14 +2021-05-11 09:00:00,440.28 +2021-05-11 10:00:00,436.8 +2021-05-11 11:00:00,438.25 +2021-05-11 12:00:00,436.86 +2021-05-11 13:00:00,447.29 +2021-05-11 14:00:00,450.09 +2021-05-11 15:00:00,468.24 +2021-05-11 16:00:00,487.79 +2021-05-11 17:00:00,494.13 +2021-05-11 18:00:00,498.4 +2021-05-11 19:00:00,513.64 +2021-05-11 20:00:00,520.16 +2021-05-11 21:00:00,509.81 +2021-05-11 22:00:00,469.97 +2021-05-11 23:00:00,440.0 +2021-05-12 00:00:00,430.86 +2021-05-12 01:00:00,416.63 +2021-05-12 02:00:00,419.9 +2021-05-12 03:00:00,465.51 +2021-05-12 04:00:00,493.27 +2021-05-12 05:00:00,501.67 +2021-05-12 06:00:00,487.81 +2021-05-12 07:00:00,469.58 +2021-05-12 08:00:00,442.07 +2021-05-12 09:00:00,428.39 +2021-05-12 10:00:00,424.1 +2021-05-12 11:00:00,414.91 +2021-05-12 12:00:00,426.52 +2021-05-12 13:00:00,436.6 +2021-05-12 14:00:00,455.28 +2021-05-12 15:00:00,462.47 +2021-05-12 16:00:00,476.77 +2021-05-12 17:00:00,494.08 +2021-05-12 18:00:00,505.82 +2021-05-12 19:00:00,516.04 +2021-05-12 20:00:00,518.29 +2021-05-12 21:00:00,516.2 +2021-05-12 22:00:00,470.11 +2021-05-12 23:00:00,441.88 +2021-05-13 00:00:00,416.57 +2021-05-13 01:00:00,398.15 +2021-05-13 02:00:00,387.06 +2021-05-13 03:00:00,396.21 +2021-05-13 04:00:00,398.38 +2021-05-13 05:00:00,378.97 +2021-05-13 06:00:00,357.74 +2021-05-13 07:00:00,322.45 +2021-05-13 08:00:00,288.32 +2021-05-13 09:00:00,276.31 +2021-05-13 10:00:00,283.49 +2021-05-13 11:00:00,284.24 +2021-05-13 12:00:00,282.57 +2021-05-13 13:00:00,284.44 +2021-05-13 14:00:00,291.01 +2021-05-13 15:00:00,313.1 +2021-05-13 16:00:00,347.17 +2021-05-13 17:00:00,384.94 +2021-05-13 18:00:00,403.02 +2021-05-13 19:00:00,412.02 +2021-05-13 20:00:00,409.94 +2021-05-13 21:00:00,408.91 +2021-05-13 22:00:00,390.98 +2021-05-13 23:00:00,386.22 +2021-05-14 00:00:00,380.84 +2021-05-14 01:00:00,378.75 +2021-05-14 02:00:00,383.03 +2021-05-14 03:00:00,395.82 +2021-05-14 04:00:00,396.96 +2021-05-14 05:00:00,385.11 +2021-05-14 06:00:00,360.83 +2021-05-14 07:00:00,336.05 +2021-05-14 08:00:00,309.72 +2021-05-14 09:00:00,299.47 +2021-05-14 10:00:00,298.54 +2021-05-14 11:00:00,284.22 +2021-05-14 12:00:00,267.81 +2021-05-14 13:00:00,275.03 +2021-05-14 14:00:00,287.65 +2021-05-14 15:00:00,328.33 +2021-05-14 16:00:00,360.81 +2021-05-14 17:00:00,394.84 +2021-05-14 18:00:00,420.14 +2021-05-14 19:00:00,426.38 +2021-05-14 20:00:00,429.38 +2021-05-14 21:00:00,427.47 +2021-05-14 22:00:00,407.26 +2021-05-14 23:00:00,386.8 +2021-05-15 00:00:00,374.43 +2021-05-15 01:00:00,359.09 +2021-05-15 02:00:00,353.08 +2021-05-15 03:00:00,358.67 +2021-05-15 04:00:00,352.39 +2021-05-15 05:00:00,342.0 +2021-05-15 06:00:00,328.32 +2021-05-15 07:00:00,307.62 +2021-05-15 08:00:00,282.09 +2021-05-15 09:00:00,263.61 +2021-05-15 10:00:00,243.49 +2021-05-15 11:00:00,216.19 +2021-05-15 12:00:00,212.65 +2021-05-15 13:00:00,221.06 +2021-05-15 14:00:00,257.04 +2021-05-15 15:00:00,293.3 +2021-05-15 16:00:00,333.83 +2021-05-15 17:00:00,356.97 +2021-05-15 18:00:00,371.93 +2021-05-15 19:00:00,364.4 +2021-05-15 20:00:00,373.83 +2021-05-15 21:00:00,361.2 +2021-05-15 22:00:00,313.63 +2021-05-15 23:00:00,302.0 +2021-05-16 00:00:00,299.06 +2021-05-16 01:00:00,301.79 +2021-05-16 02:00:00,303.68 +2021-05-16 03:00:00,307.51 +2021-05-16 04:00:00,298.97 +2021-05-16 05:00:00,288.66 +2021-05-16 06:00:00,270.14 +2021-05-16 07:00:00,244.66 +2021-05-16 08:00:00,230.4 +2021-05-16 09:00:00,219.58 +2021-05-16 10:00:00,219.29 +2021-05-16 11:00:00,214.32 +2021-05-16 12:00:00,220.05 +2021-05-16 13:00:00,232.86 +2021-05-16 14:00:00,249.11 +2021-05-16 15:00:00,293.82 +2021-05-16 16:00:00,358.9 +2021-05-16 17:00:00,396.24 +2021-05-16 18:00:00,415.25 +2021-05-16 19:00:00,410.87 +2021-05-16 20:00:00,404.46 +2021-05-16 21:00:00,401.72 +2021-05-16 22:00:00,379.51 +2021-05-16 23:00:00,359.24 +2021-05-17 00:00:00,347.97 +2021-05-17 01:00:00,344.19 +2021-05-17 02:00:00,349.85 +2021-05-17 03:00:00,365.34 +2021-05-17 04:00:00,401.27 +2021-05-17 05:00:00,403.95 +2021-05-17 06:00:00,380.59 +2021-05-17 07:00:00,353.0 +2021-05-17 08:00:00,337.76 +2021-05-17 09:00:00,314.07 +2021-05-17 10:00:00,298.46 +2021-05-17 11:00:00,282.2 +2021-05-17 12:00:00,278.69 +2021-05-17 13:00:00,284.63 +2021-05-17 14:00:00,298.76 +2021-05-17 15:00:00,331.83 +2021-05-17 16:00:00,371.06 +2021-05-17 17:00:00,401.16 +2021-05-17 18:00:00,412.11 +2021-05-17 19:00:00,409.89 +2021-05-17 20:00:00,405.09 +2021-05-17 21:00:00,399.26 +2021-05-17 22:00:00,387.61 +2021-05-17 23:00:00,385.33 +2021-05-18 00:00:00,382.28 +2021-05-18 01:00:00,377.97 +2021-05-18 02:00:00,388.01 +2021-05-18 03:00:00,415.03 +2021-05-18 04:00:00,428.25 +2021-05-18 05:00:00,433.22 +2021-05-18 06:00:00,424.69 +2021-05-18 07:00:00,397.67 +2021-05-18 08:00:00,373.3 +2021-05-18 09:00:00,359.91 +2021-05-18 10:00:00,339.75 +2021-05-18 11:00:00,330.56 +2021-05-18 12:00:00,322.66 +2021-05-18 13:00:00,327.85 +2021-05-18 14:00:00,343.63 +2021-05-18 15:00:00,381.59 +2021-05-18 16:00:00,429.75 +2021-05-18 17:00:00,464.36 +2021-05-18 18:00:00,487.44 +2021-05-18 19:00:00,496.36 +2021-05-18 20:00:00,493.98 +2021-05-18 21:00:00,487.79 +2021-05-18 22:00:00,481.8 +2021-05-18 23:00:00,472.05 +2021-05-19 00:00:00,460.96 +2021-05-19 01:00:00,459.64 +2021-05-19 02:00:00,470.57 +2021-05-19 03:00:00,489.87 +2021-05-19 04:00:00,488.15 +2021-05-19 05:00:00,469.6 +2021-05-19 06:00:00,445.39 +2021-05-19 07:00:00,422.4 +2021-05-19 08:00:00,400.96 +2021-05-19 09:00:00,369.85 +2021-05-19 10:00:00,348.92 +2021-05-19 11:00:00,330.73 +2021-05-19 12:00:00,315.76 +2021-05-19 13:00:00,311.98 +2021-05-19 14:00:00,332.81 +2021-05-19 15:00:00,367.48 +2021-05-19 16:00:00,410.01 +2021-05-19 17:00:00,440.34 +2021-05-19 18:00:00,461.58 +2021-05-19 19:00:00,476.92 +2021-05-19 20:00:00,486.49 +2021-05-19 21:00:00,481.26 +2021-05-19 22:00:00,471.24 +2021-05-19 23:00:00,463.62 +2021-05-20 00:00:00,454.11 +2021-05-20 01:00:00,439.53 +2021-05-20 02:00:00,450.16 +2021-05-20 03:00:00,470.99 +2021-05-20 04:00:00,481.42 +2021-05-20 05:00:00,460.04 +2021-05-20 06:00:00,432.85 +2021-05-20 07:00:00,416.77 +2021-05-20 08:00:00,385.37 +2021-05-20 09:00:00,350.97 +2021-05-20 10:00:00,317.95 +2021-05-20 11:00:00,286.44 +2021-05-20 12:00:00,277.55 +2021-05-20 13:00:00,281.97 +2021-05-20 14:00:00,301.04 +2021-05-20 15:00:00,332.16 +2021-05-20 16:00:00,390.31 +2021-05-20 17:00:00,425.6 +2021-05-20 18:00:00,438.94 +2021-05-20 19:00:00,434.19 +2021-05-20 20:00:00,405.89 +2021-05-20 21:00:00,344.32 +2021-05-20 22:00:00,272.59 +2021-05-20 23:00:00,216.49 +2021-05-21 00:00:00,208.08 +2021-05-21 01:00:00,207.02 +2021-05-21 02:00:00,205.85 +2021-05-21 03:00:00,205.64 +2021-05-21 04:00:00,210.86 +2021-05-21 05:00:00,216.95 +2021-05-21 06:00:00,214.55 +2021-05-21 07:00:00,178.16 +2021-05-21 08:00:00,163.53 +2021-05-21 09:00:00,156.82 +2021-05-21 10:00:00,148.41 +2021-05-21 11:00:00,145.7 +2021-05-21 12:00:00,145.96 +2021-05-21 13:00:00,149.56 +2021-05-21 14:00:00,155.14 +2021-05-21 15:00:00,166.6 +2021-05-21 16:00:00,186.01 +2021-05-21 17:00:00,207.8 +2021-05-21 18:00:00,233.81 +2021-05-21 19:00:00,256.14 +2021-05-21 20:00:00,256.13 +2021-05-21 21:00:00,231.17 +2021-05-21 22:00:00,209.83 +2021-05-21 23:00:00,186.83 +2021-05-22 00:00:00,181.97 +2021-05-22 01:00:00,176.81 +2021-05-22 02:00:00,177.22 +2021-05-22 03:00:00,176.65 +2021-05-22 04:00:00,171.58 +2021-05-22 05:00:00,161.67 +2021-05-22 06:00:00,150.28 +2021-05-22 07:00:00,140.04 +2021-05-22 08:00:00,138.46 +2021-05-22 09:00:00,133.75 +2021-05-22 10:00:00,133.09 +2021-05-22 11:00:00,136.86 +2021-05-22 12:00:00,140.38 +2021-05-22 13:00:00,142.11 +2021-05-22 14:00:00,143.37 +2021-05-22 15:00:00,148.26 +2021-05-22 16:00:00,150.43 +2021-05-22 17:00:00,170.84 +2021-05-22 18:00:00,196.82 +2021-05-22 19:00:00,214.55 +2021-05-22 20:00:00,216.3 +2021-05-22 21:00:00,202.67 +2021-05-22 22:00:00,200.06 +2021-05-22 23:00:00,207.43 +2021-05-23 00:00:00,202.55 +2021-05-23 01:00:00,203.0 +2021-05-23 02:00:00,205.61 +2021-05-23 03:00:00,214.96 +2021-05-23 04:00:00,214.04 +2021-05-23 05:00:00,213.95 +2021-05-23 06:00:00,203.47 +2021-05-23 07:00:00,182.57 +2021-05-23 08:00:00,171.66 +2021-05-23 09:00:00,162.3 +2021-05-23 10:00:00,156.4 +2021-05-23 11:00:00,156.44 +2021-05-23 12:00:00,161.28 +2021-05-23 13:00:00,169.13 +2021-05-23 14:00:00,179.03 +2021-05-23 15:00:00,193.76 +2021-05-23 16:00:00,235.38 +2021-05-23 17:00:00,306.67 +2021-05-23 18:00:00,347.07 +2021-05-23 19:00:00,362.51 +2021-05-23 20:00:00,340.94 +2021-05-23 21:00:00,291.98 +2021-05-23 22:00:00,250.72 +2021-05-23 23:00:00,228.98 +2021-05-24 00:00:00,218.79 +2021-05-24 01:00:00,213.25 +2021-05-24 02:00:00,205.67 +2021-05-24 03:00:00,204.52 +2021-05-24 04:00:00,198.08 +2021-05-24 05:00:00,199.8 +2021-05-24 06:00:00,196.17 +2021-05-24 07:00:00,178.84 +2021-05-24 08:00:00,160.72 +2021-05-24 09:00:00,153.55 +2021-05-24 10:00:00,153.94 +2021-05-24 11:00:00,157.5 +2021-05-24 12:00:00,164.92 +2021-05-24 13:00:00,174.85 +2021-05-24 14:00:00,192.18 +2021-05-24 15:00:00,229.64 +2021-05-24 16:00:00,273.64 +2021-05-24 17:00:00,331.48 +2021-05-24 18:00:00,347.85 +2021-05-24 19:00:00,347.41 +2021-05-24 20:00:00,346.13 +2021-05-24 21:00:00,330.73 +2021-05-24 22:00:00,305.37 +2021-05-24 23:00:00,300.41 +2021-05-25 00:00:00,298.49 +2021-05-25 01:00:00,297.93 +2021-05-25 02:00:00,294.93 +2021-05-25 03:00:00,305.58 +2021-05-25 04:00:00,334.47 +2021-05-25 05:00:00,334.74 +2021-05-25 06:00:00,317.32 +2021-05-25 07:00:00,300.92 +2021-05-25 08:00:00,278.84 +2021-05-25 09:00:00,255.64 +2021-05-25 10:00:00,231.54 +2021-05-25 11:00:00,209.45 +2021-05-25 12:00:00,203.33 +2021-05-25 13:00:00,210.94 +2021-05-25 14:00:00,223.64 +2021-05-25 15:00:00,254.13 +2021-05-25 16:00:00,290.91 +2021-05-25 17:00:00,330.72 +2021-05-25 18:00:00,351.91 +2021-05-25 19:00:00,354.6 +2021-05-25 20:00:00,353.78 +2021-05-25 21:00:00,344.81 +2021-05-25 22:00:00,322.24 +2021-05-25 23:00:00,315.79 +2021-05-26 00:00:00,312.02 +2021-05-26 01:00:00,311.12 +2021-05-26 02:00:00,319.75 +2021-05-26 03:00:00,342.94 +2021-05-26 04:00:00,358.2 +2021-05-26 05:00:00,354.66 +2021-05-26 06:00:00,343.47 +2021-05-26 07:00:00,323.57 +2021-05-26 08:00:00,323.62 +2021-05-26 09:00:00,320.88 +2021-05-26 10:00:00,306.43 +2021-05-26 11:00:00,286.86 +2021-05-26 12:00:00,273.64 +2021-05-26 13:00:00,269.63 +2021-05-26 14:00:00,278.39 +2021-05-26 15:00:00,313.64 +2021-05-26 16:00:00,340.77 +2021-05-26 17:00:00,358.02 +2021-05-26 18:00:00,372.88 +2021-05-26 19:00:00,374.89 +2021-05-26 20:00:00,363.39 +2021-05-26 21:00:00,335.0 +2021-05-26 22:00:00,305.41 +2021-05-26 23:00:00,302.16 +2021-05-27 00:00:00,302.15 +2021-05-27 01:00:00,303.36 +2021-05-27 02:00:00,311.19 +2021-05-27 03:00:00,340.27 +2021-05-27 04:00:00,383.76 +2021-05-27 05:00:00,400.31 +2021-05-27 06:00:00,403.88 +2021-05-27 07:00:00,394.93 +2021-05-27 08:00:00,382.74 +2021-05-27 09:00:00,365.51 +2021-05-27 10:00:00,353.33 +2021-05-27 11:00:00,340.68 +2021-05-27 12:00:00,335.19 +2021-05-27 13:00:00,345.6 +2021-05-27 14:00:00,370.92 +2021-05-27 15:00:00,406.42 +2021-05-27 16:00:00,437.25 +2021-05-27 17:00:00,461.26 +2021-05-27 18:00:00,487.81 +2021-05-27 19:00:00,502.07 +2021-05-27 20:00:00,505.4 +2021-05-27 21:00:00,502.82 +2021-05-27 22:00:00,497.09 +2021-05-27 23:00:00,497.23 +2021-05-28 00:00:00,499.53 +2021-05-28 01:00:00,494.21 +2021-05-28 02:00:00,500.26 +2021-05-28 03:00:00,511.07 +2021-05-28 04:00:00,519.13 +2021-05-28 05:00:00,497.73 +2021-05-28 06:00:00,471.18 +2021-05-28 07:00:00,443.44 +2021-05-28 08:00:00,413.65 +2021-05-28 09:00:00,394.69 +2021-05-28 10:00:00,376.63 +2021-05-28 11:00:00,348.87 +2021-05-28 12:00:00,346.36 +2021-05-28 13:00:00,353.68 +2021-05-28 14:00:00,377.46 +2021-05-28 15:00:00,418.09 +2021-05-28 16:00:00,466.72 +2021-05-28 17:00:00,511.63 +2021-05-28 18:00:00,530.9 +2021-05-28 19:00:00,549.77 +2021-05-28 20:00:00,555.1 +2021-05-28 21:00:00,548.92 +2021-05-28 22:00:00,526.51 +2021-05-28 23:00:00,508.52 +2021-05-29 00:00:00,486.67 +2021-05-29 01:00:00,463.28 +2021-05-29 02:00:00,457.12 +2021-05-29 03:00:00,461.99 +2021-05-29 04:00:00,452.87 +2021-05-29 05:00:00,424.54 +2021-05-29 06:00:00,395.05 +2021-05-29 07:00:00,363.3 +2021-05-29 08:00:00,321.05 +2021-05-29 09:00:00,288.83 +2021-05-29 10:00:00,259.12 +2021-05-29 11:00:00,236.38 +2021-05-29 12:00:00,223.63 +2021-05-29 13:00:00,221.23 +2021-05-29 14:00:00,233.68 +2021-05-29 15:00:00,273.8 +2021-05-29 16:00:00,344.45 +2021-05-29 17:00:00,398.72 +2021-05-29 18:00:00,426.91 +2021-05-29 19:00:00,432.24 +2021-05-29 20:00:00,432.24 +2021-05-29 21:00:00,434.61 +2021-05-29 22:00:00,416.11 +2021-05-29 23:00:00,375.71 +2021-05-30 00:00:00,345.34 +2021-05-30 01:00:00,321.59 +2021-05-30 02:00:00,329.21 +2021-05-30 03:00:00,331.5 +2021-05-30 04:00:00,318.65 +2021-05-30 05:00:00,299.69 +2021-05-30 06:00:00,265.36 +2021-05-30 07:00:00,231.25 +2021-05-30 08:00:00,209.77 +2021-05-30 09:00:00,201.6 +2021-05-30 10:00:00,198.97 +2021-05-30 11:00:00,203.32 +2021-05-30 12:00:00,204.17 +2021-05-30 13:00:00,212.16 +2021-05-30 14:00:00,221.28 +2021-05-30 15:00:00,241.97 +2021-05-30 16:00:00,319.49 +2021-05-30 17:00:00,393.14 +2021-05-30 18:00:00,427.34 +2021-05-30 19:00:00,433.46 +2021-05-30 20:00:00,419.97 +2021-05-30 21:00:00,432.63 +2021-05-30 22:00:00,406.6 +2021-05-30 23:00:00,410.12 +2021-05-31 00:00:00,422.85 +2021-05-31 01:00:00,428.42 +2021-05-31 02:00:00,447.41 +2021-05-31 03:00:00,467.57 +2021-05-31 04:00:00,469.71 +2021-05-31 05:00:00,449.1 +2021-05-31 06:00:00,410.55 +2021-05-31 07:00:00,363.98 +2021-05-31 08:00:00,318.91 +2021-05-31 09:00:00,300.27 +2021-05-31 10:00:00,283.4 +2021-05-31 11:00:00,274.13 +2021-05-31 12:00:00,269.86 +2021-05-31 13:00:00,276.52 +2021-05-31 14:00:00,296.95 +2021-05-31 15:00:00,350.25 +2021-05-31 16:00:00,407.14 +2021-05-31 17:00:00,449.91 +2021-05-31 18:00:00,466.25 +2021-05-31 19:00:00,473.44 +2021-05-31 20:00:00,468.7 +2021-05-31 21:00:00,465.13 +2021-05-31 22:00:00,450.63 +2021-05-31 23:00:00,437.44 +2021-06-01 00:00:00,427.83 +2021-06-01 01:00:00,432.33 +2021-06-01 02:00:00,439.77 +2021-06-01 03:00:00,456.82 +2021-06-01 04:00:00,447.6 +2021-06-01 05:00:00,425.38 +2021-06-01 06:00:00,397.08 +2021-06-01 07:00:00,362.69 +2021-06-01 08:00:00,325.2 +2021-06-01 09:00:00,298.03 +2021-06-01 10:00:00,274.79 +2021-06-01 11:00:00,261.64 +2021-06-01 12:00:00,260.47 +2021-06-01 13:00:00,273.09 +2021-06-01 14:00:00,302.17 +2021-06-01 15:00:00,355.89 +2021-06-01 16:00:00,410.85 +2021-06-01 17:00:00,437.19 +2021-06-01 18:00:00,457.34 +2021-06-01 19:00:00,461.18 +2021-06-01 20:00:00,459.91 +2021-06-01 21:00:00,457.95 +2021-06-01 22:00:00,422.34 +2021-06-01 23:00:00,402.09 +2021-06-02 00:00:00,392.3 +2021-06-02 01:00:00,391.41 +2021-06-02 02:00:00,401.1 +2021-06-02 03:00:00,395.76 +2021-06-02 04:00:00,398.11 +2021-06-02 05:00:00,385.18 +2021-06-02 06:00:00,354.82 +2021-06-02 07:00:00,312.0 +2021-06-02 08:00:00,280.03 +2021-06-02 09:00:00,250.43 +2021-06-02 10:00:00,233.52 +2021-06-02 11:00:00,224.43 +2021-06-02 12:00:00,230.06 +2021-06-02 13:00:00,242.82 +2021-06-02 14:00:00,261.15 +2021-06-02 15:00:00,308.76 +2021-06-02 16:00:00,365.83 +2021-06-02 17:00:00,394.6 +2021-06-02 18:00:00,409.94 +2021-06-02 19:00:00,401.22 +2021-06-02 20:00:00,384.04 +2021-06-02 21:00:00,366.23 +2021-06-02 22:00:00,334.4 +2021-06-02 23:00:00,333.21 +2021-06-03 00:00:00,338.77 +2021-06-03 01:00:00,343.36 +2021-06-03 02:00:00,352.93 +2021-06-03 03:00:00,362.5 +2021-06-03 04:00:00,372.9 +2021-06-03 05:00:00,388.64 +2021-06-03 06:00:00,365.03 +2021-06-03 07:00:00,332.57 +2021-06-03 08:00:00,284.48 +2021-06-03 09:00:00,263.55 +2021-06-03 10:00:00,266.38 +2021-06-03 11:00:00,281.49 +2021-06-03 12:00:00,298.11 +2021-06-03 13:00:00,322.88 +2021-06-03 14:00:00,345.28 +2021-06-03 15:00:00,365.85 +2021-06-03 16:00:00,386.49 +2021-06-03 17:00:00,405.56 +2021-06-03 18:00:00,436.21 +2021-06-03 19:00:00,451.1 +2021-06-03 20:00:00,452.01 +2021-06-03 21:00:00,452.59 +2021-06-03 22:00:00,451.16 +2021-06-03 23:00:00,442.78 +2021-06-04 00:00:00,437.41 +2021-06-04 01:00:00,449.99 +2021-06-04 02:00:00,459.93 +2021-06-04 03:00:00,469.58 +2021-06-04 04:00:00,484.56 +2021-06-04 05:00:00,482.66 +2021-06-04 06:00:00,465.81 +2021-06-04 07:00:00,433.66 +2021-06-04 08:00:00,397.48 +2021-06-04 09:00:00,375.1 +2021-06-04 10:00:00,358.34 +2021-06-04 11:00:00,358.91 +2021-06-04 12:00:00,367.25 +2021-06-04 13:00:00,384.39 +2021-06-04 14:00:00,401.16 +2021-06-04 15:00:00,412.17 +2021-06-04 16:00:00,438.02 +2021-06-04 17:00:00,455.69 +2021-06-04 18:00:00,473.06 +2021-06-04 19:00:00,473.42 +2021-06-04 20:00:00,480.19 +2021-06-04 21:00:00,473.34 +2021-06-04 22:00:00,451.73 +2021-06-04 23:00:00,448.04 +2021-06-05 00:00:00,450.72 +2021-06-05 01:00:00,445.42 +2021-06-05 02:00:00,445.71 +2021-06-05 03:00:00,440.91 +2021-06-05 04:00:00,435.43 +2021-06-05 05:00:00,417.55 +2021-06-05 06:00:00,396.49 +2021-06-05 07:00:00,377.01 +2021-06-05 08:00:00,357.25 +2021-06-05 09:00:00,346.23 +2021-06-05 10:00:00,336.98 +2021-06-05 11:00:00,327.94 +2021-06-05 12:00:00,321.36 +2021-06-05 13:00:00,332.01 +2021-06-05 14:00:00,342.97 +2021-06-05 15:00:00,373.53 +2021-06-05 16:00:00,393.19 +2021-06-05 17:00:00,421.68 +2021-06-05 18:00:00,436.47 +2021-06-05 19:00:00,444.58 +2021-06-05 20:00:00,449.22 +2021-06-05 21:00:00,461.47 +2021-06-05 22:00:00,454.02 +2021-06-05 23:00:00,462.17 +2021-06-06 00:00:00,451.18 +2021-06-06 01:00:00,447.99 +2021-06-06 02:00:00,439.42 +2021-06-06 03:00:00,427.36 +2021-06-06 04:00:00,416.33 +2021-06-06 05:00:00,405.23 +2021-06-06 06:00:00,384.74 +2021-06-06 07:00:00,373.16 +2021-06-06 08:00:00,353.85 +2021-06-06 09:00:00,337.72 +2021-06-06 10:00:00,335.32 +2021-06-06 11:00:00,329.62 +2021-06-06 12:00:00,329.85 +2021-06-06 13:00:00,336.93 +2021-06-06 14:00:00,350.52 +2021-06-06 15:00:00,376.27 +2021-06-06 16:00:00,415.23 +2021-06-06 17:00:00,443.31 +2021-06-06 18:00:00,468.89 +2021-06-06 19:00:00,478.64 +2021-06-06 20:00:00,482.97 +2021-06-06 21:00:00,497.7 +2021-06-06 22:00:00,497.84 +2021-06-06 23:00:00,504.18 +2021-06-07 00:00:00,501.65 +2021-06-07 01:00:00,504.96 +2021-06-07 02:00:00,512.29 +2021-06-07 03:00:00,525.22 +2021-06-07 04:00:00,528.18 +2021-06-07 05:00:00,515.14 +2021-06-07 06:00:00,491.2 +2021-06-07 07:00:00,470.49 +2021-06-07 08:00:00,454.16 +2021-06-07 09:00:00,434.42 +2021-06-07 10:00:00,425.03 +2021-06-07 11:00:00,421.06 +2021-06-07 12:00:00,420.81 +2021-06-07 13:00:00,427.16 +2021-06-07 14:00:00,435.95 +2021-06-07 15:00:00,454.05 +2021-06-07 16:00:00,475.6 +2021-06-07 17:00:00,493.82 +2021-06-07 18:00:00,507.83 +2021-06-07 19:00:00,522.13 +2021-06-07 20:00:00,529.47 +2021-06-07 21:00:00,537.3 +2021-06-07 22:00:00,536.4 +2021-06-07 23:00:00,536.1 +2021-06-08 00:00:00,540.52 +2021-06-08 01:00:00,543.72 +2021-06-08 02:00:00,547.22 +2021-06-08 03:00:00,542.76 +2021-06-08 04:00:00,536.69 +2021-06-08 05:00:00,521.99 +2021-06-08 06:00:00,501.63 +2021-06-08 07:00:00,479.04 +2021-06-08 08:00:00,447.79 +2021-06-08 09:00:00,425.65 +2021-06-08 10:00:00,411.31 +2021-06-08 11:00:00,411.62 +2021-06-08 12:00:00,411.31 +2021-06-08 13:00:00,419.62 +2021-06-08 14:00:00,440.79 +2021-06-08 15:00:00,469.18 +2021-06-08 16:00:00,488.64 +2021-06-08 17:00:00,519.25 +2021-06-08 18:00:00,543.79 +2021-06-08 19:00:00,553.21 +2021-06-08 20:00:00,564.05 +2021-06-08 21:00:00,567.5 +2021-06-08 22:00:00,552.42 +2021-06-08 23:00:00,542.65 +2021-06-09 00:00:00,540.33 +2021-06-09 01:00:00,544.54 +2021-06-09 02:00:00,545.72 +2021-06-09 03:00:00,541.28 +2021-06-09 04:00:00,527.34 +2021-06-09 05:00:00,507.64 +2021-06-09 06:00:00,484.32 +2021-06-09 07:00:00,458.08 +2021-06-09 08:00:00,428.75 +2021-06-09 09:00:00,409.66 +2021-06-09 10:00:00,394.8 +2021-06-09 11:00:00,392.66 +2021-06-09 12:00:00,408.29 +2021-06-09 13:00:00,425.54 +2021-06-09 14:00:00,444.89 +2021-06-09 15:00:00,468.56 +2021-06-09 16:00:00,495.64 +2021-06-09 17:00:00,520.27 +2021-06-09 18:00:00,538.77 +2021-06-09 19:00:00,553.48 +2021-06-09 20:00:00,570.58 +2021-06-09 21:00:00,582.11 +2021-06-09 22:00:00,572.89 +2021-06-09 23:00:00,563.17 +2021-06-10 00:00:00,558.43 +2021-06-10 01:00:00,552.6 +2021-06-10 02:00:00,553.16 +2021-06-10 03:00:00,556.42 +2021-06-10 04:00:00,546.61 +2021-06-10 05:00:00,509.79 +2021-06-10 06:00:00,479.93 +2021-06-10 07:00:00,448.11 +2021-06-10 08:00:00,410.62 +2021-06-10 09:00:00,395.84 +2021-06-10 10:00:00,396.45 +2021-06-10 11:00:00,376.64 +2021-06-10 12:00:00,380.45 +2021-06-10 13:00:00,395.99 +2021-06-10 14:00:00,422.46 +2021-06-10 15:00:00,455.58 +2021-06-10 16:00:00,484.41 +2021-06-10 17:00:00,508.5 +2021-06-10 18:00:00,525.56 +2021-06-10 19:00:00,533.63 +2021-06-10 20:00:00,545.82 +2021-06-10 21:00:00,561.55 +2021-06-10 22:00:00,554.54 +2021-06-10 23:00:00,550.71 +2021-06-11 00:00:00,548.59 +2021-06-11 01:00:00,543.39 +2021-06-11 02:00:00,538.52 +2021-06-11 03:00:00,532.24 +2021-06-11 04:00:00,508.39 +2021-06-11 05:00:00,475.07 +2021-06-11 06:00:00,449.26 +2021-06-11 07:00:00,413.15 +2021-06-11 08:00:00,379.07 +2021-06-11 09:00:00,355.1 +2021-06-11 10:00:00,347.99 +2021-06-11 11:00:00,348.86 +2021-06-11 12:00:00,350.64 +2021-06-11 13:00:00,355.31 +2021-06-11 14:00:00,368.27 +2021-06-11 15:00:00,397.34 +2021-06-11 16:00:00,429.97 +2021-06-11 17:00:00,467.63 +2021-06-11 18:00:00,498.17 +2021-06-11 19:00:00,509.48 +2021-06-11 20:00:00,519.24 +2021-06-11 21:00:00,515.52 +2021-06-11 22:00:00,494.25 +2021-06-11 23:00:00,473.54 +2021-06-12 00:00:00,451.3 +2021-06-12 01:00:00,435.92 +2021-06-12 02:00:00,435.7 +2021-06-12 03:00:00,420.18 +2021-06-12 04:00:00,385.57 +2021-06-12 05:00:00,372.7 +2021-06-12 06:00:00,342.27 +2021-06-12 07:00:00,280.14 +2021-06-12 08:00:00,203.88 +2021-06-12 09:00:00,174.25 +2021-06-12 10:00:00,160.43 +2021-06-12 11:00:00,156.0 +2021-06-12 12:00:00,154.47 +2021-06-12 13:00:00,155.0 +2021-06-12 14:00:00,157.65 +2021-06-12 15:00:00,161.71 +2021-06-12 16:00:00,168.14 +2021-06-12 17:00:00,194.73 +2021-06-12 18:00:00,230.47 +2021-06-12 19:00:00,248.29 +2021-06-12 20:00:00,245.53 +2021-06-12 21:00:00,237.75 +2021-06-12 22:00:00,235.01 +2021-06-12 23:00:00,241.21 +2021-06-13 00:00:00,243.45 +2021-06-13 01:00:00,245.91 +2021-06-13 02:00:00,248.9 +2021-06-13 03:00:00,252.44 +2021-06-13 04:00:00,246.5 +2021-06-13 05:00:00,240.64 +2021-06-13 06:00:00,216.35 +2021-06-13 07:00:00,201.87 +2021-06-13 08:00:00,183.75 +2021-06-13 09:00:00,175.7 +2021-06-13 10:00:00,174.63 +2021-06-13 11:00:00,176.3 +2021-06-13 12:00:00,179.23 +2021-06-13 13:00:00,184.54 +2021-06-13 14:00:00,200.93 +2021-06-13 15:00:00,239.41 +2021-06-13 16:00:00,306.64 +2021-06-13 17:00:00,375.31 +2021-06-13 18:00:00,420.75 +2021-06-13 19:00:00,442.39 +2021-06-13 20:00:00,435.69 +2021-06-13 21:00:00,446.2 +2021-06-13 22:00:00,451.55 +2021-06-13 23:00:00,449.55 +2021-06-14 00:00:00,444.07 +2021-06-14 01:00:00,444.52 +2021-06-14 02:00:00,443.78 +2021-06-14 03:00:00,438.32 +2021-06-14 04:00:00,422.79 +2021-06-14 05:00:00,412.29 +2021-06-14 06:00:00,380.15 +2021-06-14 07:00:00,343.96 +2021-06-14 08:00:00,311.45 +2021-06-14 09:00:00,288.61 +2021-06-14 10:00:00,268.45 +2021-06-14 11:00:00,261.85 +2021-06-14 12:00:00,278.53 +2021-06-14 13:00:00,302.28 +2021-06-14 14:00:00,340.6 +2021-06-14 15:00:00,391.97 +2021-06-14 16:00:00,442.69 +2021-06-14 17:00:00,489.32 +2021-06-14 18:00:00,517.88 +2021-06-14 19:00:00,533.27 +2021-06-14 20:00:00,538.08 +2021-06-14 21:00:00,545.08 +2021-06-14 22:00:00,551.7 +2021-06-14 23:00:00,534.69 +2021-06-15 00:00:00,538.18 +2021-06-15 01:00:00,534.62 +2021-06-15 02:00:00,539.49 +2021-06-15 03:00:00,538.16 +2021-06-15 04:00:00,519.33 +2021-06-15 05:00:00,501.09 +2021-06-15 06:00:00,482.01 +2021-06-15 07:00:00,464.18 +2021-06-15 08:00:00,437.94 +2021-06-15 09:00:00,411.73 +2021-06-15 10:00:00,388.09 +2021-06-15 11:00:00,374.87 +2021-06-15 12:00:00,376.89 +2021-06-15 13:00:00,391.47 +2021-06-15 14:00:00,414.61 +2021-06-15 15:00:00,458.64 +2021-06-15 16:00:00,498.35 +2021-06-15 17:00:00,535.12 +2021-06-15 18:00:00,562.37 +2021-06-15 19:00:00,582.48 +2021-06-15 20:00:00,580.84 +2021-06-15 21:00:00,586.63 +2021-06-15 22:00:00,567.61 +2021-06-15 23:00:00,557.14 +2021-06-16 00:00:00,549.23 +2021-06-16 01:00:00,532.86 +2021-06-16 02:00:00,533.9 +2021-06-16 03:00:00,537.73 +2021-06-16 04:00:00,523.92 +2021-06-16 05:00:00,506.22 +2021-06-16 06:00:00,490.03 +2021-06-16 07:00:00,462.27 +2021-06-16 08:00:00,424.07 +2021-06-16 09:00:00,399.47 +2021-06-16 10:00:00,387.54 +2021-06-16 11:00:00,386.31 +2021-06-16 12:00:00,396.94 +2021-06-16 13:00:00,414.51 +2021-06-16 14:00:00,443.22 +2021-06-16 15:00:00,478.07 +2021-06-16 16:00:00,508.45 +2021-06-16 17:00:00,534.86 +2021-06-16 18:00:00,548.5 +2021-06-16 19:00:00,551.14 +2021-06-16 20:00:00,541.0 +2021-06-16 21:00:00,520.04 +2021-06-16 22:00:00,491.74 +2021-06-16 23:00:00,476.86 +2021-06-17 00:00:00,462.05 +2021-06-17 01:00:00,448.51 +2021-06-17 02:00:00,442.77 +2021-06-17 03:00:00,456.66 +2021-06-17 04:00:00,473.77 +2021-06-17 05:00:00,470.7 +2021-06-17 06:00:00,452.37 +2021-06-17 07:00:00,424.65 +2021-06-17 08:00:00,396.41 +2021-06-17 09:00:00,369.69 +2021-06-17 10:00:00,338.99 +2021-06-17 11:00:00,319.37 +2021-06-17 12:00:00,311.1 +2021-06-17 13:00:00,332.2 +2021-06-17 14:00:00,362.25 +2021-06-17 15:00:00,403.4 +2021-06-17 16:00:00,448.36 +2021-06-17 17:00:00,488.38 +2021-06-17 18:00:00,521.08 +2021-06-17 19:00:00,526.66 +2021-06-17 20:00:00,524.53 +2021-06-17 21:00:00,521.15 +2021-06-17 22:00:00,517.46 +2021-06-17 23:00:00,523.56 +2021-06-18 00:00:00,529.32 +2021-06-18 01:00:00,526.75 +2021-06-18 02:00:00,533.51 +2021-06-18 03:00:00,529.19 +2021-06-18 04:00:00,520.1 +2021-06-18 05:00:00,504.5 +2021-06-18 06:00:00,483.0 +2021-06-18 07:00:00,454.08 +2021-06-18 08:00:00,411.43 +2021-06-18 09:00:00,384.8 +2021-06-18 10:00:00,371.61 +2021-06-18 11:00:00,370.47 +2021-06-18 12:00:00,376.28 +2021-06-18 13:00:00,388.31 +2021-06-18 14:00:00,408.62 +2021-06-18 15:00:00,437.94 +2021-06-18 16:00:00,476.41 +2021-06-18 17:00:00,505.23 +2021-06-18 18:00:00,524.49 +2021-06-18 19:00:00,540.88 +2021-06-18 20:00:00,526.63 +2021-06-18 21:00:00,524.11 +2021-06-18 22:00:00,504.32 +2021-06-18 23:00:00,503.2 +2021-06-19 00:00:00,505.07 +2021-06-19 01:00:00,496.58 +2021-06-19 02:00:00,484.06 +2021-06-19 03:00:00,476.93 +2021-06-19 04:00:00,452.89 +2021-06-19 05:00:00,433.1 +2021-06-19 06:00:00,394.74 +2021-06-19 07:00:00,346.23 +2021-06-19 08:00:00,305.85 +2021-06-19 09:00:00,289.62 +2021-06-19 10:00:00,280.8 +2021-06-19 11:00:00,286.5 +2021-06-19 12:00:00,308.79 +2021-06-19 13:00:00,333.74 +2021-06-19 14:00:00,368.4 +2021-06-19 15:00:00,405.24 +2021-06-19 16:00:00,440.9 +2021-06-19 17:00:00,474.62 +2021-06-19 18:00:00,498.89 +2021-06-19 19:00:00,516.14 +2021-06-19 20:00:00,517.6 +2021-06-19 21:00:00,496.41 +2021-06-19 22:00:00,446.74 +2021-06-19 23:00:00,417.14 +2021-06-20 00:00:00,371.39 +2021-06-20 01:00:00,338.64 +2021-06-20 02:00:00,324.74 +2021-06-20 03:00:00,302.78 +2021-06-20 04:00:00,283.83 +2021-06-20 05:00:00,276.78 +2021-06-20 06:00:00,273.84 +2021-06-20 07:00:00,254.33 +2021-06-20 08:00:00,232.53 +2021-06-20 09:00:00,214.45 +2021-06-20 10:00:00,203.06 +2021-06-20 11:00:00,206.52 +2021-06-20 12:00:00,209.99 +2021-06-20 13:00:00,222.8 +2021-06-20 14:00:00,283.33 +2021-06-20 15:00:00,369.16 +2021-06-20 16:00:00,429.2 +2021-06-20 17:00:00,476.81 +2021-06-20 18:00:00,506.29 +2021-06-20 19:00:00,513.6 +2021-06-20 20:00:00,505.49 +2021-06-20 21:00:00,481.32 +2021-06-20 22:00:00,466.62 +2021-06-20 23:00:00,464.8 +2021-06-21 00:00:00,462.32 +2021-06-21 01:00:00,439.22 +2021-06-21 02:00:00,437.58 +2021-06-21 03:00:00,463.21 +2021-06-21 04:00:00,454.53 +2021-06-21 05:00:00,434.55 +2021-06-21 06:00:00,412.23 +2021-06-21 07:00:00,391.69 +2021-06-21 08:00:00,366.57 +2021-06-21 09:00:00,351.91 +2021-06-21 10:00:00,350.99 +2021-06-21 11:00:00,352.55 +2021-06-21 12:00:00,357.07 +2021-06-21 13:00:00,357.63 +2021-06-21 14:00:00,370.62 +2021-06-21 15:00:00,393.84 +2021-06-21 16:00:00,422.1 +2021-06-21 17:00:00,455.89 +2021-06-21 18:00:00,460.1 +2021-06-21 19:00:00,470.37 +2021-06-21 20:00:00,492.95 +2021-06-21 21:00:00,507.45 +2021-06-21 22:00:00,483.74 +2021-06-21 23:00:00,471.98 +2021-06-22 00:00:00,471.53 +2021-06-22 01:00:00,485.33 +2021-06-22 02:00:00,487.94 +2021-06-22 03:00:00,502.39 +2021-06-22 04:00:00,506.13 +2021-06-22 05:00:00,504.46 +2021-06-22 06:00:00,477.97 +2021-06-22 07:00:00,452.9 +2021-06-22 08:00:00,443.18 +2021-06-22 09:00:00,440.52 +2021-06-22 10:00:00,439.88 +2021-06-22 11:00:00,437.75 +2021-06-22 12:00:00,440.45 +2021-06-22 13:00:00,448.62 +2021-06-22 14:00:00,465.93 +2021-06-22 15:00:00,482.33 +2021-06-22 16:00:00,506.93 +2021-06-22 17:00:00,533.32 +2021-06-22 18:00:00,552.52 +2021-06-22 19:00:00,568.96 +2021-06-22 20:00:00,577.17 +2021-06-22 21:00:00,588.39 +2021-06-22 22:00:00,583.14 +2021-06-22 23:00:00,580.15 +2021-06-23 00:00:00,578.9 +2021-06-23 01:00:00,579.54 +2021-06-23 02:00:00,588.48 +2021-06-23 03:00:00,596.36 +2021-06-23 04:00:00,595.42 +2021-06-23 05:00:00,569.7 +2021-06-23 06:00:00,546.19 +2021-06-23 07:00:00,522.52 +2021-06-23 08:00:00,502.49 +2021-06-23 09:00:00,486.59 +2021-06-23 10:00:00,476.34 +2021-06-23 11:00:00,470.71 +2021-06-23 12:00:00,467.07 +2021-06-23 13:00:00,469.79 +2021-06-23 14:00:00,483.75 +2021-06-23 15:00:00,502.41 +2021-06-23 16:00:00,530.91 +2021-06-23 17:00:00,563.4 +2021-06-23 18:00:00,582.17 +2021-06-23 19:00:00,591.57 +2021-06-23 20:00:00,589.86 +2021-06-23 21:00:00,601.78 +2021-06-23 22:00:00,597.22 +2021-06-23 23:00:00,588.69 +2021-06-24 00:00:00,580.99 +2021-06-24 01:00:00,574.88 +2021-06-24 02:00:00,570.53 +2021-06-24 03:00:00,583.93 +2021-06-24 04:00:00,575.89 +2021-06-24 05:00:00,549.75 +2021-06-24 06:00:00,531.24 +2021-06-24 07:00:00,509.15 +2021-06-24 08:00:00,495.9 +2021-06-24 09:00:00,482.11 +2021-06-24 10:00:00,479.58 +2021-06-24 11:00:00,475.45 +2021-06-24 12:00:00,474.39 +2021-06-24 13:00:00,479.49 +2021-06-24 14:00:00,491.75 +2021-06-24 15:00:00,509.91 +2021-06-24 16:00:00,535.48 +2021-06-24 17:00:00,561.79 +2021-06-24 18:00:00,583.37 +2021-06-24 19:00:00,598.77 +2021-06-24 20:00:00,607.44 +2021-06-24 21:00:00,624.9 +2021-06-24 22:00:00,617.19 +2021-06-24 23:00:00,604.52 +2021-06-25 00:00:00,587.55 +2021-06-25 01:00:00,578.05 +2021-06-25 02:00:00,579.43 +2021-06-25 03:00:00,587.94 +2021-06-25 04:00:00,577.63 +2021-06-25 05:00:00,557.7 +2021-06-25 06:00:00,532.91 +2021-06-25 07:00:00,509.04 +2021-06-25 08:00:00,484.39 +2021-06-25 09:00:00,464.45 +2021-06-25 10:00:00,446.45 +2021-06-25 11:00:00,434.33 +2021-06-25 12:00:00,436.1 +2021-06-25 13:00:00,446.67 +2021-06-25 14:00:00,467.82 +2021-06-25 15:00:00,497.61 +2021-06-25 16:00:00,528.6 +2021-06-25 17:00:00,555.4 +2021-06-25 18:00:00,584.41 +2021-06-25 19:00:00,597.0 +2021-06-25 20:00:00,599.48 +2021-06-25 21:00:00,616.5 +2021-06-25 22:00:00,585.19 +2021-06-25 23:00:00,566.98 +2021-06-26 00:00:00,549.99 +2021-06-26 01:00:00,543.26 +2021-06-26 02:00:00,552.76 +2021-06-26 03:00:00,551.27 +2021-06-26 04:00:00,524.84 +2021-06-26 05:00:00,484.54 +2021-06-26 06:00:00,445.29 +2021-06-26 07:00:00,405.6 +2021-06-26 08:00:00,369.48 +2021-06-26 09:00:00,356.59 +2021-06-26 10:00:00,340.08 +2021-06-26 11:00:00,327.33 +2021-06-26 12:00:00,327.22 +2021-06-26 13:00:00,338.37 +2021-06-26 14:00:00,361.3 +2021-06-26 15:00:00,397.83 +2021-06-26 16:00:00,444.72 +2021-06-26 17:00:00,495.46 +2021-06-26 18:00:00,518.57 +2021-06-26 19:00:00,531.14 +2021-06-26 20:00:00,537.77 +2021-06-26 21:00:00,541.82 +2021-06-26 22:00:00,514.37 +2021-06-26 23:00:00,488.42 +2021-06-27 00:00:00,463.2 +2021-06-27 01:00:00,442.1 +2021-06-27 02:00:00,444.49 +2021-06-27 03:00:00,441.37 +2021-06-27 04:00:00,419.91 +2021-06-27 05:00:00,382.49 +2021-06-27 06:00:00,343.36 +2021-06-27 07:00:00,301.75 +2021-06-27 08:00:00,273.28 +2021-06-27 09:00:00,262.08 +2021-06-27 10:00:00,253.12 +2021-06-27 11:00:00,233.86 +2021-06-27 12:00:00,234.16 +2021-06-27 13:00:00,242.22 +2021-06-27 14:00:00,273.82 +2021-06-27 15:00:00,365.69 +2021-06-27 16:00:00,443.87 +2021-06-27 17:00:00,494.8 +2021-06-27 18:00:00,506.12 +2021-06-27 19:00:00,509.53 +2021-06-27 20:00:00,512.21 +2021-06-27 21:00:00,530.04 +2021-06-27 22:00:00,531.11 +2021-06-27 23:00:00,522.56 +2021-06-28 00:00:00,523.05 +2021-06-28 01:00:00,512.01 +2021-06-28 02:00:00,516.29 +2021-06-28 03:00:00,538.05 +2021-06-28 04:00:00,537.03 +2021-06-28 05:00:00,523.36 +2021-06-28 06:00:00,499.38 +2021-06-28 07:00:00,462.78 +2021-06-28 08:00:00,432.63 +2021-06-28 09:00:00,411.24 +2021-06-28 10:00:00,398.79 +2021-06-28 11:00:00,398.97 +2021-06-28 12:00:00,405.58 +2021-06-28 13:00:00,411.79 +2021-06-28 14:00:00,434.7 +2021-06-28 15:00:00,472.25 +2021-06-28 16:00:00,506.54 +2021-06-28 17:00:00,533.55 +2021-06-28 18:00:00,546.95 +2021-06-28 19:00:00,545.89 +2021-06-28 20:00:00,532.16 +2021-06-28 21:00:00,529.05 +2021-06-28 22:00:00,516.0 +2021-06-28 23:00:00,509.64 +2021-06-29 00:00:00,499.64 +2021-06-29 01:00:00,496.13 +2021-06-29 02:00:00,502.01 +2021-06-29 03:00:00,502.05 +2021-06-29 04:00:00,503.83 +2021-06-29 05:00:00,507.89 +2021-06-29 06:00:00,503.57 +2021-06-29 07:00:00,482.67 +2021-06-29 08:00:00,448.9 +2021-06-29 09:00:00,429.35 +2021-06-29 10:00:00,423.37 +2021-06-29 11:00:00,419.59 +2021-06-29 12:00:00,422.86 +2021-06-29 13:00:00,438.98 +2021-06-29 14:00:00,457.42 +2021-06-29 15:00:00,477.28 +2021-06-29 16:00:00,500.85 +2021-06-29 17:00:00,521.17 +2021-06-29 18:00:00,536.86 +2021-06-29 19:00:00,551.48 +2021-06-29 20:00:00,553.64 +2021-06-29 21:00:00,554.82 +2021-06-29 22:00:00,543.83 +2021-06-29 23:00:00,534.47 +2021-06-30 00:00:00,532.51 +2021-06-30 01:00:00,525.84 +2021-06-30 02:00:00,512.53 +2021-06-30 03:00:00,508.96 +2021-06-30 04:00:00,518.63 +2021-06-30 05:00:00,511.44 +2021-06-30 06:00:00,491.62 +2021-06-30 07:00:00,470.72 +2021-06-30 08:00:00,454.2 +2021-06-30 09:00:00,441.22 +2021-06-30 10:00:00,435.8 +2021-06-30 11:00:00,436.65 +2021-06-30 12:00:00,430.03 +2021-06-30 13:00:00,430.62 +2021-06-30 14:00:00,440.58 +2021-06-30 15:00:00,456.21 +2021-06-30 16:00:00,484.25 +2021-06-30 17:00:00,503.51 +2021-06-30 18:00:00,521.21 +2021-06-30 19:00:00,532.04 +2021-06-30 20:00:00,533.39 +2021-06-30 21:00:00,524.41 +2021-06-30 22:00:00,489.62 +2021-06-30 23:00:00,463.73 +2021-07-01 00:00:00,444.95 +2021-07-01 01:00:00,441.19 +2021-07-01 02:00:00,432.18 +2021-07-01 03:00:00,436.41 +2021-07-01 04:00:00,447.59 +2021-07-01 05:00:00,452.73 +2021-07-01 06:00:00,440.68 +2021-07-01 07:00:00,438.96 +2021-07-01 08:00:00,421.99 +2021-07-01 09:00:00,415.49 +2021-07-01 10:00:00,411.54 +2021-07-01 11:00:00,415.2 +2021-07-01 12:00:00,416.64 +2021-07-01 13:00:00,422.57 +2021-07-01 14:00:00,438.16 +2021-07-01 15:00:00,454.81 +2021-07-01 16:00:00,482.12 +2021-07-01 17:00:00,502.32 +2021-07-01 18:00:00,522.54 +2021-07-01 19:00:00,536.82 +2021-07-01 20:00:00,538.88 +2021-07-01 21:00:00,559.3 +2021-07-01 22:00:00,548.67 +2021-07-01 23:00:00,546.84 +2021-07-02 00:00:00,542.54 +2021-07-02 01:00:00,533.91 +2021-07-02 02:00:00,530.95 +2021-07-02 03:00:00,541.21 +2021-07-02 04:00:00,545.77 +2021-07-02 05:00:00,517.42 +2021-07-02 06:00:00,490.46 +2021-07-02 07:00:00,472.95 +2021-07-02 08:00:00,450.65 +2021-07-02 09:00:00,431.66 +2021-07-02 10:00:00,417.77 +2021-07-02 11:00:00,402.33 +2021-07-02 12:00:00,394.97 +2021-07-02 13:00:00,398.81 +2021-07-02 14:00:00,410.38 +2021-07-02 15:00:00,436.01 +2021-07-02 16:00:00,468.71 +2021-07-02 17:00:00,505.53 +2021-07-02 18:00:00,540.65 +2021-07-02 19:00:00,556.91 +2021-07-02 20:00:00,561.93 +2021-07-02 21:00:00,579.64 +2021-07-02 22:00:00,564.32 +2021-07-02 23:00:00,552.59 +2021-07-03 00:00:00,540.19 +2021-07-03 01:00:00,530.74 +2021-07-03 02:00:00,539.58 +2021-07-03 03:00:00,545.3 +2021-07-03 04:00:00,524.39 +2021-07-03 05:00:00,489.85 +2021-07-03 06:00:00,443.23 +2021-07-03 07:00:00,401.55 +2021-07-03 08:00:00,375.09 +2021-07-03 09:00:00,360.83 +2021-07-03 10:00:00,347.17 +2021-07-03 11:00:00,339.3 +2021-07-03 12:00:00,350.67 +2021-07-03 13:00:00,373.68 +2021-07-03 14:00:00,399.21 +2021-07-03 15:00:00,442.94 +2021-07-03 16:00:00,488.44 +2021-07-03 17:00:00,530.83 +2021-07-03 18:00:00,555.74 +2021-07-03 19:00:00,569.75 +2021-07-03 20:00:00,591.7 +2021-07-03 21:00:00,604.93 +2021-07-03 22:00:00,590.22 +2021-07-03 23:00:00,583.04 +2021-07-04 00:00:00,574.06 +2021-07-04 01:00:00,562.31 +2021-07-04 02:00:00,566.24 +2021-07-04 03:00:00,561.8 +2021-07-04 04:00:00,550.85 +2021-07-04 05:00:00,517.37 +2021-07-04 06:00:00,466.57 +2021-07-04 07:00:00,420.6 +2021-07-04 08:00:00,392.81 +2021-07-04 09:00:00,371.73 +2021-07-04 10:00:00,372.63 +2021-07-04 11:00:00,360.07 +2021-07-04 12:00:00,353.44 +2021-07-04 13:00:00,355.35 +2021-07-04 14:00:00,380.13 +2021-07-04 15:00:00,429.22 +2021-07-04 16:00:00,481.22 +2021-07-04 17:00:00,519.63 +2021-07-04 18:00:00,540.49 +2021-07-04 19:00:00,559.5 +2021-07-04 20:00:00,564.78 +2021-07-04 21:00:00,559.72 +2021-07-04 22:00:00,533.67 +2021-07-04 23:00:00,521.72 +2021-07-05 00:00:00,520.06 +2021-07-05 01:00:00,506.53 +2021-07-05 02:00:00,499.2 +2021-07-05 03:00:00,515.41 +2021-07-05 04:00:00,528.47 +2021-07-05 05:00:00,517.29 +2021-07-05 06:00:00,497.53 +2021-07-05 07:00:00,476.67 +2021-07-05 08:00:00,458.39 +2021-07-05 09:00:00,447.42 +2021-07-05 10:00:00,432.8 +2021-07-05 11:00:00,413.93 +2021-07-05 12:00:00,409.79 +2021-07-05 13:00:00,419.38 +2021-07-05 14:00:00,424.71 +2021-07-05 15:00:00,450.42 +2021-07-05 16:00:00,489.89 +2021-07-05 17:00:00,530.55 +2021-07-05 18:00:00,556.53 +2021-07-05 19:00:00,574.3 +2021-07-05 20:00:00,579.05 +2021-07-05 21:00:00,568.79 +2021-07-05 22:00:00,517.63 +2021-07-05 23:00:00,474.97 +2021-07-06 00:00:00,430.37 +2021-07-06 01:00:00,405.36 +2021-07-06 02:00:00,395.38 +2021-07-06 03:00:00,384.36 +2021-07-06 04:00:00,382.74 +2021-07-06 05:00:00,374.22 +2021-07-06 06:00:00,359.58 +2021-07-06 07:00:00,333.49 +2021-07-06 08:00:00,300.85 +2021-07-06 09:00:00,278.15 +2021-07-06 10:00:00,257.21 +2021-07-06 11:00:00,248.62 +2021-07-06 12:00:00,253.43 +2021-07-06 13:00:00,272.32 +2021-07-06 14:00:00,303.63 +2021-07-06 15:00:00,337.32 +2021-07-06 16:00:00,376.63 +2021-07-06 17:00:00,413.67 +2021-07-06 18:00:00,434.07 +2021-07-06 19:00:00,447.6 +2021-07-06 20:00:00,456.64 +2021-07-06 21:00:00,454.84 +2021-07-06 22:00:00,442.66 +2021-07-06 23:00:00,443.35 +2021-07-07 00:00:00,439.58 +2021-07-07 01:00:00,436.58 +2021-07-07 02:00:00,447.62 +2021-07-07 03:00:00,469.21 +2021-07-07 04:00:00,499.36 +2021-07-07 05:00:00,506.33 +2021-07-07 06:00:00,501.94 +2021-07-07 07:00:00,487.3 +2021-07-07 08:00:00,464.6 +2021-07-07 09:00:00,448.78 +2021-07-07 10:00:00,437.9 +2021-07-07 11:00:00,425.95 +2021-07-07 12:00:00,412.09 +2021-07-07 13:00:00,411.78 +2021-07-07 14:00:00,428.13 +2021-07-07 15:00:00,457.73 +2021-07-07 16:00:00,505.39 +2021-07-07 17:00:00,538.28 +2021-07-07 18:00:00,559.47 +2021-07-07 19:00:00,573.37 +2021-07-07 20:00:00,581.53 +2021-07-07 21:00:00,596.98 +2021-07-07 22:00:00,590.61 +2021-07-07 23:00:00,576.81 +2021-07-08 00:00:00,567.52 +2021-07-08 01:00:00,560.89 +2021-07-08 02:00:00,563.31 +2021-07-08 03:00:00,572.68 +2021-07-08 04:00:00,573.02 +2021-07-08 05:00:00,559.23 +2021-07-08 06:00:00,538.57 +2021-07-08 07:00:00,521.55 +2021-07-08 08:00:00,505.2 +2021-07-08 09:00:00,494.3 +2021-07-08 10:00:00,493.65 +2021-07-08 11:00:00,501.67 +2021-07-08 12:00:00,507.18 +2021-07-08 13:00:00,520.65 +2021-07-08 14:00:00,525.65 +2021-07-08 15:00:00,522.88 +2021-07-08 16:00:00,535.13 +2021-07-08 17:00:00,554.74 +2021-07-08 18:00:00,573.85 +2021-07-08 19:00:00,583.79 +2021-07-08 20:00:00,595.51 +2021-07-08 21:00:00,616.87 +2021-07-08 22:00:00,603.71 +2021-07-08 23:00:00,578.14 +2021-07-09 00:00:00,554.18 +2021-07-09 01:00:00,547.09 +2021-07-09 02:00:00,548.2 +2021-07-09 03:00:00,559.34 +2021-07-09 04:00:00,550.26 +2021-07-09 05:00:00,536.16 +2021-07-09 06:00:00,516.11 +2021-07-09 07:00:00,491.93 +2021-07-09 08:00:00,470.48 +2021-07-09 09:00:00,444.36 +2021-07-09 10:00:00,442.62 +2021-07-09 11:00:00,424.1 +2021-07-09 12:00:00,415.12 +2021-07-09 13:00:00,411.68 +2021-07-09 14:00:00,419.0 +2021-07-09 15:00:00,437.58 +2021-07-09 16:00:00,466.66 +2021-07-09 17:00:00,501.4 +2021-07-09 18:00:00,519.77 +2021-07-09 19:00:00,529.25 +2021-07-09 20:00:00,535.65 +2021-07-09 21:00:00,526.23 +2021-07-09 22:00:00,503.48 +2021-07-09 23:00:00,482.55 +2021-07-10 00:00:00,481.65 +2021-07-10 01:00:00,483.41 +2021-07-10 02:00:00,475.04 +2021-07-10 03:00:00,462.78 +2021-07-10 04:00:00,455.96 +2021-07-10 05:00:00,451.19 +2021-07-10 06:00:00,422.27 +2021-07-10 07:00:00,382.67 +2021-07-10 08:00:00,344.07 +2021-07-10 09:00:00,318.72 +2021-07-10 10:00:00,308.27 +2021-07-10 11:00:00,304.29 +2021-07-10 12:00:00,315.19 +2021-07-10 13:00:00,339.43 +2021-07-10 14:00:00,371.76 +2021-07-10 15:00:00,419.2 +2021-07-10 16:00:00,469.51 +2021-07-10 17:00:00,511.58 +2021-07-10 18:00:00,535.08 +2021-07-10 19:00:00,551.53 +2021-07-10 20:00:00,555.8 +2021-07-10 21:00:00,558.4 +2021-07-10 22:00:00,555.46 +2021-07-10 23:00:00,538.47 +2021-07-11 00:00:00,523.75 +2021-07-11 01:00:00,518.65 +2021-07-11 02:00:00,517.98 +2021-07-11 03:00:00,512.53 +2021-07-11 04:00:00,504.03 +2021-07-11 05:00:00,487.5 +2021-07-11 06:00:00,464.25 +2021-07-11 07:00:00,425.33 +2021-07-11 08:00:00,388.35 +2021-07-11 09:00:00,373.58 +2021-07-11 10:00:00,366.45 +2021-07-11 11:00:00,363.29 +2021-07-11 12:00:00,353.03 +2021-07-11 13:00:00,342.35 +2021-07-11 14:00:00,347.88 +2021-07-11 15:00:00,392.97 +2021-07-11 16:00:00,438.87 +2021-07-11 17:00:00,496.54 +2021-07-11 18:00:00,524.22 +2021-07-11 19:00:00,536.28 +2021-07-11 20:00:00,536.4 +2021-07-11 21:00:00,536.95 +2021-07-11 22:00:00,535.03 +2021-07-11 23:00:00,534.82 +2021-07-12 00:00:00,521.85 +2021-07-12 01:00:00,518.51 +2021-07-12 02:00:00,527.98 +2021-07-12 03:00:00,528.92 +2021-07-12 04:00:00,521.73 +2021-07-12 05:00:00,500.87 +2021-07-12 06:00:00,477.37 +2021-07-12 07:00:00,448.15 +2021-07-12 08:00:00,411.66 +2021-07-12 09:00:00,384.96 +2021-07-12 10:00:00,374.79 +2021-07-12 11:00:00,365.47 +2021-07-12 12:00:00,376.03 +2021-07-12 13:00:00,395.15 +2021-07-12 14:00:00,417.15 +2021-07-12 15:00:00,445.8 +2021-07-12 16:00:00,481.17 +2021-07-12 17:00:00,505.94 +2021-07-12 18:00:00,528.13 +2021-07-12 19:00:00,534.99 +2021-07-12 20:00:00,552.87 +2021-07-12 21:00:00,555.52 +2021-07-12 22:00:00,564.4 +2021-07-12 23:00:00,556.61 +2021-07-13 00:00:00,551.29 +2021-07-13 01:00:00,557.51 +2021-07-13 02:00:00,567.49 +2021-07-13 03:00:00,569.05 +2021-07-13 04:00:00,557.0 +2021-07-13 05:00:00,531.34 +2021-07-13 06:00:00,512.1 +2021-07-13 07:00:00,492.46 +2021-07-13 08:00:00,471.77 +2021-07-13 09:00:00,457.08 +2021-07-13 10:00:00,453.27 +2021-07-13 11:00:00,455.72 +2021-07-13 12:00:00,457.77 +2021-07-13 13:00:00,458.44 +2021-07-13 14:00:00,463.35 +2021-07-13 15:00:00,472.9 +2021-07-13 16:00:00,490.75 +2021-07-13 17:00:00,514.48 +2021-07-13 18:00:00,526.45 +2021-07-13 19:00:00,532.7 +2021-07-13 20:00:00,529.41 +2021-07-13 21:00:00,520.22 +2021-07-13 22:00:00,506.5 +2021-07-13 23:00:00,503.43 +2021-07-14 00:00:00,490.82 +2021-07-14 01:00:00,490.84 +2021-07-14 02:00:00,500.94 +2021-07-14 03:00:00,505.03 +2021-07-14 04:00:00,513.11 +2021-07-14 05:00:00,503.17 +2021-07-14 06:00:00,487.47 +2021-07-14 07:00:00,476.33 +2021-07-14 08:00:00,459.21 +2021-07-14 09:00:00,441.81 +2021-07-14 10:00:00,424.68 +2021-07-14 11:00:00,391.85 +2021-07-14 12:00:00,371.6 +2021-07-14 13:00:00,371.89 +2021-07-14 14:00:00,382.48 +2021-07-14 15:00:00,403.75 +2021-07-14 16:00:00,431.64 +2021-07-14 17:00:00,462.42 +2021-07-14 18:00:00,485.39 +2021-07-14 19:00:00,487.57 +2021-07-14 20:00:00,505.97 +2021-07-14 21:00:00,478.45 +2021-07-14 22:00:00,458.82 +2021-07-14 23:00:00,459.02 +2021-07-15 00:00:00,453.18 +2021-07-15 01:00:00,447.36 +2021-07-15 02:00:00,452.09 +2021-07-15 03:00:00,456.23 +2021-07-15 04:00:00,462.74 +2021-07-15 05:00:00,457.51 +2021-07-15 06:00:00,429.84 +2021-07-15 07:00:00,408.94 +2021-07-15 08:00:00,391.0 +2021-07-15 09:00:00,364.79 +2021-07-15 10:00:00,365.72 +2021-07-15 11:00:00,366.08 +2021-07-15 12:00:00,368.45 +2021-07-15 13:00:00,360.9 +2021-07-15 14:00:00,373.32 +2021-07-15 15:00:00,396.37 +2021-07-15 16:00:00,411.57 +2021-07-15 17:00:00,439.06 +2021-07-15 18:00:00,455.2 +2021-07-15 19:00:00,466.14 +2021-07-15 20:00:00,478.19 +2021-07-15 21:00:00,486.1 +2021-07-15 22:00:00,459.45 +2021-07-15 23:00:00,446.25 +2021-07-16 00:00:00,440.15 +2021-07-16 01:00:00,436.77 +2021-07-16 02:00:00,445.97 +2021-07-16 03:00:00,456.52 +2021-07-16 04:00:00,462.99 +2021-07-16 05:00:00,451.08 +2021-07-16 06:00:00,433.66 +2021-07-16 07:00:00,415.9 +2021-07-16 08:00:00,403.78 +2021-07-16 09:00:00,385.73 +2021-07-16 10:00:00,370.92 +2021-07-16 11:00:00,357.44 +2021-07-16 12:00:00,348.87 +2021-07-16 13:00:00,347.34 +2021-07-16 14:00:00,356.0 +2021-07-16 15:00:00,371.54 +2021-07-16 16:00:00,398.06 +2021-07-16 17:00:00,421.98 +2021-07-16 18:00:00,439.72 +2021-07-16 19:00:00,452.03 +2021-07-16 20:00:00,460.27 +2021-07-16 21:00:00,451.49 +2021-07-16 22:00:00,410.94 +2021-07-16 23:00:00,392.89 +2021-07-17 00:00:00,356.53 +2021-07-17 01:00:00,341.05 +2021-07-17 02:00:00,330.47 +2021-07-17 03:00:00,327.01 +2021-07-17 04:00:00,322.66 +2021-07-17 05:00:00,318.98 +2021-07-17 06:00:00,317.17 +2021-07-17 07:00:00,303.81 +2021-07-17 08:00:00,279.4 +2021-07-17 09:00:00,261.99 +2021-07-17 10:00:00,247.85 +2021-07-17 11:00:00,221.07 +2021-07-17 12:00:00,202.31 +2021-07-17 13:00:00,193.79 +2021-07-17 14:00:00,204.03 +2021-07-17 15:00:00,229.13 +2021-07-17 16:00:00,265.15 +2021-07-17 17:00:00,300.51 +2021-07-17 18:00:00,327.55 +2021-07-17 19:00:00,329.46 +2021-07-17 20:00:00,322.2 +2021-07-17 21:00:00,309.23 +2021-07-17 22:00:00,295.26 +2021-07-17 23:00:00,287.63 +2021-07-18 00:00:00,273.63 +2021-07-18 01:00:00,263.55 +2021-07-18 02:00:00,262.55 +2021-07-18 03:00:00,264.28 +2021-07-18 04:00:00,267.5 +2021-07-18 05:00:00,267.82 +2021-07-18 06:00:00,237.53 +2021-07-18 07:00:00,216.0 +2021-07-18 08:00:00,195.96 +2021-07-18 09:00:00,185.79 +2021-07-18 10:00:00,178.71 +2021-07-18 11:00:00,176.56 +2021-07-18 12:00:00,179.76 +2021-07-18 13:00:00,179.41 +2021-07-18 14:00:00,182.41 +2021-07-18 15:00:00,189.26 +2021-07-18 16:00:00,231.49 +2021-07-18 17:00:00,288.69 +2021-07-18 18:00:00,330.18 +2021-07-18 19:00:00,345.22 +2021-07-18 20:00:00,354.2 +2021-07-18 21:00:00,355.97 +2021-07-18 22:00:00,349.82 +2021-07-18 23:00:00,352.3 +2021-07-19 00:00:00,353.04 +2021-07-19 01:00:00,362.74 +2021-07-19 02:00:00,379.25 +2021-07-19 03:00:00,395.0 +2021-07-19 04:00:00,415.71 +2021-07-19 05:00:00,423.51 +2021-07-19 06:00:00,411.24 +2021-07-19 07:00:00,384.28 +2021-07-19 08:00:00,367.96 +2021-07-19 09:00:00,360.1 +2021-07-19 10:00:00,351.05 +2021-07-19 11:00:00,340.88 +2021-07-19 12:00:00,334.99 +2021-07-19 13:00:00,342.62 +2021-07-19 14:00:00,368.76 +2021-07-19 15:00:00,395.38 +2021-07-19 16:00:00,418.83 +2021-07-19 17:00:00,451.64 +2021-07-19 18:00:00,479.5 +2021-07-19 19:00:00,492.06 +2021-07-19 20:00:00,495.26 +2021-07-19 21:00:00,504.74 +2021-07-19 22:00:00,499.9 +2021-07-19 23:00:00,495.59 +2021-07-20 00:00:00,482.35 +2021-07-20 01:00:00,491.67 +2021-07-20 02:00:00,498.93 +2021-07-20 03:00:00,513.68 +2021-07-20 04:00:00,505.54 +2021-07-20 05:00:00,482.56 +2021-07-20 06:00:00,447.15 +2021-07-20 07:00:00,408.03 +2021-07-20 08:00:00,378.38 +2021-07-20 09:00:00,365.16 +2021-07-20 10:00:00,358.31 +2021-07-20 11:00:00,344.92 +2021-07-20 12:00:00,333.34 +2021-07-20 13:00:00,339.54 +2021-07-20 14:00:00,355.7 +2021-07-20 15:00:00,381.31 +2021-07-20 16:00:00,424.31 +2021-07-20 17:00:00,466.67 +2021-07-20 18:00:00,483.5 +2021-07-20 19:00:00,502.97 +2021-07-20 20:00:00,510.15 +2021-07-20 21:00:00,517.42 +2021-07-20 22:00:00,504.94 +2021-07-20 23:00:00,504.04 +2021-07-21 00:00:00,497.28 +2021-07-21 01:00:00,497.8 +2021-07-21 02:00:00,496.24 +2021-07-21 03:00:00,515.79 +2021-07-21 04:00:00,505.51 +2021-07-21 05:00:00,479.71 +2021-07-21 06:00:00,459.88 +2021-07-21 07:00:00,431.59 +2021-07-21 08:00:00,401.04 +2021-07-21 09:00:00,384.21 +2021-07-21 10:00:00,371.58 +2021-07-21 11:00:00,359.1 +2021-07-21 12:00:00,355.88 +2021-07-21 13:00:00,366.28 +2021-07-21 14:00:00,391.03 +2021-07-21 15:00:00,431.95 +2021-07-21 16:00:00,473.34 +2021-07-21 17:00:00,502.4 +2021-07-21 18:00:00,520.73 +2021-07-21 19:00:00,534.22 +2021-07-21 20:00:00,544.16 +2021-07-21 21:00:00,557.03 +2021-07-21 22:00:00,555.19 +2021-07-21 23:00:00,550.26 +2021-07-22 00:00:00,543.21 +2021-07-22 01:00:00,540.1 +2021-07-22 02:00:00,541.66 +2021-07-22 03:00:00,554.3 +2021-07-22 04:00:00,533.83 +2021-07-22 05:00:00,495.11 +2021-07-22 06:00:00,479.05 +2021-07-22 07:00:00,452.65 +2021-07-22 08:00:00,406.72 +2021-07-22 09:00:00,379.09 +2021-07-22 10:00:00,368.59 +2021-07-22 11:00:00,367.37 +2021-07-22 12:00:00,367.75 +2021-07-22 13:00:00,383.85 +2021-07-22 14:00:00,409.22 +2021-07-22 15:00:00,439.56 +2021-07-22 16:00:00,476.57 +2021-07-22 17:00:00,502.01 +2021-07-22 18:00:00,516.48 +2021-07-22 19:00:00,532.95 +2021-07-22 20:00:00,540.05 +2021-07-22 21:00:00,543.71 +2021-07-22 22:00:00,534.96 +2021-07-22 23:00:00,531.98 +2021-07-23 00:00:00,520.81 +2021-07-23 01:00:00,521.37 +2021-07-23 02:00:00,525.81 +2021-07-23 03:00:00,533.86 +2021-07-23 04:00:00,519.06 +2021-07-23 05:00:00,498.62 +2021-07-23 06:00:00,472.14 +2021-07-23 07:00:00,437.08 +2021-07-23 08:00:00,400.23 +2021-07-23 09:00:00,374.75 +2021-07-23 10:00:00,365.6 +2021-07-23 11:00:00,357.57 +2021-07-23 12:00:00,354.56 +2021-07-23 13:00:00,363.74 +2021-07-23 14:00:00,387.13 +2021-07-23 15:00:00,420.94 +2021-07-23 16:00:00,473.46 +2021-07-23 17:00:00,507.72 +2021-07-23 18:00:00,526.44 +2021-07-23 19:00:00,528.53 +2021-07-23 20:00:00,527.32 +2021-07-23 21:00:00,518.54 +2021-07-23 22:00:00,471.47 +2021-07-23 23:00:00,453.09 +2021-07-24 00:00:00,437.52 +2021-07-24 01:00:00,425.0 +2021-07-24 02:00:00,412.73 +2021-07-24 03:00:00,405.76 +2021-07-24 04:00:00,390.51 +2021-07-24 05:00:00,373.92 +2021-07-24 06:00:00,360.86 +2021-07-24 07:00:00,341.82 +2021-07-24 08:00:00,315.26 +2021-07-24 09:00:00,288.64 +2021-07-24 10:00:00,281.49 +2021-07-24 11:00:00,288.23 +2021-07-24 12:00:00,292.73 +2021-07-24 13:00:00,304.78 +2021-07-24 14:00:00,327.83 +2021-07-24 15:00:00,349.28 +2021-07-24 16:00:00,372.81 +2021-07-24 17:00:00,388.02 +2021-07-24 18:00:00,395.48 +2021-07-24 19:00:00,395.76 +2021-07-24 20:00:00,393.14 +2021-07-24 21:00:00,388.39 +2021-07-24 22:00:00,387.53 +2021-07-24 23:00:00,383.02 +2021-07-25 00:00:00,380.73 +2021-07-25 01:00:00,364.05 +2021-07-25 02:00:00,355.94 +2021-07-25 03:00:00,353.43 +2021-07-25 04:00:00,344.25 +2021-07-25 05:00:00,327.37 +2021-07-25 06:00:00,318.21 +2021-07-25 07:00:00,290.02 +2021-07-25 08:00:00,261.85 +2021-07-25 09:00:00,238.4 +2021-07-25 10:00:00,228.37 +2021-07-25 11:00:00,225.79 +2021-07-25 12:00:00,231.38 +2021-07-25 13:00:00,251.34 +2021-07-25 14:00:00,296.15 +2021-07-25 15:00:00,361.25 +2021-07-25 16:00:00,417.49 +2021-07-25 17:00:00,451.5 +2021-07-25 18:00:00,479.31 +2021-07-25 19:00:00,490.49 +2021-07-25 20:00:00,495.91 +2021-07-25 21:00:00,514.92 +2021-07-25 22:00:00,506.77 +2021-07-25 23:00:00,494.37 +2021-07-26 00:00:00,489.62 +2021-07-26 01:00:00,491.91 +2021-07-26 02:00:00,498.95 +2021-07-26 03:00:00,514.01 +2021-07-26 04:00:00,515.04 +2021-07-26 05:00:00,495.63 +2021-07-26 06:00:00,479.64 +2021-07-26 07:00:00,451.68 +2021-07-26 08:00:00,425.87 +2021-07-26 09:00:00,401.97 +2021-07-26 10:00:00,389.23 +2021-07-26 11:00:00,381.23 +2021-07-26 12:00:00,384.5 +2021-07-26 13:00:00,391.71 +2021-07-26 14:00:00,420.91 +2021-07-26 15:00:00,447.96 +2021-07-26 16:00:00,476.26 +2021-07-26 17:00:00,505.47 +2021-07-26 18:00:00,530.04 +2021-07-26 19:00:00,540.33 +2021-07-26 20:00:00,549.75 +2021-07-26 21:00:00,555.75 +2021-07-26 22:00:00,535.86 +2021-07-26 23:00:00,519.08 +2021-07-27 00:00:00,503.36 +2021-07-27 01:00:00,490.5 +2021-07-27 02:00:00,491.02 +2021-07-27 03:00:00,509.66 +2021-07-27 04:00:00,504.37 +2021-07-27 05:00:00,484.81 +2021-07-27 06:00:00,461.55 +2021-07-27 07:00:00,429.69 +2021-07-27 08:00:00,398.7 +2021-07-27 09:00:00,376.13 +2021-07-27 10:00:00,367.1 +2021-07-27 11:00:00,363.34 +2021-07-27 12:00:00,364.88 +2021-07-27 13:00:00,366.33 +2021-07-27 14:00:00,381.5 +2021-07-27 15:00:00,408.14 +2021-07-27 16:00:00,448.24 +2021-07-27 17:00:00,490.99 +2021-07-27 18:00:00,514.37 +2021-07-27 19:00:00,513.81 +2021-07-27 20:00:00,531.04 +2021-07-27 21:00:00,519.16 +2021-07-27 22:00:00,485.83 +2021-07-27 23:00:00,471.17 +2021-07-28 00:00:00,451.88 +2021-07-28 01:00:00,452.73 +2021-07-28 02:00:00,453.29 +2021-07-28 03:00:00,446.82 +2021-07-28 04:00:00,440.32 +2021-07-28 05:00:00,427.09 +2021-07-28 06:00:00,401.89 +2021-07-28 07:00:00,366.72 +2021-07-28 08:00:00,344.19 +2021-07-28 09:00:00,322.58 +2021-07-28 10:00:00,301.92 +2021-07-28 11:00:00,278.16 +2021-07-28 12:00:00,267.46 +2021-07-28 13:00:00,260.3 +2021-07-28 14:00:00,258.71 +2021-07-28 15:00:00,277.68 +2021-07-28 16:00:00,306.0 +2021-07-28 17:00:00,341.57 +2021-07-28 18:00:00,366.91 +2021-07-28 19:00:00,372.09 +2021-07-28 20:00:00,356.08 +2021-07-28 21:00:00,318.55 +2021-07-28 22:00:00,267.85 +2021-07-28 23:00:00,225.86 +2021-07-29 00:00:00,213.48 +2021-07-29 01:00:00,209.22 +2021-07-29 02:00:00,210.51 +2021-07-29 03:00:00,216.83 +2021-07-29 04:00:00,228.88 +2021-07-29 05:00:00,233.29 +2021-07-29 06:00:00,209.9 +2021-07-29 07:00:00,167.78 +2021-07-29 08:00:00,156.24 +2021-07-29 09:00:00,152.53 +2021-07-29 10:00:00,150.29 +2021-07-29 11:00:00,148.41 +2021-07-29 12:00:00,146.88 +2021-07-29 13:00:00,146.85 +2021-07-29 14:00:00,151.64 +2021-07-29 15:00:00,173.18 +2021-07-29 16:00:00,213.11 +2021-07-29 17:00:00,254.1 +2021-07-29 18:00:00,302.39 +2021-07-29 19:00:00,310.09 +2021-07-29 20:00:00,306.42 +2021-07-29 21:00:00,309.23 +2021-07-29 22:00:00,316.11 +2021-07-29 23:00:00,311.25 +2021-07-30 00:00:00,305.34 +2021-07-30 01:00:00,307.67 +2021-07-30 02:00:00,299.82 +2021-07-30 03:00:00,305.98 +2021-07-30 04:00:00,308.68 +2021-07-30 05:00:00,298.97 +2021-07-30 06:00:00,284.55 +2021-07-30 07:00:00,258.35 +2021-07-30 08:00:00,219.74 +2021-07-30 09:00:00,188.0 +2021-07-30 10:00:00,179.07 +2021-07-30 11:00:00,178.21 +2021-07-30 12:00:00,185.63 +2021-07-30 13:00:00,194.43 +2021-07-30 14:00:00,216.06 +2021-07-30 15:00:00,270.22 +2021-07-30 16:00:00,312.8 +2021-07-30 17:00:00,356.91 +2021-07-30 18:00:00,378.09 +2021-07-30 19:00:00,377.57 +2021-07-30 20:00:00,370.63 +2021-07-30 21:00:00,360.72 +2021-07-30 22:00:00,323.25 +2021-07-30 23:00:00,267.6 +2021-07-31 00:00:00,223.68 +2021-07-31 01:00:00,208.64 +2021-07-31 02:00:00,197.79 +2021-07-31 03:00:00,194.51 +2021-07-31 04:00:00,193.71 +2021-07-31 05:00:00,181.17 +2021-07-31 06:00:00,161.97 +2021-07-31 07:00:00,146.35 +2021-07-31 08:00:00,142.86 +2021-07-31 09:00:00,141.02 +2021-07-31 10:00:00,141.91 +2021-07-31 11:00:00,143.78 +2021-07-31 12:00:00,145.67 +2021-07-31 13:00:00,148.36 +2021-07-31 14:00:00,150.75 +2021-07-31 15:00:00,159.76 +2021-07-31 16:00:00,185.66 +2021-07-31 17:00:00,221.19 +2021-07-31 18:00:00,263.59 +2021-07-31 19:00:00,292.71 +2021-07-31 20:00:00,285.83 +2021-07-31 21:00:00,266.6 +2021-07-31 22:00:00,271.48 +2021-07-31 23:00:00,279.06 +2021-08-01 00:00:00,290.47 +2021-08-01 01:00:00,288.36 +2021-08-01 02:00:00,299.22 +2021-08-01 03:00:00,306.65 +2021-08-01 04:00:00,313.16 +2021-08-01 05:00:00,325.73 +2021-08-01 06:00:00,307.65 +2021-08-01 07:00:00,285.55 +2021-08-01 08:00:00,257.13 +2021-08-01 09:00:00,238.55 +2021-08-01 10:00:00,225.0 +2021-08-01 11:00:00,208.25 +2021-08-01 12:00:00,202.57 +2021-08-01 13:00:00,207.13 +2021-08-01 14:00:00,218.54 +2021-08-01 15:00:00,247.77 +2021-08-01 16:00:00,294.63 +2021-08-01 17:00:00,329.49 +2021-08-01 18:00:00,359.6 +2021-08-01 19:00:00,372.94 +2021-08-01 20:00:00,378.91 +2021-08-01 21:00:00,373.43 +2021-08-01 22:00:00,341.75 +2021-08-01 23:00:00,324.65 +2021-08-02 00:00:00,301.82 +2021-08-02 01:00:00,298.79 +2021-08-02 02:00:00,311.58 +2021-08-02 03:00:00,335.34 +2021-08-02 04:00:00,365.76 +2021-08-02 05:00:00,366.49 +2021-08-02 06:00:00,355.42 +2021-08-02 07:00:00,327.55 +2021-08-02 08:00:00,298.53 +2021-08-02 09:00:00,277.14 +2021-08-02 10:00:00,266.04 +2021-08-02 11:00:00,266.88 +2021-08-02 12:00:00,274.45 +2021-08-02 13:00:00,276.98 +2021-08-02 14:00:00,297.15 +2021-08-02 15:00:00,351.1 +2021-08-02 16:00:00,402.02 +2021-08-02 17:00:00,451.32 +2021-08-02 18:00:00,476.57 +2021-08-02 19:00:00,488.58 +2021-08-02 20:00:00,499.33 +2021-08-02 21:00:00,493.9 +2021-08-02 22:00:00,484.16 +2021-08-02 23:00:00,493.58 +2021-08-03 00:00:00,490.22 +2021-08-03 01:00:00,490.64 +2021-08-03 02:00:00,495.27 +2021-08-03 03:00:00,508.31 +2021-08-03 04:00:00,504.96 +2021-08-03 05:00:00,495.3 +2021-08-03 06:00:00,473.49 +2021-08-03 07:00:00,449.26 +2021-08-03 08:00:00,429.07 +2021-08-03 09:00:00,419.85 +2021-08-03 10:00:00,410.72 +2021-08-03 11:00:00,405.35 +2021-08-03 12:00:00,400.96 +2021-08-03 13:00:00,404.6 +2021-08-03 14:00:00,436.14 +2021-08-03 15:00:00,469.37 +2021-08-03 16:00:00,495.77 +2021-08-03 17:00:00,512.51 +2021-08-03 18:00:00,530.35 +2021-08-03 19:00:00,544.38 +2021-08-03 20:00:00,545.5 +2021-08-03 21:00:00,549.94 +2021-08-03 22:00:00,543.58 +2021-08-03 23:00:00,537.88 +2021-08-04 00:00:00,522.99 +2021-08-04 01:00:00,513.68 +2021-08-04 02:00:00,527.78 +2021-08-04 03:00:00,537.46 +2021-08-04 04:00:00,537.29 +2021-08-04 05:00:00,527.5 +2021-08-04 06:00:00,494.93 +2021-08-04 07:00:00,467.18 +2021-08-04 08:00:00,442.47 +2021-08-04 09:00:00,427.77 +2021-08-04 10:00:00,424.32 +2021-08-04 11:00:00,419.65 +2021-08-04 12:00:00,421.98 +2021-08-04 13:00:00,429.0 +2021-08-04 14:00:00,452.13 +2021-08-04 15:00:00,480.26 +2021-08-04 16:00:00,501.15 +2021-08-04 17:00:00,530.44 +2021-08-04 18:00:00,543.17 +2021-08-04 19:00:00,547.08 +2021-08-04 20:00:00,540.55 +2021-08-04 21:00:00,543.59 +2021-08-04 22:00:00,540.99 +2021-08-04 23:00:00,537.78 +2021-08-05 00:00:00,524.32 +2021-08-05 01:00:00,507.04 +2021-08-05 02:00:00,511.4 +2021-08-05 03:00:00,522.72 +2021-08-05 04:00:00,532.13 +2021-08-05 05:00:00,517.15 +2021-08-05 06:00:00,492.82 +2021-08-05 07:00:00,457.91 +2021-08-05 08:00:00,426.2 +2021-08-05 09:00:00,400.61 +2021-08-05 10:00:00,392.23 +2021-08-05 11:00:00,377.88 +2021-08-05 12:00:00,368.06 +2021-08-05 13:00:00,368.35 +2021-08-05 14:00:00,381.67 +2021-08-05 15:00:00,417.28 +2021-08-05 16:00:00,445.62 +2021-08-05 17:00:00,470.2 +2021-08-05 18:00:00,486.3 +2021-08-05 19:00:00,474.64 +2021-08-05 20:00:00,474.55 +2021-08-05 21:00:00,421.86 +2021-08-05 22:00:00,358.33 +2021-08-05 23:00:00,348.95 +2021-08-06 00:00:00,349.26 +2021-08-06 01:00:00,358.32 +2021-08-06 02:00:00,369.02 +2021-08-06 03:00:00,372.57 +2021-08-06 04:00:00,380.75 +2021-08-06 05:00:00,368.29 +2021-08-06 06:00:00,355.58 +2021-08-06 07:00:00,334.71 +2021-08-06 08:00:00,310.49 +2021-08-06 09:00:00,265.03 +2021-08-06 10:00:00,231.55 +2021-08-06 11:00:00,216.75 +2021-08-06 12:00:00,210.86 +2021-08-06 13:00:00,225.26 +2021-08-06 14:00:00,244.34 +2021-08-06 15:00:00,268.29 +2021-08-06 16:00:00,317.07 +2021-08-06 17:00:00,350.6 +2021-08-06 18:00:00,381.5 +2021-08-06 19:00:00,386.95 +2021-08-06 20:00:00,383.36 +2021-08-06 21:00:00,377.01 +2021-08-06 22:00:00,345.5 +2021-08-06 23:00:00,332.76 +2021-08-07 00:00:00,326.14 +2021-08-07 01:00:00,330.89 +2021-08-07 02:00:00,339.46 +2021-08-07 03:00:00,346.9 +2021-08-07 04:00:00,331.74 +2021-08-07 05:00:00,312.96 +2021-08-07 06:00:00,298.73 +2021-08-07 07:00:00,277.44 +2021-08-07 08:00:00,254.1 +2021-08-07 09:00:00,239.87 +2021-08-07 10:00:00,235.43 +2021-08-07 11:00:00,237.85 +2021-08-07 12:00:00,245.43 +2021-08-07 13:00:00,261.52 +2021-08-07 14:00:00,286.45 +2021-08-07 15:00:00,308.19 +2021-08-07 16:00:00,327.87 +2021-08-07 17:00:00,335.15 +2021-08-07 18:00:00,330.43 +2021-08-07 19:00:00,328.84 +2021-08-07 20:00:00,318.8 +2021-08-07 21:00:00,281.14 +2021-08-07 22:00:00,244.03 +2021-08-07 23:00:00,226.35 +2021-08-08 00:00:00,220.27 +2021-08-08 01:00:00,221.82 +2021-08-08 02:00:00,215.05 +2021-08-08 03:00:00,210.17 +2021-08-08 04:00:00,203.11 +2021-08-08 05:00:00,200.12 +2021-08-08 06:00:00,179.73 +2021-08-08 07:00:00,164.43 +2021-08-08 08:00:00,152.98 +2021-08-08 09:00:00,150.25 +2021-08-08 10:00:00,151.94 +2021-08-08 11:00:00,155.39 +2021-08-08 12:00:00,159.72 +2021-08-08 13:00:00,164.43 +2021-08-08 14:00:00,166.06 +2021-08-08 15:00:00,169.69 +2021-08-08 16:00:00,196.58 +2021-08-08 17:00:00,237.07 +2021-08-08 18:00:00,259.91 +2021-08-08 19:00:00,254.36 +2021-08-08 20:00:00,254.03 +2021-08-08 21:00:00,242.68 +2021-08-08 22:00:00,220.36 +2021-08-08 23:00:00,220.25 +2021-08-09 00:00:00,221.03 +2021-08-09 01:00:00,225.37 +2021-08-09 02:00:00,237.91 +2021-08-09 03:00:00,260.38 +2021-08-09 04:00:00,307.79 +2021-08-09 05:00:00,318.08 +2021-08-09 06:00:00,306.09 +2021-08-09 07:00:00,288.55 +2021-08-09 08:00:00,266.35 +2021-08-09 09:00:00,239.63 +2021-08-09 10:00:00,215.46 +2021-08-09 11:00:00,209.0 +2021-08-09 12:00:00,215.9 +2021-08-09 13:00:00,236.66 +2021-08-09 14:00:00,278.37 +2021-08-09 15:00:00,318.92 +2021-08-09 16:00:00,354.42 +2021-08-09 17:00:00,399.65 +2021-08-09 18:00:00,419.17 +2021-08-09 19:00:00,423.73 +2021-08-09 20:00:00,435.65 +2021-08-09 21:00:00,426.54 +2021-08-09 22:00:00,418.6 +2021-08-09 23:00:00,410.76 +2021-08-10 00:00:00,410.75 +2021-08-10 01:00:00,404.68 +2021-08-10 02:00:00,413.97 +2021-08-10 03:00:00,418.69 +2021-08-10 04:00:00,423.94 +2021-08-10 05:00:00,415.13 +2021-08-10 06:00:00,403.73 +2021-08-10 07:00:00,380.91 +2021-08-10 08:00:00,358.1 +2021-08-10 09:00:00,336.35 +2021-08-10 10:00:00,319.37 +2021-08-10 11:00:00,307.98 +2021-08-10 12:00:00,302.87 +2021-08-10 13:00:00,315.35 +2021-08-10 14:00:00,340.29 +2021-08-10 15:00:00,383.03 +2021-08-10 16:00:00,429.68 +2021-08-10 17:00:00,480.89 +2021-08-10 18:00:00,502.13 +2021-08-10 19:00:00,510.07 +2021-08-10 20:00:00,530.55 +2021-08-10 21:00:00,549.13 +2021-08-10 22:00:00,548.25 +2021-08-10 23:00:00,546.32 +2021-08-11 00:00:00,525.01 +2021-08-11 01:00:00,513.89 +2021-08-11 02:00:00,517.9 +2021-08-11 03:00:00,518.89 +2021-08-11 04:00:00,495.98 +2021-08-11 05:00:00,478.9 +2021-08-11 06:00:00,439.85 +2021-08-11 07:00:00,412.32 +2021-08-11 08:00:00,371.12 +2021-08-11 09:00:00,349.4 +2021-08-11 10:00:00,343.49 +2021-08-11 11:00:00,334.52 +2021-08-11 12:00:00,328.99 +2021-08-11 13:00:00,344.77 +2021-08-11 14:00:00,363.1 +2021-08-11 15:00:00,408.16 +2021-08-11 16:00:00,463.46 +2021-08-11 17:00:00,495.81 +2021-08-11 18:00:00,515.88 +2021-08-11 19:00:00,532.43 +2021-08-11 20:00:00,547.31 +2021-08-11 21:00:00,559.91 +2021-08-11 22:00:00,555.09 +2021-08-11 23:00:00,550.9 +2021-08-12 00:00:00,538.27 +2021-08-12 01:00:00,528.46 +2021-08-12 02:00:00,516.24 +2021-08-12 03:00:00,523.12 +2021-08-12 04:00:00,492.44 +2021-08-12 05:00:00,462.96 +2021-08-12 06:00:00,432.61 +2021-08-12 07:00:00,408.3 +2021-08-12 08:00:00,373.77 +2021-08-12 09:00:00,347.64 +2021-08-12 10:00:00,342.72 +2021-08-12 11:00:00,339.56 +2021-08-12 12:00:00,347.63 +2021-08-12 13:00:00,361.93 +2021-08-12 14:00:00,391.36 +2021-08-12 15:00:00,426.67 +2021-08-12 16:00:00,465.99 +2021-08-12 17:00:00,502.61 +2021-08-12 18:00:00,524.35 +2021-08-12 19:00:00,527.62 +2021-08-12 20:00:00,531.57 +2021-08-12 21:00:00,543.46 +2021-08-12 22:00:00,529.67 +2021-08-12 23:00:00,523.27 +2021-08-13 00:00:00,521.05 +2021-08-13 01:00:00,515.32 +2021-08-13 02:00:00,505.02 +2021-08-13 03:00:00,523.92 +2021-08-13 04:00:00,498.05 +2021-08-13 05:00:00,467.55 +2021-08-13 06:00:00,442.26 +2021-08-13 07:00:00,420.96 +2021-08-13 08:00:00,378.47 +2021-08-13 09:00:00,341.15 +2021-08-13 10:00:00,311.96 +2021-08-13 11:00:00,286.77 +2021-08-13 12:00:00,282.27 +2021-08-13 13:00:00,286.09 +2021-08-13 14:00:00,304.58 +2021-08-13 15:00:00,348.82 +2021-08-13 16:00:00,405.53 +2021-08-13 17:00:00,442.87 +2021-08-13 18:00:00,461.41 +2021-08-13 19:00:00,466.73 +2021-08-13 20:00:00,459.24 +2021-08-13 21:00:00,431.26 +2021-08-13 22:00:00,416.56 +2021-08-13 23:00:00,397.61 +2021-08-14 00:00:00,394.89 +2021-08-14 01:00:00,390.29 +2021-08-14 02:00:00,384.82 +2021-08-14 03:00:00,392.07 +2021-08-14 04:00:00,383.21 +2021-08-14 05:00:00,359.66 +2021-08-14 06:00:00,325.6 +2021-08-14 07:00:00,284.48 +2021-08-14 08:00:00,238.09 +2021-08-14 09:00:00,197.16 +2021-08-14 10:00:00,175.96 +2021-08-14 11:00:00,167.65 +2021-08-14 12:00:00,166.19 +2021-08-14 13:00:00,173.56 +2021-08-14 14:00:00,192.52 +2021-08-14 15:00:00,249.07 +2021-08-14 16:00:00,314.53 +2021-08-14 17:00:00,362.65 +2021-08-14 18:00:00,385.69 +2021-08-14 19:00:00,381.0 +2021-08-14 20:00:00,384.37 +2021-08-14 21:00:00,402.63 +2021-08-14 22:00:00,410.59 +2021-08-14 23:00:00,413.84 +2021-08-15 00:00:00,411.89 +2021-08-15 01:00:00,395.09 +2021-08-15 02:00:00,379.05 +2021-08-15 03:00:00,372.72 +2021-08-15 04:00:00,371.01 +2021-08-15 05:00:00,349.48 +2021-08-15 06:00:00,320.6 +2021-08-15 07:00:00,294.99 +2021-08-15 08:00:00,266.95 +2021-08-15 09:00:00,239.25 +2021-08-15 10:00:00,224.41 +2021-08-15 11:00:00,205.76 +2021-08-15 12:00:00,207.26 +2021-08-15 13:00:00,220.38 +2021-08-15 14:00:00,252.14 +2021-08-15 15:00:00,297.38 +2021-08-15 16:00:00,344.9 +2021-08-15 17:00:00,383.43 +2021-08-15 18:00:00,396.13 +2021-08-15 19:00:00,395.74 +2021-08-15 20:00:00,398.52 +2021-08-15 21:00:00,403.13 +2021-08-15 22:00:00,391.06 +2021-08-15 23:00:00,382.95 +2021-08-16 00:00:00,375.75 +2021-08-16 01:00:00,365.5 +2021-08-16 02:00:00,360.8 +2021-08-16 03:00:00,351.9 +2021-08-16 04:00:00,349.38 +2021-08-16 05:00:00,338.21 +2021-08-16 06:00:00,310.18 +2021-08-16 07:00:00,272.76 +2021-08-16 08:00:00,248.69 +2021-08-16 09:00:00,217.68 +2021-08-16 10:00:00,199.96 +2021-08-16 11:00:00,191.5 +2021-08-16 12:00:00,192.3 +2021-08-16 13:00:00,203.98 +2021-08-16 14:00:00,222.9 +2021-08-16 15:00:00,243.81 +2021-08-16 16:00:00,267.98 +2021-08-16 17:00:00,282.44 +2021-08-16 18:00:00,291.47 +2021-08-16 19:00:00,286.04 +2021-08-16 20:00:00,277.54 +2021-08-16 21:00:00,239.32 +2021-08-16 22:00:00,216.28 +2021-08-16 23:00:00,205.2 +2021-08-17 00:00:00,204.11 +2021-08-17 01:00:00,201.34 +2021-08-17 02:00:00,202.89 +2021-08-17 03:00:00,205.83 +2021-08-17 04:00:00,222.55 +2021-08-17 05:00:00,247.77 +2021-08-17 06:00:00,241.1 +2021-08-17 07:00:00,228.54 +2021-08-17 08:00:00,215.99 +2021-08-17 09:00:00,201.86 +2021-08-17 10:00:00,193.92 +2021-08-17 11:00:00,190.21 +2021-08-17 12:00:00,195.29 +2021-08-17 13:00:00,210.96 +2021-08-17 14:00:00,244.81 +2021-08-17 15:00:00,284.41 +2021-08-17 16:00:00,305.71 +2021-08-17 17:00:00,326.9 +2021-08-17 18:00:00,336.04 +2021-08-17 19:00:00,337.43 +2021-08-17 20:00:00,343.56 +2021-08-17 21:00:00,331.31 +2021-08-17 22:00:00,309.75 +2021-08-17 23:00:00,294.68 +2021-08-18 00:00:00,284.98 +2021-08-18 01:00:00,285.2 +2021-08-18 02:00:00,279.35 +2021-08-18 03:00:00,297.47 +2021-08-18 04:00:00,323.72 +2021-08-18 05:00:00,331.9 +2021-08-18 06:00:00,327.92 +2021-08-18 07:00:00,318.45 +2021-08-18 08:00:00,304.63 +2021-08-18 09:00:00,293.94 +2021-08-18 10:00:00,283.23 +2021-08-18 11:00:00,276.76 +2021-08-18 12:00:00,273.95 +2021-08-18 13:00:00,275.36 +2021-08-18 14:00:00,285.79 +2021-08-18 15:00:00,304.12 +2021-08-18 16:00:00,335.8 +2021-08-18 17:00:00,357.88 +2021-08-18 18:00:00,355.01 +2021-08-18 19:00:00,351.83 +2021-08-18 20:00:00,335.76 +2021-08-18 21:00:00,323.71 +2021-08-18 22:00:00,312.84 +2021-08-18 23:00:00,309.01 +2021-08-19 00:00:00,308.99 +2021-08-19 01:00:00,308.61 +2021-08-19 02:00:00,324.81 +2021-08-19 03:00:00,360.74 +2021-08-19 04:00:00,393.39 +2021-08-19 05:00:00,411.81 +2021-08-19 06:00:00,420.97 +2021-08-19 07:00:00,421.86 +2021-08-19 08:00:00,406.13 +2021-08-19 09:00:00,395.75 +2021-08-19 10:00:00,394.58 +2021-08-19 11:00:00,389.6 +2021-08-19 12:00:00,392.39 +2021-08-19 13:00:00,408.58 +2021-08-19 14:00:00,414.33 +2021-08-19 15:00:00,447.45 +2021-08-19 16:00:00,489.14 +2021-08-19 17:00:00,515.55 +2021-08-19 18:00:00,537.31 +2021-08-19 19:00:00,556.85 +2021-08-19 20:00:00,558.34 +2021-08-19 21:00:00,565.56 +2021-08-19 22:00:00,553.3 +2021-08-19 23:00:00,539.05 +2021-08-20 00:00:00,530.25 +2021-08-20 01:00:00,526.14 +2021-08-20 02:00:00,529.85 +2021-08-20 03:00:00,545.95 +2021-08-20 04:00:00,550.19 +2021-08-20 05:00:00,538.61 +2021-08-20 06:00:00,518.53 +2021-08-20 07:00:00,491.47 +2021-08-20 08:00:00,459.35 +2021-08-20 09:00:00,438.2 +2021-08-20 10:00:00,418.6 +2021-08-20 11:00:00,396.16 +2021-08-20 12:00:00,397.23 +2021-08-20 13:00:00,413.33 +2021-08-20 14:00:00,435.75 +2021-08-20 15:00:00,475.74 +2021-08-20 16:00:00,524.79 +2021-08-20 17:00:00,565.12 +2021-08-20 18:00:00,583.18 +2021-08-20 19:00:00,591.85 +2021-08-20 20:00:00,601.66 +2021-08-20 21:00:00,601.95 +2021-08-20 22:00:00,583.86 +2021-08-20 23:00:00,567.42 +2021-08-21 00:00:00,558.2 +2021-08-21 01:00:00,550.97 +2021-08-21 02:00:00,547.61 +2021-08-21 03:00:00,555.23 +2021-08-21 04:00:00,548.19 +2021-08-21 05:00:00,510.68 +2021-08-21 06:00:00,462.25 +2021-08-21 07:00:00,412.44 +2021-08-21 08:00:00,369.16 +2021-08-21 09:00:00,344.05 +2021-08-21 10:00:00,332.56 +2021-08-21 11:00:00,334.79 +2021-08-21 12:00:00,343.22 +2021-08-21 13:00:00,357.51 +2021-08-21 14:00:00,384.13 +2021-08-21 15:00:00,426.78 +2021-08-21 16:00:00,473.69 +2021-08-21 17:00:00,514.59 +2021-08-21 18:00:00,529.88 +2021-08-21 19:00:00,526.82 +2021-08-21 20:00:00,524.96 +2021-08-21 21:00:00,514.23 +2021-08-21 22:00:00,471.62 +2021-08-21 23:00:00,448.37 +2021-08-22 00:00:00,425.52 +2021-08-22 01:00:00,410.89 +2021-08-22 02:00:00,407.77 +2021-08-22 03:00:00,409.75 +2021-08-22 04:00:00,402.99 +2021-08-22 05:00:00,389.86 +2021-08-22 06:00:00,371.79 +2021-08-22 07:00:00,358.72 +2021-08-22 08:00:00,343.74 +2021-08-22 09:00:00,323.35 +2021-08-22 10:00:00,319.23 +2021-08-22 11:00:00,323.24 +2021-08-22 12:00:00,316.56 +2021-08-22 13:00:00,322.04 +2021-08-22 14:00:00,335.76 +2021-08-22 15:00:00,358.17 +2021-08-22 16:00:00,384.51 +2021-08-22 17:00:00,414.49 +2021-08-22 18:00:00,428.38 +2021-08-22 19:00:00,445.6 +2021-08-22 20:00:00,450.86 +2021-08-22 21:00:00,443.74 +2021-08-22 22:00:00,429.73 +2021-08-22 23:00:00,434.08 +2021-08-23 00:00:00,436.57 +2021-08-23 01:00:00,429.26 +2021-08-23 02:00:00,431.86 +2021-08-23 03:00:00,447.52 +2021-08-23 04:00:00,454.31 +2021-08-23 05:00:00,451.59 +2021-08-23 06:00:00,447.46 +2021-08-23 07:00:00,434.95 +2021-08-23 08:00:00,416.09 +2021-08-23 09:00:00,400.63 +2021-08-23 10:00:00,389.64 +2021-08-23 11:00:00,378.17 +2021-08-23 12:00:00,372.44 +2021-08-23 13:00:00,380.6 +2021-08-23 14:00:00,397.12 +2021-08-23 15:00:00,417.21 +2021-08-23 16:00:00,441.2 +2021-08-23 17:00:00,461.13 +2021-08-23 18:00:00,476.07 +2021-08-23 19:00:00,475.38 +2021-08-23 20:00:00,477.6 +2021-08-23 21:00:00,467.05 +2021-08-23 22:00:00,445.97 +2021-08-23 23:00:00,434.77 +2021-08-24 00:00:00,443.0 +2021-08-24 01:00:00,449.56 +2021-08-24 02:00:00,456.44 +2021-08-24 03:00:00,475.54 +2021-08-24 04:00:00,494.67 +2021-08-24 05:00:00,496.73 +2021-08-24 06:00:00,484.57 +2021-08-24 07:00:00,460.83 +2021-08-24 08:00:00,427.84 +2021-08-24 09:00:00,396.99 +2021-08-24 10:00:00,379.8 +2021-08-24 11:00:00,370.36 +2021-08-24 12:00:00,373.01 +2021-08-24 13:00:00,385.46 +2021-08-24 14:00:00,407.82 +2021-08-24 15:00:00,448.23 +2021-08-24 16:00:00,486.02 +2021-08-24 17:00:00,529.57 +2021-08-24 18:00:00,539.83 +2021-08-24 19:00:00,525.19 +2021-08-24 20:00:00,525.39 +2021-08-24 21:00:00,508.97 +2021-08-24 22:00:00,484.41 +2021-08-24 23:00:00,479.21 +2021-08-25 00:00:00,481.47 +2021-08-25 01:00:00,485.54 +2021-08-25 02:00:00,493.53 +2021-08-25 03:00:00,495.45 +2021-08-25 04:00:00,481.43 +2021-08-25 05:00:00,462.57 +2021-08-25 06:00:00,432.68 +2021-08-25 07:00:00,393.58 +2021-08-25 08:00:00,350.3 +2021-08-25 09:00:00,305.0 +2021-08-25 10:00:00,270.1 +2021-08-25 11:00:00,253.16 +2021-08-25 12:00:00,241.94 +2021-08-25 13:00:00,242.18 +2021-08-25 14:00:00,256.97 +2021-08-25 15:00:00,286.22 +2021-08-25 16:00:00,334.86 +2021-08-25 17:00:00,358.43 +2021-08-25 18:00:00,364.81 +2021-08-25 19:00:00,368.81 +2021-08-25 20:00:00,362.68 +2021-08-25 21:00:00,350.86 +2021-08-25 22:00:00,341.49 +2021-08-25 23:00:00,341.36 +2021-08-26 00:00:00,350.97 +2021-08-26 01:00:00,361.17 +2021-08-26 02:00:00,379.0 +2021-08-26 03:00:00,398.79 +2021-08-26 04:00:00,436.78 +2021-08-26 05:00:00,444.72 +2021-08-26 06:00:00,434.58 +2021-08-26 07:00:00,420.88 +2021-08-26 08:00:00,388.61 +2021-08-26 09:00:00,367.49 +2021-08-26 10:00:00,352.35 +2021-08-26 11:00:00,329.96 +2021-08-26 12:00:00,319.69 +2021-08-26 13:00:00,313.08 +2021-08-26 14:00:00,328.16 +2021-08-26 15:00:00,356.08 +2021-08-26 16:00:00,393.86 +2021-08-26 17:00:00,424.47 +2021-08-26 18:00:00,437.63 +2021-08-26 19:00:00,434.68 +2021-08-26 20:00:00,435.26 +2021-08-26 21:00:00,430.48 +2021-08-26 22:00:00,414.16 +2021-08-26 23:00:00,406.84 +2021-08-27 00:00:00,398.62 +2021-08-27 01:00:00,399.1 +2021-08-27 02:00:00,392.95 +2021-08-27 03:00:00,400.31 +2021-08-27 04:00:00,430.56 +2021-08-27 05:00:00,426.69 +2021-08-27 06:00:00,417.17 +2021-08-27 07:00:00,398.77 +2021-08-27 08:00:00,382.0 +2021-08-27 09:00:00,364.92 +2021-08-27 10:00:00,352.21 +2021-08-27 11:00:00,342.56 +2021-08-27 12:00:00,333.04 +2021-08-27 13:00:00,333.73 +2021-08-27 14:00:00,341.39 +2021-08-27 15:00:00,362.71 +2021-08-27 16:00:00,396.13 +2021-08-27 17:00:00,430.39 +2021-08-27 18:00:00,435.7 +2021-08-27 19:00:00,442.11 +2021-08-27 20:00:00,441.83 +2021-08-27 21:00:00,434.78 +2021-08-27 22:00:00,415.42 +2021-08-27 23:00:00,404.35 +2021-08-28 00:00:00,391.95 +2021-08-28 01:00:00,386.38 +2021-08-28 02:00:00,386.66 +2021-08-28 03:00:00,381.13 +2021-08-28 04:00:00,377.16 +2021-08-28 05:00:00,376.13 +2021-08-28 06:00:00,353.58 +2021-08-28 07:00:00,339.97 +2021-08-28 08:00:00,319.58 +2021-08-28 09:00:00,308.87 +2021-08-28 10:00:00,303.56 +2021-08-28 11:00:00,298.22 +2021-08-28 12:00:00,296.06 +2021-08-28 13:00:00,309.06 +2021-08-28 14:00:00,324.78 +2021-08-28 15:00:00,347.15 +2021-08-28 16:00:00,373.36 +2021-08-28 17:00:00,396.81 +2021-08-28 18:00:00,410.88 +2021-08-28 19:00:00,417.68 +2021-08-28 20:00:00,420.12 +2021-08-28 21:00:00,424.85 +2021-08-28 22:00:00,407.84 +2021-08-28 23:00:00,401.21 +2021-08-29 00:00:00,396.44 +2021-08-29 01:00:00,391.87 +2021-08-29 02:00:00,391.48 +2021-08-29 03:00:00,388.21 +2021-08-29 04:00:00,386.94 +2021-08-29 05:00:00,387.88 +2021-08-29 06:00:00,387.78 +2021-08-29 07:00:00,375.43 +2021-08-29 08:00:00,365.58 +2021-08-29 09:00:00,356.15 +2021-08-29 10:00:00,346.54 +2021-08-29 11:00:00,334.02 +2021-08-29 12:00:00,339.67 +2021-08-29 13:00:00,357.57 +2021-08-29 14:00:00,368.22 +2021-08-29 15:00:00,388.56 +2021-08-29 16:00:00,415.11 +2021-08-29 17:00:00,430.37 +2021-08-29 18:00:00,435.99 +2021-08-29 19:00:00,447.41 +2021-08-29 20:00:00,450.32 +2021-08-29 21:00:00,456.29 +2021-08-29 22:00:00,439.18 +2021-08-29 23:00:00,438.09 +2021-08-30 00:00:00,436.34 +2021-08-30 01:00:00,432.61 +2021-08-30 02:00:00,429.66 +2021-08-30 03:00:00,443.97 +2021-08-30 04:00:00,454.73 +2021-08-30 05:00:00,460.42 +2021-08-30 06:00:00,456.17 +2021-08-30 07:00:00,443.16 +2021-08-30 08:00:00,427.66 +2021-08-30 09:00:00,413.43 +2021-08-30 10:00:00,410.61 +2021-08-30 11:00:00,412.21 +2021-08-30 12:00:00,415.9 +2021-08-30 13:00:00,421.49 +2021-08-30 14:00:00,433.79 +2021-08-30 15:00:00,449.72 +2021-08-30 16:00:00,468.46 +2021-08-30 17:00:00,490.18 +2021-08-30 18:00:00,500.09 +2021-08-30 19:00:00,503.83 +2021-08-30 20:00:00,504.21 +2021-08-30 21:00:00,496.75 +2021-08-30 22:00:00,487.08 +2021-08-30 23:00:00,477.74 +2021-08-31 00:00:00,470.6 +2021-08-31 01:00:00,474.0 +2021-08-31 02:00:00,477.01 +2021-08-31 03:00:00,491.19 +2021-08-31 04:00:00,501.09 +2021-08-31 05:00:00,504.53 +2021-08-31 06:00:00,494.66 +2021-08-31 07:00:00,481.41 +2021-08-31 08:00:00,457.71 +2021-08-31 09:00:00,437.1 +2021-08-31 10:00:00,426.63 +2021-08-31 11:00:00,417.79 +2021-08-31 12:00:00,408.48 +2021-08-31 13:00:00,404.66 +2021-08-31 14:00:00,413.31 +2021-08-31 15:00:00,434.92 +2021-08-31 16:00:00,473.67 +2021-08-31 17:00:00,506.42 +2021-08-31 18:00:00,516.22 +2021-08-31 19:00:00,525.27 +2021-08-31 20:00:00,531.54 +2021-08-31 21:00:00,535.36 +2021-08-31 22:00:00,528.42 +2021-08-31 23:00:00,527.49 +2021-09-01 00:00:00,531.4 +2021-09-01 01:00:00,530.09 +2021-09-01 02:00:00,529.13 +2021-09-01 03:00:00,546.86 +2021-09-01 04:00:00,560.47 +2021-09-01 05:00:00,542.59 +2021-09-01 06:00:00,520.07 +2021-09-01 07:00:00,495.03 +2021-09-01 08:00:00,469.16 +2021-09-01 09:00:00,446.32 +2021-09-01 10:00:00,424.07 +2021-09-01 11:00:00,406.93 +2021-09-01 12:00:00,409.01 +2021-09-01 13:00:00,417.7 +2021-09-01 14:00:00,440.44 +2021-09-01 15:00:00,482.39 +2021-09-01 16:00:00,526.36 +2021-09-01 17:00:00,554.29 +2021-09-01 18:00:00,553.99 +2021-09-01 19:00:00,550.0 +2021-09-01 20:00:00,548.95 +2021-09-01 21:00:00,536.05 +2021-09-01 22:00:00,539.43 +2021-09-01 23:00:00,540.53 +2021-09-02 00:00:00,552.61 +2021-09-02 01:00:00,556.98 +2021-09-02 02:00:00,562.59 +2021-09-02 03:00:00,575.08 +2021-09-02 04:00:00,575.29 +2021-09-02 05:00:00,557.39 +2021-09-02 06:00:00,529.11 +2021-09-02 07:00:00,499.77 +2021-09-02 08:00:00,461.58 +2021-09-02 09:00:00,428.33 +2021-09-02 10:00:00,409.97 +2021-09-02 11:00:00,395.57 +2021-09-02 12:00:00,399.19 +2021-09-02 13:00:00,410.59 +2021-09-02 14:00:00,442.57 +2021-09-02 15:00:00,495.43 +2021-09-02 16:00:00,550.46 +2021-09-02 17:00:00,575.25 +2021-09-02 18:00:00,569.13 +2021-09-02 19:00:00,565.92 +2021-09-02 20:00:00,563.7 +2021-09-02 21:00:00,559.92 +2021-09-02 22:00:00,546.86 +2021-09-02 23:00:00,550.65 +2021-09-03 00:00:00,549.9 +2021-09-03 01:00:00,547.03 +2021-09-03 02:00:00,539.25 +2021-09-03 03:00:00,538.85 +2021-09-03 04:00:00,539.46 +2021-09-03 05:00:00,522.15 +2021-09-03 06:00:00,492.32 +2021-09-03 07:00:00,448.44 +2021-09-03 08:00:00,401.39 +2021-09-03 09:00:00,371.39 +2021-09-03 10:00:00,354.39 +2021-09-03 11:00:00,349.84 +2021-09-03 12:00:00,350.23 +2021-09-03 13:00:00,363.26 +2021-09-03 14:00:00,399.48 +2021-09-03 15:00:00,469.45 +2021-09-03 16:00:00,534.06 +2021-09-03 17:00:00,560.27 +2021-09-03 18:00:00,562.97 +2021-09-03 19:00:00,576.09 +2021-09-03 20:00:00,588.25 +2021-09-03 21:00:00,600.39 +2021-09-03 22:00:00,593.81 +2021-09-03 23:00:00,580.57 +2021-09-04 00:00:00,572.82 +2021-09-04 01:00:00,581.42 +2021-09-04 02:00:00,579.65 +2021-09-04 03:00:00,584.86 +2021-09-04 04:00:00,580.89 +2021-09-04 05:00:00,555.04 +2021-09-04 06:00:00,512.71 +2021-09-04 07:00:00,468.34 +2021-09-04 08:00:00,429.25 +2021-09-04 09:00:00,405.42 +2021-09-04 10:00:00,384.8 +2021-09-04 11:00:00,370.27 +2021-09-04 12:00:00,369.98 +2021-09-04 13:00:00,371.58 +2021-09-04 14:00:00,399.31 +2021-09-04 15:00:00,463.5 +2021-09-04 16:00:00,525.13 +2021-09-04 17:00:00,558.38 +2021-09-04 18:00:00,556.73 +2021-09-04 19:00:00,545.67 +2021-09-04 20:00:00,547.8 +2021-09-04 21:00:00,522.48 +2021-09-04 22:00:00,495.99 +2021-09-04 23:00:00,472.18 +2021-09-05 00:00:00,468.35 +2021-09-05 01:00:00,469.3 +2021-09-05 02:00:00,469.01 +2021-09-05 03:00:00,476.11 +2021-09-05 04:00:00,489.0 +2021-09-05 05:00:00,474.31 +2021-09-05 06:00:00,430.62 +2021-09-05 07:00:00,383.64 +2021-09-05 08:00:00,342.14 +2021-09-05 09:00:00,317.29 +2021-09-05 10:00:00,301.89 +2021-09-05 11:00:00,272.74 +2021-09-05 12:00:00,261.28 +2021-09-05 13:00:00,287.95 +2021-09-05 14:00:00,365.36 +2021-09-05 15:00:00,453.27 +2021-09-05 16:00:00,544.03 +2021-09-05 17:00:00,585.75 +2021-09-05 18:00:00,578.79 +2021-09-05 19:00:00,585.2 +2021-09-05 20:00:00,587.17 +2021-09-05 21:00:00,589.15 +2021-09-05 22:00:00,602.61 +2021-09-05 23:00:00,607.87 +2021-09-06 00:00:00,613.14 +2021-09-06 01:00:00,621.69 +2021-09-06 02:00:00,625.17 +2021-09-06 03:00:00,632.22 +2021-09-06 04:00:00,612.33 +2021-09-06 05:00:00,585.04 +2021-09-06 06:00:00,538.59 +2021-09-06 07:00:00,500.05 +2021-09-06 08:00:00,460.03 +2021-09-06 09:00:00,425.9 +2021-09-06 10:00:00,407.72 +2021-09-06 11:00:00,409.66 +2021-09-06 12:00:00,426.45 +2021-09-06 13:00:00,458.86 +2021-09-06 14:00:00,494.88 +2021-09-06 15:00:00,542.61 +2021-09-06 16:00:00,579.87 +2021-09-06 17:00:00,612.48 +2021-09-06 18:00:00,620.65 +2021-09-06 19:00:00,628.73 +2021-09-06 20:00:00,646.23 +2021-09-06 21:00:00,658.35 +2021-09-06 22:00:00,650.08 +2021-09-06 23:00:00,642.37 +2021-09-07 00:00:00,643.82 +2021-09-07 01:00:00,640.36 +2021-09-07 02:00:00,634.82 +2021-09-07 03:00:00,636.02 +2021-09-07 04:00:00,621.99 +2021-09-07 05:00:00,595.93 +2021-09-07 06:00:00,564.89 +2021-09-07 07:00:00,533.15 +2021-09-07 08:00:00,488.63 +2021-09-07 09:00:00,454.96 +2021-09-07 10:00:00,441.37 +2021-09-07 11:00:00,440.67 +2021-09-07 12:00:00,448.68 +2021-09-07 13:00:00,463.55 +2021-09-07 14:00:00,495.58 +2021-09-07 15:00:00,541.24 +2021-09-07 16:00:00,585.37 +2021-09-07 17:00:00,606.62 +2021-09-07 18:00:00,603.66 +2021-09-07 19:00:00,617.53 +2021-09-07 20:00:00,616.88 +2021-09-07 21:00:00,610.47 +2021-09-07 22:00:00,591.61 +2021-09-07 23:00:00,586.05 +2021-09-08 00:00:00,586.19 +2021-09-08 01:00:00,585.36 +2021-09-08 02:00:00,586.77 +2021-09-08 03:00:00,601.74 +2021-09-08 04:00:00,606.54 +2021-09-08 05:00:00,581.52 +2021-09-08 06:00:00,539.6 +2021-09-08 07:00:00,500.22 +2021-09-08 08:00:00,465.54 +2021-09-08 09:00:00,427.56 +2021-09-08 10:00:00,401.11 +2021-09-08 11:00:00,395.69 +2021-09-08 12:00:00,407.72 +2021-09-08 13:00:00,432.38 +2021-09-08 14:00:00,470.8 +2021-09-08 15:00:00,516.07 +2021-09-08 16:00:00,554.17 +2021-09-08 17:00:00,567.23 +2021-09-08 18:00:00,560.08 +2021-09-08 19:00:00,561.41 +2021-09-08 20:00:00,563.19 +2021-09-08 21:00:00,562.0 +2021-09-08 22:00:00,564.61 +2021-09-08 23:00:00,577.44 +2021-09-09 00:00:00,587.36 +2021-09-09 01:00:00,586.67 +2021-09-09 02:00:00,589.1 +2021-09-09 03:00:00,592.68 +2021-09-09 04:00:00,589.62 +2021-09-09 05:00:00,567.77 +2021-09-09 06:00:00,532.44 +2021-09-09 07:00:00,505.34 +2021-09-09 08:00:00,474.79 +2021-09-09 09:00:00,445.45 +2021-09-09 10:00:00,423.7 +2021-09-09 11:00:00,420.99 +2021-09-09 12:00:00,428.18 +2021-09-09 13:00:00,453.27 +2021-09-09 14:00:00,489.18 +2021-09-09 15:00:00,528.24 +2021-09-09 16:00:00,567.36 +2021-09-09 17:00:00,584.76 +2021-09-09 18:00:00,583.25 +2021-09-09 19:00:00,587.64 +2021-09-09 20:00:00,596.34 +2021-09-09 21:00:00,602.43 +2021-09-09 22:00:00,599.2 +2021-09-09 23:00:00,603.78 +2021-09-10 00:00:00,611.14 +2021-09-10 01:00:00,614.3 +2021-09-10 02:00:00,615.19 +2021-09-10 03:00:00,619.96 +2021-09-10 04:00:00,615.25 +2021-09-10 05:00:00,595.3 +2021-09-10 06:00:00,557.68 +2021-09-10 07:00:00,540.33 +2021-09-10 08:00:00,511.9 +2021-09-10 09:00:00,490.62 +2021-09-10 10:00:00,477.36 +2021-09-10 11:00:00,471.14 +2021-09-10 12:00:00,472.17 +2021-09-10 13:00:00,503.24 +2021-09-10 14:00:00,534.53 +2021-09-10 15:00:00,570.73 +2021-09-10 16:00:00,609.39 +2021-09-10 17:00:00,627.33 +2021-09-10 18:00:00,637.73 +2021-09-10 19:00:00,654.49 +2021-09-10 20:00:00,655.03 +2021-09-10 21:00:00,646.6 +2021-09-10 22:00:00,622.81 +2021-09-10 23:00:00,612.2 +2021-09-11 00:00:00,601.78 +2021-09-11 01:00:00,591.78 +2021-09-11 02:00:00,590.23 +2021-09-11 03:00:00,595.93 +2021-09-11 04:00:00,592.79 +2021-09-11 05:00:00,579.9 +2021-09-11 06:00:00,557.18 +2021-09-11 07:00:00,531.99 +2021-09-11 08:00:00,500.23 +2021-09-11 09:00:00,471.98 +2021-09-11 10:00:00,450.13 +2021-09-11 11:00:00,439.19 +2021-09-11 12:00:00,444.65 +2021-09-11 13:00:00,455.04 +2021-09-11 14:00:00,474.05 +2021-09-11 15:00:00,513.11 +2021-09-11 16:00:00,557.34 +2021-09-11 17:00:00,590.98 +2021-09-11 18:00:00,596.75 +2021-09-11 19:00:00,599.64 +2021-09-11 20:00:00,585.57 +2021-09-11 21:00:00,569.31 +2021-09-11 22:00:00,545.9 +2021-09-11 23:00:00,542.86 +2021-09-12 00:00:00,534.87 +2021-09-12 01:00:00,538.66 +2021-09-12 02:00:00,537.04 +2021-09-12 03:00:00,537.69 +2021-09-12 04:00:00,540.99 +2021-09-12 05:00:00,520.58 +2021-09-12 06:00:00,485.07 +2021-09-12 07:00:00,447.2 +2021-09-12 08:00:00,400.58 +2021-09-12 09:00:00,346.99 +2021-09-12 10:00:00,322.57 +2021-09-12 11:00:00,298.2 +2021-09-12 12:00:00,300.27 +2021-09-12 13:00:00,327.82 +2021-09-12 14:00:00,388.22 +2021-09-12 15:00:00,459.02 +2021-09-12 16:00:00,534.99 +2021-09-12 17:00:00,577.43 +2021-09-12 18:00:00,585.2 +2021-09-12 19:00:00,588.43 +2021-09-12 20:00:00,595.28 +2021-09-12 21:00:00,587.15 +2021-09-12 22:00:00,571.18 +2021-09-12 23:00:00,560.9 +2021-09-13 00:00:00,569.84 +2021-09-13 01:00:00,578.54 +2021-09-13 02:00:00,587.47 +2021-09-13 03:00:00,602.42 +2021-09-13 04:00:00,620.29 +2021-09-13 05:00:00,614.53 +2021-09-13 06:00:00,588.7 +2021-09-13 07:00:00,553.66 +2021-09-13 08:00:00,518.98 +2021-09-13 09:00:00,490.96 +2021-09-13 10:00:00,475.23 +2021-09-13 11:00:00,481.17 +2021-09-13 12:00:00,496.58 +2021-09-13 13:00:00,519.74 +2021-09-13 14:00:00,551.85 +2021-09-13 15:00:00,580.15 +2021-09-13 16:00:00,618.42 +2021-09-13 17:00:00,631.87 +2021-09-13 18:00:00,636.5 +2021-09-13 19:00:00,645.94 +2021-09-13 20:00:00,661.36 +2021-09-13 21:00:00,658.89 +2021-09-13 22:00:00,649.66 +2021-09-13 23:00:00,640.37 +2021-09-14 00:00:00,634.21 +2021-09-14 01:00:00,629.02 +2021-09-14 02:00:00,627.74 +2021-09-14 03:00:00,625.83 +2021-09-14 04:00:00,610.49 +2021-09-14 05:00:00,588.17 +2021-09-14 06:00:00,553.5 +2021-09-14 07:00:00,520.53 +2021-09-14 08:00:00,477.19 +2021-09-14 09:00:00,446.17 +2021-09-14 10:00:00,429.98 +2021-09-14 11:00:00,437.28 +2021-09-14 12:00:00,458.14 +2021-09-14 13:00:00,491.09 +2021-09-14 14:00:00,527.46 +2021-09-14 15:00:00,564.9 +2021-09-14 16:00:00,595.38 +2021-09-14 17:00:00,593.98 +2021-09-14 18:00:00,578.18 +2021-09-14 19:00:00,570.58 +2021-09-14 20:00:00,566.22 +2021-09-14 21:00:00,558.52 +2021-09-14 22:00:00,563.54 +2021-09-14 23:00:00,568.92 +2021-09-15 00:00:00,568.79 +2021-09-15 01:00:00,572.36 +2021-09-15 02:00:00,579.61 +2021-09-15 03:00:00,585.8 +2021-09-15 04:00:00,576.87 +2021-09-15 05:00:00,561.01 +2021-09-15 06:00:00,536.56 +2021-09-15 07:00:00,527.58 +2021-09-15 08:00:00,519.4 +2021-09-15 09:00:00,512.34 +2021-09-15 10:00:00,514.19 +2021-09-15 11:00:00,511.4 +2021-09-15 12:00:00,510.5 +2021-09-15 13:00:00,522.8 +2021-09-15 14:00:00,529.72 +2021-09-15 15:00:00,533.47 +2021-09-15 16:00:00,546.66 +2021-09-15 17:00:00,545.3 +2021-09-15 18:00:00,546.96 +2021-09-15 19:00:00,552.75 +2021-09-15 20:00:00,548.69 +2021-09-15 21:00:00,536.85 +2021-09-15 22:00:00,545.16 +2021-09-15 23:00:00,548.36 +2021-09-16 00:00:00,547.12 +2021-09-16 01:00:00,543.3 +2021-09-16 02:00:00,541.58 +2021-09-16 03:00:00,541.84 +2021-09-16 04:00:00,543.73 +2021-09-16 05:00:00,542.88 +2021-09-16 06:00:00,529.78 +2021-09-16 07:00:00,510.25 +2021-09-16 08:00:00,476.69 +2021-09-16 09:00:00,451.36 +2021-09-16 10:00:00,441.89 +2021-09-16 11:00:00,439.7 +2021-09-16 12:00:00,439.17 +2021-09-16 13:00:00,448.33 +2021-09-16 14:00:00,468.83 +2021-09-16 15:00:00,493.03 +2021-09-16 16:00:00,518.97 +2021-09-16 17:00:00,535.04 +2021-09-16 18:00:00,543.04 +2021-09-16 19:00:00,546.37 +2021-09-16 20:00:00,553.51 +2021-09-16 21:00:00,551.12 +2021-09-16 22:00:00,551.87 +2021-09-16 23:00:00,556.97 +2021-09-17 00:00:00,562.97 +2021-09-17 01:00:00,565.52 +2021-09-17 02:00:00,568.53 +2021-09-17 03:00:00,572.64 +2021-09-17 04:00:00,581.32 +2021-09-17 05:00:00,587.37 +2021-09-17 06:00:00,562.69 +2021-09-17 07:00:00,537.7 +2021-09-17 08:00:00,510.92 +2021-09-17 09:00:00,493.27 +2021-09-17 10:00:00,484.29 +2021-09-17 11:00:00,488.78 +2021-09-17 12:00:00,498.98 +2021-09-17 13:00:00,510.36 +2021-09-17 14:00:00,528.76 +2021-09-17 15:00:00,558.04 +2021-09-17 16:00:00,592.34 +2021-09-17 17:00:00,604.65 +2021-09-17 18:00:00,610.36 +2021-09-17 19:00:00,620.63 +2021-09-17 20:00:00,630.87 +2021-09-17 21:00:00,637.11 +2021-09-17 22:00:00,633.25 +2021-09-17 23:00:00,632.11 +2021-09-18 00:00:00,632.6 +2021-09-18 01:00:00,630.62 +2021-09-18 02:00:00,628.59 +2021-09-18 03:00:00,626.62 +2021-09-18 04:00:00,625.06 +2021-09-18 05:00:00,603.5 +2021-09-18 06:00:00,567.96 +2021-09-18 07:00:00,522.8 +2021-09-18 08:00:00,475.54 +2021-09-18 09:00:00,446.02 +2021-09-18 10:00:00,440.26 +2021-09-18 11:00:00,436.54 +2021-09-18 12:00:00,446.19 +2021-09-18 13:00:00,476.25 +2021-09-18 14:00:00,514.92 +2021-09-18 15:00:00,553.63 +2021-09-18 16:00:00,589.47 +2021-09-18 17:00:00,597.14 +2021-09-18 18:00:00,592.09 +2021-09-18 19:00:00,582.73 +2021-09-18 20:00:00,574.61 +2021-09-18 21:00:00,551.55 +2021-09-18 22:00:00,515.36 +2021-09-18 23:00:00,493.97 +2021-09-19 00:00:00,482.3 +2021-09-19 01:00:00,474.08 +2021-09-19 02:00:00,462.97 +2021-09-19 03:00:00,464.04 +2021-09-19 04:00:00,482.06 +2021-09-19 05:00:00,476.04 +2021-09-19 06:00:00,457.8 +2021-09-19 07:00:00,453.99 +2021-09-19 08:00:00,436.63 +2021-09-19 09:00:00,419.85 +2021-09-19 10:00:00,417.35 +2021-09-19 11:00:00,428.59 +2021-09-19 12:00:00,442.36 +2021-09-19 13:00:00,458.25 +2021-09-19 14:00:00,493.45 +2021-09-19 15:00:00,534.67 +2021-09-19 16:00:00,555.42 +2021-09-19 17:00:00,563.86 +2021-09-19 18:00:00,572.82 +2021-09-19 19:00:00,576.29 +2021-09-19 20:00:00,586.7 +2021-09-19 21:00:00,602.21 +2021-09-19 22:00:00,605.59 +2021-09-19 23:00:00,620.88 +2021-09-20 00:00:00,609.56 +2021-09-20 01:00:00,613.56 +2021-09-20 02:00:00,615.16 +2021-09-20 03:00:00,617.79 +2021-09-20 04:00:00,624.68 +2021-09-20 05:00:00,617.04 +2021-09-20 06:00:00,603.99 +2021-09-20 07:00:00,591.07 +2021-09-20 08:00:00,559.57 +2021-09-20 09:00:00,531.83 +2021-09-20 10:00:00,526.73 +2021-09-20 11:00:00,530.75 +2021-09-20 12:00:00,531.09 +2021-09-20 13:00:00,544.01 +2021-09-20 14:00:00,568.35 +2021-09-20 15:00:00,588.81 +2021-09-20 16:00:00,616.11 +2021-09-20 17:00:00,624.28 +2021-09-20 18:00:00,640.95 +2021-09-20 19:00:00,662.2 +2021-09-20 20:00:00,673.76 +2021-09-20 21:00:00,679.97 +2021-09-20 22:00:00,672.9 +2021-09-20 23:00:00,665.47 +2021-09-21 00:00:00,654.17 +2021-09-21 01:00:00,638.37 +2021-09-21 02:00:00,626.97 +2021-09-21 03:00:00,622.18 +2021-09-21 04:00:00,611.48 +2021-09-21 05:00:00,591.82 +2021-09-21 06:00:00,569.66 +2021-09-21 07:00:00,545.37 +2021-09-21 08:00:00,504.71 +2021-09-21 09:00:00,462.72 +2021-09-21 10:00:00,450.31 +2021-09-21 11:00:00,440.85 +2021-09-21 12:00:00,448.6 +2021-09-21 13:00:00,458.41 +2021-09-21 14:00:00,490.14 +2021-09-21 15:00:00,530.58 +2021-09-21 16:00:00,568.22 +2021-09-21 17:00:00,569.59 +2021-09-21 18:00:00,579.42 +2021-09-21 19:00:00,581.24 +2021-09-21 20:00:00,579.84 +2021-09-21 21:00:00,577.26 +2021-09-21 22:00:00,571.24 +2021-09-21 23:00:00,568.83 +2021-09-22 00:00:00,570.51 +2021-09-22 01:00:00,572.54 +2021-09-22 02:00:00,595.6 +2021-09-22 03:00:00,614.88 +2021-09-22 04:00:00,614.01 +2021-09-22 05:00:00,603.49 +2021-09-22 06:00:00,581.44 +2021-09-22 07:00:00,554.35 +2021-09-22 08:00:00,518.55 +2021-09-22 09:00:00,485.74 +2021-09-22 10:00:00,461.9 +2021-09-22 11:00:00,453.72 +2021-09-22 12:00:00,448.33 +2021-09-22 13:00:00,467.74 +2021-09-22 14:00:00,495.12 +2021-09-22 15:00:00,525.71 +2021-09-22 16:00:00,555.13 +2021-09-22 17:00:00,545.03 +2021-09-22 18:00:00,540.22 +2021-09-22 19:00:00,541.31 +2021-09-22 20:00:00,530.44 +2021-09-22 21:00:00,505.11 +2021-09-22 22:00:00,470.88 +2021-09-22 23:00:00,457.18 +2021-09-23 00:00:00,429.81 +2021-09-23 01:00:00,403.87 +2021-09-23 02:00:00,390.8 +2021-09-23 03:00:00,405.44 +2021-09-23 04:00:00,425.89 +2021-09-23 05:00:00,420.53 +2021-09-23 06:00:00,395.06 +2021-09-23 07:00:00,346.98 +2021-09-23 08:00:00,289.64 +2021-09-23 09:00:00,235.98 +2021-09-23 10:00:00,204.29 +2021-09-23 11:00:00,203.69 +2021-09-23 12:00:00,206.12 +2021-09-23 13:00:00,208.77 +2021-09-23 14:00:00,235.02 +2021-09-23 15:00:00,285.42 +2021-09-23 16:00:00,320.19 +2021-09-23 17:00:00,324.32 +2021-09-23 18:00:00,314.46 +2021-09-23 19:00:00,309.75 +2021-09-23 20:00:00,320.9 +2021-09-23 21:00:00,322.96 +2021-09-23 22:00:00,348.0 +2021-09-23 23:00:00,337.88 +2021-09-24 00:00:00,342.28 +2021-09-24 01:00:00,348.47 +2021-09-24 02:00:00,367.73 +2021-09-24 03:00:00,413.94 +2021-09-24 04:00:00,444.0 +2021-09-24 05:00:00,443.96 +2021-09-24 06:00:00,425.26 +2021-09-24 07:00:00,404.38 +2021-09-24 08:00:00,385.1 +2021-09-24 09:00:00,365.02 +2021-09-24 10:00:00,355.48 +2021-09-24 11:00:00,358.25 +2021-09-24 12:00:00,358.13 +2021-09-24 13:00:00,369.4 +2021-09-24 14:00:00,396.46 +2021-09-24 15:00:00,431.57 +2021-09-24 16:00:00,466.16 +2021-09-24 17:00:00,469.78 +2021-09-24 18:00:00,468.05 +2021-09-24 19:00:00,466.62 +2021-09-24 20:00:00,460.64 +2021-09-24 21:00:00,455.22 +2021-09-24 22:00:00,462.28 +2021-09-24 23:00:00,477.46 +2021-09-25 00:00:00,484.57 +2021-09-25 01:00:00,485.01 +2021-09-25 02:00:00,505.68 +2021-09-25 03:00:00,525.79 +2021-09-25 04:00:00,540.2 +2021-09-25 05:00:00,550.6 +2021-09-25 06:00:00,532.54 +2021-09-25 07:00:00,501.98 +2021-09-25 08:00:00,463.36 +2021-09-25 09:00:00,438.37 +2021-09-25 10:00:00,430.02 +2021-09-25 11:00:00,428.18 +2021-09-25 12:00:00,435.34 +2021-09-25 13:00:00,468.85 +2021-09-25 14:00:00,523.16 +2021-09-25 15:00:00,576.03 +2021-09-25 16:00:00,610.44 +2021-09-25 17:00:00,613.33 +2021-09-25 18:00:00,630.63 +2021-09-25 19:00:00,654.84 +2021-09-25 20:00:00,671.08 +2021-09-25 21:00:00,670.74 +2021-09-25 22:00:00,661.75 +2021-09-25 23:00:00,646.25 +2021-09-26 00:00:00,628.45 +2021-09-26 01:00:00,607.68 +2021-09-26 02:00:00,588.56 +2021-09-26 03:00:00,578.97 +2021-09-26 04:00:00,577.98 +2021-09-26 05:00:00,560.31 +2021-09-26 06:00:00,520.46 +2021-09-26 07:00:00,483.36 +2021-09-26 08:00:00,458.32 +2021-09-26 09:00:00,436.91 +2021-09-26 10:00:00,423.39 +2021-09-26 11:00:00,406.36 +2021-09-26 12:00:00,413.78 +2021-09-26 13:00:00,443.58 +2021-09-26 14:00:00,504.67 +2021-09-26 15:00:00,560.49 +2021-09-26 16:00:00,585.26 +2021-09-26 17:00:00,593.56 +2021-09-26 18:00:00,592.7 +2021-09-26 19:00:00,588.93 +2021-09-26 20:00:00,591.09 +2021-09-26 21:00:00,599.49 +2021-09-26 22:00:00,600.02 +2021-09-26 23:00:00,592.76 +2021-09-27 00:00:00,578.03 +2021-09-27 01:00:00,564.91 +2021-09-27 02:00:00,555.02 +2021-09-27 03:00:00,592.69 +2021-09-27 04:00:00,591.26 +2021-09-27 05:00:00,591.46 +2021-09-27 06:00:00,572.52 +2021-09-27 07:00:00,548.83 +2021-09-27 08:00:00,513.83 +2021-09-27 09:00:00,478.7 +2021-09-27 10:00:00,457.91 +2021-09-27 11:00:00,443.16 +2021-09-27 12:00:00,447.35 +2021-09-27 13:00:00,467.09 +2021-09-27 14:00:00,498.3 +2021-09-27 15:00:00,523.77 +2021-09-27 16:00:00,542.98 +2021-09-27 17:00:00,550.65 +2021-09-27 18:00:00,560.81 +2021-09-27 19:00:00,563.19 +2021-09-27 20:00:00,569.86 +2021-09-27 21:00:00,551.22 +2021-09-27 22:00:00,541.22 +2021-09-27 23:00:00,551.57 +2021-09-28 00:00:00,548.87 +2021-09-28 01:00:00,556.57 +2021-09-28 02:00:00,568.03 +2021-09-28 03:00:00,604.81 +2021-09-28 04:00:00,622.31 +2021-09-28 05:00:00,622.48 +2021-09-28 06:00:00,607.26 +2021-09-28 07:00:00,585.47 +2021-09-28 08:00:00,562.14 +2021-09-28 09:00:00,539.31 +2021-09-28 10:00:00,526.24 +2021-09-28 11:00:00,521.98 +2021-09-28 12:00:00,532.27 +2021-09-28 13:00:00,556.23 +2021-09-28 14:00:00,592.12 +2021-09-28 15:00:00,631.26 +2021-09-28 16:00:00,647.68 +2021-09-28 17:00:00,643.5 +2021-09-28 18:00:00,638.71 +2021-09-28 19:00:00,643.88 +2021-09-28 20:00:00,634.37 +2021-09-28 21:00:00,607.36 +2021-09-28 22:00:00,564.45 +2021-09-28 23:00:00,529.62 +2021-09-29 00:00:00,508.25 +2021-09-29 01:00:00,484.13 +2021-09-29 02:00:00,479.37 +2021-09-29 03:00:00,511.23 +2021-09-29 04:00:00,549.58 +2021-09-29 05:00:00,552.56 +2021-09-29 06:00:00,538.66 +2021-09-29 07:00:00,518.58 +2021-09-29 08:00:00,504.39 +2021-09-29 09:00:00,474.69 +2021-09-29 10:00:00,435.86 +2021-09-29 11:00:00,406.57 +2021-09-29 12:00:00,378.07 +2021-09-29 13:00:00,368.2 +2021-09-29 14:00:00,380.3 +2021-09-29 15:00:00,399.55 +2021-09-29 16:00:00,436.72 +2021-09-29 17:00:00,438.19 +2021-09-29 18:00:00,412.42 +2021-09-29 19:00:00,376.21 +2021-09-29 20:00:00,343.88 +2021-09-29 21:00:00,325.5 +2021-09-29 22:00:00,293.51 +2021-09-29 23:00:00,279.67 +2021-09-30 00:00:00,272.73 +2021-09-30 01:00:00,279.76 +2021-09-30 02:00:00,290.48 +2021-09-30 03:00:00,314.58 +2021-09-30 04:00:00,369.02 +2021-09-30 05:00:00,397.87 +2021-09-30 06:00:00,390.3 +2021-09-30 07:00:00,356.39 +2021-09-30 08:00:00,319.67 +2021-09-30 09:00:00,307.33 +2021-09-30 10:00:00,285.06 +2021-09-30 11:00:00,278.36 +2021-09-30 12:00:00,290.27 +2021-09-30 13:00:00,324.49 +2021-09-30 14:00:00,379.54 +2021-09-30 15:00:00,452.61 +2021-09-30 16:00:00,499.09 +2021-09-30 17:00:00,497.45 +2021-09-30 18:00:00,480.02 +2021-09-30 19:00:00,459.86 +2021-09-30 20:00:00,424.1 +2021-09-30 21:00:00,397.41 +2021-09-30 22:00:00,373.55 +2021-09-30 23:00:00,349.74 +2021-10-01 00:00:00,316.34 +2021-10-01 01:00:00,296.05 +2021-10-01 02:00:00,308.48 +2021-10-01 03:00:00,345.07 +2021-10-01 04:00:00,385.78 +2021-10-01 05:00:00,409.56 +2021-10-01 06:00:00,389.43 +2021-10-01 07:00:00,350.28 +2021-10-01 08:00:00,310.84 +2021-10-01 09:00:00,268.56 +2021-10-01 10:00:00,237.87 +2021-10-01 11:00:00,216.28 +2021-10-01 12:00:00,221.09 +2021-10-01 13:00:00,264.57 +2021-10-01 14:00:00,356.67 +2021-10-01 15:00:00,437.67 +2021-10-01 16:00:00,466.97 +2021-10-01 17:00:00,451.82 +2021-10-01 18:00:00,437.0 +2021-10-01 19:00:00,420.06 +2021-10-01 20:00:00,418.38 +2021-10-01 21:00:00,422.24 +2021-10-01 22:00:00,427.71 +2021-10-01 23:00:00,441.72 +2021-10-02 00:00:00,447.88 +2021-10-02 01:00:00,455.32 +2021-10-02 02:00:00,478.79 +2021-10-02 03:00:00,493.14 +2021-10-02 04:00:00,510.51 +2021-10-02 05:00:00,509.57 +2021-10-02 06:00:00,482.88 +2021-10-02 07:00:00,450.32 +2021-10-02 08:00:00,399.06 +2021-10-02 09:00:00,344.46 +2021-10-02 10:00:00,314.43 +2021-10-02 11:00:00,290.0 +2021-10-02 12:00:00,279.84 +2021-10-02 13:00:00,295.34 +2021-10-02 14:00:00,324.51 +2021-10-02 15:00:00,368.03 +2021-10-02 16:00:00,363.78 +2021-10-02 17:00:00,325.9 +2021-10-02 18:00:00,265.86 +2021-10-02 19:00:00,214.38 +2021-10-02 20:00:00,201.38 +2021-10-02 21:00:00,201.29 +2021-10-02 22:00:00,195.81 +2021-10-02 23:00:00,197.44 +2021-10-03 00:00:00,202.53 +2021-10-03 01:00:00,203.32 +2021-10-03 02:00:00,193.63 +2021-10-03 03:00:00,193.96 +2021-10-03 04:00:00,188.22 +2021-10-03 05:00:00,186.88 +2021-10-03 06:00:00,176.12 +2021-10-03 07:00:00,168.89 +2021-10-03 08:00:00,168.27 +2021-10-03 09:00:00,168.6 +2021-10-03 10:00:00,170.65 +2021-10-03 11:00:00,171.43 +2021-10-03 12:00:00,175.17 +2021-10-03 13:00:00,182.68 +2021-10-03 14:00:00,211.36 +2021-10-03 15:00:00,257.97 +2021-10-03 16:00:00,284.84 +2021-10-03 17:00:00,314.71 +2021-10-03 18:00:00,322.74 +2021-10-03 19:00:00,314.6 +2021-10-03 20:00:00,311.17 +2021-10-03 21:00:00,308.49 +2021-10-03 22:00:00,317.35 +2021-10-03 23:00:00,315.7 +2021-10-04 00:00:00,323.43 +2021-10-04 01:00:00,350.09 +2021-10-04 02:00:00,382.62 +2021-10-04 03:00:00,452.11 +2021-10-04 04:00:00,498.98 +2021-10-04 05:00:00,518.88 +2021-10-04 06:00:00,515.63 +2021-10-04 07:00:00,509.01 +2021-10-04 08:00:00,496.82 +2021-10-04 09:00:00,490.18 +2021-10-04 10:00:00,485.33 +2021-10-04 11:00:00,468.87 +2021-10-04 12:00:00,462.35 +2021-10-04 13:00:00,468.94 +2021-10-04 14:00:00,493.73 +2021-10-04 15:00:00,518.82 +2021-10-04 16:00:00,530.17 +2021-10-04 17:00:00,521.28 +2021-10-04 18:00:00,530.64 +2021-10-04 19:00:00,523.31 +2021-10-04 20:00:00,521.12 +2021-10-04 21:00:00,507.1 +2021-10-04 22:00:00,487.75 +2021-10-04 23:00:00,477.35 +2021-10-05 00:00:00,464.88 +2021-10-05 01:00:00,468.36 +2021-10-05 02:00:00,467.81 +2021-10-05 03:00:00,482.32 +2021-10-05 04:00:00,516.38 +2021-10-05 05:00:00,527.33 +2021-10-05 06:00:00,514.25 +2021-10-05 07:00:00,506.43 +2021-10-05 08:00:00,494.75 +2021-10-05 09:00:00,475.75 +2021-10-05 10:00:00,457.37 +2021-10-05 11:00:00,450.98 +2021-10-05 12:00:00,449.85 +2021-10-05 13:00:00,452.56 +2021-10-05 14:00:00,461.42 +2021-10-05 15:00:00,468.56 +2021-10-05 16:00:00,482.21 +2021-10-05 17:00:00,474.01 +2021-10-05 18:00:00,463.37 +2021-10-05 19:00:00,454.52 +2021-10-05 20:00:00,439.88 +2021-10-05 21:00:00,410.59 +2021-10-05 22:00:00,376.7 +2021-10-05 23:00:00,359.52 +2021-10-06 00:00:00,340.91 +2021-10-06 01:00:00,321.54 +2021-10-06 02:00:00,335.45 +2021-10-06 03:00:00,371.36 +2021-10-06 04:00:00,416.89 +2021-10-06 05:00:00,453.74 +2021-10-06 06:00:00,457.78 +2021-10-06 07:00:00,444.4 +2021-10-06 08:00:00,421.4 +2021-10-06 09:00:00,407.06 +2021-10-06 10:00:00,415.3 +2021-10-06 11:00:00,419.41 +2021-10-06 12:00:00,431.98 +2021-10-06 13:00:00,455.13 +2021-10-06 14:00:00,498.22 +2021-10-06 15:00:00,534.88 +2021-10-06 16:00:00,550.91 +2021-10-06 17:00:00,551.19 +2021-10-06 18:00:00,569.63 +2021-10-06 19:00:00,583.55 +2021-10-06 20:00:00,608.29 +2021-10-06 21:00:00,627.88 +2021-10-06 22:00:00,642.78 +2021-10-06 23:00:00,649.89 +2021-10-07 00:00:00,649.79 +2021-10-07 01:00:00,659.61 +2021-10-07 02:00:00,670.53 +2021-10-07 03:00:00,683.78 +2021-10-07 04:00:00,660.75 +2021-10-07 05:00:00,642.46 +2021-10-07 06:00:00,618.84 +2021-10-07 07:00:00,592.74 +2021-10-07 08:00:00,567.53 +2021-10-07 09:00:00,546.78 +2021-10-07 10:00:00,532.88 +2021-10-07 11:00:00,532.1 +2021-10-07 12:00:00,542.1 +2021-10-07 13:00:00,564.24 +2021-10-07 14:00:00,599.19 +2021-10-07 15:00:00,637.76 +2021-10-07 16:00:00,659.71 +2021-10-07 17:00:00,644.01 +2021-10-07 18:00:00,653.31 +2021-10-07 19:00:00,655.13 +2021-10-07 20:00:00,656.97 +2021-10-07 21:00:00,657.57 +2021-10-07 22:00:00,646.57 +2021-10-07 23:00:00,636.97 +2021-10-08 00:00:00,635.59 +2021-10-08 01:00:00,633.66 +2021-10-08 02:00:00,638.44 +2021-10-08 03:00:00,644.45 +2021-10-08 04:00:00,633.82 +2021-10-08 05:00:00,628.21 +2021-10-08 06:00:00,612.44 +2021-10-08 07:00:00,590.05 +2021-10-08 08:00:00,553.31 +2021-10-08 09:00:00,521.67 +2021-10-08 10:00:00,498.36 +2021-10-08 11:00:00,484.26 +2021-10-08 12:00:00,485.56 +2021-10-08 13:00:00,510.14 +2021-10-08 14:00:00,545.04 +2021-10-08 15:00:00,589.81 +2021-10-08 16:00:00,600.63 +2021-10-08 17:00:00,581.82 +2021-10-08 18:00:00,561.15 +2021-10-08 19:00:00,541.35 +2021-10-08 20:00:00,526.44 +2021-10-08 21:00:00,510.86 +2021-10-08 22:00:00,485.0 +2021-10-08 23:00:00,487.97 +2021-10-09 00:00:00,499.26 +2021-10-09 01:00:00,510.74 +2021-10-09 02:00:00,516.43 +2021-10-09 03:00:00,519.71 +2021-10-09 04:00:00,523.07 +2021-10-09 05:00:00,526.28 +2021-10-09 06:00:00,495.86 +2021-10-09 07:00:00,466.33 +2021-10-09 08:00:00,426.88 +2021-10-09 09:00:00,375.68 +2021-10-09 10:00:00,335.02 +2021-10-09 11:00:00,331.07 +2021-10-09 12:00:00,342.39 +2021-10-09 13:00:00,378.16 +2021-10-09 14:00:00,449.23 +2021-10-09 15:00:00,524.32 +2021-10-09 16:00:00,544.32 +2021-10-09 17:00:00,512.95 +2021-10-09 18:00:00,481.59 +2021-10-09 19:00:00,451.92 +2021-10-09 20:00:00,440.16 +2021-10-09 21:00:00,449.15 +2021-10-09 22:00:00,460.45 +2021-10-09 23:00:00,485.88 +2021-10-10 00:00:00,509.39 +2021-10-10 01:00:00,527.16 +2021-10-10 02:00:00,541.93 +2021-10-10 03:00:00,557.12 +2021-10-10 04:00:00,584.64 +2021-10-10 05:00:00,590.29 +2021-10-10 06:00:00,554.81 +2021-10-10 07:00:00,493.78 +2021-10-10 08:00:00,443.35 +2021-10-10 09:00:00,406.98 +2021-10-10 10:00:00,384.75 +2021-10-10 11:00:00,373.69 +2021-10-10 12:00:00,375.79 +2021-10-10 13:00:00,398.65 +2021-10-10 14:00:00,466.74 +2021-10-10 15:00:00,551.57 +2021-10-10 16:00:00,586.29 +2021-10-10 17:00:00,579.29 +2021-10-10 18:00:00,567.98 +2021-10-10 19:00:00,552.35 +2021-10-10 20:00:00,555.1 +2021-10-10 21:00:00,548.99 +2021-10-10 22:00:00,535.22 +2021-10-10 23:00:00,523.27 +2021-10-11 00:00:00,508.26 +2021-10-11 01:00:00,503.39 +2021-10-11 02:00:00,517.26 +2021-10-11 03:00:00,551.61 +2021-10-11 04:00:00,560.01 +2021-10-11 05:00:00,559.1 +2021-10-11 06:00:00,546.25 +2021-10-11 07:00:00,524.48 +2021-10-11 08:00:00,497.83 +2021-10-11 09:00:00,468.32 +2021-10-11 10:00:00,443.31 +2021-10-11 11:00:00,429.21 +2021-10-11 12:00:00,427.44 +2021-10-11 13:00:00,450.94 +2021-10-11 14:00:00,486.89 +2021-10-11 15:00:00,516.46 +2021-10-11 16:00:00,530.79 +2021-10-11 17:00:00,531.3 +2021-10-11 18:00:00,530.36 +2021-10-11 19:00:00,523.08 +2021-10-11 20:00:00,509.27 +2021-10-11 21:00:00,494.99 +2021-10-11 22:00:00,477.03 +2021-10-11 23:00:00,480.97 +2021-10-12 00:00:00,476.68 +2021-10-12 01:00:00,475.9 +2021-10-12 02:00:00,485.58 +2021-10-12 03:00:00,511.49 +2021-10-12 04:00:00,528.8 +2021-10-12 05:00:00,541.2 +2021-10-12 06:00:00,545.73 +2021-10-12 07:00:00,540.6 +2021-10-12 08:00:00,528.56 +2021-10-12 09:00:00,511.63 +2021-10-12 10:00:00,493.07 +2021-10-12 11:00:00,482.16 +2021-10-12 12:00:00,481.69 +2021-10-12 13:00:00,492.84 +2021-10-12 14:00:00,515.28 +2021-10-12 15:00:00,545.97 +2021-10-12 16:00:00,571.44 +2021-10-12 17:00:00,575.51 +2021-10-12 18:00:00,581.52 +2021-10-12 19:00:00,587.15 +2021-10-12 20:00:00,594.14 +2021-10-12 21:00:00,589.86 +2021-10-12 22:00:00,585.71 +2021-10-12 23:00:00,594.89 +2021-10-13 00:00:00,603.08 +2021-10-13 01:00:00,592.25 +2021-10-13 02:00:00,591.1 +2021-10-13 03:00:00,613.85 +2021-10-13 04:00:00,621.18 +2021-10-13 05:00:00,621.66 +2021-10-13 06:00:00,616.06 +2021-10-13 07:00:00,602.21 +2021-10-13 08:00:00,579.99 +2021-10-13 09:00:00,548.48 +2021-10-13 10:00:00,531.11 +2021-10-13 11:00:00,526.72 +2021-10-13 12:00:00,539.64 +2021-10-13 13:00:00,555.15 +2021-10-13 14:00:00,579.42 +2021-10-13 15:00:00,618.49 +2021-10-13 16:00:00,632.7 +2021-10-13 17:00:00,617.83 +2021-10-13 18:00:00,605.96 +2021-10-13 19:00:00,594.25 +2021-10-13 20:00:00,576.47 +2021-10-13 21:00:00,557.78 +2021-10-13 22:00:00,570.05 +2021-10-13 23:00:00,558.47 +2021-10-14 00:00:00,543.9 +2021-10-14 01:00:00,521.04 +2021-10-14 02:00:00,527.85 +2021-10-14 03:00:00,549.86 +2021-10-14 04:00:00,563.95 +2021-10-14 05:00:00,567.14 +2021-10-14 06:00:00,562.11 +2021-10-14 07:00:00,545.22 +2021-10-14 08:00:00,524.01 +2021-10-14 09:00:00,495.63 +2021-10-14 10:00:00,469.64 +2021-10-14 11:00:00,454.82 +2021-10-14 12:00:00,453.65 +2021-10-14 13:00:00,455.11 +2021-10-14 14:00:00,470.23 +2021-10-14 15:00:00,498.69 +2021-10-14 16:00:00,516.38 +2021-10-14 17:00:00,508.55 +2021-10-14 18:00:00,488.19 +2021-10-14 19:00:00,455.21 +2021-10-14 20:00:00,428.73 +2021-10-14 21:00:00,396.85 +2021-10-14 22:00:00,361.78 +2021-10-14 23:00:00,355.23 +2021-10-15 00:00:00,348.98 +2021-10-15 01:00:00,343.8 +2021-10-15 02:00:00,343.64 +2021-10-15 03:00:00,365.77 +2021-10-15 04:00:00,383.93 +2021-10-15 05:00:00,400.2 +2021-10-15 06:00:00,389.46 +2021-10-15 07:00:00,359.97 +2021-10-15 08:00:00,334.47 +2021-10-15 09:00:00,319.12 +2021-10-15 10:00:00,306.9 +2021-10-15 11:00:00,308.69 +2021-10-15 12:00:00,331.2 +2021-10-15 13:00:00,381.24 +2021-10-15 14:00:00,432.35 +2021-10-15 15:00:00,493.58 +2021-10-15 16:00:00,513.95 +2021-10-15 17:00:00,512.91 +2021-10-15 18:00:00,520.83 +2021-10-15 19:00:00,527.26 +2021-10-15 20:00:00,530.56 +2021-10-15 21:00:00,530.21 +2021-10-15 22:00:00,538.58 +2021-10-15 23:00:00,545.6 +2021-10-16 00:00:00,556.17 +2021-10-16 01:00:00,554.66 +2021-10-16 02:00:00,565.6 +2021-10-16 03:00:00,571.89 +2021-10-16 04:00:00,581.03 +2021-10-16 05:00:00,579.05 +2021-10-16 06:00:00,559.46 +2021-10-16 07:00:00,539.06 +2021-10-16 08:00:00,503.59 +2021-10-16 09:00:00,464.23 +2021-10-16 10:00:00,422.51 +2021-10-16 11:00:00,411.38 +2021-10-16 12:00:00,424.76 +2021-10-16 13:00:00,451.52 +2021-10-16 14:00:00,509.1 +2021-10-16 15:00:00,555.97 +2021-10-16 16:00:00,581.11 +2021-10-16 17:00:00,576.32 +2021-10-16 18:00:00,573.76 +2021-10-16 19:00:00,567.88 +2021-10-16 20:00:00,568.53 +2021-10-16 21:00:00,540.43 +2021-10-16 22:00:00,516.44 +2021-10-16 23:00:00,509.93 +2021-10-17 00:00:00,515.05 +2021-10-17 01:00:00,526.64 +2021-10-17 02:00:00,550.01 +2021-10-17 03:00:00,561.87 +2021-10-17 04:00:00,568.22 +2021-10-17 05:00:00,561.97 +2021-10-17 06:00:00,565.31 +2021-10-17 07:00:00,551.64 +2021-10-17 08:00:00,528.67 +2021-10-17 09:00:00,509.54 +2021-10-17 10:00:00,490.61 +2021-10-17 11:00:00,476.02 +2021-10-17 12:00:00,481.38 +2021-10-17 13:00:00,513.28 +2021-10-17 14:00:00,552.01 +2021-10-17 15:00:00,582.42 +2021-10-17 16:00:00,587.94 +2021-10-17 17:00:00,578.06 +2021-10-17 18:00:00,572.27 +2021-10-17 19:00:00,574.09 +2021-10-17 20:00:00,569.62 +2021-10-17 21:00:00,563.94 +2021-10-17 22:00:00,558.83 +2021-10-17 23:00:00,557.52 +2021-10-18 00:00:00,552.61 +2021-10-18 01:00:00,554.26 +2021-10-18 02:00:00,562.93 +2021-10-18 03:00:00,578.76 +2021-10-18 04:00:00,583.71 +2021-10-18 05:00:00,588.74 +2021-10-18 06:00:00,581.33 +2021-10-18 07:00:00,563.96 +2021-10-18 08:00:00,541.53 +2021-10-18 09:00:00,522.89 +2021-10-18 10:00:00,502.21 +2021-10-18 11:00:00,497.64 +2021-10-18 12:00:00,495.86 +2021-10-18 13:00:00,520.26 +2021-10-18 14:00:00,555.72 +2021-10-18 15:00:00,585.68 +2021-10-18 16:00:00,590.99 +2021-10-18 17:00:00,577.02 +2021-10-18 18:00:00,550.65 +2021-10-18 19:00:00,519.25 +2021-10-18 20:00:00,508.06 +2021-10-18 21:00:00,508.57 +2021-10-18 22:00:00,499.23 +2021-10-18 23:00:00,488.2 +2021-10-19 00:00:00,488.21 +2021-10-19 01:00:00,481.93 +2021-10-19 02:00:00,483.0 +2021-10-19 03:00:00,497.64 +2021-10-19 04:00:00,509.89 +2021-10-19 05:00:00,509.97 +2021-10-19 06:00:00,501.23 +2021-10-19 07:00:00,485.2 +2021-10-19 08:00:00,479.1 +2021-10-19 09:00:00,466.17 +2021-10-19 10:00:00,455.15 +2021-10-19 11:00:00,450.88 +2021-10-19 12:00:00,444.58 +2021-10-19 13:00:00,449.71 +2021-10-19 14:00:00,456.21 +2021-10-19 15:00:00,458.21 +2021-10-19 16:00:00,448.14 +2021-10-19 17:00:00,422.39 +2021-10-19 18:00:00,384.81 +2021-10-19 19:00:00,342.27 +2021-10-19 20:00:00,313.88 +2021-10-19 21:00:00,280.75 +2021-10-19 22:00:00,231.75 +2021-10-19 23:00:00,222.69 +2021-10-20 00:00:00,221.12 +2021-10-20 01:00:00,207.44 +2021-10-20 02:00:00,206.77 +2021-10-20 03:00:00,215.06 +2021-10-20 04:00:00,248.63 +2021-10-20 05:00:00,271.35 +2021-10-20 06:00:00,273.39 +2021-10-20 07:00:00,251.27 +2021-10-20 08:00:00,231.38 +2021-10-20 09:00:00,212.83 +2021-10-20 10:00:00,189.58 +2021-10-20 11:00:00,191.73 +2021-10-20 12:00:00,204.85 +2021-10-20 13:00:00,228.81 +2021-10-20 14:00:00,244.74 +2021-10-20 15:00:00,257.06 +2021-10-20 16:00:00,267.51 +2021-10-20 17:00:00,272.98 +2021-10-20 18:00:00,262.8 +2021-10-20 19:00:00,260.72 +2021-10-20 20:00:00,263.18 +2021-10-20 21:00:00,258.09 +2021-10-20 22:00:00,255.74 +2021-10-20 23:00:00,244.87 +2021-10-21 00:00:00,236.63 +2021-10-21 01:00:00,237.45 +2021-10-21 02:00:00,232.52 +2021-10-21 03:00:00,227.95 +2021-10-21 04:00:00,241.53 +2021-10-21 05:00:00,250.65 +2021-10-21 06:00:00,250.24 +2021-10-21 07:00:00,239.45 +2021-10-21 08:00:00,225.21 +2021-10-21 09:00:00,208.48 +2021-10-21 10:00:00,185.2 +2021-10-21 11:00:00,167.83 +2021-10-21 12:00:00,164.14 +2021-10-21 13:00:00,174.05 +2021-10-21 14:00:00,210.96 +2021-10-21 15:00:00,255.43 +2021-10-21 16:00:00,269.23 +2021-10-21 17:00:00,289.45 +2021-10-21 18:00:00,290.4 +2021-10-21 19:00:00,294.15 +2021-10-21 20:00:00,300.98 +2021-10-21 21:00:00,299.15 +2021-10-21 22:00:00,292.53 +2021-10-21 23:00:00,288.21 +2021-10-22 00:00:00,276.51 +2021-10-22 01:00:00,271.37 +2021-10-22 02:00:00,273.4 +2021-10-22 03:00:00,278.59 +2021-10-22 04:00:00,282.94 +2021-10-22 05:00:00,296.73 +2021-10-22 06:00:00,298.56 +2021-10-22 07:00:00,275.51 +2021-10-22 08:00:00,241.1 +2021-10-22 09:00:00,209.08 +2021-10-22 10:00:00,184.1 +2021-10-22 11:00:00,178.22 +2021-10-22 12:00:00,181.44 +2021-10-22 13:00:00,192.8 +2021-10-22 14:00:00,232.61 +2021-10-22 15:00:00,276.4 +2021-10-22 16:00:00,299.81 +2021-10-22 17:00:00,304.95 +2021-10-22 18:00:00,308.09 +2021-10-22 19:00:00,311.0 +2021-10-22 20:00:00,314.59 +2021-10-22 21:00:00,304.1 +2021-10-22 22:00:00,309.45 +2021-10-22 23:00:00,319.82 +2021-10-23 00:00:00,325.23 +2021-10-23 01:00:00,336.71 +2021-10-23 02:00:00,351.24 +2021-10-23 03:00:00,383.33 +2021-10-23 04:00:00,392.78 +2021-10-23 05:00:00,422.98 +2021-10-23 06:00:00,430.43 +2021-10-23 07:00:00,415.97 +2021-10-23 08:00:00,392.16 +2021-10-23 09:00:00,368.49 +2021-10-23 10:00:00,366.02 +2021-10-23 11:00:00,386.67 +2021-10-23 12:00:00,424.17 +2021-10-23 13:00:00,465.39 +2021-10-23 14:00:00,508.13 +2021-10-23 15:00:00,543.02 +2021-10-23 16:00:00,561.82 +2021-10-23 17:00:00,556.46 +2021-10-23 18:00:00,550.21 +2021-10-23 19:00:00,537.92 +2021-10-23 20:00:00,529.81 +2021-10-23 21:00:00,511.88 +2021-10-23 22:00:00,472.58 +2021-10-23 23:00:00,463.91 +2021-10-24 00:00:00,451.94 +2021-10-24 01:00:00,442.21 +2021-10-24 02:00:00,441.61 +2021-10-24 03:00:00,434.71 +2021-10-24 04:00:00,422.53 +2021-10-24 05:00:00,412.72 +2021-10-24 06:00:00,402.82 +2021-10-24 07:00:00,360.74 +2021-10-24 08:00:00,335.31 +2021-10-24 09:00:00,315.28 +2021-10-24 10:00:00,287.46 +2021-10-24 11:00:00,260.59 +2021-10-24 12:00:00,262.47 +2021-10-24 13:00:00,312.14 +2021-10-24 14:00:00,389.26 +2021-10-24 15:00:00,467.77 +2021-10-24 16:00:00,463.39 +2021-10-24 17:00:00,431.55 +2021-10-24 18:00:00,402.17 +2021-10-24 19:00:00,385.2 +2021-10-24 20:00:00,378.68 +2021-10-24 21:00:00,379.39 +2021-10-24 22:00:00,402.28 +2021-10-24 23:00:00,419.4 +2021-10-25 00:00:00,431.49 +2021-10-25 01:00:00,442.54 +2021-10-25 02:00:00,443.15 +2021-10-25 03:00:00,460.61 +2021-10-25 04:00:00,484.94 +2021-10-25 05:00:00,503.54 +2021-10-25 06:00:00,493.54 +2021-10-25 07:00:00,477.49 +2021-10-25 08:00:00,461.79 +2021-10-25 09:00:00,454.54 +2021-10-25 10:00:00,455.66 +2021-10-25 11:00:00,461.86 +2021-10-25 12:00:00,477.97 +2021-10-25 13:00:00,503.32 +2021-10-25 14:00:00,530.29 +2021-10-25 15:00:00,548.59 +2021-10-25 16:00:00,548.71 +2021-10-25 17:00:00,541.95 +2021-10-25 18:00:00,536.57 +2021-10-25 19:00:00,525.33 +2021-10-25 20:00:00,527.93 +2021-10-25 21:00:00,519.66 +2021-10-25 22:00:00,521.36 +2021-10-25 23:00:00,517.25 +2021-10-26 00:00:00,515.08 +2021-10-26 01:00:00,516.68 +2021-10-26 02:00:00,527.18 +2021-10-26 03:00:00,541.51 +2021-10-26 04:00:00,544.84 +2021-10-26 05:00:00,534.46 +2021-10-26 06:00:00,523.02 +2021-10-26 07:00:00,510.71 +2021-10-26 08:00:00,491.44 +2021-10-26 09:00:00,470.2 +2021-10-26 10:00:00,437.8 +2021-10-26 11:00:00,423.53 +2021-10-26 12:00:00,429.03 +2021-10-26 13:00:00,453.12 +2021-10-26 14:00:00,472.16 +2021-10-26 15:00:00,494.32 +2021-10-26 16:00:00,494.5 +2021-10-26 17:00:00,478.97 +2021-10-26 18:00:00,460.72 +2021-10-26 19:00:00,428.55 +2021-10-26 20:00:00,408.75 +2021-10-26 21:00:00,395.38 +2021-10-26 22:00:00,385.57 +2021-10-26 23:00:00,381.52 +2021-10-27 00:00:00,381.96 +2021-10-27 01:00:00,385.56 +2021-10-27 02:00:00,403.15 +2021-10-27 03:00:00,432.94 +2021-10-27 04:00:00,457.71 +2021-10-27 05:00:00,460.12 +2021-10-27 06:00:00,453.02 +2021-10-27 07:00:00,434.97 +2021-10-27 08:00:00,417.22 +2021-10-27 09:00:00,403.49 +2021-10-27 10:00:00,393.71 +2021-10-27 11:00:00,391.92 +2021-10-27 12:00:00,403.59 +2021-10-27 13:00:00,419.03 +2021-10-27 14:00:00,452.4 +2021-10-27 15:00:00,484.72 +2021-10-27 16:00:00,498.15 +2021-10-27 17:00:00,501.37 +2021-10-27 18:00:00,500.66 +2021-10-27 19:00:00,496.93 +2021-10-27 20:00:00,501.73 +2021-10-27 21:00:00,500.24 +2021-10-27 22:00:00,506.17 +2021-10-27 23:00:00,509.96 +2021-10-28 00:00:00,519.18 +2021-10-28 01:00:00,522.39 +2021-10-28 02:00:00,524.41 +2021-10-28 03:00:00,535.38 +2021-10-28 04:00:00,534.42 +2021-10-28 05:00:00,531.77 +2021-10-28 06:00:00,521.31 +2021-10-28 07:00:00,502.19 +2021-10-28 08:00:00,481.84 +2021-10-28 09:00:00,465.14 +2021-10-28 10:00:00,445.46 +2021-10-28 11:00:00,436.82 +2021-10-28 12:00:00,446.88 +2021-10-28 13:00:00,475.1 +2021-10-28 14:00:00,508.18 +2021-10-28 15:00:00,522.24 +2021-10-28 16:00:00,491.99 +2021-10-28 17:00:00,465.83 +2021-10-28 18:00:00,450.85 +2021-10-28 19:00:00,433.38 +2021-10-28 20:00:00,430.55 +2021-10-28 21:00:00,416.62 +2021-10-28 22:00:00,419.24 +2021-10-28 23:00:00,413.49 +2021-10-29 00:00:00,409.62 +2021-10-29 01:00:00,407.2 +2021-10-29 02:00:00,405.41 +2021-10-29 03:00:00,408.94 +2021-10-29 04:00:00,438.19 +2021-10-29 05:00:00,460.87 +2021-10-29 06:00:00,457.63 +2021-10-29 07:00:00,446.53 +2021-10-29 08:00:00,431.62 +2021-10-29 09:00:00,415.66 +2021-10-29 10:00:00,395.82 +2021-10-29 11:00:00,388.13 +2021-10-29 12:00:00,394.59 +2021-10-29 13:00:00,411.2 +2021-10-29 14:00:00,436.7 +2021-10-29 15:00:00,455.13 +2021-10-29 16:00:00,439.33 +2021-10-29 17:00:00,423.46 +2021-10-29 18:00:00,412.65 +2021-10-29 19:00:00,395.08 +2021-10-29 20:00:00,394.81 +2021-10-29 21:00:00,386.62 +2021-10-29 22:00:00,387.29 +2021-10-29 23:00:00,390.76 +2021-10-30 00:00:00,378.39 +2021-10-30 01:00:00,349.14 +2021-10-30 02:00:00,329.48 +2021-10-30 03:00:00,346.24 +2021-10-30 04:00:00,370.14 +2021-10-30 05:00:00,382.34 +2021-10-30 06:00:00,392.25 +2021-10-30 07:00:00,373.62 +2021-10-30 08:00:00,352.43 +2021-10-30 09:00:00,340.27 +2021-10-30 10:00:00,333.86 +2021-10-30 11:00:00,340.77 +2021-10-30 12:00:00,355.68 +2021-10-30 13:00:00,366.2 +2021-10-30 14:00:00,373.46 +2021-10-30 15:00:00,383.87 +2021-10-30 16:00:00,384.52 +2021-10-30 17:00:00,376.62 +2021-10-30 18:00:00,360.85 +2021-10-30 19:00:00,352.44 +2021-10-30 20:00:00,351.55 +2021-10-30 21:00:00,348.39 +2021-10-30 22:00:00,365.18 +2021-10-30 23:00:00,346.45 +2021-10-31 00:00:00,355.35 +2021-10-31 01:00:00,345.16 +2021-10-31 02:00:00,355.43 +2021-10-31 03:00:00,359.9 +2021-10-31 04:00:00,361.41 +2021-10-31 05:00:00,362.42 +2021-10-31 06:00:00,361.83 +2021-10-31 07:00:00,335.85 +2021-10-31 08:00:00,299.79 +2021-10-31 09:00:00,276.77 +2021-10-31 10:00:00,262.33 +2021-10-31 11:00:00,252.06 +2021-10-31 12:00:00,237.99 +2021-10-31 13:00:00,244.92 +2021-10-31 14:00:00,272.86 +2021-10-31 15:00:00,297.82 +2021-10-31 16:00:00,289.29 +2021-10-31 17:00:00,274.83 +2021-10-31 18:00:00,262.95 +2021-10-31 19:00:00,243.02 +2021-10-31 20:00:00,233.64 +2021-10-31 21:00:00,231.19 +2021-10-31 22:00:00,219.66 +2021-10-31 23:00:00,245.77 +2021-11-01 00:00:00,244.33 +2021-11-01 01:00:00,248.85 +2021-11-01 02:00:00,245.26 +2021-11-01 03:00:00,247.4 +2021-11-01 04:00:00,245.82 +2021-11-01 05:00:00,273.74 +2021-11-01 06:00:00,303.75 +2021-11-01 07:00:00,316.09 +2021-11-01 08:00:00,299.96 +2021-11-01 09:00:00,293.81 +2021-11-01 10:00:00,292.86 +2021-11-01 11:00:00,303.4 +2021-11-01 12:00:00,318.1 +2021-11-01 13:00:00,344.28 +2021-11-01 14:00:00,380.49 +2021-11-01 15:00:00,407.93 +2021-11-01 16:00:00,419.69 +2021-11-01 17:00:00,430.19 +2021-11-01 18:00:00,426.37 +2021-11-01 19:00:00,431.12 +2021-11-01 20:00:00,437.35 +2021-11-01 21:00:00,440.93 +2021-11-01 22:00:00,441.15 +2021-11-01 23:00:00,460.3 +2021-11-02 00:00:00,475.52 +2021-11-02 01:00:00,485.03 +2021-11-02 02:00:00,489.75 +2021-11-02 03:00:00,502.67 +2021-11-02 04:00:00,539.49 +2021-11-02 05:00:00,558.71 +2021-11-02 06:00:00,575.2 +2021-11-02 07:00:00,568.54 +2021-11-02 08:00:00,554.6 +2021-11-02 09:00:00,546.61 +2021-11-02 10:00:00,534.74 +2021-11-02 11:00:00,536.0 +2021-11-02 12:00:00,547.67 +2021-11-02 13:00:00,565.98 +2021-11-02 14:00:00,588.88 +2021-11-02 15:00:00,605.65 +2021-11-02 16:00:00,603.31 +2021-11-02 17:00:00,607.01 +2021-11-02 18:00:00,614.13 +2021-11-02 19:00:00,621.82 +2021-11-02 20:00:00,623.97 +2021-11-02 21:00:00,633.27 +2021-11-02 22:00:00,640.52 +2021-11-02 23:00:00,641.35 +2021-11-03 00:00:00,648.16 +2021-11-03 01:00:00,642.56 +2021-11-03 02:00:00,633.66 +2021-11-03 03:00:00,626.51 +2021-11-03 04:00:00,630.57 +2021-11-03 05:00:00,619.19 +2021-11-03 06:00:00,616.47 +2021-11-03 07:00:00,601.29 +2021-11-03 08:00:00,586.37 +2021-11-03 09:00:00,577.26 +2021-11-03 10:00:00,575.18 +2021-11-03 11:00:00,580.67 +2021-11-03 12:00:00,591.94 +2021-11-03 13:00:00,604.65 +2021-11-03 14:00:00,616.12 +2021-11-03 15:00:00,623.15 +2021-11-03 16:00:00,617.05 +2021-11-03 17:00:00,621.75 +2021-11-03 18:00:00,629.89 +2021-11-03 19:00:00,640.16 +2021-11-03 20:00:00,645.01 +2021-11-03 21:00:00,664.13 +2021-11-03 22:00:00,670.3 +2021-11-03 23:00:00,669.95 +2021-11-04 00:00:00,662.2 +2021-11-04 01:00:00,658.12 +2021-11-04 02:00:00,647.81 +2021-11-04 03:00:00,643.55 +2021-11-04 04:00:00,640.71 +2021-11-04 05:00:00,618.92 +2021-11-04 06:00:00,600.25 +2021-11-04 07:00:00,589.1 +2021-11-04 08:00:00,572.1 +2021-11-04 09:00:00,554.26 +2021-11-04 10:00:00,532.27 +2021-11-04 11:00:00,511.25 +2021-11-04 12:00:00,495.52 +2021-11-04 13:00:00,485.78 +2021-11-04 14:00:00,477.25 +2021-11-04 15:00:00,469.21 +2021-11-04 16:00:00,463.69 +2021-11-04 17:00:00,454.48 +2021-11-04 18:00:00,444.09 +2021-11-04 19:00:00,427.11 +2021-11-04 20:00:00,422.06 +2021-11-04 21:00:00,439.9 +2021-11-04 22:00:00,437.08 +2021-11-04 23:00:00,441.38 +2021-11-05 00:00:00,452.32 +2021-11-05 01:00:00,457.28 +2021-11-05 02:00:00,468.6 +2021-11-05 03:00:00,488.5 +2021-11-05 04:00:00,511.59 +2021-11-05 05:00:00,545.36 +2021-11-05 06:00:00,550.91 +2021-11-05 07:00:00,538.76 +2021-11-05 08:00:00,526.95 +2021-11-05 09:00:00,520.02 +2021-11-05 10:00:00,517.44 +2021-11-05 11:00:00,505.9 +2021-11-05 12:00:00,502.79 +2021-11-05 13:00:00,505.1 +2021-11-05 14:00:00,527.0 +2021-11-05 15:00:00,529.0 +2021-11-05 16:00:00,513.6 +2021-11-05 17:00:00,497.81 +2021-11-05 18:00:00,490.57 +2021-11-05 19:00:00,474.8 +2021-11-05 20:00:00,453.91 +2021-11-05 21:00:00,429.56 +2021-11-05 22:00:00,410.22 +2021-11-05 23:00:00,393.36 +2021-11-06 00:00:00,386.82 +2021-11-06 01:00:00,386.54 +2021-11-06 02:00:00,386.6 +2021-11-06 03:00:00,392.51 +2021-11-06 04:00:00,400.13 +2021-11-06 05:00:00,395.91 +2021-11-06 06:00:00,396.1 +2021-11-06 07:00:00,389.92 +2021-11-06 08:00:00,370.25 +2021-11-06 09:00:00,338.6 +2021-11-06 10:00:00,327.08 +2021-11-06 11:00:00,321.25 +2021-11-06 12:00:00,320.16 +2021-11-06 13:00:00,328.68 +2021-11-06 14:00:00,354.79 +2021-11-06 15:00:00,380.1 +2021-11-06 16:00:00,374.96 +2021-11-06 17:00:00,359.55 +2021-11-06 18:00:00,344.96 +2021-11-06 19:00:00,310.6 +2021-11-06 20:00:00,287.86 +2021-11-06 21:00:00,291.62 +2021-11-06 22:00:00,266.23 +2021-11-06 23:00:00,247.19 +2021-11-07 00:00:00,238.84 +2021-11-07 01:00:00,235.64 +2021-11-07 02:00:00,236.27 +2021-11-07 03:00:00,236.2 +2021-11-07 04:00:00,235.68 +2021-11-07 05:00:00,233.74 +2021-11-07 06:00:00,228.53 +2021-11-07 07:00:00,222.53 +2021-11-07 08:00:00,215.08 +2021-11-07 09:00:00,211.62 +2021-11-07 10:00:00,210.73 +2021-11-07 11:00:00,213.39 +2021-11-07 12:00:00,215.81 +2021-11-07 13:00:00,225.88 +2021-11-07 14:00:00,263.88 +2021-11-07 15:00:00,312.76 +2021-11-07 16:00:00,322.86 +2021-11-07 17:00:00,322.17 +2021-11-07 18:00:00,316.05 +2021-11-07 19:00:00,313.04 +2021-11-07 20:00:00,315.28 +2021-11-07 21:00:00,318.31 +2021-11-07 22:00:00,320.45 +2021-11-07 23:00:00,312.47 +2021-11-08 00:00:00,316.66 +2021-11-08 01:00:00,331.47 +2021-11-08 02:00:00,366.55 +2021-11-08 03:00:00,407.23 +2021-11-08 04:00:00,463.57 +2021-11-08 05:00:00,514.92 +2021-11-08 06:00:00,541.03 +2021-11-08 07:00:00,543.52 +2021-11-08 08:00:00,522.63 +2021-11-08 09:00:00,505.64 +2021-11-08 10:00:00,501.95 +2021-11-08 11:00:00,515.16 +2021-11-08 12:00:00,532.82 +2021-11-08 13:00:00,553.07 +2021-11-08 14:00:00,594.08 +2021-11-08 15:00:00,616.57 +2021-11-08 16:00:00,623.09 +2021-11-08 17:00:00,629.49 +2021-11-08 18:00:00,639.77 +2021-11-08 19:00:00,645.13 +2021-11-08 20:00:00,651.63 +2021-11-08 21:00:00,652.71 +2021-11-08 22:00:00,653.76 +2021-11-08 23:00:00,654.47 +2021-11-09 00:00:00,647.16 +2021-11-09 01:00:00,638.74 +2021-11-09 02:00:00,629.14 +2021-11-09 03:00:00,620.49 +2021-11-09 04:00:00,610.4 +2021-11-09 05:00:00,599.63 +2021-11-09 06:00:00,576.63 +2021-11-09 07:00:00,554.48 +2021-11-09 08:00:00,519.25 +2021-11-09 09:00:00,477.38 +2021-11-09 10:00:00,438.11 +2021-11-09 11:00:00,416.01 +2021-11-09 12:00:00,426.07 +2021-11-09 13:00:00,472.11 +2021-11-09 14:00:00,534.76 +2021-11-09 15:00:00,566.42 +2021-11-09 16:00:00,546.44 +2021-11-09 17:00:00,535.14 +2021-11-09 18:00:00,530.24 +2021-11-09 19:00:00,532.09 +2021-11-09 20:00:00,541.04 +2021-11-09 21:00:00,546.95 +2021-11-09 22:00:00,536.65 +2021-11-09 23:00:00,512.29 +2021-11-10 00:00:00,497.31 +2021-11-10 01:00:00,508.94 +2021-11-10 02:00:00,537.19 +2021-11-10 03:00:00,570.14 +2021-11-10 04:00:00,592.99 +2021-11-10 05:00:00,609.9 +2021-11-10 06:00:00,604.98 +2021-11-10 07:00:00,580.88 +2021-11-10 08:00:00,560.43 +2021-11-10 09:00:00,549.41 +2021-11-10 10:00:00,546.82 +2021-11-10 11:00:00,559.49 +2021-11-10 12:00:00,583.98 +2021-11-10 13:00:00,615.9 +2021-11-10 14:00:00,650.87 +2021-11-10 15:00:00,664.75 +2021-11-10 16:00:00,660.27 +2021-11-10 17:00:00,664.06 +2021-11-10 18:00:00,666.38 +2021-11-10 19:00:00,670.6 +2021-11-10 20:00:00,675.07 +2021-11-10 21:00:00,682.14 +2021-11-10 22:00:00,688.4 +2021-11-10 23:00:00,678.95 +2021-11-11 00:00:00,668.92 +2021-11-11 01:00:00,663.43 +2021-11-11 02:00:00,660.2 +2021-11-11 03:00:00,656.52 +2021-11-11 04:00:00,650.87 +2021-11-11 05:00:00,638.9 +2021-11-11 06:00:00,633.41 +2021-11-11 07:00:00,613.47 +2021-11-11 08:00:00,592.99 +2021-11-11 09:00:00,568.29 +2021-11-11 10:00:00,553.79 +2021-11-11 11:00:00,551.46 +2021-11-11 12:00:00,560.11 +2021-11-11 13:00:00,575.97 +2021-11-11 14:00:00,604.24 +2021-11-11 15:00:00,632.79 +2021-11-11 16:00:00,633.98 +2021-11-11 17:00:00,647.1 +2021-11-11 18:00:00,652.68 +2021-11-11 19:00:00,654.41 +2021-11-11 20:00:00,657.44 +2021-11-11 21:00:00,662.05 +2021-11-11 22:00:00,659.46 +2021-11-11 23:00:00,662.79 +2021-11-12 00:00:00,658.87 +2021-11-12 01:00:00,656.06 +2021-11-12 02:00:00,656.25 +2021-11-12 03:00:00,656.54 +2021-11-12 04:00:00,653.36 +2021-11-12 05:00:00,629.28 +2021-11-12 06:00:00,619.9 +2021-11-12 07:00:00,604.83 +2021-11-12 08:00:00,582.71 +2021-11-12 09:00:00,570.51 +2021-11-12 10:00:00,553.11 +2021-11-12 11:00:00,549.7 +2021-11-12 12:00:00,545.06 +2021-11-12 13:00:00,551.54 +2021-11-12 14:00:00,557.07 +2021-11-12 15:00:00,555.66 +2021-11-12 16:00:00,548.74 +2021-11-12 17:00:00,535.28 +2021-11-12 18:00:00,526.45 +2021-11-12 19:00:00,512.24 +2021-11-12 20:00:00,504.11 +2021-11-12 21:00:00,509.61 +2021-11-12 22:00:00,510.47 +2021-11-12 23:00:00,508.34 +2021-11-13 00:00:00,504.19 +2021-11-13 01:00:00,500.15 +2021-11-13 02:00:00,502.99 +2021-11-13 03:00:00,506.77 +2021-11-13 04:00:00,520.18 +2021-11-13 05:00:00,549.72 +2021-11-13 06:00:00,566.6 +2021-11-13 07:00:00,575.3 +2021-11-13 08:00:00,575.89 +2021-11-13 09:00:00,584.83 +2021-11-13 10:00:00,588.77 +2021-11-13 11:00:00,600.41 +2021-11-13 12:00:00,611.33 +2021-11-13 13:00:00,627.17 +2021-11-13 14:00:00,641.1 +2021-11-13 15:00:00,646.33 +2021-11-13 16:00:00,650.21 +2021-11-13 17:00:00,658.18 +2021-11-13 18:00:00,661.14 +2021-11-13 19:00:00,664.86 +2021-11-13 20:00:00,672.81 +2021-11-13 21:00:00,674.38 +2021-11-13 22:00:00,670.61 +2021-11-13 23:00:00,654.38 +2021-11-14 00:00:00,643.42 +2021-11-14 01:00:00,631.33 +2021-11-14 02:00:00,622.1 +2021-11-14 03:00:00,613.79 +2021-11-14 04:00:00,614.33 +2021-11-14 05:00:00,610.96 +2021-11-14 06:00:00,608.04 +2021-11-14 07:00:00,608.32 +2021-11-14 08:00:00,601.29 +2021-11-14 09:00:00,590.87 +2021-11-14 10:00:00,587.69 +2021-11-14 11:00:00,590.89 +2021-11-14 12:00:00,588.91 +2021-11-14 13:00:00,595.92 +2021-11-14 14:00:00,601.52 +2021-11-14 15:00:00,588.36 +2021-11-14 16:00:00,582.79 +2021-11-14 17:00:00,582.03 +2021-11-14 18:00:00,589.31 +2021-11-14 19:00:00,592.55 +2021-11-14 20:00:00,593.71 +2021-11-14 21:00:00,596.4 +2021-11-14 22:00:00,592.91 +2021-11-14 23:00:00,590.92 +2021-11-15 00:00:00,587.02 +2021-11-15 01:00:00,585.73 +2021-11-15 02:00:00,586.92 +2021-11-15 03:00:00,594.81 +2021-11-15 04:00:00,603.19 +2021-11-15 05:00:00,609.67 +2021-11-15 06:00:00,623.3 +2021-11-15 07:00:00,623.73 +2021-11-15 08:00:00,624.39 +2021-11-15 09:00:00,626.45 +2021-11-15 10:00:00,621.26 +2021-11-15 11:00:00,620.4 +2021-11-15 12:00:00,624.94 +2021-11-15 13:00:00,631.61 +2021-11-15 14:00:00,642.55 +2021-11-15 15:00:00,641.71 +2021-11-15 16:00:00,631.32 +2021-11-15 17:00:00,641.19 +2021-11-15 18:00:00,651.05 +2021-11-15 19:00:00,662.94 +2021-11-15 20:00:00,665.17 +2021-11-15 21:00:00,663.25 +2021-11-15 22:00:00,658.66 +2021-11-15 23:00:00,657.35 +2021-11-16 00:00:00,655.51 +2021-11-16 01:00:00,657.66 +2021-11-16 02:00:00,664.93 +2021-11-16 03:00:00,673.22 +2021-11-16 04:00:00,671.37 +2021-11-16 05:00:00,667.92 +2021-11-16 06:00:00,667.32 +2021-11-16 07:00:00,652.54 +2021-11-16 08:00:00,650.9 +2021-11-16 09:00:00,646.21 +2021-11-16 10:00:00,647.6 +2021-11-16 11:00:00,651.72 +2021-11-16 12:00:00,661.16 +2021-11-16 13:00:00,674.41 +2021-11-16 14:00:00,673.04 +2021-11-16 15:00:00,678.16 +2021-11-16 16:00:00,666.85 +2021-11-16 17:00:00,673.87 +2021-11-16 18:00:00,684.49 +2021-11-16 19:00:00,686.53 +2021-11-16 20:00:00,686.26 +2021-11-16 21:00:00,685.35 +2021-11-16 22:00:00,677.91 +2021-11-16 23:00:00,662.52 +2021-11-17 00:00:00,646.5 +2021-11-17 01:00:00,632.19 +2021-11-17 02:00:00,617.71 +2021-11-17 03:00:00,611.53 +2021-11-17 04:00:00,603.32 +2021-11-17 05:00:00,596.28 +2021-11-17 06:00:00,579.76 +2021-11-17 07:00:00,568.57 +2021-11-17 08:00:00,557.54 +2021-11-17 09:00:00,542.44 +2021-11-17 10:00:00,535.59 +2021-11-17 11:00:00,536.09 +2021-11-17 12:00:00,531.68 +2021-11-17 13:00:00,528.62 +2021-11-17 14:00:00,528.08 +2021-11-17 15:00:00,523.84 +2021-11-17 16:00:00,519.52 +2021-11-17 17:00:00,511.16 +2021-11-17 18:00:00,505.6 +2021-11-17 19:00:00,496.66 +2021-11-17 20:00:00,485.4 +2021-11-17 21:00:00,470.03 +2021-11-17 22:00:00,450.23 +2021-11-17 23:00:00,427.15 +2021-11-18 00:00:00,410.83 +2021-11-18 01:00:00,411.69 +2021-11-18 02:00:00,432.07 +2021-11-18 03:00:00,443.8 +2021-11-18 04:00:00,454.43 +2021-11-18 05:00:00,468.79 +2021-11-18 06:00:00,471.24 +2021-11-18 07:00:00,469.27 +2021-11-18 08:00:00,463.7 +2021-11-18 09:00:00,449.16 +2021-11-18 10:00:00,432.24 +2021-11-18 11:00:00,411.09 +2021-11-18 12:00:00,407.07 +2021-11-18 13:00:00,407.22 +2021-11-18 14:00:00,412.85 +2021-11-18 15:00:00,411.71 +2021-11-18 16:00:00,403.87 +2021-11-18 17:00:00,393.04 +2021-11-18 18:00:00,386.19 +2021-11-18 19:00:00,366.69 +2021-11-18 20:00:00,351.98 +2021-11-18 21:00:00,348.72 +2021-11-18 22:00:00,340.47 +2021-11-18 23:00:00,325.98 +2021-11-19 00:00:00,312.02 +2021-11-19 01:00:00,321.58 +2021-11-19 02:00:00,329.69 +2021-11-19 03:00:00,348.63 +2021-11-19 04:00:00,368.14 +2021-11-19 05:00:00,396.65 +2021-11-19 06:00:00,421.37 +2021-11-19 07:00:00,419.36 +2021-11-19 08:00:00,413.03 +2021-11-19 09:00:00,402.64 +2021-11-19 10:00:00,396.89 +2021-11-19 11:00:00,394.37 +2021-11-19 12:00:00,398.45 +2021-11-19 13:00:00,414.44 +2021-11-19 14:00:00,436.82 +2021-11-19 15:00:00,441.67 +2021-11-19 16:00:00,437.14 +2021-11-19 17:00:00,434.94 +2021-11-19 18:00:00,438.92 +2021-11-19 19:00:00,436.39 +2021-11-19 20:00:00,436.8 +2021-11-19 21:00:00,445.36 +2021-11-19 22:00:00,441.43 +2021-11-19 23:00:00,434.81 +2021-11-20 00:00:00,441.54 +2021-11-20 01:00:00,447.18 +2021-11-20 02:00:00,444.09 +2021-11-20 03:00:00,449.27 +2021-11-20 04:00:00,461.5 +2021-11-20 05:00:00,464.42 +2021-11-20 06:00:00,465.6 +2021-11-20 07:00:00,465.87 +2021-11-20 08:00:00,461.22 +2021-11-20 09:00:00,446.88 +2021-11-20 10:00:00,433.6 +2021-11-20 11:00:00,429.85 +2021-11-20 12:00:00,430.58 +2021-11-20 13:00:00,437.5 +2021-11-20 14:00:00,449.87 +2021-11-20 15:00:00,461.85 +2021-11-20 16:00:00,462.47 +2021-11-20 17:00:00,459.37 +2021-11-20 18:00:00,452.08 +2021-11-20 19:00:00,438.36 +2021-11-20 20:00:00,429.34 +2021-11-20 21:00:00,423.29 +2021-11-20 22:00:00,412.96 +2021-11-20 23:00:00,417.17 +2021-11-21 00:00:00,422.06 +2021-11-21 01:00:00,430.73 +2021-11-21 02:00:00,449.26 +2021-11-21 03:00:00,459.71 +2021-11-21 04:00:00,461.3 +2021-11-21 05:00:00,471.03 +2021-11-21 06:00:00,485.48 +2021-11-21 07:00:00,517.47 +2021-11-21 08:00:00,527.68 +2021-11-21 09:00:00,523.73 +2021-11-21 10:00:00,518.57 +2021-11-21 11:00:00,522.68 +2021-11-21 12:00:00,536.51 +2021-11-21 13:00:00,550.98 +2021-11-21 14:00:00,571.36 +2021-11-21 15:00:00,573.83 +2021-11-21 16:00:00,566.78 +2021-11-21 17:00:00,555.11 +2021-11-21 18:00:00,552.54 +2021-11-21 19:00:00,557.27 +2021-11-21 20:00:00,545.39 +2021-11-21 21:00:00,550.29 +2021-11-21 22:00:00,555.66 +2021-11-21 23:00:00,557.76 +2021-11-22 00:00:00,545.02 +2021-11-22 01:00:00,552.13 +2021-11-22 02:00:00,553.93 +2021-11-22 03:00:00,563.51 +2021-11-22 04:00:00,575.11 +2021-11-22 05:00:00,571.45 +2021-11-22 06:00:00,567.77 +2021-11-22 07:00:00,569.97 +2021-11-22 08:00:00,565.5 +2021-11-22 09:00:00,547.39 +2021-11-22 10:00:00,527.3 +2021-11-22 11:00:00,521.04 +2021-11-22 12:00:00,526.53 +2021-11-22 13:00:00,551.44 +2021-11-22 14:00:00,566.81 +2021-11-22 15:00:00,574.63 +2021-11-22 16:00:00,571.54 +2021-11-22 17:00:00,562.64 +2021-11-22 18:00:00,546.97 +2021-11-22 19:00:00,533.47 +2021-11-22 20:00:00,521.38 +2021-11-22 21:00:00,509.42 +2021-11-22 22:00:00,497.29 +2021-11-22 23:00:00,486.05 +2021-11-23 00:00:00,484.66 +2021-11-23 01:00:00,475.85 +2021-11-23 02:00:00,488.0 +2021-11-23 03:00:00,500.34 +2021-11-23 04:00:00,506.64 +2021-11-23 05:00:00,529.9 +2021-11-23 06:00:00,552.76 +2021-11-23 07:00:00,556.24 +2021-11-23 08:00:00,550.31 +2021-11-23 09:00:00,541.47 +2021-11-23 10:00:00,526.81 +2021-11-23 11:00:00,525.93 +2021-11-23 12:00:00,537.86 +2021-11-23 13:00:00,558.08 +2021-11-23 14:00:00,580.65 +2021-11-23 15:00:00,588.1 +2021-11-23 16:00:00,592.15 +2021-11-23 17:00:00,594.14 +2021-11-23 18:00:00,596.61 +2021-11-23 19:00:00,600.29 +2021-11-23 20:00:00,605.72 +2021-11-23 21:00:00,602.84 +2021-11-23 22:00:00,598.19 +2021-11-23 23:00:00,601.85 +2021-11-24 00:00:00,607.54 +2021-11-24 01:00:00,608.58 +2021-11-24 02:00:00,611.68 +2021-11-24 03:00:00,624.89 +2021-11-24 04:00:00,633.22 +2021-11-24 05:00:00,635.35 +2021-11-24 06:00:00,635.11 +2021-11-24 07:00:00,621.99 +2021-11-24 08:00:00,604.75 +2021-11-24 09:00:00,589.71 +2021-11-24 10:00:00,578.91 +2021-11-24 11:00:00,575.26 +2021-11-24 12:00:00,589.35 +2021-11-24 13:00:00,609.96 +2021-11-24 14:00:00,628.15 +2021-11-24 15:00:00,636.08 +2021-11-24 16:00:00,629.53 +2021-11-24 17:00:00,626.58 +2021-11-24 18:00:00,626.11 +2021-11-24 19:00:00,626.46 +2021-11-24 20:00:00,625.1 +2021-11-24 21:00:00,629.41 +2021-11-24 22:00:00,635.82 +2021-11-24 23:00:00,629.88 +2021-11-25 00:00:00,633.52 +2021-11-25 01:00:00,639.44 +2021-11-25 02:00:00,640.12 +2021-11-25 03:00:00,639.99 +2021-11-25 04:00:00,636.1 +2021-11-25 05:00:00,629.16 +2021-11-25 06:00:00,616.22 +2021-11-25 07:00:00,598.8 +2021-11-25 08:00:00,583.39 +2021-11-25 09:00:00,576.63 +2021-11-25 10:00:00,571.66 +2021-11-25 11:00:00,563.35 +2021-11-25 12:00:00,559.69 +2021-11-25 13:00:00,559.51 +2021-11-25 14:00:00,564.21 +2021-11-25 15:00:00,560.17 +2021-11-25 16:00:00,554.48 +2021-11-25 17:00:00,548.79 +2021-11-25 18:00:00,551.56 +2021-11-25 19:00:00,553.25 +2021-11-25 20:00:00,560.87 +2021-11-25 21:00:00,562.97 +2021-11-25 22:00:00,565.96 +2021-11-25 23:00:00,571.17 +2021-11-26 00:00:00,584.79 +2021-11-26 01:00:00,594.16 +2021-11-26 02:00:00,599.32 +2021-11-26 03:00:00,600.63 +2021-11-26 04:00:00,606.81 +2021-11-26 05:00:00,611.49 +2021-11-26 06:00:00,593.19 +2021-11-26 07:00:00,582.98 +2021-11-26 08:00:00,571.69 +2021-11-26 09:00:00,556.91 +2021-11-26 10:00:00,542.89 +2021-11-26 11:00:00,535.13 +2021-11-26 12:00:00,528.71 +2021-11-26 13:00:00,527.93 +2021-11-26 14:00:00,528.79 +2021-11-26 15:00:00,521.86 +2021-11-26 16:00:00,510.08 +2021-11-26 17:00:00,498.92 +2021-11-26 18:00:00,491.02 +2021-11-26 19:00:00,484.24 +2021-11-26 20:00:00,487.01 +2021-11-26 21:00:00,497.56 +2021-11-26 22:00:00,503.51 +2021-11-26 23:00:00,504.27 +2021-11-27 00:00:00,515.25 +2021-11-27 01:00:00,521.57 +2021-11-27 02:00:00,528.36 +2021-11-27 03:00:00,534.95 +2021-11-27 04:00:00,541.51 +2021-11-27 05:00:00,550.53 +2021-11-27 06:00:00,565.48 +2021-11-27 07:00:00,577.32 +2021-11-27 08:00:00,581.45 +2021-11-27 09:00:00,584.2 +2021-11-27 10:00:00,587.06 +2021-11-27 11:00:00,589.82 +2021-11-27 12:00:00,601.94 +2021-11-27 13:00:00,617.52 +2021-11-27 14:00:00,633.35 +2021-11-27 15:00:00,635.75 +2021-11-27 16:00:00,623.39 +2021-11-27 17:00:00,618.88 +2021-11-27 18:00:00,624.32 +2021-11-27 19:00:00,633.4 +2021-11-27 20:00:00,628.2 +2021-11-27 21:00:00,636.03 +2021-11-27 22:00:00,640.96 +2021-11-27 23:00:00,639.05 +2021-11-28 00:00:00,644.53 +2021-11-28 01:00:00,643.74 +2021-11-28 02:00:00,642.7 +2021-11-28 03:00:00,646.79 +2021-11-28 04:00:00,649.79 +2021-11-28 05:00:00,645.9 +2021-11-28 06:00:00,653.02 +2021-11-28 07:00:00,640.97 +2021-11-28 08:00:00,637.09 +2021-11-28 09:00:00,625.09 +2021-11-28 10:00:00,609.15 +2021-11-28 11:00:00,604.82 +2021-11-28 12:00:00,610.82 +2021-11-28 13:00:00,626.81 +2021-11-28 14:00:00,639.44 +2021-11-28 15:00:00,637.87 +2021-11-28 16:00:00,623.42 +2021-11-28 17:00:00,616.57 +2021-11-28 18:00:00,612.13 +2021-11-28 19:00:00,622.68 +2021-11-28 20:00:00,623.86 +2021-11-28 21:00:00,627.78 +2021-11-28 22:00:00,628.29 +2021-11-28 23:00:00,629.64 +2021-11-29 00:00:00,626.58 +2021-11-29 01:00:00,633.72 +2021-11-29 02:00:00,628.5 +2021-11-29 03:00:00,630.23 +2021-11-29 04:00:00,637.73 +2021-11-29 05:00:00,628.18 +2021-11-29 06:00:00,630.81 +2021-11-29 07:00:00,622.0 +2021-11-29 08:00:00,605.75 +2021-11-29 09:00:00,598.76 +2021-11-29 10:00:00,594.65 +2021-11-29 11:00:00,593.89 +2021-11-29 12:00:00,604.44 +2021-11-29 13:00:00,617.89 +2021-11-29 14:00:00,626.72 +2021-11-29 15:00:00,629.38 +2021-11-29 16:00:00,629.57 +2021-11-29 17:00:00,627.42 +2021-11-29 18:00:00,621.46 +2021-11-29 19:00:00,604.63 +2021-11-29 20:00:00,562.61 +2021-11-29 21:00:00,528.15 +2021-11-29 22:00:00,484.56 +2021-11-29 23:00:00,432.83 +2021-11-30 00:00:00,386.86 +2021-11-30 01:00:00,342.08 +2021-11-30 02:00:00,309.52 +2021-11-30 03:00:00,287.25 +2021-11-30 04:00:00,283.1 +2021-11-30 05:00:00,276.87 +2021-11-30 06:00:00,296.96 +2021-11-30 07:00:00,311.15 +2021-11-30 08:00:00,328.79 +2021-11-30 09:00:00,327.94 +2021-11-30 10:00:00,327.23 +2021-11-30 11:00:00,326.37 +2021-11-30 12:00:00,323.89 +2021-11-30 13:00:00,335.71 +2021-11-30 14:00:00,348.84 +2021-11-30 15:00:00,361.97 +2021-11-30 16:00:00,386.12 +2021-11-30 17:00:00,408.77 +2021-11-30 18:00:00,440.6 +2021-11-30 19:00:00,469.24 +2021-11-30 20:00:00,477.4 +2021-11-30 21:00:00,486.54 +2021-11-30 22:00:00,484.27 +2021-11-30 23:00:00,453.53 +2021-12-01 00:00:00,407.76 +2021-12-01 01:00:00,378.35 +2021-12-01 02:00:00,349.45 +2021-12-01 03:00:00,329.13 +2021-12-01 04:00:00,323.25 +2021-12-01 05:00:00,316.04 +2021-12-01 06:00:00,305.5 +2021-12-01 07:00:00,288.66 +2021-12-01 08:00:00,277.12 +2021-12-01 09:00:00,271.18 +2021-12-01 10:00:00,267.6 +2021-12-01 11:00:00,267.68 +2021-12-01 12:00:00,276.68 +2021-12-01 13:00:00,290.76 +2021-12-01 14:00:00,296.18 +2021-12-01 15:00:00,298.2 +2021-12-01 16:00:00,304.41 +2021-12-01 17:00:00,300.06 +2021-12-01 18:00:00,295.01 +2021-12-01 19:00:00,287.65 +2021-12-01 20:00:00,287.6 +2021-12-01 21:00:00,291.11 +2021-12-01 22:00:00,284.71 +2021-12-01 23:00:00,279.21 +2021-12-02 00:00:00,278.52 +2021-12-02 01:00:00,293.09 +2021-12-02 02:00:00,332.91 +2021-12-02 03:00:00,375.28 +2021-12-02 04:00:00,423.67 +2021-12-02 05:00:00,460.15 +2021-12-02 06:00:00,486.34 +2021-12-02 07:00:00,503.64 +2021-12-02 08:00:00,511.28 +2021-12-02 09:00:00,502.93 +2021-12-02 10:00:00,499.74 +2021-12-02 11:00:00,509.02 +2021-12-02 12:00:00,529.05 +2021-12-02 13:00:00,550.88 +2021-12-02 14:00:00,578.07 +2021-12-02 15:00:00,581.52 +2021-12-02 16:00:00,580.88 +2021-12-02 17:00:00,579.27 +2021-12-02 18:00:00,570.11 +2021-12-02 19:00:00,557.25 +2021-12-02 20:00:00,551.78 +2021-12-02 21:00:00,531.72 +2021-12-02 22:00:00,502.69 +2021-12-02 23:00:00,484.01 +2021-12-03 00:00:00,465.43 +2021-12-03 01:00:00,444.25 +2021-12-03 02:00:00,424.89 +2021-12-03 03:00:00,425.69 +2021-12-03 04:00:00,419.92 +2021-12-03 05:00:00,427.45 +2021-12-03 06:00:00,427.95 +2021-12-03 07:00:00,411.66 +2021-12-03 08:00:00,395.06 +2021-12-03 09:00:00,371.22 +2021-12-03 10:00:00,354.23 +2021-12-03 11:00:00,343.94 +2021-12-03 12:00:00,339.85 +2021-12-03 13:00:00,345.84 +2021-12-03 14:00:00,351.88 +2021-12-03 15:00:00,353.91 +2021-12-03 16:00:00,350.66 +2021-12-03 17:00:00,338.24 +2021-12-03 18:00:00,332.75 +2021-12-03 19:00:00,333.03 +2021-12-03 20:00:00,348.29 +2021-12-03 21:00:00,372.24 +2021-12-03 22:00:00,400.47 +2021-12-03 23:00:00,429.75 +2021-12-04 00:00:00,454.23 +2021-12-04 01:00:00,488.18 +2021-12-04 02:00:00,518.57 +2021-12-04 03:00:00,537.4 +2021-12-04 04:00:00,555.96 +2021-12-04 05:00:00,578.54 +2021-12-04 06:00:00,588.61 +2021-12-04 07:00:00,584.22 +2021-12-04 08:00:00,582.21 +2021-12-04 09:00:00,571.62 +2021-12-04 10:00:00,557.08 +2021-12-04 11:00:00,549.45 +2021-12-04 12:00:00,550.25 +2021-12-04 13:00:00,550.24 +2021-12-04 14:00:00,541.86 +2021-12-04 15:00:00,529.7 +2021-12-04 16:00:00,523.86 +2021-12-04 17:00:00,517.43 +2021-12-04 18:00:00,504.82 +2021-12-04 19:00:00,492.84 +2021-12-04 20:00:00,490.51 +2021-12-04 21:00:00,493.26 +2021-12-04 22:00:00,489.87 +2021-12-04 23:00:00,469.16 +2021-12-05 00:00:00,450.11 +2021-12-05 01:00:00,438.97 +2021-12-05 02:00:00,450.51 +2021-12-05 03:00:00,460.28 +2021-12-05 04:00:00,477.43 +2021-12-05 05:00:00,495.2 +2021-12-05 06:00:00,511.16 +2021-12-05 07:00:00,518.49 +2021-12-05 08:00:00,515.46 +2021-12-05 09:00:00,511.27 +2021-12-05 10:00:00,511.35 +2021-12-05 11:00:00,522.46 +2021-12-05 12:00:00,540.57 +2021-12-05 13:00:00,557.88 +2021-12-05 14:00:00,572.84 +2021-12-05 15:00:00,572.27 +2021-12-05 16:00:00,562.17 +2021-12-05 17:00:00,555.99 +2021-12-05 18:00:00,556.01 +2021-12-05 19:00:00,567.34 +2021-12-05 20:00:00,576.09 +2021-12-05 21:00:00,580.41 +2021-12-05 22:00:00,578.75 +2021-12-05 23:00:00,580.85 +2021-12-06 00:00:00,596.71 +2021-12-06 01:00:00,600.66 +2021-12-06 02:00:00,604.77 +2021-12-06 03:00:00,610.82 +2021-12-06 04:00:00,613.99 +2021-12-06 05:00:00,628.22 +2021-12-06 06:00:00,636.12 +2021-12-06 07:00:00,623.49 +2021-12-06 08:00:00,616.84 +2021-12-06 09:00:00,601.24 +2021-12-06 10:00:00,592.15 +2021-12-06 11:00:00,588.0 +2021-12-06 12:00:00,586.33 +2021-12-06 13:00:00,585.27 +2021-12-06 14:00:00,581.76 +2021-12-06 15:00:00,573.23 +2021-12-06 16:00:00,564.24 +2021-12-06 17:00:00,550.05 +2021-12-06 18:00:00,535.16 +2021-12-06 19:00:00,521.34 +2021-12-06 20:00:00,517.93 +2021-12-06 21:00:00,515.87 +2021-12-06 22:00:00,502.35 +2021-12-06 23:00:00,469.76 +2021-12-07 00:00:00,457.7 +2021-12-07 01:00:00,449.69 +2021-12-07 02:00:00,466.47 +2021-12-07 03:00:00,499.34 +2021-12-07 04:00:00,529.31 +2021-12-07 05:00:00,551.6 +2021-12-07 06:00:00,556.85 +2021-12-07 07:00:00,560.31 +2021-12-07 08:00:00,564.05 +2021-12-07 09:00:00,561.58 +2021-12-07 10:00:00,555.55 +2021-12-07 11:00:00,549.38 +2021-12-07 12:00:00,554.91 +2021-12-07 13:00:00,566.72 +2021-12-07 14:00:00,570.33 +2021-12-07 15:00:00,561.9 +2021-12-07 16:00:00,541.14 +2021-12-07 17:00:00,513.72 +2021-12-07 18:00:00,480.1 +2021-12-07 19:00:00,455.9 +2021-12-07 20:00:00,423.03 +2021-12-07 21:00:00,391.72 +2021-12-07 22:00:00,360.28 +2021-12-07 23:00:00,323.59 +2021-12-08 00:00:00,316.27 +2021-12-08 01:00:00,314.63 +2021-12-08 02:00:00,317.21 +2021-12-08 03:00:00,323.38 +2021-12-08 04:00:00,341.77 +2021-12-08 05:00:00,398.51 +2021-12-08 06:00:00,439.78 +2021-12-08 07:00:00,462.73 +2021-12-08 08:00:00,471.63 +2021-12-08 09:00:00,482.03 +2021-12-08 10:00:00,492.24 +2021-12-08 11:00:00,506.18 +2021-12-08 12:00:00,522.01 +2021-12-08 13:00:00,536.12 +2021-12-08 14:00:00,553.03 +2021-12-08 15:00:00,560.39 +2021-12-08 16:00:00,561.17 +2021-12-08 17:00:00,563.99 +2021-12-08 18:00:00,567.91 +2021-12-08 19:00:00,576.5 +2021-12-08 20:00:00,592.67 +2021-12-08 21:00:00,599.14 +2021-12-08 22:00:00,607.33 +2021-12-08 23:00:00,613.61 +2021-12-09 00:00:00,614.92 +2021-12-09 01:00:00,621.82 +2021-12-09 02:00:00,628.66 +2021-12-09 03:00:00,628.83 +2021-12-09 04:00:00,623.43 +2021-12-09 05:00:00,617.28 +2021-12-09 06:00:00,628.91 +2021-12-09 07:00:00,636.01 +2021-12-09 08:00:00,634.49 +2021-12-09 09:00:00,629.65 +2021-12-09 10:00:00,624.15 +2021-12-09 11:00:00,625.52 +2021-12-09 12:00:00,625.95 +2021-12-09 13:00:00,636.3 +2021-12-09 14:00:00,642.34 +2021-12-09 15:00:00,636.81 +2021-12-09 16:00:00,634.62 +2021-12-09 17:00:00,630.79 +2021-12-09 18:00:00,616.63 +2021-12-09 19:00:00,605.98 +2021-12-09 20:00:00,600.17 +2021-12-09 21:00:00,594.61 +2021-12-09 22:00:00,593.35 +2021-12-09 23:00:00,584.36 +2021-12-10 00:00:00,579.0 +2021-12-10 01:00:00,577.43 +2021-12-10 02:00:00,564.61 +2021-12-10 03:00:00,570.23 +2021-12-10 04:00:00,578.68 +2021-12-10 05:00:00,584.75 +2021-12-10 06:00:00,589.34 +2021-12-10 07:00:00,584.78 +2021-12-10 08:00:00,585.1 +2021-12-10 09:00:00,587.2 +2021-12-10 10:00:00,592.71 +2021-12-10 11:00:00,600.78 +2021-12-10 12:00:00,611.09 +2021-12-10 13:00:00,630.54 +2021-12-10 14:00:00,639.66 +2021-12-10 15:00:00,638.4 +2021-12-10 16:00:00,639.84 +2021-12-10 17:00:00,646.89 +2021-12-10 18:00:00,649.18 +2021-12-10 19:00:00,650.14 +2021-12-10 20:00:00,651.45 +2021-12-10 21:00:00,659.65 +2021-12-10 22:00:00,661.66 +2021-12-10 23:00:00,657.07 +2021-12-11 00:00:00,655.8 +2021-12-11 01:00:00,646.59 +2021-12-11 02:00:00,643.91 +2021-12-11 03:00:00,644.16 +2021-12-11 04:00:00,643.9 +2021-12-11 05:00:00,644.07 +2021-12-11 06:00:00,639.23 +2021-12-11 07:00:00,624.65 +2021-12-11 08:00:00,606.83 +2021-12-11 09:00:00,585.79 +2021-12-11 10:00:00,572.95 +2021-12-11 11:00:00,564.73 +2021-12-11 12:00:00,565.68 +2021-12-11 13:00:00,572.77 +2021-12-11 14:00:00,588.19 +2021-12-11 15:00:00,591.42 +2021-12-11 16:00:00,582.8 +2021-12-11 17:00:00,574.79 +2021-12-11 18:00:00,578.17 +2021-12-11 19:00:00,568.57 +2021-12-11 20:00:00,553.93 +2021-12-11 21:00:00,532.68 +2021-12-11 22:00:00,510.9 +2021-12-11 23:00:00,483.75 +2021-12-12 00:00:00,459.58 +2021-12-12 01:00:00,450.77 +2021-12-12 02:00:00,444.45 +2021-12-12 03:00:00,429.81 +2021-12-12 04:00:00,424.51 +2021-12-12 05:00:00,407.47 +2021-12-12 06:00:00,392.45 +2021-12-12 07:00:00,390.13 +2021-12-12 08:00:00,400.18 +2021-12-12 09:00:00,409.77 +2021-12-12 10:00:00,413.68 +2021-12-12 11:00:00,431.03 +2021-12-12 12:00:00,457.45 +2021-12-12 13:00:00,483.53 +2021-12-12 14:00:00,507.47 +2021-12-12 15:00:00,514.79 +2021-12-12 16:00:00,518.71 +2021-12-12 17:00:00,520.0 +2021-12-12 18:00:00,529.27 +2021-12-12 19:00:00,536.89 +2021-12-12 20:00:00,546.28 +2021-12-12 21:00:00,551.82 +2021-12-12 22:00:00,548.81 +2021-12-12 23:00:00,540.58 +2021-12-13 00:00:00,537.44 +2021-12-13 01:00:00,536.48 +2021-12-13 02:00:00,539.33 +2021-12-13 03:00:00,548.6 +2021-12-13 04:00:00,558.65 +2021-12-13 05:00:00,567.99 +2021-12-13 06:00:00,581.57 +2021-12-13 07:00:00,580.88 +2021-12-13 08:00:00,569.27 +2021-12-13 09:00:00,560.24 +2021-12-13 10:00:00,548.35 +2021-12-13 11:00:00,549.12 +2021-12-13 12:00:00,560.61 +2021-12-13 13:00:00,573.41 +2021-12-13 14:00:00,585.39 +2021-12-13 15:00:00,587.66 +2021-12-13 16:00:00,582.25 +2021-12-13 17:00:00,580.84 +2021-12-13 18:00:00,576.92 +2021-12-13 19:00:00,572.57 +2021-12-13 20:00:00,574.97 +2021-12-13 21:00:00,574.73 +2021-12-13 22:00:00,562.94 +2021-12-13 23:00:00,548.8 +2021-12-14 00:00:00,539.12 +2021-12-14 01:00:00,545.58 +2021-12-14 02:00:00,551.9 +2021-12-14 03:00:00,557.89 +2021-12-14 04:00:00,562.15 +2021-12-14 05:00:00,572.01 +2021-12-14 06:00:00,574.16 +2021-12-14 07:00:00,575.9 +2021-12-14 08:00:00,577.2 +2021-12-14 09:00:00,585.63 +2021-12-14 10:00:00,593.51 +2021-12-14 11:00:00,608.82 +2021-12-14 12:00:00,619.71 +2021-12-14 13:00:00,627.42 +2021-12-14 14:00:00,628.44 +2021-12-14 15:00:00,620.76 +2021-12-14 16:00:00,616.65 +2021-12-14 17:00:00,610.06 +2021-12-14 18:00:00,605.03 +2021-12-14 19:00:00,608.77 +2021-12-14 20:00:00,594.71 +2021-12-14 21:00:00,576.55 +2021-12-14 22:00:00,555.02 +2021-12-14 23:00:00,531.12 +2021-12-15 00:00:00,523.46 +2021-12-15 01:00:00,514.1 +2021-12-15 02:00:00,513.16 +2021-12-15 03:00:00,516.07 +2021-12-15 04:00:00,517.54 +2021-12-15 05:00:00,523.27 +2021-12-15 06:00:00,522.07 +2021-12-15 07:00:00,520.93 +2021-12-15 08:00:00,515.06 +2021-12-15 09:00:00,507.59 +2021-12-15 10:00:00,501.0 +2021-12-15 11:00:00,500.1 +2021-12-15 12:00:00,508.66 +2021-12-15 13:00:00,518.62 +2021-12-15 14:00:00,531.36 +2021-12-15 15:00:00,535.74 +2021-12-15 16:00:00,538.02 +2021-12-15 17:00:00,539.02 +2021-12-15 18:00:00,538.74 +2021-12-15 19:00:00,535.83 +2021-12-15 20:00:00,526.63 +2021-12-15 21:00:00,524.7 +2021-12-15 22:00:00,523.45 +2021-12-15 23:00:00,516.27 +2021-12-16 00:00:00,519.12 +2021-12-16 01:00:00,529.81 +2021-12-16 02:00:00,541.56 +2021-12-16 03:00:00,555.12 +2021-12-16 04:00:00,565.54 +2021-12-16 05:00:00,575.75 +2021-12-16 06:00:00,579.2 +2021-12-16 07:00:00,590.71 +2021-12-16 08:00:00,592.14 +2021-12-16 09:00:00,592.72 +2021-12-16 10:00:00,590.41 +2021-12-16 11:00:00,588.87 +2021-12-16 12:00:00,589.02 +2021-12-16 13:00:00,595.48 +2021-12-16 14:00:00,606.87 +2021-12-16 15:00:00,612.21 +2021-12-16 16:00:00,610.39 +2021-12-16 17:00:00,611.73 +2021-12-16 18:00:00,612.68 +2021-12-16 19:00:00,601.65 +2021-12-16 20:00:00,596.92 +2021-12-16 21:00:00,597.46 +2021-12-16 22:00:00,596.36 +2021-12-16 23:00:00,582.36 +2021-12-17 00:00:00,585.6 +2021-12-17 01:00:00,584.7 +2021-12-17 02:00:00,591.37 +2021-12-17 03:00:00,598.82 +2021-12-17 04:00:00,610.75 +2021-12-17 05:00:00,612.68 +2021-12-17 06:00:00,614.84 +2021-12-17 07:00:00,612.55 +2021-12-17 08:00:00,606.22 +2021-12-17 09:00:00,598.67 +2021-12-17 10:00:00,597.27 +2021-12-17 11:00:00,602.78 +2021-12-17 12:00:00,609.66 +2021-12-17 13:00:00,616.17 +2021-12-17 14:00:00,626.73 +2021-12-17 15:00:00,627.34 +2021-12-17 16:00:00,625.7 +2021-12-17 17:00:00,626.1 +2021-12-17 18:00:00,620.93 +2021-12-17 19:00:00,613.65 +2021-12-17 20:00:00,608.34 +2021-12-17 21:00:00,611.78 +2021-12-17 22:00:00,613.89 +2021-12-17 23:00:00,601.18 +2021-12-18 00:00:00,604.63 +2021-12-18 01:00:00,601.23 +2021-12-18 02:00:00,596.88 +2021-12-18 03:00:00,592.74 +2021-12-18 04:00:00,589.52 +2021-12-18 05:00:00,594.04 +2021-12-18 06:00:00,585.73 +2021-12-18 07:00:00,578.0 +2021-12-18 08:00:00,559.31 +2021-12-18 09:00:00,535.64 +2021-12-18 10:00:00,518.69 +2021-12-18 11:00:00,512.32 +2021-12-18 12:00:00,510.5 +2021-12-18 13:00:00,514.03 +2021-12-18 14:00:00,516.65 +2021-12-18 15:00:00,510.08 +2021-12-18 16:00:00,501.32 +2021-12-18 17:00:00,489.76 +2021-12-18 18:00:00,476.9 +2021-12-18 19:00:00,458.48 +2021-12-18 20:00:00,431.49 +2021-12-18 21:00:00,412.58 +2021-12-18 22:00:00,367.51 +2021-12-18 23:00:00,363.72 +2021-12-19 00:00:00,339.79 +2021-12-19 01:00:00,321.58 +2021-12-19 02:00:00,311.06 +2021-12-19 03:00:00,320.24 +2021-12-19 04:00:00,325.97 +2021-12-19 05:00:00,333.13 +2021-12-19 06:00:00,358.97 +2021-12-19 07:00:00,376.76 +2021-12-19 08:00:00,382.15 +2021-12-19 09:00:00,373.41 +2021-12-19 10:00:00,365.8 +2021-12-19 11:00:00,361.61 +2021-12-19 12:00:00,366.43 +2021-12-19 13:00:00,385.19 +2021-12-19 14:00:00,399.77 +2021-12-19 15:00:00,416.9 +2021-12-19 16:00:00,432.16 +2021-12-19 17:00:00,451.65 +2021-12-19 18:00:00,470.43 +2021-12-19 19:00:00,487.31 +2021-12-19 20:00:00,500.08 +2021-12-19 21:00:00,505.71 +2021-12-19 22:00:00,514.16 +2021-12-19 23:00:00,525.91 +2021-12-20 00:00:00,532.35 +2021-12-20 01:00:00,543.04 +2021-12-20 02:00:00,556.25 +2021-12-20 03:00:00,571.01 +2021-12-20 04:00:00,574.29 +2021-12-20 05:00:00,578.37 +2021-12-20 06:00:00,594.02 +2021-12-20 07:00:00,606.88 +2021-12-20 08:00:00,597.32 +2021-12-20 09:00:00,584.64 +2021-12-20 10:00:00,574.27 +2021-12-20 11:00:00,568.87 +2021-12-20 12:00:00,586.99 +2021-12-20 13:00:00,624.94 +2021-12-20 14:00:00,675.25 +2021-12-20 15:00:00,685.45 +2021-12-20 16:00:00,678.36 +2021-12-20 17:00:00,672.53 +2021-12-20 18:00:00,669.5 +2021-12-20 19:00:00,684.09 +2021-12-20 20:00:00,683.6 +2021-12-20 21:00:00,682.89 +2021-12-20 22:00:00,678.93 +2021-12-20 23:00:00,677.63 +2021-12-21 00:00:00,679.7 +2021-12-21 01:00:00,678.8 +2021-12-21 02:00:00,679.86 +2021-12-21 03:00:00,681.36 +2021-12-21 04:00:00,685.54 +2021-12-21 05:00:00,688.16 +2021-12-21 06:00:00,698.38 +2021-12-21 07:00:00,686.15 +2021-12-21 08:00:00,666.12 +2021-12-21 09:00:00,639.89 +2021-12-21 10:00:00,621.19 +2021-12-21 11:00:00,610.44 +2021-12-21 12:00:00,622.46 +2021-12-21 13:00:00,650.23 +2021-12-21 14:00:00,685.4 +2021-12-21 15:00:00,702.78 +2021-12-21 16:00:00,684.13 +2021-12-21 17:00:00,680.25 +2021-12-21 18:00:00,680.23 +2021-12-21 19:00:00,689.26 +2021-12-21 20:00:00,680.33 +2021-12-21 21:00:00,668.17 +2021-12-21 22:00:00,666.44 +2021-12-21 23:00:00,653.3 +2021-12-22 00:00:00,650.18 +2021-12-22 01:00:00,648.92 +2021-12-22 02:00:00,645.61 +2021-12-22 03:00:00,642.5 +2021-12-22 04:00:00,643.92 +2021-12-22 05:00:00,643.73 +2021-12-22 06:00:00,649.71 +2021-12-22 07:00:00,636.07 +2021-12-22 08:00:00,606.25 +2021-12-22 09:00:00,579.19 +2021-12-22 10:00:00,564.28 +2021-12-22 11:00:00,565.83 +2021-12-22 12:00:00,588.43 +2021-12-22 13:00:00,627.09 +2021-12-22 14:00:00,657.7 +2021-12-22 15:00:00,653.63 +2021-12-22 16:00:00,642.36 +2021-12-22 17:00:00,634.8 +2021-12-22 18:00:00,629.4 +2021-12-22 19:00:00,618.62 +2021-12-22 20:00:00,612.74 +2021-12-22 21:00:00,607.74 +2021-12-22 22:00:00,607.1 +2021-12-22 23:00:00,605.93 +2021-12-23 00:00:00,612.34 +2021-12-23 01:00:00,612.37 +2021-12-23 02:00:00,609.41 +2021-12-23 03:00:00,595.41 +2021-12-23 04:00:00,593.56 +2021-12-23 05:00:00,588.08 +2021-12-23 06:00:00,579.89 +2021-12-23 07:00:00,569.25 +2021-12-23 08:00:00,557.0 +2021-12-23 09:00:00,546.46 +2021-12-23 10:00:00,538.52 +2021-12-23 11:00:00,526.74 +2021-12-23 12:00:00,526.28 +2021-12-23 13:00:00,531.0 +2021-12-23 14:00:00,533.9 +2021-12-23 15:00:00,528.06 +2021-12-23 16:00:00,517.77 +2021-12-23 17:00:00,501.66 +2021-12-23 18:00:00,487.87 +2021-12-23 19:00:00,465.2 +2021-12-23 20:00:00,442.0 +2021-12-23 21:00:00,431.5 +2021-12-23 22:00:00,404.46 +2021-12-23 23:00:00,386.5 +2021-12-24 00:00:00,385.62 +2021-12-24 01:00:00,392.07 +2021-12-24 02:00:00,398.85 +2021-12-24 03:00:00,407.91 +2021-12-24 04:00:00,414.33 +2021-12-24 05:00:00,415.99 +2021-12-24 06:00:00,433.22 +2021-12-24 07:00:00,447.92 +2021-12-24 08:00:00,449.01 +2021-12-24 09:00:00,446.35 +2021-12-24 10:00:00,431.92 +2021-12-24 11:00:00,428.54 +2021-12-24 12:00:00,432.39 +2021-12-24 13:00:00,435.23 +2021-12-24 14:00:00,437.38 +2021-12-24 15:00:00,442.84 +2021-12-24 16:00:00,456.28 +2021-12-24 17:00:00,474.69 +2021-12-24 18:00:00,485.37 +2021-12-24 19:00:00,499.02 +2021-12-24 20:00:00,516.57 +2021-12-24 21:00:00,538.53 +2021-12-24 22:00:00,552.3 +2021-12-24 23:00:00,560.17 +2021-12-25 00:00:00,569.0 +2021-12-25 01:00:00,560.54 +2021-12-25 02:00:00,559.35 +2021-12-25 03:00:00,552.96 +2021-12-25 04:00:00,552.77 +2021-12-25 05:00:00,568.45 +2021-12-25 06:00:00,562.41 +2021-12-25 07:00:00,546.11 +2021-12-25 08:00:00,528.73 +2021-12-25 09:00:00,520.09 +2021-12-25 10:00:00,523.12 +2021-12-25 11:00:00,522.99 +2021-12-25 12:00:00,537.44 +2021-12-25 13:00:00,556.42 +2021-12-25 14:00:00,582.22 +2021-12-25 15:00:00,579.16 +2021-12-25 16:00:00,571.9 +2021-12-25 17:00:00,569.79 +2021-12-25 18:00:00,566.99 +2021-12-25 19:00:00,564.96 +2021-12-25 20:00:00,558.64 +2021-12-25 21:00:00,559.22 +2021-12-25 22:00:00,565.35 +2021-12-25 23:00:00,567.36 +2021-12-26 00:00:00,566.51 +2021-12-26 01:00:00,569.16 +2021-12-26 02:00:00,566.78 +2021-12-26 03:00:00,565.17 +2021-12-26 04:00:00,554.37 +2021-12-26 05:00:00,543.71 +2021-12-26 06:00:00,541.94 +2021-12-26 07:00:00,536.88 +2021-12-26 08:00:00,520.3 +2021-12-26 09:00:00,504.13 +2021-12-26 10:00:00,497.9 +2021-12-26 11:00:00,494.6 +2021-12-26 12:00:00,503.33 +2021-12-26 13:00:00,515.77 +2021-12-26 14:00:00,521.66 +2021-12-26 15:00:00,501.01 +2021-12-26 16:00:00,481.38 +2021-12-26 17:00:00,470.95 +2021-12-26 18:00:00,466.23 +2021-12-26 19:00:00,463.03 +2021-12-26 20:00:00,466.03 +2021-12-26 21:00:00,471.38 +2021-12-26 22:00:00,467.42 +2021-12-26 23:00:00,455.61 +2021-12-27 00:00:00,451.28 +2021-12-27 01:00:00,450.98 +2021-12-27 02:00:00,449.57 +2021-12-27 03:00:00,453.16 +2021-12-27 04:00:00,482.71 +2021-12-27 05:00:00,494.5 +2021-12-27 06:00:00,505.46 +2021-12-27 07:00:00,502.68 +2021-12-27 08:00:00,496.9 +2021-12-27 09:00:00,491.23 +2021-12-27 10:00:00,490.33 +2021-12-27 11:00:00,496.93 +2021-12-27 12:00:00,506.75 +2021-12-27 13:00:00,510.12 +2021-12-27 14:00:00,507.96 +2021-12-27 15:00:00,496.15 +2021-12-27 16:00:00,496.25 +2021-12-27 17:00:00,495.37 +2021-12-27 18:00:00,489.58 +2021-12-27 19:00:00,467.29 +2021-12-27 20:00:00,433.27 +2021-12-27 21:00:00,418.56 +2021-12-27 22:00:00,382.87 +2021-12-27 23:00:00,343.67 +2021-12-28 00:00:00,319.12 +2021-12-28 01:00:00,317.83 +2021-12-28 02:00:00,316.73 +2021-12-28 03:00:00,321.34 +2021-12-28 04:00:00,325.96 +2021-12-28 05:00:00,376.06 +2021-12-28 06:00:00,442.6 +2021-12-28 07:00:00,456.02 +2021-12-28 08:00:00,444.35 +2021-12-28 09:00:00,428.57 +2021-12-28 10:00:00,421.83 +2021-12-28 11:00:00,417.16 +2021-12-28 12:00:00,416.97 +2021-12-28 13:00:00,415.16 +2021-12-28 14:00:00,412.08 +2021-12-28 15:00:00,417.04 +2021-12-28 16:00:00,435.33 +2021-12-28 17:00:00,455.29 +2021-12-28 18:00:00,469.28 +2021-12-28 19:00:00,475.15 +2021-12-28 20:00:00,483.87 +2021-12-28 21:00:00,493.59 +2021-12-28 22:00:00,500.02 +2021-12-28 23:00:00,503.25 +2021-12-29 00:00:00,499.08 +2021-12-29 01:00:00,489.75 +2021-12-29 02:00:00,481.08 +2021-12-29 03:00:00,489.22 +2021-12-29 04:00:00,517.23 +2021-12-29 05:00:00,535.81 +2021-12-29 06:00:00,556.87 +2021-12-29 07:00:00,559.52 +2021-12-29 08:00:00,553.64 +2021-12-29 09:00:00,554.67 +2021-12-29 10:00:00,552.03 +2021-12-29 11:00:00,544.91 +2021-12-29 12:00:00,545.17 +2021-12-29 13:00:00,548.37 +2021-12-29 14:00:00,544.14 +2021-12-29 15:00:00,530.0 +2021-12-29 16:00:00,517.79 +2021-12-29 17:00:00,508.6 +2021-12-29 18:00:00,494.52 +2021-12-29 19:00:00,470.62 +2021-12-29 20:00:00,438.49 +2021-12-29 21:00:00,413.54 +2021-12-29 22:00:00,357.37 +2021-12-29 23:00:00,279.54 +2021-12-30 00:00:00,249.63 +2021-12-30 01:00:00,240.33 +2021-12-30 02:00:00,245.37 +2021-12-30 03:00:00,245.53 +2021-12-30 04:00:00,242.81 +2021-12-30 05:00:00,243.11 +2021-12-30 06:00:00,280.84 +2021-12-30 07:00:00,282.55 +2021-12-30 08:00:00,275.03 +2021-12-30 09:00:00,264.72 +2021-12-30 10:00:00,258.61 +2021-12-30 11:00:00,244.09 +2021-12-30 12:00:00,229.55 +2021-12-30 13:00:00,226.36 +2021-12-30 14:00:00,229.61 +2021-12-30 15:00:00,237.28 +2021-12-30 16:00:00,250.3 +2021-12-30 17:00:00,256.94 +2021-12-30 18:00:00,245.48 +2021-12-30 19:00:00,226.33 +2021-12-30 20:00:00,210.09 +2021-12-30 21:00:00,212.75 +2021-12-30 22:00:00,211.91 +2021-12-30 23:00:00,197.2 +2021-12-31 00:00:00,198.16 +2021-12-31 01:00:00,195.6 +2021-12-31 02:00:00,196.97 +2021-12-31 03:00:00,193.66 +2021-12-31 04:00:00,193.22 +2021-12-31 05:00:00,194.01 +2021-12-31 06:00:00,198.45 +2021-12-31 07:00:00,200.12 +2021-12-31 08:00:00,193.5 +2021-12-31 09:00:00,183.98 +2021-12-31 10:00:00,178.58 +2021-12-31 11:00:00,179.83 +2021-12-31 12:00:00,181.96 +2021-12-31 13:00:00,177.2 +2021-12-31 14:00:00,184.65 +2021-12-31 15:00:00,192.27 +2021-12-31 16:00:00,200.01 +2021-12-31 17:00:00,196.11 +2021-12-31 18:00:00,186.99 +2021-12-31 19:00:00,185.96 +2021-12-31 20:00:00,194.84 +2021-12-31 21:00:00,206.25 +2021-12-31 22:00:00,207.79 +2021-12-31 23:00:00,212.48 diff --git a/input_files/data/carbon/elec_carbon_intensity_average_2021_GER_to_2019_virtual.csv b/input_files/data/carbon/elec_carbon_intensity_average_2021_GER_to_2019_virtual.csv new file mode 100644 index 0000000000000000000000000000000000000000..55d32ca09f718b1e287023e71c4637b453f718d7 --- /dev/null +++ b/input_files/data/carbon/elec_carbon_intensity_average_2021_GER_to_2019_virtual.csv @@ -0,0 +1,8761 @@ +datetime,values +2019-01-01 00:00:00,541.56 +2019-01-01 01:00:00,548.3 +2019-01-01 02:00:00,558.65 +2019-01-01 03:00:00,558.97 +2019-01-01 04:00:00,570.36 +2019-01-01 05:00:00,577.87 +2019-01-01 06:00:00,573.77 +2019-01-01 07:00:00,572.17 +2019-01-01 08:00:00,556.69 +2019-01-01 09:00:00,533.41 +2019-01-01 10:00:00,519.5 +2019-01-01 11:00:00,513.14 +2019-01-01 12:00:00,518.62 +2019-01-01 13:00:00,533.77 +2019-01-01 14:00:00,550.12 +2019-01-01 15:00:00,549.07 +2019-01-01 16:00:00,549.16 +2019-01-01 17:00:00,546.25 +2019-01-01 18:00:00,544.49 +2019-01-01 19:00:00,543.76 +2019-01-01 20:00:00,536.1 +2019-01-01 21:00:00,526.68 +2019-01-01 22:00:00,524.43 +2019-01-01 23:00:00,527.39 +2019-01-02 00:00:00,526.54 +2019-01-02 01:00:00,522.46 +2019-01-02 02:00:00,522.61 +2019-01-02 03:00:00,530.71 +2019-01-02 04:00:00,543.01 +2019-01-02 05:00:00,554.76 +2019-01-02 06:00:00,569.13 +2019-01-02 07:00:00,583.64 +2019-01-02 08:00:00,584.03 +2019-01-02 09:00:00,580.23 +2019-01-02 10:00:00,575.46 +2019-01-02 11:00:00,575.42 +2019-01-02 12:00:00,584.52 +2019-01-02 13:00:00,595.96 +2019-01-02 14:00:00,606.33 +2019-01-02 15:00:00,605.3 +2019-01-02 16:00:00,593.55 +2019-01-02 17:00:00,582.99 +2019-01-02 18:00:00,577.63 +2019-01-02 19:00:00,574.84 +2019-01-02 20:00:00,567.18 +2019-01-02 21:00:00,549.67 +2019-01-02 22:00:00,521.27 +2019-01-02 23:00:00,488.75 +2019-01-03 00:00:00,468.6 +2019-01-03 01:00:00,442.78 +2019-01-03 02:00:00,420.22 +2019-01-03 03:00:00,395.39 +2019-01-03 04:00:00,376.12 +2019-01-03 05:00:00,367.09 +2019-01-03 06:00:00,370.23 +2019-01-03 07:00:00,385.88 +2019-01-03 08:00:00,394.31 +2019-01-03 09:00:00,393.69 +2019-01-03 10:00:00,397.39 +2019-01-03 11:00:00,398.85 +2019-01-03 12:00:00,396.45 +2019-01-03 13:00:00,390.54 +2019-01-03 14:00:00,397.64 +2019-01-03 15:00:00,398.76 +2019-01-03 16:00:00,409.34 +2019-01-03 17:00:00,413.45 +2019-01-03 18:00:00,420.0 +2019-01-03 19:00:00,412.63 +2019-01-03 20:00:00,414.45 +2019-01-03 21:00:00,417.06 +2019-01-03 22:00:00,413.89 +2019-01-03 23:00:00,417.05 +2019-01-04 00:00:00,432.32 +2019-01-04 01:00:00,442.58 +2019-01-04 02:00:00,446.38 +2019-01-04 03:00:00,449.37 +2019-01-04 04:00:00,456.9 +2019-01-04 05:00:00,498.52 +2019-01-04 06:00:00,523.03 +2019-01-04 07:00:00,524.7 +2019-01-04 08:00:00,527.66 +2019-01-04 09:00:00,528.14 +2019-01-04 10:00:00,531.66 +2019-01-04 11:00:00,519.95 +2019-01-04 12:00:00,527.18 +2019-01-04 13:00:00,526.37 +2019-01-04 14:00:00,534.23 +2019-01-04 15:00:00,536.99 +2019-01-04 16:00:00,542.97 +2019-01-04 17:00:00,542.65 +2019-01-04 18:00:00,544.36 +2019-01-04 19:00:00,546.8 +2019-01-04 20:00:00,549.03 +2019-01-04 21:00:00,547.52 +2019-01-04 22:00:00,544.17 +2019-01-04 23:00:00,521.76 +2019-01-05 00:00:00,515.43 +2019-01-05 01:00:00,516.11 +2019-01-05 02:00:00,517.28 +2019-01-05 03:00:00,520.54 +2019-01-05 04:00:00,535.3 +2019-01-05 05:00:00,551.02 +2019-01-05 06:00:00,564.76 +2019-01-05 07:00:00,565.94 +2019-01-05 08:00:00,568.11 +2019-01-05 09:00:00,555.85 +2019-01-05 10:00:00,555.21 +2019-01-05 11:00:00,552.07 +2019-01-05 12:00:00,556.63 +2019-01-05 13:00:00,553.67 +2019-01-05 14:00:00,556.08 +2019-01-05 15:00:00,552.24 +2019-01-05 16:00:00,547.46 +2019-01-05 17:00:00,550.59 +2019-01-05 18:00:00,555.06 +2019-01-05 19:00:00,550.59 +2019-01-05 20:00:00,543.22 +2019-01-05 21:00:00,536.96 +2019-01-05 22:00:00,522.36 +2019-01-05 23:00:00,506.64 +2019-01-06 00:00:00,503.9 +2019-01-06 01:00:00,505.87 +2019-01-06 02:00:00,507.7 +2019-01-06 03:00:00,519.48 +2019-01-06 04:00:00,534.95 +2019-01-06 05:00:00,555.6 +2019-01-06 06:00:00,575.55 +2019-01-06 07:00:00,594.45 +2019-01-06 08:00:00,604.06 +2019-01-06 09:00:00,613.74 +2019-01-06 10:00:00,621.39 +2019-01-06 11:00:00,618.52 +2019-01-06 12:00:00,627.4 +2019-01-06 13:00:00,637.91 +2019-01-06 14:00:00,646.87 +2019-01-06 15:00:00,642.45 +2019-01-06 16:00:00,633.71 +2019-01-06 17:00:00,631.55 +2019-01-06 18:00:00,642.51 +2019-01-06 19:00:00,646.69 +2019-01-06 20:00:00,642.97 +2019-01-06 21:00:00,633.0 +2019-01-06 22:00:00,621.93 +2019-01-06 23:00:00,608.34 +2019-01-07 00:00:00,604.09 +2019-01-07 01:00:00,597.13 +2019-01-07 02:00:00,592.37 +2019-01-07 03:00:00,596.77 +2019-01-07 04:00:00,612.5 +2019-01-07 05:00:00,641.38 +2019-01-07 06:00:00,648.19 +2019-01-07 07:00:00,647.45 +2019-01-07 08:00:00,641.17 +2019-01-07 09:00:00,635.93 +2019-01-07 10:00:00,632.55 +2019-01-07 11:00:00,630.67 +2019-01-07 12:00:00,637.63 +2019-01-07 13:00:00,649.8 +2019-01-07 14:00:00,660.91 +2019-01-07 15:00:00,665.82 +2019-01-07 16:00:00,649.95 +2019-01-07 17:00:00,642.04 +2019-01-07 18:00:00,640.81 +2019-01-07 19:00:00,644.14 +2019-01-07 20:00:00,643.28 +2019-01-07 21:00:00,641.09 +2019-01-07 22:00:00,632.02 +2019-01-07 23:00:00,621.71 +2019-01-08 00:00:00,614.17 +2019-01-08 01:00:00,612.04 +2019-01-08 02:00:00,609.68 +2019-01-08 03:00:00,612.21 +2019-01-08 04:00:00,633.63 +2019-01-08 05:00:00,648.37 +2019-01-08 06:00:00,656.23 +2019-01-08 07:00:00,659.96 +2019-01-08 08:00:00,655.45 +2019-01-08 09:00:00,647.54 +2019-01-08 10:00:00,636.98 +2019-01-08 11:00:00,638.3 +2019-01-08 12:00:00,647.27 +2019-01-08 13:00:00,652.09 +2019-01-08 14:00:00,663.25 +2019-01-08 15:00:00,661.13 +2019-01-08 16:00:00,647.09 +2019-01-08 17:00:00,649.33 +2019-01-08 18:00:00,657.26 +2019-01-08 19:00:00,661.7 +2019-01-08 20:00:00,657.41 +2019-01-08 21:00:00,657.99 +2019-01-08 22:00:00,639.35 +2019-01-08 23:00:00,622.85 +2019-01-09 00:00:00,617.11 +2019-01-09 01:00:00,618.85 +2019-01-09 02:00:00,619.26 +2019-01-09 03:00:00,619.72 +2019-01-09 04:00:00,625.06 +2019-01-09 05:00:00,634.16 +2019-01-09 06:00:00,653.68 +2019-01-09 07:00:00,671.0 +2019-01-09 08:00:00,675.25 +2019-01-09 09:00:00,664.91 +2019-01-09 10:00:00,655.83 +2019-01-09 11:00:00,653.58 +2019-01-09 12:00:00,658.35 +2019-01-09 13:00:00,668.94 +2019-01-09 14:00:00,688.91 +2019-01-09 15:00:00,697.96 +2019-01-09 16:00:00,683.41 +2019-01-09 17:00:00,677.69 +2019-01-09 18:00:00,681.87 +2019-01-09 19:00:00,683.88 +2019-01-09 20:00:00,675.43 +2019-01-09 21:00:00,663.97 +2019-01-09 22:00:00,649.74 +2019-01-09 23:00:00,631.7 +2019-01-10 00:00:00,613.71 +2019-01-10 01:00:00,604.1 +2019-01-10 02:00:00,595.0 +2019-01-10 03:00:00,589.51 +2019-01-10 04:00:00,585.74 +2019-01-10 05:00:00,580.35 +2019-01-10 06:00:00,580.4 +2019-01-10 07:00:00,578.12 +2019-01-10 08:00:00,568.67 +2019-01-10 09:00:00,542.58 +2019-01-10 10:00:00,523.4 +2019-01-10 11:00:00,506.29 +2019-01-10 12:00:00,495.52 +2019-01-10 13:00:00,501.55 +2019-01-10 14:00:00,524.12 +2019-01-10 15:00:00,537.92 +2019-01-10 16:00:00,525.51 +2019-01-10 17:00:00,521.43 +2019-01-10 18:00:00,520.34 +2019-01-10 19:00:00,521.9 +2019-01-10 20:00:00,520.94 +2019-01-10 21:00:00,522.75 +2019-01-10 22:00:00,503.14 +2019-01-10 23:00:00,485.24 +2019-01-11 00:00:00,466.21 +2019-01-11 01:00:00,453.76 +2019-01-11 02:00:00,446.27 +2019-01-11 03:00:00,442.86 +2019-01-11 04:00:00,453.21 +2019-01-11 05:00:00,464.73 +2019-01-11 06:00:00,463.51 +2019-01-11 07:00:00,459.26 +2019-01-11 08:00:00,454.64 +2019-01-11 09:00:00,445.04 +2019-01-11 10:00:00,441.74 +2019-01-11 11:00:00,438.73 +2019-01-11 12:00:00,438.04 +2019-01-11 13:00:00,438.77 +2019-01-11 14:00:00,440.29 +2019-01-11 15:00:00,436.71 +2019-01-11 16:00:00,428.79 +2019-01-11 17:00:00,414.71 +2019-01-11 18:00:00,399.21 +2019-01-11 19:00:00,374.52 +2019-01-11 20:00:00,334.53 +2019-01-11 21:00:00,318.34 +2019-01-11 22:00:00,299.81 +2019-01-11 23:00:00,273.64 +2019-01-12 00:00:00,268.86 +2019-01-12 01:00:00,274.95 +2019-01-12 02:00:00,282.13 +2019-01-12 03:00:00,303.72 +2019-01-12 04:00:00,341.41 +2019-01-12 05:00:00,391.14 +2019-01-12 06:00:00,421.97 +2019-01-12 07:00:00,440.06 +2019-01-12 08:00:00,445.21 +2019-01-12 09:00:00,446.41 +2019-01-12 10:00:00,450.37 +2019-01-12 11:00:00,446.52 +2019-01-12 12:00:00,438.07 +2019-01-12 13:00:00,440.37 +2019-01-12 14:00:00,454.92 +2019-01-12 15:00:00,458.42 +2019-01-12 16:00:00,452.82 +2019-01-12 17:00:00,439.16 +2019-01-12 18:00:00,432.19 +2019-01-12 19:00:00,421.43 +2019-01-12 20:00:00,406.43 +2019-01-12 21:00:00,400.95 +2019-01-12 22:00:00,381.65 +2019-01-12 23:00:00,362.41 +2019-01-13 00:00:00,353.33 +2019-01-13 01:00:00,349.31 +2019-01-13 02:00:00,346.75 +2019-01-13 03:00:00,355.9 +2019-01-13 04:00:00,375.26 +2019-01-13 05:00:00,398.99 +2019-01-13 06:00:00,398.52 +2019-01-13 07:00:00,402.07 +2019-01-13 08:00:00,393.54 +2019-01-13 09:00:00,376.48 +2019-01-13 10:00:00,355.83 +2019-01-13 11:00:00,344.1 +2019-01-13 12:00:00,334.44 +2019-01-13 13:00:00,335.3 +2019-01-13 14:00:00,345.53 +2019-01-13 15:00:00,352.93 +2019-01-13 16:00:00,356.84 +2019-01-13 17:00:00,354.92 +2019-01-13 18:00:00,356.81 +2019-01-13 19:00:00,356.07 +2019-01-13 20:00:00,357.29 +2019-01-13 21:00:00,361.77 +2019-01-13 22:00:00,350.34 +2019-01-13 23:00:00,323.07 +2019-01-14 00:00:00,319.8 +2019-01-14 01:00:00,327.08 +2019-01-14 02:00:00,348.47 +2019-01-14 03:00:00,400.34 +2019-01-14 04:00:00,454.88 +2019-01-14 05:00:00,507.92 +2019-01-14 06:00:00,554.94 +2019-01-14 07:00:00,576.23 +2019-01-14 08:00:00,596.1 +2019-01-14 09:00:00,600.64 +2019-01-14 10:00:00,598.25 +2019-01-14 11:00:00,602.21 +2019-01-14 12:00:00,613.73 +2019-01-14 13:00:00,624.73 +2019-01-14 14:00:00,633.17 +2019-01-14 15:00:00,634.56 +2019-01-14 16:00:00,616.06 +2019-01-14 17:00:00,623.98 +2019-01-14 18:00:00,633.09 +2019-01-14 19:00:00,631.91 +2019-01-14 20:00:00,626.67 +2019-01-14 21:00:00,624.57 +2019-01-14 22:00:00,611.18 +2019-01-14 23:00:00,599.55 +2019-01-15 00:00:00,593.4 +2019-01-15 01:00:00,590.78 +2019-01-15 02:00:00,585.42 +2019-01-15 03:00:00,585.37 +2019-01-15 04:00:00,595.9 +2019-01-15 05:00:00,619.29 +2019-01-15 06:00:00,629.42 +2019-01-15 07:00:00,619.72 +2019-01-15 08:00:00,621.71 +2019-01-15 09:00:00,617.39 +2019-01-15 10:00:00,613.58 +2019-01-15 11:00:00,612.92 +2019-01-15 12:00:00,614.03 +2019-01-15 13:00:00,623.27 +2019-01-15 14:00:00,632.95 +2019-01-15 15:00:00,641.3 +2019-01-15 16:00:00,637.58 +2019-01-15 17:00:00,648.79 +2019-01-15 18:00:00,661.68 +2019-01-15 19:00:00,685.22 +2019-01-15 20:00:00,690.46 +2019-01-15 21:00:00,679.72 +2019-01-15 22:00:00,659.92 +2019-01-15 23:00:00,641.57 +2019-01-16 00:00:00,632.59 +2019-01-16 01:00:00,625.51 +2019-01-16 02:00:00,626.72 +2019-01-16 03:00:00,626.81 +2019-01-16 04:00:00,627.6 +2019-01-16 05:00:00,633.01 +2019-01-16 06:00:00,641.5 +2019-01-16 07:00:00,642.98 +2019-01-16 08:00:00,638.73 +2019-01-16 09:00:00,624.39 +2019-01-16 10:00:00,607.34 +2019-01-16 11:00:00,590.52 +2019-01-16 12:00:00,580.41 +2019-01-16 13:00:00,586.15 +2019-01-16 14:00:00,593.76 +2019-01-16 15:00:00,596.85 +2019-01-16 16:00:00,597.54 +2019-01-16 17:00:00,593.67 +2019-01-16 18:00:00,598.93 +2019-01-16 19:00:00,595.19 +2019-01-16 20:00:00,579.93 +2019-01-16 21:00:00,578.43 +2019-01-16 22:00:00,574.53 +2019-01-16 23:00:00,572.94 +2019-01-17 00:00:00,571.45 +2019-01-17 01:00:00,573.23 +2019-01-17 02:00:00,575.55 +2019-01-17 03:00:00,574.35 +2019-01-17 04:00:00,573.74 +2019-01-17 05:00:00,584.43 +2019-01-17 06:00:00,589.34 +2019-01-17 07:00:00,603.36 +2019-01-17 08:00:00,612.66 +2019-01-17 09:00:00,616.82 +2019-01-17 10:00:00,615.19 +2019-01-17 11:00:00,615.69 +2019-01-17 12:00:00,625.08 +2019-01-17 13:00:00,636.93 +2019-01-17 14:00:00,644.18 +2019-01-17 15:00:00,647.54 +2019-01-17 16:00:00,634.05 +2019-01-17 17:00:00,632.34 +2019-01-17 18:00:00,623.38 +2019-01-17 19:00:00,615.09 +2019-01-17 20:00:00,602.81 +2019-01-17 21:00:00,584.46 +2019-01-17 22:00:00,564.86 +2019-01-17 23:00:00,552.76 +2019-01-18 00:00:00,549.93 +2019-01-18 01:00:00,552.85 +2019-01-18 02:00:00,552.99 +2019-01-18 03:00:00,549.65 +2019-01-18 04:00:00,550.67 +2019-01-18 05:00:00,556.76 +2019-01-18 06:00:00,551.0 +2019-01-18 07:00:00,542.52 +2019-01-18 08:00:00,531.69 +2019-01-18 09:00:00,522.99 +2019-01-18 10:00:00,507.72 +2019-01-18 11:00:00,495.02 +2019-01-18 12:00:00,486.3 +2019-01-18 13:00:00,474.57 +2019-01-18 14:00:00,473.62 +2019-01-18 15:00:00,464.6 +2019-01-18 16:00:00,457.93 +2019-01-18 17:00:00,453.45 +2019-01-18 18:00:00,438.7 +2019-01-18 19:00:00,418.42 +2019-01-18 20:00:00,408.11 +2019-01-18 21:00:00,405.86 +2019-01-18 22:00:00,389.78 +2019-01-18 23:00:00,373.56 +2019-01-19 00:00:00,367.57 +2019-01-19 01:00:00,367.97 +2019-01-19 02:00:00,375.48 +2019-01-19 03:00:00,369.33 +2019-01-19 04:00:00,368.45 +2019-01-19 05:00:00,382.4 +2019-01-19 06:00:00,399.8 +2019-01-19 07:00:00,403.23 +2019-01-19 08:00:00,400.79 +2019-01-19 09:00:00,396.28 +2019-01-19 10:00:00,397.26 +2019-01-19 11:00:00,412.16 +2019-01-19 12:00:00,426.65 +2019-01-19 13:00:00,435.3 +2019-01-19 14:00:00,440.05 +2019-01-19 15:00:00,447.56 +2019-01-19 16:00:00,441.65 +2019-01-19 17:00:00,432.68 +2019-01-19 18:00:00,413.41 +2019-01-19 19:00:00,379.26 +2019-01-19 20:00:00,336.44 +2019-01-19 21:00:00,313.61 +2019-01-19 22:00:00,276.51 +2019-01-19 23:00:00,259.67 +2019-01-20 00:00:00,265.87 +2019-01-20 01:00:00,269.29 +2019-01-20 02:00:00,275.57 +2019-01-20 03:00:00,277.93 +2019-01-20 04:00:00,291.78 +2019-01-20 05:00:00,309.55 +2019-01-20 06:00:00,333.31 +2019-01-20 07:00:00,343.63 +2019-01-20 08:00:00,336.87 +2019-01-20 09:00:00,329.03 +2019-01-20 10:00:00,321.65 +2019-01-20 11:00:00,317.64 +2019-01-20 12:00:00,321.31 +2019-01-20 13:00:00,331.44 +2019-01-20 14:00:00,336.86 +2019-01-20 15:00:00,338.89 +2019-01-20 16:00:00,328.43 +2019-01-20 17:00:00,334.59 +2019-01-20 18:00:00,321.5 +2019-01-20 19:00:00,303.6 +2019-01-20 20:00:00,282.5 +2019-01-20 21:00:00,269.69 +2019-01-20 22:00:00,257.56 +2019-01-20 23:00:00,241.99 +2019-01-21 00:00:00,237.85 +2019-01-21 01:00:00,234.29 +2019-01-21 02:00:00,229.31 +2019-01-21 03:00:00,226.9 +2019-01-21 04:00:00,220.88 +2019-01-21 05:00:00,216.12 +2019-01-21 06:00:00,242.55 +2019-01-21 07:00:00,279.07 +2019-01-21 08:00:00,281.12 +2019-01-21 09:00:00,269.63 +2019-01-21 10:00:00,259.01 +2019-01-21 11:00:00,262.55 +2019-01-21 12:00:00,267.05 +2019-01-21 13:00:00,285.48 +2019-01-21 14:00:00,307.24 +2019-01-21 15:00:00,317.31 +2019-01-21 16:00:00,318.86 +2019-01-21 17:00:00,325.65 +2019-01-21 18:00:00,326.81 +2019-01-21 19:00:00,312.09 +2019-01-21 20:00:00,285.72 +2019-01-21 21:00:00,265.38 +2019-01-21 22:00:00,237.89 +2019-01-21 23:00:00,219.29 +2019-01-22 00:00:00,217.86 +2019-01-22 01:00:00,215.75 +2019-01-22 02:00:00,217.78 +2019-01-22 03:00:00,220.46 +2019-01-22 04:00:00,232.71 +2019-01-22 05:00:00,279.14 +2019-01-22 06:00:00,335.18 +2019-01-22 07:00:00,363.75 +2019-01-22 08:00:00,387.89 +2019-01-22 09:00:00,396.08 +2019-01-22 10:00:00,417.5 +2019-01-22 11:00:00,426.13 +2019-01-22 12:00:00,433.26 +2019-01-22 13:00:00,450.28 +2019-01-22 14:00:00,479.04 +2019-01-22 15:00:00,495.45 +2019-01-22 16:00:00,502.22 +2019-01-22 17:00:00,503.82 +2019-01-22 18:00:00,499.22 +2019-01-22 19:00:00,499.19 +2019-01-22 20:00:00,504.37 +2019-01-22 21:00:00,506.54 +2019-01-22 22:00:00,512.67 +2019-01-22 23:00:00,514.27 +2019-01-23 00:00:00,518.46 +2019-01-23 01:00:00,521.36 +2019-01-23 02:00:00,520.89 +2019-01-23 03:00:00,512.88 +2019-01-23 04:00:00,512.83 +2019-01-23 05:00:00,516.31 +2019-01-23 06:00:00,516.61 +2019-01-23 07:00:00,510.02 +2019-01-23 08:00:00,500.98 +2019-01-23 09:00:00,488.38 +2019-01-23 10:00:00,483.4 +2019-01-23 11:00:00,491.68 +2019-01-23 12:00:00,503.24 +2019-01-23 13:00:00,528.54 +2019-01-23 14:00:00,564.03 +2019-01-23 15:00:00,591.26 +2019-01-23 16:00:00,592.44 +2019-01-23 17:00:00,588.94 +2019-01-23 18:00:00,585.96 +2019-01-23 19:00:00,599.25 +2019-01-23 20:00:00,607.82 +2019-01-23 21:00:00,609.78 +2019-01-23 22:00:00,602.51 +2019-01-23 23:00:00,594.01 +2019-01-24 00:00:00,573.66 +2019-01-24 01:00:00,545.41 +2019-01-24 02:00:00,523.5 +2019-01-24 03:00:00,522.77 +2019-01-24 04:00:00,526.89 +2019-01-24 05:00:00,528.49 +2019-01-24 06:00:00,540.79 +2019-01-24 07:00:00,553.41 +2019-01-24 08:00:00,556.29 +2019-01-24 09:00:00,552.74 +2019-01-24 10:00:00,550.97 +2019-01-24 11:00:00,552.97 +2019-01-24 12:00:00,560.93 +2019-01-24 13:00:00,567.74 +2019-01-24 14:00:00,583.64 +2019-01-24 15:00:00,602.47 +2019-01-24 16:00:00,608.76 +2019-01-24 17:00:00,612.63 +2019-01-24 18:00:00,622.96 +2019-01-24 19:00:00,624.48 +2019-01-24 20:00:00,622.56 +2019-01-24 21:00:00,618.19 +2019-01-24 22:00:00,615.91 +2019-01-24 23:00:00,618.35 +2019-01-25 00:00:00,626.44 +2019-01-25 01:00:00,628.96 +2019-01-25 02:00:00,633.91 +2019-01-25 03:00:00,637.71 +2019-01-25 04:00:00,670.85 +2019-01-25 05:00:00,681.71 +2019-01-25 06:00:00,673.38 +2019-01-25 07:00:00,666.09 +2019-01-25 08:00:00,664.96 +2019-01-25 09:00:00,655.45 +2019-01-25 10:00:00,640.16 +2019-01-25 11:00:00,637.99 +2019-01-25 12:00:00,631.89 +2019-01-25 13:00:00,630.52 +2019-01-25 14:00:00,632.16 +2019-01-25 15:00:00,634.34 +2019-01-25 16:00:00,629.59 +2019-01-25 17:00:00,621.35 +2019-01-25 18:00:00,615.06 +2019-01-25 19:00:00,607.72 +2019-01-25 20:00:00,603.1 +2019-01-25 21:00:00,595.0 +2019-01-25 22:00:00,580.3 +2019-01-25 23:00:00,554.88 +2019-01-26 00:00:00,541.27 +2019-01-26 01:00:00,529.6 +2019-01-26 02:00:00,525.16 +2019-01-26 03:00:00,527.13 +2019-01-26 04:00:00,547.61 +2019-01-26 05:00:00,570.72 +2019-01-26 06:00:00,584.75 +2019-01-26 07:00:00,589.58 +2019-01-26 08:00:00,587.64 +2019-01-26 09:00:00,585.23 +2019-01-26 10:00:00,574.45 +2019-01-26 11:00:00,569.97 +2019-01-26 12:00:00,573.5 +2019-01-26 13:00:00,582.01 +2019-01-26 14:00:00,592.63 +2019-01-26 15:00:00,594.27 +2019-01-26 16:00:00,582.46 +2019-01-26 17:00:00,579.7 +2019-01-26 18:00:00,577.22 +2019-01-26 19:00:00,570.42 +2019-01-26 20:00:00,559.56 +2019-01-26 21:00:00,535.05 +2019-01-26 22:00:00,522.83 +2019-01-26 23:00:00,515.54 +2019-01-27 00:00:00,511.02 +2019-01-27 01:00:00,502.1 +2019-01-27 02:00:00,495.46 +2019-01-27 03:00:00,500.74 +2019-01-27 04:00:00,531.98 +2019-01-27 05:00:00,565.23 +2019-01-27 06:00:00,583.46 +2019-01-27 07:00:00,583.59 +2019-01-27 08:00:00,577.86 +2019-01-27 09:00:00,569.95 +2019-01-27 10:00:00,569.54 +2019-01-27 11:00:00,576.5 +2019-01-27 12:00:00,590.02 +2019-01-27 13:00:00,601.87 +2019-01-27 14:00:00,612.79 +2019-01-27 15:00:00,610.44 +2019-01-27 16:00:00,599.33 +2019-01-27 17:00:00,601.45 +2019-01-27 18:00:00,603.14 +2019-01-27 19:00:00,604.92 +2019-01-27 20:00:00,593.61 +2019-01-27 21:00:00,572.1 +2019-01-27 22:00:00,553.02 +2019-01-27 23:00:00,543.67 +2019-01-28 00:00:00,540.27 +2019-01-28 01:00:00,536.73 +2019-01-28 02:00:00,530.54 +2019-01-28 03:00:00,531.48 +2019-01-28 04:00:00,549.34 +2019-01-28 05:00:00,584.3 +2019-01-28 06:00:00,597.44 +2019-01-28 07:00:00,597.86 +2019-01-28 08:00:00,588.13 +2019-01-28 09:00:00,575.89 +2019-01-28 10:00:00,564.02 +2019-01-28 11:00:00,561.72 +2019-01-28 12:00:00,559.63 +2019-01-28 13:00:00,551.94 +2019-01-28 14:00:00,554.29 +2019-01-28 15:00:00,566.05 +2019-01-28 16:00:00,560.94 +2019-01-28 17:00:00,561.74 +2019-01-28 18:00:00,548.48 +2019-01-28 19:00:00,557.0 +2019-01-28 20:00:00,552.7 +2019-01-28 21:00:00,540.59 +2019-01-28 22:00:00,505.1 +2019-01-28 23:00:00,470.98 +2019-01-29 00:00:00,452.27 +2019-01-29 01:00:00,444.76 +2019-01-29 02:00:00,425.64 +2019-01-29 03:00:00,412.86 +2019-01-29 04:00:00,415.19 +2019-01-29 05:00:00,427.07 +2019-01-29 06:00:00,439.55 +2019-01-29 07:00:00,434.32 +2019-01-29 08:00:00,424.84 +2019-01-29 09:00:00,410.58 +2019-01-29 10:00:00,388.55 +2019-01-29 11:00:00,385.19 +2019-01-29 12:00:00,377.73 +2019-01-29 13:00:00,380.16 +2019-01-29 14:00:00,392.8 +2019-01-29 15:00:00,413.04 +2019-01-29 16:00:00,427.95 +2019-01-29 17:00:00,438.51 +2019-01-29 18:00:00,442.46 +2019-01-29 19:00:00,428.94 +2019-01-29 20:00:00,423.41 +2019-01-29 21:00:00,423.37 +2019-01-29 22:00:00,418.63 +2019-01-29 23:00:00,405.24 +2019-01-30 00:00:00,399.85 +2019-01-30 01:00:00,404.48 +2019-01-30 02:00:00,409.46 +2019-01-30 03:00:00,419.76 +2019-01-30 04:00:00,445.1 +2019-01-30 05:00:00,473.11 +2019-01-30 06:00:00,510.18 +2019-01-30 07:00:00,537.68 +2019-01-30 08:00:00,547.53 +2019-01-30 09:00:00,544.3 +2019-01-30 10:00:00,542.19 +2019-01-30 11:00:00,545.73 +2019-01-30 12:00:00,549.9 +2019-01-30 13:00:00,541.1 +2019-01-30 14:00:00,543.4 +2019-01-30 15:00:00,545.41 +2019-01-30 16:00:00,539.97 +2019-01-30 17:00:00,545.8 +2019-01-30 18:00:00,555.94 +2019-01-30 19:00:00,552.47 +2019-01-30 20:00:00,541.32 +2019-01-30 21:00:00,528.13 +2019-01-30 22:00:00,518.1 +2019-01-30 23:00:00,511.34 +2019-01-31 00:00:00,507.93 +2019-01-31 01:00:00,495.99 +2019-01-31 02:00:00,483.14 +2019-01-31 03:00:00,482.52 +2019-01-31 04:00:00,482.96 +2019-01-31 05:00:00,503.78 +2019-01-31 06:00:00,512.45 +2019-01-31 07:00:00,513.64 +2019-01-31 08:00:00,508.42 +2019-01-31 09:00:00,501.11 +2019-01-31 10:00:00,488.65 +2019-01-31 11:00:00,488.61 +2019-01-31 12:00:00,489.73 +2019-01-31 13:00:00,502.0 +2019-01-31 14:00:00,528.39 +2019-01-31 15:00:00,556.67 +2019-01-31 16:00:00,551.09 +2019-01-31 17:00:00,545.93 +2019-01-31 18:00:00,546.95 +2019-01-31 19:00:00,535.39 +2019-01-31 20:00:00,510.77 +2019-01-31 21:00:00,495.45 +2019-01-31 22:00:00,489.98 +2019-01-31 23:00:00,479.38 +2019-02-01 00:00:00,467.75 +2019-02-01 01:00:00,458.25 +2019-02-01 02:00:00,448.66 +2019-02-01 03:00:00,452.66 +2019-02-01 04:00:00,480.22 +2019-02-01 05:00:00,515.33 +2019-02-01 06:00:00,537.43 +2019-02-01 07:00:00,545.18 +2019-02-01 08:00:00,547.37 +2019-02-01 09:00:00,549.55 +2019-02-01 10:00:00,552.66 +2019-02-01 11:00:00,565.3 +2019-02-01 12:00:00,575.4 +2019-02-01 13:00:00,589.4 +2019-02-01 14:00:00,593.96 +2019-02-01 15:00:00,603.66 +2019-02-01 16:00:00,601.82 +2019-02-01 17:00:00,613.11 +2019-02-01 18:00:00,621.29 +2019-02-01 19:00:00,627.39 +2019-02-01 20:00:00,633.18 +2019-02-01 21:00:00,632.34 +2019-02-01 22:00:00,613.38 +2019-02-01 23:00:00,595.8 +2019-02-02 00:00:00,575.38 +2019-02-02 01:00:00,560.18 +2019-02-02 02:00:00,553.12 +2019-02-02 03:00:00,556.03 +2019-02-02 04:00:00,577.33 +2019-02-02 05:00:00,599.59 +2019-02-02 06:00:00,611.68 +2019-02-02 07:00:00,602.26 +2019-02-02 08:00:00,592.99 +2019-02-02 09:00:00,581.66 +2019-02-02 10:00:00,570.89 +2019-02-02 11:00:00,558.49 +2019-02-02 12:00:00,555.29 +2019-02-02 13:00:00,555.11 +2019-02-02 14:00:00,554.93 +2019-02-02 15:00:00,558.39 +2019-02-02 16:00:00,551.55 +2019-02-02 17:00:00,547.77 +2019-02-02 18:00:00,536.69 +2019-02-02 19:00:00,501.74 +2019-02-02 20:00:00,459.84 +2019-02-02 21:00:00,434.86 +2019-02-02 22:00:00,409.12 +2019-02-02 23:00:00,363.7 +2019-02-03 00:00:00,337.92 +2019-02-03 01:00:00,332.16 +2019-02-03 02:00:00,328.06 +2019-02-03 03:00:00,338.72 +2019-02-03 04:00:00,360.12 +2019-02-03 05:00:00,406.36 +2019-02-03 06:00:00,450.25 +2019-02-03 07:00:00,462.45 +2019-02-03 08:00:00,464.58 +2019-02-03 09:00:00,459.2 +2019-02-03 10:00:00,458.39 +2019-02-03 11:00:00,462.5 +2019-02-03 12:00:00,448.01 +2019-02-03 13:00:00,429.44 +2019-02-03 14:00:00,418.42 +2019-02-03 15:00:00,420.54 +2019-02-03 16:00:00,424.47 +2019-02-03 17:00:00,427.93 +2019-02-03 18:00:00,419.06 +2019-02-03 19:00:00,394.76 +2019-02-03 20:00:00,359.45 +2019-02-03 21:00:00,346.79 +2019-02-03 22:00:00,339.75 +2019-02-03 23:00:00,333.53 +2019-02-04 00:00:00,326.89 +2019-02-04 01:00:00,323.85 +2019-02-04 02:00:00,328.76 +2019-02-04 03:00:00,349.73 +2019-02-04 04:00:00,383.67 +2019-02-04 05:00:00,441.64 +2019-02-04 06:00:00,484.0 +2019-02-04 07:00:00,506.28 +2019-02-04 08:00:00,500.3 +2019-02-04 09:00:00,490.77 +2019-02-04 10:00:00,492.51 +2019-02-04 11:00:00,498.98 +2019-02-04 12:00:00,514.62 +2019-02-04 13:00:00,537.86 +2019-02-04 14:00:00,575.91 +2019-02-04 15:00:00,604.12 +2019-02-04 16:00:00,605.22 +2019-02-04 17:00:00,601.77 +2019-02-04 18:00:00,605.91 +2019-02-04 19:00:00,605.57 +2019-02-04 20:00:00,593.74 +2019-02-04 21:00:00,576.16 +2019-02-04 22:00:00,556.54 +2019-02-04 23:00:00,531.25 +2019-02-05 00:00:00,505.58 +2019-02-05 01:00:00,492.98 +2019-02-05 02:00:00,484.66 +2019-02-05 03:00:00,477.55 +2019-02-05 04:00:00,482.23 +2019-02-05 05:00:00,521.45 +2019-02-05 06:00:00,522.45 +2019-02-05 07:00:00,511.04 +2019-02-05 08:00:00,492.83 +2019-02-05 09:00:00,476.03 +2019-02-05 10:00:00,464.9 +2019-02-05 11:00:00,459.42 +2019-02-05 12:00:00,453.73 +2019-02-05 13:00:00,455.26 +2019-02-05 14:00:00,467.34 +2019-02-05 15:00:00,471.55 +2019-02-05 16:00:00,469.66 +2019-02-05 17:00:00,473.16 +2019-02-05 18:00:00,477.76 +2019-02-05 19:00:00,471.18 +2019-02-05 20:00:00,453.33 +2019-02-05 21:00:00,429.57 +2019-02-05 22:00:00,392.56 +2019-02-05 23:00:00,352.65 +2019-02-06 00:00:00,320.23 +2019-02-06 01:00:00,297.23 +2019-02-06 02:00:00,283.34 +2019-02-06 03:00:00,278.89 +2019-02-06 04:00:00,275.1 +2019-02-06 05:00:00,272.85 +2019-02-06 06:00:00,278.35 +2019-02-06 07:00:00,302.62 +2019-02-06 08:00:00,301.61 +2019-02-06 09:00:00,293.65 +2019-02-06 10:00:00,294.36 +2019-02-06 11:00:00,293.36 +2019-02-06 12:00:00,286.56 +2019-02-06 13:00:00,278.18 +2019-02-06 14:00:00,273.79 +2019-02-06 15:00:00,269.13 +2019-02-06 16:00:00,252.68 +2019-02-06 17:00:00,252.24 +2019-02-06 18:00:00,246.4 +2019-02-06 19:00:00,235.03 +2019-02-06 20:00:00,230.3 +2019-02-06 21:00:00,230.57 +2019-02-06 22:00:00,226.97 +2019-02-06 23:00:00,234.74 +2019-02-07 00:00:00,235.39 +2019-02-07 01:00:00,235.28 +2019-02-07 02:00:00,237.78 +2019-02-07 03:00:00,238.54 +2019-02-07 04:00:00,239.34 +2019-02-07 05:00:00,240.66 +2019-02-07 06:00:00,241.42 +2019-02-07 07:00:00,241.89 +2019-02-07 08:00:00,233.14 +2019-02-07 09:00:00,236.79 +2019-02-07 10:00:00,249.49 +2019-02-07 11:00:00,258.04 +2019-02-07 12:00:00,251.37 +2019-02-07 13:00:00,245.58 +2019-02-07 14:00:00,249.2 +2019-02-07 15:00:00,263.04 +2019-02-07 16:00:00,275.54 +2019-02-07 17:00:00,299.84 +2019-02-07 18:00:00,300.59 +2019-02-07 19:00:00,286.12 +2019-02-07 20:00:00,273.81 +2019-02-07 21:00:00,279.09 +2019-02-07 22:00:00,280.47 +2019-02-07 23:00:00,288.86 +2019-02-08 00:00:00,304.0 +2019-02-08 01:00:00,313.18 +2019-02-08 02:00:00,323.36 +2019-02-08 03:00:00,336.92 +2019-02-08 04:00:00,369.49 +2019-02-08 05:00:00,400.74 +2019-02-08 06:00:00,438.31 +2019-02-08 07:00:00,456.49 +2019-02-08 08:00:00,465.19 +2019-02-08 09:00:00,467.88 +2019-02-08 10:00:00,464.89 +2019-02-08 11:00:00,465.28 +2019-02-08 12:00:00,468.46 +2019-02-08 13:00:00,483.02 +2019-02-08 14:00:00,501.26 +2019-02-08 15:00:00,518.22 +2019-02-08 16:00:00,523.29 +2019-02-08 17:00:00,526.09 +2019-02-08 18:00:00,534.64 +2019-02-08 19:00:00,544.19 +2019-02-08 20:00:00,554.36 +2019-02-08 21:00:00,560.92 +2019-02-08 22:00:00,559.52 +2019-02-08 23:00:00,543.47 +2019-02-09 00:00:00,539.28 +2019-02-09 01:00:00,541.27 +2019-02-09 02:00:00,539.93 +2019-02-09 03:00:00,543.49 +2019-02-09 04:00:00,554.12 +2019-02-09 05:00:00,576.14 +2019-02-09 06:00:00,579.97 +2019-02-09 07:00:00,582.72 +2019-02-09 08:00:00,576.75 +2019-02-09 09:00:00,571.45 +2019-02-09 10:00:00,569.24 +2019-02-09 11:00:00,569.2 +2019-02-09 12:00:00,588.26 +2019-02-09 13:00:00,609.47 +2019-02-09 14:00:00,617.9 +2019-02-09 15:00:00,627.35 +2019-02-09 16:00:00,626.41 +2019-02-09 17:00:00,621.83 +2019-02-09 18:00:00,628.35 +2019-02-09 19:00:00,623.29 +2019-02-09 20:00:00,615.93 +2019-02-09 21:00:00,618.27 +2019-02-09 22:00:00,610.98 +2019-02-09 23:00:00,595.43 +2019-02-10 00:00:00,594.98 +2019-02-10 01:00:00,598.57 +2019-02-10 02:00:00,594.4 +2019-02-10 03:00:00,590.03 +2019-02-10 04:00:00,596.18 +2019-02-10 05:00:00,605.16 +2019-02-10 06:00:00,597.6 +2019-02-10 07:00:00,595.06 +2019-02-10 08:00:00,591.58 +2019-02-10 09:00:00,591.86 +2019-02-10 10:00:00,587.79 +2019-02-10 11:00:00,586.49 +2019-02-10 12:00:00,591.76 +2019-02-10 13:00:00,595.23 +2019-02-10 14:00:00,602.54 +2019-02-10 15:00:00,609.93 +2019-02-10 16:00:00,597.07 +2019-02-10 17:00:00,587.17 +2019-02-10 18:00:00,590.5 +2019-02-10 19:00:00,602.09 +2019-02-10 20:00:00,618.7 +2019-02-10 21:00:00,617.74 +2019-02-10 22:00:00,611.66 +2019-02-10 23:00:00,608.64 +2019-02-11 00:00:00,600.17 +2019-02-11 01:00:00,597.54 +2019-02-11 02:00:00,598.94 +2019-02-11 03:00:00,607.37 +2019-02-11 04:00:00,631.99 +2019-02-11 05:00:00,646.91 +2019-02-11 06:00:00,627.89 +2019-02-11 07:00:00,622.44 +2019-02-11 08:00:00,620.14 +2019-02-11 09:00:00,617.11 +2019-02-11 10:00:00,614.68 +2019-02-11 11:00:00,606.15 +2019-02-11 12:00:00,610.0 +2019-02-11 13:00:00,614.25 +2019-02-11 14:00:00,616.32 +2019-02-11 15:00:00,628.98 +2019-02-11 16:00:00,623.89 +2019-02-11 17:00:00,617.72 +2019-02-11 18:00:00,615.39 +2019-02-11 19:00:00,629.71 +2019-02-11 20:00:00,630.63 +2019-02-11 21:00:00,615.03 +2019-02-11 22:00:00,602.75 +2019-02-11 23:00:00,584.14 +2019-02-12 00:00:00,576.3 +2019-02-12 01:00:00,566.22 +2019-02-12 02:00:00,553.56 +2019-02-12 03:00:00,542.39 +2019-02-12 04:00:00,549.59 +2019-02-12 05:00:00,565.67 +2019-02-12 06:00:00,567.2 +2019-02-12 07:00:00,556.08 +2019-02-12 08:00:00,548.48 +2019-02-12 09:00:00,543.64 +2019-02-12 10:00:00,534.42 +2019-02-12 11:00:00,522.04 +2019-02-12 12:00:00,501.81 +2019-02-12 13:00:00,504.7 +2019-02-12 14:00:00,517.74 +2019-02-12 15:00:00,552.52 +2019-02-12 16:00:00,570.55 +2019-02-12 17:00:00,567.56 +2019-02-12 18:00:00,554.94 +2019-02-12 19:00:00,538.19 +2019-02-12 20:00:00,530.27 +2019-02-12 21:00:00,528.03 +2019-02-12 22:00:00,526.37 +2019-02-12 23:00:00,526.62 +2019-02-13 00:00:00,535.27 +2019-02-13 01:00:00,542.1 +2019-02-13 02:00:00,544.79 +2019-02-13 03:00:00,549.34 +2019-02-13 04:00:00,555.63 +2019-02-13 05:00:00,566.28 +2019-02-13 06:00:00,576.84 +2019-02-13 07:00:00,578.21 +2019-02-13 08:00:00,561.34 +2019-02-13 09:00:00,546.31 +2019-02-13 10:00:00,540.94 +2019-02-13 11:00:00,531.84 +2019-02-13 12:00:00,526.32 +2019-02-13 13:00:00,535.69 +2019-02-13 14:00:00,558.12 +2019-02-13 15:00:00,588.24 +2019-02-13 16:00:00,596.92 +2019-02-13 17:00:00,583.73 +2019-02-13 18:00:00,569.15 +2019-02-13 19:00:00,549.82 +2019-02-13 20:00:00,542.89 +2019-02-13 21:00:00,533.76 +2019-02-13 22:00:00,517.31 +2019-02-13 23:00:00,491.91 +2019-02-14 00:00:00,475.13 +2019-02-14 01:00:00,472.86 +2019-02-14 02:00:00,479.2 +2019-02-14 03:00:00,478.53 +2019-02-14 04:00:00,480.58 +2019-02-14 05:00:00,475.44 +2019-02-14 06:00:00,477.16 +2019-02-14 07:00:00,468.98 +2019-02-14 08:00:00,453.95 +2019-02-14 09:00:00,432.65 +2019-02-14 10:00:00,422.1 +2019-02-14 11:00:00,415.54 +2019-02-14 12:00:00,398.94 +2019-02-14 13:00:00,398.66 +2019-02-14 14:00:00,424.69 +2019-02-14 15:00:00,469.51 +2019-02-14 16:00:00,483.55 +2019-02-14 17:00:00,465.77 +2019-02-14 18:00:00,441.91 +2019-02-14 19:00:00,419.24 +2019-02-14 20:00:00,406.37 +2019-02-14 21:00:00,405.07 +2019-02-14 22:00:00,386.13 +2019-02-14 23:00:00,371.12 +2019-02-15 00:00:00,361.81 +2019-02-15 01:00:00,357.92 +2019-02-15 02:00:00,353.84 +2019-02-15 03:00:00,354.15 +2019-02-15 04:00:00,373.61 +2019-02-15 05:00:00,396.24 +2019-02-15 06:00:00,415.64 +2019-02-15 07:00:00,417.5 +2019-02-15 08:00:00,403.8 +2019-02-15 09:00:00,408.46 +2019-02-15 10:00:00,421.05 +2019-02-15 11:00:00,436.45 +2019-02-15 12:00:00,443.15 +2019-02-15 13:00:00,460.97 +2019-02-15 14:00:00,479.26 +2019-02-15 15:00:00,497.78 +2019-02-15 16:00:00,500.59 +2019-02-15 17:00:00,498.82 +2019-02-15 18:00:00,508.71 +2019-02-15 19:00:00,517.38 +2019-02-15 20:00:00,515.09 +2019-02-15 21:00:00,516.7 +2019-02-15 22:00:00,507.21 +2019-02-15 23:00:00,485.45 +2019-02-16 00:00:00,477.64 +2019-02-16 01:00:00,476.13 +2019-02-16 02:00:00,465.19 +2019-02-16 03:00:00,468.82 +2019-02-16 04:00:00,482.58 +2019-02-16 05:00:00,522.48 +2019-02-16 06:00:00,534.29 +2019-02-16 07:00:00,535.29 +2019-02-16 08:00:00,526.66 +2019-02-16 09:00:00,508.84 +2019-02-16 10:00:00,496.09 +2019-02-16 11:00:00,488.35 +2019-02-16 12:00:00,480.55 +2019-02-16 13:00:00,480.32 +2019-02-16 14:00:00,477.58 +2019-02-16 15:00:00,478.8 +2019-02-16 16:00:00,479.95 +2019-02-16 17:00:00,473.94 +2019-02-16 18:00:00,467.79 +2019-02-16 19:00:00,460.13 +2019-02-16 20:00:00,435.36 +2019-02-16 21:00:00,410.03 +2019-02-16 22:00:00,381.73 +2019-02-16 23:00:00,342.15 +2019-02-17 00:00:00,305.42 +2019-02-17 01:00:00,291.89 +2019-02-17 02:00:00,281.81 +2019-02-17 03:00:00,283.89 +2019-02-17 04:00:00,296.5 +2019-02-17 05:00:00,322.06 +2019-02-17 06:00:00,360.87 +2019-02-17 07:00:00,388.27 +2019-02-17 08:00:00,388.93 +2019-02-17 09:00:00,360.9 +2019-02-17 10:00:00,342.84 +2019-02-17 11:00:00,331.85 +2019-02-17 12:00:00,330.11 +2019-02-17 13:00:00,346.39 +2019-02-17 14:00:00,380.12 +2019-02-17 15:00:00,427.78 +2019-02-17 16:00:00,458.47 +2019-02-17 17:00:00,470.8 +2019-02-17 18:00:00,469.73 +2019-02-17 19:00:00,459.94 +2019-02-17 20:00:00,434.56 +2019-02-17 21:00:00,429.52 +2019-02-17 22:00:00,402.28 +2019-02-17 23:00:00,391.89 +2019-02-18 00:00:00,387.02 +2019-02-18 01:00:00,377.77 +2019-02-18 02:00:00,368.64 +2019-02-18 03:00:00,372.61 +2019-02-18 04:00:00,376.6 +2019-02-18 05:00:00,400.41 +2019-02-18 06:00:00,417.07 +2019-02-18 07:00:00,399.89 +2019-02-18 08:00:00,374.55 +2019-02-18 09:00:00,348.33 +2019-02-18 10:00:00,335.44 +2019-02-18 11:00:00,321.34 +2019-02-18 12:00:00,311.79 +2019-02-18 13:00:00,321.14 +2019-02-18 14:00:00,327.24 +2019-02-18 15:00:00,329.4 +2019-02-18 16:00:00,339.8 +2019-02-18 17:00:00,346.61 +2019-02-18 18:00:00,347.16 +2019-02-18 19:00:00,343.26 +2019-02-18 20:00:00,334.74 +2019-02-18 21:00:00,336.4 +2019-02-18 22:00:00,312.11 +2019-02-18 23:00:00,299.85 +2019-02-19 00:00:00,305.94 +2019-02-19 01:00:00,308.89 +2019-02-19 02:00:00,302.06 +2019-02-19 03:00:00,313.93 +2019-02-19 04:00:00,340.25 +2019-02-19 05:00:00,381.04 +2019-02-19 06:00:00,411.14 +2019-02-19 07:00:00,417.86 +2019-02-19 08:00:00,401.94 +2019-02-19 09:00:00,379.48 +2019-02-19 10:00:00,371.1 +2019-02-19 11:00:00,356.46 +2019-02-19 12:00:00,349.33 +2019-02-19 13:00:00,352.97 +2019-02-19 14:00:00,385.74 +2019-02-19 15:00:00,435.56 +2019-02-19 16:00:00,464.84 +2019-02-19 17:00:00,458.04 +2019-02-19 18:00:00,434.81 +2019-02-19 19:00:00,407.37 +2019-02-19 20:00:00,382.42 +2019-02-19 21:00:00,376.05 +2019-02-19 22:00:00,356.72 +2019-02-19 23:00:00,316.74 +2019-02-20 00:00:00,308.29 +2019-02-20 01:00:00,286.36 +2019-02-20 02:00:00,271.56 +2019-02-20 03:00:00,260.99 +2019-02-20 04:00:00,260.62 +2019-02-20 05:00:00,265.31 +2019-02-20 06:00:00,267.0 +2019-02-20 07:00:00,258.99 +2019-02-20 08:00:00,236.7 +2019-02-20 09:00:00,211.36 +2019-02-20 10:00:00,207.15 +2019-02-20 11:00:00,200.91 +2019-02-20 12:00:00,200.9 +2019-02-20 13:00:00,208.05 +2019-02-20 14:00:00,227.07 +2019-02-20 15:00:00,280.55 +2019-02-20 16:00:00,307.26 +2019-02-20 17:00:00,290.36 +2019-02-20 18:00:00,268.91 +2019-02-20 19:00:00,230.83 +2019-02-20 20:00:00,215.61 +2019-02-20 21:00:00,216.68 +2019-02-20 22:00:00,219.57 +2019-02-20 23:00:00,206.46 +2019-02-21 00:00:00,211.36 +2019-02-21 01:00:00,213.53 +2019-02-21 02:00:00,212.78 +2019-02-21 03:00:00,217.74 +2019-02-21 04:00:00,225.03 +2019-02-21 05:00:00,222.57 +2019-02-21 06:00:00,228.34 +2019-02-21 07:00:00,225.76 +2019-02-21 08:00:00,218.03 +2019-02-21 09:00:00,220.88 +2019-02-21 10:00:00,230.34 +2019-02-21 11:00:00,219.83 +2019-02-21 12:00:00,220.65 +2019-02-21 13:00:00,238.39 +2019-02-21 14:00:00,275.84 +2019-02-21 15:00:00,351.86 +2019-02-21 16:00:00,417.05 +2019-02-21 17:00:00,427.86 +2019-02-21 18:00:00,425.08 +2019-02-21 19:00:00,415.78 +2019-02-21 20:00:00,405.15 +2019-02-21 21:00:00,401.98 +2019-02-21 22:00:00,394.62 +2019-02-21 23:00:00,380.83 +2019-02-22 00:00:00,379.57 +2019-02-22 01:00:00,372.72 +2019-02-22 02:00:00,370.91 +2019-02-22 03:00:00,375.7 +2019-02-22 04:00:00,395.93 +2019-02-22 05:00:00,428.75 +2019-02-22 06:00:00,441.62 +2019-02-22 07:00:00,430.79 +2019-02-22 08:00:00,405.56 +2019-02-22 09:00:00,375.14 +2019-02-22 10:00:00,364.53 +2019-02-22 11:00:00,356.18 +2019-02-22 12:00:00,357.51 +2019-02-22 13:00:00,376.52 +2019-02-22 14:00:00,414.99 +2019-02-22 15:00:00,448.7 +2019-02-22 16:00:00,474.95 +2019-02-22 17:00:00,460.92 +2019-02-22 18:00:00,450.86 +2019-02-22 19:00:00,433.15 +2019-02-22 20:00:00,412.54 +2019-02-22 21:00:00,405.85 +2019-02-22 22:00:00,391.98 +2019-02-22 23:00:00,388.77 +2019-02-23 00:00:00,391.83 +2019-02-23 01:00:00,387.68 +2019-02-23 02:00:00,381.01 +2019-02-23 03:00:00,377.65 +2019-02-23 04:00:00,389.35 +2019-02-23 05:00:00,412.94 +2019-02-23 06:00:00,413.59 +2019-02-23 07:00:00,396.49 +2019-02-23 08:00:00,369.43 +2019-02-23 09:00:00,340.27 +2019-02-23 10:00:00,312.09 +2019-02-23 11:00:00,280.57 +2019-02-23 12:00:00,264.72 +2019-02-23 13:00:00,275.06 +2019-02-23 14:00:00,311.35 +2019-02-23 15:00:00,379.48 +2019-02-23 16:00:00,425.2 +2019-02-23 17:00:00,421.21 +2019-02-23 18:00:00,412.81 +2019-02-23 19:00:00,383.43 +2019-02-23 20:00:00,346.05 +2019-02-23 21:00:00,310.25 +2019-02-23 22:00:00,273.55 +2019-02-23 23:00:00,248.57 +2019-02-24 00:00:00,244.26 +2019-02-24 01:00:00,243.66 +2019-02-24 02:00:00,245.01 +2019-02-24 03:00:00,250.86 +2019-02-24 04:00:00,267.24 +2019-02-24 05:00:00,307.93 +2019-02-24 06:00:00,335.33 +2019-02-24 07:00:00,333.36 +2019-02-24 08:00:00,311.5 +2019-02-24 09:00:00,281.89 +2019-02-24 10:00:00,261.04 +2019-02-24 11:00:00,247.25 +2019-02-24 12:00:00,246.86 +2019-02-24 13:00:00,261.84 +2019-02-24 14:00:00,313.95 +2019-02-24 15:00:00,372.46 +2019-02-24 16:00:00,397.97 +2019-02-24 17:00:00,386.82 +2019-02-24 18:00:00,376.24 +2019-02-24 19:00:00,364.82 +2019-02-24 20:00:00,353.24 +2019-02-24 21:00:00,341.56 +2019-02-24 22:00:00,320.39 +2019-02-24 23:00:00,301.1 +2019-02-25 00:00:00,290.12 +2019-02-25 01:00:00,287.33 +2019-02-25 02:00:00,290.96 +2019-02-25 03:00:00,298.23 +2019-02-25 04:00:00,323.89 +2019-02-25 05:00:00,360.2 +2019-02-25 06:00:00,377.87 +2019-02-25 07:00:00,368.03 +2019-02-25 08:00:00,353.18 +2019-02-25 09:00:00,333.98 +2019-02-25 10:00:00,314.26 +2019-02-25 11:00:00,303.7 +2019-02-25 12:00:00,307.35 +2019-02-25 13:00:00,326.83 +2019-02-25 14:00:00,369.15 +2019-02-25 15:00:00,422.58 +2019-02-25 16:00:00,454.68 +2019-02-25 17:00:00,461.85 +2019-02-25 18:00:00,457.79 +2019-02-25 19:00:00,456.04 +2019-02-25 20:00:00,460.32 +2019-02-25 21:00:00,459.45 +2019-02-25 22:00:00,459.02 +2019-02-25 23:00:00,447.54 +2019-02-26 00:00:00,435.68 +2019-02-26 01:00:00,421.35 +2019-02-26 02:00:00,412.42 +2019-02-26 03:00:00,413.8 +2019-02-26 04:00:00,427.55 +2019-02-26 05:00:00,452.46 +2019-02-26 06:00:00,452.16 +2019-02-26 07:00:00,433.48 +2019-02-26 08:00:00,410.79 +2019-02-26 09:00:00,378.85 +2019-02-26 10:00:00,356.05 +2019-02-26 11:00:00,332.03 +2019-02-26 12:00:00,333.84 +2019-02-26 13:00:00,348.29 +2019-02-26 14:00:00,370.16 +2019-02-26 15:00:00,404.07 +2019-02-26 16:00:00,424.45 +2019-02-26 17:00:00,431.5 +2019-02-26 18:00:00,437.34 +2019-02-26 19:00:00,430.76 +2019-02-26 20:00:00,421.24 +2019-02-26 21:00:00,417.98 +2019-02-26 22:00:00,419.21 +2019-02-26 23:00:00,416.67 +2019-02-27 00:00:00,403.19 +2019-02-27 01:00:00,391.48 +2019-02-27 02:00:00,397.38 +2019-02-27 03:00:00,415.98 +2019-02-27 04:00:00,429.57 +2019-02-27 05:00:00,457.2 +2019-02-27 06:00:00,469.32 +2019-02-27 07:00:00,445.38 +2019-02-27 08:00:00,423.57 +2019-02-27 09:00:00,389.41 +2019-02-27 10:00:00,365.38 +2019-02-27 11:00:00,351.71 +2019-02-27 12:00:00,336.09 +2019-02-27 13:00:00,329.82 +2019-02-27 14:00:00,358.3 +2019-02-27 15:00:00,416.4 +2019-02-27 16:00:00,482.84 +2019-02-27 17:00:00,490.23 +2019-02-27 18:00:00,474.77 +2019-02-27 19:00:00,458.48 +2019-02-27 20:00:00,448.6 +2019-02-27 21:00:00,450.73 +2019-02-27 22:00:00,448.68 +2019-02-27 23:00:00,435.26 +2019-02-28 00:00:00,433.14 +2019-02-28 01:00:00,427.98 +2019-02-28 02:00:00,423.72 +2019-02-28 03:00:00,423.78 +2019-02-28 04:00:00,431.37 +2019-02-28 05:00:00,441.39 +2019-02-28 06:00:00,438.48 +2019-02-28 07:00:00,399.56 +2019-02-28 08:00:00,353.93 +2019-02-28 09:00:00,308.04 +2019-02-28 10:00:00,286.64 +2019-02-28 11:00:00,278.36 +2019-02-28 12:00:00,271.87 +2019-02-28 13:00:00,280.36 +2019-02-28 14:00:00,322.82 +2019-02-28 15:00:00,405.78 +2019-02-28 16:00:00,495.92 +2019-02-28 17:00:00,506.79 +2019-02-28 18:00:00,504.41 +2019-02-28 19:00:00,520.18 +2019-02-28 20:00:00,514.88 +2019-02-28 21:00:00,513.34 +2019-02-28 22:00:00,518.77 +2019-02-28 23:00:00,506.0 +2019-03-01 00:00:00,513.91 +2019-03-01 01:00:00,510.52 +2019-03-01 02:00:00,526.96 +2019-03-01 03:00:00,547.87 +2019-03-01 04:00:00,568.46 +2019-03-01 05:00:00,572.9 +2019-03-01 06:00:00,567.76 +2019-03-01 07:00:00,544.73 +2019-03-01 08:00:00,519.02 +2019-03-01 09:00:00,490.28 +2019-03-01 10:00:00,464.46 +2019-03-01 11:00:00,432.23 +2019-03-01 12:00:00,416.11 +2019-03-01 13:00:00,426.66 +2019-03-01 14:00:00,456.63 +2019-03-01 15:00:00,517.64 +2019-03-01 16:00:00,565.65 +2019-03-01 17:00:00,573.15 +2019-03-01 18:00:00,569.76 +2019-03-01 19:00:00,565.82 +2019-03-01 20:00:00,561.59 +2019-03-01 21:00:00,550.83 +2019-03-01 22:00:00,540.31 +2019-03-01 23:00:00,539.74 +2019-03-02 00:00:00,541.63 +2019-03-02 01:00:00,545.48 +2019-03-02 02:00:00,548.19 +2019-03-02 03:00:00,553.3 +2019-03-02 04:00:00,574.09 +2019-03-02 05:00:00,584.62 +2019-03-02 06:00:00,581.24 +2019-03-02 07:00:00,548.64 +2019-03-02 08:00:00,503.11 +2019-03-02 09:00:00,461.94 +2019-03-02 10:00:00,428.54 +2019-03-02 11:00:00,403.36 +2019-03-02 12:00:00,400.35 +2019-03-02 13:00:00,418.22 +2019-03-02 14:00:00,470.07 +2019-03-02 15:00:00,542.1 +2019-03-02 16:00:00,605.97 +2019-03-02 17:00:00,610.21 +2019-03-02 18:00:00,610.81 +2019-03-02 19:00:00,615.24 +2019-03-02 20:00:00,616.68 +2019-03-02 21:00:00,622.79 +2019-03-02 22:00:00,621.23 +2019-03-02 23:00:00,615.26 +2019-03-03 00:00:00,604.3 +2019-03-03 01:00:00,598.59 +2019-03-03 02:00:00,595.05 +2019-03-03 03:00:00,597.7 +2019-03-03 04:00:00,619.71 +2019-03-03 05:00:00,620.38 +2019-03-03 06:00:00,603.25 +2019-03-03 07:00:00,576.86 +2019-03-03 08:00:00,542.4 +2019-03-03 09:00:00,516.31 +2019-03-03 10:00:00,496.96 +2019-03-03 11:00:00,490.22 +2019-03-03 12:00:00,489.58 +2019-03-03 13:00:00,505.05 +2019-03-03 14:00:00,528.48 +2019-03-03 15:00:00,548.98 +2019-03-03 16:00:00,558.42 +2019-03-03 17:00:00,550.51 +2019-03-03 18:00:00,540.85 +2019-03-03 19:00:00,536.49 +2019-03-03 20:00:00,522.97 +2019-03-03 21:00:00,514.41 +2019-03-03 22:00:00,507.24 +2019-03-03 23:00:00,500.92 +2019-03-04 00:00:00,497.27 +2019-03-04 01:00:00,497.15 +2019-03-04 02:00:00,491.15 +2019-03-04 03:00:00,497.99 +2019-03-04 04:00:00,526.82 +2019-03-04 05:00:00,556.95 +2019-03-04 06:00:00,562.65 +2019-03-04 07:00:00,548.15 +2019-03-04 08:00:00,531.09 +2019-03-04 09:00:00,507.74 +2019-03-04 10:00:00,497.35 +2019-03-04 11:00:00,496.91 +2019-03-04 12:00:00,498.18 +2019-03-04 13:00:00,504.2 +2019-03-04 14:00:00,512.62 +2019-03-04 15:00:00,526.91 +2019-03-04 16:00:00,537.67 +2019-03-04 17:00:00,541.3 +2019-03-04 18:00:00,539.78 +2019-03-04 19:00:00,534.04 +2019-03-04 20:00:00,523.25 +2019-03-04 21:00:00,519.86 +2019-03-04 22:00:00,503.14 +2019-03-04 23:00:00,493.94 +2019-03-05 00:00:00,493.89 +2019-03-05 01:00:00,498.41 +2019-03-05 02:00:00,505.04 +2019-03-05 03:00:00,513.82 +2019-03-05 04:00:00,533.87 +2019-03-05 05:00:00,555.07 +2019-03-05 06:00:00,560.38 +2019-03-05 07:00:00,543.19 +2019-03-05 08:00:00,519.76 +2019-03-05 09:00:00,485.92 +2019-03-05 10:00:00,452.92 +2019-03-05 11:00:00,435.5 +2019-03-05 12:00:00,436.82 +2019-03-05 13:00:00,445.94 +2019-03-05 14:00:00,465.37 +2019-03-05 15:00:00,494.02 +2019-03-05 16:00:00,539.02 +2019-03-05 17:00:00,553.76 +2019-03-05 18:00:00,554.99 +2019-03-05 19:00:00,557.16 +2019-03-05 20:00:00,558.51 +2019-03-05 21:00:00,553.23 +2019-03-05 22:00:00,544.52 +2019-03-05 23:00:00,529.54 +2019-03-06 00:00:00,515.36 +2019-03-06 01:00:00,493.06 +2019-03-06 02:00:00,474.41 +2019-03-06 03:00:00,459.51 +2019-03-06 04:00:00,471.55 +2019-03-06 05:00:00,488.06 +2019-03-06 06:00:00,474.74 +2019-03-06 07:00:00,433.96 +2019-03-06 08:00:00,389.91 +2019-03-06 09:00:00,340.17 +2019-03-06 10:00:00,308.72 +2019-03-06 11:00:00,297.3 +2019-03-06 12:00:00,299.77 +2019-03-06 13:00:00,306.37 +2019-03-06 14:00:00,339.48 +2019-03-06 15:00:00,399.65 +2019-03-06 16:00:00,471.34 +2019-03-06 17:00:00,489.29 +2019-03-06 18:00:00,489.07 +2019-03-06 19:00:00,478.72 +2019-03-06 20:00:00,473.06 +2019-03-06 21:00:00,470.66 +2019-03-06 22:00:00,465.62 +2019-03-06 23:00:00,437.91 +2019-03-07 00:00:00,423.27 +2019-03-07 01:00:00,425.72 +2019-03-07 02:00:00,433.1 +2019-03-07 03:00:00,434.44 +2019-03-07 04:00:00,430.38 +2019-03-07 05:00:00,425.99 +2019-03-07 06:00:00,412.68 +2019-03-07 07:00:00,373.36 +2019-03-07 08:00:00,318.14 +2019-03-07 09:00:00,281.46 +2019-03-07 10:00:00,267.27 +2019-03-07 11:00:00,261.05 +2019-03-07 12:00:00,259.14 +2019-03-07 13:00:00,276.29 +2019-03-07 14:00:00,319.58 +2019-03-07 15:00:00,390.24 +2019-03-07 16:00:00,471.14 +2019-03-07 17:00:00,512.46 +2019-03-07 18:00:00,525.48 +2019-03-07 19:00:00,531.42 +2019-03-07 20:00:00,535.27 +2019-03-07 21:00:00,542.82 +2019-03-07 22:00:00,549.7 +2019-03-07 23:00:00,554.51 +2019-03-08 00:00:00,560.67 +2019-03-08 01:00:00,578.66 +2019-03-08 02:00:00,588.8 +2019-03-08 03:00:00,604.6 +2019-03-08 04:00:00,622.27 +2019-03-08 05:00:00,645.04 +2019-03-08 06:00:00,628.22 +2019-03-08 07:00:00,596.9 +2019-03-08 08:00:00,557.09 +2019-03-08 09:00:00,518.57 +2019-03-08 10:00:00,492.19 +2019-03-08 11:00:00,481.89 +2019-03-08 12:00:00,490.27 +2019-03-08 13:00:00,519.84 +2019-03-08 14:00:00,555.41 +2019-03-08 15:00:00,598.48 +2019-03-08 16:00:00,637.86 +2019-03-08 17:00:00,642.61 +2019-03-08 18:00:00,636.55 +2019-03-08 19:00:00,626.9 +2019-03-08 20:00:00,619.4 +2019-03-08 21:00:00,608.03 +2019-03-08 22:00:00,606.4 +2019-03-08 23:00:00,605.03 +2019-03-09 00:00:00,589.52 +2019-03-09 01:00:00,581.99 +2019-03-09 02:00:00,587.81 +2019-03-09 03:00:00,599.75 +2019-03-09 04:00:00,619.91 +2019-03-09 05:00:00,635.06 +2019-03-09 06:00:00,626.17 +2019-03-09 07:00:00,599.36 +2019-03-09 08:00:00,570.75 +2019-03-09 09:00:00,545.87 +2019-03-09 10:00:00,527.37 +2019-03-09 11:00:00,523.44 +2019-03-09 12:00:00,535.26 +2019-03-09 13:00:00,550.6 +2019-03-09 14:00:00,580.67 +2019-03-09 15:00:00,617.48 +2019-03-09 16:00:00,640.95 +2019-03-09 17:00:00,647.83 +2019-03-09 18:00:00,655.58 +2019-03-09 19:00:00,668.82 +2019-03-09 20:00:00,676.63 +2019-03-09 21:00:00,674.0 +2019-03-09 22:00:00,657.14 +2019-03-09 23:00:00,653.6 +2019-03-10 00:00:00,647.37 +2019-03-10 01:00:00,640.88 +2019-03-10 02:00:00,634.02 +2019-03-10 03:00:00,620.64 +2019-03-10 04:00:00,624.75 +2019-03-10 05:00:00,613.73 +2019-03-10 06:00:00,582.36 +2019-03-10 07:00:00,557.19 +2019-03-10 08:00:00,522.59 +2019-03-10 09:00:00,495.55 +2019-03-10 10:00:00,454.81 +2019-03-10 11:00:00,418.94 +2019-03-10 12:00:00,392.75 +2019-03-10 13:00:00,378.0 +2019-03-10 14:00:00,395.88 +2019-03-10 15:00:00,423.42 +2019-03-10 16:00:00,433.32 +2019-03-10 17:00:00,424.56 +2019-03-10 18:00:00,401.54 +2019-03-10 19:00:00,343.62 +2019-03-10 20:00:00,297.08 +2019-03-10 21:00:00,263.65 +2019-03-10 22:00:00,245.11 +2019-03-10 23:00:00,199.19 +2019-03-11 00:00:00,191.84 +2019-03-11 01:00:00,191.56 +2019-03-11 02:00:00,187.58 +2019-03-11 03:00:00,186.48 +2019-03-11 04:00:00,183.66 +2019-03-11 05:00:00,181.69 +2019-03-11 06:00:00,201.91 +2019-03-11 07:00:00,206.9 +2019-03-11 08:00:00,197.58 +2019-03-11 09:00:00,192.03 +2019-03-11 10:00:00,177.97 +2019-03-11 11:00:00,170.84 +2019-03-11 12:00:00,169.68 +2019-03-11 13:00:00,171.71 +2019-03-11 14:00:00,175.13 +2019-03-11 15:00:00,182.48 +2019-03-11 16:00:00,203.73 +2019-03-11 17:00:00,225.42 +2019-03-11 18:00:00,225.11 +2019-03-11 19:00:00,224.27 +2019-03-11 20:00:00,203.91 +2019-03-11 21:00:00,197.32 +2019-03-11 22:00:00,186.26 +2019-03-11 23:00:00,176.18 +2019-03-12 00:00:00,174.83 +2019-03-12 01:00:00,173.11 +2019-03-12 02:00:00,170.92 +2019-03-12 03:00:00,170.4 +2019-03-12 04:00:00,175.55 +2019-03-12 05:00:00,190.12 +2019-03-12 06:00:00,202.55 +2019-03-12 07:00:00,187.35 +2019-03-12 08:00:00,159.75 +2019-03-12 09:00:00,147.85 +2019-03-12 10:00:00,142.89 +2019-03-12 11:00:00,142.89 +2019-03-12 12:00:00,144.98 +2019-03-12 13:00:00,150.33 +2019-03-12 14:00:00,160.28 +2019-03-12 15:00:00,176.36 +2019-03-12 16:00:00,205.75 +2019-03-12 17:00:00,221.31 +2019-03-12 18:00:00,225.84 +2019-03-12 19:00:00,206.63 +2019-03-12 20:00:00,193.72 +2019-03-12 21:00:00,195.79 +2019-03-12 22:00:00,187.69 +2019-03-12 23:00:00,183.13 +2019-03-13 00:00:00,181.21 +2019-03-13 01:00:00,179.78 +2019-03-13 02:00:00,179.33 +2019-03-13 03:00:00,180.54 +2019-03-13 04:00:00,182.8 +2019-03-13 05:00:00,175.99 +2019-03-13 06:00:00,171.38 +2019-03-13 07:00:00,163.29 +2019-03-13 08:00:00,154.87 +2019-03-13 09:00:00,150.5 +2019-03-13 10:00:00,146.49 +2019-03-13 11:00:00,146.26 +2019-03-13 12:00:00,149.74 +2019-03-13 13:00:00,150.76 +2019-03-13 14:00:00,152.83 +2019-03-13 15:00:00,155.01 +2019-03-13 16:00:00,161.4 +2019-03-13 17:00:00,171.06 +2019-03-13 18:00:00,178.04 +2019-03-13 19:00:00,169.41 +2019-03-13 20:00:00,162.47 +2019-03-13 21:00:00,165.89 +2019-03-13 22:00:00,172.51 +2019-03-13 23:00:00,160.98 +2019-03-14 00:00:00,157.97 +2019-03-14 01:00:00,158.21 +2019-03-14 02:00:00,159.36 +2019-03-14 03:00:00,162.59 +2019-03-14 04:00:00,166.36 +2019-03-14 05:00:00,169.91 +2019-03-14 06:00:00,169.66 +2019-03-14 07:00:00,165.78 +2019-03-14 08:00:00,167.82 +2019-03-14 09:00:00,159.9 +2019-03-14 10:00:00,156.0 +2019-03-14 11:00:00,155.93 +2019-03-14 12:00:00,159.7 +2019-03-14 13:00:00,160.63 +2019-03-14 14:00:00,166.63 +2019-03-14 15:00:00,182.76 +2019-03-14 16:00:00,225.21 +2019-03-14 17:00:00,264.26 +2019-03-14 18:00:00,268.78 +2019-03-14 19:00:00,267.53 +2019-03-14 20:00:00,264.34 +2019-03-14 21:00:00,261.01 +2019-03-14 22:00:00,259.18 +2019-03-14 23:00:00,252.85 +2019-03-15 00:00:00,244.09 +2019-03-15 01:00:00,243.06 +2019-03-15 02:00:00,240.37 +2019-03-15 03:00:00,260.5 +2019-03-15 04:00:00,296.43 +2019-03-15 05:00:00,333.53 +2019-03-15 06:00:00,350.9 +2019-03-15 07:00:00,344.52 +2019-03-15 08:00:00,329.23 +2019-03-15 09:00:00,322.36 +2019-03-15 10:00:00,313.02 +2019-03-15 11:00:00,296.89 +2019-03-15 12:00:00,285.66 +2019-03-15 13:00:00,275.48 +2019-03-15 14:00:00,275.64 +2019-03-15 15:00:00,292.54 +2019-03-15 16:00:00,325.49 +2019-03-15 17:00:00,346.68 +2019-03-15 18:00:00,351.69 +2019-03-15 19:00:00,347.97 +2019-03-15 20:00:00,342.44 +2019-03-15 21:00:00,343.97 +2019-03-15 22:00:00,337.95 +2019-03-15 23:00:00,328.39 +2019-03-16 00:00:00,328.47 +2019-03-16 01:00:00,336.84 +2019-03-16 02:00:00,337.97 +2019-03-16 03:00:00,352.41 +2019-03-16 04:00:00,382.41 +2019-03-16 05:00:00,408.25 +2019-03-16 06:00:00,431.2 +2019-03-16 07:00:00,430.43 +2019-03-16 08:00:00,416.19 +2019-03-16 09:00:00,404.71 +2019-03-16 10:00:00,403.82 +2019-03-16 11:00:00,402.86 +2019-03-16 12:00:00,407.06 +2019-03-16 13:00:00,416.85 +2019-03-16 14:00:00,435.52 +2019-03-16 15:00:00,463.22 +2019-03-16 16:00:00,498.61 +2019-03-16 17:00:00,520.46 +2019-03-16 18:00:00,522.48 +2019-03-16 19:00:00,525.88 +2019-03-16 20:00:00,519.25 +2019-03-16 21:00:00,514.75 +2019-03-16 22:00:00,503.08 +2019-03-16 23:00:00,483.97 +2019-03-17 00:00:00,469.51 +2019-03-17 01:00:00,454.63 +2019-03-17 02:00:00,451.97 +2019-03-17 03:00:00,464.75 +2019-03-17 04:00:00,493.75 +2019-03-17 05:00:00,522.21 +2019-03-17 06:00:00,527.44 +2019-03-17 07:00:00,520.25 +2019-03-17 08:00:00,509.09 +2019-03-17 09:00:00,489.52 +2019-03-17 10:00:00,480.59 +2019-03-17 11:00:00,471.85 +2019-03-17 12:00:00,468.87 +2019-03-17 13:00:00,466.87 +2019-03-17 14:00:00,474.27 +2019-03-17 15:00:00,503.77 +2019-03-17 16:00:00,553.41 +2019-03-17 17:00:00,581.8 +2019-03-17 18:00:00,588.99 +2019-03-17 19:00:00,596.54 +2019-03-17 20:00:00,592.92 +2019-03-17 21:00:00,588.93 +2019-03-17 22:00:00,591.85 +2019-03-17 23:00:00,591.14 +2019-03-18 00:00:00,585.08 +2019-03-18 01:00:00,587.24 +2019-03-18 02:00:00,585.68 +2019-03-18 03:00:00,595.27 +2019-03-18 04:00:00,615.97 +2019-03-18 05:00:00,627.41 +2019-03-18 06:00:00,605.8 +2019-03-18 07:00:00,586.84 +2019-03-18 08:00:00,553.39 +2019-03-18 09:00:00,532.68 +2019-03-18 10:00:00,518.29 +2019-03-18 11:00:00,516.45 +2019-03-18 12:00:00,511.65 +2019-03-18 13:00:00,513.58 +2019-03-18 14:00:00,525.93 +2019-03-18 15:00:00,550.08 +2019-03-18 16:00:00,577.61 +2019-03-18 17:00:00,583.73 +2019-03-18 18:00:00,586.81 +2019-03-18 19:00:00,594.53 +2019-03-18 20:00:00,573.51 +2019-03-18 21:00:00,558.2 +2019-03-18 22:00:00,541.62 +2019-03-18 23:00:00,537.29 +2019-03-19 00:00:00,531.79 +2019-03-19 01:00:00,526.02 +2019-03-19 02:00:00,514.49 +2019-03-19 03:00:00,507.85 +2019-03-19 04:00:00,516.41 +2019-03-19 05:00:00,526.25 +2019-03-19 06:00:00,520.47 +2019-03-19 07:00:00,497.59 +2019-03-19 08:00:00,466.05 +2019-03-19 09:00:00,412.41 +2019-03-19 10:00:00,361.08 +2019-03-19 11:00:00,335.71 +2019-03-19 12:00:00,324.15 +2019-03-19 13:00:00,322.35 +2019-03-19 14:00:00,334.9 +2019-03-19 15:00:00,387.76 +2019-03-19 16:00:00,449.13 +2019-03-19 17:00:00,490.74 +2019-03-19 18:00:00,506.95 +2019-03-19 19:00:00,515.56 +2019-03-19 20:00:00,532.15 +2019-03-19 21:00:00,545.13 +2019-03-19 22:00:00,564.69 +2019-03-19 23:00:00,574.45 +2019-03-20 00:00:00,577.58 +2019-03-20 01:00:00,572.0 +2019-03-20 02:00:00,558.74 +2019-03-20 03:00:00,551.76 +2019-03-20 04:00:00,549.68 +2019-03-20 05:00:00,550.12 +2019-03-20 06:00:00,521.63 +2019-03-20 07:00:00,472.66 +2019-03-20 08:00:00,417.74 +2019-03-20 09:00:00,367.02 +2019-03-20 10:00:00,343.06 +2019-03-20 11:00:00,317.38 +2019-03-20 12:00:00,293.72 +2019-03-20 13:00:00,291.26 +2019-03-20 14:00:00,310.23 +2019-03-20 15:00:00,347.44 +2019-03-20 16:00:00,412.15 +2019-03-20 17:00:00,438.82 +2019-03-20 18:00:00,435.14 +2019-03-20 19:00:00,421.11 +2019-03-20 20:00:00,403.01 +2019-03-20 21:00:00,377.12 +2019-03-20 22:00:00,354.47 +2019-03-20 23:00:00,320.25 +2019-03-21 00:00:00,302.53 +2019-03-21 01:00:00,293.31 +2019-03-21 02:00:00,295.55 +2019-03-21 03:00:00,288.94 +2019-03-21 04:00:00,285.66 +2019-03-21 05:00:00,273.41 +2019-03-21 06:00:00,271.13 +2019-03-21 07:00:00,263.87 +2019-03-21 08:00:00,258.47 +2019-03-21 09:00:00,259.49 +2019-03-21 10:00:00,257.17 +2019-03-21 11:00:00,251.63 +2019-03-21 12:00:00,232.78 +2019-03-21 13:00:00,232.56 +2019-03-21 14:00:00,235.31 +2019-03-21 15:00:00,249.06 +2019-03-21 16:00:00,298.52 +2019-03-21 17:00:00,364.97 +2019-03-21 18:00:00,380.44 +2019-03-21 19:00:00,390.43 +2019-03-21 20:00:00,391.85 +2019-03-21 21:00:00,396.2 +2019-03-21 22:00:00,394.89 +2019-03-21 23:00:00,393.75 +2019-03-22 00:00:00,405.22 +2019-03-22 01:00:00,422.53 +2019-03-22 02:00:00,437.29 +2019-03-22 03:00:00,466.9 +2019-03-22 04:00:00,508.25 +2019-03-22 05:00:00,542.34 +2019-03-22 06:00:00,548.54 +2019-03-22 07:00:00,541.13 +2019-03-22 08:00:00,522.02 +2019-03-22 09:00:00,501.67 +2019-03-22 10:00:00,488.35 +2019-03-22 11:00:00,486.2 +2019-03-22 12:00:00,482.41 +2019-03-22 13:00:00,484.61 +2019-03-22 14:00:00,493.47 +2019-03-22 15:00:00,513.18 +2019-03-22 16:00:00,554.92 +2019-03-22 17:00:00,579.29 +2019-03-22 18:00:00,571.86 +2019-03-22 19:00:00,571.58 +2019-03-22 20:00:00,572.37 +2019-03-22 21:00:00,565.02 +2019-03-22 22:00:00,547.63 +2019-03-22 23:00:00,549.98 +2019-03-23 00:00:00,551.22 +2019-03-23 01:00:00,547.99 +2019-03-23 02:00:00,552.92 +2019-03-23 03:00:00,570.41 +2019-03-23 04:00:00,596.59 +2019-03-23 05:00:00,609.43 +2019-03-23 06:00:00,607.85 +2019-03-23 07:00:00,588.11 +2019-03-23 08:00:00,572.45 +2019-03-23 09:00:00,554.09 +2019-03-23 10:00:00,540.19 +2019-03-23 11:00:00,535.48 +2019-03-23 12:00:00,542.17 +2019-03-23 13:00:00,543.21 +2019-03-23 14:00:00,547.26 +2019-03-23 15:00:00,568.49 +2019-03-23 16:00:00,603.64 +2019-03-23 17:00:00,623.21 +2019-03-23 18:00:00,635.15 +2019-03-23 19:00:00,631.99 +2019-03-23 20:00:00,619.71 +2019-03-23 21:00:00,597.7 +2019-03-23 22:00:00,578.24 +2019-03-23 23:00:00,552.15 +2019-03-24 00:00:00,540.21 +2019-03-24 01:00:00,533.22 +2019-03-24 02:00:00,526.7 +2019-03-24 03:00:00,536.25 +2019-03-24 04:00:00,566.99 +2019-03-24 05:00:00,570.33 +2019-03-24 06:00:00,548.21 +2019-03-24 07:00:00,509.98 +2019-03-24 08:00:00,457.13 +2019-03-24 09:00:00,388.77 +2019-03-24 10:00:00,348.84 +2019-03-24 11:00:00,334.04 +2019-03-24 12:00:00,331.72 +2019-03-24 13:00:00,347.13 +2019-03-24 14:00:00,387.37 +2019-03-24 15:00:00,469.06 +2019-03-24 16:00:00,550.86 +2019-03-24 17:00:00,578.03 +2019-03-24 18:00:00,582.74 +2019-03-24 19:00:00,590.54 +2019-03-24 20:00:00,591.4 +2019-03-24 21:00:00,593.72 +2019-03-24 22:00:00,591.91 +2019-03-24 23:00:00,592.75 +2019-03-25 00:00:00,608.67 +2019-03-25 01:00:00,616.43 +2019-03-25 02:00:00,627.65 +2019-03-25 03:00:00,637.07 +2019-03-25 04:00:00,643.34 +2019-03-25 05:00:00,634.4 +2019-03-25 06:00:00,593.65 +2019-03-25 07:00:00,547.63 +2019-03-25 08:00:00,493.14 +2019-03-25 09:00:00,437.81 +2019-03-25 10:00:00,405.06 +2019-03-25 11:00:00,394.16 +2019-03-25 12:00:00,401.47 +2019-03-25 13:00:00,429.16 +2019-03-25 14:00:00,472.36 +2019-03-25 15:00:00,527.12 +2019-03-25 16:00:00,570.87 +2019-03-25 17:00:00,592.46 +2019-03-25 18:00:00,592.51 +2019-03-25 19:00:00,598.87 +2019-03-25 20:00:00,592.34 +2019-03-25 21:00:00,580.09 +2019-03-25 22:00:00,554.74 +2019-03-25 23:00:00,520.62 +2019-03-26 00:00:00,487.1 +2019-03-26 01:00:00,473.12 +2019-03-26 02:00:00,458.01 +2019-03-26 03:00:00,454.85 +2019-03-26 04:00:00,464.38 +2019-03-26 05:00:00,469.43 +2019-03-26 06:00:00,459.34 +2019-03-26 07:00:00,434.49 +2019-03-26 08:00:00,371.04 +2019-03-26 09:00:00,290.47 +2019-03-26 10:00:00,246.4 +2019-03-26 11:00:00,233.81 +2019-03-26 12:00:00,239.72 +2019-03-26 13:00:00,257.48 +2019-03-26 14:00:00,291.16 +2019-03-26 15:00:00,347.7 +2019-03-26 16:00:00,413.61 +2019-03-26 17:00:00,442.76 +2019-03-26 18:00:00,437.02 +2019-03-26 19:00:00,426.32 +2019-03-26 20:00:00,400.58 +2019-03-26 21:00:00,371.94 +2019-03-26 22:00:00,346.92 +2019-03-26 23:00:00,298.6 +2019-03-27 00:00:00,259.91 +2019-03-27 01:00:00,238.41 +2019-03-27 02:00:00,216.19 +2019-03-27 03:00:00,203.52 +2019-03-27 04:00:00,191.08 +2019-03-27 05:00:00,189.41 +2019-03-27 06:00:00,181.93 +2019-03-27 07:00:00,170.27 +2019-03-27 08:00:00,159.05 +2019-03-27 09:00:00,152.21 +2019-03-27 10:00:00,148.56 +2019-03-27 11:00:00,154.48 +2019-03-27 12:00:00,153.16 +2019-03-27 13:00:00,157.04 +2019-03-27 14:00:00,163.61 +2019-03-27 15:00:00,195.54 +2019-03-27 16:00:00,259.87 +2019-03-27 17:00:00,303.23 +2019-03-27 18:00:00,316.96 +2019-03-27 19:00:00,319.13 +2019-03-27 20:00:00,311.16 +2019-03-27 21:00:00,305.8 +2019-03-27 22:00:00,298.21 +2019-03-27 23:00:00,285.36 +2019-03-28 00:00:00,264.07 +2019-03-28 01:00:00,256.41 +2019-03-28 02:00:00,253.57 +2019-03-28 03:00:00,244.09 +2019-03-28 04:00:00,241.31 +2019-03-28 05:00:00,236.66 +2019-03-28 06:00:00,218.11 +2019-03-28 07:00:00,203.95 +2019-03-28 08:00:00,181.82 +2019-03-28 09:00:00,163.7 +2019-03-28 10:00:00,157.47 +2019-03-28 11:00:00,162.31 +2019-03-28 12:00:00,166.35 +2019-03-28 13:00:00,171.21 +2019-03-28 14:00:00,173.26 +2019-03-28 15:00:00,186.08 +2019-03-28 16:00:00,230.15 +2019-03-28 17:00:00,294.94 +2019-03-28 18:00:00,307.84 +2019-03-28 19:00:00,297.33 +2019-03-28 20:00:00,289.53 +2019-03-28 21:00:00,270.52 +2019-03-28 22:00:00,252.17 +2019-03-28 23:00:00,243.64 +2019-03-29 00:00:00,238.79 +2019-03-29 01:00:00,243.45 +2019-03-29 02:00:00,257.08 +2019-03-29 03:00:00,277.17 +2019-03-29 04:00:00,303.48 +2019-03-29 05:00:00,314.53 +2019-03-29 06:00:00,307.11 +2019-03-29 07:00:00,273.18 +2019-03-29 08:00:00,238.72 +2019-03-29 09:00:00,211.0 +2019-03-29 10:00:00,186.83 +2019-03-29 11:00:00,178.88 +2019-03-29 12:00:00,179.85 +2019-03-29 13:00:00,191.45 +2019-03-29 14:00:00,217.35 +2019-03-29 15:00:00,269.68 +2019-03-29 16:00:00,344.92 +2019-03-29 17:00:00,393.92 +2019-03-29 18:00:00,406.51 +2019-03-29 19:00:00,400.84 +2019-03-29 20:00:00,396.36 +2019-03-29 21:00:00,405.63 +2019-03-29 22:00:00,393.75 +2019-03-29 23:00:00,395.03 +2019-03-30 00:00:00,387.92 +2019-03-30 01:00:00,386.03 +2019-03-30 02:00:00,402.85 +2019-03-30 03:00:00,435.93 +2019-03-30 04:00:00,462.38 +2019-03-30 05:00:00,466.59 +2019-03-30 06:00:00,440.58 +2019-03-30 07:00:00,399.57 +2019-03-30 08:00:00,365.55 +2019-03-30 09:00:00,332.66 +2019-03-30 10:00:00,302.41 +2019-03-30 11:00:00,284.18 +2019-03-30 12:00:00,289.67 +2019-03-30 13:00:00,308.17 +2019-03-30 14:00:00,341.06 +2019-03-30 15:00:00,407.84 +2019-03-30 16:00:00,488.87 +2019-03-30 17:00:00,524.11 +2019-03-30 18:00:00,531.71 +2019-03-30 19:00:00,552.69 +2019-03-30 20:00:00,560.84 +2019-03-30 21:00:00,555.52 +2019-03-30 22:00:00,554.89 +2019-03-30 23:00:00,542.89 +2019-03-31 00:00:00,527.47 +2019-03-31 01:00:00,521.52 +2019-03-31 02:00:00,522.51 +2019-03-31 03:00:00,539.61 +2019-03-31 04:00:00,538.41 +2019-03-31 05:00:00,527.08 +2019-03-31 06:00:00,492.21 +2019-03-31 07:00:00,443.97 +2019-03-31 08:00:00,400.79 +2019-03-31 09:00:00,363.13 +2019-03-31 10:00:00,338.93 +2019-03-31 11:00:00,321.75 +2019-03-31 12:00:00,315.02 +2019-03-31 13:00:00,327.88 +2019-03-31 14:00:00,373.02 +2019-03-31 15:00:00,443.74 +2019-03-31 16:00:00,510.41 +2019-03-31 17:00:00,539.91 +2019-03-31 18:00:00,544.08 +2019-03-31 19:00:00,552.17 +2019-03-31 20:00:00,558.83 +2019-03-31 21:00:00,556.8 +2019-03-31 22:00:00,531.33 +2019-03-31 23:00:00,507.81 +2019-04-01 00:00:00,481.5 +2019-04-01 01:00:00,452.67 +2019-04-01 02:00:00,442.35 +2019-04-01 03:00:00,449.23 +2019-04-01 04:00:00,449.54 +2019-04-01 05:00:00,442.3 +2019-04-01 06:00:00,414.92 +2019-04-01 07:00:00,385.45 +2019-04-01 08:00:00,348.23 +2019-04-01 09:00:00,306.17 +2019-04-01 10:00:00,265.78 +2019-04-01 11:00:00,243.62 +2019-04-01 12:00:00,235.01 +2019-04-01 13:00:00,247.19 +2019-04-01 14:00:00,273.71 +2019-04-01 15:00:00,308.1 +2019-04-01 16:00:00,356.17 +2019-04-01 17:00:00,395.42 +2019-04-01 18:00:00,402.42 +2019-04-01 19:00:00,404.97 +2019-04-01 20:00:00,409.72 +2019-04-01 21:00:00,402.47 +2019-04-01 22:00:00,379.75 +2019-04-01 23:00:00,365.76 +2019-04-02 00:00:00,354.96 +2019-04-02 01:00:00,341.8 +2019-04-02 02:00:00,343.95 +2019-04-02 03:00:00,364.8 +2019-04-02 04:00:00,374.24 +2019-04-02 05:00:00,367.91 +2019-04-02 06:00:00,349.3 +2019-04-02 07:00:00,314.35 +2019-04-02 08:00:00,260.78 +2019-04-02 09:00:00,219.51 +2019-04-02 10:00:00,197.34 +2019-04-02 11:00:00,170.78 +2019-04-02 12:00:00,154.38 +2019-04-02 13:00:00,152.94 +2019-04-02 14:00:00,156.65 +2019-04-02 15:00:00,174.32 +2019-04-02 16:00:00,212.34 +2019-04-02 17:00:00,247.83 +2019-04-02 18:00:00,267.52 +2019-04-02 19:00:00,263.01 +2019-04-02 20:00:00,268.33 +2019-04-02 21:00:00,267.7 +2019-04-02 22:00:00,258.65 +2019-04-02 23:00:00,244.91 +2019-04-03 00:00:00,250.17 +2019-04-03 01:00:00,248.7 +2019-04-03 02:00:00,247.12 +2019-04-03 03:00:00,255.37 +2019-04-03 04:00:00,264.74 +2019-04-03 05:00:00,270.79 +2019-04-03 06:00:00,262.44 +2019-04-03 07:00:00,235.79 +2019-04-03 08:00:00,210.62 +2019-04-03 09:00:00,189.14 +2019-04-03 10:00:00,179.85 +2019-04-03 11:00:00,176.38 +2019-04-03 12:00:00,174.32 +2019-04-03 13:00:00,180.66 +2019-04-03 14:00:00,191.92 +2019-04-03 15:00:00,213.53 +2019-04-03 16:00:00,257.63 +2019-04-03 17:00:00,292.92 +2019-04-03 18:00:00,307.3 +2019-04-03 19:00:00,312.71 +2019-04-03 20:00:00,318.46 +2019-04-03 21:00:00,330.8 +2019-04-03 22:00:00,323.08 +2019-04-03 23:00:00,327.0 +2019-04-04 00:00:00,333.5 +2019-04-04 01:00:00,327.96 +2019-04-04 02:00:00,337.99 +2019-04-04 03:00:00,324.79 +2019-04-04 04:00:00,323.47 +2019-04-04 05:00:00,314.08 +2019-04-04 06:00:00,286.09 +2019-04-04 07:00:00,244.68 +2019-04-04 08:00:00,216.81 +2019-04-04 09:00:00,198.5 +2019-04-04 10:00:00,188.5 +2019-04-04 11:00:00,177.86 +2019-04-04 12:00:00,175.08 +2019-04-04 13:00:00,173.89 +2019-04-04 14:00:00,178.51 +2019-04-04 15:00:00,190.05 +2019-04-04 16:00:00,226.84 +2019-04-04 17:00:00,271.44 +2019-04-04 18:00:00,280.12 +2019-04-04 19:00:00,269.3 +2019-04-04 20:00:00,261.26 +2019-04-04 21:00:00,237.05 +2019-04-04 22:00:00,214.56 +2019-04-04 23:00:00,208.13 +2019-04-05 00:00:00,202.07 +2019-04-05 01:00:00,191.49 +2019-04-05 02:00:00,185.49 +2019-04-05 03:00:00,183.5 +2019-04-05 04:00:00,183.28 +2019-04-05 05:00:00,186.46 +2019-04-05 06:00:00,173.5 +2019-04-05 07:00:00,163.02 +2019-04-05 08:00:00,160.17 +2019-04-05 09:00:00,153.69 +2019-04-05 10:00:00,151.22 +2019-04-05 11:00:00,155.34 +2019-04-05 12:00:00,155.63 +2019-04-05 13:00:00,155.3 +2019-04-05 14:00:00,158.56 +2019-04-05 15:00:00,162.64 +2019-04-05 16:00:00,169.55 +2019-04-05 17:00:00,198.82 +2019-04-05 18:00:00,215.04 +2019-04-05 19:00:00,218.09 +2019-04-05 20:00:00,212.57 +2019-04-05 21:00:00,204.12 +2019-04-05 22:00:00,207.85 +2019-04-05 23:00:00,207.7 +2019-04-06 00:00:00,201.95 +2019-04-06 01:00:00,205.81 +2019-04-06 02:00:00,226.29 +2019-04-06 03:00:00,260.45 +2019-04-06 04:00:00,291.39 +2019-04-06 05:00:00,300.26 +2019-04-06 06:00:00,304.3 +2019-04-06 07:00:00,303.28 +2019-04-06 08:00:00,272.76 +2019-04-06 09:00:00,256.56 +2019-04-06 10:00:00,237.84 +2019-04-06 11:00:00,222.2 +2019-04-06 12:00:00,214.8 +2019-04-06 13:00:00,213.01 +2019-04-06 14:00:00,224.51 +2019-04-06 15:00:00,268.53 +2019-04-06 16:00:00,309.72 +2019-04-06 17:00:00,338.25 +2019-04-06 18:00:00,345.3 +2019-04-06 19:00:00,345.85 +2019-04-06 20:00:00,344.24 +2019-04-06 21:00:00,333.25 +2019-04-06 22:00:00,313.45 +2019-04-06 23:00:00,308.65 +2019-04-07 00:00:00,319.3 +2019-04-07 01:00:00,329.1 +2019-04-07 02:00:00,352.01 +2019-04-07 03:00:00,379.09 +2019-04-07 04:00:00,397.35 +2019-04-07 05:00:00,400.0 +2019-04-07 06:00:00,385.42 +2019-04-07 07:00:00,360.69 +2019-04-07 08:00:00,330.58 +2019-04-07 09:00:00,307.62 +2019-04-07 10:00:00,282.3 +2019-04-07 11:00:00,258.82 +2019-04-07 12:00:00,252.7 +2019-04-07 13:00:00,254.89 +2019-04-07 14:00:00,264.34 +2019-04-07 15:00:00,285.97 +2019-04-07 16:00:00,315.75 +2019-04-07 17:00:00,332.96 +2019-04-07 18:00:00,330.5 +2019-04-07 19:00:00,326.1 +2019-04-07 20:00:00,326.21 +2019-04-07 21:00:00,305.56 +2019-04-07 22:00:00,294.41 +2019-04-07 23:00:00,308.85 +2019-04-08 00:00:00,306.41 +2019-04-08 01:00:00,319.67 +2019-04-08 02:00:00,344.65 +2019-04-08 03:00:00,369.95 +2019-04-08 04:00:00,397.2 +2019-04-08 05:00:00,414.95 +2019-04-08 06:00:00,409.04 +2019-04-08 07:00:00,384.17 +2019-04-08 08:00:00,349.31 +2019-04-08 09:00:00,335.93 +2019-04-08 10:00:00,338.56 +2019-04-08 11:00:00,334.02 +2019-04-08 12:00:00,323.12 +2019-04-08 13:00:00,322.31 +2019-04-08 14:00:00,329.04 +2019-04-08 15:00:00,352.89 +2019-04-08 16:00:00,408.0 +2019-04-08 17:00:00,449.68 +2019-04-08 18:00:00,454.74 +2019-04-08 19:00:00,438.54 +2019-04-08 20:00:00,417.04 +2019-04-08 21:00:00,391.54 +2019-04-08 22:00:00,357.44 +2019-04-08 23:00:00,339.57 +2019-04-09 00:00:00,335.48 +2019-04-09 01:00:00,328.04 +2019-04-09 02:00:00,324.01 +2019-04-09 03:00:00,335.15 +2019-04-09 04:00:00,346.96 +2019-04-09 05:00:00,354.73 +2019-04-09 06:00:00,342.84 +2019-04-09 07:00:00,310.83 +2019-04-09 08:00:00,272.7 +2019-04-09 09:00:00,244.42 +2019-04-09 10:00:00,226.25 +2019-04-09 11:00:00,229.7 +2019-04-09 12:00:00,245.95 +2019-04-09 13:00:00,280.35 +2019-04-09 14:00:00,339.9 +2019-04-09 15:00:00,405.24 +2019-04-09 16:00:00,471.04 +2019-04-09 17:00:00,517.44 +2019-04-09 18:00:00,530.16 +2019-04-09 19:00:00,535.65 +2019-04-09 20:00:00,543.49 +2019-04-09 21:00:00,544.67 +2019-04-09 22:00:00,540.71 +2019-04-09 23:00:00,526.08 +2019-04-10 00:00:00,514.82 +2019-04-10 01:00:00,508.1 +2019-04-10 02:00:00,509.83 +2019-04-10 03:00:00,516.78 +2019-04-10 04:00:00,517.31 +2019-04-10 05:00:00,509.11 +2019-04-10 06:00:00,489.48 +2019-04-10 07:00:00,460.62 +2019-04-10 08:00:00,439.76 +2019-04-10 09:00:00,422.93 +2019-04-10 10:00:00,414.3 +2019-04-10 11:00:00,411.91 +2019-04-10 12:00:00,408.17 +2019-04-10 13:00:00,414.43 +2019-04-10 14:00:00,434.25 +2019-04-10 15:00:00,468.27 +2019-04-10 16:00:00,500.05 +2019-04-10 17:00:00,507.43 +2019-04-10 18:00:00,484.79 +2019-04-10 19:00:00,460.1 +2019-04-10 20:00:00,441.54 +2019-04-10 21:00:00,407.99 +2019-04-10 22:00:00,378.18 +2019-04-10 23:00:00,362.09 +2019-04-11 00:00:00,360.65 +2019-04-11 01:00:00,356.38 +2019-04-11 02:00:00,358.97 +2019-04-11 03:00:00,362.63 +2019-04-11 04:00:00,373.87 +2019-04-11 05:00:00,371.55 +2019-04-11 06:00:00,354.8 +2019-04-11 07:00:00,326.28 +2019-04-11 08:00:00,289.01 +2019-04-11 09:00:00,275.1 +2019-04-11 10:00:00,265.98 +2019-04-11 11:00:00,262.04 +2019-04-11 12:00:00,267.03 +2019-04-11 13:00:00,279.26 +2019-04-11 14:00:00,295.26 +2019-04-11 15:00:00,336.46 +2019-04-11 16:00:00,382.47 +2019-04-11 17:00:00,409.3 +2019-04-11 18:00:00,419.94 +2019-04-11 19:00:00,418.03 +2019-04-11 20:00:00,411.7 +2019-04-11 21:00:00,422.54 +2019-04-11 22:00:00,441.14 +2019-04-11 23:00:00,453.81 +2019-04-12 00:00:00,467.48 +2019-04-12 01:00:00,476.24 +2019-04-12 02:00:00,500.13 +2019-04-12 03:00:00,523.35 +2019-04-12 04:00:00,549.83 +2019-04-12 05:00:00,559.46 +2019-04-12 06:00:00,564.11 +2019-04-12 07:00:00,540.26 +2019-04-12 08:00:00,510.08 +2019-04-12 09:00:00,497.65 +2019-04-12 10:00:00,478.87 +2019-04-12 11:00:00,457.91 +2019-04-12 12:00:00,438.05 +2019-04-12 13:00:00,440.19 +2019-04-12 14:00:00,452.92 +2019-04-12 15:00:00,483.11 +2019-04-12 16:00:00,530.26 +2019-04-12 17:00:00,571.46 +2019-04-12 18:00:00,576.45 +2019-04-12 19:00:00,564.62 +2019-04-12 20:00:00,544.89 +2019-04-12 21:00:00,511.15 +2019-04-12 22:00:00,496.16 +2019-04-12 23:00:00,477.28 +2019-04-13 00:00:00,469.63 +2019-04-13 01:00:00,472.92 +2019-04-13 02:00:00,487.52 +2019-04-13 03:00:00,505.09 +2019-04-13 04:00:00,519.62 +2019-04-13 05:00:00,519.71 +2019-04-13 06:00:00,499.67 +2019-04-13 07:00:00,440.09 +2019-04-13 08:00:00,392.09 +2019-04-13 09:00:00,390.55 +2019-04-13 10:00:00,378.57 +2019-04-13 11:00:00,365.7 +2019-04-13 12:00:00,359.46 +2019-04-13 13:00:00,362.51 +2019-04-13 14:00:00,384.3 +2019-04-13 15:00:00,446.71 +2019-04-13 16:00:00,508.73 +2019-04-13 17:00:00,553.92 +2019-04-13 18:00:00,571.92 +2019-04-13 19:00:00,575.97 +2019-04-13 20:00:00,571.31 +2019-04-13 21:00:00,559.5 +2019-04-13 22:00:00,560.59 +2019-04-13 23:00:00,555.07 +2019-04-14 00:00:00,560.53 +2019-04-14 01:00:00,562.76 +2019-04-14 02:00:00,570.28 +2019-04-14 03:00:00,581.02 +2019-04-14 04:00:00,592.27 +2019-04-14 05:00:00,587.47 +2019-04-14 06:00:00,551.05 +2019-04-14 07:00:00,507.99 +2019-04-14 08:00:00,474.02 +2019-04-14 09:00:00,462.97 +2019-04-14 10:00:00,464.62 +2019-04-14 11:00:00,450.51 +2019-04-14 12:00:00,444.21 +2019-04-14 13:00:00,447.13 +2019-04-14 14:00:00,479.27 +2019-04-14 15:00:00,518.03 +2019-04-14 16:00:00,567.87 +2019-04-14 17:00:00,607.94 +2019-04-14 18:00:00,630.15 +2019-04-14 19:00:00,632.71 +2019-04-14 20:00:00,630.31 +2019-04-14 21:00:00,628.69 +2019-04-14 22:00:00,619.37 +2019-04-14 23:00:00,606.9 +2019-04-15 00:00:00,610.67 +2019-04-15 01:00:00,613.78 +2019-04-15 02:00:00,621.5 +2019-04-15 03:00:00,629.16 +2019-04-15 04:00:00,636.17 +2019-04-15 05:00:00,612.13 +2019-04-15 06:00:00,573.17 +2019-04-15 07:00:00,519.85 +2019-04-15 08:00:00,465.47 +2019-04-15 09:00:00,442.76 +2019-04-15 10:00:00,439.5 +2019-04-15 11:00:00,423.44 +2019-04-15 12:00:00,401.72 +2019-04-15 13:00:00,405.01 +2019-04-15 14:00:00,436.46 +2019-04-15 15:00:00,482.9 +2019-04-15 16:00:00,528.11 +2019-04-15 17:00:00,557.44 +2019-04-15 18:00:00,573.04 +2019-04-15 19:00:00,571.13 +2019-04-15 20:00:00,557.19 +2019-04-15 21:00:00,536.61 +2019-04-15 22:00:00,521.41 +2019-04-15 23:00:00,522.92 +2019-04-16 00:00:00,526.71 +2019-04-16 01:00:00,529.36 +2019-04-16 02:00:00,534.45 +2019-04-16 03:00:00,551.58 +2019-04-16 04:00:00,570.06 +2019-04-16 05:00:00,560.93 +2019-04-16 06:00:00,531.18 +2019-04-16 07:00:00,489.21 +2019-04-16 08:00:00,449.52 +2019-04-16 09:00:00,424.39 +2019-04-16 10:00:00,412.65 +2019-04-16 11:00:00,412.02 +2019-04-16 12:00:00,413.18 +2019-04-16 13:00:00,419.91 +2019-04-16 14:00:00,444.11 +2019-04-16 15:00:00,487.94 +2019-04-16 16:00:00,530.35 +2019-04-16 17:00:00,563.25 +2019-04-16 18:00:00,572.84 +2019-04-16 19:00:00,573.57 +2019-04-16 20:00:00,572.92 +2019-04-16 21:00:00,555.39 +2019-04-16 22:00:00,550.03 +2019-04-16 23:00:00,539.6 +2019-04-17 00:00:00,538.87 +2019-04-17 01:00:00,542.13 +2019-04-17 02:00:00,542.65 +2019-04-17 03:00:00,547.91 +2019-04-17 04:00:00,551.97 +2019-04-17 05:00:00,539.28 +2019-04-17 06:00:00,514.31 +2019-04-17 07:00:00,478.93 +2019-04-17 08:00:00,426.68 +2019-04-17 09:00:00,390.21 +2019-04-17 10:00:00,369.6 +2019-04-17 11:00:00,346.11 +2019-04-17 12:00:00,347.07 +2019-04-17 13:00:00,363.8 +2019-04-17 14:00:00,408.42 +2019-04-17 15:00:00,457.59 +2019-04-17 16:00:00,506.35 +2019-04-17 17:00:00,544.65 +2019-04-17 18:00:00,564.64 +2019-04-17 19:00:00,564.67 +2019-04-17 20:00:00,567.81 +2019-04-17 21:00:00,565.3 +2019-04-17 22:00:00,561.12 +2019-04-17 23:00:00,570.63 +2019-04-18 00:00:00,569.68 +2019-04-18 01:00:00,575.77 +2019-04-18 02:00:00,585.57 +2019-04-18 03:00:00,586.56 +2019-04-18 04:00:00,584.89 +2019-04-18 05:00:00,572.89 +2019-04-18 06:00:00,553.02 +2019-04-18 07:00:00,521.28 +2019-04-18 08:00:00,493.03 +2019-04-18 09:00:00,471.27 +2019-04-18 10:00:00,451.94 +2019-04-18 11:00:00,428.81 +2019-04-18 12:00:00,417.91 +2019-04-18 13:00:00,434.97 +2019-04-18 14:00:00,471.57 +2019-04-18 15:00:00,523.17 +2019-04-18 16:00:00,572.05 +2019-04-18 17:00:00,597.06 +2019-04-18 18:00:00,603.9 +2019-04-18 19:00:00,599.01 +2019-04-18 20:00:00,595.21 +2019-04-18 21:00:00,592.25 +2019-04-18 22:00:00,588.8 +2019-04-18 23:00:00,590.27 +2019-04-19 00:00:00,590.97 +2019-04-19 01:00:00,597.67 +2019-04-19 02:00:00,603.78 +2019-04-19 03:00:00,621.65 +2019-04-19 04:00:00,628.07 +2019-04-19 05:00:00,613.66 +2019-04-19 06:00:00,587.62 +2019-04-19 07:00:00,565.56 +2019-04-19 08:00:00,534.06 +2019-04-19 09:00:00,509.36 +2019-04-19 10:00:00,491.26 +2019-04-19 11:00:00,476.91 +2019-04-19 12:00:00,467.94 +2019-04-19 13:00:00,476.25 +2019-04-19 14:00:00,501.44 +2019-04-19 15:00:00,529.33 +2019-04-19 16:00:00,570.5 +2019-04-19 17:00:00,598.33 +2019-04-19 18:00:00,607.14 +2019-04-19 19:00:00,604.5 +2019-04-19 20:00:00,601.14 +2019-04-19 21:00:00,595.6 +2019-04-19 22:00:00,596.42 +2019-04-19 23:00:00,599.2 +2019-04-20 00:00:00,605.93 +2019-04-20 01:00:00,615.75 +2019-04-20 02:00:00,629.94 +2019-04-20 03:00:00,638.99 +2019-04-20 04:00:00,641.29 +2019-04-20 05:00:00,620.85 +2019-04-20 06:00:00,582.44 +2019-04-20 07:00:00,531.38 +2019-04-20 08:00:00,477.98 +2019-04-20 09:00:00,442.02 +2019-04-20 10:00:00,420.09 +2019-04-20 11:00:00,412.04 +2019-04-20 12:00:00,416.22 +2019-04-20 13:00:00,436.2 +2019-04-20 14:00:00,470.59 +2019-04-20 15:00:00,517.74 +2019-04-20 16:00:00,573.13 +2019-04-20 17:00:00,617.41 +2019-04-20 18:00:00,630.23 +2019-04-20 19:00:00,632.67 +2019-04-20 20:00:00,633.1 +2019-04-20 21:00:00,630.7 +2019-04-20 22:00:00,627.33 +2019-04-20 23:00:00,621.66 +2019-04-21 00:00:00,613.48 +2019-04-21 01:00:00,611.25 +2019-04-21 02:00:00,608.22 +2019-04-21 03:00:00,609.36 +2019-04-21 04:00:00,610.36 +2019-04-21 05:00:00,575.14 +2019-04-21 06:00:00,518.28 +2019-04-21 07:00:00,449.34 +2019-04-21 08:00:00,370.87 +2019-04-21 09:00:00,315.19 +2019-04-21 10:00:00,278.3 +2019-04-21 11:00:00,268.08 +2019-04-21 12:00:00,271.85 +2019-04-21 13:00:00,285.17 +2019-04-21 14:00:00,306.74 +2019-04-21 15:00:00,335.01 +2019-04-21 16:00:00,370.67 +2019-04-21 17:00:00,404.83 +2019-04-21 18:00:00,420.5 +2019-04-21 19:00:00,411.94 +2019-04-21 20:00:00,402.74 +2019-04-21 21:00:00,391.59 +2019-04-21 22:00:00,380.27 +2019-04-21 23:00:00,375.37 +2019-04-22 00:00:00,377.67 +2019-04-22 01:00:00,386.55 +2019-04-22 02:00:00,396.77 +2019-04-22 03:00:00,412.04 +2019-04-22 04:00:00,420.86 +2019-04-22 05:00:00,403.54 +2019-04-22 06:00:00,363.16 +2019-04-22 07:00:00,314.05 +2019-04-22 08:00:00,280.44 +2019-04-22 09:00:00,250.57 +2019-04-22 10:00:00,236.24 +2019-04-22 11:00:00,221.08 +2019-04-22 12:00:00,214.35 +2019-04-22 13:00:00,215.69 +2019-04-22 14:00:00,223.15 +2019-04-22 15:00:00,257.12 +2019-04-22 16:00:00,329.99 +2019-04-22 17:00:00,391.98 +2019-04-22 18:00:00,422.27 +2019-04-22 19:00:00,432.5 +2019-04-22 20:00:00,428.13 +2019-04-22 21:00:00,409.7 +2019-04-22 22:00:00,397.45 +2019-04-22 23:00:00,400.62 +2019-04-23 00:00:00,408.41 +2019-04-23 01:00:00,424.46 +2019-04-23 02:00:00,433.67 +2019-04-23 03:00:00,449.1 +2019-04-23 04:00:00,462.37 +2019-04-23 05:00:00,452.28 +2019-04-23 06:00:00,416.3 +2019-04-23 07:00:00,369.19 +2019-04-23 08:00:00,336.3 +2019-04-23 09:00:00,298.43 +2019-04-23 10:00:00,265.63 +2019-04-23 11:00:00,242.75 +2019-04-23 12:00:00,232.39 +2019-04-23 13:00:00,238.68 +2019-04-23 14:00:00,264.58 +2019-04-23 15:00:00,326.55 +2019-04-23 16:00:00,395.18 +2019-04-23 17:00:00,455.86 +2019-04-23 18:00:00,480.5 +2019-04-23 19:00:00,489.68 +2019-04-23 20:00:00,479.0 +2019-04-23 21:00:00,469.36 +2019-04-23 22:00:00,455.27 +2019-04-23 23:00:00,446.82 +2019-04-24 00:00:00,428.39 +2019-04-24 01:00:00,425.98 +2019-04-24 02:00:00,419.69 +2019-04-24 03:00:00,415.59 +2019-04-24 04:00:00,416.87 +2019-04-24 05:00:00,403.94 +2019-04-24 06:00:00,376.98 +2019-04-24 07:00:00,331.86 +2019-04-24 08:00:00,269.68 +2019-04-24 09:00:00,236.67 +2019-04-24 10:00:00,220.25 +2019-04-24 11:00:00,212.7 +2019-04-24 12:00:00,211.22 +2019-04-24 13:00:00,215.33 +2019-04-24 14:00:00,227.47 +2019-04-24 15:00:00,257.95 +2019-04-24 16:00:00,329.59 +2019-04-24 17:00:00,378.06 +2019-04-24 18:00:00,404.34 +2019-04-24 19:00:00,392.61 +2019-04-24 20:00:00,386.15 +2019-04-24 21:00:00,377.98 +2019-04-24 22:00:00,351.07 +2019-04-24 23:00:00,343.02 +2019-04-25 00:00:00,342.98 +2019-04-25 01:00:00,344.55 +2019-04-25 02:00:00,348.11 +2019-04-25 03:00:00,348.86 +2019-04-25 04:00:00,347.82 +2019-04-25 05:00:00,334.0 +2019-04-25 06:00:00,306.03 +2019-04-25 07:00:00,256.69 +2019-04-25 08:00:00,221.1 +2019-04-25 09:00:00,212.08 +2019-04-25 10:00:00,210.02 +2019-04-25 11:00:00,209.02 +2019-04-25 12:00:00,213.93 +2019-04-25 13:00:00,217.78 +2019-04-25 14:00:00,224.25 +2019-04-25 15:00:00,248.5 +2019-04-25 16:00:00,315.73 +2019-04-25 17:00:00,403.81 +2019-04-25 18:00:00,437.12 +2019-04-25 19:00:00,424.2 +2019-04-25 20:00:00,416.21 +2019-04-25 21:00:00,420.78 +2019-04-25 22:00:00,421.52 +2019-04-25 23:00:00,424.95 +2019-04-26 00:00:00,438.42 +2019-04-26 01:00:00,446.07 +2019-04-26 02:00:00,460.59 +2019-04-26 03:00:00,513.98 +2019-04-26 04:00:00,538.49 +2019-04-26 05:00:00,529.06 +2019-04-26 06:00:00,500.74 +2019-04-26 07:00:00,438.2 +2019-04-26 08:00:00,376.88 +2019-04-26 09:00:00,344.42 +2019-04-26 10:00:00,322.92 +2019-04-26 11:00:00,312.85 +2019-04-26 12:00:00,312.44 +2019-04-26 13:00:00,330.86 +2019-04-26 14:00:00,369.25 +2019-04-26 15:00:00,441.42 +2019-04-26 16:00:00,517.22 +2019-04-26 17:00:00,553.38 +2019-04-26 18:00:00,559.79 +2019-04-26 19:00:00,537.49 +2019-04-26 20:00:00,515.9 +2019-04-26 21:00:00,480.83 +2019-04-26 22:00:00,466.18 +2019-04-26 23:00:00,454.76 +2019-04-27 00:00:00,457.04 +2019-04-27 01:00:00,448.9 +2019-04-27 02:00:00,457.46 +2019-04-27 03:00:00,485.06 +2019-04-27 04:00:00,516.57 +2019-04-27 05:00:00,514.18 +2019-04-27 06:00:00,489.03 +2019-04-27 07:00:00,431.93 +2019-04-27 08:00:00,347.09 +2019-04-27 09:00:00,303.95 +2019-04-27 10:00:00,287.14 +2019-04-27 11:00:00,273.09 +2019-04-27 12:00:00,270.16 +2019-04-27 13:00:00,283.67 +2019-04-27 14:00:00,327.46 +2019-04-27 15:00:00,409.38 +2019-04-27 16:00:00,483.48 +2019-04-27 17:00:00,529.07 +2019-04-27 18:00:00,531.03 +2019-04-27 19:00:00,499.79 +2019-04-27 20:00:00,455.74 +2019-04-27 21:00:00,432.44 +2019-04-27 22:00:00,428.5 +2019-04-27 23:00:00,445.67 +2019-04-28 00:00:00,462.99 +2019-04-28 01:00:00,472.72 +2019-04-28 02:00:00,487.82 +2019-04-28 03:00:00,527.59 +2019-04-28 04:00:00,548.17 +2019-04-28 05:00:00,539.46 +2019-04-28 06:00:00,512.93 +2019-04-28 07:00:00,457.59 +2019-04-28 08:00:00,401.19 +2019-04-28 09:00:00,345.07 +2019-04-28 10:00:00,315.16 +2019-04-28 11:00:00,313.03 +2019-04-28 12:00:00,320.43 +2019-04-28 13:00:00,346.19 +2019-04-28 14:00:00,388.24 +2019-04-28 15:00:00,443.64 +2019-04-28 16:00:00,482.69 +2019-04-28 17:00:00,502.46 +2019-04-28 18:00:00,501.57 +2019-04-28 19:00:00,490.56 +2019-04-28 20:00:00,474.57 +2019-04-28 21:00:00,464.53 +2019-04-28 22:00:00,462.03 +2019-04-28 23:00:00,462.85 +2019-04-29 00:00:00,470.27 +2019-04-29 01:00:00,478.49 +2019-04-29 02:00:00,490.42 +2019-04-29 03:00:00,509.39 +2019-04-29 04:00:00,511.04 +2019-04-29 05:00:00,503.88 +2019-04-29 06:00:00,485.61 +2019-04-29 07:00:00,459.96 +2019-04-29 08:00:00,425.62 +2019-04-29 09:00:00,405.29 +2019-04-29 10:00:00,373.88 +2019-04-29 11:00:00,338.42 +2019-04-29 12:00:00,318.56 +2019-04-29 13:00:00,319.16 +2019-04-29 14:00:00,334.03 +2019-04-29 15:00:00,381.18 +2019-04-29 16:00:00,427.7 +2019-04-29 17:00:00,460.17 +2019-04-29 18:00:00,473.08 +2019-04-29 19:00:00,465.03 +2019-04-29 20:00:00,461.66 +2019-04-29 21:00:00,454.36 +2019-04-29 22:00:00,440.46 +2019-04-29 23:00:00,442.22 +2019-04-30 00:00:00,456.82 +2019-04-30 01:00:00,471.78 +2019-04-30 02:00:00,494.73 +2019-04-30 03:00:00,524.38 +2019-04-30 04:00:00,561.05 +2019-04-30 05:00:00,566.51 +2019-04-30 06:00:00,551.5 +2019-04-30 07:00:00,527.48 +2019-04-30 08:00:00,504.97 +2019-04-30 09:00:00,491.2 +2019-04-30 10:00:00,482.24 +2019-04-30 11:00:00,481.78 +2019-04-30 12:00:00,487.29 +2019-04-30 13:00:00,507.89 +2019-04-30 14:00:00,531.54 +2019-04-30 15:00:00,561.64 +2019-04-30 16:00:00,595.82 +2019-04-30 17:00:00,614.97 +2019-04-30 18:00:00,620.78 +2019-04-30 19:00:00,624.25 +2019-04-30 20:00:00,624.29 +2019-04-30 21:00:00,614.45 +2019-04-30 22:00:00,597.7 +2019-04-30 23:00:00,593.78 +2019-05-01 00:00:00,587.51 +2019-05-01 01:00:00,568.18 +2019-05-01 02:00:00,524.72 +2019-05-01 03:00:00,511.31 +2019-05-01 04:00:00,492.63 +2019-05-01 05:00:00,474.54 +2019-05-01 06:00:00,455.23 +2019-05-01 07:00:00,417.19 +2019-05-01 08:00:00,372.02 +2019-05-01 09:00:00,357.04 +2019-05-01 10:00:00,358.82 +2019-05-01 11:00:00,355.19 +2019-05-01 12:00:00,352.68 +2019-05-01 13:00:00,362.86 +2019-05-01 14:00:00,380.17 +2019-05-01 15:00:00,412.95 +2019-05-01 16:00:00,454.46 +2019-05-01 17:00:00,489.03 +2019-05-01 18:00:00,495.07 +2019-05-01 19:00:00,489.75 +2019-05-01 20:00:00,477.18 +2019-05-01 21:00:00,462.96 +2019-05-01 22:00:00,458.66 +2019-05-01 23:00:00,449.97 +2019-05-02 00:00:00,446.9 +2019-05-02 01:00:00,437.46 +2019-05-02 02:00:00,426.25 +2019-05-02 03:00:00,427.3 +2019-05-02 04:00:00,423.44 +2019-05-02 05:00:00,406.63 +2019-05-02 06:00:00,375.75 +2019-05-02 07:00:00,343.75 +2019-05-02 08:00:00,315.53 +2019-05-02 09:00:00,297.59 +2019-05-02 10:00:00,275.43 +2019-05-02 11:00:00,256.43 +2019-05-02 12:00:00,237.42 +2019-05-02 13:00:00,220.05 +2019-05-02 14:00:00,225.21 +2019-05-02 15:00:00,271.63 +2019-05-02 16:00:00,329.5 +2019-05-02 17:00:00,376.07 +2019-05-02 18:00:00,408.31 +2019-05-02 19:00:00,412.8 +2019-05-02 20:00:00,418.94 +2019-05-02 21:00:00,401.49 +2019-05-02 22:00:00,404.05 +2019-05-02 23:00:00,393.07 +2019-05-03 00:00:00,391.63 +2019-05-03 01:00:00,407.0 +2019-05-03 02:00:00,412.01 +2019-05-03 03:00:00,439.24 +2019-05-03 04:00:00,454.74 +2019-05-03 05:00:00,444.25 +2019-05-03 06:00:00,403.86 +2019-05-03 07:00:00,350.02 +2019-05-03 08:00:00,315.07 +2019-05-03 09:00:00,304.77 +2019-05-03 10:00:00,290.69 +2019-05-03 11:00:00,276.5 +2019-05-03 12:00:00,272.98 +2019-05-03 13:00:00,278.27 +2019-05-03 14:00:00,298.78 +2019-05-03 15:00:00,339.9 +2019-05-03 16:00:00,389.71 +2019-05-03 17:00:00,438.58 +2019-05-03 18:00:00,462.71 +2019-05-03 19:00:00,457.97 +2019-05-03 20:00:00,410.67 +2019-05-03 21:00:00,356.75 +2019-05-03 22:00:00,267.68 +2019-05-03 23:00:00,226.3 +2019-05-04 00:00:00,210.64 +2019-05-04 01:00:00,200.15 +2019-05-04 02:00:00,192.89 +2019-05-04 03:00:00,187.27 +2019-05-04 04:00:00,192.68 +2019-05-04 05:00:00,197.53 +2019-05-04 06:00:00,198.16 +2019-05-04 07:00:00,182.42 +2019-05-04 08:00:00,168.52 +2019-05-04 09:00:00,162.31 +2019-05-04 10:00:00,160.96 +2019-05-04 11:00:00,159.8 +2019-05-04 12:00:00,160.93 +2019-05-04 13:00:00,162.82 +2019-05-04 14:00:00,164.54 +2019-05-04 15:00:00,175.71 +2019-05-04 16:00:00,201.6 +2019-05-04 17:00:00,235.33 +2019-05-04 18:00:00,245.64 +2019-05-04 19:00:00,244.58 +2019-05-04 20:00:00,236.42 +2019-05-04 21:00:00,216.43 +2019-05-04 22:00:00,213.52 +2019-05-04 23:00:00,222.99 +2019-05-05 00:00:00,229.13 +2019-05-05 01:00:00,242.07 +2019-05-05 02:00:00,253.18 +2019-05-05 03:00:00,260.96 +2019-05-05 04:00:00,269.37 +2019-05-05 05:00:00,263.52 +2019-05-05 06:00:00,235.18 +2019-05-05 07:00:00,207.98 +2019-05-05 08:00:00,190.66 +2019-05-05 09:00:00,176.39 +2019-05-05 10:00:00,164.44 +2019-05-05 11:00:00,163.11 +2019-05-05 12:00:00,156.66 +2019-05-05 13:00:00,160.87 +2019-05-05 14:00:00,172.82 +2019-05-05 15:00:00,198.62 +2019-05-05 16:00:00,233.72 +2019-05-05 17:00:00,295.32 +2019-05-05 18:00:00,334.92 +2019-05-05 19:00:00,343.23 +2019-05-05 20:00:00,337.35 +2019-05-05 21:00:00,327.79 +2019-05-05 22:00:00,341.71 +2019-05-05 23:00:00,351.11 +2019-05-06 00:00:00,354.13 +2019-05-06 01:00:00,358.93 +2019-05-06 02:00:00,377.21 +2019-05-06 03:00:00,396.68 +2019-05-06 04:00:00,406.61 +2019-05-06 05:00:00,400.47 +2019-05-06 06:00:00,383.29 +2019-05-06 07:00:00,357.93 +2019-05-06 08:00:00,350.34 +2019-05-06 09:00:00,352.6 +2019-05-06 10:00:00,353.84 +2019-05-06 11:00:00,360.54 +2019-05-06 12:00:00,381.95 +2019-05-06 13:00:00,409.82 +2019-05-06 14:00:00,440.9 +2019-05-06 15:00:00,489.98 +2019-05-06 16:00:00,528.81 +2019-05-06 17:00:00,547.92 +2019-05-06 18:00:00,555.86 +2019-05-06 19:00:00,564.57 +2019-05-06 20:00:00,555.61 +2019-05-06 21:00:00,553.53 +2019-05-06 22:00:00,554.92 +2019-05-06 23:00:00,542.89 +2019-05-07 00:00:00,523.88 +2019-05-07 01:00:00,517.76 +2019-05-07 02:00:00,521.39 +2019-05-07 03:00:00,525.99 +2019-05-07 04:00:00,525.3 +2019-05-07 05:00:00,503.48 +2019-05-07 06:00:00,481.37 +2019-05-07 07:00:00,451.65 +2019-05-07 08:00:00,407.26 +2019-05-07 09:00:00,357.81 +2019-05-07 10:00:00,313.18 +2019-05-07 11:00:00,270.64 +2019-05-07 12:00:00,251.06 +2019-05-07 13:00:00,252.95 +2019-05-07 14:00:00,268.07 +2019-05-07 15:00:00,300.11 +2019-05-07 16:00:00,355.59 +2019-05-07 17:00:00,403.27 +2019-05-07 18:00:00,431.51 +2019-05-07 19:00:00,442.16 +2019-05-07 20:00:00,439.65 +2019-05-07 21:00:00,435.9 +2019-05-07 22:00:00,417.72 +2019-05-07 23:00:00,412.93 +2019-05-08 00:00:00,420.31 +2019-05-08 01:00:00,422.81 +2019-05-08 02:00:00,415.64 +2019-05-08 03:00:00,412.59 +2019-05-08 04:00:00,407.39 +2019-05-08 05:00:00,376.65 +2019-05-08 06:00:00,326.13 +2019-05-08 07:00:00,274.24 +2019-05-08 08:00:00,222.27 +2019-05-08 09:00:00,203.5 +2019-05-08 10:00:00,186.35 +2019-05-08 11:00:00,185.19 +2019-05-08 12:00:00,188.76 +2019-05-08 13:00:00,191.6 +2019-05-08 14:00:00,204.36 +2019-05-08 15:00:00,223.22 +2019-05-08 16:00:00,237.64 +2019-05-08 17:00:00,281.59 +2019-05-08 18:00:00,304.33 +2019-05-08 19:00:00,299.54 +2019-05-08 20:00:00,265.98 +2019-05-08 21:00:00,232.88 +2019-05-08 22:00:00,210.98 +2019-05-08 23:00:00,210.2 +2019-05-09 00:00:00,213.65 +2019-05-09 01:00:00,213.34 +2019-05-09 02:00:00,211.41 +2019-05-09 03:00:00,210.89 +2019-05-09 04:00:00,210.58 +2019-05-09 05:00:00,201.86 +2019-05-09 06:00:00,190.96 +2019-05-09 07:00:00,175.67 +2019-05-09 08:00:00,169.1 +2019-05-09 09:00:00,157.21 +2019-05-09 10:00:00,154.01 +2019-05-09 11:00:00,160.16 +2019-05-09 12:00:00,163.49 +2019-05-09 13:00:00,168.2 +2019-05-09 14:00:00,173.69 +2019-05-09 15:00:00,182.02 +2019-05-09 16:00:00,189.59 +2019-05-09 17:00:00,218.91 +2019-05-09 18:00:00,224.57 +2019-05-09 19:00:00,219.22 +2019-05-09 20:00:00,224.03 +2019-05-09 21:00:00,209.48 +2019-05-09 22:00:00,209.72 +2019-05-09 23:00:00,215.3 +2019-05-10 00:00:00,235.43 +2019-05-10 01:00:00,265.22 +2019-05-10 02:00:00,271.19 +2019-05-10 03:00:00,293.25 +2019-05-10 04:00:00,303.6 +2019-05-10 05:00:00,293.31 +2019-05-10 06:00:00,296.53 +2019-05-10 07:00:00,275.82 +2019-05-10 08:00:00,247.38 +2019-05-10 09:00:00,227.37 +2019-05-10 10:00:00,219.02 +2019-05-10 11:00:00,222.38 +2019-05-10 12:00:00,241.5 +2019-05-10 13:00:00,259.03 +2019-05-10 14:00:00,291.05 +2019-05-10 15:00:00,357.76 +2019-05-10 16:00:00,430.52 +2019-05-10 17:00:00,467.67 +2019-05-10 18:00:00,480.96 +2019-05-10 19:00:00,481.25 +2019-05-10 20:00:00,487.88 +2019-05-10 21:00:00,496.27 +2019-05-10 22:00:00,474.45 +2019-05-10 23:00:00,463.52 +2019-05-11 00:00:00,452.95 +2019-05-11 01:00:00,443.14 +2019-05-11 02:00:00,449.89 +2019-05-11 03:00:00,487.82 +2019-05-11 04:00:00,511.81 +2019-05-11 05:00:00,502.85 +2019-05-11 06:00:00,498.53 +2019-05-11 07:00:00,487.65 +2019-05-11 08:00:00,464.14 +2019-05-11 09:00:00,440.28 +2019-05-11 10:00:00,436.8 +2019-05-11 11:00:00,438.25 +2019-05-11 12:00:00,436.86 +2019-05-11 13:00:00,447.29 +2019-05-11 14:00:00,450.09 +2019-05-11 15:00:00,468.24 +2019-05-11 16:00:00,487.79 +2019-05-11 17:00:00,494.13 +2019-05-11 18:00:00,498.4 +2019-05-11 19:00:00,513.64 +2019-05-11 20:00:00,520.16 +2019-05-11 21:00:00,509.81 +2019-05-11 22:00:00,469.97 +2019-05-11 23:00:00,440.0 +2019-05-12 00:00:00,430.86 +2019-05-12 01:00:00,416.63 +2019-05-12 02:00:00,419.9 +2019-05-12 03:00:00,465.51 +2019-05-12 04:00:00,493.27 +2019-05-12 05:00:00,501.67 +2019-05-12 06:00:00,487.81 +2019-05-12 07:00:00,469.58 +2019-05-12 08:00:00,442.07 +2019-05-12 09:00:00,428.39 +2019-05-12 10:00:00,424.1 +2019-05-12 11:00:00,414.91 +2019-05-12 12:00:00,426.52 +2019-05-12 13:00:00,436.6 +2019-05-12 14:00:00,455.28 +2019-05-12 15:00:00,462.47 +2019-05-12 16:00:00,476.77 +2019-05-12 17:00:00,494.08 +2019-05-12 18:00:00,505.82 +2019-05-12 19:00:00,516.04 +2019-05-12 20:00:00,518.29 +2019-05-12 21:00:00,516.2 +2019-05-12 22:00:00,470.11 +2019-05-12 23:00:00,441.88 +2019-05-13 00:00:00,416.57 +2019-05-13 01:00:00,398.15 +2019-05-13 02:00:00,387.06 +2019-05-13 03:00:00,396.21 +2019-05-13 04:00:00,398.38 +2019-05-13 05:00:00,378.97 +2019-05-13 06:00:00,357.74 +2019-05-13 07:00:00,322.45 +2019-05-13 08:00:00,288.32 +2019-05-13 09:00:00,276.31 +2019-05-13 10:00:00,283.49 +2019-05-13 11:00:00,284.24 +2019-05-13 12:00:00,282.57 +2019-05-13 13:00:00,284.44 +2019-05-13 14:00:00,291.01 +2019-05-13 15:00:00,313.1 +2019-05-13 16:00:00,347.17 +2019-05-13 17:00:00,384.94 +2019-05-13 18:00:00,403.02 +2019-05-13 19:00:00,412.02 +2019-05-13 20:00:00,409.94 +2019-05-13 21:00:00,408.91 +2019-05-13 22:00:00,390.98 +2019-05-13 23:00:00,386.22 +2019-05-14 00:00:00,380.84 +2019-05-14 01:00:00,378.75 +2019-05-14 02:00:00,383.03 +2019-05-14 03:00:00,395.82 +2019-05-14 04:00:00,396.96 +2019-05-14 05:00:00,385.11 +2019-05-14 06:00:00,360.83 +2019-05-14 07:00:00,336.05 +2019-05-14 08:00:00,309.72 +2019-05-14 09:00:00,299.47 +2019-05-14 10:00:00,298.54 +2019-05-14 11:00:00,284.22 +2019-05-14 12:00:00,267.81 +2019-05-14 13:00:00,275.03 +2019-05-14 14:00:00,287.65 +2019-05-14 15:00:00,328.33 +2019-05-14 16:00:00,360.81 +2019-05-14 17:00:00,394.84 +2019-05-14 18:00:00,420.14 +2019-05-14 19:00:00,426.38 +2019-05-14 20:00:00,429.38 +2019-05-14 21:00:00,427.47 +2019-05-14 22:00:00,407.26 +2019-05-14 23:00:00,386.8 +2019-05-15 00:00:00,374.43 +2019-05-15 01:00:00,359.09 +2019-05-15 02:00:00,353.08 +2019-05-15 03:00:00,358.67 +2019-05-15 04:00:00,352.39 +2019-05-15 05:00:00,342.0 +2019-05-15 06:00:00,328.32 +2019-05-15 07:00:00,307.62 +2019-05-15 08:00:00,282.09 +2019-05-15 09:00:00,263.61 +2019-05-15 10:00:00,243.49 +2019-05-15 11:00:00,216.19 +2019-05-15 12:00:00,212.65 +2019-05-15 13:00:00,221.06 +2019-05-15 14:00:00,257.04 +2019-05-15 15:00:00,293.3 +2019-05-15 16:00:00,333.83 +2019-05-15 17:00:00,356.97 +2019-05-15 18:00:00,371.93 +2019-05-15 19:00:00,364.4 +2019-05-15 20:00:00,373.83 +2019-05-15 21:00:00,361.2 +2019-05-15 22:00:00,313.63 +2019-05-15 23:00:00,302.0 +2019-05-16 00:00:00,299.06 +2019-05-16 01:00:00,301.79 +2019-05-16 02:00:00,303.68 +2019-05-16 03:00:00,307.51 +2019-05-16 04:00:00,298.97 +2019-05-16 05:00:00,288.66 +2019-05-16 06:00:00,270.14 +2019-05-16 07:00:00,244.66 +2019-05-16 08:00:00,230.4 +2019-05-16 09:00:00,219.58 +2019-05-16 10:00:00,219.29 +2019-05-16 11:00:00,214.32 +2019-05-16 12:00:00,220.05 +2019-05-16 13:00:00,232.86 +2019-05-16 14:00:00,249.11 +2019-05-16 15:00:00,293.82 +2019-05-16 16:00:00,358.9 +2019-05-16 17:00:00,396.24 +2019-05-16 18:00:00,415.25 +2019-05-16 19:00:00,410.87 +2019-05-16 20:00:00,404.46 +2019-05-16 21:00:00,401.72 +2019-05-16 22:00:00,379.51 +2019-05-16 23:00:00,359.24 +2019-05-17 00:00:00,347.97 +2019-05-17 01:00:00,344.19 +2019-05-17 02:00:00,349.85 +2019-05-17 03:00:00,365.34 +2019-05-17 04:00:00,401.27 +2019-05-17 05:00:00,403.95 +2019-05-17 06:00:00,380.59 +2019-05-17 07:00:00,353.0 +2019-05-17 08:00:00,337.76 +2019-05-17 09:00:00,314.07 +2019-05-17 10:00:00,298.46 +2019-05-17 11:00:00,282.2 +2019-05-17 12:00:00,278.69 +2019-05-17 13:00:00,284.63 +2019-05-17 14:00:00,298.76 +2019-05-17 15:00:00,331.83 +2019-05-17 16:00:00,371.06 +2019-05-17 17:00:00,401.16 +2019-05-17 18:00:00,412.11 +2019-05-17 19:00:00,409.89 +2019-05-17 20:00:00,405.09 +2019-05-17 21:00:00,399.26 +2019-05-17 22:00:00,387.61 +2019-05-17 23:00:00,385.33 +2019-05-18 00:00:00,382.28 +2019-05-18 01:00:00,377.97 +2019-05-18 02:00:00,388.01 +2019-05-18 03:00:00,415.03 +2019-05-18 04:00:00,428.25 +2019-05-18 05:00:00,433.22 +2019-05-18 06:00:00,424.69 +2019-05-18 07:00:00,397.67 +2019-05-18 08:00:00,373.3 +2019-05-18 09:00:00,359.91 +2019-05-18 10:00:00,339.75 +2019-05-18 11:00:00,330.56 +2019-05-18 12:00:00,322.66 +2019-05-18 13:00:00,327.85 +2019-05-18 14:00:00,343.63 +2019-05-18 15:00:00,381.59 +2019-05-18 16:00:00,429.75 +2019-05-18 17:00:00,464.36 +2019-05-18 18:00:00,487.44 +2019-05-18 19:00:00,496.36 +2019-05-18 20:00:00,493.98 +2019-05-18 21:00:00,487.79 +2019-05-18 22:00:00,481.8 +2019-05-18 23:00:00,472.05 +2019-05-19 00:00:00,460.96 +2019-05-19 01:00:00,459.64 +2019-05-19 02:00:00,470.57 +2019-05-19 03:00:00,489.87 +2019-05-19 04:00:00,488.15 +2019-05-19 05:00:00,469.6 +2019-05-19 06:00:00,445.39 +2019-05-19 07:00:00,422.4 +2019-05-19 08:00:00,400.96 +2019-05-19 09:00:00,369.85 +2019-05-19 10:00:00,348.92 +2019-05-19 11:00:00,330.73 +2019-05-19 12:00:00,315.76 +2019-05-19 13:00:00,311.98 +2019-05-19 14:00:00,332.81 +2019-05-19 15:00:00,367.48 +2019-05-19 16:00:00,410.01 +2019-05-19 17:00:00,440.34 +2019-05-19 18:00:00,461.58 +2019-05-19 19:00:00,476.92 +2019-05-19 20:00:00,486.49 +2019-05-19 21:00:00,481.26 +2019-05-19 22:00:00,471.24 +2019-05-19 23:00:00,463.62 +2019-05-20 00:00:00,454.11 +2019-05-20 01:00:00,439.53 +2019-05-20 02:00:00,450.16 +2019-05-20 03:00:00,470.99 +2019-05-20 04:00:00,481.42 +2019-05-20 05:00:00,460.04 +2019-05-20 06:00:00,432.85 +2019-05-20 07:00:00,416.77 +2019-05-20 08:00:00,385.37 +2019-05-20 09:00:00,350.97 +2019-05-20 10:00:00,317.95 +2019-05-20 11:00:00,286.44 +2019-05-20 12:00:00,277.55 +2019-05-20 13:00:00,281.97 +2019-05-20 14:00:00,301.04 +2019-05-20 15:00:00,332.16 +2019-05-20 16:00:00,390.31 +2019-05-20 17:00:00,425.6 +2019-05-20 18:00:00,438.94 +2019-05-20 19:00:00,434.19 +2019-05-20 20:00:00,405.89 +2019-05-20 21:00:00,344.32 +2019-05-20 22:00:00,272.59 +2019-05-20 23:00:00,216.49 +2019-05-21 00:00:00,208.08 +2019-05-21 01:00:00,207.02 +2019-05-21 02:00:00,205.85 +2019-05-21 03:00:00,205.64 +2019-05-21 04:00:00,210.86 +2019-05-21 05:00:00,216.95 +2019-05-21 06:00:00,214.55 +2019-05-21 07:00:00,178.16 +2019-05-21 08:00:00,163.53 +2019-05-21 09:00:00,156.82 +2019-05-21 10:00:00,148.41 +2019-05-21 11:00:00,145.7 +2019-05-21 12:00:00,145.96 +2019-05-21 13:00:00,149.56 +2019-05-21 14:00:00,155.14 +2019-05-21 15:00:00,166.6 +2019-05-21 16:00:00,186.01 +2019-05-21 17:00:00,207.8 +2019-05-21 18:00:00,233.81 +2019-05-21 19:00:00,256.14 +2019-05-21 20:00:00,256.13 +2019-05-21 21:00:00,231.17 +2019-05-21 22:00:00,209.83 +2019-05-21 23:00:00,186.83 +2019-05-22 00:00:00,181.97 +2019-05-22 01:00:00,176.81 +2019-05-22 02:00:00,177.22 +2019-05-22 03:00:00,176.65 +2019-05-22 04:00:00,171.58 +2019-05-22 05:00:00,161.67 +2019-05-22 06:00:00,150.28 +2019-05-22 07:00:00,140.04 +2019-05-22 08:00:00,138.46 +2019-05-22 09:00:00,133.75 +2019-05-22 10:00:00,133.09 +2019-05-22 11:00:00,136.86 +2019-05-22 12:00:00,140.38 +2019-05-22 13:00:00,142.11 +2019-05-22 14:00:00,143.37 +2019-05-22 15:00:00,148.26 +2019-05-22 16:00:00,150.43 +2019-05-22 17:00:00,170.84 +2019-05-22 18:00:00,196.82 +2019-05-22 19:00:00,214.55 +2019-05-22 20:00:00,216.3 +2019-05-22 21:00:00,202.67 +2019-05-22 22:00:00,200.06 +2019-05-22 23:00:00,207.43 +2019-05-23 00:00:00,202.55 +2019-05-23 01:00:00,203.0 +2019-05-23 02:00:00,205.61 +2019-05-23 03:00:00,214.96 +2019-05-23 04:00:00,214.04 +2019-05-23 05:00:00,213.95 +2019-05-23 06:00:00,203.47 +2019-05-23 07:00:00,182.57 +2019-05-23 08:00:00,171.66 +2019-05-23 09:00:00,162.3 +2019-05-23 10:00:00,156.4 +2019-05-23 11:00:00,156.44 +2019-05-23 12:00:00,161.28 +2019-05-23 13:00:00,169.13 +2019-05-23 14:00:00,179.03 +2019-05-23 15:00:00,193.76 +2019-05-23 16:00:00,235.38 +2019-05-23 17:00:00,306.67 +2019-05-23 18:00:00,347.07 +2019-05-23 19:00:00,362.51 +2019-05-23 20:00:00,340.94 +2019-05-23 21:00:00,291.98 +2019-05-23 22:00:00,250.72 +2019-05-23 23:00:00,228.98 +2019-05-24 00:00:00,218.79 +2019-05-24 01:00:00,213.25 +2019-05-24 02:00:00,205.67 +2019-05-24 03:00:00,204.52 +2019-05-24 04:00:00,198.08 +2019-05-24 05:00:00,199.8 +2019-05-24 06:00:00,196.17 +2019-05-24 07:00:00,178.84 +2019-05-24 08:00:00,160.72 +2019-05-24 09:00:00,153.55 +2019-05-24 10:00:00,153.94 +2019-05-24 11:00:00,157.5 +2019-05-24 12:00:00,164.92 +2019-05-24 13:00:00,174.85 +2019-05-24 14:00:00,192.18 +2019-05-24 15:00:00,229.64 +2019-05-24 16:00:00,273.64 +2019-05-24 17:00:00,331.48 +2019-05-24 18:00:00,347.85 +2019-05-24 19:00:00,347.41 +2019-05-24 20:00:00,346.13 +2019-05-24 21:00:00,330.73 +2019-05-24 22:00:00,305.37 +2019-05-24 23:00:00,300.41 +2019-05-25 00:00:00,298.49 +2019-05-25 01:00:00,297.93 +2019-05-25 02:00:00,294.93 +2019-05-25 03:00:00,305.58 +2019-05-25 04:00:00,334.47 +2019-05-25 05:00:00,334.74 +2019-05-25 06:00:00,317.32 +2019-05-25 07:00:00,300.92 +2019-05-25 08:00:00,278.84 +2019-05-25 09:00:00,255.64 +2019-05-25 10:00:00,231.54 +2019-05-25 11:00:00,209.45 +2019-05-25 12:00:00,203.33 +2019-05-25 13:00:00,210.94 +2019-05-25 14:00:00,223.64 +2019-05-25 15:00:00,254.13 +2019-05-25 16:00:00,290.91 +2019-05-25 17:00:00,330.72 +2019-05-25 18:00:00,351.91 +2019-05-25 19:00:00,354.6 +2019-05-25 20:00:00,353.78 +2019-05-25 21:00:00,344.81 +2019-05-25 22:00:00,322.24 +2019-05-25 23:00:00,315.79 +2019-05-26 00:00:00,312.02 +2019-05-26 01:00:00,311.12 +2019-05-26 02:00:00,319.75 +2019-05-26 03:00:00,342.94 +2019-05-26 04:00:00,358.2 +2019-05-26 05:00:00,354.66 +2019-05-26 06:00:00,343.47 +2019-05-26 07:00:00,323.57 +2019-05-26 08:00:00,323.62 +2019-05-26 09:00:00,320.88 +2019-05-26 10:00:00,306.43 +2019-05-26 11:00:00,286.86 +2019-05-26 12:00:00,273.64 +2019-05-26 13:00:00,269.63 +2019-05-26 14:00:00,278.39 +2019-05-26 15:00:00,313.64 +2019-05-26 16:00:00,340.77 +2019-05-26 17:00:00,358.02 +2019-05-26 18:00:00,372.88 +2019-05-26 19:00:00,374.89 +2019-05-26 20:00:00,363.39 +2019-05-26 21:00:00,335.0 +2019-05-26 22:00:00,305.41 +2019-05-26 23:00:00,302.16 +2019-05-27 00:00:00,302.15 +2019-05-27 01:00:00,303.36 +2019-05-27 02:00:00,311.19 +2019-05-27 03:00:00,340.27 +2019-05-27 04:00:00,383.76 +2019-05-27 05:00:00,400.31 +2019-05-27 06:00:00,403.88 +2019-05-27 07:00:00,394.93 +2019-05-27 08:00:00,382.74 +2019-05-27 09:00:00,365.51 +2019-05-27 10:00:00,353.33 +2019-05-27 11:00:00,340.68 +2019-05-27 12:00:00,335.19 +2019-05-27 13:00:00,345.6 +2019-05-27 14:00:00,370.92 +2019-05-27 15:00:00,406.42 +2019-05-27 16:00:00,437.25 +2019-05-27 17:00:00,461.26 +2019-05-27 18:00:00,487.81 +2019-05-27 19:00:00,502.07 +2019-05-27 20:00:00,505.4 +2019-05-27 21:00:00,502.82 +2019-05-27 22:00:00,497.09 +2019-05-27 23:00:00,497.23 +2019-05-28 00:00:00,499.53 +2019-05-28 01:00:00,494.21 +2019-05-28 02:00:00,500.26 +2019-05-28 03:00:00,511.07 +2019-05-28 04:00:00,519.13 +2019-05-28 05:00:00,497.73 +2019-05-28 06:00:00,471.18 +2019-05-28 07:00:00,443.44 +2019-05-28 08:00:00,413.65 +2019-05-28 09:00:00,394.69 +2019-05-28 10:00:00,376.63 +2019-05-28 11:00:00,348.87 +2019-05-28 12:00:00,346.36 +2019-05-28 13:00:00,353.68 +2019-05-28 14:00:00,377.46 +2019-05-28 15:00:00,418.09 +2019-05-28 16:00:00,466.72 +2019-05-28 17:00:00,511.63 +2019-05-28 18:00:00,530.9 +2019-05-28 19:00:00,549.77 +2019-05-28 20:00:00,555.1 +2019-05-28 21:00:00,548.92 +2019-05-28 22:00:00,526.51 +2019-05-28 23:00:00,508.52 +2019-05-29 00:00:00,486.67 +2019-05-29 01:00:00,463.28 +2019-05-29 02:00:00,457.12 +2019-05-29 03:00:00,461.99 +2019-05-29 04:00:00,452.87 +2019-05-29 05:00:00,424.54 +2019-05-29 06:00:00,395.05 +2019-05-29 07:00:00,363.3 +2019-05-29 08:00:00,321.05 +2019-05-29 09:00:00,288.83 +2019-05-29 10:00:00,259.12 +2019-05-29 11:00:00,236.38 +2019-05-29 12:00:00,223.63 +2019-05-29 13:00:00,221.23 +2019-05-29 14:00:00,233.68 +2019-05-29 15:00:00,273.8 +2019-05-29 16:00:00,344.45 +2019-05-29 17:00:00,398.72 +2019-05-29 18:00:00,426.91 +2019-05-29 19:00:00,432.24 +2019-05-29 20:00:00,432.24 +2019-05-29 21:00:00,434.61 +2019-05-29 22:00:00,416.11 +2019-05-29 23:00:00,375.71 +2019-05-30 00:00:00,345.34 +2019-05-30 01:00:00,321.59 +2019-05-30 02:00:00,329.21 +2019-05-30 03:00:00,331.5 +2019-05-30 04:00:00,318.65 +2019-05-30 05:00:00,299.69 +2019-05-30 06:00:00,265.36 +2019-05-30 07:00:00,231.25 +2019-05-30 08:00:00,209.77 +2019-05-30 09:00:00,201.6 +2019-05-30 10:00:00,198.97 +2019-05-30 11:00:00,203.32 +2019-05-30 12:00:00,204.17 +2019-05-30 13:00:00,212.16 +2019-05-30 14:00:00,221.28 +2019-05-30 15:00:00,241.97 +2019-05-30 16:00:00,319.49 +2019-05-30 17:00:00,393.14 +2019-05-30 18:00:00,427.34 +2019-05-30 19:00:00,433.46 +2019-05-30 20:00:00,419.97 +2019-05-30 21:00:00,432.63 +2019-05-30 22:00:00,406.6 +2019-05-30 23:00:00,410.12 +2019-05-31 00:00:00,422.85 +2019-05-31 01:00:00,428.42 +2019-05-31 02:00:00,447.41 +2019-05-31 03:00:00,467.57 +2019-05-31 04:00:00,469.71 +2019-05-31 05:00:00,449.1 +2019-05-31 06:00:00,410.55 +2019-05-31 07:00:00,363.98 +2019-05-31 08:00:00,318.91 +2019-05-31 09:00:00,300.27 +2019-05-31 10:00:00,283.4 +2019-05-31 11:00:00,274.13 +2019-05-31 12:00:00,269.86 +2019-05-31 13:00:00,276.52 +2019-05-31 14:00:00,296.95 +2019-05-31 15:00:00,350.25 +2019-05-31 16:00:00,407.14 +2019-05-31 17:00:00,449.91 +2019-05-31 18:00:00,466.25 +2019-05-31 19:00:00,473.44 +2019-05-31 20:00:00,468.7 +2019-05-31 21:00:00,465.13 +2019-05-31 22:00:00,450.63 +2019-05-31 23:00:00,437.44 +2019-06-01 00:00:00,427.83 +2019-06-01 01:00:00,432.33 +2019-06-01 02:00:00,439.77 +2019-06-01 03:00:00,456.82 +2019-06-01 04:00:00,447.6 +2019-06-01 05:00:00,425.38 +2019-06-01 06:00:00,397.08 +2019-06-01 07:00:00,362.69 +2019-06-01 08:00:00,325.2 +2019-06-01 09:00:00,298.03 +2019-06-01 10:00:00,274.79 +2019-06-01 11:00:00,261.64 +2019-06-01 12:00:00,260.47 +2019-06-01 13:00:00,273.09 +2019-06-01 14:00:00,302.17 +2019-06-01 15:00:00,355.89 +2019-06-01 16:00:00,410.85 +2019-06-01 17:00:00,437.19 +2019-06-01 18:00:00,457.34 +2019-06-01 19:00:00,461.18 +2019-06-01 20:00:00,459.91 +2019-06-01 21:00:00,457.95 +2019-06-01 22:00:00,422.34 +2019-06-01 23:00:00,402.09 +2019-06-02 00:00:00,392.3 +2019-06-02 01:00:00,391.41 +2019-06-02 02:00:00,401.1 +2019-06-02 03:00:00,395.76 +2019-06-02 04:00:00,398.11 +2019-06-02 05:00:00,385.18 +2019-06-02 06:00:00,354.82 +2019-06-02 07:00:00,312.0 +2019-06-02 08:00:00,280.03 +2019-06-02 09:00:00,250.43 +2019-06-02 10:00:00,233.52 +2019-06-02 11:00:00,224.43 +2019-06-02 12:00:00,230.06 +2019-06-02 13:00:00,242.82 +2019-06-02 14:00:00,261.15 +2019-06-02 15:00:00,308.76 +2019-06-02 16:00:00,365.83 +2019-06-02 17:00:00,394.6 +2019-06-02 18:00:00,409.94 +2019-06-02 19:00:00,401.22 +2019-06-02 20:00:00,384.04 +2019-06-02 21:00:00,366.23 +2019-06-02 22:00:00,334.4 +2019-06-02 23:00:00,333.21 +2019-06-03 00:00:00,338.77 +2019-06-03 01:00:00,343.36 +2019-06-03 02:00:00,352.93 +2019-06-03 03:00:00,362.5 +2019-06-03 04:00:00,372.9 +2019-06-03 05:00:00,388.64 +2019-06-03 06:00:00,365.03 +2019-06-03 07:00:00,332.57 +2019-06-03 08:00:00,284.48 +2019-06-03 09:00:00,263.55 +2019-06-03 10:00:00,266.38 +2019-06-03 11:00:00,281.49 +2019-06-03 12:00:00,298.11 +2019-06-03 13:00:00,322.88 +2019-06-03 14:00:00,345.28 +2019-06-03 15:00:00,365.85 +2019-06-03 16:00:00,386.49 +2019-06-03 17:00:00,405.56 +2019-06-03 18:00:00,436.21 +2019-06-03 19:00:00,451.1 +2019-06-03 20:00:00,452.01 +2019-06-03 21:00:00,452.59 +2019-06-03 22:00:00,451.16 +2019-06-03 23:00:00,442.78 +2019-06-04 00:00:00,437.41 +2019-06-04 01:00:00,449.99 +2019-06-04 02:00:00,459.93 +2019-06-04 03:00:00,469.58 +2019-06-04 04:00:00,484.56 +2019-06-04 05:00:00,482.66 +2019-06-04 06:00:00,465.81 +2019-06-04 07:00:00,433.66 +2019-06-04 08:00:00,397.48 +2019-06-04 09:00:00,375.1 +2019-06-04 10:00:00,358.34 +2019-06-04 11:00:00,358.91 +2019-06-04 12:00:00,367.25 +2019-06-04 13:00:00,384.39 +2019-06-04 14:00:00,401.16 +2019-06-04 15:00:00,412.17 +2019-06-04 16:00:00,438.02 +2019-06-04 17:00:00,455.69 +2019-06-04 18:00:00,473.06 +2019-06-04 19:00:00,473.42 +2019-06-04 20:00:00,480.19 +2019-06-04 21:00:00,473.34 +2019-06-04 22:00:00,451.73 +2019-06-04 23:00:00,448.04 +2019-06-05 00:00:00,450.72 +2019-06-05 01:00:00,445.42 +2019-06-05 02:00:00,445.71 +2019-06-05 03:00:00,440.91 +2019-06-05 04:00:00,435.43 +2019-06-05 05:00:00,417.55 +2019-06-05 06:00:00,396.49 +2019-06-05 07:00:00,377.01 +2019-06-05 08:00:00,357.25 +2019-06-05 09:00:00,346.23 +2019-06-05 10:00:00,336.98 +2019-06-05 11:00:00,327.94 +2019-06-05 12:00:00,321.36 +2019-06-05 13:00:00,332.01 +2019-06-05 14:00:00,342.97 +2019-06-05 15:00:00,373.53 +2019-06-05 16:00:00,393.19 +2019-06-05 17:00:00,421.68 +2019-06-05 18:00:00,436.47 +2019-06-05 19:00:00,444.58 +2019-06-05 20:00:00,449.22 +2019-06-05 21:00:00,461.47 +2019-06-05 22:00:00,454.02 +2019-06-05 23:00:00,462.17 +2019-06-06 00:00:00,451.18 +2019-06-06 01:00:00,447.99 +2019-06-06 02:00:00,439.42 +2019-06-06 03:00:00,427.36 +2019-06-06 04:00:00,416.33 +2019-06-06 05:00:00,405.23 +2019-06-06 06:00:00,384.74 +2019-06-06 07:00:00,373.16 +2019-06-06 08:00:00,353.85 +2019-06-06 09:00:00,337.72 +2019-06-06 10:00:00,335.32 +2019-06-06 11:00:00,329.62 +2019-06-06 12:00:00,329.85 +2019-06-06 13:00:00,336.93 +2019-06-06 14:00:00,350.52 +2019-06-06 15:00:00,376.27 +2019-06-06 16:00:00,415.23 +2019-06-06 17:00:00,443.31 +2019-06-06 18:00:00,468.89 +2019-06-06 19:00:00,478.64 +2019-06-06 20:00:00,482.97 +2019-06-06 21:00:00,497.7 +2019-06-06 22:00:00,497.84 +2019-06-06 23:00:00,504.18 +2019-06-07 00:00:00,501.65 +2019-06-07 01:00:00,504.96 +2019-06-07 02:00:00,512.29 +2019-06-07 03:00:00,525.22 +2019-06-07 04:00:00,528.18 +2019-06-07 05:00:00,515.14 +2019-06-07 06:00:00,491.2 +2019-06-07 07:00:00,470.49 +2019-06-07 08:00:00,454.16 +2019-06-07 09:00:00,434.42 +2019-06-07 10:00:00,425.03 +2019-06-07 11:00:00,421.06 +2019-06-07 12:00:00,420.81 +2019-06-07 13:00:00,427.16 +2019-06-07 14:00:00,435.95 +2019-06-07 15:00:00,454.05 +2019-06-07 16:00:00,475.6 +2019-06-07 17:00:00,493.82 +2019-06-07 18:00:00,507.83 +2019-06-07 19:00:00,522.13 +2019-06-07 20:00:00,529.47 +2019-06-07 21:00:00,537.3 +2019-06-07 22:00:00,536.4 +2019-06-07 23:00:00,536.1 +2019-06-08 00:00:00,540.52 +2019-06-08 01:00:00,543.72 +2019-06-08 02:00:00,547.22 +2019-06-08 03:00:00,542.76 +2019-06-08 04:00:00,536.69 +2019-06-08 05:00:00,521.99 +2019-06-08 06:00:00,501.63 +2019-06-08 07:00:00,479.04 +2019-06-08 08:00:00,447.79 +2019-06-08 09:00:00,425.65 +2019-06-08 10:00:00,411.31 +2019-06-08 11:00:00,411.62 +2019-06-08 12:00:00,411.31 +2019-06-08 13:00:00,419.62 +2019-06-08 14:00:00,440.79 +2019-06-08 15:00:00,469.18 +2019-06-08 16:00:00,488.64 +2019-06-08 17:00:00,519.25 +2019-06-08 18:00:00,543.79 +2019-06-08 19:00:00,553.21 +2019-06-08 20:00:00,564.05 +2019-06-08 21:00:00,567.5 +2019-06-08 22:00:00,552.42 +2019-06-08 23:00:00,542.65 +2019-06-09 00:00:00,540.33 +2019-06-09 01:00:00,544.54 +2019-06-09 02:00:00,545.72 +2019-06-09 03:00:00,541.28 +2019-06-09 04:00:00,527.34 +2019-06-09 05:00:00,507.64 +2019-06-09 06:00:00,484.32 +2019-06-09 07:00:00,458.08 +2019-06-09 08:00:00,428.75 +2019-06-09 09:00:00,409.66 +2019-06-09 10:00:00,394.8 +2019-06-09 11:00:00,392.66 +2019-06-09 12:00:00,408.29 +2019-06-09 13:00:00,425.54 +2019-06-09 14:00:00,444.89 +2019-06-09 15:00:00,468.56 +2019-06-09 16:00:00,495.64 +2019-06-09 17:00:00,520.27 +2019-06-09 18:00:00,538.77 +2019-06-09 19:00:00,553.48 +2019-06-09 20:00:00,570.58 +2019-06-09 21:00:00,582.11 +2019-06-09 22:00:00,572.89 +2019-06-09 23:00:00,563.17 +2019-06-10 00:00:00,558.43 +2019-06-10 01:00:00,552.6 +2019-06-10 02:00:00,553.16 +2019-06-10 03:00:00,556.42 +2019-06-10 04:00:00,546.61 +2019-06-10 05:00:00,509.79 +2019-06-10 06:00:00,479.93 +2019-06-10 07:00:00,448.11 +2019-06-10 08:00:00,410.62 +2019-06-10 09:00:00,395.84 +2019-06-10 10:00:00,396.45 +2019-06-10 11:00:00,376.64 +2019-06-10 12:00:00,380.45 +2019-06-10 13:00:00,395.99 +2019-06-10 14:00:00,422.46 +2019-06-10 15:00:00,455.58 +2019-06-10 16:00:00,484.41 +2019-06-10 17:00:00,508.5 +2019-06-10 18:00:00,525.56 +2019-06-10 19:00:00,533.63 +2019-06-10 20:00:00,545.82 +2019-06-10 21:00:00,561.55 +2019-06-10 22:00:00,554.54 +2019-06-10 23:00:00,550.71 +2019-06-11 00:00:00,548.59 +2019-06-11 01:00:00,543.39 +2019-06-11 02:00:00,538.52 +2019-06-11 03:00:00,532.24 +2019-06-11 04:00:00,508.39 +2019-06-11 05:00:00,475.07 +2019-06-11 06:00:00,449.26 +2019-06-11 07:00:00,413.15 +2019-06-11 08:00:00,379.07 +2019-06-11 09:00:00,355.1 +2019-06-11 10:00:00,347.99 +2019-06-11 11:00:00,348.86 +2019-06-11 12:00:00,350.64 +2019-06-11 13:00:00,355.31 +2019-06-11 14:00:00,368.27 +2019-06-11 15:00:00,397.34 +2019-06-11 16:00:00,429.97 +2019-06-11 17:00:00,467.63 +2019-06-11 18:00:00,498.17 +2019-06-11 19:00:00,509.48 +2019-06-11 20:00:00,519.24 +2019-06-11 21:00:00,515.52 +2019-06-11 22:00:00,494.25 +2019-06-11 23:00:00,473.54 +2019-06-12 00:00:00,451.3 +2019-06-12 01:00:00,435.92 +2019-06-12 02:00:00,435.7 +2019-06-12 03:00:00,420.18 +2019-06-12 04:00:00,385.57 +2019-06-12 05:00:00,372.7 +2019-06-12 06:00:00,342.27 +2019-06-12 07:00:00,280.14 +2019-06-12 08:00:00,203.88 +2019-06-12 09:00:00,174.25 +2019-06-12 10:00:00,160.43 +2019-06-12 11:00:00,156.0 +2019-06-12 12:00:00,154.47 +2019-06-12 13:00:00,155.0 +2019-06-12 14:00:00,157.65 +2019-06-12 15:00:00,161.71 +2019-06-12 16:00:00,168.14 +2019-06-12 17:00:00,194.73 +2019-06-12 18:00:00,230.47 +2019-06-12 19:00:00,248.29 +2019-06-12 20:00:00,245.53 +2019-06-12 21:00:00,237.75 +2019-06-12 22:00:00,235.01 +2019-06-12 23:00:00,241.21 +2019-06-13 00:00:00,243.45 +2019-06-13 01:00:00,245.91 +2019-06-13 02:00:00,248.9 +2019-06-13 03:00:00,252.44 +2019-06-13 04:00:00,246.5 +2019-06-13 05:00:00,240.64 +2019-06-13 06:00:00,216.35 +2019-06-13 07:00:00,201.87 +2019-06-13 08:00:00,183.75 +2019-06-13 09:00:00,175.7 +2019-06-13 10:00:00,174.63 +2019-06-13 11:00:00,176.3 +2019-06-13 12:00:00,179.23 +2019-06-13 13:00:00,184.54 +2019-06-13 14:00:00,200.93 +2019-06-13 15:00:00,239.41 +2019-06-13 16:00:00,306.64 +2019-06-13 17:00:00,375.31 +2019-06-13 18:00:00,420.75 +2019-06-13 19:00:00,442.39 +2019-06-13 20:00:00,435.69 +2019-06-13 21:00:00,446.2 +2019-06-13 22:00:00,451.55 +2019-06-13 23:00:00,449.55 +2019-06-14 00:00:00,444.07 +2019-06-14 01:00:00,444.52 +2019-06-14 02:00:00,443.78 +2019-06-14 03:00:00,438.32 +2019-06-14 04:00:00,422.79 +2019-06-14 05:00:00,412.29 +2019-06-14 06:00:00,380.15 +2019-06-14 07:00:00,343.96 +2019-06-14 08:00:00,311.45 +2019-06-14 09:00:00,288.61 +2019-06-14 10:00:00,268.45 +2019-06-14 11:00:00,261.85 +2019-06-14 12:00:00,278.53 +2019-06-14 13:00:00,302.28 +2019-06-14 14:00:00,340.6 +2019-06-14 15:00:00,391.97 +2019-06-14 16:00:00,442.69 +2019-06-14 17:00:00,489.32 +2019-06-14 18:00:00,517.88 +2019-06-14 19:00:00,533.27 +2019-06-14 20:00:00,538.08 +2019-06-14 21:00:00,545.08 +2019-06-14 22:00:00,551.7 +2019-06-14 23:00:00,534.69 +2019-06-15 00:00:00,538.18 +2019-06-15 01:00:00,534.62 +2019-06-15 02:00:00,539.49 +2019-06-15 03:00:00,538.16 +2019-06-15 04:00:00,519.33 +2019-06-15 05:00:00,501.09 +2019-06-15 06:00:00,482.01 +2019-06-15 07:00:00,464.18 +2019-06-15 08:00:00,437.94 +2019-06-15 09:00:00,411.73 +2019-06-15 10:00:00,388.09 +2019-06-15 11:00:00,374.87 +2019-06-15 12:00:00,376.89 +2019-06-15 13:00:00,391.47 +2019-06-15 14:00:00,414.61 +2019-06-15 15:00:00,458.64 +2019-06-15 16:00:00,498.35 +2019-06-15 17:00:00,535.12 +2019-06-15 18:00:00,562.37 +2019-06-15 19:00:00,582.48 +2019-06-15 20:00:00,580.84 +2019-06-15 21:00:00,586.63 +2019-06-15 22:00:00,567.61 +2019-06-15 23:00:00,557.14 +2019-06-16 00:00:00,549.23 +2019-06-16 01:00:00,532.86 +2019-06-16 02:00:00,533.9 +2019-06-16 03:00:00,537.73 +2019-06-16 04:00:00,523.92 +2019-06-16 05:00:00,506.22 +2019-06-16 06:00:00,490.03 +2019-06-16 07:00:00,462.27 +2019-06-16 08:00:00,424.07 +2019-06-16 09:00:00,399.47 +2019-06-16 10:00:00,387.54 +2019-06-16 11:00:00,386.31 +2019-06-16 12:00:00,396.94 +2019-06-16 13:00:00,414.51 +2019-06-16 14:00:00,443.22 +2019-06-16 15:00:00,478.07 +2019-06-16 16:00:00,508.45 +2019-06-16 17:00:00,534.86 +2019-06-16 18:00:00,548.5 +2019-06-16 19:00:00,551.14 +2019-06-16 20:00:00,541.0 +2019-06-16 21:00:00,520.04 +2019-06-16 22:00:00,491.74 +2019-06-16 23:00:00,476.86 +2019-06-17 00:00:00,462.05 +2019-06-17 01:00:00,448.51 +2019-06-17 02:00:00,442.77 +2019-06-17 03:00:00,456.66 +2019-06-17 04:00:00,473.77 +2019-06-17 05:00:00,470.7 +2019-06-17 06:00:00,452.37 +2019-06-17 07:00:00,424.65 +2019-06-17 08:00:00,396.41 +2019-06-17 09:00:00,369.69 +2019-06-17 10:00:00,338.99 +2019-06-17 11:00:00,319.37 +2019-06-17 12:00:00,311.1 +2019-06-17 13:00:00,332.2 +2019-06-17 14:00:00,362.25 +2019-06-17 15:00:00,403.4 +2019-06-17 16:00:00,448.36 +2019-06-17 17:00:00,488.38 +2019-06-17 18:00:00,521.08 +2019-06-17 19:00:00,526.66 +2019-06-17 20:00:00,524.53 +2019-06-17 21:00:00,521.15 +2019-06-17 22:00:00,517.46 +2019-06-17 23:00:00,523.56 +2019-06-18 00:00:00,529.32 +2019-06-18 01:00:00,526.75 +2019-06-18 02:00:00,533.51 +2019-06-18 03:00:00,529.19 +2019-06-18 04:00:00,520.1 +2019-06-18 05:00:00,504.5 +2019-06-18 06:00:00,483.0 +2019-06-18 07:00:00,454.08 +2019-06-18 08:00:00,411.43 +2019-06-18 09:00:00,384.8 +2019-06-18 10:00:00,371.61 +2019-06-18 11:00:00,370.47 +2019-06-18 12:00:00,376.28 +2019-06-18 13:00:00,388.31 +2019-06-18 14:00:00,408.62 +2019-06-18 15:00:00,437.94 +2019-06-18 16:00:00,476.41 +2019-06-18 17:00:00,505.23 +2019-06-18 18:00:00,524.49 +2019-06-18 19:00:00,540.88 +2019-06-18 20:00:00,526.63 +2019-06-18 21:00:00,524.11 +2019-06-18 22:00:00,504.32 +2019-06-18 23:00:00,503.2 +2019-06-19 00:00:00,505.07 +2019-06-19 01:00:00,496.58 +2019-06-19 02:00:00,484.06 +2019-06-19 03:00:00,476.93 +2019-06-19 04:00:00,452.89 +2019-06-19 05:00:00,433.1 +2019-06-19 06:00:00,394.74 +2019-06-19 07:00:00,346.23 +2019-06-19 08:00:00,305.85 +2019-06-19 09:00:00,289.62 +2019-06-19 10:00:00,280.8 +2019-06-19 11:00:00,286.5 +2019-06-19 12:00:00,308.79 +2019-06-19 13:00:00,333.74 +2019-06-19 14:00:00,368.4 +2019-06-19 15:00:00,405.24 +2019-06-19 16:00:00,440.9 +2019-06-19 17:00:00,474.62 +2019-06-19 18:00:00,498.89 +2019-06-19 19:00:00,516.14 +2019-06-19 20:00:00,517.6 +2019-06-19 21:00:00,496.41 +2019-06-19 22:00:00,446.74 +2019-06-19 23:00:00,417.14 +2019-06-20 00:00:00,371.39 +2019-06-20 01:00:00,338.64 +2019-06-20 02:00:00,324.74 +2019-06-20 03:00:00,302.78 +2019-06-20 04:00:00,283.83 +2019-06-20 05:00:00,276.78 +2019-06-20 06:00:00,273.84 +2019-06-20 07:00:00,254.33 +2019-06-20 08:00:00,232.53 +2019-06-20 09:00:00,214.45 +2019-06-20 10:00:00,203.06 +2019-06-20 11:00:00,206.52 +2019-06-20 12:00:00,209.99 +2019-06-20 13:00:00,222.8 +2019-06-20 14:00:00,283.33 +2019-06-20 15:00:00,369.16 +2019-06-20 16:00:00,429.2 +2019-06-20 17:00:00,476.81 +2019-06-20 18:00:00,506.29 +2019-06-20 19:00:00,513.6 +2019-06-20 20:00:00,505.49 +2019-06-20 21:00:00,481.32 +2019-06-20 22:00:00,466.62 +2019-06-20 23:00:00,464.8 +2019-06-21 00:00:00,462.32 +2019-06-21 01:00:00,439.22 +2019-06-21 02:00:00,437.58 +2019-06-21 03:00:00,463.21 +2019-06-21 04:00:00,454.53 +2019-06-21 05:00:00,434.55 +2019-06-21 06:00:00,412.23 +2019-06-21 07:00:00,391.69 +2019-06-21 08:00:00,366.57 +2019-06-21 09:00:00,351.91 +2019-06-21 10:00:00,350.99 +2019-06-21 11:00:00,352.55 +2019-06-21 12:00:00,357.07 +2019-06-21 13:00:00,357.63 +2019-06-21 14:00:00,370.62 +2019-06-21 15:00:00,393.84 +2019-06-21 16:00:00,422.1 +2019-06-21 17:00:00,455.89 +2019-06-21 18:00:00,460.1 +2019-06-21 19:00:00,470.37 +2019-06-21 20:00:00,492.95 +2019-06-21 21:00:00,507.45 +2019-06-21 22:00:00,483.74 +2019-06-21 23:00:00,471.98 +2019-06-22 00:00:00,471.53 +2019-06-22 01:00:00,485.33 +2019-06-22 02:00:00,487.94 +2019-06-22 03:00:00,502.39 +2019-06-22 04:00:00,506.13 +2019-06-22 05:00:00,504.46 +2019-06-22 06:00:00,477.97 +2019-06-22 07:00:00,452.9 +2019-06-22 08:00:00,443.18 +2019-06-22 09:00:00,440.52 +2019-06-22 10:00:00,439.88 +2019-06-22 11:00:00,437.75 +2019-06-22 12:00:00,440.45 +2019-06-22 13:00:00,448.62 +2019-06-22 14:00:00,465.93 +2019-06-22 15:00:00,482.33 +2019-06-22 16:00:00,506.93 +2019-06-22 17:00:00,533.32 +2019-06-22 18:00:00,552.52 +2019-06-22 19:00:00,568.96 +2019-06-22 20:00:00,577.17 +2019-06-22 21:00:00,588.39 +2019-06-22 22:00:00,583.14 +2019-06-22 23:00:00,580.15 +2019-06-23 00:00:00,578.9 +2019-06-23 01:00:00,579.54 +2019-06-23 02:00:00,588.48 +2019-06-23 03:00:00,596.36 +2019-06-23 04:00:00,595.42 +2019-06-23 05:00:00,569.7 +2019-06-23 06:00:00,546.19 +2019-06-23 07:00:00,522.52 +2019-06-23 08:00:00,502.49 +2019-06-23 09:00:00,486.59 +2019-06-23 10:00:00,476.34 +2019-06-23 11:00:00,470.71 +2019-06-23 12:00:00,467.07 +2019-06-23 13:00:00,469.79 +2019-06-23 14:00:00,483.75 +2019-06-23 15:00:00,502.41 +2019-06-23 16:00:00,530.91 +2019-06-23 17:00:00,563.4 +2019-06-23 18:00:00,582.17 +2019-06-23 19:00:00,591.57 +2019-06-23 20:00:00,589.86 +2019-06-23 21:00:00,601.78 +2019-06-23 22:00:00,597.22 +2019-06-23 23:00:00,588.69 +2019-06-24 00:00:00,580.99 +2019-06-24 01:00:00,574.88 +2019-06-24 02:00:00,570.53 +2019-06-24 03:00:00,583.93 +2019-06-24 04:00:00,575.89 +2019-06-24 05:00:00,549.75 +2019-06-24 06:00:00,531.24 +2019-06-24 07:00:00,509.15 +2019-06-24 08:00:00,495.9 +2019-06-24 09:00:00,482.11 +2019-06-24 10:00:00,479.58 +2019-06-24 11:00:00,475.45 +2019-06-24 12:00:00,474.39 +2019-06-24 13:00:00,479.49 +2019-06-24 14:00:00,491.75 +2019-06-24 15:00:00,509.91 +2019-06-24 16:00:00,535.48 +2019-06-24 17:00:00,561.79 +2019-06-24 18:00:00,583.37 +2019-06-24 19:00:00,598.77 +2019-06-24 20:00:00,607.44 +2019-06-24 21:00:00,624.9 +2019-06-24 22:00:00,617.19 +2019-06-24 23:00:00,604.52 +2019-06-25 00:00:00,587.55 +2019-06-25 01:00:00,578.05 +2019-06-25 02:00:00,579.43 +2019-06-25 03:00:00,587.94 +2019-06-25 04:00:00,577.63 +2019-06-25 05:00:00,557.7 +2019-06-25 06:00:00,532.91 +2019-06-25 07:00:00,509.04 +2019-06-25 08:00:00,484.39 +2019-06-25 09:00:00,464.45 +2019-06-25 10:00:00,446.45 +2019-06-25 11:00:00,434.33 +2019-06-25 12:00:00,436.1 +2019-06-25 13:00:00,446.67 +2019-06-25 14:00:00,467.82 +2019-06-25 15:00:00,497.61 +2019-06-25 16:00:00,528.6 +2019-06-25 17:00:00,555.4 +2019-06-25 18:00:00,584.41 +2019-06-25 19:00:00,597.0 +2019-06-25 20:00:00,599.48 +2019-06-25 21:00:00,616.5 +2019-06-25 22:00:00,585.19 +2019-06-25 23:00:00,566.98 +2019-06-26 00:00:00,549.99 +2019-06-26 01:00:00,543.26 +2019-06-26 02:00:00,552.76 +2019-06-26 03:00:00,551.27 +2019-06-26 04:00:00,524.84 +2019-06-26 05:00:00,484.54 +2019-06-26 06:00:00,445.29 +2019-06-26 07:00:00,405.6 +2019-06-26 08:00:00,369.48 +2019-06-26 09:00:00,356.59 +2019-06-26 10:00:00,340.08 +2019-06-26 11:00:00,327.33 +2019-06-26 12:00:00,327.22 +2019-06-26 13:00:00,338.37 +2019-06-26 14:00:00,361.3 +2019-06-26 15:00:00,397.83 +2019-06-26 16:00:00,444.72 +2019-06-26 17:00:00,495.46 +2019-06-26 18:00:00,518.57 +2019-06-26 19:00:00,531.14 +2019-06-26 20:00:00,537.77 +2019-06-26 21:00:00,541.82 +2019-06-26 22:00:00,514.37 +2019-06-26 23:00:00,488.42 +2019-06-27 00:00:00,463.2 +2019-06-27 01:00:00,442.1 +2019-06-27 02:00:00,444.49 +2019-06-27 03:00:00,441.37 +2019-06-27 04:00:00,419.91 +2019-06-27 05:00:00,382.49 +2019-06-27 06:00:00,343.36 +2019-06-27 07:00:00,301.75 +2019-06-27 08:00:00,273.28 +2019-06-27 09:00:00,262.08 +2019-06-27 10:00:00,253.12 +2019-06-27 11:00:00,233.86 +2019-06-27 12:00:00,234.16 +2019-06-27 13:00:00,242.22 +2019-06-27 14:00:00,273.82 +2019-06-27 15:00:00,365.69 +2019-06-27 16:00:00,443.87 +2019-06-27 17:00:00,494.8 +2019-06-27 18:00:00,506.12 +2019-06-27 19:00:00,509.53 +2019-06-27 20:00:00,512.21 +2019-06-27 21:00:00,530.04 +2019-06-27 22:00:00,531.11 +2019-06-27 23:00:00,522.56 +2019-06-28 00:00:00,523.05 +2019-06-28 01:00:00,512.01 +2019-06-28 02:00:00,516.29 +2019-06-28 03:00:00,538.05 +2019-06-28 04:00:00,537.03 +2019-06-28 05:00:00,523.36 +2019-06-28 06:00:00,499.38 +2019-06-28 07:00:00,462.78 +2019-06-28 08:00:00,432.63 +2019-06-28 09:00:00,411.24 +2019-06-28 10:00:00,398.79 +2019-06-28 11:00:00,398.97 +2019-06-28 12:00:00,405.58 +2019-06-28 13:00:00,411.79 +2019-06-28 14:00:00,434.7 +2019-06-28 15:00:00,472.25 +2019-06-28 16:00:00,506.54 +2019-06-28 17:00:00,533.55 +2019-06-28 18:00:00,546.95 +2019-06-28 19:00:00,545.89 +2019-06-28 20:00:00,532.16 +2019-06-28 21:00:00,529.05 +2019-06-28 22:00:00,516.0 +2019-06-28 23:00:00,509.64 +2019-06-29 00:00:00,499.64 +2019-06-29 01:00:00,496.13 +2019-06-29 02:00:00,502.01 +2019-06-29 03:00:00,502.05 +2019-06-29 04:00:00,503.83 +2019-06-29 05:00:00,507.89 +2019-06-29 06:00:00,503.57 +2019-06-29 07:00:00,482.67 +2019-06-29 08:00:00,448.9 +2019-06-29 09:00:00,429.35 +2019-06-29 10:00:00,423.37 +2019-06-29 11:00:00,419.59 +2019-06-29 12:00:00,422.86 +2019-06-29 13:00:00,438.98 +2019-06-29 14:00:00,457.42 +2019-06-29 15:00:00,477.28 +2019-06-29 16:00:00,500.85 +2019-06-29 17:00:00,521.17 +2019-06-29 18:00:00,536.86 +2019-06-29 19:00:00,551.48 +2019-06-29 20:00:00,553.64 +2019-06-29 21:00:00,554.82 +2019-06-29 22:00:00,543.83 +2019-06-29 23:00:00,534.47 +2019-06-30 00:00:00,532.51 +2019-06-30 01:00:00,525.84 +2019-06-30 02:00:00,512.53 +2019-06-30 03:00:00,508.96 +2019-06-30 04:00:00,518.63 +2019-06-30 05:00:00,511.44 +2019-06-30 06:00:00,491.62 +2019-06-30 07:00:00,470.72 +2019-06-30 08:00:00,454.2 +2019-06-30 09:00:00,441.22 +2019-06-30 10:00:00,435.8 +2019-06-30 11:00:00,436.65 +2019-06-30 12:00:00,430.03 +2019-06-30 13:00:00,430.62 +2019-06-30 14:00:00,440.58 +2019-06-30 15:00:00,456.21 +2019-06-30 16:00:00,484.25 +2019-06-30 17:00:00,503.51 +2019-06-30 18:00:00,521.21 +2019-06-30 19:00:00,532.04 +2019-06-30 20:00:00,533.39 +2019-06-30 21:00:00,524.41 +2019-06-30 22:00:00,489.62 +2019-06-30 23:00:00,463.73 +2019-07-01 00:00:00,444.95 +2019-07-01 01:00:00,441.19 +2019-07-01 02:00:00,432.18 +2019-07-01 03:00:00,436.41 +2019-07-01 04:00:00,447.59 +2019-07-01 05:00:00,452.73 +2019-07-01 06:00:00,440.68 +2019-07-01 07:00:00,438.96 +2019-07-01 08:00:00,421.99 +2019-07-01 09:00:00,415.49 +2019-07-01 10:00:00,411.54 +2019-07-01 11:00:00,415.2 +2019-07-01 12:00:00,416.64 +2019-07-01 13:00:00,422.57 +2019-07-01 14:00:00,438.16 +2019-07-01 15:00:00,454.81 +2019-07-01 16:00:00,482.12 +2019-07-01 17:00:00,502.32 +2019-07-01 18:00:00,522.54 +2019-07-01 19:00:00,536.82 +2019-07-01 20:00:00,538.88 +2019-07-01 21:00:00,559.3 +2019-07-01 22:00:00,548.67 +2019-07-01 23:00:00,546.84 +2019-07-02 00:00:00,542.54 +2019-07-02 01:00:00,533.91 +2019-07-02 02:00:00,530.95 +2019-07-02 03:00:00,541.21 +2019-07-02 04:00:00,545.77 +2019-07-02 05:00:00,517.42 +2019-07-02 06:00:00,490.46 +2019-07-02 07:00:00,472.95 +2019-07-02 08:00:00,450.65 +2019-07-02 09:00:00,431.66 +2019-07-02 10:00:00,417.77 +2019-07-02 11:00:00,402.33 +2019-07-02 12:00:00,394.97 +2019-07-02 13:00:00,398.81 +2019-07-02 14:00:00,410.38 +2019-07-02 15:00:00,436.01 +2019-07-02 16:00:00,468.71 +2019-07-02 17:00:00,505.53 +2019-07-02 18:00:00,540.65 +2019-07-02 19:00:00,556.91 +2019-07-02 20:00:00,561.93 +2019-07-02 21:00:00,579.64 +2019-07-02 22:00:00,564.32 +2019-07-02 23:00:00,552.59 +2019-07-03 00:00:00,540.19 +2019-07-03 01:00:00,530.74 +2019-07-03 02:00:00,539.58 +2019-07-03 03:00:00,545.3 +2019-07-03 04:00:00,524.39 +2019-07-03 05:00:00,489.85 +2019-07-03 06:00:00,443.23 +2019-07-03 07:00:00,401.55 +2019-07-03 08:00:00,375.09 +2019-07-03 09:00:00,360.83 +2019-07-03 10:00:00,347.17 +2019-07-03 11:00:00,339.3 +2019-07-03 12:00:00,350.67 +2019-07-03 13:00:00,373.68 +2019-07-03 14:00:00,399.21 +2019-07-03 15:00:00,442.94 +2019-07-03 16:00:00,488.44 +2019-07-03 17:00:00,530.83 +2019-07-03 18:00:00,555.74 +2019-07-03 19:00:00,569.75 +2019-07-03 20:00:00,591.7 +2019-07-03 21:00:00,604.93 +2019-07-03 22:00:00,590.22 +2019-07-03 23:00:00,583.04 +2019-07-04 00:00:00,574.06 +2019-07-04 01:00:00,562.31 +2019-07-04 02:00:00,566.24 +2019-07-04 03:00:00,561.8 +2019-07-04 04:00:00,550.85 +2019-07-04 05:00:00,517.37 +2019-07-04 06:00:00,466.57 +2019-07-04 07:00:00,420.6 +2019-07-04 08:00:00,392.81 +2019-07-04 09:00:00,371.73 +2019-07-04 10:00:00,372.63 +2019-07-04 11:00:00,360.07 +2019-07-04 12:00:00,353.44 +2019-07-04 13:00:00,355.35 +2019-07-04 14:00:00,380.13 +2019-07-04 15:00:00,429.22 +2019-07-04 16:00:00,481.22 +2019-07-04 17:00:00,519.63 +2019-07-04 18:00:00,540.49 +2019-07-04 19:00:00,559.5 +2019-07-04 20:00:00,564.78 +2019-07-04 21:00:00,559.72 +2019-07-04 22:00:00,533.67 +2019-07-04 23:00:00,521.72 +2019-07-05 00:00:00,520.06 +2019-07-05 01:00:00,506.53 +2019-07-05 02:00:00,499.2 +2019-07-05 03:00:00,515.41 +2019-07-05 04:00:00,528.47 +2019-07-05 05:00:00,517.29 +2019-07-05 06:00:00,497.53 +2019-07-05 07:00:00,476.67 +2019-07-05 08:00:00,458.39 +2019-07-05 09:00:00,447.42 +2019-07-05 10:00:00,432.8 +2019-07-05 11:00:00,413.93 +2019-07-05 12:00:00,409.79 +2019-07-05 13:00:00,419.38 +2019-07-05 14:00:00,424.71 +2019-07-05 15:00:00,450.42 +2019-07-05 16:00:00,489.89 +2019-07-05 17:00:00,530.55 +2019-07-05 18:00:00,556.53 +2019-07-05 19:00:00,574.3 +2019-07-05 20:00:00,579.05 +2019-07-05 21:00:00,568.79 +2019-07-05 22:00:00,517.63 +2019-07-05 23:00:00,474.97 +2019-07-06 00:00:00,430.37 +2019-07-06 01:00:00,405.36 +2019-07-06 02:00:00,395.38 +2019-07-06 03:00:00,384.36 +2019-07-06 04:00:00,382.74 +2019-07-06 05:00:00,374.22 +2019-07-06 06:00:00,359.58 +2019-07-06 07:00:00,333.49 +2019-07-06 08:00:00,300.85 +2019-07-06 09:00:00,278.15 +2019-07-06 10:00:00,257.21 +2019-07-06 11:00:00,248.62 +2019-07-06 12:00:00,253.43 +2019-07-06 13:00:00,272.32 +2019-07-06 14:00:00,303.63 +2019-07-06 15:00:00,337.32 +2019-07-06 16:00:00,376.63 +2019-07-06 17:00:00,413.67 +2019-07-06 18:00:00,434.07 +2019-07-06 19:00:00,447.6 +2019-07-06 20:00:00,456.64 +2019-07-06 21:00:00,454.84 +2019-07-06 22:00:00,442.66 +2019-07-06 23:00:00,443.35 +2019-07-07 00:00:00,439.58 +2019-07-07 01:00:00,436.58 +2019-07-07 02:00:00,447.62 +2019-07-07 03:00:00,469.21 +2019-07-07 04:00:00,499.36 +2019-07-07 05:00:00,506.33 +2019-07-07 06:00:00,501.94 +2019-07-07 07:00:00,487.3 +2019-07-07 08:00:00,464.6 +2019-07-07 09:00:00,448.78 +2019-07-07 10:00:00,437.9 +2019-07-07 11:00:00,425.95 +2019-07-07 12:00:00,412.09 +2019-07-07 13:00:00,411.78 +2019-07-07 14:00:00,428.13 +2019-07-07 15:00:00,457.73 +2019-07-07 16:00:00,505.39 +2019-07-07 17:00:00,538.28 +2019-07-07 18:00:00,559.47 +2019-07-07 19:00:00,573.37 +2019-07-07 20:00:00,581.53 +2019-07-07 21:00:00,596.98 +2019-07-07 22:00:00,590.61 +2019-07-07 23:00:00,576.81 +2019-07-08 00:00:00,567.52 +2019-07-08 01:00:00,560.89 +2019-07-08 02:00:00,563.31 +2019-07-08 03:00:00,572.68 +2019-07-08 04:00:00,573.02 +2019-07-08 05:00:00,559.23 +2019-07-08 06:00:00,538.57 +2019-07-08 07:00:00,521.55 +2019-07-08 08:00:00,505.2 +2019-07-08 09:00:00,494.3 +2019-07-08 10:00:00,493.65 +2019-07-08 11:00:00,501.67 +2019-07-08 12:00:00,507.18 +2019-07-08 13:00:00,520.65 +2019-07-08 14:00:00,525.65 +2019-07-08 15:00:00,522.88 +2019-07-08 16:00:00,535.13 +2019-07-08 17:00:00,554.74 +2019-07-08 18:00:00,573.85 +2019-07-08 19:00:00,583.79 +2019-07-08 20:00:00,595.51 +2019-07-08 21:00:00,616.87 +2019-07-08 22:00:00,603.71 +2019-07-08 23:00:00,578.14 +2019-07-09 00:00:00,554.18 +2019-07-09 01:00:00,547.09 +2019-07-09 02:00:00,548.2 +2019-07-09 03:00:00,559.34 +2019-07-09 04:00:00,550.26 +2019-07-09 05:00:00,536.16 +2019-07-09 06:00:00,516.11 +2019-07-09 07:00:00,491.93 +2019-07-09 08:00:00,470.48 +2019-07-09 09:00:00,444.36 +2019-07-09 10:00:00,442.62 +2019-07-09 11:00:00,424.1 +2019-07-09 12:00:00,415.12 +2019-07-09 13:00:00,411.68 +2019-07-09 14:00:00,419.0 +2019-07-09 15:00:00,437.58 +2019-07-09 16:00:00,466.66 +2019-07-09 17:00:00,501.4 +2019-07-09 18:00:00,519.77 +2019-07-09 19:00:00,529.25 +2019-07-09 20:00:00,535.65 +2019-07-09 21:00:00,526.23 +2019-07-09 22:00:00,503.48 +2019-07-09 23:00:00,482.55 +2019-07-10 00:00:00,481.65 +2019-07-10 01:00:00,483.41 +2019-07-10 02:00:00,475.04 +2019-07-10 03:00:00,462.78 +2019-07-10 04:00:00,455.96 +2019-07-10 05:00:00,451.19 +2019-07-10 06:00:00,422.27 +2019-07-10 07:00:00,382.67 +2019-07-10 08:00:00,344.07 +2019-07-10 09:00:00,318.72 +2019-07-10 10:00:00,308.27 +2019-07-10 11:00:00,304.29 +2019-07-10 12:00:00,315.19 +2019-07-10 13:00:00,339.43 +2019-07-10 14:00:00,371.76 +2019-07-10 15:00:00,419.2 +2019-07-10 16:00:00,469.51 +2019-07-10 17:00:00,511.58 +2019-07-10 18:00:00,535.08 +2019-07-10 19:00:00,551.53 +2019-07-10 20:00:00,555.8 +2019-07-10 21:00:00,558.4 +2019-07-10 22:00:00,555.46 +2019-07-10 23:00:00,538.47 +2019-07-11 00:00:00,523.75 +2019-07-11 01:00:00,518.65 +2019-07-11 02:00:00,517.98 +2019-07-11 03:00:00,512.53 +2019-07-11 04:00:00,504.03 +2019-07-11 05:00:00,487.5 +2019-07-11 06:00:00,464.25 +2019-07-11 07:00:00,425.33 +2019-07-11 08:00:00,388.35 +2019-07-11 09:00:00,373.58 +2019-07-11 10:00:00,366.45 +2019-07-11 11:00:00,363.29 +2019-07-11 12:00:00,353.03 +2019-07-11 13:00:00,342.35 +2019-07-11 14:00:00,347.88 +2019-07-11 15:00:00,392.97 +2019-07-11 16:00:00,438.87 +2019-07-11 17:00:00,496.54 +2019-07-11 18:00:00,524.22 +2019-07-11 19:00:00,536.28 +2019-07-11 20:00:00,536.4 +2019-07-11 21:00:00,536.95 +2019-07-11 22:00:00,535.03 +2019-07-11 23:00:00,534.82 +2019-07-12 00:00:00,521.85 +2019-07-12 01:00:00,518.51 +2019-07-12 02:00:00,527.98 +2019-07-12 03:00:00,528.92 +2019-07-12 04:00:00,521.73 +2019-07-12 05:00:00,500.87 +2019-07-12 06:00:00,477.37 +2019-07-12 07:00:00,448.15 +2019-07-12 08:00:00,411.66 +2019-07-12 09:00:00,384.96 +2019-07-12 10:00:00,374.79 +2019-07-12 11:00:00,365.47 +2019-07-12 12:00:00,376.03 +2019-07-12 13:00:00,395.15 +2019-07-12 14:00:00,417.15 +2019-07-12 15:00:00,445.8 +2019-07-12 16:00:00,481.17 +2019-07-12 17:00:00,505.94 +2019-07-12 18:00:00,528.13 +2019-07-12 19:00:00,534.99 +2019-07-12 20:00:00,552.87 +2019-07-12 21:00:00,555.52 +2019-07-12 22:00:00,564.4 +2019-07-12 23:00:00,556.61 +2019-07-13 00:00:00,551.29 +2019-07-13 01:00:00,557.51 +2019-07-13 02:00:00,567.49 +2019-07-13 03:00:00,569.05 +2019-07-13 04:00:00,557.0 +2019-07-13 05:00:00,531.34 +2019-07-13 06:00:00,512.1 +2019-07-13 07:00:00,492.46 +2019-07-13 08:00:00,471.77 +2019-07-13 09:00:00,457.08 +2019-07-13 10:00:00,453.27 +2019-07-13 11:00:00,455.72 +2019-07-13 12:00:00,457.77 +2019-07-13 13:00:00,458.44 +2019-07-13 14:00:00,463.35 +2019-07-13 15:00:00,472.9 +2019-07-13 16:00:00,490.75 +2019-07-13 17:00:00,514.48 +2019-07-13 18:00:00,526.45 +2019-07-13 19:00:00,532.7 +2019-07-13 20:00:00,529.41 +2019-07-13 21:00:00,520.22 +2019-07-13 22:00:00,506.5 +2019-07-13 23:00:00,503.43 +2019-07-14 00:00:00,490.82 +2019-07-14 01:00:00,490.84 +2019-07-14 02:00:00,500.94 +2019-07-14 03:00:00,505.03 +2019-07-14 04:00:00,513.11 +2019-07-14 05:00:00,503.17 +2019-07-14 06:00:00,487.47 +2019-07-14 07:00:00,476.33 +2019-07-14 08:00:00,459.21 +2019-07-14 09:00:00,441.81 +2019-07-14 10:00:00,424.68 +2019-07-14 11:00:00,391.85 +2019-07-14 12:00:00,371.6 +2019-07-14 13:00:00,371.89 +2019-07-14 14:00:00,382.48 +2019-07-14 15:00:00,403.75 +2019-07-14 16:00:00,431.64 +2019-07-14 17:00:00,462.42 +2019-07-14 18:00:00,485.39 +2019-07-14 19:00:00,487.57 +2019-07-14 20:00:00,505.97 +2019-07-14 21:00:00,478.45 +2019-07-14 22:00:00,458.82 +2019-07-14 23:00:00,459.02 +2019-07-15 00:00:00,453.18 +2019-07-15 01:00:00,447.36 +2019-07-15 02:00:00,452.09 +2019-07-15 03:00:00,456.23 +2019-07-15 04:00:00,462.74 +2019-07-15 05:00:00,457.51 +2019-07-15 06:00:00,429.84 +2019-07-15 07:00:00,408.94 +2019-07-15 08:00:00,391.0 +2019-07-15 09:00:00,364.79 +2019-07-15 10:00:00,365.72 +2019-07-15 11:00:00,366.08 +2019-07-15 12:00:00,368.45 +2019-07-15 13:00:00,360.9 +2019-07-15 14:00:00,373.32 +2019-07-15 15:00:00,396.37 +2019-07-15 16:00:00,411.57 +2019-07-15 17:00:00,439.06 +2019-07-15 18:00:00,455.2 +2019-07-15 19:00:00,466.14 +2019-07-15 20:00:00,478.19 +2019-07-15 21:00:00,486.1 +2019-07-15 22:00:00,459.45 +2019-07-15 23:00:00,446.25 +2019-07-16 00:00:00,440.15 +2019-07-16 01:00:00,436.77 +2019-07-16 02:00:00,445.97 +2019-07-16 03:00:00,456.52 +2019-07-16 04:00:00,462.99 +2019-07-16 05:00:00,451.08 +2019-07-16 06:00:00,433.66 +2019-07-16 07:00:00,415.9 +2019-07-16 08:00:00,403.78 +2019-07-16 09:00:00,385.73 +2019-07-16 10:00:00,370.92 +2019-07-16 11:00:00,357.44 +2019-07-16 12:00:00,348.87 +2019-07-16 13:00:00,347.34 +2019-07-16 14:00:00,356.0 +2019-07-16 15:00:00,371.54 +2019-07-16 16:00:00,398.06 +2019-07-16 17:00:00,421.98 +2019-07-16 18:00:00,439.72 +2019-07-16 19:00:00,452.03 +2019-07-16 20:00:00,460.27 +2019-07-16 21:00:00,451.49 +2019-07-16 22:00:00,410.94 +2019-07-16 23:00:00,392.89 +2019-07-17 00:00:00,356.53 +2019-07-17 01:00:00,341.05 +2019-07-17 02:00:00,330.47 +2019-07-17 03:00:00,327.01 +2019-07-17 04:00:00,322.66 +2019-07-17 05:00:00,318.98 +2019-07-17 06:00:00,317.17 +2019-07-17 07:00:00,303.81 +2019-07-17 08:00:00,279.4 +2019-07-17 09:00:00,261.99 +2019-07-17 10:00:00,247.85 +2019-07-17 11:00:00,221.07 +2019-07-17 12:00:00,202.31 +2019-07-17 13:00:00,193.79 +2019-07-17 14:00:00,204.03 +2019-07-17 15:00:00,229.13 +2019-07-17 16:00:00,265.15 +2019-07-17 17:00:00,300.51 +2019-07-17 18:00:00,327.55 +2019-07-17 19:00:00,329.46 +2019-07-17 20:00:00,322.2 +2019-07-17 21:00:00,309.23 +2019-07-17 22:00:00,295.26 +2019-07-17 23:00:00,287.63 +2019-07-18 00:00:00,273.63 +2019-07-18 01:00:00,263.55 +2019-07-18 02:00:00,262.55 +2019-07-18 03:00:00,264.28 +2019-07-18 04:00:00,267.5 +2019-07-18 05:00:00,267.82 +2019-07-18 06:00:00,237.53 +2019-07-18 07:00:00,216.0 +2019-07-18 08:00:00,195.96 +2019-07-18 09:00:00,185.79 +2019-07-18 10:00:00,178.71 +2019-07-18 11:00:00,176.56 +2019-07-18 12:00:00,179.76 +2019-07-18 13:00:00,179.41 +2019-07-18 14:00:00,182.41 +2019-07-18 15:00:00,189.26 +2019-07-18 16:00:00,231.49 +2019-07-18 17:00:00,288.69 +2019-07-18 18:00:00,330.18 +2019-07-18 19:00:00,345.22 +2019-07-18 20:00:00,354.2 +2019-07-18 21:00:00,355.97 +2019-07-18 22:00:00,349.82 +2019-07-18 23:00:00,352.3 +2019-07-19 00:00:00,353.04 +2019-07-19 01:00:00,362.74 +2019-07-19 02:00:00,379.25 +2019-07-19 03:00:00,395.0 +2019-07-19 04:00:00,415.71 +2019-07-19 05:00:00,423.51 +2019-07-19 06:00:00,411.24 +2019-07-19 07:00:00,384.28 +2019-07-19 08:00:00,367.96 +2019-07-19 09:00:00,360.1 +2019-07-19 10:00:00,351.05 +2019-07-19 11:00:00,340.88 +2019-07-19 12:00:00,334.99 +2019-07-19 13:00:00,342.62 +2019-07-19 14:00:00,368.76 +2019-07-19 15:00:00,395.38 +2019-07-19 16:00:00,418.83 +2019-07-19 17:00:00,451.64 +2019-07-19 18:00:00,479.5 +2019-07-19 19:00:00,492.06 +2019-07-19 20:00:00,495.26 +2019-07-19 21:00:00,504.74 +2019-07-19 22:00:00,499.9 +2019-07-19 23:00:00,495.59 +2019-07-20 00:00:00,482.35 +2019-07-20 01:00:00,491.67 +2019-07-20 02:00:00,498.93 +2019-07-20 03:00:00,513.68 +2019-07-20 04:00:00,505.54 +2019-07-20 05:00:00,482.56 +2019-07-20 06:00:00,447.15 +2019-07-20 07:00:00,408.03 +2019-07-20 08:00:00,378.38 +2019-07-20 09:00:00,365.16 +2019-07-20 10:00:00,358.31 +2019-07-20 11:00:00,344.92 +2019-07-20 12:00:00,333.34 +2019-07-20 13:00:00,339.54 +2019-07-20 14:00:00,355.7 +2019-07-20 15:00:00,381.31 +2019-07-20 16:00:00,424.31 +2019-07-20 17:00:00,466.67 +2019-07-20 18:00:00,483.5 +2019-07-20 19:00:00,502.97 +2019-07-20 20:00:00,510.15 +2019-07-20 21:00:00,517.42 +2019-07-20 22:00:00,504.94 +2019-07-20 23:00:00,504.04 +2019-07-21 00:00:00,497.28 +2019-07-21 01:00:00,497.8 +2019-07-21 02:00:00,496.24 +2019-07-21 03:00:00,515.79 +2019-07-21 04:00:00,505.51 +2019-07-21 05:00:00,479.71 +2019-07-21 06:00:00,459.88 +2019-07-21 07:00:00,431.59 +2019-07-21 08:00:00,401.04 +2019-07-21 09:00:00,384.21 +2019-07-21 10:00:00,371.58 +2019-07-21 11:00:00,359.1 +2019-07-21 12:00:00,355.88 +2019-07-21 13:00:00,366.28 +2019-07-21 14:00:00,391.03 +2019-07-21 15:00:00,431.95 +2019-07-21 16:00:00,473.34 +2019-07-21 17:00:00,502.4 +2019-07-21 18:00:00,520.73 +2019-07-21 19:00:00,534.22 +2019-07-21 20:00:00,544.16 +2019-07-21 21:00:00,557.03 +2019-07-21 22:00:00,555.19 +2019-07-21 23:00:00,550.26 +2019-07-22 00:00:00,543.21 +2019-07-22 01:00:00,540.1 +2019-07-22 02:00:00,541.66 +2019-07-22 03:00:00,554.3 +2019-07-22 04:00:00,533.83 +2019-07-22 05:00:00,495.11 +2019-07-22 06:00:00,479.05 +2019-07-22 07:00:00,452.65 +2019-07-22 08:00:00,406.72 +2019-07-22 09:00:00,379.09 +2019-07-22 10:00:00,368.59 +2019-07-22 11:00:00,367.37 +2019-07-22 12:00:00,367.75 +2019-07-22 13:00:00,383.85 +2019-07-22 14:00:00,409.22 +2019-07-22 15:00:00,439.56 +2019-07-22 16:00:00,476.57 +2019-07-22 17:00:00,502.01 +2019-07-22 18:00:00,516.48 +2019-07-22 19:00:00,532.95 +2019-07-22 20:00:00,540.05 +2019-07-22 21:00:00,543.71 +2019-07-22 22:00:00,534.96 +2019-07-22 23:00:00,531.98 +2019-07-23 00:00:00,520.81 +2019-07-23 01:00:00,521.37 +2019-07-23 02:00:00,525.81 +2019-07-23 03:00:00,533.86 +2019-07-23 04:00:00,519.06 +2019-07-23 05:00:00,498.62 +2019-07-23 06:00:00,472.14 +2019-07-23 07:00:00,437.08 +2019-07-23 08:00:00,400.23 +2019-07-23 09:00:00,374.75 +2019-07-23 10:00:00,365.6 +2019-07-23 11:00:00,357.57 +2019-07-23 12:00:00,354.56 +2019-07-23 13:00:00,363.74 +2019-07-23 14:00:00,387.13 +2019-07-23 15:00:00,420.94 +2019-07-23 16:00:00,473.46 +2019-07-23 17:00:00,507.72 +2019-07-23 18:00:00,526.44 +2019-07-23 19:00:00,528.53 +2019-07-23 20:00:00,527.32 +2019-07-23 21:00:00,518.54 +2019-07-23 22:00:00,471.47 +2019-07-23 23:00:00,453.09 +2019-07-24 00:00:00,437.52 +2019-07-24 01:00:00,425.0 +2019-07-24 02:00:00,412.73 +2019-07-24 03:00:00,405.76 +2019-07-24 04:00:00,390.51 +2019-07-24 05:00:00,373.92 +2019-07-24 06:00:00,360.86 +2019-07-24 07:00:00,341.82 +2019-07-24 08:00:00,315.26 +2019-07-24 09:00:00,288.64 +2019-07-24 10:00:00,281.49 +2019-07-24 11:00:00,288.23 +2019-07-24 12:00:00,292.73 +2019-07-24 13:00:00,304.78 +2019-07-24 14:00:00,327.83 +2019-07-24 15:00:00,349.28 +2019-07-24 16:00:00,372.81 +2019-07-24 17:00:00,388.02 +2019-07-24 18:00:00,395.48 +2019-07-24 19:00:00,395.76 +2019-07-24 20:00:00,393.14 +2019-07-24 21:00:00,388.39 +2019-07-24 22:00:00,387.53 +2019-07-24 23:00:00,383.02 +2019-07-25 00:00:00,380.73 +2019-07-25 01:00:00,364.05 +2019-07-25 02:00:00,355.94 +2019-07-25 03:00:00,353.43 +2019-07-25 04:00:00,344.25 +2019-07-25 05:00:00,327.37 +2019-07-25 06:00:00,318.21 +2019-07-25 07:00:00,290.02 +2019-07-25 08:00:00,261.85 +2019-07-25 09:00:00,238.4 +2019-07-25 10:00:00,228.37 +2019-07-25 11:00:00,225.79 +2019-07-25 12:00:00,231.38 +2019-07-25 13:00:00,251.34 +2019-07-25 14:00:00,296.15 +2019-07-25 15:00:00,361.25 +2019-07-25 16:00:00,417.49 +2019-07-25 17:00:00,451.5 +2019-07-25 18:00:00,479.31 +2019-07-25 19:00:00,490.49 +2019-07-25 20:00:00,495.91 +2019-07-25 21:00:00,514.92 +2019-07-25 22:00:00,506.77 +2019-07-25 23:00:00,494.37 +2019-07-26 00:00:00,489.62 +2019-07-26 01:00:00,491.91 +2019-07-26 02:00:00,498.95 +2019-07-26 03:00:00,514.01 +2019-07-26 04:00:00,515.04 +2019-07-26 05:00:00,495.63 +2019-07-26 06:00:00,479.64 +2019-07-26 07:00:00,451.68 +2019-07-26 08:00:00,425.87 +2019-07-26 09:00:00,401.97 +2019-07-26 10:00:00,389.23 +2019-07-26 11:00:00,381.23 +2019-07-26 12:00:00,384.5 +2019-07-26 13:00:00,391.71 +2019-07-26 14:00:00,420.91 +2019-07-26 15:00:00,447.96 +2019-07-26 16:00:00,476.26 +2019-07-26 17:00:00,505.47 +2019-07-26 18:00:00,530.04 +2019-07-26 19:00:00,540.33 +2019-07-26 20:00:00,549.75 +2019-07-26 21:00:00,555.75 +2019-07-26 22:00:00,535.86 +2019-07-26 23:00:00,519.08 +2019-07-27 00:00:00,503.36 +2019-07-27 01:00:00,490.5 +2019-07-27 02:00:00,491.02 +2019-07-27 03:00:00,509.66 +2019-07-27 04:00:00,504.37 +2019-07-27 05:00:00,484.81 +2019-07-27 06:00:00,461.55 +2019-07-27 07:00:00,429.69 +2019-07-27 08:00:00,398.7 +2019-07-27 09:00:00,376.13 +2019-07-27 10:00:00,367.1 +2019-07-27 11:00:00,363.34 +2019-07-27 12:00:00,364.88 +2019-07-27 13:00:00,366.33 +2019-07-27 14:00:00,381.5 +2019-07-27 15:00:00,408.14 +2019-07-27 16:00:00,448.24 +2019-07-27 17:00:00,490.99 +2019-07-27 18:00:00,514.37 +2019-07-27 19:00:00,513.81 +2019-07-27 20:00:00,531.04 +2019-07-27 21:00:00,519.16 +2019-07-27 22:00:00,485.83 +2019-07-27 23:00:00,471.17 +2019-07-28 00:00:00,451.88 +2019-07-28 01:00:00,452.73 +2019-07-28 02:00:00,453.29 +2019-07-28 03:00:00,446.82 +2019-07-28 04:00:00,440.32 +2019-07-28 05:00:00,427.09 +2019-07-28 06:00:00,401.89 +2019-07-28 07:00:00,366.72 +2019-07-28 08:00:00,344.19 +2019-07-28 09:00:00,322.58 +2019-07-28 10:00:00,301.92 +2019-07-28 11:00:00,278.16 +2019-07-28 12:00:00,267.46 +2019-07-28 13:00:00,260.3 +2019-07-28 14:00:00,258.71 +2019-07-28 15:00:00,277.68 +2019-07-28 16:00:00,306.0 +2019-07-28 17:00:00,341.57 +2019-07-28 18:00:00,366.91 +2019-07-28 19:00:00,372.09 +2019-07-28 20:00:00,356.08 +2019-07-28 21:00:00,318.55 +2019-07-28 22:00:00,267.85 +2019-07-28 23:00:00,225.86 +2019-07-29 00:00:00,213.48 +2019-07-29 01:00:00,209.22 +2019-07-29 02:00:00,210.51 +2019-07-29 03:00:00,216.83 +2019-07-29 04:00:00,228.88 +2019-07-29 05:00:00,233.29 +2019-07-29 06:00:00,209.9 +2019-07-29 07:00:00,167.78 +2019-07-29 08:00:00,156.24 +2019-07-29 09:00:00,152.53 +2019-07-29 10:00:00,150.29 +2019-07-29 11:00:00,148.41 +2019-07-29 12:00:00,146.88 +2019-07-29 13:00:00,146.85 +2019-07-29 14:00:00,151.64 +2019-07-29 15:00:00,173.18 +2019-07-29 16:00:00,213.11 +2019-07-29 17:00:00,254.1 +2019-07-29 18:00:00,302.39 +2019-07-29 19:00:00,310.09 +2019-07-29 20:00:00,306.42 +2019-07-29 21:00:00,309.23 +2019-07-29 22:00:00,316.11 +2019-07-29 23:00:00,311.25 +2019-07-30 00:00:00,305.34 +2019-07-30 01:00:00,307.67 +2019-07-30 02:00:00,299.82 +2019-07-30 03:00:00,305.98 +2019-07-30 04:00:00,308.68 +2019-07-30 05:00:00,298.97 +2019-07-30 06:00:00,284.55 +2019-07-30 07:00:00,258.35 +2019-07-30 08:00:00,219.74 +2019-07-30 09:00:00,188.0 +2019-07-30 10:00:00,179.07 +2019-07-30 11:00:00,178.21 +2019-07-30 12:00:00,185.63 +2019-07-30 13:00:00,194.43 +2019-07-30 14:00:00,216.06 +2019-07-30 15:00:00,270.22 +2019-07-30 16:00:00,312.8 +2019-07-30 17:00:00,356.91 +2019-07-30 18:00:00,378.09 +2019-07-30 19:00:00,377.57 +2019-07-30 20:00:00,370.63 +2019-07-30 21:00:00,360.72 +2019-07-30 22:00:00,323.25 +2019-07-30 23:00:00,267.6 +2019-07-31 00:00:00,223.68 +2019-07-31 01:00:00,208.64 +2019-07-31 02:00:00,197.79 +2019-07-31 03:00:00,194.51 +2019-07-31 04:00:00,193.71 +2019-07-31 05:00:00,181.17 +2019-07-31 06:00:00,161.97 +2019-07-31 07:00:00,146.35 +2019-07-31 08:00:00,142.86 +2019-07-31 09:00:00,141.02 +2019-07-31 10:00:00,141.91 +2019-07-31 11:00:00,143.78 +2019-07-31 12:00:00,145.67 +2019-07-31 13:00:00,148.36 +2019-07-31 14:00:00,150.75 +2019-07-31 15:00:00,159.76 +2019-07-31 16:00:00,185.66 +2019-07-31 17:00:00,221.19 +2019-07-31 18:00:00,263.59 +2019-07-31 19:00:00,292.71 +2019-07-31 20:00:00,285.83 +2019-07-31 21:00:00,266.6 +2019-07-31 22:00:00,271.48 +2019-07-31 23:00:00,279.06 +2019-08-01 00:00:00,290.47 +2019-08-01 01:00:00,288.36 +2019-08-01 02:00:00,299.22 +2019-08-01 03:00:00,306.65 +2019-08-01 04:00:00,313.16 +2019-08-01 05:00:00,325.73 +2019-08-01 06:00:00,307.65 +2019-08-01 07:00:00,285.55 +2019-08-01 08:00:00,257.13 +2019-08-01 09:00:00,238.55 +2019-08-01 10:00:00,225.0 +2019-08-01 11:00:00,208.25 +2019-08-01 12:00:00,202.57 +2019-08-01 13:00:00,207.13 +2019-08-01 14:00:00,218.54 +2019-08-01 15:00:00,247.77 +2019-08-01 16:00:00,294.63 +2019-08-01 17:00:00,329.49 +2019-08-01 18:00:00,359.6 +2019-08-01 19:00:00,372.94 +2019-08-01 20:00:00,378.91 +2019-08-01 21:00:00,373.43 +2019-08-01 22:00:00,341.75 +2019-08-01 23:00:00,324.65 +2019-08-02 00:00:00,301.82 +2019-08-02 01:00:00,298.79 +2019-08-02 02:00:00,311.58 +2019-08-02 03:00:00,335.34 +2019-08-02 04:00:00,365.76 +2019-08-02 05:00:00,366.49 +2019-08-02 06:00:00,355.42 +2019-08-02 07:00:00,327.55 +2019-08-02 08:00:00,298.53 +2019-08-02 09:00:00,277.14 +2019-08-02 10:00:00,266.04 +2019-08-02 11:00:00,266.88 +2019-08-02 12:00:00,274.45 +2019-08-02 13:00:00,276.98 +2019-08-02 14:00:00,297.15 +2019-08-02 15:00:00,351.1 +2019-08-02 16:00:00,402.02 +2019-08-02 17:00:00,451.32 +2019-08-02 18:00:00,476.57 +2019-08-02 19:00:00,488.58 +2019-08-02 20:00:00,499.33 +2019-08-02 21:00:00,493.9 +2019-08-02 22:00:00,484.16 +2019-08-02 23:00:00,493.58 +2019-08-03 00:00:00,490.22 +2019-08-03 01:00:00,490.64 +2019-08-03 02:00:00,495.27 +2019-08-03 03:00:00,508.31 +2019-08-03 04:00:00,504.96 +2019-08-03 05:00:00,495.3 +2019-08-03 06:00:00,473.49 +2019-08-03 07:00:00,449.26 +2019-08-03 08:00:00,429.07 +2019-08-03 09:00:00,419.85 +2019-08-03 10:00:00,410.72 +2019-08-03 11:00:00,405.35 +2019-08-03 12:00:00,400.96 +2019-08-03 13:00:00,404.6 +2019-08-03 14:00:00,436.14 +2019-08-03 15:00:00,469.37 +2019-08-03 16:00:00,495.77 +2019-08-03 17:00:00,512.51 +2019-08-03 18:00:00,530.35 +2019-08-03 19:00:00,544.38 +2019-08-03 20:00:00,545.5 +2019-08-03 21:00:00,549.94 +2019-08-03 22:00:00,543.58 +2019-08-03 23:00:00,537.88 +2019-08-04 00:00:00,522.99 +2019-08-04 01:00:00,513.68 +2019-08-04 02:00:00,527.78 +2019-08-04 03:00:00,537.46 +2019-08-04 04:00:00,537.29 +2019-08-04 05:00:00,527.5 +2019-08-04 06:00:00,494.93 +2019-08-04 07:00:00,467.18 +2019-08-04 08:00:00,442.47 +2019-08-04 09:00:00,427.77 +2019-08-04 10:00:00,424.32 +2019-08-04 11:00:00,419.65 +2019-08-04 12:00:00,421.98 +2019-08-04 13:00:00,429.0 +2019-08-04 14:00:00,452.13 +2019-08-04 15:00:00,480.26 +2019-08-04 16:00:00,501.15 +2019-08-04 17:00:00,530.44 +2019-08-04 18:00:00,543.17 +2019-08-04 19:00:00,547.08 +2019-08-04 20:00:00,540.55 +2019-08-04 21:00:00,543.59 +2019-08-04 22:00:00,540.99 +2019-08-04 23:00:00,537.78 +2019-08-05 00:00:00,524.32 +2019-08-05 01:00:00,507.04 +2019-08-05 02:00:00,511.4 +2019-08-05 03:00:00,522.72 +2019-08-05 04:00:00,532.13 +2019-08-05 05:00:00,517.15 +2019-08-05 06:00:00,492.82 +2019-08-05 07:00:00,457.91 +2019-08-05 08:00:00,426.2 +2019-08-05 09:00:00,400.61 +2019-08-05 10:00:00,392.23 +2019-08-05 11:00:00,377.88 +2019-08-05 12:00:00,368.06 +2019-08-05 13:00:00,368.35 +2019-08-05 14:00:00,381.67 +2019-08-05 15:00:00,417.28 +2019-08-05 16:00:00,445.62 +2019-08-05 17:00:00,470.2 +2019-08-05 18:00:00,486.3 +2019-08-05 19:00:00,474.64 +2019-08-05 20:00:00,474.55 +2019-08-05 21:00:00,421.86 +2019-08-05 22:00:00,358.33 +2019-08-05 23:00:00,348.95 +2019-08-06 00:00:00,349.26 +2019-08-06 01:00:00,358.32 +2019-08-06 02:00:00,369.02 +2019-08-06 03:00:00,372.57 +2019-08-06 04:00:00,380.75 +2019-08-06 05:00:00,368.29 +2019-08-06 06:00:00,355.58 +2019-08-06 07:00:00,334.71 +2019-08-06 08:00:00,310.49 +2019-08-06 09:00:00,265.03 +2019-08-06 10:00:00,231.55 +2019-08-06 11:00:00,216.75 +2019-08-06 12:00:00,210.86 +2019-08-06 13:00:00,225.26 +2019-08-06 14:00:00,244.34 +2019-08-06 15:00:00,268.29 +2019-08-06 16:00:00,317.07 +2019-08-06 17:00:00,350.6 +2019-08-06 18:00:00,381.5 +2019-08-06 19:00:00,386.95 +2019-08-06 20:00:00,383.36 +2019-08-06 21:00:00,377.01 +2019-08-06 22:00:00,345.5 +2019-08-06 23:00:00,332.76 +2019-08-07 00:00:00,326.14 +2019-08-07 01:00:00,330.89 +2019-08-07 02:00:00,339.46 +2019-08-07 03:00:00,346.9 +2019-08-07 04:00:00,331.74 +2019-08-07 05:00:00,312.96 +2019-08-07 06:00:00,298.73 +2019-08-07 07:00:00,277.44 +2019-08-07 08:00:00,254.1 +2019-08-07 09:00:00,239.87 +2019-08-07 10:00:00,235.43 +2019-08-07 11:00:00,237.85 +2019-08-07 12:00:00,245.43 +2019-08-07 13:00:00,261.52 +2019-08-07 14:00:00,286.45 +2019-08-07 15:00:00,308.19 +2019-08-07 16:00:00,327.87 +2019-08-07 17:00:00,335.15 +2019-08-07 18:00:00,330.43 +2019-08-07 19:00:00,328.84 +2019-08-07 20:00:00,318.8 +2019-08-07 21:00:00,281.14 +2019-08-07 22:00:00,244.03 +2019-08-07 23:00:00,226.35 +2019-08-08 00:00:00,220.27 +2019-08-08 01:00:00,221.82 +2019-08-08 02:00:00,215.05 +2019-08-08 03:00:00,210.17 +2019-08-08 04:00:00,203.11 +2019-08-08 05:00:00,200.12 +2019-08-08 06:00:00,179.73 +2019-08-08 07:00:00,164.43 +2019-08-08 08:00:00,152.98 +2019-08-08 09:00:00,150.25 +2019-08-08 10:00:00,151.94 +2019-08-08 11:00:00,155.39 +2019-08-08 12:00:00,159.72 +2019-08-08 13:00:00,164.43 +2019-08-08 14:00:00,166.06 +2019-08-08 15:00:00,169.69 +2019-08-08 16:00:00,196.58 +2019-08-08 17:00:00,237.07 +2019-08-08 18:00:00,259.91 +2019-08-08 19:00:00,254.36 +2019-08-08 20:00:00,254.03 +2019-08-08 21:00:00,242.68 +2019-08-08 22:00:00,220.36 +2019-08-08 23:00:00,220.25 +2019-08-09 00:00:00,221.03 +2019-08-09 01:00:00,225.37 +2019-08-09 02:00:00,237.91 +2019-08-09 03:00:00,260.38 +2019-08-09 04:00:00,307.79 +2019-08-09 05:00:00,318.08 +2019-08-09 06:00:00,306.09 +2019-08-09 07:00:00,288.55 +2019-08-09 08:00:00,266.35 +2019-08-09 09:00:00,239.63 +2019-08-09 10:00:00,215.46 +2019-08-09 11:00:00,209.0 +2019-08-09 12:00:00,215.9 +2019-08-09 13:00:00,236.66 +2019-08-09 14:00:00,278.37 +2019-08-09 15:00:00,318.92 +2019-08-09 16:00:00,354.42 +2019-08-09 17:00:00,399.65 +2019-08-09 18:00:00,419.17 +2019-08-09 19:00:00,423.73 +2019-08-09 20:00:00,435.65 +2019-08-09 21:00:00,426.54 +2019-08-09 22:00:00,418.6 +2019-08-09 23:00:00,410.76 +2019-08-10 00:00:00,410.75 +2019-08-10 01:00:00,404.68 +2019-08-10 02:00:00,413.97 +2019-08-10 03:00:00,418.69 +2019-08-10 04:00:00,423.94 +2019-08-10 05:00:00,415.13 +2019-08-10 06:00:00,403.73 +2019-08-10 07:00:00,380.91 +2019-08-10 08:00:00,358.1 +2019-08-10 09:00:00,336.35 +2019-08-10 10:00:00,319.37 +2019-08-10 11:00:00,307.98 +2019-08-10 12:00:00,302.87 +2019-08-10 13:00:00,315.35 +2019-08-10 14:00:00,340.29 +2019-08-10 15:00:00,383.03 +2019-08-10 16:00:00,429.68 +2019-08-10 17:00:00,480.89 +2019-08-10 18:00:00,502.13 +2019-08-10 19:00:00,510.07 +2019-08-10 20:00:00,530.55 +2019-08-10 21:00:00,549.13 +2019-08-10 22:00:00,548.25 +2019-08-10 23:00:00,546.32 +2019-08-11 00:00:00,525.01 +2019-08-11 01:00:00,513.89 +2019-08-11 02:00:00,517.9 +2019-08-11 03:00:00,518.89 +2019-08-11 04:00:00,495.98 +2019-08-11 05:00:00,478.9 +2019-08-11 06:00:00,439.85 +2019-08-11 07:00:00,412.32 +2019-08-11 08:00:00,371.12 +2019-08-11 09:00:00,349.4 +2019-08-11 10:00:00,343.49 +2019-08-11 11:00:00,334.52 +2019-08-11 12:00:00,328.99 +2019-08-11 13:00:00,344.77 +2019-08-11 14:00:00,363.1 +2019-08-11 15:00:00,408.16 +2019-08-11 16:00:00,463.46 +2019-08-11 17:00:00,495.81 +2019-08-11 18:00:00,515.88 +2019-08-11 19:00:00,532.43 +2019-08-11 20:00:00,547.31 +2019-08-11 21:00:00,559.91 +2019-08-11 22:00:00,555.09 +2019-08-11 23:00:00,550.9 +2019-08-12 00:00:00,538.27 +2019-08-12 01:00:00,528.46 +2019-08-12 02:00:00,516.24 +2019-08-12 03:00:00,523.12 +2019-08-12 04:00:00,492.44 +2019-08-12 05:00:00,462.96 +2019-08-12 06:00:00,432.61 +2019-08-12 07:00:00,408.3 +2019-08-12 08:00:00,373.77 +2019-08-12 09:00:00,347.64 +2019-08-12 10:00:00,342.72 +2019-08-12 11:00:00,339.56 +2019-08-12 12:00:00,347.63 +2019-08-12 13:00:00,361.93 +2019-08-12 14:00:00,391.36 +2019-08-12 15:00:00,426.67 +2019-08-12 16:00:00,465.99 +2019-08-12 17:00:00,502.61 +2019-08-12 18:00:00,524.35 +2019-08-12 19:00:00,527.62 +2019-08-12 20:00:00,531.57 +2019-08-12 21:00:00,543.46 +2019-08-12 22:00:00,529.67 +2019-08-12 23:00:00,523.27 +2019-08-13 00:00:00,521.05 +2019-08-13 01:00:00,515.32 +2019-08-13 02:00:00,505.02 +2019-08-13 03:00:00,523.92 +2019-08-13 04:00:00,498.05 +2019-08-13 05:00:00,467.55 +2019-08-13 06:00:00,442.26 +2019-08-13 07:00:00,420.96 +2019-08-13 08:00:00,378.47 +2019-08-13 09:00:00,341.15 +2019-08-13 10:00:00,311.96 +2019-08-13 11:00:00,286.77 +2019-08-13 12:00:00,282.27 +2019-08-13 13:00:00,286.09 +2019-08-13 14:00:00,304.58 +2019-08-13 15:00:00,348.82 +2019-08-13 16:00:00,405.53 +2019-08-13 17:00:00,442.87 +2019-08-13 18:00:00,461.41 +2019-08-13 19:00:00,466.73 +2019-08-13 20:00:00,459.24 +2019-08-13 21:00:00,431.26 +2019-08-13 22:00:00,416.56 +2019-08-13 23:00:00,397.61 +2019-08-14 00:00:00,394.89 +2019-08-14 01:00:00,390.29 +2019-08-14 02:00:00,384.82 +2019-08-14 03:00:00,392.07 +2019-08-14 04:00:00,383.21 +2019-08-14 05:00:00,359.66 +2019-08-14 06:00:00,325.6 +2019-08-14 07:00:00,284.48 +2019-08-14 08:00:00,238.09 +2019-08-14 09:00:00,197.16 +2019-08-14 10:00:00,175.96 +2019-08-14 11:00:00,167.65 +2019-08-14 12:00:00,166.19 +2019-08-14 13:00:00,173.56 +2019-08-14 14:00:00,192.52 +2019-08-14 15:00:00,249.07 +2019-08-14 16:00:00,314.53 +2019-08-14 17:00:00,362.65 +2019-08-14 18:00:00,385.69 +2019-08-14 19:00:00,381.0 +2019-08-14 20:00:00,384.37 +2019-08-14 21:00:00,402.63 +2019-08-14 22:00:00,410.59 +2019-08-14 23:00:00,413.84 +2019-08-15 00:00:00,411.89 +2019-08-15 01:00:00,395.09 +2019-08-15 02:00:00,379.05 +2019-08-15 03:00:00,372.72 +2019-08-15 04:00:00,371.01 +2019-08-15 05:00:00,349.48 +2019-08-15 06:00:00,320.6 +2019-08-15 07:00:00,294.99 +2019-08-15 08:00:00,266.95 +2019-08-15 09:00:00,239.25 +2019-08-15 10:00:00,224.41 +2019-08-15 11:00:00,205.76 +2019-08-15 12:00:00,207.26 +2019-08-15 13:00:00,220.38 +2019-08-15 14:00:00,252.14 +2019-08-15 15:00:00,297.38 +2019-08-15 16:00:00,344.9 +2019-08-15 17:00:00,383.43 +2019-08-15 18:00:00,396.13 +2019-08-15 19:00:00,395.74 +2019-08-15 20:00:00,398.52 +2019-08-15 21:00:00,403.13 +2019-08-15 22:00:00,391.06 +2019-08-15 23:00:00,382.95 +2019-08-16 00:00:00,375.75 +2019-08-16 01:00:00,365.5 +2019-08-16 02:00:00,360.8 +2019-08-16 03:00:00,351.9 +2019-08-16 04:00:00,349.38 +2019-08-16 05:00:00,338.21 +2019-08-16 06:00:00,310.18 +2019-08-16 07:00:00,272.76 +2019-08-16 08:00:00,248.69 +2019-08-16 09:00:00,217.68 +2019-08-16 10:00:00,199.96 +2019-08-16 11:00:00,191.5 +2019-08-16 12:00:00,192.3 +2019-08-16 13:00:00,203.98 +2019-08-16 14:00:00,222.9 +2019-08-16 15:00:00,243.81 +2019-08-16 16:00:00,267.98 +2019-08-16 17:00:00,282.44 +2019-08-16 18:00:00,291.47 +2019-08-16 19:00:00,286.04 +2019-08-16 20:00:00,277.54 +2019-08-16 21:00:00,239.32 +2019-08-16 22:00:00,216.28 +2019-08-16 23:00:00,205.2 +2019-08-17 00:00:00,204.11 +2019-08-17 01:00:00,201.34 +2019-08-17 02:00:00,202.89 +2019-08-17 03:00:00,205.83 +2019-08-17 04:00:00,222.55 +2019-08-17 05:00:00,247.77 +2019-08-17 06:00:00,241.1 +2019-08-17 07:00:00,228.54 +2019-08-17 08:00:00,215.99 +2019-08-17 09:00:00,201.86 +2019-08-17 10:00:00,193.92 +2019-08-17 11:00:00,190.21 +2019-08-17 12:00:00,195.29 +2019-08-17 13:00:00,210.96 +2019-08-17 14:00:00,244.81 +2019-08-17 15:00:00,284.41 +2019-08-17 16:00:00,305.71 +2019-08-17 17:00:00,326.9 +2019-08-17 18:00:00,336.04 +2019-08-17 19:00:00,337.43 +2019-08-17 20:00:00,343.56 +2019-08-17 21:00:00,331.31 +2019-08-17 22:00:00,309.75 +2019-08-17 23:00:00,294.68 +2019-08-18 00:00:00,284.98 +2019-08-18 01:00:00,285.2 +2019-08-18 02:00:00,279.35 +2019-08-18 03:00:00,297.47 +2019-08-18 04:00:00,323.72 +2019-08-18 05:00:00,331.9 +2019-08-18 06:00:00,327.92 +2019-08-18 07:00:00,318.45 +2019-08-18 08:00:00,304.63 +2019-08-18 09:00:00,293.94 +2019-08-18 10:00:00,283.23 +2019-08-18 11:00:00,276.76 +2019-08-18 12:00:00,273.95 +2019-08-18 13:00:00,275.36 +2019-08-18 14:00:00,285.79 +2019-08-18 15:00:00,304.12 +2019-08-18 16:00:00,335.8 +2019-08-18 17:00:00,357.88 +2019-08-18 18:00:00,355.01 +2019-08-18 19:00:00,351.83 +2019-08-18 20:00:00,335.76 +2019-08-18 21:00:00,323.71 +2019-08-18 22:00:00,312.84 +2019-08-18 23:00:00,309.01 +2019-08-19 00:00:00,308.99 +2019-08-19 01:00:00,308.61 +2019-08-19 02:00:00,324.81 +2019-08-19 03:00:00,360.74 +2019-08-19 04:00:00,393.39 +2019-08-19 05:00:00,411.81 +2019-08-19 06:00:00,420.97 +2019-08-19 07:00:00,421.86 +2019-08-19 08:00:00,406.13 +2019-08-19 09:00:00,395.75 +2019-08-19 10:00:00,394.58 +2019-08-19 11:00:00,389.6 +2019-08-19 12:00:00,392.39 +2019-08-19 13:00:00,408.58 +2019-08-19 14:00:00,414.33 +2019-08-19 15:00:00,447.45 +2019-08-19 16:00:00,489.14 +2019-08-19 17:00:00,515.55 +2019-08-19 18:00:00,537.31 +2019-08-19 19:00:00,556.85 +2019-08-19 20:00:00,558.34 +2019-08-19 21:00:00,565.56 +2019-08-19 22:00:00,553.3 +2019-08-19 23:00:00,539.05 +2019-08-20 00:00:00,530.25 +2019-08-20 01:00:00,526.14 +2019-08-20 02:00:00,529.85 +2019-08-20 03:00:00,545.95 +2019-08-20 04:00:00,550.19 +2019-08-20 05:00:00,538.61 +2019-08-20 06:00:00,518.53 +2019-08-20 07:00:00,491.47 +2019-08-20 08:00:00,459.35 +2019-08-20 09:00:00,438.2 +2019-08-20 10:00:00,418.6 +2019-08-20 11:00:00,396.16 +2019-08-20 12:00:00,397.23 +2019-08-20 13:00:00,413.33 +2019-08-20 14:00:00,435.75 +2019-08-20 15:00:00,475.74 +2019-08-20 16:00:00,524.79 +2019-08-20 17:00:00,565.12 +2019-08-20 18:00:00,583.18 +2019-08-20 19:00:00,591.85 +2019-08-20 20:00:00,601.66 +2019-08-20 21:00:00,601.95 +2019-08-20 22:00:00,583.86 +2019-08-20 23:00:00,567.42 +2019-08-21 00:00:00,558.2 +2019-08-21 01:00:00,550.97 +2019-08-21 02:00:00,547.61 +2019-08-21 03:00:00,555.23 +2019-08-21 04:00:00,548.19 +2019-08-21 05:00:00,510.68 +2019-08-21 06:00:00,462.25 +2019-08-21 07:00:00,412.44 +2019-08-21 08:00:00,369.16 +2019-08-21 09:00:00,344.05 +2019-08-21 10:00:00,332.56 +2019-08-21 11:00:00,334.79 +2019-08-21 12:00:00,343.22 +2019-08-21 13:00:00,357.51 +2019-08-21 14:00:00,384.13 +2019-08-21 15:00:00,426.78 +2019-08-21 16:00:00,473.69 +2019-08-21 17:00:00,514.59 +2019-08-21 18:00:00,529.88 +2019-08-21 19:00:00,526.82 +2019-08-21 20:00:00,524.96 +2019-08-21 21:00:00,514.23 +2019-08-21 22:00:00,471.62 +2019-08-21 23:00:00,448.37 +2019-08-22 00:00:00,425.52 +2019-08-22 01:00:00,410.89 +2019-08-22 02:00:00,407.77 +2019-08-22 03:00:00,409.75 +2019-08-22 04:00:00,402.99 +2019-08-22 05:00:00,389.86 +2019-08-22 06:00:00,371.79 +2019-08-22 07:00:00,358.72 +2019-08-22 08:00:00,343.74 +2019-08-22 09:00:00,323.35 +2019-08-22 10:00:00,319.23 +2019-08-22 11:00:00,323.24 +2019-08-22 12:00:00,316.56 +2019-08-22 13:00:00,322.04 +2019-08-22 14:00:00,335.76 +2019-08-22 15:00:00,358.17 +2019-08-22 16:00:00,384.51 +2019-08-22 17:00:00,414.49 +2019-08-22 18:00:00,428.38 +2019-08-22 19:00:00,445.6 +2019-08-22 20:00:00,450.86 +2019-08-22 21:00:00,443.74 +2019-08-22 22:00:00,429.73 +2019-08-22 23:00:00,434.08 +2019-08-23 00:00:00,436.57 +2019-08-23 01:00:00,429.26 +2019-08-23 02:00:00,431.86 +2019-08-23 03:00:00,447.52 +2019-08-23 04:00:00,454.31 +2019-08-23 05:00:00,451.59 +2019-08-23 06:00:00,447.46 +2019-08-23 07:00:00,434.95 +2019-08-23 08:00:00,416.09 +2019-08-23 09:00:00,400.63 +2019-08-23 10:00:00,389.64 +2019-08-23 11:00:00,378.17 +2019-08-23 12:00:00,372.44 +2019-08-23 13:00:00,380.6 +2019-08-23 14:00:00,397.12 +2019-08-23 15:00:00,417.21 +2019-08-23 16:00:00,441.2 +2019-08-23 17:00:00,461.13 +2019-08-23 18:00:00,476.07 +2019-08-23 19:00:00,475.38 +2019-08-23 20:00:00,477.6 +2019-08-23 21:00:00,467.05 +2019-08-23 22:00:00,445.97 +2019-08-23 23:00:00,434.77 +2019-08-24 00:00:00,443.0 +2019-08-24 01:00:00,449.56 +2019-08-24 02:00:00,456.44 +2019-08-24 03:00:00,475.54 +2019-08-24 04:00:00,494.67 +2019-08-24 05:00:00,496.73 +2019-08-24 06:00:00,484.57 +2019-08-24 07:00:00,460.83 +2019-08-24 08:00:00,427.84 +2019-08-24 09:00:00,396.99 +2019-08-24 10:00:00,379.8 +2019-08-24 11:00:00,370.36 +2019-08-24 12:00:00,373.01 +2019-08-24 13:00:00,385.46 +2019-08-24 14:00:00,407.82 +2019-08-24 15:00:00,448.23 +2019-08-24 16:00:00,486.02 +2019-08-24 17:00:00,529.57 +2019-08-24 18:00:00,539.83 +2019-08-24 19:00:00,525.19 +2019-08-24 20:00:00,525.39 +2019-08-24 21:00:00,508.97 +2019-08-24 22:00:00,484.41 +2019-08-24 23:00:00,479.21 +2019-08-25 00:00:00,481.47 +2019-08-25 01:00:00,485.54 +2019-08-25 02:00:00,493.53 +2019-08-25 03:00:00,495.45 +2019-08-25 04:00:00,481.43 +2019-08-25 05:00:00,462.57 +2019-08-25 06:00:00,432.68 +2019-08-25 07:00:00,393.58 +2019-08-25 08:00:00,350.3 +2019-08-25 09:00:00,305.0 +2019-08-25 10:00:00,270.1 +2019-08-25 11:00:00,253.16 +2019-08-25 12:00:00,241.94 +2019-08-25 13:00:00,242.18 +2019-08-25 14:00:00,256.97 +2019-08-25 15:00:00,286.22 +2019-08-25 16:00:00,334.86 +2019-08-25 17:00:00,358.43 +2019-08-25 18:00:00,364.81 +2019-08-25 19:00:00,368.81 +2019-08-25 20:00:00,362.68 +2019-08-25 21:00:00,350.86 +2019-08-25 22:00:00,341.49 +2019-08-25 23:00:00,341.36 +2019-08-26 00:00:00,350.97 +2019-08-26 01:00:00,361.17 +2019-08-26 02:00:00,379.0 +2019-08-26 03:00:00,398.79 +2019-08-26 04:00:00,436.78 +2019-08-26 05:00:00,444.72 +2019-08-26 06:00:00,434.58 +2019-08-26 07:00:00,420.88 +2019-08-26 08:00:00,388.61 +2019-08-26 09:00:00,367.49 +2019-08-26 10:00:00,352.35 +2019-08-26 11:00:00,329.96 +2019-08-26 12:00:00,319.69 +2019-08-26 13:00:00,313.08 +2019-08-26 14:00:00,328.16 +2019-08-26 15:00:00,356.08 +2019-08-26 16:00:00,393.86 +2019-08-26 17:00:00,424.47 +2019-08-26 18:00:00,437.63 +2019-08-26 19:00:00,434.68 +2019-08-26 20:00:00,435.26 +2019-08-26 21:00:00,430.48 +2019-08-26 22:00:00,414.16 +2019-08-26 23:00:00,406.84 +2019-08-27 00:00:00,398.62 +2019-08-27 01:00:00,399.1 +2019-08-27 02:00:00,392.95 +2019-08-27 03:00:00,400.31 +2019-08-27 04:00:00,430.56 +2019-08-27 05:00:00,426.69 +2019-08-27 06:00:00,417.17 +2019-08-27 07:00:00,398.77 +2019-08-27 08:00:00,382.0 +2019-08-27 09:00:00,364.92 +2019-08-27 10:00:00,352.21 +2019-08-27 11:00:00,342.56 +2019-08-27 12:00:00,333.04 +2019-08-27 13:00:00,333.73 +2019-08-27 14:00:00,341.39 +2019-08-27 15:00:00,362.71 +2019-08-27 16:00:00,396.13 +2019-08-27 17:00:00,430.39 +2019-08-27 18:00:00,435.7 +2019-08-27 19:00:00,442.11 +2019-08-27 20:00:00,441.83 +2019-08-27 21:00:00,434.78 +2019-08-27 22:00:00,415.42 +2019-08-27 23:00:00,404.35 +2019-08-28 00:00:00,391.95 +2019-08-28 01:00:00,386.38 +2019-08-28 02:00:00,386.66 +2019-08-28 03:00:00,381.13 +2019-08-28 04:00:00,377.16 +2019-08-28 05:00:00,376.13 +2019-08-28 06:00:00,353.58 +2019-08-28 07:00:00,339.97 +2019-08-28 08:00:00,319.58 +2019-08-28 09:00:00,308.87 +2019-08-28 10:00:00,303.56 +2019-08-28 11:00:00,298.22 +2019-08-28 12:00:00,296.06 +2019-08-28 13:00:00,309.06 +2019-08-28 14:00:00,324.78 +2019-08-28 15:00:00,347.15 +2019-08-28 16:00:00,373.36 +2019-08-28 17:00:00,396.81 +2019-08-28 18:00:00,410.88 +2019-08-28 19:00:00,417.68 +2019-08-28 20:00:00,420.12 +2019-08-28 21:00:00,424.85 +2019-08-28 22:00:00,407.84 +2019-08-28 23:00:00,401.21 +2019-08-29 00:00:00,396.44 +2019-08-29 01:00:00,391.87 +2019-08-29 02:00:00,391.48 +2019-08-29 03:00:00,388.21 +2019-08-29 04:00:00,386.94 +2019-08-29 05:00:00,387.88 +2019-08-29 06:00:00,387.78 +2019-08-29 07:00:00,375.43 +2019-08-29 08:00:00,365.58 +2019-08-29 09:00:00,356.15 +2019-08-29 10:00:00,346.54 +2019-08-29 11:00:00,334.02 +2019-08-29 12:00:00,339.67 +2019-08-29 13:00:00,357.57 +2019-08-29 14:00:00,368.22 +2019-08-29 15:00:00,388.56 +2019-08-29 16:00:00,415.11 +2019-08-29 17:00:00,430.37 +2019-08-29 18:00:00,435.99 +2019-08-29 19:00:00,447.41 +2019-08-29 20:00:00,450.32 +2019-08-29 21:00:00,456.29 +2019-08-29 22:00:00,439.18 +2019-08-29 23:00:00,438.09 +2019-08-30 00:00:00,436.34 +2019-08-30 01:00:00,432.61 +2019-08-30 02:00:00,429.66 +2019-08-30 03:00:00,443.97 +2019-08-30 04:00:00,454.73 +2019-08-30 05:00:00,460.42 +2019-08-30 06:00:00,456.17 +2019-08-30 07:00:00,443.16 +2019-08-30 08:00:00,427.66 +2019-08-30 09:00:00,413.43 +2019-08-30 10:00:00,410.61 +2019-08-30 11:00:00,412.21 +2019-08-30 12:00:00,415.9 +2019-08-30 13:00:00,421.49 +2019-08-30 14:00:00,433.79 +2019-08-30 15:00:00,449.72 +2019-08-30 16:00:00,468.46 +2019-08-30 17:00:00,490.18 +2019-08-30 18:00:00,500.09 +2019-08-30 19:00:00,503.83 +2019-08-30 20:00:00,504.21 +2019-08-30 21:00:00,496.75 +2019-08-30 22:00:00,487.08 +2019-08-30 23:00:00,477.74 +2019-08-31 00:00:00,470.6 +2019-08-31 01:00:00,474.0 +2019-08-31 02:00:00,477.01 +2019-08-31 03:00:00,491.19 +2019-08-31 04:00:00,501.09 +2019-08-31 05:00:00,504.53 +2019-08-31 06:00:00,494.66 +2019-08-31 07:00:00,481.41 +2019-08-31 08:00:00,457.71 +2019-08-31 09:00:00,437.1 +2019-08-31 10:00:00,426.63 +2019-08-31 11:00:00,417.79 +2019-08-31 12:00:00,408.48 +2019-08-31 13:00:00,404.66 +2019-08-31 14:00:00,413.31 +2019-08-31 15:00:00,434.92 +2019-08-31 16:00:00,473.67 +2019-08-31 17:00:00,506.42 +2019-08-31 18:00:00,516.22 +2019-08-31 19:00:00,525.27 +2019-08-31 20:00:00,531.54 +2019-08-31 21:00:00,535.36 +2019-08-31 22:00:00,528.42 +2019-08-31 23:00:00,527.49 +2019-09-01 00:00:00,531.4 +2019-09-01 01:00:00,530.09 +2019-09-01 02:00:00,529.13 +2019-09-01 03:00:00,546.86 +2019-09-01 04:00:00,560.47 +2019-09-01 05:00:00,542.59 +2019-09-01 06:00:00,520.07 +2019-09-01 07:00:00,495.03 +2019-09-01 08:00:00,469.16 +2019-09-01 09:00:00,446.32 +2019-09-01 10:00:00,424.07 +2019-09-01 11:00:00,406.93 +2019-09-01 12:00:00,409.01 +2019-09-01 13:00:00,417.7 +2019-09-01 14:00:00,440.44 +2019-09-01 15:00:00,482.39 +2019-09-01 16:00:00,526.36 +2019-09-01 17:00:00,554.29 +2019-09-01 18:00:00,553.99 +2019-09-01 19:00:00,550.0 +2019-09-01 20:00:00,548.95 +2019-09-01 21:00:00,536.05 +2019-09-01 22:00:00,539.43 +2019-09-01 23:00:00,540.53 +2019-09-02 00:00:00,552.61 +2019-09-02 01:00:00,556.98 +2019-09-02 02:00:00,562.59 +2019-09-02 03:00:00,575.08 +2019-09-02 04:00:00,575.29 +2019-09-02 05:00:00,557.39 +2019-09-02 06:00:00,529.11 +2019-09-02 07:00:00,499.77 +2019-09-02 08:00:00,461.58 +2019-09-02 09:00:00,428.33 +2019-09-02 10:00:00,409.97 +2019-09-02 11:00:00,395.57 +2019-09-02 12:00:00,399.19 +2019-09-02 13:00:00,410.59 +2019-09-02 14:00:00,442.57 +2019-09-02 15:00:00,495.43 +2019-09-02 16:00:00,550.46 +2019-09-02 17:00:00,575.25 +2019-09-02 18:00:00,569.13 +2019-09-02 19:00:00,565.92 +2019-09-02 20:00:00,563.7 +2019-09-02 21:00:00,559.92 +2019-09-02 22:00:00,546.86 +2019-09-02 23:00:00,550.65 +2019-09-03 00:00:00,549.9 +2019-09-03 01:00:00,547.03 +2019-09-03 02:00:00,539.25 +2019-09-03 03:00:00,538.85 +2019-09-03 04:00:00,539.46 +2019-09-03 05:00:00,522.15 +2019-09-03 06:00:00,492.32 +2019-09-03 07:00:00,448.44 +2019-09-03 08:00:00,401.39 +2019-09-03 09:00:00,371.39 +2019-09-03 10:00:00,354.39 +2019-09-03 11:00:00,349.84 +2019-09-03 12:00:00,350.23 +2019-09-03 13:00:00,363.26 +2019-09-03 14:00:00,399.48 +2019-09-03 15:00:00,469.45 +2019-09-03 16:00:00,534.06 +2019-09-03 17:00:00,560.27 +2019-09-03 18:00:00,562.97 +2019-09-03 19:00:00,576.09 +2019-09-03 20:00:00,588.25 +2019-09-03 21:00:00,600.39 +2019-09-03 22:00:00,593.81 +2019-09-03 23:00:00,580.57 +2019-09-04 00:00:00,572.82 +2019-09-04 01:00:00,581.42 +2019-09-04 02:00:00,579.65 +2019-09-04 03:00:00,584.86 +2019-09-04 04:00:00,580.89 +2019-09-04 05:00:00,555.04 +2019-09-04 06:00:00,512.71 +2019-09-04 07:00:00,468.34 +2019-09-04 08:00:00,429.25 +2019-09-04 09:00:00,405.42 +2019-09-04 10:00:00,384.8 +2019-09-04 11:00:00,370.27 +2019-09-04 12:00:00,369.98 +2019-09-04 13:00:00,371.58 +2019-09-04 14:00:00,399.31 +2019-09-04 15:00:00,463.5 +2019-09-04 16:00:00,525.13 +2019-09-04 17:00:00,558.38 +2019-09-04 18:00:00,556.73 +2019-09-04 19:00:00,545.67 +2019-09-04 20:00:00,547.8 +2019-09-04 21:00:00,522.48 +2019-09-04 22:00:00,495.99 +2019-09-04 23:00:00,472.18 +2019-09-05 00:00:00,468.35 +2019-09-05 01:00:00,469.3 +2019-09-05 02:00:00,469.01 +2019-09-05 03:00:00,476.11 +2019-09-05 04:00:00,489.0 +2019-09-05 05:00:00,474.31 +2019-09-05 06:00:00,430.62 +2019-09-05 07:00:00,383.64 +2019-09-05 08:00:00,342.14 +2019-09-05 09:00:00,317.29 +2019-09-05 10:00:00,301.89 +2019-09-05 11:00:00,272.74 +2019-09-05 12:00:00,261.28 +2019-09-05 13:00:00,287.95 +2019-09-05 14:00:00,365.36 +2019-09-05 15:00:00,453.27 +2019-09-05 16:00:00,544.03 +2019-09-05 17:00:00,585.75 +2019-09-05 18:00:00,578.79 +2019-09-05 19:00:00,585.2 +2019-09-05 20:00:00,587.17 +2019-09-05 21:00:00,589.15 +2019-09-05 22:00:00,602.61 +2019-09-05 23:00:00,607.87 +2019-09-06 00:00:00,613.14 +2019-09-06 01:00:00,621.69 +2019-09-06 02:00:00,625.17 +2019-09-06 03:00:00,632.22 +2019-09-06 04:00:00,612.33 +2019-09-06 05:00:00,585.04 +2019-09-06 06:00:00,538.59 +2019-09-06 07:00:00,500.05 +2019-09-06 08:00:00,460.03 +2019-09-06 09:00:00,425.9 +2019-09-06 10:00:00,407.72 +2019-09-06 11:00:00,409.66 +2019-09-06 12:00:00,426.45 +2019-09-06 13:00:00,458.86 +2019-09-06 14:00:00,494.88 +2019-09-06 15:00:00,542.61 +2019-09-06 16:00:00,579.87 +2019-09-06 17:00:00,612.48 +2019-09-06 18:00:00,620.65 +2019-09-06 19:00:00,628.73 +2019-09-06 20:00:00,646.23 +2019-09-06 21:00:00,658.35 +2019-09-06 22:00:00,650.08 +2019-09-06 23:00:00,642.37 +2019-09-07 00:00:00,643.82 +2019-09-07 01:00:00,640.36 +2019-09-07 02:00:00,634.82 +2019-09-07 03:00:00,636.02 +2019-09-07 04:00:00,621.99 +2019-09-07 05:00:00,595.93 +2019-09-07 06:00:00,564.89 +2019-09-07 07:00:00,533.15 +2019-09-07 08:00:00,488.63 +2019-09-07 09:00:00,454.96 +2019-09-07 10:00:00,441.37 +2019-09-07 11:00:00,440.67 +2019-09-07 12:00:00,448.68 +2019-09-07 13:00:00,463.55 +2019-09-07 14:00:00,495.58 +2019-09-07 15:00:00,541.24 +2019-09-07 16:00:00,585.37 +2019-09-07 17:00:00,606.62 +2019-09-07 18:00:00,603.66 +2019-09-07 19:00:00,617.53 +2019-09-07 20:00:00,616.88 +2019-09-07 21:00:00,610.47 +2019-09-07 22:00:00,591.61 +2019-09-07 23:00:00,586.05 +2019-09-08 00:00:00,586.19 +2019-09-08 01:00:00,585.36 +2019-09-08 02:00:00,586.77 +2019-09-08 03:00:00,601.74 +2019-09-08 04:00:00,606.54 +2019-09-08 05:00:00,581.52 +2019-09-08 06:00:00,539.6 +2019-09-08 07:00:00,500.22 +2019-09-08 08:00:00,465.54 +2019-09-08 09:00:00,427.56 +2019-09-08 10:00:00,401.11 +2019-09-08 11:00:00,395.69 +2019-09-08 12:00:00,407.72 +2019-09-08 13:00:00,432.38 +2019-09-08 14:00:00,470.8 +2019-09-08 15:00:00,516.07 +2019-09-08 16:00:00,554.17 +2019-09-08 17:00:00,567.23 +2019-09-08 18:00:00,560.08 +2019-09-08 19:00:00,561.41 +2019-09-08 20:00:00,563.19 +2019-09-08 21:00:00,562.0 +2019-09-08 22:00:00,564.61 +2019-09-08 23:00:00,577.44 +2019-09-09 00:00:00,587.36 +2019-09-09 01:00:00,586.67 +2019-09-09 02:00:00,589.1 +2019-09-09 03:00:00,592.68 +2019-09-09 04:00:00,589.62 +2019-09-09 05:00:00,567.77 +2019-09-09 06:00:00,532.44 +2019-09-09 07:00:00,505.34 +2019-09-09 08:00:00,474.79 +2019-09-09 09:00:00,445.45 +2019-09-09 10:00:00,423.7 +2019-09-09 11:00:00,420.99 +2019-09-09 12:00:00,428.18 +2019-09-09 13:00:00,453.27 +2019-09-09 14:00:00,489.18 +2019-09-09 15:00:00,528.24 +2019-09-09 16:00:00,567.36 +2019-09-09 17:00:00,584.76 +2019-09-09 18:00:00,583.25 +2019-09-09 19:00:00,587.64 +2019-09-09 20:00:00,596.34 +2019-09-09 21:00:00,602.43 +2019-09-09 22:00:00,599.2 +2019-09-09 23:00:00,603.78 +2019-09-10 00:00:00,611.14 +2019-09-10 01:00:00,614.3 +2019-09-10 02:00:00,615.19 +2019-09-10 03:00:00,619.96 +2019-09-10 04:00:00,615.25 +2019-09-10 05:00:00,595.3 +2019-09-10 06:00:00,557.68 +2019-09-10 07:00:00,540.33 +2019-09-10 08:00:00,511.9 +2019-09-10 09:00:00,490.62 +2019-09-10 10:00:00,477.36 +2019-09-10 11:00:00,471.14 +2019-09-10 12:00:00,472.17 +2019-09-10 13:00:00,503.24 +2019-09-10 14:00:00,534.53 +2019-09-10 15:00:00,570.73 +2019-09-10 16:00:00,609.39 +2019-09-10 17:00:00,627.33 +2019-09-10 18:00:00,637.73 +2019-09-10 19:00:00,654.49 +2019-09-10 20:00:00,655.03 +2019-09-10 21:00:00,646.6 +2019-09-10 22:00:00,622.81 +2019-09-10 23:00:00,612.2 +2019-09-11 00:00:00,601.78 +2019-09-11 01:00:00,591.78 +2019-09-11 02:00:00,590.23 +2019-09-11 03:00:00,595.93 +2019-09-11 04:00:00,592.79 +2019-09-11 05:00:00,579.9 +2019-09-11 06:00:00,557.18 +2019-09-11 07:00:00,531.99 +2019-09-11 08:00:00,500.23 +2019-09-11 09:00:00,471.98 +2019-09-11 10:00:00,450.13 +2019-09-11 11:00:00,439.19 +2019-09-11 12:00:00,444.65 +2019-09-11 13:00:00,455.04 +2019-09-11 14:00:00,474.05 +2019-09-11 15:00:00,513.11 +2019-09-11 16:00:00,557.34 +2019-09-11 17:00:00,590.98 +2019-09-11 18:00:00,596.75 +2019-09-11 19:00:00,599.64 +2019-09-11 20:00:00,585.57 +2019-09-11 21:00:00,569.31 +2019-09-11 22:00:00,545.9 +2019-09-11 23:00:00,542.86 +2019-09-12 00:00:00,534.87 +2019-09-12 01:00:00,538.66 +2019-09-12 02:00:00,537.04 +2019-09-12 03:00:00,537.69 +2019-09-12 04:00:00,540.99 +2019-09-12 05:00:00,520.58 +2019-09-12 06:00:00,485.07 +2019-09-12 07:00:00,447.2 +2019-09-12 08:00:00,400.58 +2019-09-12 09:00:00,346.99 +2019-09-12 10:00:00,322.57 +2019-09-12 11:00:00,298.2 +2019-09-12 12:00:00,300.27 +2019-09-12 13:00:00,327.82 +2019-09-12 14:00:00,388.22 +2019-09-12 15:00:00,459.02 +2019-09-12 16:00:00,534.99 +2019-09-12 17:00:00,577.43 +2019-09-12 18:00:00,585.2 +2019-09-12 19:00:00,588.43 +2019-09-12 20:00:00,595.28 +2019-09-12 21:00:00,587.15 +2019-09-12 22:00:00,571.18 +2019-09-12 23:00:00,560.9 +2019-09-13 00:00:00,569.84 +2019-09-13 01:00:00,578.54 +2019-09-13 02:00:00,587.47 +2019-09-13 03:00:00,602.42 +2019-09-13 04:00:00,620.29 +2019-09-13 05:00:00,614.53 +2019-09-13 06:00:00,588.7 +2019-09-13 07:00:00,553.66 +2019-09-13 08:00:00,518.98 +2019-09-13 09:00:00,490.96 +2019-09-13 10:00:00,475.23 +2019-09-13 11:00:00,481.17 +2019-09-13 12:00:00,496.58 +2019-09-13 13:00:00,519.74 +2019-09-13 14:00:00,551.85 +2019-09-13 15:00:00,580.15 +2019-09-13 16:00:00,618.42 +2019-09-13 17:00:00,631.87 +2019-09-13 18:00:00,636.5 +2019-09-13 19:00:00,645.94 +2019-09-13 20:00:00,661.36 +2019-09-13 21:00:00,658.89 +2019-09-13 22:00:00,649.66 +2019-09-13 23:00:00,640.37 +2019-09-14 00:00:00,634.21 +2019-09-14 01:00:00,629.02 +2019-09-14 02:00:00,627.74 +2019-09-14 03:00:00,625.83 +2019-09-14 04:00:00,610.49 +2019-09-14 05:00:00,588.17 +2019-09-14 06:00:00,553.5 +2019-09-14 07:00:00,520.53 +2019-09-14 08:00:00,477.19 +2019-09-14 09:00:00,446.17 +2019-09-14 10:00:00,429.98 +2019-09-14 11:00:00,437.28 +2019-09-14 12:00:00,458.14 +2019-09-14 13:00:00,491.09 +2019-09-14 14:00:00,527.46 +2019-09-14 15:00:00,564.9 +2019-09-14 16:00:00,595.38 +2019-09-14 17:00:00,593.98 +2019-09-14 18:00:00,578.18 +2019-09-14 19:00:00,570.58 +2019-09-14 20:00:00,566.22 +2019-09-14 21:00:00,558.52 +2019-09-14 22:00:00,563.54 +2019-09-14 23:00:00,568.92 +2019-09-15 00:00:00,568.79 +2019-09-15 01:00:00,572.36 +2019-09-15 02:00:00,579.61 +2019-09-15 03:00:00,585.8 +2019-09-15 04:00:00,576.87 +2019-09-15 05:00:00,561.01 +2019-09-15 06:00:00,536.56 +2019-09-15 07:00:00,527.58 +2019-09-15 08:00:00,519.4 +2019-09-15 09:00:00,512.34 +2019-09-15 10:00:00,514.19 +2019-09-15 11:00:00,511.4 +2019-09-15 12:00:00,510.5 +2019-09-15 13:00:00,522.8 +2019-09-15 14:00:00,529.72 +2019-09-15 15:00:00,533.47 +2019-09-15 16:00:00,546.66 +2019-09-15 17:00:00,545.3 +2019-09-15 18:00:00,546.96 +2019-09-15 19:00:00,552.75 +2019-09-15 20:00:00,548.69 +2019-09-15 21:00:00,536.85 +2019-09-15 22:00:00,545.16 +2019-09-15 23:00:00,548.36 +2019-09-16 00:00:00,547.12 +2019-09-16 01:00:00,543.3 +2019-09-16 02:00:00,541.58 +2019-09-16 03:00:00,541.84 +2019-09-16 04:00:00,543.73 +2019-09-16 05:00:00,542.88 +2019-09-16 06:00:00,529.78 +2019-09-16 07:00:00,510.25 +2019-09-16 08:00:00,476.69 +2019-09-16 09:00:00,451.36 +2019-09-16 10:00:00,441.89 +2019-09-16 11:00:00,439.7 +2019-09-16 12:00:00,439.17 +2019-09-16 13:00:00,448.33 +2019-09-16 14:00:00,468.83 +2019-09-16 15:00:00,493.03 +2019-09-16 16:00:00,518.97 +2019-09-16 17:00:00,535.04 +2019-09-16 18:00:00,543.04 +2019-09-16 19:00:00,546.37 +2019-09-16 20:00:00,553.51 +2019-09-16 21:00:00,551.12 +2019-09-16 22:00:00,551.87 +2019-09-16 23:00:00,556.97 +2019-09-17 00:00:00,562.97 +2019-09-17 01:00:00,565.52 +2019-09-17 02:00:00,568.53 +2019-09-17 03:00:00,572.64 +2019-09-17 04:00:00,581.32 +2019-09-17 05:00:00,587.37 +2019-09-17 06:00:00,562.69 +2019-09-17 07:00:00,537.7 +2019-09-17 08:00:00,510.92 +2019-09-17 09:00:00,493.27 +2019-09-17 10:00:00,484.29 +2019-09-17 11:00:00,488.78 +2019-09-17 12:00:00,498.98 +2019-09-17 13:00:00,510.36 +2019-09-17 14:00:00,528.76 +2019-09-17 15:00:00,558.04 +2019-09-17 16:00:00,592.34 +2019-09-17 17:00:00,604.65 +2019-09-17 18:00:00,610.36 +2019-09-17 19:00:00,620.63 +2019-09-17 20:00:00,630.87 +2019-09-17 21:00:00,637.11 +2019-09-17 22:00:00,633.25 +2019-09-17 23:00:00,632.11 +2019-09-18 00:00:00,632.6 +2019-09-18 01:00:00,630.62 +2019-09-18 02:00:00,628.59 +2019-09-18 03:00:00,626.62 +2019-09-18 04:00:00,625.06 +2019-09-18 05:00:00,603.5 +2019-09-18 06:00:00,567.96 +2019-09-18 07:00:00,522.8 +2019-09-18 08:00:00,475.54 +2019-09-18 09:00:00,446.02 +2019-09-18 10:00:00,440.26 +2019-09-18 11:00:00,436.54 +2019-09-18 12:00:00,446.19 +2019-09-18 13:00:00,476.25 +2019-09-18 14:00:00,514.92 +2019-09-18 15:00:00,553.63 +2019-09-18 16:00:00,589.47 +2019-09-18 17:00:00,597.14 +2019-09-18 18:00:00,592.09 +2019-09-18 19:00:00,582.73 +2019-09-18 20:00:00,574.61 +2019-09-18 21:00:00,551.55 +2019-09-18 22:00:00,515.36 +2019-09-18 23:00:00,493.97 +2019-09-19 00:00:00,482.3 +2019-09-19 01:00:00,474.08 +2019-09-19 02:00:00,462.97 +2019-09-19 03:00:00,464.04 +2019-09-19 04:00:00,482.06 +2019-09-19 05:00:00,476.04 +2019-09-19 06:00:00,457.8 +2019-09-19 07:00:00,453.99 +2019-09-19 08:00:00,436.63 +2019-09-19 09:00:00,419.85 +2019-09-19 10:00:00,417.35 +2019-09-19 11:00:00,428.59 +2019-09-19 12:00:00,442.36 +2019-09-19 13:00:00,458.25 +2019-09-19 14:00:00,493.45 +2019-09-19 15:00:00,534.67 +2019-09-19 16:00:00,555.42 +2019-09-19 17:00:00,563.86 +2019-09-19 18:00:00,572.82 +2019-09-19 19:00:00,576.29 +2019-09-19 20:00:00,586.7 +2019-09-19 21:00:00,602.21 +2019-09-19 22:00:00,605.59 +2019-09-19 23:00:00,620.88 +2019-09-20 00:00:00,609.56 +2019-09-20 01:00:00,613.56 +2019-09-20 02:00:00,615.16 +2019-09-20 03:00:00,617.79 +2019-09-20 04:00:00,624.68 +2019-09-20 05:00:00,617.04 +2019-09-20 06:00:00,603.99 +2019-09-20 07:00:00,591.07 +2019-09-20 08:00:00,559.57 +2019-09-20 09:00:00,531.83 +2019-09-20 10:00:00,526.73 +2019-09-20 11:00:00,530.75 +2019-09-20 12:00:00,531.09 +2019-09-20 13:00:00,544.01 +2019-09-20 14:00:00,568.35 +2019-09-20 15:00:00,588.81 +2019-09-20 16:00:00,616.11 +2019-09-20 17:00:00,624.28 +2019-09-20 18:00:00,640.95 +2019-09-20 19:00:00,662.2 +2019-09-20 20:00:00,673.76 +2019-09-20 21:00:00,679.97 +2019-09-20 22:00:00,672.9 +2019-09-20 23:00:00,665.47 +2019-09-21 00:00:00,654.17 +2019-09-21 01:00:00,638.37 +2019-09-21 02:00:00,626.97 +2019-09-21 03:00:00,622.18 +2019-09-21 04:00:00,611.48 +2019-09-21 05:00:00,591.82 +2019-09-21 06:00:00,569.66 +2019-09-21 07:00:00,545.37 +2019-09-21 08:00:00,504.71 +2019-09-21 09:00:00,462.72 +2019-09-21 10:00:00,450.31 +2019-09-21 11:00:00,440.85 +2019-09-21 12:00:00,448.6 +2019-09-21 13:00:00,458.41 +2019-09-21 14:00:00,490.14 +2019-09-21 15:00:00,530.58 +2019-09-21 16:00:00,568.22 +2019-09-21 17:00:00,569.59 +2019-09-21 18:00:00,579.42 +2019-09-21 19:00:00,581.24 +2019-09-21 20:00:00,579.84 +2019-09-21 21:00:00,577.26 +2019-09-21 22:00:00,571.24 +2019-09-21 23:00:00,568.83 +2019-09-22 00:00:00,570.51 +2019-09-22 01:00:00,572.54 +2019-09-22 02:00:00,595.6 +2019-09-22 03:00:00,614.88 +2019-09-22 04:00:00,614.01 +2019-09-22 05:00:00,603.49 +2019-09-22 06:00:00,581.44 +2019-09-22 07:00:00,554.35 +2019-09-22 08:00:00,518.55 +2019-09-22 09:00:00,485.74 +2019-09-22 10:00:00,461.9 +2019-09-22 11:00:00,453.72 +2019-09-22 12:00:00,448.33 +2019-09-22 13:00:00,467.74 +2019-09-22 14:00:00,495.12 +2019-09-22 15:00:00,525.71 +2019-09-22 16:00:00,555.13 +2019-09-22 17:00:00,545.03 +2019-09-22 18:00:00,540.22 +2019-09-22 19:00:00,541.31 +2019-09-22 20:00:00,530.44 +2019-09-22 21:00:00,505.11 +2019-09-22 22:00:00,470.88 +2019-09-22 23:00:00,457.18 +2019-09-23 00:00:00,429.81 +2019-09-23 01:00:00,403.87 +2019-09-23 02:00:00,390.8 +2019-09-23 03:00:00,405.44 +2019-09-23 04:00:00,425.89 +2019-09-23 05:00:00,420.53 +2019-09-23 06:00:00,395.06 +2019-09-23 07:00:00,346.98 +2019-09-23 08:00:00,289.64 +2019-09-23 09:00:00,235.98 +2019-09-23 10:00:00,204.29 +2019-09-23 11:00:00,203.69 +2019-09-23 12:00:00,206.12 +2019-09-23 13:00:00,208.77 +2019-09-23 14:00:00,235.02 +2019-09-23 15:00:00,285.42 +2019-09-23 16:00:00,320.19 +2019-09-23 17:00:00,324.32 +2019-09-23 18:00:00,314.46 +2019-09-23 19:00:00,309.75 +2019-09-23 20:00:00,320.9 +2019-09-23 21:00:00,322.96 +2019-09-23 22:00:00,348.0 +2019-09-23 23:00:00,337.88 +2019-09-24 00:00:00,342.28 +2019-09-24 01:00:00,348.47 +2019-09-24 02:00:00,367.73 +2019-09-24 03:00:00,413.94 +2019-09-24 04:00:00,444.0 +2019-09-24 05:00:00,443.96 +2019-09-24 06:00:00,425.26 +2019-09-24 07:00:00,404.38 +2019-09-24 08:00:00,385.1 +2019-09-24 09:00:00,365.02 +2019-09-24 10:00:00,355.48 +2019-09-24 11:00:00,358.25 +2019-09-24 12:00:00,358.13 +2019-09-24 13:00:00,369.4 +2019-09-24 14:00:00,396.46 +2019-09-24 15:00:00,431.57 +2019-09-24 16:00:00,466.16 +2019-09-24 17:00:00,469.78 +2019-09-24 18:00:00,468.05 +2019-09-24 19:00:00,466.62 +2019-09-24 20:00:00,460.64 +2019-09-24 21:00:00,455.22 +2019-09-24 22:00:00,462.28 +2019-09-24 23:00:00,477.46 +2019-09-25 00:00:00,484.57 +2019-09-25 01:00:00,485.01 +2019-09-25 02:00:00,505.68 +2019-09-25 03:00:00,525.79 +2019-09-25 04:00:00,540.2 +2019-09-25 05:00:00,550.6 +2019-09-25 06:00:00,532.54 +2019-09-25 07:00:00,501.98 +2019-09-25 08:00:00,463.36 +2019-09-25 09:00:00,438.37 +2019-09-25 10:00:00,430.02 +2019-09-25 11:00:00,428.18 +2019-09-25 12:00:00,435.34 +2019-09-25 13:00:00,468.85 +2019-09-25 14:00:00,523.16 +2019-09-25 15:00:00,576.03 +2019-09-25 16:00:00,610.44 +2019-09-25 17:00:00,613.33 +2019-09-25 18:00:00,630.63 +2019-09-25 19:00:00,654.84 +2019-09-25 20:00:00,671.08 +2019-09-25 21:00:00,670.74 +2019-09-25 22:00:00,661.75 +2019-09-25 23:00:00,646.25 +2019-09-26 00:00:00,628.45 +2019-09-26 01:00:00,607.68 +2019-09-26 02:00:00,588.56 +2019-09-26 03:00:00,578.97 +2019-09-26 04:00:00,577.98 +2019-09-26 05:00:00,560.31 +2019-09-26 06:00:00,520.46 +2019-09-26 07:00:00,483.36 +2019-09-26 08:00:00,458.32 +2019-09-26 09:00:00,436.91 +2019-09-26 10:00:00,423.39 +2019-09-26 11:00:00,406.36 +2019-09-26 12:00:00,413.78 +2019-09-26 13:00:00,443.58 +2019-09-26 14:00:00,504.67 +2019-09-26 15:00:00,560.49 +2019-09-26 16:00:00,585.26 +2019-09-26 17:00:00,593.56 +2019-09-26 18:00:00,592.7 +2019-09-26 19:00:00,588.93 +2019-09-26 20:00:00,591.09 +2019-09-26 21:00:00,599.49 +2019-09-26 22:00:00,600.02 +2019-09-26 23:00:00,592.76 +2019-09-27 00:00:00,578.03 +2019-09-27 01:00:00,564.91 +2019-09-27 02:00:00,555.02 +2019-09-27 03:00:00,592.69 +2019-09-27 04:00:00,591.26 +2019-09-27 05:00:00,591.46 +2019-09-27 06:00:00,572.52 +2019-09-27 07:00:00,548.83 +2019-09-27 08:00:00,513.83 +2019-09-27 09:00:00,478.7 +2019-09-27 10:00:00,457.91 +2019-09-27 11:00:00,443.16 +2019-09-27 12:00:00,447.35 +2019-09-27 13:00:00,467.09 +2019-09-27 14:00:00,498.3 +2019-09-27 15:00:00,523.77 +2019-09-27 16:00:00,542.98 +2019-09-27 17:00:00,550.65 +2019-09-27 18:00:00,560.81 +2019-09-27 19:00:00,563.19 +2019-09-27 20:00:00,569.86 +2019-09-27 21:00:00,551.22 +2019-09-27 22:00:00,541.22 +2019-09-27 23:00:00,551.57 +2019-09-28 00:00:00,548.87 +2019-09-28 01:00:00,556.57 +2019-09-28 02:00:00,568.03 +2019-09-28 03:00:00,604.81 +2019-09-28 04:00:00,622.31 +2019-09-28 05:00:00,622.48 +2019-09-28 06:00:00,607.26 +2019-09-28 07:00:00,585.47 +2019-09-28 08:00:00,562.14 +2019-09-28 09:00:00,539.31 +2019-09-28 10:00:00,526.24 +2019-09-28 11:00:00,521.98 +2019-09-28 12:00:00,532.27 +2019-09-28 13:00:00,556.23 +2019-09-28 14:00:00,592.12 +2019-09-28 15:00:00,631.26 +2019-09-28 16:00:00,647.68 +2019-09-28 17:00:00,643.5 +2019-09-28 18:00:00,638.71 +2019-09-28 19:00:00,643.88 +2019-09-28 20:00:00,634.37 +2019-09-28 21:00:00,607.36 +2019-09-28 22:00:00,564.45 +2019-09-28 23:00:00,529.62 +2019-09-29 00:00:00,508.25 +2019-09-29 01:00:00,484.13 +2019-09-29 02:00:00,479.37 +2019-09-29 03:00:00,511.23 +2019-09-29 04:00:00,549.58 +2019-09-29 05:00:00,552.56 +2019-09-29 06:00:00,538.66 +2019-09-29 07:00:00,518.58 +2019-09-29 08:00:00,504.39 +2019-09-29 09:00:00,474.69 +2019-09-29 10:00:00,435.86 +2019-09-29 11:00:00,406.57 +2019-09-29 12:00:00,378.07 +2019-09-29 13:00:00,368.2 +2019-09-29 14:00:00,380.3 +2019-09-29 15:00:00,399.55 +2019-09-29 16:00:00,436.72 +2019-09-29 17:00:00,438.19 +2019-09-29 18:00:00,412.42 +2019-09-29 19:00:00,376.21 +2019-09-29 20:00:00,343.88 +2019-09-29 21:00:00,325.5 +2019-09-29 22:00:00,293.51 +2019-09-29 23:00:00,279.67 +2019-09-30 00:00:00,272.73 +2019-09-30 01:00:00,279.76 +2019-09-30 02:00:00,290.48 +2019-09-30 03:00:00,314.58 +2019-09-30 04:00:00,369.02 +2019-09-30 05:00:00,397.87 +2019-09-30 06:00:00,390.3 +2019-09-30 07:00:00,356.39 +2019-09-30 08:00:00,319.67 +2019-09-30 09:00:00,307.33 +2019-09-30 10:00:00,285.06 +2019-09-30 11:00:00,278.36 +2019-09-30 12:00:00,290.27 +2019-09-30 13:00:00,324.49 +2019-09-30 14:00:00,379.54 +2019-09-30 15:00:00,452.61 +2019-09-30 16:00:00,499.09 +2019-09-30 17:00:00,497.45 +2019-09-30 18:00:00,480.02 +2019-09-30 19:00:00,459.86 +2019-09-30 20:00:00,424.1 +2019-09-30 21:00:00,397.41 +2019-09-30 22:00:00,373.55 +2019-09-30 23:00:00,349.74 +2019-10-01 00:00:00,316.34 +2019-10-01 01:00:00,296.05 +2019-10-01 02:00:00,308.48 +2019-10-01 03:00:00,345.07 +2019-10-01 04:00:00,385.78 +2019-10-01 05:00:00,409.56 +2019-10-01 06:00:00,389.43 +2019-10-01 07:00:00,350.28 +2019-10-01 08:00:00,310.84 +2019-10-01 09:00:00,268.56 +2019-10-01 10:00:00,237.87 +2019-10-01 11:00:00,216.28 +2019-10-01 12:00:00,221.09 +2019-10-01 13:00:00,264.57 +2019-10-01 14:00:00,356.67 +2019-10-01 15:00:00,437.67 +2019-10-01 16:00:00,466.97 +2019-10-01 17:00:00,451.82 +2019-10-01 18:00:00,437.0 +2019-10-01 19:00:00,420.06 +2019-10-01 20:00:00,418.38 +2019-10-01 21:00:00,422.24 +2019-10-01 22:00:00,427.71 +2019-10-01 23:00:00,441.72 +2019-10-02 00:00:00,447.88 +2019-10-02 01:00:00,455.32 +2019-10-02 02:00:00,478.79 +2019-10-02 03:00:00,493.14 +2019-10-02 04:00:00,510.51 +2019-10-02 05:00:00,509.57 +2019-10-02 06:00:00,482.88 +2019-10-02 07:00:00,450.32 +2019-10-02 08:00:00,399.06 +2019-10-02 09:00:00,344.46 +2019-10-02 10:00:00,314.43 +2019-10-02 11:00:00,290.0 +2019-10-02 12:00:00,279.84 +2019-10-02 13:00:00,295.34 +2019-10-02 14:00:00,324.51 +2019-10-02 15:00:00,368.03 +2019-10-02 16:00:00,363.78 +2019-10-02 17:00:00,325.9 +2019-10-02 18:00:00,265.86 +2019-10-02 19:00:00,214.38 +2019-10-02 20:00:00,201.38 +2019-10-02 21:00:00,201.29 +2019-10-02 22:00:00,195.81 +2019-10-02 23:00:00,197.44 +2019-10-03 00:00:00,202.53 +2019-10-03 01:00:00,203.32 +2019-10-03 02:00:00,193.63 +2019-10-03 03:00:00,193.96 +2019-10-03 04:00:00,188.22 +2019-10-03 05:00:00,186.88 +2019-10-03 06:00:00,176.12 +2019-10-03 07:00:00,168.89 +2019-10-03 08:00:00,168.27 +2019-10-03 09:00:00,168.6 +2019-10-03 10:00:00,170.65 +2019-10-03 11:00:00,171.43 +2019-10-03 12:00:00,175.17 +2019-10-03 13:00:00,182.68 +2019-10-03 14:00:00,211.36 +2019-10-03 15:00:00,257.97 +2019-10-03 16:00:00,284.84 +2019-10-03 17:00:00,314.71 +2019-10-03 18:00:00,322.74 +2019-10-03 19:00:00,314.6 +2019-10-03 20:00:00,311.17 +2019-10-03 21:00:00,308.49 +2019-10-03 22:00:00,317.35 +2019-10-03 23:00:00,315.7 +2019-10-04 00:00:00,323.43 +2019-10-04 01:00:00,350.09 +2019-10-04 02:00:00,382.62 +2019-10-04 03:00:00,452.11 +2019-10-04 04:00:00,498.98 +2019-10-04 05:00:00,518.88 +2019-10-04 06:00:00,515.63 +2019-10-04 07:00:00,509.01 +2019-10-04 08:00:00,496.82 +2019-10-04 09:00:00,490.18 +2019-10-04 10:00:00,485.33 +2019-10-04 11:00:00,468.87 +2019-10-04 12:00:00,462.35 +2019-10-04 13:00:00,468.94 +2019-10-04 14:00:00,493.73 +2019-10-04 15:00:00,518.82 +2019-10-04 16:00:00,530.17 +2019-10-04 17:00:00,521.28 +2019-10-04 18:00:00,530.64 +2019-10-04 19:00:00,523.31 +2019-10-04 20:00:00,521.12 +2019-10-04 21:00:00,507.1 +2019-10-04 22:00:00,487.75 +2019-10-04 23:00:00,477.35 +2019-10-05 00:00:00,464.88 +2019-10-05 01:00:00,468.36 +2019-10-05 02:00:00,467.81 +2019-10-05 03:00:00,482.32 +2019-10-05 04:00:00,516.38 +2019-10-05 05:00:00,527.33 +2019-10-05 06:00:00,514.25 +2019-10-05 07:00:00,506.43 +2019-10-05 08:00:00,494.75 +2019-10-05 09:00:00,475.75 +2019-10-05 10:00:00,457.37 +2019-10-05 11:00:00,450.98 +2019-10-05 12:00:00,449.85 +2019-10-05 13:00:00,452.56 +2019-10-05 14:00:00,461.42 +2019-10-05 15:00:00,468.56 +2019-10-05 16:00:00,482.21 +2019-10-05 17:00:00,474.01 +2019-10-05 18:00:00,463.37 +2019-10-05 19:00:00,454.52 +2019-10-05 20:00:00,439.88 +2019-10-05 21:00:00,410.59 +2019-10-05 22:00:00,376.7 +2019-10-05 23:00:00,359.52 +2019-10-06 00:00:00,340.91 +2019-10-06 01:00:00,321.54 +2019-10-06 02:00:00,335.45 +2019-10-06 03:00:00,371.36 +2019-10-06 04:00:00,416.89 +2019-10-06 05:00:00,453.74 +2019-10-06 06:00:00,457.78 +2019-10-06 07:00:00,444.4 +2019-10-06 08:00:00,421.4 +2019-10-06 09:00:00,407.06 +2019-10-06 10:00:00,415.3 +2019-10-06 11:00:00,419.41 +2019-10-06 12:00:00,431.98 +2019-10-06 13:00:00,455.13 +2019-10-06 14:00:00,498.22 +2019-10-06 15:00:00,534.88 +2019-10-06 16:00:00,550.91 +2019-10-06 17:00:00,551.19 +2019-10-06 18:00:00,569.63 +2019-10-06 19:00:00,583.55 +2019-10-06 20:00:00,608.29 +2019-10-06 21:00:00,627.88 +2019-10-06 22:00:00,642.78 +2019-10-06 23:00:00,649.89 +2019-10-07 00:00:00,649.79 +2019-10-07 01:00:00,659.61 +2019-10-07 02:00:00,670.53 +2019-10-07 03:00:00,683.78 +2019-10-07 04:00:00,660.75 +2019-10-07 05:00:00,642.46 +2019-10-07 06:00:00,618.84 +2019-10-07 07:00:00,592.74 +2019-10-07 08:00:00,567.53 +2019-10-07 09:00:00,546.78 +2019-10-07 10:00:00,532.88 +2019-10-07 11:00:00,532.1 +2019-10-07 12:00:00,542.1 +2019-10-07 13:00:00,564.24 +2019-10-07 14:00:00,599.19 +2019-10-07 15:00:00,637.76 +2019-10-07 16:00:00,659.71 +2019-10-07 17:00:00,644.01 +2019-10-07 18:00:00,653.31 +2019-10-07 19:00:00,655.13 +2019-10-07 20:00:00,656.97 +2019-10-07 21:00:00,657.57 +2019-10-07 22:00:00,646.57 +2019-10-07 23:00:00,636.97 +2019-10-08 00:00:00,635.59 +2019-10-08 01:00:00,633.66 +2019-10-08 02:00:00,638.44 +2019-10-08 03:00:00,644.45 +2019-10-08 04:00:00,633.82 +2019-10-08 05:00:00,628.21 +2019-10-08 06:00:00,612.44 +2019-10-08 07:00:00,590.05 +2019-10-08 08:00:00,553.31 +2019-10-08 09:00:00,521.67 +2019-10-08 10:00:00,498.36 +2019-10-08 11:00:00,484.26 +2019-10-08 12:00:00,485.56 +2019-10-08 13:00:00,510.14 +2019-10-08 14:00:00,545.04 +2019-10-08 15:00:00,589.81 +2019-10-08 16:00:00,600.63 +2019-10-08 17:00:00,581.82 +2019-10-08 18:00:00,561.15 +2019-10-08 19:00:00,541.35 +2019-10-08 20:00:00,526.44 +2019-10-08 21:00:00,510.86 +2019-10-08 22:00:00,485.0 +2019-10-08 23:00:00,487.97 +2019-10-09 00:00:00,499.26 +2019-10-09 01:00:00,510.74 +2019-10-09 02:00:00,516.43 +2019-10-09 03:00:00,519.71 +2019-10-09 04:00:00,523.07 +2019-10-09 05:00:00,526.28 +2019-10-09 06:00:00,495.86 +2019-10-09 07:00:00,466.33 +2019-10-09 08:00:00,426.88 +2019-10-09 09:00:00,375.68 +2019-10-09 10:00:00,335.02 +2019-10-09 11:00:00,331.07 +2019-10-09 12:00:00,342.39 +2019-10-09 13:00:00,378.16 +2019-10-09 14:00:00,449.23 +2019-10-09 15:00:00,524.32 +2019-10-09 16:00:00,544.32 +2019-10-09 17:00:00,512.95 +2019-10-09 18:00:00,481.59 +2019-10-09 19:00:00,451.92 +2019-10-09 20:00:00,440.16 +2019-10-09 21:00:00,449.15 +2019-10-09 22:00:00,460.45 +2019-10-09 23:00:00,485.88 +2019-10-10 00:00:00,509.39 +2019-10-10 01:00:00,527.16 +2019-10-10 02:00:00,541.93 +2019-10-10 03:00:00,557.12 +2019-10-10 04:00:00,584.64 +2019-10-10 05:00:00,590.29 +2019-10-10 06:00:00,554.81 +2019-10-10 07:00:00,493.78 +2019-10-10 08:00:00,443.35 +2019-10-10 09:00:00,406.98 +2019-10-10 10:00:00,384.75 +2019-10-10 11:00:00,373.69 +2019-10-10 12:00:00,375.79 +2019-10-10 13:00:00,398.65 +2019-10-10 14:00:00,466.74 +2019-10-10 15:00:00,551.57 +2019-10-10 16:00:00,586.29 +2019-10-10 17:00:00,579.29 +2019-10-10 18:00:00,567.98 +2019-10-10 19:00:00,552.35 +2019-10-10 20:00:00,555.1 +2019-10-10 21:00:00,548.99 +2019-10-10 22:00:00,535.22 +2019-10-10 23:00:00,523.27 +2019-10-11 00:00:00,508.26 +2019-10-11 01:00:00,503.39 +2019-10-11 02:00:00,517.26 +2019-10-11 03:00:00,551.61 +2019-10-11 04:00:00,560.01 +2019-10-11 05:00:00,559.1 +2019-10-11 06:00:00,546.25 +2019-10-11 07:00:00,524.48 +2019-10-11 08:00:00,497.83 +2019-10-11 09:00:00,468.32 +2019-10-11 10:00:00,443.31 +2019-10-11 11:00:00,429.21 +2019-10-11 12:00:00,427.44 +2019-10-11 13:00:00,450.94 +2019-10-11 14:00:00,486.89 +2019-10-11 15:00:00,516.46 +2019-10-11 16:00:00,530.79 +2019-10-11 17:00:00,531.3 +2019-10-11 18:00:00,530.36 +2019-10-11 19:00:00,523.08 +2019-10-11 20:00:00,509.27 +2019-10-11 21:00:00,494.99 +2019-10-11 22:00:00,477.03 +2019-10-11 23:00:00,480.97 +2019-10-12 00:00:00,476.68 +2019-10-12 01:00:00,475.9 +2019-10-12 02:00:00,485.58 +2019-10-12 03:00:00,511.49 +2019-10-12 04:00:00,528.8 +2019-10-12 05:00:00,541.2 +2019-10-12 06:00:00,545.73 +2019-10-12 07:00:00,540.6 +2019-10-12 08:00:00,528.56 +2019-10-12 09:00:00,511.63 +2019-10-12 10:00:00,493.07 +2019-10-12 11:00:00,482.16 +2019-10-12 12:00:00,481.69 +2019-10-12 13:00:00,492.84 +2019-10-12 14:00:00,515.28 +2019-10-12 15:00:00,545.97 +2019-10-12 16:00:00,571.44 +2019-10-12 17:00:00,575.51 +2019-10-12 18:00:00,581.52 +2019-10-12 19:00:00,587.15 +2019-10-12 20:00:00,594.14 +2019-10-12 21:00:00,589.86 +2019-10-12 22:00:00,585.71 +2019-10-12 23:00:00,594.89 +2019-10-13 00:00:00,603.08 +2019-10-13 01:00:00,592.25 +2019-10-13 02:00:00,591.1 +2019-10-13 03:00:00,613.85 +2019-10-13 04:00:00,621.18 +2019-10-13 05:00:00,621.66 +2019-10-13 06:00:00,616.06 +2019-10-13 07:00:00,602.21 +2019-10-13 08:00:00,579.99 +2019-10-13 09:00:00,548.48 +2019-10-13 10:00:00,531.11 +2019-10-13 11:00:00,526.72 +2019-10-13 12:00:00,539.64 +2019-10-13 13:00:00,555.15 +2019-10-13 14:00:00,579.42 +2019-10-13 15:00:00,618.49 +2019-10-13 16:00:00,632.7 +2019-10-13 17:00:00,617.83 +2019-10-13 18:00:00,605.96 +2019-10-13 19:00:00,594.25 +2019-10-13 20:00:00,576.47 +2019-10-13 21:00:00,557.78 +2019-10-13 22:00:00,570.05 +2019-10-13 23:00:00,558.47 +2019-10-14 00:00:00,543.9 +2019-10-14 01:00:00,521.04 +2019-10-14 02:00:00,527.85 +2019-10-14 03:00:00,549.86 +2019-10-14 04:00:00,563.95 +2019-10-14 05:00:00,567.14 +2019-10-14 06:00:00,562.11 +2019-10-14 07:00:00,545.22 +2019-10-14 08:00:00,524.01 +2019-10-14 09:00:00,495.63 +2019-10-14 10:00:00,469.64 +2019-10-14 11:00:00,454.82 +2019-10-14 12:00:00,453.65 +2019-10-14 13:00:00,455.11 +2019-10-14 14:00:00,470.23 +2019-10-14 15:00:00,498.69 +2019-10-14 16:00:00,516.38 +2019-10-14 17:00:00,508.55 +2019-10-14 18:00:00,488.19 +2019-10-14 19:00:00,455.21 +2019-10-14 20:00:00,428.73 +2019-10-14 21:00:00,396.85 +2019-10-14 22:00:00,361.78 +2019-10-14 23:00:00,355.23 +2019-10-15 00:00:00,348.98 +2019-10-15 01:00:00,343.8 +2019-10-15 02:00:00,343.64 +2019-10-15 03:00:00,365.77 +2019-10-15 04:00:00,383.93 +2019-10-15 05:00:00,400.2 +2019-10-15 06:00:00,389.46 +2019-10-15 07:00:00,359.97 +2019-10-15 08:00:00,334.47 +2019-10-15 09:00:00,319.12 +2019-10-15 10:00:00,306.9 +2019-10-15 11:00:00,308.69 +2019-10-15 12:00:00,331.2 +2019-10-15 13:00:00,381.24 +2019-10-15 14:00:00,432.35 +2019-10-15 15:00:00,493.58 +2019-10-15 16:00:00,513.95 +2019-10-15 17:00:00,512.91 +2019-10-15 18:00:00,520.83 +2019-10-15 19:00:00,527.26 +2019-10-15 20:00:00,530.56 +2019-10-15 21:00:00,530.21 +2019-10-15 22:00:00,538.58 +2019-10-15 23:00:00,545.6 +2019-10-16 00:00:00,556.17 +2019-10-16 01:00:00,554.66 +2019-10-16 02:00:00,565.6 +2019-10-16 03:00:00,571.89 +2019-10-16 04:00:00,581.03 +2019-10-16 05:00:00,579.05 +2019-10-16 06:00:00,559.46 +2019-10-16 07:00:00,539.06 +2019-10-16 08:00:00,503.59 +2019-10-16 09:00:00,464.23 +2019-10-16 10:00:00,422.51 +2019-10-16 11:00:00,411.38 +2019-10-16 12:00:00,424.76 +2019-10-16 13:00:00,451.52 +2019-10-16 14:00:00,509.1 +2019-10-16 15:00:00,555.97 +2019-10-16 16:00:00,581.11 +2019-10-16 17:00:00,576.32 +2019-10-16 18:00:00,573.76 +2019-10-16 19:00:00,567.88 +2019-10-16 20:00:00,568.53 +2019-10-16 21:00:00,540.43 +2019-10-16 22:00:00,516.44 +2019-10-16 23:00:00,509.93 +2019-10-17 00:00:00,515.05 +2019-10-17 01:00:00,526.64 +2019-10-17 02:00:00,550.01 +2019-10-17 03:00:00,561.87 +2019-10-17 04:00:00,568.22 +2019-10-17 05:00:00,561.97 +2019-10-17 06:00:00,565.31 +2019-10-17 07:00:00,551.64 +2019-10-17 08:00:00,528.67 +2019-10-17 09:00:00,509.54 +2019-10-17 10:00:00,490.61 +2019-10-17 11:00:00,476.02 +2019-10-17 12:00:00,481.38 +2019-10-17 13:00:00,513.28 +2019-10-17 14:00:00,552.01 +2019-10-17 15:00:00,582.42 +2019-10-17 16:00:00,587.94 +2019-10-17 17:00:00,578.06 +2019-10-17 18:00:00,572.27 +2019-10-17 19:00:00,574.09 +2019-10-17 20:00:00,569.62 +2019-10-17 21:00:00,563.94 +2019-10-17 22:00:00,558.83 +2019-10-17 23:00:00,557.52 +2019-10-18 00:00:00,552.61 +2019-10-18 01:00:00,554.26 +2019-10-18 02:00:00,562.93 +2019-10-18 03:00:00,578.76 +2019-10-18 04:00:00,583.71 +2019-10-18 05:00:00,588.74 +2019-10-18 06:00:00,581.33 +2019-10-18 07:00:00,563.96 +2019-10-18 08:00:00,541.53 +2019-10-18 09:00:00,522.89 +2019-10-18 10:00:00,502.21 +2019-10-18 11:00:00,497.64 +2019-10-18 12:00:00,495.86 +2019-10-18 13:00:00,520.26 +2019-10-18 14:00:00,555.72 +2019-10-18 15:00:00,585.68 +2019-10-18 16:00:00,590.99 +2019-10-18 17:00:00,577.02 +2019-10-18 18:00:00,550.65 +2019-10-18 19:00:00,519.25 +2019-10-18 20:00:00,508.06 +2019-10-18 21:00:00,508.57 +2019-10-18 22:00:00,499.23 +2019-10-18 23:00:00,488.2 +2019-10-19 00:00:00,488.21 +2019-10-19 01:00:00,481.93 +2019-10-19 02:00:00,483.0 +2019-10-19 03:00:00,497.64 +2019-10-19 04:00:00,509.89 +2019-10-19 05:00:00,509.97 +2019-10-19 06:00:00,501.23 +2019-10-19 07:00:00,485.2 +2019-10-19 08:00:00,479.1 +2019-10-19 09:00:00,466.17 +2019-10-19 10:00:00,455.15 +2019-10-19 11:00:00,450.88 +2019-10-19 12:00:00,444.58 +2019-10-19 13:00:00,449.71 +2019-10-19 14:00:00,456.21 +2019-10-19 15:00:00,458.21 +2019-10-19 16:00:00,448.14 +2019-10-19 17:00:00,422.39 +2019-10-19 18:00:00,384.81 +2019-10-19 19:00:00,342.27 +2019-10-19 20:00:00,313.88 +2019-10-19 21:00:00,280.75 +2019-10-19 22:00:00,231.75 +2019-10-19 23:00:00,222.69 +2019-10-20 00:00:00,221.12 +2019-10-20 01:00:00,207.44 +2019-10-20 02:00:00,206.77 +2019-10-20 03:00:00,215.06 +2019-10-20 04:00:00,248.63 +2019-10-20 05:00:00,271.35 +2019-10-20 06:00:00,273.39 +2019-10-20 07:00:00,251.27 +2019-10-20 08:00:00,231.38 +2019-10-20 09:00:00,212.83 +2019-10-20 10:00:00,189.58 +2019-10-20 11:00:00,191.73 +2019-10-20 12:00:00,204.85 +2019-10-20 13:00:00,228.81 +2019-10-20 14:00:00,244.74 +2019-10-20 15:00:00,257.06 +2019-10-20 16:00:00,267.51 +2019-10-20 17:00:00,272.98 +2019-10-20 18:00:00,262.8 +2019-10-20 19:00:00,260.72 +2019-10-20 20:00:00,263.18 +2019-10-20 21:00:00,258.09 +2019-10-20 22:00:00,255.74 +2019-10-20 23:00:00,244.87 +2019-10-21 00:00:00,236.63 +2019-10-21 01:00:00,237.45 +2019-10-21 02:00:00,232.52 +2019-10-21 03:00:00,227.95 +2019-10-21 04:00:00,241.53 +2019-10-21 05:00:00,250.65 +2019-10-21 06:00:00,250.24 +2019-10-21 07:00:00,239.45 +2019-10-21 08:00:00,225.21 +2019-10-21 09:00:00,208.48 +2019-10-21 10:00:00,185.2 +2019-10-21 11:00:00,167.83 +2019-10-21 12:00:00,164.14 +2019-10-21 13:00:00,174.05 +2019-10-21 14:00:00,210.96 +2019-10-21 15:00:00,255.43 +2019-10-21 16:00:00,269.23 +2019-10-21 17:00:00,289.45 +2019-10-21 18:00:00,290.4 +2019-10-21 19:00:00,294.15 +2019-10-21 20:00:00,300.98 +2019-10-21 21:00:00,299.15 +2019-10-21 22:00:00,292.53 +2019-10-21 23:00:00,288.21 +2019-10-22 00:00:00,276.51 +2019-10-22 01:00:00,271.37 +2019-10-22 02:00:00,273.4 +2019-10-22 03:00:00,278.59 +2019-10-22 04:00:00,282.94 +2019-10-22 05:00:00,296.73 +2019-10-22 06:00:00,298.56 +2019-10-22 07:00:00,275.51 +2019-10-22 08:00:00,241.1 +2019-10-22 09:00:00,209.08 +2019-10-22 10:00:00,184.1 +2019-10-22 11:00:00,178.22 +2019-10-22 12:00:00,181.44 +2019-10-22 13:00:00,192.8 +2019-10-22 14:00:00,232.61 +2019-10-22 15:00:00,276.4 +2019-10-22 16:00:00,299.81 +2019-10-22 17:00:00,304.95 +2019-10-22 18:00:00,308.09 +2019-10-22 19:00:00,311.0 +2019-10-22 20:00:00,314.59 +2019-10-22 21:00:00,304.1 +2019-10-22 22:00:00,309.45 +2019-10-22 23:00:00,319.82 +2019-10-23 00:00:00,325.23 +2019-10-23 01:00:00,336.71 +2019-10-23 02:00:00,351.24 +2019-10-23 03:00:00,383.33 +2019-10-23 04:00:00,392.78 +2019-10-23 05:00:00,422.98 +2019-10-23 06:00:00,430.43 +2019-10-23 07:00:00,415.97 +2019-10-23 08:00:00,392.16 +2019-10-23 09:00:00,368.49 +2019-10-23 10:00:00,366.02 +2019-10-23 11:00:00,386.67 +2019-10-23 12:00:00,424.17 +2019-10-23 13:00:00,465.39 +2019-10-23 14:00:00,508.13 +2019-10-23 15:00:00,543.02 +2019-10-23 16:00:00,561.82 +2019-10-23 17:00:00,556.46 +2019-10-23 18:00:00,550.21 +2019-10-23 19:00:00,537.92 +2019-10-23 20:00:00,529.81 +2019-10-23 21:00:00,511.88 +2019-10-23 22:00:00,472.58 +2019-10-23 23:00:00,463.91 +2019-10-24 00:00:00,451.94 +2019-10-24 01:00:00,442.21 +2019-10-24 02:00:00,441.61 +2019-10-24 03:00:00,434.71 +2019-10-24 04:00:00,422.53 +2019-10-24 05:00:00,412.72 +2019-10-24 06:00:00,402.82 +2019-10-24 07:00:00,360.74 +2019-10-24 08:00:00,335.31 +2019-10-24 09:00:00,315.28 +2019-10-24 10:00:00,287.46 +2019-10-24 11:00:00,260.59 +2019-10-24 12:00:00,262.47 +2019-10-24 13:00:00,312.14 +2019-10-24 14:00:00,389.26 +2019-10-24 15:00:00,467.77 +2019-10-24 16:00:00,463.39 +2019-10-24 17:00:00,431.55 +2019-10-24 18:00:00,402.17 +2019-10-24 19:00:00,385.2 +2019-10-24 20:00:00,378.68 +2019-10-24 21:00:00,379.39 +2019-10-24 22:00:00,402.28 +2019-10-24 23:00:00,419.4 +2019-10-25 00:00:00,431.49 +2019-10-25 01:00:00,442.54 +2019-10-25 02:00:00,443.15 +2019-10-25 03:00:00,460.61 +2019-10-25 04:00:00,484.94 +2019-10-25 05:00:00,503.54 +2019-10-25 06:00:00,493.54 +2019-10-25 07:00:00,477.49 +2019-10-25 08:00:00,461.79 +2019-10-25 09:00:00,454.54 +2019-10-25 10:00:00,455.66 +2019-10-25 11:00:00,461.86 +2019-10-25 12:00:00,477.97 +2019-10-25 13:00:00,503.32 +2019-10-25 14:00:00,530.29 +2019-10-25 15:00:00,548.59 +2019-10-25 16:00:00,548.71 +2019-10-25 17:00:00,541.95 +2019-10-25 18:00:00,536.57 +2019-10-25 19:00:00,525.33 +2019-10-25 20:00:00,527.93 +2019-10-25 21:00:00,519.66 +2019-10-25 22:00:00,521.36 +2019-10-25 23:00:00,517.25 +2019-10-26 00:00:00,515.08 +2019-10-26 01:00:00,516.68 +2019-10-26 02:00:00,527.18 +2019-10-26 03:00:00,541.51 +2019-10-26 04:00:00,544.84 +2019-10-26 05:00:00,534.46 +2019-10-26 06:00:00,523.02 +2019-10-26 07:00:00,510.71 +2019-10-26 08:00:00,491.44 +2019-10-26 09:00:00,470.2 +2019-10-26 10:00:00,437.8 +2019-10-26 11:00:00,423.53 +2019-10-26 12:00:00,429.03 +2019-10-26 13:00:00,453.12 +2019-10-26 14:00:00,472.16 +2019-10-26 15:00:00,494.32 +2019-10-26 16:00:00,494.5 +2019-10-26 17:00:00,478.97 +2019-10-26 18:00:00,460.72 +2019-10-26 19:00:00,428.55 +2019-10-26 20:00:00,408.75 +2019-10-26 21:00:00,395.38 +2019-10-26 22:00:00,385.57 +2019-10-26 23:00:00,381.52 +2019-10-27 00:00:00,381.96 +2019-10-27 01:00:00,385.56 +2019-10-27 02:00:00,403.15 +2019-10-27 03:00:00,432.94 +2019-10-27 04:00:00,457.71 +2019-10-27 05:00:00,460.12 +2019-10-27 06:00:00,453.02 +2019-10-27 07:00:00,434.97 +2019-10-27 08:00:00,417.22 +2019-10-27 09:00:00,403.49 +2019-10-27 10:00:00,393.71 +2019-10-27 11:00:00,391.92 +2019-10-27 12:00:00,403.59 +2019-10-27 13:00:00,419.03 +2019-10-27 14:00:00,452.4 +2019-10-27 15:00:00,484.72 +2019-10-27 16:00:00,498.15 +2019-10-27 17:00:00,501.37 +2019-10-27 18:00:00,500.66 +2019-10-27 19:00:00,496.93 +2019-10-27 20:00:00,501.73 +2019-10-27 21:00:00,500.24 +2019-10-27 22:00:00,506.17 +2019-10-27 23:00:00,509.96 +2019-10-28 00:00:00,519.18 +2019-10-28 01:00:00,522.39 +2019-10-28 02:00:00,524.41 +2019-10-28 03:00:00,535.38 +2019-10-28 04:00:00,534.42 +2019-10-28 05:00:00,531.77 +2019-10-28 06:00:00,521.31 +2019-10-28 07:00:00,502.19 +2019-10-28 08:00:00,481.84 +2019-10-28 09:00:00,465.14 +2019-10-28 10:00:00,445.46 +2019-10-28 11:00:00,436.82 +2019-10-28 12:00:00,446.88 +2019-10-28 13:00:00,475.1 +2019-10-28 14:00:00,508.18 +2019-10-28 15:00:00,522.24 +2019-10-28 16:00:00,491.99 +2019-10-28 17:00:00,465.83 +2019-10-28 18:00:00,450.85 +2019-10-28 19:00:00,433.38 +2019-10-28 20:00:00,430.55 +2019-10-28 21:00:00,416.62 +2019-10-28 22:00:00,419.24 +2019-10-28 23:00:00,413.49 +2019-10-29 00:00:00,409.62 +2019-10-29 01:00:00,407.2 +2019-10-29 02:00:00,405.41 +2019-10-29 03:00:00,408.94 +2019-10-29 04:00:00,438.19 +2019-10-29 05:00:00,460.87 +2019-10-29 06:00:00,457.63 +2019-10-29 07:00:00,446.53 +2019-10-29 08:00:00,431.62 +2019-10-29 09:00:00,415.66 +2019-10-29 10:00:00,395.82 +2019-10-29 11:00:00,388.13 +2019-10-29 12:00:00,394.59 +2019-10-29 13:00:00,411.2 +2019-10-29 14:00:00,436.7 +2019-10-29 15:00:00,455.13 +2019-10-29 16:00:00,439.33 +2019-10-29 17:00:00,423.46 +2019-10-29 18:00:00,412.65 +2019-10-29 19:00:00,395.08 +2019-10-29 20:00:00,394.81 +2019-10-29 21:00:00,386.62 +2019-10-29 22:00:00,387.29 +2019-10-29 23:00:00,390.76 +2019-10-30 00:00:00,378.39 +2019-10-30 01:00:00,349.14 +2019-10-30 02:00:00,329.48 +2019-10-30 03:00:00,346.24 +2019-10-30 04:00:00,370.14 +2019-10-30 05:00:00,382.34 +2019-10-30 06:00:00,392.25 +2019-10-30 07:00:00,373.62 +2019-10-30 08:00:00,352.43 +2019-10-30 09:00:00,340.27 +2019-10-30 10:00:00,333.86 +2019-10-30 11:00:00,340.77 +2019-10-30 12:00:00,355.68 +2019-10-30 13:00:00,366.2 +2019-10-30 14:00:00,373.46 +2019-10-30 15:00:00,383.87 +2019-10-30 16:00:00,384.52 +2019-10-30 17:00:00,376.62 +2019-10-30 18:00:00,360.85 +2019-10-30 19:00:00,352.44 +2019-10-30 20:00:00,351.55 +2019-10-30 21:00:00,348.39 +2019-10-30 22:00:00,365.18 +2019-10-30 23:00:00,346.45 +2019-10-31 00:00:00,355.35 +2019-10-31 01:00:00,345.16 +2019-10-31 02:00:00,355.43 +2019-10-31 03:00:00,359.9 +2019-10-31 04:00:00,361.41 +2019-10-31 05:00:00,362.42 +2019-10-31 06:00:00,361.83 +2019-10-31 07:00:00,335.85 +2019-10-31 08:00:00,299.79 +2019-10-31 09:00:00,276.77 +2019-10-31 10:00:00,262.33 +2019-10-31 11:00:00,252.06 +2019-10-31 12:00:00,237.99 +2019-10-31 13:00:00,244.92 +2019-10-31 14:00:00,272.86 +2019-10-31 15:00:00,297.82 +2019-10-31 16:00:00,289.29 +2019-10-31 17:00:00,274.83 +2019-10-31 18:00:00,262.95 +2019-10-31 19:00:00,243.02 +2019-10-31 20:00:00,233.64 +2019-10-31 21:00:00,231.19 +2019-10-31 22:00:00,219.66 +2019-10-31 23:00:00,245.77 +2019-11-01 00:00:00,244.33 +2019-11-01 01:00:00,248.85 +2019-11-01 02:00:00,245.26 +2019-11-01 03:00:00,247.4 +2019-11-01 04:00:00,245.82 +2019-11-01 05:00:00,273.74 +2019-11-01 06:00:00,303.75 +2019-11-01 07:00:00,316.09 +2019-11-01 08:00:00,299.96 +2019-11-01 09:00:00,293.81 +2019-11-01 10:00:00,292.86 +2019-11-01 11:00:00,303.4 +2019-11-01 12:00:00,318.1 +2019-11-01 13:00:00,344.28 +2019-11-01 14:00:00,380.49 +2019-11-01 15:00:00,407.93 +2019-11-01 16:00:00,419.69 +2019-11-01 17:00:00,430.19 +2019-11-01 18:00:00,426.37 +2019-11-01 19:00:00,431.12 +2019-11-01 20:00:00,437.35 +2019-11-01 21:00:00,440.93 +2019-11-01 22:00:00,441.15 +2019-11-01 23:00:00,460.3 +2019-11-02 00:00:00,475.52 +2019-11-02 01:00:00,485.03 +2019-11-02 02:00:00,489.75 +2019-11-02 03:00:00,502.67 +2019-11-02 04:00:00,539.49 +2019-11-02 05:00:00,558.71 +2019-11-02 06:00:00,575.2 +2019-11-02 07:00:00,568.54 +2019-11-02 08:00:00,554.6 +2019-11-02 09:00:00,546.61 +2019-11-02 10:00:00,534.74 +2019-11-02 11:00:00,536.0 +2019-11-02 12:00:00,547.67 +2019-11-02 13:00:00,565.98 +2019-11-02 14:00:00,588.88 +2019-11-02 15:00:00,605.65 +2019-11-02 16:00:00,603.31 +2019-11-02 17:00:00,607.01 +2019-11-02 18:00:00,614.13 +2019-11-02 19:00:00,621.82 +2019-11-02 20:00:00,623.97 +2019-11-02 21:00:00,633.27 +2019-11-02 22:00:00,640.52 +2019-11-02 23:00:00,641.35 +2019-11-03 00:00:00,648.16 +2019-11-03 01:00:00,642.56 +2019-11-03 02:00:00,633.66 +2019-11-03 03:00:00,626.51 +2019-11-03 04:00:00,630.57 +2019-11-03 05:00:00,619.19 +2019-11-03 06:00:00,616.47 +2019-11-03 07:00:00,601.29 +2019-11-03 08:00:00,586.37 +2019-11-03 09:00:00,577.26 +2019-11-03 10:00:00,575.18 +2019-11-03 11:00:00,580.67 +2019-11-03 12:00:00,591.94 +2019-11-03 13:00:00,604.65 +2019-11-03 14:00:00,616.12 +2019-11-03 15:00:00,623.15 +2019-11-03 16:00:00,617.05 +2019-11-03 17:00:00,621.75 +2019-11-03 18:00:00,629.89 +2019-11-03 19:00:00,640.16 +2019-11-03 20:00:00,645.01 +2019-11-03 21:00:00,664.13 +2019-11-03 22:00:00,670.3 +2019-11-03 23:00:00,669.95 +2019-11-04 00:00:00,662.2 +2019-11-04 01:00:00,658.12 +2019-11-04 02:00:00,647.81 +2019-11-04 03:00:00,643.55 +2019-11-04 04:00:00,640.71 +2019-11-04 05:00:00,618.92 +2019-11-04 06:00:00,600.25 +2019-11-04 07:00:00,589.1 +2019-11-04 08:00:00,572.1 +2019-11-04 09:00:00,554.26 +2019-11-04 10:00:00,532.27 +2019-11-04 11:00:00,511.25 +2019-11-04 12:00:00,495.52 +2019-11-04 13:00:00,485.78 +2019-11-04 14:00:00,477.25 +2019-11-04 15:00:00,469.21 +2019-11-04 16:00:00,463.69 +2019-11-04 17:00:00,454.48 +2019-11-04 18:00:00,444.09 +2019-11-04 19:00:00,427.11 +2019-11-04 20:00:00,422.06 +2019-11-04 21:00:00,439.9 +2019-11-04 22:00:00,437.08 +2019-11-04 23:00:00,441.38 +2019-11-05 00:00:00,452.32 +2019-11-05 01:00:00,457.28 +2019-11-05 02:00:00,468.6 +2019-11-05 03:00:00,488.5 +2019-11-05 04:00:00,511.59 +2019-11-05 05:00:00,545.36 +2019-11-05 06:00:00,550.91 +2019-11-05 07:00:00,538.76 +2019-11-05 08:00:00,526.95 +2019-11-05 09:00:00,520.02 +2019-11-05 10:00:00,517.44 +2019-11-05 11:00:00,505.9 +2019-11-05 12:00:00,502.79 +2019-11-05 13:00:00,505.1 +2019-11-05 14:00:00,527.0 +2019-11-05 15:00:00,529.0 +2019-11-05 16:00:00,513.6 +2019-11-05 17:00:00,497.81 +2019-11-05 18:00:00,490.57 +2019-11-05 19:00:00,474.8 +2019-11-05 20:00:00,453.91 +2019-11-05 21:00:00,429.56 +2019-11-05 22:00:00,410.22 +2019-11-05 23:00:00,393.36 +2019-11-06 00:00:00,386.82 +2019-11-06 01:00:00,386.54 +2019-11-06 02:00:00,386.6 +2019-11-06 03:00:00,392.51 +2019-11-06 04:00:00,400.13 +2019-11-06 05:00:00,395.91 +2019-11-06 06:00:00,396.1 +2019-11-06 07:00:00,389.92 +2019-11-06 08:00:00,370.25 +2019-11-06 09:00:00,338.6 +2019-11-06 10:00:00,327.08 +2019-11-06 11:00:00,321.25 +2019-11-06 12:00:00,320.16 +2019-11-06 13:00:00,328.68 +2019-11-06 14:00:00,354.79 +2019-11-06 15:00:00,380.1 +2019-11-06 16:00:00,374.96 +2019-11-06 17:00:00,359.55 +2019-11-06 18:00:00,344.96 +2019-11-06 19:00:00,310.6 +2019-11-06 20:00:00,287.86 +2019-11-06 21:00:00,291.62 +2019-11-06 22:00:00,266.23 +2019-11-06 23:00:00,247.19 +2019-11-07 00:00:00,238.84 +2019-11-07 01:00:00,235.64 +2019-11-07 02:00:00,236.27 +2019-11-07 03:00:00,236.2 +2019-11-07 04:00:00,235.68 +2019-11-07 05:00:00,233.74 +2019-11-07 06:00:00,228.53 +2019-11-07 07:00:00,222.53 +2019-11-07 08:00:00,215.08 +2019-11-07 09:00:00,211.62 +2019-11-07 10:00:00,210.73 +2019-11-07 11:00:00,213.39 +2019-11-07 12:00:00,215.81 +2019-11-07 13:00:00,225.88 +2019-11-07 14:00:00,263.88 +2019-11-07 15:00:00,312.76 +2019-11-07 16:00:00,322.86 +2019-11-07 17:00:00,322.17 +2019-11-07 18:00:00,316.05 +2019-11-07 19:00:00,313.04 +2019-11-07 20:00:00,315.28 +2019-11-07 21:00:00,318.31 +2019-11-07 22:00:00,320.45 +2019-11-07 23:00:00,312.47 +2019-11-08 00:00:00,316.66 +2019-11-08 01:00:00,331.47 +2019-11-08 02:00:00,366.55 +2019-11-08 03:00:00,407.23 +2019-11-08 04:00:00,463.57 +2019-11-08 05:00:00,514.92 +2019-11-08 06:00:00,541.03 +2019-11-08 07:00:00,543.52 +2019-11-08 08:00:00,522.63 +2019-11-08 09:00:00,505.64 +2019-11-08 10:00:00,501.95 +2019-11-08 11:00:00,515.16 +2019-11-08 12:00:00,532.82 +2019-11-08 13:00:00,553.07 +2019-11-08 14:00:00,594.08 +2019-11-08 15:00:00,616.57 +2019-11-08 16:00:00,623.09 +2019-11-08 17:00:00,629.49 +2019-11-08 18:00:00,639.77 +2019-11-08 19:00:00,645.13 +2019-11-08 20:00:00,651.63 +2019-11-08 21:00:00,652.71 +2019-11-08 22:00:00,653.76 +2019-11-08 23:00:00,654.47 +2019-11-09 00:00:00,647.16 +2019-11-09 01:00:00,638.74 +2019-11-09 02:00:00,629.14 +2019-11-09 03:00:00,620.49 +2019-11-09 04:00:00,610.4 +2019-11-09 05:00:00,599.63 +2019-11-09 06:00:00,576.63 +2019-11-09 07:00:00,554.48 +2019-11-09 08:00:00,519.25 +2019-11-09 09:00:00,477.38 +2019-11-09 10:00:00,438.11 +2019-11-09 11:00:00,416.01 +2019-11-09 12:00:00,426.07 +2019-11-09 13:00:00,472.11 +2019-11-09 14:00:00,534.76 +2019-11-09 15:00:00,566.42 +2019-11-09 16:00:00,546.44 +2019-11-09 17:00:00,535.14 +2019-11-09 18:00:00,530.24 +2019-11-09 19:00:00,532.09 +2019-11-09 20:00:00,541.04 +2019-11-09 21:00:00,546.95 +2019-11-09 22:00:00,536.65 +2019-11-09 23:00:00,512.29 +2019-11-10 00:00:00,497.31 +2019-11-10 01:00:00,508.94 +2019-11-10 02:00:00,537.19 +2019-11-10 03:00:00,570.14 +2019-11-10 04:00:00,592.99 +2019-11-10 05:00:00,609.9 +2019-11-10 06:00:00,604.98 +2019-11-10 07:00:00,580.88 +2019-11-10 08:00:00,560.43 +2019-11-10 09:00:00,549.41 +2019-11-10 10:00:00,546.82 +2019-11-10 11:00:00,559.49 +2019-11-10 12:00:00,583.98 +2019-11-10 13:00:00,615.9 +2019-11-10 14:00:00,650.87 +2019-11-10 15:00:00,664.75 +2019-11-10 16:00:00,660.27 +2019-11-10 17:00:00,664.06 +2019-11-10 18:00:00,666.38 +2019-11-10 19:00:00,670.6 +2019-11-10 20:00:00,675.07 +2019-11-10 21:00:00,682.14 +2019-11-10 22:00:00,688.4 +2019-11-10 23:00:00,678.95 +2019-11-11 00:00:00,668.92 +2019-11-11 01:00:00,663.43 +2019-11-11 02:00:00,660.2 +2019-11-11 03:00:00,656.52 +2019-11-11 04:00:00,650.87 +2019-11-11 05:00:00,638.9 +2019-11-11 06:00:00,633.41 +2019-11-11 07:00:00,613.47 +2019-11-11 08:00:00,592.99 +2019-11-11 09:00:00,568.29 +2019-11-11 10:00:00,553.79 +2019-11-11 11:00:00,551.46 +2019-11-11 12:00:00,560.11 +2019-11-11 13:00:00,575.97 +2019-11-11 14:00:00,604.24 +2019-11-11 15:00:00,632.79 +2019-11-11 16:00:00,633.98 +2019-11-11 17:00:00,647.1 +2019-11-11 18:00:00,652.68 +2019-11-11 19:00:00,654.41 +2019-11-11 20:00:00,657.44 +2019-11-11 21:00:00,662.05 +2019-11-11 22:00:00,659.46 +2019-11-11 23:00:00,662.79 +2019-11-12 00:00:00,658.87 +2019-11-12 01:00:00,656.06 +2019-11-12 02:00:00,656.25 +2019-11-12 03:00:00,656.54 +2019-11-12 04:00:00,653.36 +2019-11-12 05:00:00,629.28 +2019-11-12 06:00:00,619.9 +2019-11-12 07:00:00,604.83 +2019-11-12 08:00:00,582.71 +2019-11-12 09:00:00,570.51 +2019-11-12 10:00:00,553.11 +2019-11-12 11:00:00,549.7 +2019-11-12 12:00:00,545.06 +2019-11-12 13:00:00,551.54 +2019-11-12 14:00:00,557.07 +2019-11-12 15:00:00,555.66 +2019-11-12 16:00:00,548.74 +2019-11-12 17:00:00,535.28 +2019-11-12 18:00:00,526.45 +2019-11-12 19:00:00,512.24 +2019-11-12 20:00:00,504.11 +2019-11-12 21:00:00,509.61 +2019-11-12 22:00:00,510.47 +2019-11-12 23:00:00,508.34 +2019-11-13 00:00:00,504.19 +2019-11-13 01:00:00,500.15 +2019-11-13 02:00:00,502.99 +2019-11-13 03:00:00,506.77 +2019-11-13 04:00:00,520.18 +2019-11-13 05:00:00,549.72 +2019-11-13 06:00:00,566.6 +2019-11-13 07:00:00,575.3 +2019-11-13 08:00:00,575.89 +2019-11-13 09:00:00,584.83 +2019-11-13 10:00:00,588.77 +2019-11-13 11:00:00,600.41 +2019-11-13 12:00:00,611.33 +2019-11-13 13:00:00,627.17 +2019-11-13 14:00:00,641.1 +2019-11-13 15:00:00,646.33 +2019-11-13 16:00:00,650.21 +2019-11-13 17:00:00,658.18 +2019-11-13 18:00:00,661.14 +2019-11-13 19:00:00,664.86 +2019-11-13 20:00:00,672.81 +2019-11-13 21:00:00,674.38 +2019-11-13 22:00:00,670.61 +2019-11-13 23:00:00,654.38 +2019-11-14 00:00:00,643.42 +2019-11-14 01:00:00,631.33 +2019-11-14 02:00:00,622.1 +2019-11-14 03:00:00,613.79 +2019-11-14 04:00:00,614.33 +2019-11-14 05:00:00,610.96 +2019-11-14 06:00:00,608.04 +2019-11-14 07:00:00,608.32 +2019-11-14 08:00:00,601.29 +2019-11-14 09:00:00,590.87 +2019-11-14 10:00:00,587.69 +2019-11-14 11:00:00,590.89 +2019-11-14 12:00:00,588.91 +2019-11-14 13:00:00,595.92 +2019-11-14 14:00:00,601.52 +2019-11-14 15:00:00,588.36 +2019-11-14 16:00:00,582.79 +2019-11-14 17:00:00,582.03 +2019-11-14 18:00:00,589.31 +2019-11-14 19:00:00,592.55 +2019-11-14 20:00:00,593.71 +2019-11-14 21:00:00,596.4 +2019-11-14 22:00:00,592.91 +2019-11-14 23:00:00,590.92 +2019-11-15 00:00:00,587.02 +2019-11-15 01:00:00,585.73 +2019-11-15 02:00:00,586.92 +2019-11-15 03:00:00,594.81 +2019-11-15 04:00:00,603.19 +2019-11-15 05:00:00,609.67 +2019-11-15 06:00:00,623.3 +2019-11-15 07:00:00,623.73 +2019-11-15 08:00:00,624.39 +2019-11-15 09:00:00,626.45 +2019-11-15 10:00:00,621.26 +2019-11-15 11:00:00,620.4 +2019-11-15 12:00:00,624.94 +2019-11-15 13:00:00,631.61 +2019-11-15 14:00:00,642.55 +2019-11-15 15:00:00,641.71 +2019-11-15 16:00:00,631.32 +2019-11-15 17:00:00,641.19 +2019-11-15 18:00:00,651.05 +2019-11-15 19:00:00,662.94 +2019-11-15 20:00:00,665.17 +2019-11-15 21:00:00,663.25 +2019-11-15 22:00:00,658.66 +2019-11-15 23:00:00,657.35 +2019-11-16 00:00:00,655.51 +2019-11-16 01:00:00,657.66 +2019-11-16 02:00:00,664.93 +2019-11-16 03:00:00,673.22 +2019-11-16 04:00:00,671.37 +2019-11-16 05:00:00,667.92 +2019-11-16 06:00:00,667.32 +2019-11-16 07:00:00,652.54 +2019-11-16 08:00:00,650.9 +2019-11-16 09:00:00,646.21 +2019-11-16 10:00:00,647.6 +2019-11-16 11:00:00,651.72 +2019-11-16 12:00:00,661.16 +2019-11-16 13:00:00,674.41 +2019-11-16 14:00:00,673.04 +2019-11-16 15:00:00,678.16 +2019-11-16 16:00:00,666.85 +2019-11-16 17:00:00,673.87 +2019-11-16 18:00:00,684.49 +2019-11-16 19:00:00,686.53 +2019-11-16 20:00:00,686.26 +2019-11-16 21:00:00,685.35 +2019-11-16 22:00:00,677.91 +2019-11-16 23:00:00,662.52 +2019-11-17 00:00:00,646.5 +2019-11-17 01:00:00,632.19 +2019-11-17 02:00:00,617.71 +2019-11-17 03:00:00,611.53 +2019-11-17 04:00:00,603.32 +2019-11-17 05:00:00,596.28 +2019-11-17 06:00:00,579.76 +2019-11-17 07:00:00,568.57 +2019-11-17 08:00:00,557.54 +2019-11-17 09:00:00,542.44 +2019-11-17 10:00:00,535.59 +2019-11-17 11:00:00,536.09 +2019-11-17 12:00:00,531.68 +2019-11-17 13:00:00,528.62 +2019-11-17 14:00:00,528.08 +2019-11-17 15:00:00,523.84 +2019-11-17 16:00:00,519.52 +2019-11-17 17:00:00,511.16 +2019-11-17 18:00:00,505.6 +2019-11-17 19:00:00,496.66 +2019-11-17 20:00:00,485.4 +2019-11-17 21:00:00,470.03 +2019-11-17 22:00:00,450.23 +2019-11-17 23:00:00,427.15 +2019-11-18 00:00:00,410.83 +2019-11-18 01:00:00,411.69 +2019-11-18 02:00:00,432.07 +2019-11-18 03:00:00,443.8 +2019-11-18 04:00:00,454.43 +2019-11-18 05:00:00,468.79 +2019-11-18 06:00:00,471.24 +2019-11-18 07:00:00,469.27 +2019-11-18 08:00:00,463.7 +2019-11-18 09:00:00,449.16 +2019-11-18 10:00:00,432.24 +2019-11-18 11:00:00,411.09 +2019-11-18 12:00:00,407.07 +2019-11-18 13:00:00,407.22 +2019-11-18 14:00:00,412.85 +2019-11-18 15:00:00,411.71 +2019-11-18 16:00:00,403.87 +2019-11-18 17:00:00,393.04 +2019-11-18 18:00:00,386.19 +2019-11-18 19:00:00,366.69 +2019-11-18 20:00:00,351.98 +2019-11-18 21:00:00,348.72 +2019-11-18 22:00:00,340.47 +2019-11-18 23:00:00,325.98 +2019-11-19 00:00:00,312.02 +2019-11-19 01:00:00,321.58 +2019-11-19 02:00:00,329.69 +2019-11-19 03:00:00,348.63 +2019-11-19 04:00:00,368.14 +2019-11-19 05:00:00,396.65 +2019-11-19 06:00:00,421.37 +2019-11-19 07:00:00,419.36 +2019-11-19 08:00:00,413.03 +2019-11-19 09:00:00,402.64 +2019-11-19 10:00:00,396.89 +2019-11-19 11:00:00,394.37 +2019-11-19 12:00:00,398.45 +2019-11-19 13:00:00,414.44 +2019-11-19 14:00:00,436.82 +2019-11-19 15:00:00,441.67 +2019-11-19 16:00:00,437.14 +2019-11-19 17:00:00,434.94 +2019-11-19 18:00:00,438.92 +2019-11-19 19:00:00,436.39 +2019-11-19 20:00:00,436.8 +2019-11-19 21:00:00,445.36 +2019-11-19 22:00:00,441.43 +2019-11-19 23:00:00,434.81 +2019-11-20 00:00:00,441.54 +2019-11-20 01:00:00,447.18 +2019-11-20 02:00:00,444.09 +2019-11-20 03:00:00,449.27 +2019-11-20 04:00:00,461.5 +2019-11-20 05:00:00,464.42 +2019-11-20 06:00:00,465.6 +2019-11-20 07:00:00,465.87 +2019-11-20 08:00:00,461.22 +2019-11-20 09:00:00,446.88 +2019-11-20 10:00:00,433.6 +2019-11-20 11:00:00,429.85 +2019-11-20 12:00:00,430.58 +2019-11-20 13:00:00,437.5 +2019-11-20 14:00:00,449.87 +2019-11-20 15:00:00,461.85 +2019-11-20 16:00:00,462.47 +2019-11-20 17:00:00,459.37 +2019-11-20 18:00:00,452.08 +2019-11-20 19:00:00,438.36 +2019-11-20 20:00:00,429.34 +2019-11-20 21:00:00,423.29 +2019-11-20 22:00:00,412.96 +2019-11-20 23:00:00,417.17 +2019-11-21 00:00:00,422.06 +2019-11-21 01:00:00,430.73 +2019-11-21 02:00:00,449.26 +2019-11-21 03:00:00,459.71 +2019-11-21 04:00:00,461.3 +2019-11-21 05:00:00,471.03 +2019-11-21 06:00:00,485.48 +2019-11-21 07:00:00,517.47 +2019-11-21 08:00:00,527.68 +2019-11-21 09:00:00,523.73 +2019-11-21 10:00:00,518.57 +2019-11-21 11:00:00,522.68 +2019-11-21 12:00:00,536.51 +2019-11-21 13:00:00,550.98 +2019-11-21 14:00:00,571.36 +2019-11-21 15:00:00,573.83 +2019-11-21 16:00:00,566.78 +2019-11-21 17:00:00,555.11 +2019-11-21 18:00:00,552.54 +2019-11-21 19:00:00,557.27 +2019-11-21 20:00:00,545.39 +2019-11-21 21:00:00,550.29 +2019-11-21 22:00:00,555.66 +2019-11-21 23:00:00,557.76 +2019-11-22 00:00:00,545.02 +2019-11-22 01:00:00,552.13 +2019-11-22 02:00:00,553.93 +2019-11-22 03:00:00,563.51 +2019-11-22 04:00:00,575.11 +2019-11-22 05:00:00,571.45 +2019-11-22 06:00:00,567.77 +2019-11-22 07:00:00,569.97 +2019-11-22 08:00:00,565.5 +2019-11-22 09:00:00,547.39 +2019-11-22 10:00:00,527.3 +2019-11-22 11:00:00,521.04 +2019-11-22 12:00:00,526.53 +2019-11-22 13:00:00,551.44 +2019-11-22 14:00:00,566.81 +2019-11-22 15:00:00,574.63 +2019-11-22 16:00:00,571.54 +2019-11-22 17:00:00,562.64 +2019-11-22 18:00:00,546.97 +2019-11-22 19:00:00,533.47 +2019-11-22 20:00:00,521.38 +2019-11-22 21:00:00,509.42 +2019-11-22 22:00:00,497.29 +2019-11-22 23:00:00,486.05 +2019-11-23 00:00:00,484.66 +2019-11-23 01:00:00,475.85 +2019-11-23 02:00:00,488.0 +2019-11-23 03:00:00,500.34 +2019-11-23 04:00:00,506.64 +2019-11-23 05:00:00,529.9 +2019-11-23 06:00:00,552.76 +2019-11-23 07:00:00,556.24 +2019-11-23 08:00:00,550.31 +2019-11-23 09:00:00,541.47 +2019-11-23 10:00:00,526.81 +2019-11-23 11:00:00,525.93 +2019-11-23 12:00:00,537.86 +2019-11-23 13:00:00,558.08 +2019-11-23 14:00:00,580.65 +2019-11-23 15:00:00,588.1 +2019-11-23 16:00:00,592.15 +2019-11-23 17:00:00,594.14 +2019-11-23 18:00:00,596.61 +2019-11-23 19:00:00,600.29 +2019-11-23 20:00:00,605.72 +2019-11-23 21:00:00,602.84 +2019-11-23 22:00:00,598.19 +2019-11-23 23:00:00,601.85 +2019-11-24 00:00:00,607.54 +2019-11-24 01:00:00,608.58 +2019-11-24 02:00:00,611.68 +2019-11-24 03:00:00,624.89 +2019-11-24 04:00:00,633.22 +2019-11-24 05:00:00,635.35 +2019-11-24 06:00:00,635.11 +2019-11-24 07:00:00,621.99 +2019-11-24 08:00:00,604.75 +2019-11-24 09:00:00,589.71 +2019-11-24 10:00:00,578.91 +2019-11-24 11:00:00,575.26 +2019-11-24 12:00:00,589.35 +2019-11-24 13:00:00,609.96 +2019-11-24 14:00:00,628.15 +2019-11-24 15:00:00,636.08 +2019-11-24 16:00:00,629.53 +2019-11-24 17:00:00,626.58 +2019-11-24 18:00:00,626.11 +2019-11-24 19:00:00,626.46 +2019-11-24 20:00:00,625.1 +2019-11-24 21:00:00,629.41 +2019-11-24 22:00:00,635.82 +2019-11-24 23:00:00,629.88 +2019-11-25 00:00:00,633.52 +2019-11-25 01:00:00,639.44 +2019-11-25 02:00:00,640.12 +2019-11-25 03:00:00,639.99 +2019-11-25 04:00:00,636.1 +2019-11-25 05:00:00,629.16 +2019-11-25 06:00:00,616.22 +2019-11-25 07:00:00,598.8 +2019-11-25 08:00:00,583.39 +2019-11-25 09:00:00,576.63 +2019-11-25 10:00:00,571.66 +2019-11-25 11:00:00,563.35 +2019-11-25 12:00:00,559.69 +2019-11-25 13:00:00,559.51 +2019-11-25 14:00:00,564.21 +2019-11-25 15:00:00,560.17 +2019-11-25 16:00:00,554.48 +2019-11-25 17:00:00,548.79 +2019-11-25 18:00:00,551.56 +2019-11-25 19:00:00,553.25 +2019-11-25 20:00:00,560.87 +2019-11-25 21:00:00,562.97 +2019-11-25 22:00:00,565.96 +2019-11-25 23:00:00,571.17 +2019-11-26 00:00:00,584.79 +2019-11-26 01:00:00,594.16 +2019-11-26 02:00:00,599.32 +2019-11-26 03:00:00,600.63 +2019-11-26 04:00:00,606.81 +2019-11-26 05:00:00,611.49 +2019-11-26 06:00:00,593.19 +2019-11-26 07:00:00,582.98 +2019-11-26 08:00:00,571.69 +2019-11-26 09:00:00,556.91 +2019-11-26 10:00:00,542.89 +2019-11-26 11:00:00,535.13 +2019-11-26 12:00:00,528.71 +2019-11-26 13:00:00,527.93 +2019-11-26 14:00:00,528.79 +2019-11-26 15:00:00,521.86 +2019-11-26 16:00:00,510.08 +2019-11-26 17:00:00,498.92 +2019-11-26 18:00:00,491.02 +2019-11-26 19:00:00,484.24 +2019-11-26 20:00:00,487.01 +2019-11-26 21:00:00,497.56 +2019-11-26 22:00:00,503.51 +2019-11-26 23:00:00,504.27 +2019-11-27 00:00:00,515.25 +2019-11-27 01:00:00,521.57 +2019-11-27 02:00:00,528.36 +2019-11-27 03:00:00,534.95 +2019-11-27 04:00:00,541.51 +2019-11-27 05:00:00,550.53 +2019-11-27 06:00:00,565.48 +2019-11-27 07:00:00,577.32 +2019-11-27 08:00:00,581.45 +2019-11-27 09:00:00,584.2 +2019-11-27 10:00:00,587.06 +2019-11-27 11:00:00,589.82 +2019-11-27 12:00:00,601.94 +2019-11-27 13:00:00,617.52 +2019-11-27 14:00:00,633.35 +2019-11-27 15:00:00,635.75 +2019-11-27 16:00:00,623.39 +2019-11-27 17:00:00,618.88 +2019-11-27 18:00:00,624.32 +2019-11-27 19:00:00,633.4 +2019-11-27 20:00:00,628.2 +2019-11-27 21:00:00,636.03 +2019-11-27 22:00:00,640.96 +2019-11-27 23:00:00,639.05 +2019-11-28 00:00:00,644.53 +2019-11-28 01:00:00,643.74 +2019-11-28 02:00:00,642.7 +2019-11-28 03:00:00,646.79 +2019-11-28 04:00:00,649.79 +2019-11-28 05:00:00,645.9 +2019-11-28 06:00:00,653.02 +2019-11-28 07:00:00,640.97 +2019-11-28 08:00:00,637.09 +2019-11-28 09:00:00,625.09 +2019-11-28 10:00:00,609.15 +2019-11-28 11:00:00,604.82 +2019-11-28 12:00:00,610.82 +2019-11-28 13:00:00,626.81 +2019-11-28 14:00:00,639.44 +2019-11-28 15:00:00,637.87 +2019-11-28 16:00:00,623.42 +2019-11-28 17:00:00,616.57 +2019-11-28 18:00:00,612.13 +2019-11-28 19:00:00,622.68 +2019-11-28 20:00:00,623.86 +2019-11-28 21:00:00,627.78 +2019-11-28 22:00:00,628.29 +2019-11-28 23:00:00,629.64 +2019-11-29 00:00:00,626.58 +2019-11-29 01:00:00,633.72 +2019-11-29 02:00:00,628.5 +2019-11-29 03:00:00,630.23 +2019-11-29 04:00:00,637.73 +2019-11-29 05:00:00,628.18 +2019-11-29 06:00:00,630.81 +2019-11-29 07:00:00,622.0 +2019-11-29 08:00:00,605.75 +2019-11-29 09:00:00,598.76 +2019-11-29 10:00:00,594.65 +2019-11-29 11:00:00,593.89 +2019-11-29 12:00:00,604.44 +2019-11-29 13:00:00,617.89 +2019-11-29 14:00:00,626.72 +2019-11-29 15:00:00,629.38 +2019-11-29 16:00:00,629.57 +2019-11-29 17:00:00,627.42 +2019-11-29 18:00:00,621.46 +2019-11-29 19:00:00,604.63 +2019-11-29 20:00:00,562.61 +2019-11-29 21:00:00,528.15 +2019-11-29 22:00:00,484.56 +2019-11-29 23:00:00,432.83 +2019-11-30 00:00:00,386.86 +2019-11-30 01:00:00,342.08 +2019-11-30 02:00:00,309.52 +2019-11-30 03:00:00,287.25 +2019-11-30 04:00:00,283.1 +2019-11-30 05:00:00,276.87 +2019-11-30 06:00:00,296.96 +2019-11-30 07:00:00,311.15 +2019-11-30 08:00:00,328.79 +2019-11-30 09:00:00,327.94 +2019-11-30 10:00:00,327.23 +2019-11-30 11:00:00,326.37 +2019-11-30 12:00:00,323.89 +2019-11-30 13:00:00,335.71 +2019-11-30 14:00:00,348.84 +2019-11-30 15:00:00,361.97 +2019-11-30 16:00:00,386.12 +2019-11-30 17:00:00,408.77 +2019-11-30 18:00:00,440.6 +2019-11-30 19:00:00,469.24 +2019-11-30 20:00:00,477.4 +2019-11-30 21:00:00,486.54 +2019-11-30 22:00:00,484.27 +2019-11-30 23:00:00,453.53 +2019-12-01 00:00:00,407.76 +2019-12-01 01:00:00,378.35 +2019-12-01 02:00:00,349.45 +2019-12-01 03:00:00,329.13 +2019-12-01 04:00:00,323.25 +2019-12-01 05:00:00,316.04 +2019-12-01 06:00:00,305.5 +2019-12-01 07:00:00,288.66 +2019-12-01 08:00:00,277.12 +2019-12-01 09:00:00,271.18 +2019-12-01 10:00:00,267.6 +2019-12-01 11:00:00,267.68 +2019-12-01 12:00:00,276.68 +2019-12-01 13:00:00,290.76 +2019-12-01 14:00:00,296.18 +2019-12-01 15:00:00,298.2 +2019-12-01 16:00:00,304.41 +2019-12-01 17:00:00,300.06 +2019-12-01 18:00:00,295.01 +2019-12-01 19:00:00,287.65 +2019-12-01 20:00:00,287.6 +2019-12-01 21:00:00,291.11 +2019-12-01 22:00:00,284.71 +2019-12-01 23:00:00,279.21 +2019-12-02 00:00:00,278.52 +2019-12-02 01:00:00,293.09 +2019-12-02 02:00:00,332.91 +2019-12-02 03:00:00,375.28 +2019-12-02 04:00:00,423.67 +2019-12-02 05:00:00,460.15 +2019-12-02 06:00:00,486.34 +2019-12-02 07:00:00,503.64 +2019-12-02 08:00:00,511.28 +2019-12-02 09:00:00,502.93 +2019-12-02 10:00:00,499.74 +2019-12-02 11:00:00,509.02 +2019-12-02 12:00:00,529.05 +2019-12-02 13:00:00,550.88 +2019-12-02 14:00:00,578.07 +2019-12-02 15:00:00,581.52 +2019-12-02 16:00:00,580.88 +2019-12-02 17:00:00,579.27 +2019-12-02 18:00:00,570.11 +2019-12-02 19:00:00,557.25 +2019-12-02 20:00:00,551.78 +2019-12-02 21:00:00,531.72 +2019-12-02 22:00:00,502.69 +2019-12-02 23:00:00,484.01 +2019-12-03 00:00:00,465.43 +2019-12-03 01:00:00,444.25 +2019-12-03 02:00:00,424.89 +2019-12-03 03:00:00,425.69 +2019-12-03 04:00:00,419.92 +2019-12-03 05:00:00,427.45 +2019-12-03 06:00:00,427.95 +2019-12-03 07:00:00,411.66 +2019-12-03 08:00:00,395.06 +2019-12-03 09:00:00,371.22 +2019-12-03 10:00:00,354.23 +2019-12-03 11:00:00,343.94 +2019-12-03 12:00:00,339.85 +2019-12-03 13:00:00,345.84 +2019-12-03 14:00:00,351.88 +2019-12-03 15:00:00,353.91 +2019-12-03 16:00:00,350.66 +2019-12-03 17:00:00,338.24 +2019-12-03 18:00:00,332.75 +2019-12-03 19:00:00,333.03 +2019-12-03 20:00:00,348.29 +2019-12-03 21:00:00,372.24 +2019-12-03 22:00:00,400.47 +2019-12-03 23:00:00,429.75 +2019-12-04 00:00:00,454.23 +2019-12-04 01:00:00,488.18 +2019-12-04 02:00:00,518.57 +2019-12-04 03:00:00,537.4 +2019-12-04 04:00:00,555.96 +2019-12-04 05:00:00,578.54 +2019-12-04 06:00:00,588.61 +2019-12-04 07:00:00,584.22 +2019-12-04 08:00:00,582.21 +2019-12-04 09:00:00,571.62 +2019-12-04 10:00:00,557.08 +2019-12-04 11:00:00,549.45 +2019-12-04 12:00:00,550.25 +2019-12-04 13:00:00,550.24 +2019-12-04 14:00:00,541.86 +2019-12-04 15:00:00,529.7 +2019-12-04 16:00:00,523.86 +2019-12-04 17:00:00,517.43 +2019-12-04 18:00:00,504.82 +2019-12-04 19:00:00,492.84 +2019-12-04 20:00:00,490.51 +2019-12-04 21:00:00,493.26 +2019-12-04 22:00:00,489.87 +2019-12-04 23:00:00,469.16 +2019-12-05 00:00:00,450.11 +2019-12-05 01:00:00,438.97 +2019-12-05 02:00:00,450.51 +2019-12-05 03:00:00,460.28 +2019-12-05 04:00:00,477.43 +2019-12-05 05:00:00,495.2 +2019-12-05 06:00:00,511.16 +2019-12-05 07:00:00,518.49 +2019-12-05 08:00:00,515.46 +2019-12-05 09:00:00,511.27 +2019-12-05 10:00:00,511.35 +2019-12-05 11:00:00,522.46 +2019-12-05 12:00:00,540.57 +2019-12-05 13:00:00,557.88 +2019-12-05 14:00:00,572.84 +2019-12-05 15:00:00,572.27 +2019-12-05 16:00:00,562.17 +2019-12-05 17:00:00,555.99 +2019-12-05 18:00:00,556.01 +2019-12-05 19:00:00,567.34 +2019-12-05 20:00:00,576.09 +2019-12-05 21:00:00,580.41 +2019-12-05 22:00:00,578.75 +2019-12-05 23:00:00,580.85 +2019-12-06 00:00:00,596.71 +2019-12-06 01:00:00,600.66 +2019-12-06 02:00:00,604.77 +2019-12-06 03:00:00,610.82 +2019-12-06 04:00:00,613.99 +2019-12-06 05:00:00,628.22 +2019-12-06 06:00:00,636.12 +2019-12-06 07:00:00,623.49 +2019-12-06 08:00:00,616.84 +2019-12-06 09:00:00,601.24 +2019-12-06 10:00:00,592.15 +2019-12-06 11:00:00,588.0 +2019-12-06 12:00:00,586.33 +2019-12-06 13:00:00,585.27 +2019-12-06 14:00:00,581.76 +2019-12-06 15:00:00,573.23 +2019-12-06 16:00:00,564.24 +2019-12-06 17:00:00,550.05 +2019-12-06 18:00:00,535.16 +2019-12-06 19:00:00,521.34 +2019-12-06 20:00:00,517.93 +2019-12-06 21:00:00,515.87 +2019-12-06 22:00:00,502.35 +2019-12-06 23:00:00,469.76 +2019-12-07 00:00:00,457.7 +2019-12-07 01:00:00,449.69 +2019-12-07 02:00:00,466.47 +2019-12-07 03:00:00,499.34 +2019-12-07 04:00:00,529.31 +2019-12-07 05:00:00,551.6 +2019-12-07 06:00:00,556.85 +2019-12-07 07:00:00,560.31 +2019-12-07 08:00:00,564.05 +2019-12-07 09:00:00,561.58 +2019-12-07 10:00:00,555.55 +2019-12-07 11:00:00,549.38 +2019-12-07 12:00:00,554.91 +2019-12-07 13:00:00,566.72 +2019-12-07 14:00:00,570.33 +2019-12-07 15:00:00,561.9 +2019-12-07 16:00:00,541.14 +2019-12-07 17:00:00,513.72 +2019-12-07 18:00:00,480.1 +2019-12-07 19:00:00,455.9 +2019-12-07 20:00:00,423.03 +2019-12-07 21:00:00,391.72 +2019-12-07 22:00:00,360.28 +2019-12-07 23:00:00,323.59 +2019-12-08 00:00:00,316.27 +2019-12-08 01:00:00,314.63 +2019-12-08 02:00:00,317.21 +2019-12-08 03:00:00,323.38 +2019-12-08 04:00:00,341.77 +2019-12-08 05:00:00,398.51 +2019-12-08 06:00:00,439.78 +2019-12-08 07:00:00,462.73 +2019-12-08 08:00:00,471.63 +2019-12-08 09:00:00,482.03 +2019-12-08 10:00:00,492.24 +2019-12-08 11:00:00,506.18 +2019-12-08 12:00:00,522.01 +2019-12-08 13:00:00,536.12 +2019-12-08 14:00:00,553.03 +2019-12-08 15:00:00,560.39 +2019-12-08 16:00:00,561.17 +2019-12-08 17:00:00,563.99 +2019-12-08 18:00:00,567.91 +2019-12-08 19:00:00,576.5 +2019-12-08 20:00:00,592.67 +2019-12-08 21:00:00,599.14 +2019-12-08 22:00:00,607.33 +2019-12-08 23:00:00,613.61 +2019-12-09 00:00:00,614.92 +2019-12-09 01:00:00,621.82 +2019-12-09 02:00:00,628.66 +2019-12-09 03:00:00,628.83 +2019-12-09 04:00:00,623.43 +2019-12-09 05:00:00,617.28 +2019-12-09 06:00:00,628.91 +2019-12-09 07:00:00,636.01 +2019-12-09 08:00:00,634.49 +2019-12-09 09:00:00,629.65 +2019-12-09 10:00:00,624.15 +2019-12-09 11:00:00,625.52 +2019-12-09 12:00:00,625.95 +2019-12-09 13:00:00,636.3 +2019-12-09 14:00:00,642.34 +2019-12-09 15:00:00,636.81 +2019-12-09 16:00:00,634.62 +2019-12-09 17:00:00,630.79 +2019-12-09 18:00:00,616.63 +2019-12-09 19:00:00,605.98 +2019-12-09 20:00:00,600.17 +2019-12-09 21:00:00,594.61 +2019-12-09 22:00:00,593.35 +2019-12-09 23:00:00,584.36 +2019-12-10 00:00:00,579.0 +2019-12-10 01:00:00,577.43 +2019-12-10 02:00:00,564.61 +2019-12-10 03:00:00,570.23 +2019-12-10 04:00:00,578.68 +2019-12-10 05:00:00,584.75 +2019-12-10 06:00:00,589.34 +2019-12-10 07:00:00,584.78 +2019-12-10 08:00:00,585.1 +2019-12-10 09:00:00,587.2 +2019-12-10 10:00:00,592.71 +2019-12-10 11:00:00,600.78 +2019-12-10 12:00:00,611.09 +2019-12-10 13:00:00,630.54 +2019-12-10 14:00:00,639.66 +2019-12-10 15:00:00,638.4 +2019-12-10 16:00:00,639.84 +2019-12-10 17:00:00,646.89 +2019-12-10 18:00:00,649.18 +2019-12-10 19:00:00,650.14 +2019-12-10 20:00:00,651.45 +2019-12-10 21:00:00,659.65 +2019-12-10 22:00:00,661.66 +2019-12-10 23:00:00,657.07 +2019-12-11 00:00:00,655.8 +2019-12-11 01:00:00,646.59 +2019-12-11 02:00:00,643.91 +2019-12-11 03:00:00,644.16 +2019-12-11 04:00:00,643.9 +2019-12-11 05:00:00,644.07 +2019-12-11 06:00:00,639.23 +2019-12-11 07:00:00,624.65 +2019-12-11 08:00:00,606.83 +2019-12-11 09:00:00,585.79 +2019-12-11 10:00:00,572.95 +2019-12-11 11:00:00,564.73 +2019-12-11 12:00:00,565.68 +2019-12-11 13:00:00,572.77 +2019-12-11 14:00:00,588.19 +2019-12-11 15:00:00,591.42 +2019-12-11 16:00:00,582.8 +2019-12-11 17:00:00,574.79 +2019-12-11 18:00:00,578.17 +2019-12-11 19:00:00,568.57 +2019-12-11 20:00:00,553.93 +2019-12-11 21:00:00,532.68 +2019-12-11 22:00:00,510.9 +2019-12-11 23:00:00,483.75 +2019-12-12 00:00:00,459.58 +2019-12-12 01:00:00,450.77 +2019-12-12 02:00:00,444.45 +2019-12-12 03:00:00,429.81 +2019-12-12 04:00:00,424.51 +2019-12-12 05:00:00,407.47 +2019-12-12 06:00:00,392.45 +2019-12-12 07:00:00,390.13 +2019-12-12 08:00:00,400.18 +2019-12-12 09:00:00,409.77 +2019-12-12 10:00:00,413.68 +2019-12-12 11:00:00,431.03 +2019-12-12 12:00:00,457.45 +2019-12-12 13:00:00,483.53 +2019-12-12 14:00:00,507.47 +2019-12-12 15:00:00,514.79 +2019-12-12 16:00:00,518.71 +2019-12-12 17:00:00,520.0 +2019-12-12 18:00:00,529.27 +2019-12-12 19:00:00,536.89 +2019-12-12 20:00:00,546.28 +2019-12-12 21:00:00,551.82 +2019-12-12 22:00:00,548.81 +2019-12-12 23:00:00,540.58 +2019-12-13 00:00:00,537.44 +2019-12-13 01:00:00,536.48 +2019-12-13 02:00:00,539.33 +2019-12-13 03:00:00,548.6 +2019-12-13 04:00:00,558.65 +2019-12-13 05:00:00,567.99 +2019-12-13 06:00:00,581.57 +2019-12-13 07:00:00,580.88 +2019-12-13 08:00:00,569.27 +2019-12-13 09:00:00,560.24 +2019-12-13 10:00:00,548.35 +2019-12-13 11:00:00,549.12 +2019-12-13 12:00:00,560.61 +2019-12-13 13:00:00,573.41 +2019-12-13 14:00:00,585.39 +2019-12-13 15:00:00,587.66 +2019-12-13 16:00:00,582.25 +2019-12-13 17:00:00,580.84 +2019-12-13 18:00:00,576.92 +2019-12-13 19:00:00,572.57 +2019-12-13 20:00:00,574.97 +2019-12-13 21:00:00,574.73 +2019-12-13 22:00:00,562.94 +2019-12-13 23:00:00,548.8 +2019-12-14 00:00:00,539.12 +2019-12-14 01:00:00,545.58 +2019-12-14 02:00:00,551.9 +2019-12-14 03:00:00,557.89 +2019-12-14 04:00:00,562.15 +2019-12-14 05:00:00,572.01 +2019-12-14 06:00:00,574.16 +2019-12-14 07:00:00,575.9 +2019-12-14 08:00:00,577.2 +2019-12-14 09:00:00,585.63 +2019-12-14 10:00:00,593.51 +2019-12-14 11:00:00,608.82 +2019-12-14 12:00:00,619.71 +2019-12-14 13:00:00,627.42 +2019-12-14 14:00:00,628.44 +2019-12-14 15:00:00,620.76 +2019-12-14 16:00:00,616.65 +2019-12-14 17:00:00,610.06 +2019-12-14 18:00:00,605.03 +2019-12-14 19:00:00,608.77 +2019-12-14 20:00:00,594.71 +2019-12-14 21:00:00,576.55 +2019-12-14 22:00:00,555.02 +2019-12-14 23:00:00,531.12 +2019-12-15 00:00:00,523.46 +2019-12-15 01:00:00,514.1 +2019-12-15 02:00:00,513.16 +2019-12-15 03:00:00,516.07 +2019-12-15 04:00:00,517.54 +2019-12-15 05:00:00,523.27 +2019-12-15 06:00:00,522.07 +2019-12-15 07:00:00,520.93 +2019-12-15 08:00:00,515.06 +2019-12-15 09:00:00,507.59 +2019-12-15 10:00:00,501.0 +2019-12-15 11:00:00,500.1 +2019-12-15 12:00:00,508.66 +2019-12-15 13:00:00,518.62 +2019-12-15 14:00:00,531.36 +2019-12-15 15:00:00,535.74 +2019-12-15 16:00:00,538.02 +2019-12-15 17:00:00,539.02 +2019-12-15 18:00:00,538.74 +2019-12-15 19:00:00,535.83 +2019-12-15 20:00:00,526.63 +2019-12-15 21:00:00,524.7 +2019-12-15 22:00:00,523.45 +2019-12-15 23:00:00,516.27 +2019-12-16 00:00:00,519.12 +2019-12-16 01:00:00,529.81 +2019-12-16 02:00:00,541.56 +2019-12-16 03:00:00,555.12 +2019-12-16 04:00:00,565.54 +2019-12-16 05:00:00,575.75 +2019-12-16 06:00:00,579.2 +2019-12-16 07:00:00,590.71 +2019-12-16 08:00:00,592.14 +2019-12-16 09:00:00,592.72 +2019-12-16 10:00:00,590.41 +2019-12-16 11:00:00,588.87 +2019-12-16 12:00:00,589.02 +2019-12-16 13:00:00,595.48 +2019-12-16 14:00:00,606.87 +2019-12-16 15:00:00,612.21 +2019-12-16 16:00:00,610.39 +2019-12-16 17:00:00,611.73 +2019-12-16 18:00:00,612.68 +2019-12-16 19:00:00,601.65 +2019-12-16 20:00:00,596.92 +2019-12-16 21:00:00,597.46 +2019-12-16 22:00:00,596.36 +2019-12-16 23:00:00,582.36 +2019-12-17 00:00:00,585.6 +2019-12-17 01:00:00,584.7 +2019-12-17 02:00:00,591.37 +2019-12-17 03:00:00,598.82 +2019-12-17 04:00:00,610.75 +2019-12-17 05:00:00,612.68 +2019-12-17 06:00:00,614.84 +2019-12-17 07:00:00,612.55 +2019-12-17 08:00:00,606.22 +2019-12-17 09:00:00,598.67 +2019-12-17 10:00:00,597.27 +2019-12-17 11:00:00,602.78 +2019-12-17 12:00:00,609.66 +2019-12-17 13:00:00,616.17 +2019-12-17 14:00:00,626.73 +2019-12-17 15:00:00,627.34 +2019-12-17 16:00:00,625.7 +2019-12-17 17:00:00,626.1 +2019-12-17 18:00:00,620.93 +2019-12-17 19:00:00,613.65 +2019-12-17 20:00:00,608.34 +2019-12-17 21:00:00,611.78 +2019-12-17 22:00:00,613.89 +2019-12-17 23:00:00,601.18 +2019-12-18 00:00:00,604.63 +2019-12-18 01:00:00,601.23 +2019-12-18 02:00:00,596.88 +2019-12-18 03:00:00,592.74 +2019-12-18 04:00:00,589.52 +2019-12-18 05:00:00,594.04 +2019-12-18 06:00:00,585.73 +2019-12-18 07:00:00,578.0 +2019-12-18 08:00:00,559.31 +2019-12-18 09:00:00,535.64 +2019-12-18 10:00:00,518.69 +2019-12-18 11:00:00,512.32 +2019-12-18 12:00:00,510.5 +2019-12-18 13:00:00,514.03 +2019-12-18 14:00:00,516.65 +2019-12-18 15:00:00,510.08 +2019-12-18 16:00:00,501.32 +2019-12-18 17:00:00,489.76 +2019-12-18 18:00:00,476.9 +2019-12-18 19:00:00,458.48 +2019-12-18 20:00:00,431.49 +2019-12-18 21:00:00,412.58 +2019-12-18 22:00:00,367.51 +2019-12-18 23:00:00,363.72 +2019-12-19 00:00:00,339.79 +2019-12-19 01:00:00,321.58 +2019-12-19 02:00:00,311.06 +2019-12-19 03:00:00,320.24 +2019-12-19 04:00:00,325.97 +2019-12-19 05:00:00,333.13 +2019-12-19 06:00:00,358.97 +2019-12-19 07:00:00,376.76 +2019-12-19 08:00:00,382.15 +2019-12-19 09:00:00,373.41 +2019-12-19 10:00:00,365.8 +2019-12-19 11:00:00,361.61 +2019-12-19 12:00:00,366.43 +2019-12-19 13:00:00,385.19 +2019-12-19 14:00:00,399.77 +2019-12-19 15:00:00,416.9 +2019-12-19 16:00:00,432.16 +2019-12-19 17:00:00,451.65 +2019-12-19 18:00:00,470.43 +2019-12-19 19:00:00,487.31 +2019-12-19 20:00:00,500.08 +2019-12-19 21:00:00,505.71 +2019-12-19 22:00:00,514.16 +2019-12-19 23:00:00,525.91 +2019-12-20 00:00:00,532.35 +2019-12-20 01:00:00,543.04 +2019-12-20 02:00:00,556.25 +2019-12-20 03:00:00,571.01 +2019-12-20 04:00:00,574.29 +2019-12-20 05:00:00,578.37 +2019-12-20 06:00:00,594.02 +2019-12-20 07:00:00,606.88 +2019-12-20 08:00:00,597.32 +2019-12-20 09:00:00,584.64 +2019-12-20 10:00:00,574.27 +2019-12-20 11:00:00,568.87 +2019-12-20 12:00:00,586.99 +2019-12-20 13:00:00,624.94 +2019-12-20 14:00:00,675.25 +2019-12-20 15:00:00,685.45 +2019-12-20 16:00:00,678.36 +2019-12-20 17:00:00,672.53 +2019-12-20 18:00:00,669.5 +2019-12-20 19:00:00,684.09 +2019-12-20 20:00:00,683.6 +2019-12-20 21:00:00,682.89 +2019-12-20 22:00:00,678.93 +2019-12-20 23:00:00,677.63 +2019-12-21 00:00:00,679.7 +2019-12-21 01:00:00,678.8 +2019-12-21 02:00:00,679.86 +2019-12-21 03:00:00,681.36 +2019-12-21 04:00:00,685.54 +2019-12-21 05:00:00,688.16 +2019-12-21 06:00:00,698.38 +2019-12-21 07:00:00,686.15 +2019-12-21 08:00:00,666.12 +2019-12-21 09:00:00,639.89 +2019-12-21 10:00:00,621.19 +2019-12-21 11:00:00,610.44 +2019-12-21 12:00:00,622.46 +2019-12-21 13:00:00,650.23 +2019-12-21 14:00:00,685.4 +2019-12-21 15:00:00,702.78 +2019-12-21 16:00:00,684.13 +2019-12-21 17:00:00,680.25 +2019-12-21 18:00:00,680.23 +2019-12-21 19:00:00,689.26 +2019-12-21 20:00:00,680.33 +2019-12-21 21:00:00,668.17 +2019-12-21 22:00:00,666.44 +2019-12-21 23:00:00,653.3 +2019-12-22 00:00:00,650.18 +2019-12-22 01:00:00,648.92 +2019-12-22 02:00:00,645.61 +2019-12-22 03:00:00,642.5 +2019-12-22 04:00:00,643.92 +2019-12-22 05:00:00,643.73 +2019-12-22 06:00:00,649.71 +2019-12-22 07:00:00,636.07 +2019-12-22 08:00:00,606.25 +2019-12-22 09:00:00,579.19 +2019-12-22 10:00:00,564.28 +2019-12-22 11:00:00,565.83 +2019-12-22 12:00:00,588.43 +2019-12-22 13:00:00,627.09 +2019-12-22 14:00:00,657.7 +2019-12-22 15:00:00,653.63 +2019-12-22 16:00:00,642.36 +2019-12-22 17:00:00,634.8 +2019-12-22 18:00:00,629.4 +2019-12-22 19:00:00,618.62 +2019-12-22 20:00:00,612.74 +2019-12-22 21:00:00,607.74 +2019-12-22 22:00:00,607.1 +2019-12-22 23:00:00,605.93 +2019-12-23 00:00:00,612.34 +2019-12-23 01:00:00,612.37 +2019-12-23 02:00:00,609.41 +2019-12-23 03:00:00,595.41 +2019-12-23 04:00:00,593.56 +2019-12-23 05:00:00,588.08 +2019-12-23 06:00:00,579.89 +2019-12-23 07:00:00,569.25 +2019-12-23 08:00:00,557.0 +2019-12-23 09:00:00,546.46 +2019-12-23 10:00:00,538.52 +2019-12-23 11:00:00,526.74 +2019-12-23 12:00:00,526.28 +2019-12-23 13:00:00,531.0 +2019-12-23 14:00:00,533.9 +2019-12-23 15:00:00,528.06 +2019-12-23 16:00:00,517.77 +2019-12-23 17:00:00,501.66 +2019-12-23 18:00:00,487.87 +2019-12-23 19:00:00,465.2 +2019-12-23 20:00:00,442.0 +2019-12-23 21:00:00,431.5 +2019-12-23 22:00:00,404.46 +2019-12-23 23:00:00,386.5 +2019-12-24 00:00:00,385.62 +2019-12-24 01:00:00,392.07 +2019-12-24 02:00:00,398.85 +2019-12-24 03:00:00,407.91 +2019-12-24 04:00:00,414.33 +2019-12-24 05:00:00,415.99 +2019-12-24 06:00:00,433.22 +2019-12-24 07:00:00,447.92 +2019-12-24 08:00:00,449.01 +2019-12-24 09:00:00,446.35 +2019-12-24 10:00:00,431.92 +2019-12-24 11:00:00,428.54 +2019-12-24 12:00:00,432.39 +2019-12-24 13:00:00,435.23 +2019-12-24 14:00:00,437.38 +2019-12-24 15:00:00,442.84 +2019-12-24 16:00:00,456.28 +2019-12-24 17:00:00,474.69 +2019-12-24 18:00:00,485.37 +2019-12-24 19:00:00,499.02 +2019-12-24 20:00:00,516.57 +2019-12-24 21:00:00,538.53 +2019-12-24 22:00:00,552.3 +2019-12-24 23:00:00,560.17 +2019-12-25 00:00:00,569.0 +2019-12-25 01:00:00,560.54 +2019-12-25 02:00:00,559.35 +2019-12-25 03:00:00,552.96 +2019-12-25 04:00:00,552.77 +2019-12-25 05:00:00,568.45 +2019-12-25 06:00:00,562.41 +2019-12-25 07:00:00,546.11 +2019-12-25 08:00:00,528.73 +2019-12-25 09:00:00,520.09 +2019-12-25 10:00:00,523.12 +2019-12-25 11:00:00,522.99 +2019-12-25 12:00:00,537.44 +2019-12-25 13:00:00,556.42 +2019-12-25 14:00:00,582.22 +2019-12-25 15:00:00,579.16 +2019-12-25 16:00:00,571.9 +2019-12-25 17:00:00,569.79 +2019-12-25 18:00:00,566.99 +2019-12-25 19:00:00,564.96 +2019-12-25 20:00:00,558.64 +2019-12-25 21:00:00,559.22 +2019-12-25 22:00:00,565.35 +2019-12-25 23:00:00,567.36 +2019-12-26 00:00:00,566.51 +2019-12-26 01:00:00,569.16 +2019-12-26 02:00:00,566.78 +2019-12-26 03:00:00,565.17 +2019-12-26 04:00:00,554.37 +2019-12-26 05:00:00,543.71 +2019-12-26 06:00:00,541.94 +2019-12-26 07:00:00,536.88 +2019-12-26 08:00:00,520.3 +2019-12-26 09:00:00,504.13 +2019-12-26 10:00:00,497.9 +2019-12-26 11:00:00,494.6 +2019-12-26 12:00:00,503.33 +2019-12-26 13:00:00,515.77 +2019-12-26 14:00:00,521.66 +2019-12-26 15:00:00,501.01 +2019-12-26 16:00:00,481.38 +2019-12-26 17:00:00,470.95 +2019-12-26 18:00:00,466.23 +2019-12-26 19:00:00,463.03 +2019-12-26 20:00:00,466.03 +2019-12-26 21:00:00,471.38 +2019-12-26 22:00:00,467.42 +2019-12-26 23:00:00,455.61 +2019-12-27 00:00:00,451.28 +2019-12-27 01:00:00,450.98 +2019-12-27 02:00:00,449.57 +2019-12-27 03:00:00,453.16 +2019-12-27 04:00:00,482.71 +2019-12-27 05:00:00,494.5 +2019-12-27 06:00:00,505.46 +2019-12-27 07:00:00,502.68 +2019-12-27 08:00:00,496.9 +2019-12-27 09:00:00,491.23 +2019-12-27 10:00:00,490.33 +2019-12-27 11:00:00,496.93 +2019-12-27 12:00:00,506.75 +2019-12-27 13:00:00,510.12 +2019-12-27 14:00:00,507.96 +2019-12-27 15:00:00,496.15 +2019-12-27 16:00:00,496.25 +2019-12-27 17:00:00,495.37 +2019-12-27 18:00:00,489.58 +2019-12-27 19:00:00,467.29 +2019-12-27 20:00:00,433.27 +2019-12-27 21:00:00,418.56 +2019-12-27 22:00:00,382.87 +2019-12-27 23:00:00,343.67 +2019-12-28 00:00:00,319.12 +2019-12-28 01:00:00,317.83 +2019-12-28 02:00:00,316.73 +2019-12-28 03:00:00,321.34 +2019-12-28 04:00:00,325.96 +2019-12-28 05:00:00,376.06 +2019-12-28 06:00:00,442.6 +2019-12-28 07:00:00,456.02 +2019-12-28 08:00:00,444.35 +2019-12-28 09:00:00,428.57 +2019-12-28 10:00:00,421.83 +2019-12-28 11:00:00,417.16 +2019-12-28 12:00:00,416.97 +2019-12-28 13:00:00,415.16 +2019-12-28 14:00:00,412.08 +2019-12-28 15:00:00,417.04 +2019-12-28 16:00:00,435.33 +2019-12-28 17:00:00,455.29 +2019-12-28 18:00:00,469.28 +2019-12-28 19:00:00,475.15 +2019-12-28 20:00:00,483.87 +2019-12-28 21:00:00,493.59 +2019-12-28 22:00:00,500.02 +2019-12-28 23:00:00,503.25 +2019-12-29 00:00:00,499.08 +2019-12-29 01:00:00,489.75 +2019-12-29 02:00:00,481.08 +2019-12-29 03:00:00,489.22 +2019-12-29 04:00:00,517.23 +2019-12-29 05:00:00,535.81 +2019-12-29 06:00:00,556.87 +2019-12-29 07:00:00,559.52 +2019-12-29 08:00:00,553.64 +2019-12-29 09:00:00,554.67 +2019-12-29 10:00:00,552.03 +2019-12-29 11:00:00,544.91 +2019-12-29 12:00:00,545.17 +2019-12-29 13:00:00,548.37 +2019-12-29 14:00:00,544.14 +2019-12-29 15:00:00,530.0 +2019-12-29 16:00:00,517.79 +2019-12-29 17:00:00,508.6 +2019-12-29 18:00:00,494.52 +2019-12-29 19:00:00,470.62 +2019-12-29 20:00:00,438.49 +2019-12-29 21:00:00,413.54 +2019-12-29 22:00:00,357.37 +2019-12-29 23:00:00,279.54 +2019-12-30 00:00:00,249.63 +2019-12-30 01:00:00,240.33 +2019-12-30 02:00:00,245.37 +2019-12-30 03:00:00,245.53 +2019-12-30 04:00:00,242.81 +2019-12-30 05:00:00,243.11 +2019-12-30 06:00:00,280.84 +2019-12-30 07:00:00,282.55 +2019-12-30 08:00:00,275.03 +2019-12-30 09:00:00,264.72 +2019-12-30 10:00:00,258.61 +2019-12-30 11:00:00,244.09 +2019-12-30 12:00:00,229.55 +2019-12-30 13:00:00,226.36 +2019-12-30 14:00:00,229.61 +2019-12-30 15:00:00,237.28 +2019-12-30 16:00:00,250.3 +2019-12-30 17:00:00,256.94 +2019-12-30 18:00:00,245.48 +2019-12-30 19:00:00,226.33 +2019-12-30 20:00:00,210.09 +2019-12-30 21:00:00,212.75 +2019-12-30 22:00:00,211.91 +2019-12-30 23:00:00,197.2 +2019-12-31 00:00:00,198.16 +2019-12-31 01:00:00,195.6 +2019-12-31 02:00:00,196.97 +2019-12-31 03:00:00,193.66 +2019-12-31 04:00:00,193.22 +2019-12-31 05:00:00,194.01 +2019-12-31 06:00:00,198.45 +2019-12-31 07:00:00,200.12 +2019-12-31 08:00:00,193.5 +2019-12-31 09:00:00,183.98 +2019-12-31 10:00:00,178.58 +2019-12-31 11:00:00,179.83 +2019-12-31 12:00:00,181.96 +2019-12-31 13:00:00,177.2 +2019-12-31 14:00:00,184.65 +2019-12-31 15:00:00,192.27 +2019-12-31 16:00:00,200.01 +2019-12-31 17:00:00,196.11 +2019-12-31 18:00:00,186.99 +2019-12-31 19:00:00,185.96 +2019-12-31 20:00:00,194.84 +2019-12-31 21:00:00,206.25 +2019-12-31 22:00:00,207.79 +2019-12-31 23:00:00,212.48 diff --git a/input_files/models/district_models/example_CA/components.csv b/input_files/models/district_models/example_CA/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..28ea34b9061bdec4e1f06d4668a57954403666fd --- /dev/null +++ b/input_files/models/district_models/example_CA/components.csv @@ -0,0 +1,5 @@ +name,type,model,min_size,max_size,current_size +inv_pv_bat,DynamicInverter,STP-7000TL-20,0,20,0 +battery,LiionBattery,BAT1,0,6,6 +grd,ElectricalGrid,GRD1,1000,1000,1000 +elec_cns,ElectricalConsumption,,,, diff --git a/input_files/models/district_models/example_CA/config.csv b/input_files/models/district_models/example_CA/config.csv index 8d15c623466861f434533b792b808cc2d943dd11..afcf4142ab022e22c5621e2e16650419e717bbaf 100644 --- a/input_files/models/district_models/example_CA/config.csv +++ b/input_files/models/district_models/example_CA/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20 +grd_injection_price,grd_price,grd_emission,yearly_interest,planning_horizon +0.0793,0.3046,0.401,0.03,20 diff --git a/input_files/models/district_models/example_CA/connections.csv b/input_files/models/district_models/example_CA/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..460b1cd9c2881d454b8a33fe706d01636fd84dff --- /dev/null +++ b/input_files/models/district_models/example_CA/connections.csv @@ -0,0 +1,7 @@ +from,output,to,input +inv_pv_bat,1,battery,1 +inv_pv_bat,1,grd,1 +inv_pv_bat,1,elec_cns,1 +battery,1,inv_pv_bat,1 +grd,1,inv_pv_bat,1 +grd,1,elec_cns,1 diff --git a/input_files/models/district_models/example_CA/elec_matrix.csv b/input_files/models/district_models/example_CA/elec_matrix.csv deleted file mode 100644 index 2ac712600082b9ce6e4524a08bf81d224af2feab..0000000000000000000000000000000000000000 --- a/input_files/models/district_models/example_CA/elec_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,inv_pv_bat,battery,grd,elec_cns -inv_pv_bat,Inverter,STP-7000TL-20,0,20,0,0,1,1,1 -battery,LiionBattery,BAT1,0,6,6,1,0,0,0 -grd,StandardACGrid,GRD1,1000,1000,1000,1,0,0,1 -elec_cns,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0 diff --git a/input_files/models/district_models/example_community/components.csv b/input_files/models/district_models/example_community/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..37d9f6061ca4764e7bcaa126e41fd261232c7987 --- /dev/null +++ b/input_files/models/district_models/example_community/components.csv @@ -0,0 +1,6 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,6,6,6 +inv_pv_bat,DynamicInverter,STP-7000TL-20,0,20,0 +battery,LiionBattery,BAT1,6,6,6 +grd,ElectricalGrid,GRD1,1000,1000,1000 +elec_cns,ElectricalConsumption,,,, diff --git a/input_files/models/district_models/example_community/config.csv b/input_files/models/district_models/example_community/config.csv index 257dec3a4df29136ccb629c854f34b105c57e8b9..3af15c2884836838c807b7f6f67dd41ad4e14224 100644 --- a/input_files/models/district_models/example_community/config.csv +++ b/input_files/models/district_models/example_community/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,network_usage_capacity_fee,network_usage_energy_fee,heat_price,levies_int,levies_ext,concession,electricity_tax_int,electricity_tax_ext,VAT,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon -0.0793,0,0.7,0.0606,0,0.3046,0,14.79,0.0506,0,0.0276,0.0496,0.0199,0,0.0205,0.190,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20 +grd_injection_price,grd_price,network_usage_capacity_fee,network_usage_energy_fee,levies_int,levies_ext,concession,electricity_tax_int,electricity_tax_ext,VAT,grd_emission,yearly_interest,planning_horizon +0.0793,0.3046,14.79,0.0506,0.0276,0.0496,0.0199,0,0.0205,0.19,0.401,0.03,20 diff --git a/input_files/models/district_models/example_community/connections.csv b/input_files/models/district_models/example_community/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..fced4f72023e4e4bc430aec80753671b0d5480e8 --- /dev/null +++ b/input_files/models/district_models/example_community/connections.csv @@ -0,0 +1,8 @@ +from,output,to,input +pv_roof,1,inv_pv_bat,1 +inv_pv_bat,1,battery,1 +inv_pv_bat,1,grd,1 +inv_pv_bat,1,elec_cns,1 +battery,1,inv_pv_bat,1 +grd,1,inv_pv_bat,1 +grd,1,elec_cns,1 diff --git a/input_files/models/district_models/example_community/elec_matrix.csv b/input_files/models/district_models/example_community/elec_matrix.csv deleted file mode 100644 index f072d2fea74caf87564656c41c00a5bc1b9b9a79..0000000000000000000000000000000000000000 --- a/input_files/models/district_models/example_community/elec_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv_bat,battery,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,6,6,6,0,1,0,0,0 -inv_pv_bat,Inverter,STP-7000TL-20,0,20,0,0,0,1,1,1 -battery,LiionBattery,BAT1,6,6,6,0,1,0,0,0 -grd,StandardACGrid,GRD1,1000,1000,1000,0,1,0,0,1 -elec_cns,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0,0 diff --git a/input_files/models/district_models/jbr_test_ca/components.csv b/input_files/models/district_models/jbr_test_ca/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..37d9f6061ca4764e7bcaa126e41fd261232c7987 --- /dev/null +++ b/input_files/models/district_models/jbr_test_ca/components.csv @@ -0,0 +1,6 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,6,6,6 +inv_pv_bat,DynamicInverter,STP-7000TL-20,0,20,0 +battery,LiionBattery,BAT1,6,6,6 +grd,ElectricalGrid,GRD1,1000,1000,1000 +elec_cns,ElectricalConsumption,,,, diff --git a/input_files/models/district_models/jbr_test_ca/config.csv b/input_files/models/district_models/jbr_test_ca/config.csv index 8d15c623466861f434533b792b808cc2d943dd11..afcf4142ab022e22c5621e2e16650419e717bbaf 100644 --- a/input_files/models/district_models/jbr_test_ca/config.csv +++ b/input_files/models/district_models/jbr_test_ca/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20 +grd_injection_price,grd_price,grd_emission,yearly_interest,planning_horizon +0.0793,0.3046,0.401,0.03,20 diff --git a/input_files/models/district_models/jbr_test_ca/connections.csv b/input_files/models/district_models/jbr_test_ca/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..fced4f72023e4e4bc430aec80753671b0d5480e8 --- /dev/null +++ b/input_files/models/district_models/jbr_test_ca/connections.csv @@ -0,0 +1,8 @@ +from,output,to,input +pv_roof,1,inv_pv_bat,1 +inv_pv_bat,1,battery,1 +inv_pv_bat,1,grd,1 +inv_pv_bat,1,elec_cns,1 +battery,1,inv_pv_bat,1 +grd,1,inv_pv_bat,1 +grd,1,elec_cns,1 diff --git a/input_files/models/district_models/jbr_test_ca/elec_matrix.csv b/input_files/models/district_models/jbr_test_ca/elec_matrix.csv deleted file mode 100644 index f072d2fea74caf87564656c41c00a5bc1b9b9a79..0000000000000000000000000000000000000000 --- a/input_files/models/district_models/jbr_test_ca/elec_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv_bat,battery,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,6,6,6,0,1,0,0,0 -inv_pv_bat,Inverter,STP-7000TL-20,0,20,0,0,0,1,1,1 -battery,LiionBattery,BAT1,6,6,6,0,1,0,0,0 -grd,StandardACGrid,GRD1,1000,1000,1000,0,1,0,0,1 -elec_cns,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0,0 diff --git a/input_files/models/district_models/jbr_test_comm/components.csv b/input_files/models/district_models/jbr_test_comm/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..37d9f6061ca4764e7bcaa126e41fd261232c7987 --- /dev/null +++ b/input_files/models/district_models/jbr_test_comm/components.csv @@ -0,0 +1,6 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,6,6,6 +inv_pv_bat,DynamicInverter,STP-7000TL-20,0,20,0 +battery,LiionBattery,BAT1,6,6,6 +grd,ElectricalGrid,GRD1,1000,1000,1000 +elec_cns,ElectricalConsumption,,,, diff --git a/input_files/models/district_models/jbr_test_comm/config.csv b/input_files/models/district_models/jbr_test_comm/config.csv index 8d15c623466861f434533b792b808cc2d943dd11..afcf4142ab022e22c5621e2e16650419e717bbaf 100644 --- a/input_files/models/district_models/jbr_test_comm/config.csv +++ b/input_files/models/district_models/jbr_test_comm/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20 +grd_injection_price,grd_price,grd_emission,yearly_interest,planning_horizon +0.0793,0.3046,0.401,0.03,20 diff --git a/input_files/models/district_models/jbr_test_comm/connections.csv b/input_files/models/district_models/jbr_test_comm/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..fced4f72023e4e4bc430aec80753671b0d5480e8 --- /dev/null +++ b/input_files/models/district_models/jbr_test_comm/connections.csv @@ -0,0 +1,8 @@ +from,output,to,input +pv_roof,1,inv_pv_bat,1 +inv_pv_bat,1,battery,1 +inv_pv_bat,1,grd,1 +inv_pv_bat,1,elec_cns,1 +battery,1,inv_pv_bat,1 +grd,1,inv_pv_bat,1 +grd,1,elec_cns,1 diff --git a/input_files/models/district_models/jbr_test_comm/elec_matrix.csv b/input_files/models/district_models/jbr_test_comm/elec_matrix.csv deleted file mode 100644 index f072d2fea74caf87564656c41c00a5bc1b9b9a79..0000000000000000000000000000000000000000 --- a/input_files/models/district_models/jbr_test_comm/elec_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv_bat,battery,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,6,6,6,0,1,0,0,0 -inv_pv_bat,Inverter,STP-7000TL-20,0,20,0,0,0,1,1,1 -battery,LiionBattery,BAT1,6,6,6,0,1,0,0,0 -grd,StandardACGrid,GRD1,1000,1000,1000,0,1,0,0,1 -elec_cns,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/SCN0_CAT1/components.csv b/input_files/models/prosumer_models/SCN0_CAT1/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..2b280bcb25a46edf786631dc5ad0d0f27a1ed221 --- /dev/null +++ b/input_files/models/prosumer_models/SCN0_CAT1/components.csv @@ -0,0 +1,8 @@ +name,type,model,min_size,max_size,current_size +grd,ElectricalGrid,GRD1,100000,100000,0 +elec_cns,ElectricalConsumption,,,, +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,100000,100000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN0_CAT1/config.csv b/input_files/models/prosumer_models/SCN0_CAT1/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN0_CAT1/config.csv +++ b/input_files/models/prosumer_models/SCN0_CAT1/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN0_CAT1/connections.csv b/input_files/models/prosumer_models/SCN0_CAT1/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..dbfe4b050cf08b6c72a40bde54198c026cc687a8 --- /dev/null +++ b/input_files/models/prosumer_models/SCN0_CAT1/connections.csv @@ -0,0 +1,8 @@ +from,output,to,input +grd,1,elec_cns,1 +gas_grd,1,gas_boi,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN0_CAT1/elec_matrix.csv b/input_files/models/prosumer_models/SCN0_CAT1/elec_matrix.csv deleted file mode 100644 index c396e2e2805bdb3a37a439e430d41a4f963b0781..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN0_CAT1/elec_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,grd,elec_cns -grd,StandardACGrid,GRD1,100000,100000,0,0,1 -elec_cns,StandardElectricalConsumption,CNS1,100000,100000,0,0,0 diff --git a/input_files/models/prosumer_models/SCN0_CAT1/gas_matrix.csv b/input_files/models/prosumer_models/SCN0_CAT1/gas_matrix.csv deleted file mode 100644 index 66b2202ca865704fb3d1b5878206bc0d46b92868..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN0_CAT1/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,100000,100000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN0_CAT1/therm_matrix.csv b/input_files/models/prosumer_models/SCN0_CAT1/therm_matrix.csv deleted file mode 100644 index 7126041844dd308f44cee57628b1b88e152145c9..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN0_CAT1/therm_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,therm_cns,dhw_dmd,water_tes,gas_boi -therm_cns,HeatConsumption,HeatCNS1,100000,100000,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,100000,100000,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV11/components.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV11/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..89ba5854d920853fd65b5dedcefc8ceaa68bb96e --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV11/components.csv @@ -0,0 +1,10 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,10,10,0 +inv_pv,StaticInverter,INVPV,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV11/config.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV11/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV11/config.csv +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV11/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV11/connections.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV11/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..29dd4e9de59d29d5045f4b11602ae54208ad6cfa --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV11/connections.csv @@ -0,0 +1,11 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +grd,1,elec_cns,1 +gas_grd,1,gas_boi,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV11/elec_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV11/elec_matrix.csv deleted file mode 100644 index efb04d08476a896632bd455316cda43550c53926..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV11/elec_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,10,10,0,0,1,0,0 -inv_pv,BasicInverter,INVPV,10,10,0,0,0,1,1 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV11/gas_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV11/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV11/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV11/therm_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV11/therm_matrix.csv deleted file mode 100644 index 7f469290c513084b129bc19e4949cbfc904091f5..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV11/therm_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,therm_cns,dhw_dmd,water_tes,gas_boi -therm_cns,HeatConsumption,HeatCNS1,10000,10000,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/components.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..3bc6ffd4d5e474a3cd06e5666ee77c3178d585df --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/components.csv @@ -0,0 +1,12 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,10,10,0 +inv_pv,StaticInverter,INVPV,10,10,0 +battery,LiionBattery,BAT1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +inv_bat,StaticInverter,INVBAT,10,10,0 +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/config.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/config.csv +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/connections.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1ac16fb043e46f95c946d86e111b51dfa2e3db1 --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/connections.csv @@ -0,0 +1,17 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +inv_pv,1,inv_bat,1 +battery,1,inv_bat,1 +grd,1,elec_cns,1 +grd,1,inv_bat,1 +inv_bat,1,battery,1 +inv_bat,1,grd,1 +inv_bat,1,elec_cns,1 +gas_grd,1,gas_boi,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/elec_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/elec_matrix.csv deleted file mode 100644 index 36cadbec855dae9c01482d6fb1ac48ff66ae0f84..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/elec_matrix.csv +++ /dev/null @@ -1,7 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,battery,grd,elec_cns,inv_bat -pv_roof,StandardPVGenerator,PV2,10,10,0,0,1,0,0,0,0 -inv_pv,BasicInverter,INVPV,10,10,0,0,0,0,1,1,1 -battery,LiionBattery,BAT1,10,10,0,0,0,0,0,0,1 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,0,1,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0,0 -inv_bat,BasicInverter,INVBAT,10,10,0,0,0,1,1,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/gas_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/therm_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/therm_matrix.csv deleted file mode 100644 index 7f469290c513084b129bc19e4949cbfc904091f5..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV12_BA/therm_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,therm_cns,dhw_dmd,water_tes,gas_boi -therm_cns,HeatConsumption,HeatCNS1,10000,10000,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/components.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..adc049d34ca2c07024af58442933121308f35ce8 --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/components.csv @@ -0,0 +1,13 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,10,10,0 +inv_pv,StaticInverter,INVPV,10,10,0 +battery,LiionBattery,BAT1,10,10,0 +heat_pump,HeatPump,EHP1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +inv_bat,StaticInverter,INVBAT,10,10,0 +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/config.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/config.csv +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/connections.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..b868a18efbd476fdfc3e68a7097cc7dcf0156dc8 --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/connections.csv @@ -0,0 +1,22 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,heat_pump,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +inv_pv,1,inv_bat,1 +battery,1,inv_bat,1 +grd,1,heat_pump,1 +grd,1,elec_cns,1 +inv_bat,1,battery,1 +inv_bat,1,heat_pump,1 +inv_bat,1,grd,1 +inv_bat,1,elec_cns,1 +gas_grd,1,gas_boi,1 +heat_pump,1,water_tes,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +heat_pump,1,therm_cns,1 +heat_pump,1,dhw_dmd,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/elec_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/elec_matrix.csv deleted file mode 100644 index 84e2567a8602082070bf85ae2e62e6b38de20cc9..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/elec_matrix.csv +++ /dev/null @@ -1,8 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,battery,heat_pump,grd,elec_cns,inv_bat -pv_roof,StandardPVGenerator,PV2,10,10,0,0,1,0,0,0,0,0 -inv_pv,BasicInverter,INVPV,10,10,0,0,0,0,1,1,1,1 -battery,LiionBattery,BAT1,10,10,0,0,0,0,0,0,0,1 -heat_pump,HeatPump,EHP1,10,10,0,0,0,0,0,0,0,0 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,1,0,1,0 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0,0,0 -inv_bat,BasicInverter,INVBAT,10,10,0,0,0,1,1,1,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/gas_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/therm_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/therm_matrix.csv deleted file mode 100644 index d9e02fac5073df08955777b37776ab97affe0472..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV13_BA_HP/therm_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,heat_pump,therm_cns,dhw_dmd,water_tes,gas_boi -heat_pump,HeatPump,EHP1,,,,0,0,0,1,0 -therm_cns,HeatConsumption,HeatCNS1,10000,1000000,0,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/components.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..9029b25baae027b0647d832fcbd6b366bc223adf --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/components.csv @@ -0,0 +1,11 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,10,10,0 +inv_pv,StaticInverter,INVPV,10,10,0 +heat_pump,HeatPump,EHP1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/config.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/config.csv +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/connections.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..ceb46125766b01ae11f0dc18c82ac8034c8b2d9d --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/connections.csv @@ -0,0 +1,16 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,heat_pump,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +grd,1,heat_pump,1 +grd,1,elec_cns,1 +gas_grd,1,gas_boi,1 +heat_pump,1,water_tes,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +heat_pump,1,therm_cns,1 +heat_pump,1,dhw_dmd,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/elec_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/elec_matrix.csv deleted file mode 100644 index 793f401113266d7933bf1f20f249ea16eaae76eb..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/elec_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,heat_pump,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,10,10,0,0,1,0,0,0 -inv_pv,BasicInverter,INVPV,10,10,0,0,0,1,1,1 -heat_pump,HeatPump,EHP1,10,10,0,0,0,0,0,0 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,1,0,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/gas_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/therm_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/therm_matrix.csv deleted file mode 100644 index d9e02fac5073df08955777b37776ab97affe0472..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV14_HP/therm_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,heat_pump,therm_cns,dhw_dmd,water_tes,gas_boi -heat_pump,HeatPump,EHP1,,,,0,0,0,1,0 -therm_cns,HeatConsumption,HeatCNS1,10000,1000000,0,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV31/components.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV31/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..9583700cc096e077fbe82b9713e3624a46118ad6 --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV31/components.csv @@ -0,0 +1,10 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,30,30,0 +inv_pv,StaticInverter,INVPV,30,30,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV31/config.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV31/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV31/config.csv +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV31/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV31/connections.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV31/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..29dd4e9de59d29d5045f4b11602ae54208ad6cfa --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV31/connections.csv @@ -0,0 +1,11 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +grd,1,elec_cns,1 +gas_grd,1,gas_boi,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV31/elec_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV31/elec_matrix.csv deleted file mode 100644 index a860982ecfcbf8ce7b7abd1f263bd934a762f795..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV31/elec_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,30,30,0,0,1,0,0 -inv_pv,BasicInverter,INVPV,30,30,0,0,0,1,1 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV31/gas_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV31/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV31/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV31/therm_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV31/therm_matrix.csv deleted file mode 100644 index 7f469290c513084b129bc19e4949cbfc904091f5..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV31/therm_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,therm_cns,dhw_dmd,water_tes,gas_boi -therm_cns,HeatConsumption,HeatCNS1,10000,10000,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/components.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..2af6381b45c68135d301b15526c69eed1bb21463 --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/components.csv @@ -0,0 +1,12 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,30,30,0 +inv_pv,StaticInverter,INVPV,30,30,0 +battery,LiionBattery,BAT1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +inv_bat,StaticInverter,INVBAT,10,10,0 +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/config.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/config.csv +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/connections.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..c459e9455f4378a562f9176f83648d0324e698c4 --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/connections.csv @@ -0,0 +1,16 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +inv_pv,1,inv_bat,1 +battery,1,inv_bat,1 +grd,1,elec_cns,1 +inv_bat,1,battery,1 +inv_bat,1,grd,1 +inv_bat,1,elec_cns,1 +gas_grd,1,gas_boi,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/elec_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/elec_matrix.csv deleted file mode 100644 index 635295d45d00841f3b3194c1b2b7a024004e7417..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/elec_matrix.csv +++ /dev/null @@ -1,7 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,battery,grd,elec_cns,inv_bat -pv_roof,StandardPVGenerator,PV2,30,30,0,0,1,0,0,0,0 -inv_pv,BasicInverter,INVPV,30,30,0,0,0,0,1,1,1 -battery,LiionBattery,BAT1,10,10,0,0,0,0,0,0,1 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,0,1,0 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0,0 -inv_bat,BasicInverter,INVBAT,10,10,0,0,0,1,1,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/gas_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/therm_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/therm_matrix.csv deleted file mode 100644 index 7f469290c513084b129bc19e4949cbfc904091f5..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV32_BA/therm_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,therm_cns,dhw_dmd,water_tes,gas_boi -therm_cns,HeatConsumption,HeatCNS1,10000,10000,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/components.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..445b0bafbb208ee238800315db8d2b1bbad28c3d --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/components.csv @@ -0,0 +1,13 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,30,30,0 +inv_pv,StaticInverter,INVPV,30,30,0 +battery,LiionBattery,BAT1,10,10,0 +heat_pump,HeatPump,EHP1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +inv_bat,StaticInverter,INVBAT,10,10,0 +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/config.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/config.csv +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/connections.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..b868a18efbd476fdfc3e68a7097cc7dcf0156dc8 --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/connections.csv @@ -0,0 +1,22 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,heat_pump,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +inv_pv,1,inv_bat,1 +battery,1,inv_bat,1 +grd,1,heat_pump,1 +grd,1,elec_cns,1 +inv_bat,1,battery,1 +inv_bat,1,heat_pump,1 +inv_bat,1,grd,1 +inv_bat,1,elec_cns,1 +gas_grd,1,gas_boi,1 +heat_pump,1,water_tes,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +heat_pump,1,therm_cns,1 +heat_pump,1,dhw_dmd,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/elec_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/elec_matrix.csv deleted file mode 100644 index 4e7f785c6275235e6a01954ff7886bfb7acd1ece..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/elec_matrix.csv +++ /dev/null @@ -1,8 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,battery,heat_pump,grd,elec_cns,inv_bat -pv_roof,StandardPVGenerator,PV2,30,30,0,0,1,0,0,0,0,0 -inv_pv,BasicInverter,INVPV,30,30,0,0,0,0,1,1,1,1 -battery,LiionBattery,BAT1,10,10,0,0,0,0,0,0,0,1 -heat_pump,HeatPump,EHP1,10,10,0,0,0,0,0,0,0,0 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,1,0,1,0 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0,0,0 -inv_bat,BasicInverter,INVBAT,10,10,0,0,0,1,1,1,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/gas_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/therm_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/therm_matrix.csv deleted file mode 100644 index d9e02fac5073df08955777b37776ab97affe0472..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV33_BA_HP/therm_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,heat_pump,therm_cns,dhw_dmd,water_tes,gas_boi -heat_pump,HeatPump,EHP1,,,,0,0,0,1,0 -therm_cns,HeatConsumption,HeatCNS1,10000,1000000,0,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/components.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb554db40cc7d0b7e8daa228b2cb82b9e6367876 --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/components.csv @@ -0,0 +1,11 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,30,30,0 +inv_pv,StaticInverter,INVPV,30,30,0 +heat_pump,HeatPump,EHP1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/config.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/config.csv +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/connections.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..ceb46125766b01ae11f0dc18c82ac8034c8b2d9d --- /dev/null +++ b/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/connections.csv @@ -0,0 +1,16 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,heat_pump,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +grd,1,heat_pump,1 +grd,1,elec_cns,1 +gas_grd,1,gas_boi,1 +heat_pump,1,water_tes,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +heat_pump,1,therm_cns,1 +heat_pump,1,dhw_dmd,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/elec_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/elec_matrix.csv deleted file mode 100644 index 1badd2fc33131478f97c395ac67adaef5f44d8bb..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/elec_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,heat_pump,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,30,30,0,0,1,0,0,0 -inv_pv,BasicInverter,INVPV,30,30,0,0,0,1,1,1 -heat_pump,HeatPump,EHP1,10,10,0,0,0,0,0,0 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,1,0,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/gas_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/therm_matrix.csv b/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/therm_matrix.csv deleted file mode 100644 index d9e02fac5073df08955777b37776ab97affe0472..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN2_CAT1_PV34_HP/therm_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,heat_pump,therm_cns,dhw_dmd,water_tes,gas_boi -heat_pump,HeatPump,EHP1,,,,0,0,0,1,0 -therm_cns,HeatConsumption,HeatCNS1,10000,1000000,0,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1/components.csv b/input_files/models/prosumer_models/SCN3_CAT1/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..652da783013e0aa307cdfb1c6792f1f8a00a5518 --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1/components.csv @@ -0,0 +1,8 @@ +name,type,model,min_size,max_size,current_size +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1/config.csv b/input_files/models/prosumer_models/SCN3_CAT1/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN3_CAT1/config.csv +++ b/input_files/models/prosumer_models/SCN3_CAT1/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN3_CAT1/connections.csv b/input_files/models/prosumer_models/SCN3_CAT1/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..dbfe4b050cf08b6c72a40bde54198c026cc687a8 --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1/connections.csv @@ -0,0 +1,8 @@ +from,output,to,input +grd,1,elec_cns,1 +gas_grd,1,gas_boi,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN3_CAT1/elec_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1/elec_matrix.csv deleted file mode 100644 index c5409f5c5043a13b40e2ca912579837e6e7f988f..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1/elec_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,grd,elec_cns -grd,StandardACGrid,GRD1,10000,10000,0,0,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1/gas_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1/therm_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1/therm_matrix.csv deleted file mode 100644 index 7f469290c513084b129bc19e4949cbfc904091f5..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1/therm_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,therm_cns,dhw_dmd,water_tes,gas_boi -therm_cns,HeatConsumption,HeatCNS1,10000,10000,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV11/components.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV11/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..89ba5854d920853fd65b5dedcefc8ceaa68bb96e --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV11/components.csv @@ -0,0 +1,10 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,10,10,0 +inv_pv,StaticInverter,INVPV,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV11/config.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV11/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV11/config.csv +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV11/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV11/connections.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV11/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..29dd4e9de59d29d5045f4b11602ae54208ad6cfa --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV11/connections.csv @@ -0,0 +1,11 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +grd,1,elec_cns,1 +gas_grd,1,gas_boi,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV11/elec_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV11/elec_matrix.csv deleted file mode 100644 index efb04d08476a896632bd455316cda43550c53926..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV11/elec_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,10,10,0,0,1,0,0 -inv_pv,BasicInverter,INVPV,10,10,0,0,0,1,1 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV11/gas_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV11/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV11/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV11/therm_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV11/therm_matrix.csv deleted file mode 100644 index 7f469290c513084b129bc19e4949cbfc904091f5..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV11/therm_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,therm_cns,dhw_dmd,water_tes,gas_boi -therm_cns,HeatConsumption,HeatCNS1,10000,10000,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/components.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..3bc6ffd4d5e474a3cd06e5666ee77c3178d585df --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/components.csv @@ -0,0 +1,12 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,10,10,0 +inv_pv,StaticInverter,INVPV,10,10,0 +battery,LiionBattery,BAT1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +inv_bat,StaticInverter,INVBAT,10,10,0 +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/config.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/config.csv +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/connections.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1ac16fb043e46f95c946d86e111b51dfa2e3db1 --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/connections.csv @@ -0,0 +1,17 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +inv_pv,1,inv_bat,1 +battery,1,inv_bat,1 +grd,1,elec_cns,1 +grd,1,inv_bat,1 +inv_bat,1,battery,1 +inv_bat,1,grd,1 +inv_bat,1,elec_cns,1 +gas_grd,1,gas_boi,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/elec_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/elec_matrix.csv deleted file mode 100644 index 36cadbec855dae9c01482d6fb1ac48ff66ae0f84..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/elec_matrix.csv +++ /dev/null @@ -1,7 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,battery,grd,elec_cns,inv_bat -pv_roof,StandardPVGenerator,PV2,10,10,0,0,1,0,0,0,0 -inv_pv,BasicInverter,INVPV,10,10,0,0,0,0,1,1,1 -battery,LiionBattery,BAT1,10,10,0,0,0,0,0,0,1 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,0,1,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0,0 -inv_bat,BasicInverter,INVBAT,10,10,0,0,0,1,1,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/gas_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/therm_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/therm_matrix.csv deleted file mode 100644 index 7f469290c513084b129bc19e4949cbfc904091f5..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV12_BA/therm_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,therm_cns,dhw_dmd,water_tes,gas_boi -therm_cns,HeatConsumption,HeatCNS1,10000,10000,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/components.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..adc049d34ca2c07024af58442933121308f35ce8 --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/components.csv @@ -0,0 +1,13 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,10,10,0 +inv_pv,StaticInverter,INVPV,10,10,0 +battery,LiionBattery,BAT1,10,10,0 +heat_pump,HeatPump,EHP1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +inv_bat,StaticInverter,INVBAT,10,10,0 +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/config.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/config.csv +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/connections.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..7e6ca7c5f888d21cc56e5a39d682ab8a54d26964 --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/connections.csv @@ -0,0 +1,23 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,heat_pump,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +inv_pv,1,inv_bat,1 +battery,1,inv_bat,1 +grd,1,heat_pump,1 +grd,1,elec_cns,1 +grd,1,inv_bat,1 +inv_bat,1,battery,1 +inv_bat,1,heat_pump,1 +inv_bat,1,grd,1 +inv_bat,1,elec_cns,1 +gas_grd,1,gas_boi,1 +heat_pump,1,water_tes,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +heat_pump,1,therm_cns,1 +heat_pump,1,dhw_dmd,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/elec_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/elec_matrix.csv deleted file mode 100644 index 7a62ea7c9c55b23281c458e64599733dbbf9c060..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/elec_matrix.csv +++ /dev/null @@ -1,8 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,battery,heat_pump,grd,elec_cns,inv_bat -pv_roof,StandardPVGenerator,PV2,10,10,0,0,1,0,0,0,0,0 -inv_pv,BasicInverter,INVPV,10,10,0,0,0,0,1,1,1,1 -battery,LiionBattery,BAT1,10,10,0,0,0,0,0,0,0,1 -heat_pump,HeatPump,EHP1,10,10,0,0,0,0,0,0,0,0 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,1,0,1,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0,0,0 -inv_bat,BasicInverter,INVBAT,10,10,0,0,0,1,1,1,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/gas_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/therm_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/therm_matrix.csv deleted file mode 100644 index d9e02fac5073df08955777b37776ab97affe0472..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV13_BA_HP/therm_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,heat_pump,therm_cns,dhw_dmd,water_tes,gas_boi -heat_pump,HeatPump,EHP1,,,,0,0,0,1,0 -therm_cns,HeatConsumption,HeatCNS1,10000,1000000,0,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/components.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..9029b25baae027b0647d832fcbd6b366bc223adf --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/components.csv @@ -0,0 +1,11 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,10,10,0 +inv_pv,StaticInverter,INVPV,10,10,0 +heat_pump,HeatPump,EHP1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/config.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/config.csv +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/connections.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..ceb46125766b01ae11f0dc18c82ac8034c8b2d9d --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/connections.csv @@ -0,0 +1,16 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,heat_pump,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +grd,1,heat_pump,1 +grd,1,elec_cns,1 +gas_grd,1,gas_boi,1 +heat_pump,1,water_tes,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +heat_pump,1,therm_cns,1 +heat_pump,1,dhw_dmd,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/elec_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/elec_matrix.csv deleted file mode 100644 index 793f401113266d7933bf1f20f249ea16eaae76eb..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/elec_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,heat_pump,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,10,10,0,0,1,0,0,0 -inv_pv,BasicInverter,INVPV,10,10,0,0,0,1,1,1 -heat_pump,HeatPump,EHP1,10,10,0,0,0,0,0,0 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,1,0,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/gas_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/therm_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/therm_matrix.csv deleted file mode 100644 index d9e02fac5073df08955777b37776ab97affe0472..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV14_HP/therm_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,heat_pump,therm_cns,dhw_dmd,water_tes,gas_boi -heat_pump,HeatPump,EHP1,,,,0,0,0,1,0 -therm_cns,HeatConsumption,HeatCNS1,10000,1000000,0,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV31/components.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV31/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..9583700cc096e077fbe82b9713e3624a46118ad6 --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV31/components.csv @@ -0,0 +1,10 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,30,30,0 +inv_pv,StaticInverter,INVPV,30,30,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV31/config.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV31/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV31/config.csv +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV31/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV31/connections.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV31/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..29dd4e9de59d29d5045f4b11602ae54208ad6cfa --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV31/connections.csv @@ -0,0 +1,11 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +grd,1,elec_cns,1 +gas_grd,1,gas_boi,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV31/elec_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV31/elec_matrix.csv deleted file mode 100644 index a860982ecfcbf8ce7b7abd1f263bd934a762f795..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV31/elec_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,30,30,0,0,1,0,0 -inv_pv,BasicInverter,INVPV,30,30,0,0,0,1,1 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV31/gas_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV31/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV31/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV31/therm_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV31/therm_matrix.csv deleted file mode 100644 index 7f469290c513084b129bc19e4949cbfc904091f5..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV31/therm_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,therm_cns,dhw_dmd,water_tes,gas_boi -therm_cns,HeatConsumption,HeatCNS1,10000,10000,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/components.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..2af6381b45c68135d301b15526c69eed1bb21463 --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/components.csv @@ -0,0 +1,12 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,30,30,0 +inv_pv,StaticInverter,INVPV,30,30,0 +battery,LiionBattery,BAT1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +inv_bat,StaticInverter,INVBAT,10,10,0 +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/config.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/config.csv +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/connections.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1ac16fb043e46f95c946d86e111b51dfa2e3db1 --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/connections.csv @@ -0,0 +1,17 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +inv_pv,1,inv_bat,1 +battery,1,inv_bat,1 +grd,1,elec_cns,1 +grd,1,inv_bat,1 +inv_bat,1,battery,1 +inv_bat,1,grd,1 +inv_bat,1,elec_cns,1 +gas_grd,1,gas_boi,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/elec_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/elec_matrix.csv deleted file mode 100644 index 875add35ff453429b9db08ed5b2247d59aa6681a..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/elec_matrix.csv +++ /dev/null @@ -1,7 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,battery,grd,elec_cns,inv_bat -pv_roof,StandardPVGenerator,PV2,30,30,0,0,1,0,0,0,0 -inv_pv,BasicInverter,INVPV,30,30,0,0,0,0,1,1,1 -battery,LiionBattery,BAT1,10,10,0,0,0,0,0,0,1 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,0,1,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0,0 -inv_bat,BasicInverter,INVBAT,10,10,0,0,0,1,1,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/gas_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/therm_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/therm_matrix.csv deleted file mode 100644 index 7f469290c513084b129bc19e4949cbfc904091f5..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV32_BA/therm_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,therm_cns,dhw_dmd,water_tes,gas_boi -therm_cns,HeatConsumption,HeatCNS1,10000,10000,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/components.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..445b0bafbb208ee238800315db8d2b1bbad28c3d --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/components.csv @@ -0,0 +1,13 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,30,30,0 +inv_pv,StaticInverter,INVPV,30,30,0 +battery,LiionBattery,BAT1,10,10,0 +heat_pump,HeatPump,EHP1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +inv_bat,StaticInverter,INVBAT,10,10,0 +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/config.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/config.csv +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/connections.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..7e6ca7c5f888d21cc56e5a39d682ab8a54d26964 --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/connections.csv @@ -0,0 +1,23 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,heat_pump,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +inv_pv,1,inv_bat,1 +battery,1,inv_bat,1 +grd,1,heat_pump,1 +grd,1,elec_cns,1 +grd,1,inv_bat,1 +inv_bat,1,battery,1 +inv_bat,1,heat_pump,1 +inv_bat,1,grd,1 +inv_bat,1,elec_cns,1 +gas_grd,1,gas_boi,1 +heat_pump,1,water_tes,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +heat_pump,1,therm_cns,1 +heat_pump,1,dhw_dmd,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/elec_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/elec_matrix.csv deleted file mode 100644 index 05392accd4eff7d061af5f5fa903ec318b3f4b88..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/elec_matrix.csv +++ /dev/null @@ -1,8 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,battery,heat_pump,grd,elec_cns,inv_bat -pv_roof,StandardPVGenerator,PV2,30,30,0,0,1,0,0,0,0,0 -inv_pv,BasicInverter,INVPV,30,30,0,0,0,0,1,1,1,1 -battery,LiionBattery,BAT1,10,10,0,0,0,0,0,0,0,1 -heat_pump,HeatPump,EHP1,10,10,0,0,0,0,0,0,0,0 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,0,1,0,1,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0,0,0 -inv_bat,BasicInverter,INVBAT,10,10,0,0,0,1,1,1,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/gas_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/therm_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/therm_matrix.csv deleted file mode 100644 index d9e02fac5073df08955777b37776ab97affe0472..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV33_BA_HP/therm_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,heat_pump,therm_cns,dhw_dmd,water_tes,gas_boi -heat_pump,HeatPump,EHP1,,,,0,0,0,1,0 -therm_cns,HeatConsumption,HeatCNS1,10000,1000000,0,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/components.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb554db40cc7d0b7e8daa228b2cb82b9e6367876 --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/components.csv @@ -0,0 +1,11 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,30,30,0 +inv_pv,StaticInverter,INVPV,30,30,0 +heat_pump,HeatPump,EHP1,10,10,0 +grd,ElectricalGrid,GRD1,10000,10000,0 +elec_cns,ElectricalConsumption,,,, +gas_boi,GasBoiler,BOI1,10,10,0 +gas_grd,GasGrid,GAS1,10000,10000,0 +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,40,40,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/config.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..975002f601d6d8a963e9a690004b4c7bdce2af41 100644 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/config.csv +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,gas_grd_price,grd_price,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/connections.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..ceb46125766b01ae11f0dc18c82ac8034c8b2d9d --- /dev/null +++ b/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/connections.csv @@ -0,0 +1,16 @@ +from,output,to,input +pv_roof,1,inv_pv,1 +inv_pv,1,heat_pump,1 +inv_pv,1,grd,1 +inv_pv,1,elec_cns,1 +grd,1,heat_pump,1 +grd,1,elec_cns,1 +gas_grd,1,gas_boi,1 +heat_pump,1,water_tes,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +gas_boi,1,water_tes,1 +heat_pump,1,therm_cns,1 +heat_pump,1,dhw_dmd,1 +gas_boi,1,therm_cns,1 +gas_boi,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/elec_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/elec_matrix.csv deleted file mode 100644 index 1badd2fc33131478f97c395ac67adaef5f44d8bb..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/elec_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv,heat_pump,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,30,30,0,0,1,0,0,0 -inv_pv,BasicInverter,INVPV,30,30,0,0,0,1,1,1 -heat_pump,HeatPump,EHP1,10,10,0,0,0,0,0,0 -grd,StandardACGrid,GRD1,10000,10000,0,0,0,1,0,1 -elec_cns,StandardElectricalConsumption,CNS1,10000,10000,0,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/gas_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/gas_matrix.csv deleted file mode 100644 index 667ee9e0e31bb4e5ce69169a054f27202adc768e..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,gas_boi,gas_grd -gas_boi,GasBoiler,BOI1,10,10,0,0,0 -gas_grd,StandardGasGrid,GAS1,10000,10000,0,1,0 diff --git a/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/therm_matrix.csv b/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/therm_matrix.csv deleted file mode 100644 index d9e02fac5073df08955777b37776ab97affe0472..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/SCN3_CAT1_PV34_HP/therm_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,heat_pump,therm_cns,dhw_dmd,water_tes,gas_boi -heat_pump,HeatPump,EHP1,,,,0,0,0,1,0 -therm_cns,HeatConsumption,HeatCNS1,10000,1000000,0,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,10000,10000,0,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,40,40,0,0,1,1,0,0 -gas_boi,GasBoiler,BOI1,10,10,0,0,0,0,1,0 diff --git a/input_files/models/prosumer_models/jbr_test/components.csv b/input_files/models/prosumer_models/jbr_test/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..37d9f6061ca4764e7bcaa126e41fd261232c7987 --- /dev/null +++ b/input_files/models/prosumer_models/jbr_test/components.csv @@ -0,0 +1,6 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,6,6,6 +inv_pv_bat,DynamicInverter,STP-7000TL-20,0,20,0 +battery,LiionBattery,BAT1,6,6,6 +grd,ElectricalGrid,GRD1,1000,1000,1000 +elec_cns,ElectricalConsumption,,,, diff --git a/input_files/models/prosumer_models/jbr_test/config.csv b/input_files/models/prosumer_models/jbr_test/config.csv index 8d15c623466861f434533b792b808cc2d943dd11..afcf4142ab022e22c5621e2e16650419e717bbaf 100644 --- a/input_files/models/prosumer_models/jbr_test/config.csv +++ b/input_files/models/prosumer_models/jbr_test/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20 +grd_injection_price,grd_price,grd_emission,yearly_interest,planning_horizon +0.0793,0.3046,0.401,0.03,20 diff --git a/input_files/models/prosumer_models/jbr_test/connections.csv b/input_files/models/prosumer_models/jbr_test/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..fced4f72023e4e4bc430aec80753671b0d5480e8 --- /dev/null +++ b/input_files/models/prosumer_models/jbr_test/connections.csv @@ -0,0 +1,8 @@ +from,output,to,input +pv_roof,1,inv_pv_bat,1 +inv_pv_bat,1,battery,1 +inv_pv_bat,1,grd,1 +inv_pv_bat,1,elec_cns,1 +battery,1,inv_pv_bat,1 +grd,1,inv_pv_bat,1 +grd,1,elec_cns,1 diff --git a/input_files/models/prosumer_models/jbr_test/elec_matrix.csv b/input_files/models/prosumer_models/jbr_test/elec_matrix.csv deleted file mode 100644 index f072d2fea74caf87564656c41c00a5bc1b9b9a79..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/jbr_test/elec_matrix.csv +++ /dev/null @@ -1,6 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv_bat,battery,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,6,6,6,0,1,0,0,0 -inv_pv_bat,Inverter,STP-7000TL-20,0,20,0,0,0,1,1,1 -battery,LiionBattery,BAT1,6,6,6,0,1,0,0,0 -grd,StandardACGrid,GRD1,1000,1000,1000,0,1,0,0,1 -elec_cns,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/mfh_quartal/components.csv b/input_files/models/prosumer_models/mfh_quartal/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..5b1f7270a6e56f01e3e92f2bbf9879758f735960 --- /dev/null +++ b/input_files/models/prosumer_models/mfh_quartal/components.csv @@ -0,0 +1,18 @@ +name,type,model,min_size,max_size,current_size +grd,ElectricalGrid,GRD1,1000,1000,0 +pv,PVGenerator,PV2,0,30,0 +bat,LiionBattery,BAT1,1,1,0 +chp,CHP,CHP1,0,50,0 +ecns1,ElectricalConsumption,,,, +ecns2,ElectricalConsumption,,,, +ecns3,ElectricalConsumption,,,, +ecns4,ElectricalConsumption,,,, +ecns5,ElectricalConsumption,,,, +ecns6,ElectricalConsumption,,,, +gas_grd,GasGrid,GAS1,1000,1000,0 +tcns1,HeatConsumption,,,, +tcns2,HeatConsumption,,,, +tcns3,HeatConsumption,,,, +tcns4,HeatConsumption,,,, +tcns5,HeatConsumption,,,, +tcns6,HeatConsumption,,,, diff --git a/input_files/models/prosumer_models/mfh_quartal/config.csv b/input_files/models/prosumer_models/mfh_quartal/config.csv index 74c671d2352ed572bd3ff3c36a1d6d469e6967bd..798a9d64cea586cdbbb0bd8801dd24113721bbff 100644 --- a/input_files/models/prosumer_models/mfh_quartal/config.csv +++ b/input_files/models/prosumer_models/mfh_quartal/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price_low,elec_price_high,elec_price_cap_low,elec_price_cap_high,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon -0.0793,0,0.7,0.0606,0,0.3046,0.25,50,60,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20 +grd_injection_price,gas_grd_price,elec_price_low,elec_price_high,gas_grd_injection_price,grd_emission,gas_grd_emission,yearly_interest,planning_horizon +0.0793,0.0606,0.3046,0.25,0,0.401,0.21,0.03,20 diff --git a/input_files/models/prosumer_models/mfh_quartal/connections.csv b/input_files/models/prosumer_models/mfh_quartal/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..0416b8eae930a195328ae32c779d86790430738a --- /dev/null +++ b/input_files/models/prosumer_models/mfh_quartal/connections.csv @@ -0,0 +1,35 @@ +from,output,to,input +grd,1,ecns1,1 +grd,1,ecns2,1 +grd,1,ecns3,1 +grd,1,ecns4,1 +grd,1,ecns5,1 +grd,1,ecns6,1 +pv,1,grd,1 +pv,1,bat,1 +pv,1,ecns1,1 +pv,1,ecns2,1 +pv,1,ecns3,1 +pv,1,ecns4,1 +pv,1,ecns5,1 +pv,1,ecns6,1 +bat,1,ecns1,1 +bat,1,ecns2,1 +bat,1,ecns3,1 +bat,1,ecns4,1 +bat,1,ecns5,1 +bat,1,ecns6,1 +chp,2,grd,1 +chp,2,ecns1,1 +chp,2,ecns2,1 +chp,2,ecns3,1 +chp,2,ecns4,1 +chp,2,ecns5,1 +chp,2,ecns6,1 +gas_grd,1,chp,1 +chp,1,tcns1,1 +chp,1,tcns2,1 +chp,1,tcns3,1 +chp,1,tcns4,1 +chp,1,tcns5,1 +chp,1,tcns6,1 diff --git a/input_files/models/prosumer_models/mfh_quartal/elec_matrix.csv b/input_files/models/prosumer_models/mfh_quartal/elec_matrix.csv deleted file mode 100644 index 5d84ee4384bb28d6c1b321c0fea05e6a026865ad..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/mfh_quartal/elec_matrix.csv +++ /dev/null @@ -1,11 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,grd,pv,bat,chp,ecns1,ecns2,ecns3,ecns4,ecns5,ecns6 -grd,StandardACGrid,GRD1,1000,1000,0,0,0,0,0,1,1,1,1,1,1 -pv,StandardPVGenerator,PV2,0,30,0,1,0,1,0,1,1,1,1,1,1 -bat,LiionBattery,BAT1,1,1,0,0,0,0,0,1,1,1,1,1,1 -chp,CHP,CHP1,0,50,0,1,0,0,0,1,1,1,1,1,1 -ecns1,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0,0,0,0,0,0,0 -ecns2,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0,0,0,0,0,0,0 -ecns3,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0,0,0,0,0,0,0 -ecns4,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0,0,0,0,0,0,0 -ecns5,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0,0,0,0,0,0,0 -ecns6,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0,0,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/mfh_quartal/gas_matrix.csv b/input_files/models/prosumer_models/mfh_quartal/gas_matrix.csv deleted file mode 100644 index 2921720ae575c737d0f205a9f72da183127cff5d..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/mfh_quartal/gas_matrix.csv +++ /dev/null @@ -1,3 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,chp,gas_grd -chp,CHP,CHP1,0,50,0,0,0 -gas_grd,StandardGasGrid,GAS1,1000,1000,0,1,0 diff --git a/input_files/models/prosumer_models/mfh_quartal/therm_matrix.csv b/input_files/models/prosumer_models/mfh_quartal/therm_matrix.csv deleted file mode 100644 index 6d564a0d50ee18c857ea9c3b43f726eb6eb23dee..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/mfh_quartal/therm_matrix.csv +++ /dev/null @@ -1,8 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,chp,tcns1,tcns2,tcns3,tcns4,tcns5,tcns6 -chp,CHP,CHP1,0,50,0,0,1,1,1,1,1,1 -tcns1,HeatConsumption,HeatCNS1,1000,1000,0,0,0,0,0,0,0,0 -tcns2,HeatConsumption,HeatCNS1,1000,1000,0,0,0,0,0,0,0,0 -tcns3,HeatConsumption,HeatCNS1,1000,1000,0,0,0,0,0,0,0,0 -tcns4,HeatConsumption,HeatCNS1,1000,1000,0,0,0,0,0,0,0,0 -tcns5,HeatConsumption,HeatCNS1,1000,1000,0,0,0,0,0,0,0,0 -tcns6,HeatConsumption,HeatCNS1,1000,1000,0,0,0,0,0,0,0,0 \ No newline at end of file diff --git a/input_files/models/prosumer_models/office_pv_heatpump/components.csv b/input_files/models/prosumer_models/office_pv_heatpump/components.csv new file mode 100644 index 0000000000000000000000000000000000000000..56d0504c8089561606e81f7403d429ab8b31fad8 --- /dev/null +++ b/input_files/models/prosumer_models/office_pv_heatpump/components.csv @@ -0,0 +1,10 @@ +name,type,model,min_size,max_size,current_size +pv_roof,PVGenerator,PV2,0,30,0 +inv_pv_bat,DynamicInverter,STP-7000TL-20,0,30,0 +battery,LiionBattery,BAT1,0,1000,0 +heat_pump,HeatPump,EHP1,2,50,0 +grd,ElectricalGrid,GRD1,1000,1000,0 +elec_cns,ElectricalConsumption,,,, +therm_cns,HeatConsumption,,,, +dhw_dmd,HotWaterConsumption,,,, +water_tes,HotWaterStorage,TES1,10,93,0 diff --git a/input_files/models/prosumer_models/office_pv_heatpump/config.csv b/input_files/models/prosumer_models/office_pv_heatpump/config.csv index be5d6200a2f1f62a9a82ce2293bdb5ec8a02d3d5..afcf4142ab022e22c5621e2e16650419e717bbaf 100644 --- a/input_files/models/prosumer_models/office_pv_heatpump/config.csv +++ b/input_files/models/prosumer_models/office_pv_heatpump/config.csv @@ -1,2 +1,2 @@ -injection_price,injection_price_variable,injection/pvpeak,gas_price,gas_price_variable,elec_price,elec_price_variable,heat_price,heat_price_variable,cooling_price,cooling_price_variable,injection_price_gas,injection_price_gas_variable,injection_price_heat,injection_price_heat_variable,injection_price_cooling,injection_price_cooling_variable,elec_emission,gas_emission,yearly_interest,planning_horizon,elec_price_cap_low,elec_price_cap_high -0.0793,0,0.7,0.0606,0,0.3046,0,0,0,0,0,0,0,0,0,0,0,0.401,0.21,0.03,20,15,107 +grd_injection_price,grd_price,grd_emission,yearly_interest,planning_horizon +0.0793,0.3046,0.401,0.03,20 diff --git a/input_files/models/prosumer_models/office_pv_heatpump/connections.csv b/input_files/models/prosumer_models/office_pv_heatpump/connections.csv new file mode 100644 index 0000000000000000000000000000000000000000..84ee2b5bdfe592ebadd5f1eba58fb2b8edea8a5d --- /dev/null +++ b/input_files/models/prosumer_models/office_pv_heatpump/connections.csv @@ -0,0 +1,15 @@ +from,output,to,input +pv_roof,1,inv_pv_bat,1 +inv_pv_bat,1,battery,1 +inv_pv_bat,1,heat_pump,1 +inv_pv_bat,1,grd,1 +inv_pv_bat,1,elec_cns,1 +battery,1,inv_pv_bat,1 +grd,1,inv_pv_bat,1 +grd,1,heat_pump,1 +grd,1,elec_cns,1 +heat_pump,1,water_tes,1 +water_tes,1,therm_cns,1 +water_tes,1,dhw_dmd,1 +heat_pump,1,therm_cns,1 +heat_pump,1,dhw_dmd,1 diff --git a/input_files/models/prosumer_models/office_pv_heatpump/elec_matrix.csv b/input_files/models/prosumer_models/office_pv_heatpump/elec_matrix.csv deleted file mode 100644 index 51d563713936974eda2a41a665fe4485c81d93a9..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/office_pv_heatpump/elec_matrix.csv +++ /dev/null @@ -1,7 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,pv_roof,inv_pv_bat,battery,heat_pump,grd,elec_cns -pv_roof,StandardPVGenerator,PV2,0,30,0,0,1,0,0,0,0 -inv_pv_bat,Inverter,STP-7000TL-20,0,30,0,0,0,1,1,1,1 -battery,LiionBattery,BAT1,0,1000,0,0,1,0,0,0,0 -heat_pump,HeatPump,EHP1,2,50,0,0,0,0,0,0,0 -grd,StandardACGrid,GRD1,1000,1000,0,0,1,0,1,0,1 -elec_cns,StandardElectricalConsumption,CNS1,1000,1000,0,0,0,0,0,0,0 diff --git a/input_files/models/prosumer_models/office_pv_heatpump/therm_matrix.csv b/input_files/models/prosumer_models/office_pv_heatpump/therm_matrix.csv deleted file mode 100644 index 3f54f72d2981ba422a521c1bdb61070f66b6d997..0000000000000000000000000000000000000000 --- a/input_files/models/prosumer_models/office_pv_heatpump/therm_matrix.csv +++ /dev/null @@ -1,5 +0,0 @@ -comp_name,comp_type,model,min_size,max_size,current_size,heat_pump,therm_cns,dhw_dmd,water_tes -heat_pump,HeatPump,EHP1,,,,0,0,0,1 -therm_cns,HeatConsumption,HeatCNS1,1000,1000,0,0,0,0,0 -dhw_dmd,HotWaterConsumption,HWCNS1,1000,1000,0,0,0,0,0 -water_tes,HotWaterStorage,TES1,10,93,0,0,1,1,0 diff --git a/runme.py b/runme.py index 6de1bd56dec0c0702f7ce7f001c1112ec79507d7..fda1a11583473ca328dc17ba7ffc074e0a60f82d 100644 --- a/runme.py +++ b/runme.py @@ -1,279 +1,124 @@ -""" -The FEN-Tool is an optimization tool for prosumer, district, and interconnected city models. - -Copyright (C) 2022. Mauricio Celi Cortés, Jingyu Gong, Jonas van Ouwerkerk, Felix Wege, Yi Nie, Jonas Brucksch - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License -as published by the Free Software Foundation; either version 3 of -the License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301 USA. - -Project host: RWTH Aachen University, Aachen, Germany -Project Website: https://www.fenaachen.net/projekte/fen-ineed-dc -""" - -import time import pandas as pd -import argparse -from tqdm import tqdm -import Model_Library.Prosumer.main as main -from multiprocessing import Pool -import os -from functools import partial -from Model_Library.Prosumer.scripts.results_evaluation.results_evaluation import \ - Plot_savings - - -# from Tooling.results_evaluation.results_evaluation import Plot_savings - -def process_each_prosumer(prosumer_name, prosumer_dict, data_source, commentary, - no_process_bar_rh): - """ - The method XYZ adds ... - :param - XYZ: - :returns - XYZ - """ - try: - # PLEASE CHANGE HERE - # Set the simulation time frame and optional rolling horizon configurations: - # 't_start': start date of simulations, Unit: JJJJ-MM-DD hh:mm:ss - # 't_end': end date of simulations, Unit: JJJJ-MM-DD hh:mm:ss - # 't_step': granularity of optimization model, Unit: hours - # Rolling horizon (RH) can be set by: - # 't_rh_horizon': width of rolling horizon intervals, Unit: hours, MINIMUM VALUE: 2 !!! - # 't_rh_shift': rolling horizon shift between intervals, Unit: hours - # 't_current_value_length': number of values at beginning of rolling horizon interval that are replaced by real values, Unit: hours - # 't_history': number of days before actual simulation interval for the demand generator to be able to make required predictions - if prosumer_dict[prosumer_name]['rolling_horizon']: - t_start = pd.Timestamp("2019-07-01 00:00:00") - t_end = pd.Timestamp("2019-07-30 23:00:00") - t_step = 1 - t_rh_horizon = 3 - t_rh_shift = 1 - t_current_value_length = 2 - t_history = 14 # days - - # PLEASE CHANGE HERE - # Prediction settings - predictions = {'demand_electric': 'DayBefore', - 'demand_heat': 'DayBefore', - 'day_ahead_price': 'DayBefore', - 'intraday_price': 'DayBefore', - 'solar_radiation': 'ActualData', - # currently the method generate_g_t_series takes the same t_start as the prediction -> no historical - # data for the prediction available: easy fix would be to set a minus time delta in the t_start - # argument of generate_g_t_series - 'temperature': 'DayBefore'} - else: - t_start = pd.Timestamp("2019-07-01 00:00:00") - t_end = pd.Timestamp("2019-07-22 05:00:00") + pd.Timedelta(hours=1) - t_step = 1 - t_rh_horizon = (t_end - t_start) / pd.Timedelta(hours=1) - t_rh_shift = t_rh_horizon - 1 - t_current_value_length = t_rh_horizon - t_history = 0 # days - - # PLEASE CHANGE HERE - # Prediction settings - predictions = {'demand_electric': 'ActualData', - 'demand_heat': 'ActualData', - 'day_ahead_price': 'ActualData', - 'intraday_price': 'ActualData', - 'solar_radiation': 'ActualData', - # currently the method generate_g_t_series takes the same t_start as the prediction -> no historical - # data for the prediction available: easy fix would be to set a minus time delta in the t_start - # argument of generate_g_t_series - 'temperature': 'ActualData'} - - # Fixed variables - DO NOT CHANGE - storage_states = {} - interim_results = {} - final_iteration = False - - # Set aggregation options - parser = argparse.ArgumentParser( - description='Start optimization from DB or local data') - parser.add_argument('-a', '--aggregate', action="store_true", - dest="aggregate", - help="activating aggregation of input time series", - default=False) - options = parser.parse_args() - - # Calculate number of rolling horizon intervals and loop through them - for t in tqdm(pd.date_range(t_start, - t_end - pd.Timedelta(hours=t_rh_shift + 1), - freq=str(t_rh_shift) + 'H'), - disable=no_process_bar_rh): - # ToDo: replace first value with perfect value (can be done in runme) - # set end date for current loop - t_end_loop = t + pd.Timedelta(hours=t_rh_horizon) - - # exceptions that occur at global end of simulation horizon - if t_end_loop > t_end: - t_end_loop = t_end - if t_current_value_length > (t_end_loop - t) / pd.Timedelta( - hours=1): - t_current_value_length = (t_end_loop - t) / pd.Timedelta( - hours=1) - - # Set flag for final iteration - if t == t_end - pd.Timedelta(hours=t_rh_shift + 1): - final_iteration = True +import Tooling.input_profile_processor.input_profile_processor +import Model_Library.Prosumer.main as main_prosumer +import Model_Library.District.main as main_district +from enum import Enum + +class SimulationScope(Enum): + PROSUMER = 1 + DISTRICT = 2 + +simulation_scope = SimulationScope.DISTRICT +t_start = pd.Timestamp("2019-01-01 00:00:00") # start time of simulation +t_horizon = 100 # number of time steps to be simulated +t_step = 1 # length of a time step in hours + +input_profile_dict = {'irradiance_1': ['irradiance', 'input_files/data/irradiance/Lindenberg2006BSRN_Irradiance_60sec.csv'], + 'temperature_1': ['air_temperature', 'input_files/data/temperature/temperature.csv'], + 'demand_electric_1': ['elec_demand', 'generate', 3000], + 'demand_heat_1': ['therm_demand', 'generate', 6000, 'temperature_1'], + 'demand_hot_water_1': ['hot_water_demand', 'generate', 1500, 'temperature_1'], + 'irradiance_2': ['irradiance', 'input_files/data/irradiance/Lindenberg2006BSRN_Irradiance_60sec.csv'], + 'temperature_2': ['air_temperature', 'input_files/data/temperature/temperature.csv'], + 'demand_electric_2': ['elec_demand', 'generate', 3000], + 'demand_heat_2': ['therm_demand', 'generate', 6000, 'temperature_2'], + 'demand_hot_water_2': ['hot_water_demand', 'generate', 1500, 'temperature_2'], + 'irradiance_3': ['irradiance', 'input_files/data/irradiance/Lindenberg2006BSRN_Irradiance_60sec.csv'], + 'temperature_3': ['air_temperature', 'input_files/data/temperature/temperature.csv'], + 'demand_electric_3': ['elec_demand', 'generate', 0], + 'demand_heat_3': ['therm_demand', 'generate', 0, 'temperature_3'], + 'demand_hot_water_3': ['hot_water_demand', 'generate', 0, 'temperature_3'], + 'elec_price_1': ['elec_price', 'input_files/data/prices/day-ahead/hourly_price.csv']} + +inputpath_dataframe=r'C:\git\ineed-dc-framework\input_files\models\prosumer_models\building_types_aachen\prosumer_type_configs' +b=pd.read_csv(inputpath_dataframe) + + +for i in b.index: + input_profile_dict['demand_electric_'+ str(i)] = ['elec_demand', 'generate', b.loc[i,'Electricity_demand']] + input_profile_dict['demand_heat_'+ str(i)] = ['therm_demand', 'generate', b.loc[i,'Thermal_demand'], 'temperature_1'] + input_profile_dict['demand_hot_water_'+ str(i)] = ['hot_water_demand', 'generate', b.loc[i,'HotWater_demand'], 'temperature_1'] + +input_profiles = Tooling.input_profile_processor.input_profile_processor.process_input_profiles(input_profile_dict, t_start, t_horizon, t_step) + +# 'config_path': path to global configurations like prices, injection prices, emission costs, etc. +# 'topology_path': path to directory that contains the matrices that define the prosumer topology +prosumer_dict = {} + +for i in b.index: + if 'PV' in b.loc[i,'ID_building'] and 'HP' in b.loc[i, 'ID_building']: + prosumer_dict[b.loc[i,'ID_building']]= {'config_path': 'input_files/models/prosumer_models/building_types_aachen/' + + str(b.loc[i,'ID_building']) + '/config.csv', + 'topology_path': 'input_files/models/prosumer_models/building_types_aachen/' + + str(b.loc[i,'ID_building']), + 'profiles':{'elec_cns': 'demand_electric_'+ str(i), + 'therm_cns': 'demand_heat_'+ str(i), + 'dhw_dmd': 'demand_hot_water_'+ str(i), + 'pv_roof': ['irradiance_1', 'temperature_1'], + 'heat_pump': 'temperature_1'}} + elif 'PV' in b.loc[i,'ID_building']: + prosumer_dict[b.loc[i, 'ID_building']] = { + 'config_path': 'input_files/models/prosumer_models/building_types_aachen/' + + str(b.loc[i, 'ID_building']) + '/config.csv', + 'topology_path': 'input_files/models/prosumer_models/building_types_aachen/' + + str(b.loc[i, 'ID_building']), + 'profiles': {'elec_cns': 'demand_electric_'+ str(i), + 'therm_cns': 'demand_heat_'+ str(i), + 'dhw_dmd': 'demand_hot_water_'+ str(i), + 'pv_roof': ['irradiance_1', 'temperature_1']}} + else: + prosumer_dict[b.loc[i, 'ID_building']] = { + 'config_path': 'input_files/models/prosumer_models/building_types_aachen/' + + str(b.loc[i, 'ID_building']) + '/config.csv', + 'topology_path': 'input_files/models/prosumer_models/building_types_aachen/' + + str(b.loc[i, 'ID_building']), + 'profiles': {'elec_cns': 'demand_electric_' + str(i), + 'therm_cns': 'demand_heat_' + str(i), + 'dhw_dmd': 'demand_hot_water_' + str(i)}} - # Start main programme - prosumer = main.Main(data_source, - {prosumer_name: prosumer_dict[prosumer_name]}, - t, t_end_loop, t_step, - predictions, t_current_value_length, t_end, - t_history, commentary, storage_states, - t_rh_shift, aggregation=options.aggregate) +num=0 - # Run optimization - prosumer.run_optimization(prosumer.prosumer_name_list) +""" +prosumer_dict = {'SCN2_CAT1_PV11_3000_6000':{'config_path': 'input_files/models/prosumer_models/SCN2_CAT1_PV11/config.csv', + 'topology_path': 'input_files/models/prosumer_models/SCN2_CAT1_PV11', + 'profiles': {'pv_roof': ['irradiance_1', 'temperature_1'], + 'elec_cns': 'demand_electric_1', + 'therm_cns': 'demand_heat_1', + 'dhw_dmd': 'demand_hot_water_1'}}, + 'SCN0_CAT1_3000_6000': {'config_path': 'input_files/models/prosumer_models/SCN0_CAT1/config.csv', + 'topology_path': 'input_files/models/prosumer_models/SCN0_CAT1', + 'profiles': {'elec_cns': 'demand_electric_2', + 'therm_cns': 'demand_heat_2', + 'dhw_dmd': 'demand_hot_water_2'}}} +""" - # Show results - Results are only plotted after last iteration of rolling horizon - prosumer.show_results(prosumer.prosumer_name_list, interim_results, - final_iteration) +prosumer_main = main_prosumer.ProsumerMain(prosumer_dict, input_profiles, t_horizon, t_step) - # Get storage states from this iteration - storage_states = prosumer.charge_status +prosumer_sizing_strategy = 'annuity' +prosumer_main.optimize_sizing(prosumer_sizing_strategy) - # Get interim results of current rolling horizon interval - interim_results = prosumer.interim_results - except ValueError: - print(prosumer_name + " could not be optimized!") +prosumer_main.save_results() +prosumers = prosumer_main.prosumers -# # MAIN PROGRAM ------------------------------------------------------------------------------------------------------- -if __name__ == "__main__": - """ - The method XYZ adds ... - :param - XYZ: - :returns - XYZ - """ - # Initialization scenario path and global variables for the prosumer optimization - # Start timer - start = time.time() +if simulation_scope == SimulationScope.PROSUMER: + exit() - # PLEASE CHANGE HERE - # Path to local data - this is only used when selecting local mode - # 'topology_path': path to matrices that define the prosumer topology - # 'config_path': path to global configurations like prices, injection prices, emission costs, etc. - '''topology_path = 'input_files/scenarios/Study_Base' - config_path = topology_path + '/config.csv' - data_path = topology_path + '/data_path.csv' - prosumer_name = 'office' - prosumer_dict = {prosumer_name: {'topology_path': topology_path, 'config_path': config_path, 'data_path': data_path}} - topology_path = ['input_files/models/SCN0_CAT1'] - prosumer_name = ['SCN0_CAT1'] - rolling_horizon = [False] - elec_demand = [1500, 10000] - therm_demand = [5000, 20000] - hot_water_demand = 1500 # [1500, 1500] - step_elec_demand = 500 - step_therm_demand = 500 - step_hot_water_demand = 0 - prosumer_dict = {} - for i in range(len(prosumer_name)): - for j in range(elec_demand[0], elec_demand[1], step_elec_demand): - for k in range(therm_demand[0], therm_demand[1], step_therm_demand): - #for l in range(hot_water_demand[0], hot_water_demand[1], step_hot_water_demand): - prosumer_dict[prosumer_name[i]+'_'+str(j)+'_'+str(k)] = {'elec_demand': j, - 'therm_demand': k, - 'hot_water_demand': hot_water_demand, - 'topology_path': topology_path[i], - 'config_path': topology_path[i] + '/config.csv', - 'data_path': topology_path[i] + '/data_path.csv', - 'rolling_horizon': rolling_horizon[i]}''' - ''' - prosumer_dict = { - 'office_pv_heatpump': {'elec_demand': 50040.21685, - 'therm_demand': 201430.15328199, - 'hot_water_demand': 14500.211719135, - 'topology_path': 'input_files/models/prosumer_models/office_pv_heatpump', - 'config_path': 'input_files/models/prosumer_models/office_pv_heatpump/config.csv', - 'data_path': 'input_files/models/prosumer_models/office_pv_heatpump/data_path.csv', - 'rolling_horizon': False} +district_assets_dict = {'da_bat': {'config_path': 'input_files/models/district_models/example_CA/config.csv', + 'topology_path': 'input_files/models/district_models/example_CA', + 'profiles': {'elec_cns': 'demand_electric_3'}}} - } - ''' - prosumer_dict = {} - inputpath_dataframe='C:/GIT/ineed-dc-framework/Tooling/quarter_data_extraction/DataFrame/OUTPUT/OUTPUT_S3B/Quarter_Prosumers/running_info.csv' - b=pd.read_csv(inputpath_dataframe) - for i in b.index: - prosumer_dict[b.loc[i,'ID_building']]= { - 'elec_demand': b.loc[i,'Electricity_demand'], - 'therm_demand': b.loc[i,'Thermal_demand'], - 'hot_water_demand': b.loc[i,'HotWater_demand'], - 'topology_path': 'Tooling/quarter_data_extraction/DataFrame/OUTPUT/OUTPUT_S3B/Quarter_Prosumers/'+str(b.loc[i,'ID_building']), - 'config_path': 'Tooling/quarter_data_extraction/DataFrame/OUTPUT/OUTPUT_S3B/Quarter_Prosumers/'+str(b.loc[i,'ID_building'])+'/config.csv', - 'data_path': 'Tooling/quarter_data_extraction/DataFrame/OUTPUT/OUTPUT_S3B/Quarter_Prosumers/'+str(b.loc[i,'ID_building'])+'/data_path.csv', - 'profile': str(b.loc[i,'Profile']), - 'rolling_horizon': False} +district_assets = main_prosumer.DistrictAssetMain(district_assets_dict, input_profiles, t_horizon, t_step).district_assets - # PLEASE CHANGE HERE - # Select data source - # Options: '1': import from database, '2': import from local folder - data_source = 2 - reference_results = {} - commentary = True - no_process_bar_rh = True - parallel_processing = False +district_dict = {'community': {'config_path': 'input_files/models/district_models/example_community/config.csv', + 'profiles': {'elec_price': 'elec_price_1'}}} - # Timer output - tic = time.time() - # Start program - # Run multiple independent prosumers in parallel on multiple cores - if parallel_processing: - count_processes = len(prosumer_dict.keys()) - pool = Pool(os.cpu_count()) - parallel_func = partial(process_each_prosumer, - prosumer_dict=prosumer_dict, - data_source=data_source, - commentary=commentary, - no_process_bar_rh=no_process_bar_rh) - mapped_values = list( - tqdm(pool.map(parallel_func, list(prosumer_dict.keys())), - total=count_processes)) - # Normal processing, one core only - else: - for prosumer_name in list(prosumer_dict.keys()): - process_each_prosumer(prosumer_name=prosumer_name, - prosumer_dict=prosumer_dict, - data_source=data_source, - commentary=commentary, - no_process_bar_rh=no_process_bar_rh) +district_main = main_district.DistrictMain(district_dict, prosumers, district_assets, input_profiles, t_horizon, t_step) - # Timer output - toc = time.time() +district_sizing_strategy = 'max_operational_profit' +district_main.optimize_sizing(district_sizing_strategy) - # if reference_results: - # for topology in prosumer_name: - # Plot_savings(reference_results, topology) +district_operation_strategy = 'max_operational_profit' +district_main.optimize_operation(district_operation_strategy) - # Timer output - end = time.time() - # Additional console output - if commentary: - print("============ Execution Times =============") - print("Pre-processing [s]: \t" + str(tic - start)) - # print("(Interaction with database [s]:\t" + str(prosumer.connect_with_db) + ")") - print("Optimization [s]: \t" + str(toc - tic)) - print("Post-processing [s]: \t" + str(end - toc)) - print("----------------------------------------") - print("Total [s]: \t" + str((end - toc) + (toc - tic) + (tic - start))) - print("==========================================") +district_main.save_results() diff --git a/runme_community.py b/runme_community.py deleted file mode 100644 index 862acd2ea87b70582a5a5770c02a469bfc6d8715..0000000000000000000000000000000000000000 --- a/runme_community.py +++ /dev/null @@ -1,106 +0,0 @@ -import time -import pandas as pd -import Tooling.input_profile_processor.input_profile_processor -import Model_Library.Prosumer.main as main -import Model_Library.District.main_district as main_district -from functools import partial -from multiprocessing import Pool -import ray -from tqdm import tqdm -import os - -def process_each_prosumer(prosumer_name, prosumer_specification, input_profiles, t_start, t_horizon, t_step, prosumer_strategy): - prosumer = main.Main(prosumer_name, prosumer_specification, input_profiles, t_start, t_horizon, t_step) - - prosumer.run_optimization(prosumer_strategy) - - prosumer.show_results() - - print("Finished prosumer " + prosumer_name) - - return prosumer.prosumer - -t_start = pd.Timestamp("2019-01-01 00:00:00") # start time of simulation -t_horizon = 100 # number of time steps to be simulated -t_step = 1 # length of a time step in hours - -# 'topology_path': path to directory that contains the matrices that define the prosumer topology -# 'config_path': path to global configurations like prices, injection prices, emission costs, etc. -# start community at 17:51 -community=[77, 215, 179] -for c in community: - #change inputpath - pass -#--------------------------------change line 67 of main to change output folder----------------------------------------# -prosumer_dict = {} -inputpath_dataframe='/home/jou-fsa/PycharmProjects/ineed-dc-framework/input_files/models/prosumer_models/Building_2019/running_77_2019.csv' -b=pd.read_csv(inputpath_dataframe) -input_profile_dict = {'irradiance': ['irradiance', '/home/jou-fsa/PycharmProjects/ineed-dc-framework/input_files/data/irradiance/irr_ren_ninja_avg_Germany.csv'], - 'temperature': ['air_temperature', '/home/jou-fsa/PycharmProjects/ineed-dc-framework/input_files/data/temperature/temperature_ren_ninja_avrg_germany.csv'], - 'elec_price_1': ['elec_price', '/home/jou-fsa/PycharmProjects/ineed-dc-framework/input_files/data/prices/day-ahead/hourly_price.csv']} -for i in b.index: - input_profile_dict['demand_electric_'+ str(i)] = ['elec_demand', 'generate', b.loc[i,'referance_el_demand'], b.loc[i,'profile_el']] - input_profile_dict['demand_heat_'+ str(i)] = ['therm_demand', 'generate', b.loc[i,'referance_heat_demand'],b.loc[i,'profile_th'], b.loc[i,'Building_type'], 'temperature'] - input_profile_dict['demand_hot_water_'+ str(i)] = ['hot_water_demand', 'generate', b.loc[i,'referance_hot_water'], b.loc[i,'profile_th'], b.loc[i,'Building_type'], 'temperature'] - prosumer_dict[b.loc[i,'name_building']]= {'topology_path': '/home/jou-fsa/PycharmProjects/ineed-dc-framework/input_files/models/prosumer_models/Building_2019/'+str(b.loc[i,'ID_Building']), - 'config_path': '/home/jou-fsa/PycharmProjects/ineed-dc-framework/input_files/models/prosumer_models/Building_2019/'+str(b.loc[i,'ID_Building'])+'/config.csv', - 'profiles':{'irradiance': 'irradiance', - 'air_temperature': 'temperature', - 'elec_demand': 'demand_electric_'+ str(i), - 'therm_demand':'demand_heat_'+ str(i), - 'hot_water_demand': 'demand_hot_water_'+ str(i), - 'elec_prices_da': 'elec_price_1'}} - - #'elec_prices_da': 'elec_price_1' - -input_profiles = Tooling.input_profile_processor.input_profile_processor.process_input_profiles(input_profile_dict, t_start, t_horizon, t_step) -prosumer_strategy = ['annuity'] -parallel_processing = False - -# Run multiple independent prosumers in parallel on multiple cores -prosumers = dict.fromkeys(prosumer_dict.keys()) -count_process=len(prosumer_dict.keys()) -#count_process = 10 -ray.init(num_cpus=count_process, local_mode=(not(parallel_processing))) -if parallel_processing: - process_each_prosumer_id=ray.remote(process_each_prosumer) - results_ids=[process_each_prosumer_id.remote(prosumer_name, prosumer_dict[prosumer_name], input_profiles, t_start, t_horizon, t_step, prosumer_strategy) for prosumer_name in prosumer_dict.keys()] - while results_ids: - finished, results_ids = ray.wait(results_ids) - for id in finished: - val=ray.get(id) - prosumers[ray.get(val.get_name.remote())]=val - #count_processes = len(prosumer_dict.keys()) - #pool = Pool(os.cpu_count()) - #parallel_func = partial(process_each_prosumer, input_profiles = input_profiles, t_start = t_start, t_horizon = t_horizon, t_step = t_step, prosumer_strategy = prosumer_strategy) - #mapped_values = list(tqdm(pool.map(parallel_func, list(prosumer_dict.keys()), list(prosumer_dict.values())), total = count_processes)) -# Normal processing, one core only -else: - for prosumer_name in list(prosumer_dict.keys()): - try: - prosumers[prosumer_name] = process_each_prosumer(prosumer_name, prosumer_dict[prosumer_name], input_profiles, t_start, t_horizon, t_step, prosumer_strategy) - except KeyError: - print('Infeasible') - pass - -community_assets_dict = {'ca_bat': {'topology_path': 'input_files/models/district_models/example_CA', - 'config_path': 'input_files/models/district_models/example_CA/config.csv', - 'profiles': {'irradiance': 'irradiance_3', - 'air_temperature': 'temperature_3', - 'elec_demand': 'demand_electric_3', - 'therm_demand': 'demand_heat_3', - 'hot_water_demand': 'demand_hot_water_3'}}} -community_assets_dict = {} - -community_assets_strategy = 'sizing_max_operational_profit' - -community_assets = main.Main_CA(community_assets_dict, input_profiles, t_start, t_horizon, t_step) - -community_dict = {'community': {'config_path': 'input_files/models/district_models/example_community/config.csv', - 'profiles': {'elec_price': 'elec_price_1'}}} - -community_strategy = ['max_operational_profit'] - -community_main = main_district.MainDistrict(community_dict, prosumers, community_assets, input_profiles, t_start, t_horizon, t_step, community_assets_strategy, community_strategy) - -ray.shutdown()