diff --git a/.github/workflows/lint-pytest.yaml b/.github/workflows/lint-pytest.yaml index df703dd93..a15019ada 100644 --- a/.github/workflows/lint-pytest.yaml +++ b/.github/workflows/lint-pytest.yaml @@ -37,6 +37,12 @@ jobs: jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=60 --output output.ipynb 01_minimal_manual_example.ipynb jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=60 --output output.ipynb 02_automated_run_example.ipynb jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=60 --output output.ipynb 03_custom_unit_example.ipynb + # 10_DSU_and_flexibility imports pypsa, whose pinned version (<=0.35.2, see #807) caps + # shapely<2.1 — which has no Python 3.14 wheel — so the install fails on 3.14. Skip it there. + - name: Run network notebook (pypsa) + if: matrix.python-version != '3.14' + run: | + cd examples/notebooks jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=60 --output output.ipynb 10_DSU_and_flexibility.ipynb test: @@ -77,11 +83,16 @@ jobs: run: | pytest -m "not require_learning and not require_network" + # pypsa is pinned <=0.35.2 (see #807), which caps shapely<2.1 with no Python 3.14 wheel, + # so the network extra can't install on 3.14. Skip the network install + tests there; + # the final coverage run auto-skips require_network tests via pytest.importorskip("pypsa"). - name: Install pypsa dependencies + if: matrix.python-version != '3.14' run: | python -m pip install -e .[network] - name: Test with pypsa + if: matrix.python-version != '3.14' run: | pytest -m "require_network and not require_learning" @@ -89,10 +100,18 @@ jobs: run: | python -m pip install -e .[learning] + # On 3.14 the network extra isn't installed (pypsa pin, see #807), so exclude the + # require_network tests — some aren't importorskip-guarded (e.g. world_validation, cli). - name: Test pytest with torch & integration tests + if: matrix.python-version != '3.14' run: | pytest --cov --cov-report=xml --junitxml="result.xml" + - name: Test pytest with torch & integration tests (skip network) + if: matrix.python-version == '3.14' + run: | + pytest -m "not require_network" --cov --cov-report=xml --junitxml="result.xml" + - name: Upload tests results uses: actions/upload-artifact@v7.0.0 if: always() diff --git a/assume/common/forecaster.py b/assume/common/forecaster.py index 4c6a91e96..528db95f5 100644 --- a/assume/common/forecaster.py +++ b/assume/common/forecaster.py @@ -663,7 +663,11 @@ def update(self, *args, **kwargs): *args, **kwargs, ) - self.congestion_signal = self._dict_to_series(self.congestion_signal) + self.congestion_signal = ( + self._dict_to_series(self.congestion_signal) + if isinstance(self.congestion_signal, dict) + else self._to_series(self.congestion_signal) + ) renewable_utilisation_update_algorithm_name = self.forecast_algorithms.get( "update_renewable_utilisation", "renewable_utilisation_default" @@ -677,19 +681,28 @@ def update(self, *args, **kwargs): *args, **kwargs, ) - self.renewable_utilisation_signal = self._dict_to_series( - self.renewable_utilisation_signal + self.renewable_utilisation_signal = ( + self._dict_to_series(self.renewable_utilisation_signal) + if isinstance(self.renewable_utilisation_signal, dict) + else self._to_series(self.renewable_utilisation_signal) ) class SteelplantForecaster(DsmUnitForecaster): """Forecaster for steelplant units. - Provides all DSM forecasts (see :class:`DsmUnitForecaster`) plus fuel prices. + Provides all DSM forecasts (see :class:`DsmUnitForecaster`) plus fuel prices and steel demand. After initialization, DSM signals are copied to the unit and ``setup_model()`` is called. + Supports three operational strategies: + 1. **Profile-guided**: If ``normalized_load_profile`` is provided, production follows the profile shape. + 2. **Min-demand**: If hourly minimum demand (``steel_demand``) is provided, meets per-hour minimums. + 3. **Cost-optimized**: If neither is provided, minimizes cost without shape constraints. + Attributes: fuel_prices (dict[str, ForecastSeries]): Map of fuel type to forecasted fuel prices. + steel_demand (ForecastSeries): Per-timestep steel production demand (optional). + normalized_load_profile (ForecastSeries): Normalized profile to guide production shape (optional). """ def __init__( @@ -704,6 +717,8 @@ def __init__( congestion_signal: ForecastSeries = 0.0, renewable_utilisation_signal: ForecastSeries = 0.0, electricity_price: ForecastSeries = None, + steel_demand: ForecastSeries = None, + normalized_load_profile: ForecastSeries = None, ): super().__init__( index=index, @@ -717,6 +732,14 @@ def __init__( electricity_price=electricity_price, ) self.fuel_prices = self._dict_to_series(fuel_prices) + self.steel_demand = ( + self._to_series(steel_demand) if steel_demand is not None else None + ) + self.normalized_load_profile = ( + self._to_series(normalized_load_profile) + if normalized_load_profile is not None + else None + ) def get_price(self, fuel: str) -> FastSeries: if fuel not in self.fuel_prices: @@ -737,14 +760,78 @@ def initialize( initializing_unit, ) + # Always set standard DSM signals initializing_unit.electricity_price = self.electricity_price initializing_unit.congestion_signal = self.congestion_signal initializing_unit.renewable_utilisation_signal = ( self.renewable_utilisation_signal ) + # Get the unit's ID for dynamic attribute naming + unit_id = str(getattr(initializing_unit, "id", None)) + + # Set ID-prefixed attributes for operational strategy selection + # Strategy 1: Normalized load profile (if provided) + if self.normalized_load_profile is not None and unit_id: + profile_attr = f"{unit_id}_normalized_load_profile" + setattr(initializing_unit, profile_attr, self.normalized_load_profile) + + # Strategy 2: Hourly minimum steel demand (if provided) + if self.steel_demand is not None and unit_id: + demand_attr = f"{unit_id}_steel_demand" + setattr(initializing_unit, demand_attr, self.steel_demand) + + # Backward compatibility: also set non-prefixed attributes + if self.steel_demand is not None: + initializing_unit.steel_demand_per_timestep = self.steel_demand + + if self.normalized_load_profile is not None: + initializing_unit.normalized_load_profile = self.normalized_load_profile + initializing_unit.setup_model() + def update(self, *args, **kwargs): + """Update DSM-specific forecasts including adaptive electricity price learning. + + Calls parent update for DSM signals (congestion, renewable utilisation), + then updates electricity price using the configured algorithm. If using + the adaptive price learning algorithm, clears prices are extracted from + the unit's outputs and used to forecast next period. + + Args: + *args: Passed through to the underlying update algorithms. + **kwargs: Passed through to the underlying update algorithms, must include 'unit'. + """ + # Call parent DsmUnitForecaster.update() for DSM signals + super().update(*args, **kwargs) + + # Update electricity price via configured algorithm + price_update_algorithm_name = self.forecast_algorithms.get( + "update_price", "price_default" + ) + price_update_algorithm = self._registries["update"].get( + price_update_algorithm_name + ) + + if price_update_algorithm is not None: + # Call the price update algorithm (may be price_default or adaptive) + self.price = price_update_algorithm( + self.price, + self.preprocess_information.get("price", {}), + *args, + **kwargs, + ) + self.price = self._dict_to_series(self.price) + + # Sync electricity_price with updated price from EOM market + if "EOM" in self.price: + self.electricity_price = self.price["EOM"] + + # Push updated price to the unit so it uses the latest forecast in optimization + unit = kwargs.get("unit") + if unit is not None: + unit.electricity_price = self.electricity_price + class SteamgenerationForecaster(DsmUnitForecaster): """Forecaster for steam generation units. diff --git a/assume/scenario/loader_csv.py b/assume/scenario/loader_csv.py index 2b250e1f5..ca6c6e834 100644 --- a/assume/scenario/loader_csv.py +++ b/assume/scenario/loader_csv.py @@ -169,6 +169,9 @@ def load_dsm_units( - The CSV file is expected to have columns such as 'name', 'technology', 'unit_type', and other operational parameters. - The function assumes that the first non-null value in common and bidding columns is representative if multiple entries exist for the same plant. + - Rolling-horizon optimisation settings (``horizon_mode``, ``look_ahead_horizon``, ``commit_horizon``, + ``rolling_step``) are read as optional per-plant columns. They are assembled into the + ``dsm_optimisation_config`` dict passed to the unit constructor. - It is crucial that the input CSV file follows the expected structure for the function to process it correctly. """ @@ -196,6 +199,7 @@ def load_dsm_units( "is_prosumer", "congestion_threshold", "peak_load_cap", + "load_profile_deviation", ] # Filter the common columns to only include those that exist in the DataFrame common_columns = [col for col in common_columns if col in dsm_units.columns] @@ -203,6 +207,19 @@ def load_dsm_units( # Get bidding columns dynamically bidding_columns = [col for col in dsm_units.columns if col.startswith("bidding_")] + # Rolling-horizon optimisation columns (per-plant, optional). Filled on the first + # technology row of each plant; assembled into a dsm_optimisation_config dict below. + dsm_opt_columns = [ + col + for col in [ + "horizon_mode", + "look_ahead_horizon", + "commit_horizon", + "rolling_step", + ] + if col in dsm_units.columns + ] + # Initialize the dictionary to hold the final structured data dsm_units_dict = {} @@ -219,9 +236,13 @@ def load_dsm_units( # Process each technology within the plant components = {} for tech, tech_data in group.groupby("technology"): - # Clean the technology-specific data: drop all-NaN columns and drop 'technology', common, and bidding columns + # Clean the technology-specific data: drop all-NaN columns and drop 'technology', common, + # bidding, and DSM optimisation columns cleaned_data = tech_data.dropna(axis=1, how="all").drop( - columns=["technology"] + common_columns + bidding_columns, + columns=["technology"] + + common_columns + + bidding_columns + + dsm_opt_columns, errors="ignore", ) # Ensure that there is at least one record before adding to components @@ -229,6 +250,17 @@ def load_dsm_units( components[tech] = cleaned_data.to_dict(orient="records")[0] dsm_unit["components"] = components + + # Assemble per-plant rolling-horizon config from CSV columns (if any values present) + if dsm_opt_columns: + opt_cfg = {} + for col in dsm_opt_columns: + non_null_values = group[col].dropna() + if not non_null_values.empty: + opt_cfg[col] = non_null_values.iloc[0] + if opt_cfg: + dsm_unit["dsm_optimisation_config"] = opt_cfg + dsm_units_dict[name] = dsm_unit # Convert the structured dictionary into a DataFrame @@ -591,11 +623,7 @@ def load_config_and_create_forecaster( # Initialize an empty dictionary to combine the DSM units dsm_units = {} for unit_type in ["industrial_dsm_units", "residential_dsm_units"]: - units = load_dsm_units( - path=path, - config=config, - file_name=unit_type, - ) + units = load_dsm_units(path=path, config=config, file_name=unit_type) if units is not None: dsm_units.update(units) @@ -746,13 +774,38 @@ def get_building_profile(column_name: str) -> pd.Series: **extra_building_profiles, ) if type == "steel_plant": + # Fetch ID-prefixed data for operational strategy selection + # Strategy 1: Normalized load profile (profile-guided operation) + normalized_profile = None + profile_col = f"{id}_normalized_load_profile" + + steel_demand = None + demand_col = f"{id}_steel_demand" + if forecasts_df is not None: + if profile_col in forecasts_df.columns: + normalized_profile = forecasts_df[profile_col] + elif "normalized_load_profile" in forecasts_df.columns: + # Fallback: use generic column if ID-specific not found + normalized_profile = forecasts_df["normalized_load_profile"] + + # Strategy 2: Hourly minimum steel demand (min-demand operation) + if demand_col in forecasts_df.columns: + steel_demand = forecasts_df[demand_col] + elif "steel_demand" in forecasts_df.columns: + # Fallback: use generic column if ID-specific not found + steel_demand = forecasts_df["steel_demand"] + unit_forecasts[id] = SteelplantForecaster( index=shared_unit_index, availability=availability.get( id, pd.Series(1.0, index, name=id) ), + market_prices=unit.get("market_prices"), forecast_algorithms=unit_forecast_algorithms, + forecast_registries=None, fuel_prices=fuel_prices_df, + normalized_load_profile=normalized_profile, + steel_demand=steel_demand, ) if type == "hydrogen_plant": unit_forecasts[id] = HydrogenForecaster( diff --git a/assume/strategies/naive_strategies.py b/assume/strategies/naive_strategies.py index e6499a019..8e18486cb 100644 --- a/assume/strategies/naive_strategies.py +++ b/assume/strategies/naive_strategies.py @@ -147,6 +147,9 @@ class DsmEnergyOptimizationStrategy(MinMaxStrategy): """ A naive strategy of a Demand Side Management (DSM) unit. The bid volume is the optimal power requirement of the unit at the start time of the product. The bid price is the marginal cost of the unit at the start time of the product. + + For rolling-horizon configured units, this strategy triggers re-optimization at each market clearing round, + ensuring the unit optimizes for the next window using updated state and remaining demand. """ def calculate_bids( @@ -169,8 +172,19 @@ def calculate_bids( Orderbook: The bids consisting of the start time, end time, only hours, price and volume. """ - # check if unit has opt_power_requirement attribute - if unit.optimisation_counter == 0: + if unit.horizon_mode == "rolling_horizon": + current_market_time = product_tuples[0][0] + # Hook to refresh runtime forecasts before re-optimising the next window. + # Currently the configured update algorithms default to no-ops; the hook is + # kept so price/forecast learning can be plugged in without touching strategies. + unit.forecaster.update(unit=unit) + did_reoptimize = unit._check_and_reoptimize_rolling_window( + current_market_time + ) + if not did_reoptimize and unit.optimisation_counter == 0: + unit.determine_optimal_operation_with_flex() + unit.optimisation_counter = 1 + elif unit.optimisation_counter == 0: unit.determine_optimal_operation_with_flex() unit.optimisation_counter = 1 @@ -201,6 +215,8 @@ class DsmEnergyNaiveRedispatchStrategy(MinMaxStrategy): """ A naive strategy of a Demand Side Management (DSM) unit that bids the available flexibility of the unit on the redispatch market. The bid volume is the flexible power requirement of the unit at the start time of the product. The bid price is the marginal cost of the unit at the start time of the product. + + For rolling-horizon configured units, this strategy triggers re-optimization at each market clearing round. """ def calculate_bids( @@ -210,6 +226,14 @@ def calculate_bids( product_tuples: list[Product], **kwargs, ) -> Orderbook: + if unit.horizon_mode == "rolling_horizon": + current_market_time = product_tuples[0][0] + # Hook to refresh runtime forecasts before re-optimising the next window. + # Currently the configured update algorithms default to no-ops; the hook is + # kept so price/forecast learning can be plugged in without touching strategies. + unit.forecaster.update(unit=unit) + unit._check_and_reoptimize_rolling_window(current_market_time) + # calculate the optimal operation of the unit according to the objective function unit.determine_optimal_operation_with_flex() diff --git a/assume/units/dsm_load_shift.py b/assume/units/dsm_load_shift.py index 47b16b137..516b1450c 100644 --- a/assume/units/dsm_load_shift.py +++ b/assume/units/dsm_load_shift.py @@ -2,10 +2,12 @@ # # SPDX-License-Identifier: AGPL-3.0-or-later +import copy import logging from collections.abc import Callable from datetime import datetime +import pandas as pd import pyomo.environ as pyo from pyomo.opt import ( SolverFactory, @@ -13,7 +15,7 @@ TerminationCondition, ) -from assume.common.fast_pandas import FastSeries +from assume.common.fast_pandas import FastIndex, FastSeries from assume.common.utils import get_supported_solver_pyomo from assume.units.dst_components import demand_side_technologies @@ -41,12 +43,49 @@ class DSMFlex: } big_M = 10000000 + # Rolling-horizon extensibility hooks (override in subclasses) + # Set _demand_attr_suffix to the instance attribute that holds total demand + # (e.g. "steel_demand" → self.steel_demand). None means no demand tracking. + _demand_attr_suffix: str | None = None + # Per-block extraction schema used by _extract_component_operations. + # Format: {block_name: (pwr_attr, out_attr, pwr_col_name, out_col_name)} + _component_schema: dict = {} + # Additional time-series attributes (full-horizon length) that must be + # saved and sliced to the window during _solve_rolling_horizon_next_window. + _extra_price_attrs: list = [] + def __init__(self, components, **kwargs): + # Extract rolling-horizon optimisation config before passing **kwargs up the MRO. + dsm_opt = kwargs.pop("dsm_optimisation_config", None) + if not isinstance(dsm_opt, dict): + dsm_opt = {} + super().__init__(**kwargs) self.components = components self.solver = SolverFactory(get_supported_solver_pyomo()) + # Rolling-horizon settings (populated from config; default is full horizon) + self.horizon_mode = dsm_opt.get("horizon_mode", "full_horizon") + self._rh_look_ahead = dsm_opt.get("look_ahead_horizon") # e.g. "72h" + self._rh_commit = dsm_opt.get("commit_horizon") # e.g. "24h" + self._rh_step = dsm_opt.get("rolling_step") # e.g. "24h" + + # Rolling-horizon state tracking (for per-market-round re-optimization) + self._rh_optimized_until_step = ( + 0 # How far we've optimized (in full horizon steps) + ) + self._rh_window_remaining_demand = ( + None # Remaining demand in current rolling-horizon window + ) + + if self.horizon_mode == "rolling_horizon": + if not all([self._rh_look_ahead, self._rh_commit, self._rh_step]): + raise ValueError( + "Rolling horizon mode requires look_ahead_horizon, " + "commit_horizon, and rolling_step to be specified." + ) + def initialize_components(self): """ Initializes the DSM components by creating and adding blocks to the model. @@ -108,6 +147,13 @@ def setup_model(self, presolve=True): # and the objective functions self.optimisation_counter = 0 + + # Snapshot the component *dicts* (including any time-series injected by the + # subclass __init__, e.g. pv_profile) before initialize_components() replaces + # them with Pyomo component instances. This snapshot is used by the rolling- + # horizon solver to rebuild a fresh model for each look-ahead window. + self._orig_components_dict = copy.deepcopy(self.components) + self.model = pyo.ConcreteModel() self.define_sets() self.define_parameters() @@ -691,15 +737,734 @@ def obj_rule_flex(m): return maximise_renewable_utilisation + # ------------------------------------------------------------------ + # Rolling-horizon helpers + # ------------------------------------------------------------------ + + def _parse_duration_to_steps(self, duration_str: str) -> int: + """Convert a duration string such as '24h' or '72h' to an integer + number of time steps, based on the current ``self.index.freq``.""" + duration_seconds = pd.to_timedelta(duration_str).total_seconds() + step_seconds = self.index.freq.total_seconds() + return int(duration_seconds / step_seconds) + + def _collect_series_attrs_for_window( + self, window_start: int, window_end: int, full_len: int + ) -> dict: + """Replace every :class:`FastSeries` attribute whose length matches the + full simulation horizon with the corresponding numpy slice for the + current window. + + Returns a dict of ``{attr_name: original_FastSeries}`` that is used by + :meth:`_restore_series_attrs` to undo the substitution afterwards. + """ + saved: dict = {} + for attr_name, val in list(self.__dict__.items()): + if isinstance(val, FastSeries) and len(val) == full_len: + saved[attr_name] = val + # Replace with a plain numpy slice; enumerate() works on ndarrays + # so define_parameters() calls enumerate(self.attr) still work. + setattr(self, attr_name, val.data[window_start:window_end]) + return saved + + def _restore_series_attrs(self, saved_attrs: dict) -> None: + """Restore unit-level attributes previously saved by + :meth:`_collect_series_attrs_for_window`.""" + for attr_name, val in saved_attrs.items(): + setattr(self, attr_name, val) + + def _deep_slice_component_data( + self, + comp_data, + window_start: int, + window_end: int, + full_len: int, + ): + """Recursively copy *comp_data*, replacing any :class:`FastSeries` values + of length *full_len* with a new :class:`FastSeries` aligned to the current + window index (``self.index`` must already be the window :class:`FastIndex` + at the time this is called). + + Dicts are recursed into; all other types are returned unchanged. + """ + if isinstance(comp_data, dict): + return { + k: self._deep_slice_component_data( + v, window_start, window_end, full_len + ) + for k, v in comp_data.items() + } + if isinstance(comp_data, FastSeries) and len(comp_data) == full_len: + window_data = comp_data.data[window_start:window_end] + return FastSeries(index=self.index, value=window_data) + return comp_data + + def _prepare_window_components( + self, + window_start: int, + window_end: int, + full_len: int, + init_states: dict, + remaining_demand: float = None, + ) -> dict: + """Build a fresh dict-of-dicts for the components in the current window. + + Concretely this: + * deep-copies ``self._orig_components_dict`` (preserving dict structure), + * slices any nested :class:`FastSeries` to the window length, + * patches ``initial_soc`` for stateful storage components using the + state carried over from the previous committed period, + * patches operational_status, start_up, shut_down states for generation units, + * patches remaining_demand for steel plants (cumulative demand tracking). + + ``self.index`` must already be the window :class:`FastIndex` at call time. + """ + window_comps: dict = {} + for tech_name, comp_data in self._orig_components_dict.items(): + sliced = self._deep_slice_component_data( + comp_data, window_start, window_end, full_len + ) + # Patch carried-over state variables for this technology + if tech_name in init_states: + state_dict = init_states[tech_name] + # Patch SoC if present (storage components) + if "soc" in state_dict: + sliced["initial_soc"] = state_dict["soc"] + # Patch operational status if present (generation/load units) + if "operational_status" in state_dict: + sliced["initial_operational_status"] = state_dict[ + "operational_status" + ] + # Note: start_up and shut_down are derived from operational_status transitions, + # so they don't need to be explicitly patched + window_comps[tech_name] = sliced + + # Store remaining_demand as an instance attribute (not in components dict) + # so rolling-horizon constraints can access it without polluting the components + if remaining_demand is not None and self._has_demand_tracking: + self._rh_window_remaining_demand = remaining_demand + + return window_comps + + # ------------------------------------------------------------------ + # Rolling-horizon shared helpers + # ------------------------------------------------------------------ + + @property + def _has_demand_tracking(self) -> bool: + """True when this unit tracks a cumulative production demand across windows.""" + return self._demand_attr_suffix is not None + + def _primary_output_expr(self, m, t): + """Return the Pyomo expression for the unit's primary production output at step *t*. + + Override in subclasses whose rolling-horizon demand tracking is based on + a physical output other than total electrical power input + (e.g. SteelPlant tracks tonnes of steel rather than MWh consumed). + """ + return m.total_power_input[t] + + def _collect_init_states(self) -> dict: + """Collect initial states (SoC, operational_status) from the original component dicts.""" + init_states: dict = {} + for tech, data in self._orig_components_dict.items(): + state: dict = {} + if "initial_soc" in data: + state["soc"] = data["initial_soc"] + if "initial_operational_status" in data: + state["operational_status"] = data["initial_operational_status"] + if state: + init_states[tech] = state + return init_states + + def _update_init_states( + self, instance, commit_local: int, init_states: dict + ) -> None: + """Update *init_states* in-place with end-of-commit values from the solved instance.""" + for tech_name in list(init_states.keys()): + try: + block = instance.dsm_blocks[tech_name] + state: dict = {} + if hasattr(block, "soc"): + state["soc"] = pyo.value(block.soc[commit_local]) + if hasattr(block, "operational_status"): + state["operational_status"] = int( + round(pyo.value(block.operational_status[commit_local])) + ) + if state: + init_states[tech_name] = state + except (KeyError, AttributeError): + pass + + def _detect_operation_strategy(self, N: int, saved_attrs: dict) -> tuple: + """Detect the operation strategy for the current unit. + + Checks for unit-ID-prefixed attributes in precedence order: + *profile_guided* → *min_demand* → *cost_optimized* (default). + + Returns ``(strategy, full_horizon_load_profile, full_horizon_min_demand)``. + Each non-``None`` sequence is padded/truncated to exactly *N* steps and + its original value is preserved in *saved_attrs* for later restoration. + + When ``_demand_attr_suffix`` is ``None`` (no demand tracking) the method + always returns ``("cost_optimized", None, None)``. + """ + if not self._has_demand_tracking: + return "cost_optimized", None, None + + unit_id = str(getattr(self, "id", None)) + + def _fit_to_horizon(attr_name: str, pad_value=None): + if not (attr_name and hasattr(self, attr_name)): + return None + val = getattr(self, attr_name) + if val is None: + return None + try: + lst = list(val) + except TypeError: + return None + if not lst: + return None + if len(lst) < N: + lst.extend( + [lst[-1] if pad_value is None else pad_value] * (N - len(lst)) + ) + else: + lst = lst[:N] + if attr_name not in saved_attrs: + saved_attrs[attr_name] = val + return lst + + profile = _fit_to_horizon( + f"{unit_id}_normalized_load_profile" if unit_id else None + ) + if profile is not None: + return "profile_guided", profile, None + + demand = _fit_to_horizon( + f"{unit_id}_{self._demand_attr_suffix}" + if (unit_id and self._demand_attr_suffix) + else None, + pad_value=0.0, + ) + if demand is not None: + return "min_demand", None, demand + + return "cost_optimized", None, None + + def _add_window_demand_constraints( + self, + strategy: str, + remaining_demand: float, + full_horizon_load_profile, + full_horizon_min_demand, + window_start: int, + commit_end: int, + ) -> None: + """Add demand-related constraints to the current window model. + + Uses ``_primary_output_expr`` so subclasses can track any physical output + (e.g. steel tonnes, hydrogen kg) rather than just electrical energy. + """ + # Upper-bound on total window production (skipped for min_demand strategy) + if strategy != "min_demand": + self.model.window_demand_limit = pyo.Param( + initialize=remaining_demand, mutable=True + ) + self.model.window_demand_con = pyo.Constraint( + rule=lambda m: sum( + self._primary_output_expr(m, t) for t in m.time_steps + ) + <= m.window_demand_limit + ) + + if ( + strategy == "profile_guided" + and full_horizon_load_profile is not None + and remaining_demand > 0 + ): + remaining_profile = ( + list(full_horizon_load_profile[window_start:]) + if hasattr(full_horizon_load_profile, "__getitem__") + else list(full_horizon_load_profile)[window_start:] + ) + commit_profile = ( + list(full_horizon_load_profile[window_start:commit_end]) + if hasattr(full_horizon_load_profile, "__getitem__") + else list(full_horizon_load_profile)[window_start:commit_end] + ) + remaining_sum = sum(remaining_profile) if remaining_profile else 1.0 + commit_sum = sum(commit_profile) if commit_profile else 0.0 + if remaining_sum > 0: + fraction = commit_sum / remaining_sum + min_commit = ( + remaining_demand * fraction * (1.0 - self.load_profile_deviation) + ) + n_commit = commit_end - window_start + self.model.min_commit_production = pyo.Param( + initialize=min_commit, mutable=True + ) + self.model.window_min_commit_con = pyo.Constraint( + rule=lambda m: sum( + self._primary_output_expr(m, t) for t in range(n_commit) + ) + >= m.min_commit_production + ) + logger.info( + "[RH-STRATEGY] profile_guided: min_commit=%.1f MWh over %d steps", + min_commit, + n_commit, + ) + + elif strategy == "min_demand" and full_horizon_min_demand is not None: + n_steps = commit_end - window_start + min_window = ( + list(full_horizon_min_demand[window_start:commit_end]) + if hasattr(full_horizon_min_demand, "__getitem__") + else list(full_horizon_min_demand)[window_start:commit_end] + ) + min_window = (min_window + [0.0] * n_steps)[:n_steps] + self.model.min_hourly_demand_param = pyo.Param( + range(n_steps), initialize=dict(enumerate(min_window)) + ) + self.model.min_hourly_demand_con = pyo.Constraint( + range(n_steps), + rule=lambda m, t: self._primary_output_expr(m, t) + >= m.min_hourly_demand_param[t], + ) + logger.info( + "[RH-STRATEGY] min_demand: per-hour constraints over %d steps", n_steps + ) + + else: + logger.info("[RH-STRATEGY] cost_optimized: pure cost minimisation") + + def _add_profile_soft_constraints( + self, window_start: int, window_end: int, full_horizon_load_profile + ) -> bool: + """Add soft profile-tracking deviation variables and a penalised objective. + + Returns ``True`` if the constraints were added successfully. + """ + try: + window_len = window_end - window_start + window_profile = ( + list(full_horizon_load_profile[window_start:window_end]) + if hasattr(full_horizon_load_profile, "__getitem__") + else list(full_horizon_load_profile)[window_start:window_end] + ) + if len(window_profile) < window_len and window_profile: + window_profile.extend( + [window_profile[-1]] * (window_len - len(window_profile)) + ) + window_profile = window_profile[:window_len] + if ( + not window_profile + or max(window_profile) == 0 + or sum(window_profile) == 0 + ): + return False + + max_power = getattr(self, "max_power", 922.0) + targets = { + t: window_profile[t] * max_power for t in range(len(window_profile)) + } + self.model.profile_dev_pos = pyo.Var( + self.model.time_steps, within=pyo.NonNegativeReals + ) + self.model.profile_dev_neg = pyo.Var( + self.model.time_steps, within=pyo.NonNegativeReals + ) + self.model.profile_target = pyo.Param( + self.model.time_steps, initialize=targets, default=0.0 + ) + + @self.model.Constraint(self.model.time_steps) + def profile_deviation_con(m, t): + return ( + m.total_power_input[t] + == m.profile_target[t] + m.profile_dev_pos[t] - m.profile_dev_neg[t] + ) + + penalty = 10.0 / max(self.load_profile_deviation, 0.01) + self.model.del_component(self.model.obj_rule_opt) + + @self.model.Objective(sense=pyo.minimize) + def obj_rule_opt(m): + return pyo.quicksum( + m.variable_cost[t] for t in m.time_steps + ) + penalty * pyo.quicksum( + m.profile_dev_pos[t] + m.profile_dev_neg[t] for t in m.time_steps + ) + + logger.info( + "[LOAD-PROFILE-RH] Window [%d:%d]: soft constraint active " + "(penalty=%.1f, deviation=%.0%%)", + window_start, + window_end, + penalty, + self.load_profile_deviation * 100, + ) + return True + except Exception as e: + logger.warning( + "[LOAD-PROFILE-RH] Failed to add profile soft constraint: %s. " + "Continuing without.", + e, + ) + return False + + def _solve_with_profile_fallback( + self, load_profile_added: bool, window_start: int, window_end: int + ): + """Create instance and solve; retry without profile penalty if infeasible. + + Returns ``(instance, results)``. + """ + _profile_comps = [ + "profile_deviation_con", + "profile_dev_pos", + "profile_dev_neg", + "profile_target", + "obj_rule_opt", + ] + + def _strip_profile_and_plain_obj(): + for c in _profile_comps: + if hasattr(self.model, c): + self.model.del_component(c) + + @self.model.Objective(sense=pyo.minimize) + def obj_rule_opt(m): + return pyo.quicksum(m.variable_cost[t] for t in m.time_steps) + + instance = self.model.create_instance() + try: + results = self.solver.solve(instance, options={}) + except RuntimeError as e: + if not load_profile_added: + raise + logger.warning( + "[LOAD-PROFILE-RH] Solver error in window [%d:%d] with profile: %.80s. " + "Re-solving without.", + window_start, + window_end, + str(e), + ) + _strip_profile_and_plain_obj() + instance = self.model.create_instance() + results = self.solver.solve(instance, options={}) + load_profile_added = False + + if ( + load_profile_added + and results.solver.status == SolverStatus.ok + and results.solver.termination_condition == TerminationCondition.infeasible + ): + logger.warning( + "[LOAD-PROFILE-RH] Profile infeasible in window [%d:%d]; re-solving without.", + window_start, + window_end, + ) + _strip_profile_and_plain_obj() + instance = self.model.create_instance() + results = self.solver.solve(instance, options={}) + + return instance, results + + def _log_solver_status(self, results, window_start: int, window_end: int) -> None: + """Log the solver termination status for a window.""" + tc = results.solver.termination_condition + if ( + results.solver.status == SolverStatus.ok + and tc == TerminationCondition.optimal + ): + logger.debug("Window [%d:%d] solved optimally.", window_start, window_end) + elif tc == TerminationCondition.infeasible: + logger.warning( + "Window [%d:%d] infeasible — committed values remain zero.", + window_start, + window_end, + ) + else: + logger.warning( + "Window [%d:%d] solver status: %s / %s", + window_start, + window_end, + results.solver.status, + tc, + ) + + def _extract_component_operations( + self, + instance, + window_start: int, + commit_end: int, + saved_index, + ) -> None: + """Append per-component operational data for the committed window steps.""" + if not hasattr(self, "_component_operations"): + self._component_operations = [] + + _block_schema = self._component_schema + + for local_t in range(commit_end - window_start): + global_t = window_start + local_t + row: dict = { + "global_t": global_t, + "timestamp": str(saved_index[global_t]), + } + try: + if hasattr(instance, "dsm_blocks"): + for blk, ( + pwr_attr, + out_attr, + pwr_key, + out_key, + ) in _block_schema.items(): + row[pwr_key] = 0.0 + row[out_key] = 0.0 + if blk not in instance.dsm_blocks: + continue + b = instance.dsm_blocks[blk] + if hasattr(b, pwr_attr) and local_t in getattr(b, pwr_attr): + row[pwr_key] = float( + pyo.value(getattr(b, pwr_attr)[local_t]) + ) + if hasattr(b, out_attr) and local_t in getattr(b, out_attr): + row[out_key] = float( + pyo.value(getattr(b, out_attr)[local_t]) + ) + except Exception as ex: + logger.debug( + "Could not extract component data for t=%d: %s", local_t, ex + ) + self._component_operations.append(row) + + # ------------------------------------------------------------------ + # /Rolling-horizon helpers + # ------------------------------------------------------------------ + + def _check_and_reoptimize_rolling_window(self, current_time) -> bool: + """Check whether to re-optimise for the next rolling window. + + Called by the bidding strategy each time it generates bids. + Returns ``True`` if re-optimisation was performed. + """ + if self.horizon_mode != "rolling_horizon": + return False + + try: + current_step = self.index._get_idx_from_date(current_time) + except (KeyError, ValueError, AttributeError, TypeError) as e: + logger.debug( + "Could not map %s to index step: %s. Skipping re-optimisation.", + current_time, + e, + ) + return False + + if current_step >= self._rh_optimized_until_step: + logger.info( + "[RH-MARKET-TRIGGER] %s | step=%d >= opt_until=%d | " + "re-optimising window for %s", + current_time, + current_step, + self._rh_optimized_until_step, + self.id, + ) + self._solve_rolling_horizon_next_window(current_step) + return True + + return False + + def _solve_rolling_horizon_next_window(self, current_step: int) -> None: + """Optimise the next rolling window starting from *current_step*. + + Called after each market round to re-optimise for the next window only, + using the current component states as the initial condition. + """ + N = len(self.index) + freq = self.index.freq + + if not hasattr(self, "_rh_full_horizon_production"): + self._rh_full_horizon_production = [0.0] * N + + look_ahead_steps = self._parse_duration_to_steps(self._rh_look_ahead) + commit_steps = self._parse_duration_to_steps(self._rh_commit) + + window_start = current_step + window_end = min(window_start + look_ahead_steps, N) + commit_end = min(window_start + commit_steps, N) + + if window_start >= N: + return + + logger.info( + "[RH-WINDOW-START] %s | window=[%d:%d], commit=[%d:%d]", + self.id, + window_start, + window_end, + window_start, + commit_end, + ) + + saved_index = self.index + saved_model = self.model if hasattr(self, "model") else None + saved_components = self.components + + init_states = self._collect_init_states() + + self.index = FastIndex( + start=saved_index[window_start], + end=saved_index[window_end - 1], + freq=freq, + ) + saved_attrs = self._collect_series_attrs_for_window(window_start, window_end, N) + + # Detect operation strategy; preserve full-horizon sequences in saved_attrs + operation_strategy, full_horizon_load_profile, full_horizon_min_demand = ( + self._detect_operation_strategy(N, saved_attrs) + ) + if operation_strategy != "cost_optimized": + logger.info("[RH-SETUP] strategy=%s", operation_strategy) + + # Save full-horizon time-series attributes not yet captured by + # _collect_series_attrs_for_window (subclass-specific, e.g. commodity prices) + for attr_name in self._extra_price_attrs: + if attr_name not in saved_attrs and hasattr(self, attr_name): + val = getattr(self, attr_name) + try: + if len(val) == N and hasattr(val, "__getitem__"): + saved_attrs[attr_name] = val + setattr(self, attr_name, val[window_start:window_end]) + except (TypeError, AttributeError): + pass + + _pending_opr_updates: dict = {} + window_production = 0.0 + + try: + remaining_demand = None + if self._has_demand_tracking: + produced_so_far = sum( + float(v) + for v in self._rh_full_horizon_production[:current_step] + if v and v > 0 + ) + total_demand = getattr(self, self._demand_attr_suffix) + remaining_demand = max(0.0, total_demand - produced_so_far) + logger.info( + "[RH-WINDOW-DEMAND] global=%.2f, produced=%.2f, remaining=%.2f", + total_demand, + produced_so_far, + remaining_demand, + ) + + self.components = self._prepare_window_components( + window_start, window_end, N, init_states, remaining_demand + ) + + self.model = pyo.ConcreteModel() + self.define_sets() + self.define_parameters() + self.define_variables() + self.initialize_components() + self.initialize_process_sequence() + self.define_constraints() + + if remaining_demand is not None and self._has_demand_tracking: + self._add_window_demand_constraints( + operation_strategy, + remaining_demand, + full_horizon_load_profile, + full_horizon_min_demand, + window_start, + commit_end, + ) + + self.define_objective_opt() + + load_profile_added = False + if ( + self._has_demand_tracking + and operation_strategy == "profile_guided" + and full_horizon_load_profile is not None + ): + load_profile_added = self._add_profile_soft_constraints( + window_start, window_end, full_horizon_load_profile + ) + + instance, results = self._solve_with_profile_fallback( + load_profile_added, window_start, window_end + ) + self._log_solver_status(results, window_start, window_end) + + n_commit = commit_end - window_start + for local_t in range(n_commit): + global_t = window_start + local_t + power_val = pyo.value(instance.total_power_input[local_t]) + _pending_opr_updates[global_t] = power_val + + try: + prod_val = pyo.value(self._primary_output_expr(instance, local_t)) + except (KeyError, AttributeError, TypeError): + prod_val = power_val + + window_production += prod_val + if hasattr(self, "_rh_full_horizon_production"): + self._rh_full_horizon_production[global_t] = prod_val + + logger.info("[RH-MARKET] Window production: %.2f MWh", window_production) + + if self._has_demand_tracking: + self._extract_component_operations( + instance, window_start, commit_end, saved_index + ) + + self._update_init_states(instance, n_commit - 1, init_states) + + finally: + self._restore_series_attrs(saved_attrs) + self.index = saved_index + if saved_model is not None: + self.model = saved_model + self.components = saved_components + + for global_t, power_val in _pending_opr_updates.items(): + try: + self.opt_power_requirement[saved_index[global_t]] = power_val + except (IndexError, KeyError, AttributeError, TypeError) as e: + logger.debug( + "Could not update opt_power_requirement[%d]: %s", global_t, e + ) + + self._rh_optimized_until_step = commit_end + logger.info( + "[RH-WINDOW-COMPLETE] production=%.2f MWh | opt_until=%d | states=%s", + window_production, + commit_end, + list(init_states.keys()), + ) + + # ------------------------------------------------------------------ + def determine_optimal_operation_without_flex(self, switch_flex_off=True): """ Determines the optimal operation of the steel plant without considering flexibility. + + This performs a single full-horizon solve. For rolling-horizon units it is + the setup-time presolve that seeds ``_rh_full_horizon_production``; the + per-window re-optimisation at market time is handled separately by + ``_check_and_reoptimize_rolling_window``. """ # create an instance of the model instance = self.model.create_instance() # switch the instance to the optimal mode by deactivating the flexibility constraints and objective if switch_flex_off: instance = self.switch_to_opt(instance) + # solve the instance results = self.solver.solve(instance, options={}) @@ -708,18 +1473,24 @@ def determine_optimal_operation_without_flex(self, switch_flex_off=True): results.solver.termination_condition == TerminationCondition.optimal ): logger.debug("The model was solved optimally.") - # Display the Objective Function Value objective_value = instance.obj_rule_opt() logger.debug("The value of the objective function is %s.", objective_value) elif results.solver.termination_condition == TerminationCondition.infeasible: - logger.debug("The model is infeasible.") + logger.warning("The model is infeasible - check constraints.") + if switch_flex_off and self._has_demand_tracking: + total_demand = getattr(self, self._demand_attr_suffix) + logger.warning( + " Full-horizon solve is INFEASIBLE with demand constraint of %.2f", + total_demand, + ) + return else: - logger.debug("Solver Status: ", results.solver.status) + logger.debug("Solver Status: %s", results.solver.status) logger.debug( - "Termination Condition: ", results.solver.termination_condition + "Termination Condition: %s", results.solver.termination_condition ) opt_power_requirement = [ @@ -729,6 +1500,34 @@ def determine_optimal_operation_without_flex(self, switch_flex_off=True): index=self.index, value=opt_power_requirement ) + # CRITICAL: If rolling horizon is enabled, populate the full-horizon accumulator + # This ensures the first market call has correct production history + if self.horizon_mode == "rolling_horizon": + if not hasattr(self, "_rh_full_horizon_production"): + self._rh_full_horizon_production = [0.0] * len(self.index) + + # Track primary production output (subclass may override _primary_output_expr) + try: + production_schedule = [ + pyo.value(self._primary_output_expr(instance, t)) + for t in instance.time_steps + ] + except (KeyError, AttributeError): + production_schedule = opt_power_requirement + + for i, prod_val in enumerate(production_schedule): + self._rh_full_horizon_production[i] = prod_val + + # Log the full-horizon production profile + total_full_horizon = sum(production_schedule) + logger.info( + f"[RH-SETUP] Full-horizon solve complete: Total production = {total_full_horizon:.2f} MWh, " + f"First 24 hours = {sum(production_schedule[:24]):.2f} MWh" + ) + logger.debug( + f"[RH-SETUP] Full-horizon production schedule (first 24h): {[f'{v:.1f}' for v in production_schedule[:24]]}" + ) + self.total_cost = sum( instance.variable_cost[t].value for t in instance.time_steps ) @@ -747,8 +1546,17 @@ def determine_optimal_operation_with_flex(self): instance = self.model.create_instance() # switch the instance to the flexibility mode by deactivating the optimal constraints and objective instance = self.switch_to_flex(instance) - # solve the instance - results = self.solver.solve(instance) + + # solve the instance with error handling + try: + results = self.solver.solve(instance) + except RuntimeError as e: + # If solver fails, log warning and continue with current solution + logger.warning( + f"[FLEX-PHASE] Solver raised RuntimeError during flexibility phase: {str(e)[:80]}... " + "Continuing with current optimal operation without flexibility." + ) + return # Check solver status and termination condition if (results.solver.status == SolverStatus.ok) and ( diff --git a/assume/units/steel_plant.py b/assume/units/steel_plant.py index 66bcd02ef..8d65f674b 100644 --- a/assume/units/steel_plant.py +++ b/assume/units/steel_plant.py @@ -37,6 +37,7 @@ class SteelPlant(DSMFlex, SupportsMinMax): cost_tolerance (float, optional): The maximum allowable cost variation when shifting the load, used in flexibility measures. Default is 10. congestion_threshold (float, optional): The threshold for congestion management in the plant’s energy system. Default is 0. peak_load_cap (float, optional): The peak load capacity of the steel plant. Default is 0. + load_profile_deviation (float, optional): Allowed deviation (±) from the normalized load profile, as a fraction (e.g., 0.05 for ±5%). Default is 1.0 (no constraint). Requires normalized_load_profile in forecasts_df.csv. node (str, optional): The network node where the steel plant is located in the energy system. Default is "node0". location (tuple[float, float], optional): A tuple representing the geographical coordinates (latitude, longitude) of the steel plant. Default is (0.0, 0.0). **kwargs: Additional keyword arguments that may be passed to support more specific configurations. @@ -50,6 +51,32 @@ class SteelPlant(DSMFlex, SupportsMinMax): required_technologies = ["dri_plant", "eaf"] optional_technologies = ["electrolyser", "hydrogen_buffer_storage", "dri_storage"] + # Rolling-horizon extensibility hooks (DSMFlex) + _demand_attr_suffix = "steel_demand" + _extra_price_attrs = [ + "electricity_price", + "hydrogen_price", + "natural_gas_price", + "steel_price", + "iron_ore_price", + "lime_price", + "co2_price", + ] + _component_schema = { + "eaf": ("power_in", "steel_output", "eaf_power_input", "eaf_steel_output"), + "dri_plant": ("power_in", "dri_output", "dri_power_input", "dri_output"), + "electrolyser": ( + "power_in", + "hydrogen_out", + "electrolyser_power", + "hydrogen_prod", + ), + } + + def _primary_output_expr(self, m, t): + """Steel production (tonnes) from the EAF is the tracked output.""" + return m.dsm_blocks["eaf"].steel_output[t] + def __init__( self, id: str, @@ -64,6 +91,7 @@ def __init__( cost_tolerance: float = 10, congestion_threshold: float = 0, peak_load_cap: float = 0, + load_profile_deviation: float = 1.0, node: str = "node0", location: tuple[float, float] = (0.0, 0.0), **kwargs, @@ -105,7 +133,17 @@ def __init__( self.market_id = list(bidding_strategies.keys())[0] self.electricity_price = forecaster.electricity_price - self.steel_demand = demand + self.steel_demand = demand # Global demand (total production by end of horizon) + self.steel_demand_rolling = ( + None # Will be used in rolling-horizon to track cumulative remaining demand + ) + + # Try to get per-timestep steel demand from forecaster (optional) + try: + self.steel_demand_per_timestep = forecaster.steel_demand + except (AttributeError, KeyError): + self.steel_demand_per_timestep = None + self.natural_gas_price = self.forecaster.get_price("natural_gas") self.hydrogen_price = self.forecaster.get_price("hydrogen") self.iron_ore_price = self.forecaster.get_price("iron_ore") @@ -122,8 +160,24 @@ def __init__( self.cost_tolerance = cost_tolerance self.congestion_threshold = congestion_threshold self.peak_load_cap = peak_load_cap - - # Check for the presence of components + self.load_profile_deviation = load_profile_deviation + + # Try to get normalized load profile from forecaster (optional) + self.normalized_load_profile = None + try: + self.normalized_load_profile = forecaster.normalized_load_profile + if self.normalized_load_profile is not None: + logger.info( + f"[LOAD-PROFILE] Loaded normalized_load_profile with {len(self.normalized_load_profile)} timesteps" + ) + else: + logger.info( + "[LOAD-PROFILE] No normalized_load_profile provided in forecaster" + ) + except (AttributeError, KeyError): + logger.info( + "[LOAD-PROFILE] No normalized_load_profile provided in forecaster" + ) self.has_h2storage = "hydrogen_buffer_storage" in self.components.keys() self.has_dristorage = "dri_storage" in self.components.keys() self.has_electrolyser = "electrolyser" in self.components.keys() @@ -173,7 +227,52 @@ def define_parameters(self): self.model.time_steps, initialize={t: value for t, value in enumerate(self.natural_gas_price)}, ) - self.model.steel_demand = pyo.Param(initialize=self.steel_demand) + + # Use remaining_demand if available (rolling-horizon mode), otherwise use global steel_demand + demand_value = self.steel_demand + if self._rh_window_remaining_demand is not None: + demand_value = self._rh_window_remaining_demand + logger.info(f"Using rolling-horizon remaining_demand: {demand_value}") + + self.model.steel_demand = pyo.Param(initialize=demand_value) + + # Optional: per-timestep steel demand from forecaster + if self.steel_demand_per_timestep is not None: + self.model.steel_demand_per_timestep = pyo.Param( + self.model.time_steps, + initialize={ + t: value for t, value in enumerate(self.steel_demand_per_timestep) + }, + ) + + # Optional: normalized load profile for tracking + if self.normalized_load_profile is not None: + # Convert normalized_load_profile to list form for indexing by integer + if hasattr(self.normalized_load_profile, "data"): + profile_values = self.normalized_load_profile.data + elif hasattr(self.normalized_load_profile, "_data"): + profile_values = self.normalized_load_profile._data + elif isinstance(self.normalized_load_profile, dict): + # If it's a dict, try to get values in order + profile_values = list(self.normalized_load_profile.values()) + else: + # Try to convert to list + profile_values = list(self.normalized_load_profile) + + self.model.normalized_load_profile = pyo.Param( + self.model.time_steps, + initialize={ + t: profile_values[t] if t < len(profile_values) else 0 + for t in self.model.time_steps + }, + ) + self.model.load_profile_deviation = pyo.Param( + initialize=self.load_profile_deviation + ) + logger.debug( + f"[LOAD-PROFILE] Load profile parameter set with {len(profile_values)} values, deviation: {self.load_profile_deviation:.2%}" + ) + self.model.steel_price = pyo.Param( self.model.time_steps, initialize={t: value for t, value in enumerate(self.steel_price)}, @@ -321,19 +420,42 @@ def define_constraints(self): production process, enforcing both production targets and cost minimization strategies. """ - @self.model.Constraint(self.model.time_steps) - def steel_output_association_constraint(m, t): - """ - Ensures the steel output meets the steel demand across all time steps. - - This constraint sums the steel output from the Electric Arc Furnace (EAF) over all time steps - and ensures that it equals the steel demand. This is useful when the steel demand is to be met - by the total production over the entire time horizon. - """ - return ( - sum(m.dsm_blocks["eaf"].steel_output[t] for t in m.time_steps) - == m.steel_demand - ) + # For min_demand strategy, the per-hour minimums are the sole demand target. + # Skip the global equality constraint entirely — it will conflict since the + # optimizer is free to produce more than the per-hour minimums. + _min_demand_strategy = ( + self.normalized_load_profile is None + and self.steel_demand_per_timestep is not None + ) + if not _min_demand_strategy: + + @self.model.Constraint() + def steel_output_association_constraint(m): + """ + Global constraint: Ensures total steel output meets the global steel demand. + + This enforces that the total steel output equals the demand (or nearly equal + in rolling horizon windows where it's updated per window). + """ + total_output = sum( + m.dsm_blocks["eaf"].steel_output[t] for t in m.time_steps + ) + return total_output == m.steel_demand + + # Per-timestep minimum steel output constraint. + # In rolling-horizon mode this is applied per window in _add_window_demand_constraints; + # in full-horizon mode we add it here directly. + if ( + self.steel_demand_per_timestep is not None + and self.horizon_mode != "rolling_horizon" + ): + + @self.model.Constraint(self.model.time_steps) + def steel_demand_per_timestep_constraint(m, t): + return ( + m.dsm_blocks["eaf"].steel_output[t] + >= m.steel_demand_per_timestep[t] + ) # Constraint for total power input @self.model.Constraint(self.model.time_steps) @@ -364,3 +486,11 @@ def cost_per_time_step(m, t): variable_cost += m.dsm_blocks["electrolyser"].operating_cost[t] return m.variable_cost[t] == variable_cost + + # Constraint for normalized load profile tracking (if profile is provided) + # NOTE: This constraint is added during rolling horizon optimization, not during initial setup + # to avoid conflicts with the initial cost-minimization objective + if self.normalized_load_profile is not None: + logger.info( + "[LOAD-PROFILE] Normalized load profile is available - will be used in rolling horizon optimization" + ) diff --git a/docs/source/demand_side_agent.rst b/docs/source/demand_side_agent.rst index df367a04e..f10d54716 100644 --- a/docs/source/demand_side_agent.rst +++ b/docs/source/demand_side_agent.rst @@ -31,6 +31,104 @@ The :py:class:`assume.units.dsm_load_shift` module integrates load-shifting capa - Shifting loads between time steps based on operational flexibility. - Recalculating operations based on market offers and accepted bids. +Rolling-Horizon Optimisation +^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +DSM units support both a full-horizon solve and a rolling-horizon solve. +Without additional configuration, units use the full simulation horizon. +When rolling horizon is enabled, the unit repeatedly optimises a shorter +look-ahead window, commits only the first part of that solution, and then +re-optimises after the next market step with updated internal states. + +This is useful when the optimisation should stay responsive to market +clearing results while still accounting for storage states, ramping limits, +and process-coupling constraints over a wider future horizon. + +Configuration +~~~~~~~~~~~~~ + +Rolling-horizon behaviour is configured **per plant** via optional columns in +the DSM units CSV (``industrial_dsm_units.csv`` or +``residential_dsm_units.csv``). The CSV scenario loader collects these +columns from the first technology row of each plant and assembles them into +the ``dsm_optimisation_config`` dict passed to the unit constructor. + +The supported columns are: + +- ``horizon_mode``: Either ``full_horizon`` or ``rolling_horizon``. +- ``look_ahead_horizon``: Length of the optimisation window, for example ``72h``. +- ``commit_horizon``: Number of steps committed before the next re-optimisation, for example ``24h``. +- ``rolling_step``: Shift applied between consecutive windows, for example ``24h``. + +.. note:: + + If ``horizon_mode`` is set to ``rolling_horizon``, the values for + ``look_ahead_horizon``, ``commit_horizon``, and ``rolling_step`` must all + be provided on that plant row. + +Example CSV row (only the relevant columns shown, plant ``A360`` with three +technology rows; the horizon values are filled once on the first row): + +.. code-block:: text + + name,technology,...,horizon_mode,look_ahead_horizon,commit_horizon,rolling_step + A360,electrolyser,...,rolling_horizon,72h,24h,24h + A360,dri_plant,...,,,, + A360,eaf,...,,,, + +Because the columns are read per plant, different plants in the same +scenario can run with different rolling-horizon settings. + +Using full horizon +~~~~~~~~~~~~~~~~~~ + +To run a plant with the full simulation horizon (the default behaviour), you +have three equivalent options: + +1. **Omit the four columns entirely from the CSV.** This is the right choice + for scenarios that never use rolling horizon — no migration needed. +2. **Include the columns but leave the cells blank** for that plant. This is + useful in mixed scenarios where some plants use rolling horizon and + others run full horizon. +3. **Explicitly set** ``horizon_mode: full_horizon`` on the plant row for + readability. The three rolling-horizon columns can stay blank because + the all-or-none validation only applies when ``horizon_mode`` is + ``rolling_horizon``. + +Operational flow +~~~~~~~~~~~~~~~~ + +In rolling-horizon mode, the optimisation proceeds as follows: + +1. A look-ahead window is built from the current simulation step. +2. The unit solves that window with the same process and flexibility constraints used in the full-horizon model. +3. Only the first ``commit_horizon`` part of the solution is committed to the unit's schedule. +4. End-of-window component states, such as storage state of charge or operational status, are carried into the next window. +5. After the market advances, the unit re-optimises the next window starting from the updated state. + +This means DSM units can preserve inter-temporal feasibility while reacting +to accepted bids and updated market conditions. + +Steel plant strategies in rolling horizon +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +For :class:`~assume.units.steel_plant.SteelPlant`, rolling-horizon +optimisation can combine the rolling window logic with different production +guidance modes from the forecaster. + +- **Cost-optimized**: If no additional production guidance is provided, the steel plant minimizes cost freely across each rolling window. +- **Profile-guided**: If ``normalized_load_profile`` is provided, the rolling-horizon solver keeps committed production close to the profile shape using soft profile-tracking constraints. +- **Min-demand**: If per-timestep ``steel_demand`` is provided, the rolling-horizon solver enforces hourly minimum production levels in the committed part of each window. + +The steel plant forecaster accepts either generic forecast columns or +unit-specific columns: + +- ``normalized_load_profile`` or ``_normalized_load_profile`` +- ``steel_demand`` or ``_steel_demand`` + +These signals are copied to the unit during forecaster initialization and are +used automatically by the rolling-horizon solver. + Attributes ^^^^^^^^^^^ diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index d0fdf59e3..e5828c74f 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -15,6 +15,7 @@ Upcoming Release **New Features:** - **Generic Forecasting Interface**: This interface enables to specify different forecast algorithms for preprocess, initialization and update during runtime. They can be specified in the config.yaml or unit csv files. For more information about currently implemented algorithms and how to specify them please read the documentation on Unit forecasts. + - **Rolling-Horizon Optimisation for DSM Units**: DSM units now support rolling-horizon optimization, allowing re-optimization of shorter look-ahead windows after each market round while carrying component states (e.g., storage SoC) between windows. This enables more reactive bidding strategies while maintaining inter-temporal feasibility. Configure it per plant via optional columns in the DSM units CSV (``industrial_dsm_units.csv`` / ``residential_dsm_units.csv``): ``horizon_mode`` (``"rolling_horizon"`` or ``"full_horizon"``), ``look_ahead_horizon``, ``commit_horizon``, and ``rolling_step`` (durations as strings, e.g., ``"24h"``), set on the plant's first technology row. Steel plants offer three operational strategies: cost-optimized (default), profile-guided (with soft constraints to track a normalized load profile), and min-demand (enforces hourly minimum production). The rolling-horizon implementation is extensible—new DSM unit types can enable it by setting class attributes ``_demand_attr_suffix``, ``_component_schema``, and ``_extra_price_attrs``, and optionally overriding ``_primary_output_expr()`` for domain-specific outputs. **Improvements:** - **In complex clearing, the solver instance is now created once during initialization of the clearing role and reused for each market clearing**. This improves performance for e.g. year-long simulations. @@ -24,6 +25,7 @@ Upcoming Release - **Extended ``min_max_scale`` to support arbitrary output ranges**: Added optional ``out_min`` and ``out_max`` parameters, enabling both forward scaling and inverse rescaling with a single function instead of two separate ones. - **Add test for portfolio learning strategy and ``min_max_scale`` function**: Added a test for the portfolio learning strategy and ``min_max_rescale`` function to ensure its functionality and stability. - **Readme naming of examples/tutorials**: Slight changing of tutorial and example in the read me to make difference clearer and more consistent with the naming of the notebooks and to align with readthedocs. + - **Generalized rolling-horizon optimization in DSMFlex**: Refactored rolling-horizon logic to remove hardcoded technology-specific constraints (previously coupled to steel plants). Extracted eight helper methods, replaced 15 technology guards with generic extension points, and reduced code by approximately 60%. The optimization engine now works for all DSM unit types via reusable class-level hooks, improving maintainability and extensibility. **Bug Fixes:** - **Dependencies**: pin xarray and setuptools dependencies until upstream fixes are available - **Fix bug in forecasts**, that occurred when using complex clearing diff --git a/examples/inputs/example_03/config.yaml b/examples/inputs/example_03/config.yaml index c0198eb5c..5870b4843 100644 --- a/examples/inputs/example_03/config.yaml +++ b/examples/inputs/example_03/config.yaml @@ -122,7 +122,7 @@ eom_crm_case_2019: base_case_2019_with_DSM: start_date: 2019-01-01 00:00 - end_date: 2019-02-01 00:00 + end_date: 2019-01-03 00:00 time_step: 1h industrial_dsm_units: industrial_dsm_units.csv save_frequency_hours: 720 diff --git a/examples/inputs/example_03/forecasts_df.csv b/examples/inputs/example_03/forecasts_df.csv new file mode 100644 index 000000000..fdc09a25d --- /dev/null +++ b/examples/inputs/example_03/forecasts_df.csv @@ -0,0 +1,35041 @@ +datetime,electricity_price,A360_normalized_load_profile,A360_electricity_price +2019-01-01 00:00:00,25.0,0.420502646,25.0 +2019-01-01 00:15:00,25.0,0.42010582,25.001793197629066 +2019-01-01 00:30:00,25.0,0.419179894,25.003586395027487 +2019-01-01 00:45:00,25.0,0.39973545,25.00537959196462 +2019-01-01 01:00:00,25.0,0.378571429,25.007172788209814 +2019-01-01 01:15:00,25.0,0.379232804,25.00896598353243 +2019-01-01 01:30:00,25.0,0.379761905,25.010759177701818 +2019-01-01 01:45:00,25.0,0.37989418,25.012552370487338 +2019-01-01 02:00:00,25.0,0.33994709,25.01434556165834 +2019-01-01 02:15:00,25.0,0.315873016,25.016138750984187 +2019-01-01 02:30:00,25.0,0.316005291,25.017931938234227 +2019-01-01 02:45:00,25.0,0.329497354,25.01972512317782 +2019-01-01 03:00:00,25.0,0.355820106,25.021518305584323 +2019-01-01 03:15:00,25.0,0.358068783,25.023311485223093 +2019-01-01 03:30:00,25.0,0.357407407,25.025104661863484 +2019-01-01 03:45:00,25.0,0.356084656,25.026897835274855 +2019-01-01 04:00:00,25.0,0.340079365,25.028691005226566 +2019-01-01 04:15:00,25.0,0.346031746,25.030484171487974 +2019-01-01 04:30:00,25.0,0.339814815,25.032277333828432 +2019-01-01 04:45:00,25.0,0.338227513,25.03407049201731 +2019-01-01 05:00:00,25.0,0.321428571,25.035863645823962 +2019-01-01 05:15:00,25.0,0.319973545,25.037656795017746 +2019-01-01 05:30:00,25.0,0.32010582,25.03944993936803 +2019-01-01 05:45:00,25.0,0.297089947,25.041243078644168 +2019-01-01 06:00:00,40.0,0.253835979,25.043036212615526 +2019-01-01 06:15:00,28.75,0.256481481,25.044829341051468 +2019-01-01 06:30:00,25.0,0.256613757,25.046622463721356 +2019-01-01 06:45:00,25.0,0.254365079,25.048415580394558 +2019-01-01 07:00:00,25.0,0.254365079,25.05020869084043 +2019-01-01 07:15:00,25.0,0.269312169,25.05200179482835 +2019-01-01 07:30:00,40.0,0.273412698,25.053794892127673 +2019-01-01 07:45:00,40.0,0.284656085,25.055587982507777 +2019-01-01 08:00:00,40.0,0.291931217,25.057381065738024 +2019-01-01 08:15:00,40.0,0.292460317,25.059174141587786 +2019-01-01 08:30:00,40.0,0.301851852,25.060967209826433 +2019-01-01 08:45:00,40.0,0.282010582,25.062760270223336 +2019-01-01 09:00:00,40.0,0.278571429,25.06455332254787 +2019-01-01 09:15:00,40.0,0.267857143,25.066346366569405 +2019-01-01 09:30:00,40.0,0.274206349,25.068139402057316 +2019-01-01 09:45:00,40.0,0.277248677,25.06993242878098 +2019-01-01 10:00:00,40.0,0.283465608,25.071725446509774 +2019-01-01 10:15:00,40.0,0.287301587,25.073518455013073 +2019-01-01 10:30:00,40.0,0.283068783,25.07531145406026 +2019-01-01 10:45:00,40.0,0.286507937,25.077104443420712 +2019-01-01 11:00:00,40.0,0.346825397,25.078897422863815 +2019-01-01 11:15:00,40.0,0.366798942,25.080690392158946 +2019-01-01 11:30:00,40.0,0.364153439,25.082483351075492 +2019-01-01 11:45:00,36.25,0.362566138,25.084276299382843 +2019-01-01 12:00:00,40.0,0.362433862,25.086069236850378 +2019-01-01 12:15:00,28.75,0.334656085,25.087862163247486 +2019-01-01 12:30:00,25.0,0.328174603,25.089655078343565 +2019-01-01 12:45:00,25.0,0.308597884,25.091447981907997 +2019-01-01 13:00:00,25.0,0.301851852,25.093240873710176 +2019-01-01 13:15:00,25.0,0.303439153,25.095033753519502 +2019-01-01 13:30:00,40.0,0.299603175,25.096826621105365 +2019-01-01 13:45:00,40.0,0.303042328,25.098619476237165 +2019-01-01 14:00:00,40.0,0.301190476,25.1004123186843 +2019-01-01 14:15:00,40.0,0.298677249,25.102205148216168 +2019-01-01 14:30:00,40.0,0.296428571,25.103997964602176 +2019-01-01 14:45:00,40.0,0.291269841,25.105790767611722 +2019-01-01 15:00:00,40.0,0.261772487,25.107583557014216 +2019-01-01 15:15:00,40.0,0.293518519,25.109376332579064 +2019-01-01 15:30:00,40.0,0.279497354,25.111169094075677 +2019-01-01 15:45:00,40.0,0.287037037,25.112961841273464 +2019-01-01 16:00:00,40.0,0.276984127,25.114754573941834 +2019-01-01 16:15:00,40.0,0.294047619,25.116547291850207 +2019-01-01 16:30:00,40.0,0.299206349,25.118339994768 +2019-01-01 16:45:00,40.0,0.302380952,25.120132682464625 +2019-01-01 17:00:00,40.0,0.303042328,25.12192535470951 +2019-01-01 17:15:00,40.0,0.302910053,25.12371801127207 +2019-01-01 17:30:00,40.0,0.294708995,25.125510651921736 +2019-01-01 17:45:00,36.25,0.298677249,25.127303276427934 +2019-01-01 18:00:00,32.5,0.30026455,25.129095884560087 +2019-01-01 18:15:00,25.0,0.281481481,25.130888476087627 +2019-01-01 18:30:00,25.0,0.295634921,25.13268105077999 +2019-01-01 18:45:00,25.0,0.290343915,25.134473608406612 +2019-01-01 19:00:00,25.0,0.278968254,25.136266148736922 +2019-01-01 19:15:00,25.0,0.288888889,25.138058671540367 +2019-01-01 19:30:00,32.5,0.295634921,25.13985117658639 +2019-01-01 19:45:00,40.0,0.286375661,25.141643663644427 +2019-01-01 20:00:00,40.0,0.282142857,25.143436132483927 +2019-01-01 20:15:00,40.0,0.283597884,25.145228582874342 +2019-01-01 20:30:00,40.0,0.294973545,25.14702101458512 +2019-01-01 20:45:00,40.0,0.272751323,25.14881342738572 +2019-01-01 21:00:00,40.0,0.243915344,25.150605821045588 +2019-01-01 21:15:00,40.0,0.23994709,25.152398195334186 +2019-01-01 21:30:00,40.0,0.24510582,25.154190550020974 +2019-01-01 21:45:00,40.0,0.247354497,25.15598288487542 +2019-01-01 22:00:00,40.0,0.246693122,25.157775199666986 +2019-01-01 22:15:00,40.0,0.244312169,25.15956749416514 +2019-01-01 22:30:00,40.0,0.241402116,25.161359768139356 +2019-01-01 22:45:00,40.0,0.240873016,25.163152021359103 +2019-01-01 23:00:00,40.0,0.220767196,25.16494425359386 +2019-01-01 23:15:00,40.0,0.24457672,25.166736464613106 +2019-01-01 23:30:00,40.0,0.230291005,25.16852865418632 +2019-01-01 23:45:00,36.25,0.238756614,25.170320822082992 +2019-01-02 00:00:00,25.0,0.220634921,25.172112968072604 +2019-01-02 00:15:00,25.0,0.217063492,25.17390509192465 +2019-01-02 00:30:00,25.0,0.221957672,25.175697193408617 +2019-01-02 00:45:00,25.0,0.223412698,25.177489272294007 +2019-01-02 01:00:00,25.0,0.23478836,25.179281328350314 +2019-01-02 01:15:00,25.0,0.252910053,25.181073361347043 +2019-01-02 01:30:00,25.0,0.280291005,25.182865371053698 +2019-01-02 01:45:00,25.0,0.308597884,25.184657357239786 +2019-01-02 02:00:00,25.0,0.307142857,25.186449319674818 +2019-01-02 02:15:00,25.0,0.347619048,25.188241258128304 +2019-01-02 02:30:00,25.0,0.367195767,25.190033172369766 +2019-01-02 02:45:00,25.0,0.384920635,25.19182506216872 +2019-01-02 03:00:00,25.0,0.393650794,25.193616927294695 +2019-01-02 03:15:00,36.25,0.406084656,25.195408767517208 +2019-01-02 03:30:00,40.0,0.406878307,25.197200582605795 +2019-01-02 03:45:00,36.25,0.408597884,25.19899237232999 +2019-01-02 04:00:00,32.5,0.410185185,25.200784136459323 +2019-01-02 04:15:00,28.75,0.408201058,25.202575874763333 +2019-01-02 04:30:00,40.0,0.407936508,25.204367587011568 +2019-01-02 04:45:00,40.0,0.411243386,25.206159272973572 +2019-01-02 05:00:00,40.0,0.419312169,25.207950932418893 +2019-01-02 05:15:00,40.0,0.422089947,25.209742565117082 +2019-01-02 05:30:00,40.0,0.430952381,25.211534170837698 +2019-01-02 05:45:00,25.0,0.453835979,25.2133257493503 +2019-01-02 06:00:00,40.0,0.489021164,25.215117300424453 +2019-01-02 06:15:00,28.75,0.518915344,25.21690882382972 +2019-01-02 06:30:00,25.0,0.517592593,25.218700319335667 +2019-01-02 06:45:00,25.0,0.525925926,25.22049178671188 +2019-01-02 07:00:00,25.0,0.585449735,25.222283225727924 +2019-01-02 07:15:00,25.0,0.606481481,25.22407463615339 +2019-01-02 07:30:00,40.0,0.606613757,25.225866017757852 +2019-01-02 07:45:00,40.0,0.608730159,25.227657370310908 +2019-01-02 08:00:00,40.0,0.600925926,25.229448693582146 +2019-01-02 08:15:00,40.0,0.566137566,25.231239987341162 +2019-01-02 08:30:00,40.0,0.563756614,25.233031251357556 +2019-01-02 08:45:00,40.0,0.564417989,25.23482248540093 +2019-01-02 09:00:00,40.0,0.562698413,25.236613689240894 +2019-01-02 09:15:00,40.0,0.562698413,25.23840486264706 +2019-01-02 09:30:00,40.0,0.560846561,25.240196005389038 +2019-01-02 09:45:00,40.0,0.554497354,25.241987117236448 +2019-01-02 10:00:00,40.0,0.552777778,25.243778197958918 +2019-01-02 10:15:00,40.0,0.549470899,25.245569247326074 +2019-01-02 10:30:00,40.0,0.545634921,25.24736026510754 +2019-01-02 10:45:00,40.0,0.53531746,25.249151251072963 +2019-01-02 11:00:00,40.0,0.523015873,25.250942204991972 +2019-01-02 11:15:00,40.0,0.510449735,25.25273312663421 +2019-01-02 11:30:00,40.0,0.489285714,25.254524015769334 +2019-01-02 11:45:00,36.25,0.467592593,25.25631487216699 +2019-01-02 12:00:00,40.0,0.452248677,25.258105695596832 +2019-01-02 12:15:00,28.75,0.443386243,25.259896485828524 +2019-01-02 12:30:00,25.0,0.45,25.26168724263173 +2019-01-02 12:45:00,25.0,0.448544974,25.263477965776115 +2019-01-02 13:00:00,25.0,0.434391534,25.265268655031353 +2019-01-02 13:15:00,25.0,0.423809524,25.267059310167127 +2019-01-02 13:30:00,40.0,0.415740741,25.26884993095311 +2019-01-02 13:45:00,40.0,0.402777778,25.270640517158995 +2019-01-02 14:00:00,40.0,0.414814815,25.27243106855447 +2019-01-02 14:15:00,40.0,0.393518519,25.274221584909235 +2019-01-02 14:30:00,40.0,0.378703704,25.27601206599298 +2019-01-02 14:45:00,40.0,0.383465608,25.277802511575416 +2019-01-02 15:00:00,40.0,0.398148148,25.27959292142625 +2019-01-02 15:15:00,40.0,0.406746032,25.281383295315198 +2019-01-02 15:30:00,40.0,0.430026455,25.283173633011973 +2019-01-02 15:45:00,40.0,0.414285714,25.2849639342863 +2019-01-02 16:00:00,40.0,0.378968254,25.286754198907907 +2019-01-02 16:15:00,40.0,0.388359788,25.288544426646528 +2019-01-02 16:30:00,40.0,0.37010582,25.290334617271895 +2019-01-02 16:45:00,40.0,0.388756614,25.29212477055375 +2019-01-02 17:00:00,40.0,0.404232804,25.293914886261845 +2019-01-02 17:15:00,40.0,0.399206349,25.295704964165925 +2019-01-02 17:30:00,40.0,0.371693122,25.29749500403575 +2019-01-02 17:45:00,36.25,0.338756614,25.299285005641075 +2019-01-02 18:00:00,25.0,0.33531746,25.301074968751674 +2019-01-02 18:15:00,25.0,0.346296296,25.302864893137315 +2019-01-02 18:30:00,25.0,0.361375661,25.30465477856777 +2019-01-02 18:45:00,25.0,0.384656085,25.306444624812823 +2019-01-02 19:00:00,25.0,0.385978836,25.30823443164226 +2019-01-02 19:15:00,25.0,0.39537037,25.31002419882587 +2019-01-02 19:30:00,25.0,0.397751323,25.31181392613345 +2019-01-02 19:45:00,25.0,0.387962963,25.313603613334802 +2019-01-02 20:00:00,25.0,0.371428571,25.315393260199734 +2019-01-02 20:15:00,25.0,0.338624339,25.317182866498054 +2019-01-02 20:30:00,25.0,0.360846561,25.31897243199958 +2019-01-02 20:45:00,25.0,0.366005291,25.320761956474133 +2019-01-02 21:00:00,25.0,0.346560847,25.32255143969154 +2019-01-02 21:15:00,25.0,0.357936508,25.324340881421637 +2019-01-02 21:30:00,25.0,0.400793651,25.326130281434256 +2019-01-02 21:45:00,25.0,0.401719577,25.327919639499246 +2019-01-02 22:00:00,25.0,0.41031746,25.329708955386455 +2019-01-02 22:15:00,25.0,0.402910053,25.331498228865733 +2019-01-02 22:30:00,25.0,0.427248677,25.33328745970694 +2019-01-02 22:45:00,25.0,0.380291005,25.335076647679948 +2019-01-02 23:00:00,25.0,0.384920635,25.33686579255462 +2019-01-02 23:15:00,25.0,0.364153439,25.338654894100834 +2019-01-02 23:30:00,25.0,0.359391534,25.34044395208847 +2019-01-02 23:45:00,25.0,0.383730159,25.34223296628742 +2019-01-03 00:00:00,25.0,0.405026455,25.344021936467573 +2019-01-03 00:15:00,25.0,0.438888889,25.345810862398828 +2019-01-03 00:30:00,25.0,0.417063492,25.34759974385109 +2019-01-03 00:45:00,25.0,0.437037037,25.349388580594272 +2019-01-03 01:00:00,25.0,0.479100529,25.351177372398283 +2019-01-03 01:15:00,25.0,0.497751323,25.35296611903305 +2019-01-03 01:30:00,25.0,0.519708995,25.354754820268496 +2019-01-03 01:45:00,25.0,0.524867725,25.356543475874556 +2019-01-03 02:00:00,25.0,0.483465608,25.35833208562117 +2019-01-03 02:15:00,25.0,0.518386243,25.360120649278283 +2019-01-03 02:30:00,25.0,0.507671958,25.361909166615845 +2019-01-03 02:45:00,25.0,0.489285714,25.363697637403813 +2019-01-03 03:00:00,25.0,0.50952381,25.36548606141215 +2019-01-03 03:15:00,25.0,0.547883598,25.36727443841082 +2019-01-03 03:30:00,25.0,0.539550265,25.369062768169805 +2019-01-03 03:45:00,25.0,0.554100529,25.37085105045908 +2019-01-03 04:00:00,25.0,0.521428571,25.37263928504864 +2019-01-03 04:15:00,25.0,0.548809524,25.37442747170847 +2019-01-03 04:30:00,25.0,0.56031746,25.376215610208572 +2019-01-03 04:45:00,25.0,0.568386243,25.378003700318953 +2019-01-03 05:00:00,25.0,0.57989418,25.379791741809623 +2019-01-03 05:15:00,25.0,0.581084656,25.3815797344506 +2019-01-03 05:30:00,25.0,0.592989418,25.38336767801191 +2019-01-03 05:45:00,25.0,0.562962963,25.38515557226358 +2019-01-03 06:00:00,25.0,0.565608466,25.38694341697565 +2019-01-03 06:15:00,25.0,0.568121693,25.388731211918167 +2019-01-03 06:30:00,25.0,0.563492063,25.39051895686117 +2019-01-03 06:45:00,25.0,0.532671958,25.392306651574724 +2019-01-03 07:00:00,25.0,0.538888889,25.39409429582889 +2019-01-03 07:15:00,25.0,0.554365079,25.39588188939373 +2019-01-03 07:30:00,25.0,0.549470899,25.397669432039333 +2019-01-03 07:45:00,25.0,0.535449735,25.39945692353577 +2019-01-03 08:00:00,25.0,0.534259259,25.401244363653134 +2019-01-03 08:15:00,25.0,0.53531746,25.403031752161517 +2019-01-03 08:30:00,25.0,0.534126984,25.404819088831026 +2019-01-03 08:45:00,25.0,0.54047619,25.406606373431767 +2019-01-03 09:00:00,25.0,0.50489418,25.408393605733856 +2019-01-03 09:15:00,25.0,0.481613757,25.410180785507414 +2019-01-03 09:30:00,25.0,0.488888889,25.41196791252257 +2019-01-03 09:45:00,25.0,0.453703704,25.413754986549463 +2019-01-03 10:00:00,25.0,0.442857143,25.41554200735823 +2019-01-03 10:15:00,25.0,0.433862434,25.417328974719023 +2019-01-03 10:30:00,25.0,0.411375661,25.419115888401997 +2019-01-03 10:45:00,25.0,0.377380952,25.420902748177316 +2019-01-03 11:00:00,25.0,0.364153439,25.422689553815147 +2019-01-03 11:15:00,25.0,0.359656085,25.424476305085673 +2019-01-03 11:30:00,25.0,0.337830688,25.426263001759075 +2019-01-03 11:45:00,25.0,0.308862434,25.428049643605544 +2019-01-03 12:00:00,25.0,0.32473545,25.429836230395274 +2019-01-03 12:15:00,25.0,0.304365079,25.431622761898474 +2019-01-03 12:30:00,25.0,0.264814815,25.43340923788536 +2019-01-03 12:45:00,25.0,0.264153439,25.435195658126144 +2019-01-03 13:00:00,25.0,0.249470899,25.436982022391057 +2019-01-03 13:15:00,25.0,0.22962963,25.43876833045033 +2019-01-03 13:30:00,25.0,0.24047619,25.440554582074203 +2019-01-03 13:45:00,25.0,0.230820106,25.44234077703293 +2019-01-03 14:00:00,25.0,0.230555556,25.44412691509676 +2019-01-03 14:15:00,25.0,0.237433862,25.44591299603596 +2019-01-03 14:30:00,25.0,0.234126984,25.4476990196208 +2019-01-03 14:45:00,25.0,0.228439153,25.449484985621556 +2019-01-03 15:00:00,25.0,0.228174603,25.451270893808513 +2019-01-03 15:15:00,25.0,0.215079365,25.45305674395196 +2019-01-03 15:30:00,25.0,0.198148148,25.454842535822205 +2019-01-03 15:45:00,25.0,0.198544974,25.45662826918955 +2019-01-03 16:00:00,25.0,0.193386243,25.45841394382431 +2019-01-03 16:15:00,25.0,0.201322751,25.460199559496807 +2019-01-03 16:30:00,25.0,0.190740741,25.461985115977374 +2019-01-03 16:45:00,25.0,0.190343915,25.463770613036345 +2019-01-03 17:00:00,25.0,0.192460317,25.465556050444068 +2019-01-03 17:15:00,25.0,0.185185185,25.467341427970894 +2019-01-03 17:30:00,25.0,0.173148148,25.469126745387182 +2019-01-03 17:45:00,25.0,0.172354497,25.470912002463304 +2019-01-03 18:00:00,25.0,0.172751323,25.472697198969634 +2019-01-03 18:15:00,25.0,0.175793651,25.47448233467656 +2019-01-03 18:30:00,25.0,0.183597884,25.476267409354467 +2019-01-03 18:45:00,25.0,0.206084656,25.47805242277376 +2019-01-03 19:00:00,25.0,0.224603175,25.479837374704843 +2019-01-03 19:15:00,25.0,0.224338624,25.481622264918133 +2019-01-03 19:30:00,25.0,0.225,25.483407093184056 +2019-01-03 19:45:00,25.0,0.220502646,25.485191859273037 +2019-01-03 20:00:00,25.0,0.223809524,25.48697656295552 +2019-01-03 20:15:00,25.0,0.220502646,25.488761204001946 +2019-01-03 20:30:00,25.0,0.211375661,25.49054578218278 +2019-01-03 20:45:00,25.0,0.223544974,25.49233029726848 +2019-01-03 21:00:00,25.0,0.195899471,25.494114749029517 +2019-01-03 21:15:00,25.0,0.174074074,25.49589913723637 +2019-01-03 21:30:00,25.0,0.161111111,25.497683461659534 +2019-01-03 21:45:00,25.0,0.162698413,25.499467722069497 +2019-01-03 22:00:00,25.0,0.15952381,25.501251918236765 +2019-01-03 22:15:00,25.0,0.174338624,25.503036049931854 +2019-01-03 22:30:00,25.0,0.181878307,25.50482011692528 +2019-01-03 22:45:00,25.0,0.174470899,25.506604118987575 +2019-01-03 23:00:00,25.0,0.179100529,25.508388055889277 +2019-01-03 23:15:00,25.0,0.183862434,25.51017192740093 +2019-01-03 23:30:00,25.0,0.175,25.51195573329309 +2019-01-03 23:45:00,25.0,0.176190476,25.51373947333632 +2019-01-04 00:00:00,25.0,0.190608466,25.515523147301188 +2019-01-04 00:15:00,25.0,0.198941799,25.517306754958277 +2019-01-04 00:30:00,25.0,0.227910053,25.519090296078176 +2019-01-04 00:45:00,25.0,0.259656085,25.52087377043148 +2019-01-04 01:00:00,25.0,0.294973545,25.52265717778879 +2019-01-04 01:15:00,25.0,0.29510582,25.52444051792073 +2019-01-04 01:30:00,25.0,0.323148148,25.526223790597914 +2019-01-04 01:45:00,25.0,0.347089947,25.528006995590978 +2019-01-04 02:00:00,25.0,0.40515873,25.529790132670563 +2019-01-04 02:15:00,25.0,0.437830688,25.531573201607312 +2019-01-04 02:30:00,25.0,0.451322751,25.533356202171888 +2019-01-04 02:45:00,25.0,0.457936508,25.53513913413495 +2019-01-04 03:00:00,25.0,0.487830688,25.536921997267186 +2019-01-04 03:15:00,25.0,0.507671958,25.538704791339267 +2019-01-04 03:30:00,25.0,0.517857143,25.540487516121896 +2019-01-04 03:45:00,25.0,0.568783069,25.542270171385766 +2019-01-04 04:00:00,25.0,0.600793651,25.544052756901593 +2019-01-04 04:15:00,25.0,0.554365079,25.545835272440097 +2019-01-04 04:30:00,25.0,0.550396825,25.547617717772006 +2019-01-04 04:45:00,25.0,0.553703704,25.549400092668055 +2019-01-04 05:00:00,25.0,0.563624339,25.551182396898994 +2019-01-04 05:15:00,25.0,0.558730159,25.55296463023558 +2019-01-04 05:30:00,25.0,0.570238095,25.554746792448572 +2019-01-04 05:45:00,25.0,0.571296296,25.556528883308747 +2019-01-04 06:00:00,25.0,0.577645503,25.558310902586893 +2019-01-04 06:15:00,25.0,0.548015873,25.5600928500538 +2019-01-04 06:30:00,25.0,0.548412698,25.561874725480266 +2019-01-04 06:45:00,25.0,0.553703704,25.563656528637107 +2019-01-04 07:00:00,25.0,0.557671958,25.56543825929514 +2019-01-04 07:15:00,25.0,0.558862434,25.567219917225195 +2019-01-04 07:30:00,25.0,0.557142857,25.569001502198113 +2019-01-04 07:45:00,25.0,0.558730159,25.57078301398474 +2019-01-04 08:00:00,25.0,0.526058201,25.572564452355937 +2019-01-04 08:15:00,25.0,0.514550265,25.57434581708257 +2019-01-04 08:30:00,25.0,0.51005291,25.576127107935513 +2019-01-04 08:45:00,25.0,0.508597884,25.577908324685655 +2019-01-04 09:00:00,25.0,0.507804233,25.579689467103893 +2019-01-04 09:15:00,25.0,0.505820106,25.581470534961127 +2019-01-04 09:30:00,25.0,0.502380952,25.583251528028278 +2019-01-04 09:45:00,25.0,0.502513228,25.58503244607627 +2019-01-04 10:00:00,25.0,0.501322751,25.58681328887603 +2019-01-04 10:15:00,25.0,0.502910053,25.588594056198513 +2019-01-04 10:30:00,25.0,0.504761905,25.590374747814664 +2019-01-04 10:45:00,25.0,0.501851852,25.592155363495447 +2019-01-04 11:00:00,25.0,0.497751323,25.59393590301184 +2019-01-04 11:15:00,25.0,0.496693122,25.595716366134823 +2019-01-04 11:30:00,25.0,0.494444444,25.597496752635386 +2019-01-04 11:45:00,25.0,0.490608466,25.599277062284536 +2019-01-04 12:00:00,25.0,0.496428571,25.601057294853284 +2019-01-04 12:15:00,25.0,0.500661376,25.602837450112652 +2019-01-04 12:30:00,25.0,0.502380952,25.60461752783367 +2019-01-04 12:45:00,25.0,0.491402116,25.606397527787387 +2019-01-04 13:00:00,25.0,0.489814815,25.60817744974485 +2019-01-04 13:15:00,25.0,0.489021164,25.60995729347712 +2019-01-04 13:30:00,25.0,0.488095238,25.611737058755274 +2019-01-04 13:45:00,25.0,0.488888889,25.613516745350392 +2019-01-04 14:00:00,25.0,0.478042328,25.615296353033564 +2019-01-04 14:15:00,25.0,0.46521164,25.6170758815759 +2019-01-04 14:30:00,25.0,0.457671958,25.618855330748506 +2019-01-04 14:45:00,25.0,0.445767196,25.62063470032251 +2019-01-04 15:00:00,25.0,0.447883598,25.622413990069038 +2019-01-04 15:15:00,25.0,0.455952381,25.62419319975924 +2019-01-04 15:30:00,25.0,0.454497354,25.62597232916427 +2019-01-04 15:45:00,25.0,0.455291005,25.62775137805529 +2019-01-04 16:00:00,25.0,0.460449735,25.629530346203477 +2019-01-04 16:15:00,25.0,0.458465608,25.631309233380012 +2019-01-04 16:30:00,25.0,0.462169312,25.633088039356096 +2019-01-04 16:45:00,25.0,0.47473545,25.634866763902927 +2019-01-04 17:00:00,25.0,0.479232804,25.63664540679173 +2019-01-04 17:15:00,25.0,0.483068783,25.638423967793727 +2019-01-04 17:30:00,25.0,0.487962963,25.640202446680156 +2019-01-04 17:45:00,25.0,0.48968254,25.641980843222264 +2019-01-04 18:00:00,25.0,0.491269841,25.64375915719131 +2019-01-04 18:15:00,25.0,0.493650794,25.645537388358566 +2019-01-04 18:30:00,25.0,0.49973545,25.64731553649531 +2019-01-04 18:45:00,25.0,0.497883598,25.64909360137283 +2019-01-04 19:00:00,25.0,0.500925926,25.65087158276243 +2019-01-04 19:15:00,25.0,0.505555556,25.65264948043542 +2019-01-04 19:30:00,25.0,0.511904762,25.654427294163128 +2019-01-04 19:45:00,25.0,0.514550265,25.65620502371688 +2019-01-04 20:00:00,25.0,0.513756614,25.657982668868023 +2019-01-04 20:15:00,25.0,0.513095238,25.659760229387913 +2019-01-04 20:30:00,25.0,0.511904762,25.661537705047916 +2019-01-04 20:45:00,25.0,0.511640212,25.66331509561941 +2019-01-04 21:00:00,25.0,0.513888889,25.66509240087378 +2019-01-04 21:15:00,25.0,0.513095238,25.666869620582432 +2019-01-04 21:30:00,25.0,0.512301587,25.668646754516764 +2019-01-04 21:45:00,25.0,0.511507937,25.670423802448205 +2019-01-04 22:00:00,25.0,0.512566138,25.672200764148187 +2019-01-04 22:15:00,25.0,0.515343915,25.673977639388152 +2019-01-04 22:30:00,25.0,0.515343915,25.67575442793955 +2019-01-04 22:45:00,25.0,0.516402116,25.677531129573854 +2019-01-04 23:00:00,25.0,0.517195767,25.679307744062537 +2019-01-04 23:15:00,25.0,0.516005291,25.681084271177085 +2019-01-04 23:30:00,25.0,0.518121693,25.682860710688995 +2019-01-04 23:45:00,25.0,0.517592593,25.684637062369784 +2019-01-05 00:00:00,25.0,0.514021164,25.68641332599097 +2019-01-05 00:15:00,25.0,0.509920635,25.688189501324086 +2019-01-05 00:30:00,25.0,0.506084656,25.689965588140677 +2019-01-05 00:45:00,25.0,0.508730159,25.691741586212295 +2019-01-05 01:00:00,25.0,0.510582011,25.69351749531051 +2019-01-05 01:15:00,25.0,0.507539683,25.6952933152069 +2019-01-05 01:30:00,25.0,0.503439153,25.697069045673057 +2019-01-05 01:45:00,25.0,0.49973545,25.69884468648058 +2019-01-05 02:00:00,25.0,0.495238095,25.700620237401083 +2019-01-05 02:15:00,25.0,0.48994709,25.70239569820619 +2019-01-05 02:30:00,25.0,0.488095238,25.704171068667534 +2019-01-05 02:45:00,25.0,0.487433862,25.705946348556772 +2019-01-05 03:00:00,25.0,0.486640212,25.707721537645554 +2019-01-05 03:15:00,25.0,0.488095238,25.709496635705552 +2019-01-05 03:30:00,25.0,0.480687831,25.711271642508457 +2019-01-05 03:45:00,25.0,0.478439153,25.713046557825955 +2019-01-05 04:00:00,25.0,0.473544974,25.71482138142975 +2019-01-05 04:15:00,25.0,0.46468254,25.716596113091573 +2019-01-05 04:30:00,25.0,0.464550265,25.71837075258314 +2019-01-05 04:45:00,25.0,0.460185185,25.720145299676204 +2019-01-05 05:00:00,25.0,0.461243386,25.721919754142508 +2019-01-05 05:15:00,25.0,0.477645503,25.723694115753826 +2019-01-05 05:30:00,25.0,0.490343915,25.725468384281935 +2019-01-05 05:45:00,25.0,0.490873016,25.727242559498617 +2019-01-05 06:00:00,25.0,0.485978836,25.729016641175683 +2019-01-05 06:15:00,25.0,0.474867725,25.73079062908494 +2019-01-05 06:30:00,25.0,0.472619048,25.732564522998214 +2019-01-05 06:45:00,25.0,0.482010582,25.734338322687346 +2019-01-05 07:00:00,25.0,0.496296296,25.736112027924182 +2019-01-05 07:15:00,25.0,0.500132275,25.737885638480588 +2019-01-05 07:30:00,25.0,0.497751323,25.739659154128436 +2019-01-05 07:45:00,25.0,0.489285714,25.74143257463961 +2019-01-05 08:00:00,25.0,0.482671958,25.743205899786012 +2019-01-05 08:15:00,25.0,0.478174603,25.74497912933955 +2019-01-05 08:30:00,25.0,0.477116402,25.746752263072153 +2019-01-05 08:45:00,25.0,0.478042328,25.74852530075575 +2019-01-05 09:00:00,25.0,0.480026455,25.75029824216229 +2019-01-05 09:15:00,25.0,0.474470899,25.752071087063737 +2019-01-05 09:30:00,25.0,0.473412698,25.753843835232058 +2019-01-05 09:45:00,25.0,0.474470899,25.755616486439244 +2019-01-05 10:00:00,25.0,0.480291005,25.757389040457287 +2019-01-05 10:15:00,25.0,0.476587302,25.759161497058198 +2019-01-05 10:30:00,25.0,0.466931217,25.760933856014002 +2019-01-05 10:45:00,25.0,0.463227513,25.762706117096734 +2019-01-05 11:00:00,25.0,0.462830688,25.76447828007844 +2019-01-05 11:15:00,25.0,0.45952381,25.76625034473118 +2019-01-05 11:30:00,25.0,0.447354497,25.76802231082703 +2019-01-05 11:45:00,25.0,0.436640212,25.76979417813807 +2019-01-05 12:00:00,25.0,0.43478836,25.771565946436404 +2019-01-05 12:15:00,25.0,0.431613757,25.773337615494142 +2019-01-05 12:30:00,25.0,0.433201058,25.775109185083405 +2019-01-05 12:45:00,25.0,0.436904762,25.77688065497633 +2019-01-05 13:00:00,25.0,0.442724868,25.77865202494507 +2019-01-05 13:15:00,25.0,0.448412698,25.780423294761786 +2019-01-05 13:30:00,25.0,0.446164021,25.782194464198653 +2019-01-05 13:45:00,25.0,0.436772487,25.783965533027853 +2019-01-05 14:00:00,25.0,0.428703704,25.785736501021596 +2019-01-05 14:15:00,25.0,0.422354497,25.78750736795209 +2019-01-05 14:30:00,25.0,0.440873016,25.78927813359157 +2019-01-05 14:45:00,25.0,0.487037037,25.791048797712264 +2019-01-05 15:00:00,25.0,0.491931217,25.792819360086437 +2019-01-05 15:15:00,25.0,0.501719577,25.794589820486344 +2019-01-05 15:30:00,25.0,0.504232804,25.796360178684274 +2019-01-05 15:45:00,25.0,0.503703704,25.798130434452514 +2019-01-05 16:00:00,25.0,0.495634921,25.79990058756337 +2019-01-05 16:15:00,25.0,0.495634921,25.801670637789165 +2019-01-05 16:30:00,25.0,0.493915344,25.803440584902223 +2019-01-05 16:45:00,25.0,0.493783069,25.805210428674897 +2019-01-05 17:00:00,25.0,0.486375661,25.806980168879544 +2019-01-05 17:15:00,25.0,0.484656085,25.80874980528853 +2019-01-05 17:30:00,25.0,0.490343915,25.81051933767425 +2019-01-05 17:45:00,25.0,0.488227513,25.812288765809097 +2019-01-05 18:00:00,25.0,0.483465608,25.81405808946548 +2019-01-05 18:15:00,25.0,0.487433862,25.81582730841583 +2019-01-05 18:30:00,25.0,0.523809524,25.817596422432587 +2019-01-05 18:45:00,25.0,0.518121693,25.819365431288197 +2019-01-05 19:00:00,25.0,0.500925926,25.82113433475513 +2019-01-05 19:15:00,25.0,0.496031746,25.822903132605866 +2019-01-05 19:30:00,25.0,0.499206349,25.824671824612896 +2019-01-05 19:45:00,25.0,0.502777778,25.826440410548727 +2019-01-05 20:00:00,25.0,0.513095238,25.828208890185884 +2019-01-05 20:15:00,25.0,0.550132275,25.829977263296893 +2019-01-05 20:30:00,25.0,0.553571429,25.83174552965431 +2019-01-05 20:45:00,25.0,0.551851852,25.833513689030692 +2019-01-05 21:00:00,25.0,0.548280423,25.835281741198614 +2019-01-05 21:15:00,25.0,0.549206349,25.837049685930666 +2019-01-05 21:30:00,25.0,0.544708995,25.83881752299945 +2019-01-05 21:45:00,25.0,0.545767196,25.840585252177583 +2019-01-05 22:00:00,25.0,0.533994709,25.842352873237697 +2019-01-05 22:15:00,25.0,0.527248677,25.844120385952436 +2019-01-05 22:30:00,25.0,0.529100529,25.84588779009446 +2019-01-05 22:45:00,25.0,0.533333333,25.847655085436436 +2019-01-05 23:00:00,25.0,0.558862434,25.849422271751056 +2019-01-05 23:15:00,25.0,0.562566138,25.851189348811015 +2019-01-05 23:30:00,25.0,0.547486772,25.852956316389033 +2019-01-05 23:45:00,25.0,0.541269841,25.854723174257835 +2019-01-06 00:00:00,25.0,0.537830688,25.856489922190168 +2019-01-06 00:15:00,25.0,0.543121693,25.858256559958782 +2019-01-06 00:30:00,25.0,0.52989418,25.860023087336454 +2019-01-06 00:45:00,25.0,0.521957672,25.861789504095967 +2019-01-06 01:00:00,25.0,0.530555556,25.863555810010116 +2019-01-06 01:15:00,25.0,0.525396825,25.865322004851723 +2019-01-06 01:30:00,25.0,0.507936508,25.86708808839361 +2019-01-06 01:45:00,25.0,0.489285714,25.868854060408623 +2019-01-06 02:00:00,25.0,0.478439153,25.870619920669615 +2019-01-06 02:15:00,25.0,0.466534392,25.872385668949455 +2019-01-06 02:30:00,25.0,0.475,25.874151305021037 +2019-01-06 02:45:00,25.0,0.467328042,25.875916828657253 +2019-01-06 03:00:00,25.0,0.454761905,25.87768223963102 +2019-01-06 03:15:00,25.0,0.450925926,25.87944753771527 +2019-01-06 03:30:00,25.0,0.453174603,25.88121272268294 +2019-01-06 03:45:00,25.0,0.439417989,25.882977794306992 +2019-01-06 04:00:00,25.0,0.435846561,25.884742752360395 +2019-01-06 04:15:00,25.0,0.422354497,25.88650759661614 +2019-01-06 04:30:00,25.0,0.401984127,25.88827232684723 +2019-01-06 04:45:00,25.0,0.398544974,25.890036942826676 +2019-01-06 05:00:00,25.0,0.40542328,25.89180144432751 +2019-01-06 05:15:00,25.0,0.384126984,25.89356583112278 +2019-01-06 05:30:00,25.0,0.382671958,25.895330102985543 +2019-01-06 05:45:00,25.0,0.360714286,25.897094259688878 +2019-01-06 06:00:00,25.0,0.365740741,25.898858301005873 +2019-01-06 06:15:00,25.0,0.348412698,25.900622226709636 +2019-01-06 06:30:00,25.0,0.332142857,25.902386036573283 +2019-01-06 06:45:00,25.0,0.317724868,25.90414973036995 +2019-01-06 07:00:00,25.0,0.303703704,25.905913307872787 +2019-01-06 07:15:00,25.0,0.297354497,25.90767676885496 +2019-01-06 07:30:00,25.0,0.311375661,25.909440113089648 +2019-01-06 07:45:00,25.0,0.303968254,25.911203340350042 +2019-01-06 08:00:00,25.0,0.323544974,25.912966450409353 +2019-01-06 08:15:00,25.0,0.329497354,25.91472944304081 +2019-01-06 08:30:00,25.0,0.321693122,25.916492318017646 +2019-01-06 08:45:00,25.0,0.301719577,25.918255075113123 +2019-01-06 09:00:00,25.0,0.279761905,25.920017714100506 +2019-01-06 09:15:00,25.0,0.256613757,25.921780234753083 +2019-01-06 09:30:00,25.0,0.252645503,25.923542636844154 +2019-01-06 09:45:00,25.0,0.271031746,25.925304920147035 +2019-01-06 10:00:00,25.0,0.28531746,25.927067084435052 +2019-01-06 10:15:00,25.0,0.290079365,25.92882912948156 +2019-01-06 10:30:00,25.0,0.297486772,25.930591055059914 +2019-01-06 10:45:00,25.0,0.290873016,25.932352860943496 +2019-01-06 11:00:00,25.0,0.27989418,25.934114546905693 +2019-01-06 11:15:00,25.0,0.26468254,25.935876112719917 +2019-01-06 11:30:00,25.0,0.274206349,25.93763755815959 +2019-01-06 11:45:00,25.0,0.245502646,25.93939888299815 +2019-01-06 12:00:00,25.0,0.218915344,25.941160087009056 +2019-01-06 12:15:00,25.0,0.226851852,25.94292116996577 +2019-01-06 12:30:00,25.0,0.221560847,25.944682131641784 +2019-01-06 12:45:00,25.0,0.227910053,25.946442971810598 +2019-01-06 13:00:00,25.0,0.235846561,25.948203690245723 +2019-01-06 13:15:00,25.0,0.252645503,25.9499642867207 +2019-01-06 13:30:00,25.0,0.243518519,25.951724761009068 +2019-01-06 13:45:00,25.0,0.25952381,25.953485112884398 +2019-01-06 14:00:00,25.0,0.25462963,25.955245342120268 +2019-01-06 14:15:00,25.0,0.243783069,25.95700544849027 +2019-01-06 14:30:00,25.0,0.241269841,25.95876543176802 +2019-01-06 14:45:00,25.0,0.25515873,25.960525291727137 +2019-01-06 15:00:00,25.0,0.275132275,25.96228502814127 +2019-01-06 15:15:00,25.0,0.287566138,25.964044640784078 +2019-01-06 15:30:00,25.0,0.290873016,25.965804129429234 +2019-01-06 15:45:00,25.0,0.290343915,25.967563493850427 +2019-01-06 16:00:00,25.0,0.308465608,25.969322733821368 +2019-01-06 16:15:00,25.0,0.328968254,25.971081849115773 +2019-01-06 16:30:00,25.0,0.347619048,25.972840839507384 +2019-01-06 16:45:00,25.0,0.371428571,25.974599704769957 +2019-01-06 17:00:00,25.0,0.381613757,25.97635844467726 +2019-01-06 17:15:00,25.0,0.378571429,25.978117059003083 +2019-01-06 17:30:00,25.0,0.374603175,25.979875547521225 +2019-01-06 17:45:00,25.0,0.386904762,25.981633910005506 +2019-01-06 18:00:00,25.0,0.389417989,25.983392146229765 +2019-01-06 18:15:00,25.0,0.397222222,25.98515025596785 +2019-01-06 18:30:00,25.0,0.40542328,25.986908238993628 +2019-01-06 18:45:00,25.0,0.408333333,25.988666095080987 +2019-01-06 19:00:00,25.0,0.403703704,25.990423824003823 +2019-01-06 19:15:00,25.0,0.411375661,25.99218142553606 +2019-01-06 19:30:00,25.0,0.422486772,25.99393889945162 +2019-01-06 19:45:00,25.0,0.408333333,25.995696245524464 +2019-01-06 20:00:00,25.0,0.350793651,25.997453463528554 +2019-01-06 20:15:00,25.0,0.33452381,25.99921055323787 +2019-01-06 20:30:00,25.0,0.339153439,26.00096751442641 +2019-01-06 20:45:00,25.0,0.330026455,26.0027243468682 +2019-01-06 21:00:00,25.0,0.314021164,26.004481050337258 +2019-01-06 21:15:00,25.0,0.329761905,26.00623762460764 +2019-01-06 21:30:00,25.0,0.333201058,26.00799406945341 +2019-01-06 21:45:00,25.0,0.344973545,26.009750384648655 +2019-01-06 22:00:00,25.0,0.377513228,26.011506569967466 +2019-01-06 22:15:00,25.0,0.400396825,26.013262625183962 +2019-01-06 22:30:00,25.0,0.40542328,26.015018550072277 +2019-01-06 22:45:00,25.0,0.397222222,26.016774344406556 +2019-01-06 23:00:00,25.0,0.4,26.018530007960965 +2019-01-06 23:15:00,25.0,0.404497354,26.02028554050969 +2019-01-06 23:30:00,25.0,0.416402116,26.022040941826926 +2019-01-06 23:45:00,25.0,0.409920635,26.023796211686896 +2019-01-07 00:00:00,25.0,0.40026455,26.025551349863825 +2019-01-07 00:15:00,25.0,0.393915344,26.027306356131966 +2019-01-07 00:30:00,25.0,0.376322751,26.02906123026559 +2019-01-07 00:45:00,25.0,0.361111111,26.030815972038976 +2019-01-07 01:00:00,25.0,0.343518519,26.032570581226427 +2019-01-07 01:15:00,25.0,0.33042328,26.03432505760226 +2019-01-07 01:30:00,25.0,0.325925926,26.03607940094081 +2019-01-07 01:45:00,25.0,0.328042328,26.03783361101643 +2019-01-07 02:00:00,25.0,0.31468254,26.039587687603493 +2019-01-07 02:15:00,25.0,0.315079365,26.04134163047638 +2019-01-07 02:30:00,25.0,0.312301587,26.043095439409502 +2019-01-07 02:45:00,25.0,0.30462963,26.04484911417727 +2019-01-07 03:00:00,25.0,0.296693122,26.04660265455413 +2019-01-07 03:15:00,25.0,0.267195767,26.048356060314532 +2019-01-07 03:30:00,25.0,0.257407407,26.050109331232957 +2019-01-07 03:45:00,25.0,0.261904762,26.051862467083886 +2019-01-07 04:00:00,25.0,0.26468254,26.053615467641833 +2019-01-07 04:15:00,25.0,0.270238095,26.05536833268132 +2019-01-07 04:30:00,25.0,0.291137566,26.05712106197689 +2019-01-07 04:45:00,25.0,0.321825397,26.058873655303106 +2019-01-07 05:00:00,25.0,0.324074074,26.06062611243454 +2019-01-07 05:15:00,25.0,0.326984127,26.06237843314579 +2019-01-07 05:30:00,25.0,0.314153439,26.064130617211468 +2019-01-07 05:45:00,25.0,0.309920635,26.065882664406203 +2019-01-07 06:00:00,25.0,0.298677249,26.067634574504645 +2019-01-07 06:15:00,25.0,0.281878307,26.06938634728146 +2019-01-07 06:30:00,25.0,0.251719577,26.071137982511324 +2019-01-07 06:45:00,25.0,0.220634921,26.072889479968946 +2019-01-07 07:00:00,25.0,0.199338624,26.07464083942904 +2019-01-07 07:15:00,25.0,0.179232804,26.076392060666343 +2019-01-07 07:30:00,25.0,0.156481481,26.07814314345561 +2019-01-07 07:45:00,25.0,0.141005291,26.07989408757161 +2019-01-07 08:00:00,25.0,0.127116402,26.081644892789132 +2019-01-07 08:15:00,25.0,0.123015873,26.083395558882987 +2019-01-07 08:30:00,25.0,0.116005291,26.085146085628 +2019-01-07 08:45:00,25.0,0.106349206,26.086896472799012 +2019-01-07 09:00:00,25.0,0.102777778,26.088646720170885 +2019-01-07 09:15:00,25.0,0.097751323,26.0903968275185 +2019-01-07 09:30:00,25.0,0.101587302,26.09214679461675 +2019-01-07 09:45:00,25.0,0.102910053,26.093896621240553 +2019-01-07 10:00:00,25.0,0.116798942,26.09564630716484 +2019-01-07 10:15:00,25.0,0.156613757,26.097395852164567 +2019-01-07 10:30:00,25.0,0.197486772,26.0991452560147 +2019-01-07 10:45:00,25.0,0.239153439,26.100894518490225 +2019-01-07 11:00:00,25.0,0.280291005,26.102643639366153 +2019-01-07 11:15:00,25.0,0.315343915,26.104392618417503 +2019-01-07 11:30:00,25.0,0.350132275,26.10614145541932 +2019-01-07 11:45:00,25.0,0.383862434,26.107890150146662 +2019-01-07 12:00:00,25.0,0.431349206,26.109638702374614 +2019-01-07 12:15:00,25.0,0.463624339,26.111387111878265 +2019-01-07 12:30:00,25.0,0.487698413,26.113135378432734 +2019-01-07 12:45:00,25.0,0.507407407,26.114883501813157 +2019-01-07 13:00:00,25.0,0.53042328,26.116631481794684 +2019-01-07 13:15:00,25.0,0.562433862,26.11837931815249 +2019-01-07 13:30:00,25.0,0.555026455,26.120127010661754 +2019-01-07 13:45:00,25.0,0.563227513,26.121874559097694 +2019-01-07 14:00:00,25.0,0.573148148,26.123621963235532 +2019-01-07 14:15:00,25.0,0.586243386,26.125369222850516 +2019-01-07 14:30:00,25.0,0.591005291,26.127116337717904 +2019-01-07 14:45:00,25.0,0.560714286,26.12886330761298 +2019-01-07 15:00:00,25.0,0.570767196,26.13061013231105 +2019-01-07 15:15:00,25.0,0.574074074,26.132356811587425 +2019-01-07 15:30:00,25.0,0.557671958,26.134103345217447 +2019-01-07 15:45:00,25.0,0.550661376,26.135849732976475 +2019-01-07 16:00:00,25.0,0.58531746,26.137595974639883 +2019-01-07 16:15:00,25.0,0.569973545,26.139342069983062 +2019-01-07 16:30:00,25.0,0.549603175,26.141088018781428 +2019-01-07 16:45:00,25.0,0.532142857,26.142833820810417 +2019-01-07 17:00:00,25.0,0.518915344,26.14457947584547 +2019-01-07 17:15:00,25.0,0.513227513,26.14632498366207 +2019-01-07 17:30:00,25.0,0.47962963,26.14807034403569 +2019-01-07 17:45:00,25.0,0.462433862,26.149815556741853 +2019-01-07 18:00:00,25.0,0.464285714,26.151560621556076 +2019-01-07 18:15:00,25.0,0.491798942,26.153305538253907 +2019-01-07 18:30:00,25.0,0.505820106,26.155050306610914 +2019-01-07 18:45:00,25.0,0.525529101,26.156794926402675 +2019-01-07 19:00:00,25.0,0.533465608,26.158539397404798 +2019-01-07 19:15:00,25.0,0.539814815,26.160283719392904 +2019-01-07 19:30:00,25.0,0.549470899,26.162027892142632 +2019-01-07 19:45:00,25.0,0.557804233,26.163771915429642 +2019-01-07 20:00:00,25.0,0.565608466,26.16551578902962 +2019-01-07 20:15:00,25.0,0.57473545,26.16725951271826 +2019-01-07 20:30:00,25.0,0.577248677,26.169003086271278 +2019-01-07 20:45:00,25.0,0.55978836,26.17074650946442 +2019-01-07 21:00:00,25.0,0.525396825,26.17248978207343 +2019-01-07 21:15:00,25.0,0.527910053,26.174232903874096 +2019-01-07 21:30:00,25.0,0.521957672,26.17597587464221 +2019-01-07 21:45:00,25.0,0.474470899,26.177718694153583 +2019-01-07 22:00:00,25.0,0.47526455,26.179461362184053 +2019-01-07 22:15:00,25.0,0.47526455,26.181203878509475 +2019-01-07 22:30:00,25.0,0.474603175,26.18294624290572 +2019-01-07 22:45:00,25.0,0.47473545,26.184688455148688 +2019-01-07 23:00:00,25.0,0.476058201,26.18643051501428 +2019-01-07 23:15:00,25.0,0.475661376,26.188172422278438 +2019-01-07 23:30:00,25.0,0.475,26.189914176717107 +2019-01-07 23:45:00,25.0,0.474338624,26.191655778106263 +2019-01-08 00:00:00,25.0,0.474074074,26.193397226221894 +2019-01-08 00:15:00,25.0,0.474470899,26.195138520840015 +2019-01-08 00:30:00,25.0,0.471825397,26.196879661736652 +2019-01-08 00:45:00,25.0,0.436243386,26.19862064868786 +2019-01-08 01:00:00,25.0,0.470767196,26.200361481469706 +2019-01-08 01:15:00,25.0,0.467724868,26.20210215985828 +2019-01-08 01:30:00,25.0,0.471164021,26.2038426836297 +2019-01-08 01:45:00,25.0,0.471296296,26.20558305256008 +2019-01-08 02:00:00,25.0,0.465079365,26.207323266425583 +2019-01-08 02:15:00,25.0,0.463492063,26.209063325002372 +2019-01-08 02:30:00,25.0,0.444047619,26.210803228066638 +2019-01-08 02:45:00,25.0,0.461507937,26.212542975394594 +2019-01-08 03:00:00,25.0,0.457275132,26.214282566762467 +2019-01-08 03:15:00,25.0,0.461507937,26.216022001946506 +2019-01-08 03:30:00,25.0,0.458597884,26.217761280722982 +2019-01-08 03:45:00,25.0,0.461640212,26.219500402868185 +2019-01-08 04:00:00,25.0,0.459656085,26.221239368158425 +2019-01-08 04:15:00,25.0,0.421428571,26.22297817637003 +2019-01-08 04:30:00,25.0,0.386375661,26.224716827279355 +2019-01-08 04:45:00,25.0,0.390079365,26.226455320662765 +2019-01-08 05:00:00,25.0,0.387962963,26.228193656296657 +2019-01-08 05:15:00,25.0,0.398809524,26.22993183395744 +2019-01-08 05:30:00,25.0,0.400132275,26.231669853421543 +2019-01-08 05:45:00,25.0,0.394444444,26.23340771446542 +2019-01-08 06:00:00,25.0,0.399074074,26.235145416865542 +2019-01-08 06:15:00,25.0,0.401322751,26.236882960398408 +2019-01-08 06:30:00,25.0,0.405820106,26.23862034484052 +2019-01-08 06:45:00,25.0,0.406613757,26.24035756996842 +2019-01-08 07:00:00,25.0,0.373809524,26.242094635558658 +2019-01-08 07:15:00,25.0,0.361507937,26.243831541387813 +2019-01-08 07:30:00,25.0,0.346825397,26.245568287232476 +2019-01-08 07:45:00,25.0,0.347089947,26.247304872869265 +2019-01-08 08:00:00,25.0,0.347089947,26.249041298074815 +2019-01-08 08:15:00,25.0,0.343121693,26.25077756262578 +2019-01-08 08:30:00,25.0,0.347089947,26.252513666298846 +2019-01-08 08:45:00,25.0,0.338624339,26.254249608870705 +2019-01-08 09:00:00,25.0,0.323015873,26.255985390118077 +2019-01-08 09:15:00,25.0,0.322883598,26.257721009817704 +2019-01-08 09:30:00,25.0,0.428174603,26.259456467746343 +2019-01-08 09:45:00,25.0,0.452777778,26.261191763680777 +2019-01-08 10:00:00,25.0,0.414417989,26.262926897397808 +2019-01-08 10:15:00,25.0,0.444444444,26.26466186867426 +2019-01-08 10:30:00,25.0,0.449074074,26.266396677286977 +2019-01-08 10:45:00,25.0,0.45489418,26.268131323012824 +2019-01-08 11:00:00,25.0,0.432539683,26.269865805628683 +2019-01-08 11:15:00,25.0,0.45515873,26.27160012491147 +2019-01-08 11:30:00,25.0,0.450925926,26.273334280638103 +2019-01-08 11:45:00,25.0,0.456216931,26.275068272585536 +2019-01-08 12:00:00,25.0,0.434920635,26.276802100530738 +2019-01-08 12:15:00,25.0,0.461243386,26.278535764250698 +2019-01-08 12:30:00,25.0,0.473148148,26.28026926352243 +2019-01-08 12:45:00,25.0,0.474338624,26.28200259812297 +2019-01-08 13:00:00,25.0,0.466269841,26.283735767829366 +2019-01-08 13:15:00,25.0,0.448677249,26.2854687724187 +2019-01-08 13:30:00,25.0,0.485714286,26.287201611668067 +2019-01-08 13:45:00,25.0,0.513492063,26.288934285354582 +2019-01-08 14:00:00,25.0,0.531878307,26.29066679325539 +2019-01-08 14:15:00,25.0,0.554761905,26.292399135147647 +2019-01-08 14:30:00,25.0,0.563624339,26.294131310808538 +2019-01-08 14:45:00,25.0,0.573941799,26.295863320015265 +2019-01-08 15:00:00,25.0,0.570899471,26.297595162545054 +2019-01-08 15:15:00,25.0,0.572619048,26.29932683817515 +2019-01-08 15:30:00,25.0,0.576058201,26.301058346682826 +2019-01-08 15:45:00,25.0,0.580952381,26.30278968784536 +2019-01-08 16:00:00,25.0,0.575529101,26.30452086144008 +2019-01-08 16:15:00,25.0,0.56957672,26.3062518672443 +2019-01-08 16:30:00,25.0,0.536111111,26.307982705035386 +2019-01-08 16:45:00,25.0,0.548544974,26.30971337459071 +2019-01-08 17:00:00,25.0,0.548941799,26.311443875687672 +2019-01-08 17:15:00,25.0,0.561111111,26.313174208103685 +2019-01-08 17:30:00,25.0,0.569312169,26.314904371616194 +2019-01-08 17:45:00,25.0,0.56957672,26.31663436600266 +2019-01-08 18:00:00,25.0,0.587301587,26.31836419104057 +2019-01-08 18:15:00,25.0,0.588888889,26.320093846507426 +2019-01-08 18:30:00,25.0,0.583994709,26.32182333218076 +2019-01-08 18:45:00,25.0,0.59021164,26.323552647838113 +2019-01-08 19:00:00,25.0,0.589153439,26.32528179325707 +2019-01-08 19:15:00,25.0,0.585582011,26.32701076821521 +2019-01-08 19:30:00,25.0,0.588095238,26.328739572490157 +2019-01-08 19:45:00,25.0,0.593121693,26.330468205859546 +2019-01-08 20:00:00,25.0,0.593518519,26.332196668101037 +2019-01-08 20:15:00,25.0,0.591798942,26.33392495899231 +2019-01-08 20:30:00,25.0,0.590740741,26.33565307831107 +2019-01-08 20:45:00,25.0,0.587169312,26.337381025835036 +2019-01-08 21:00:00,25.0,0.586111111,26.339108801341965 +2019-01-08 21:15:00,25.0,0.583862434,26.340836404609618 +2019-01-08 21:30:00,25.0,0.578439153,26.342563835415792 +2019-01-08 21:45:00,25.0,0.574603175,26.344291093538303 +2019-01-08 22:00:00,25.0,0.583730159,26.346018178754978 +2019-01-08 22:15:00,25.0,0.588888889,26.347745090843684 +2019-01-08 22:30:00,25.0,0.585846561,26.349471829582296 +2019-01-08 22:45:00,25.0,0.598544974,26.35119839474872 +2019-01-08 23:00:00,25.0,0.598677249,26.35292478612088 +2019-01-08 23:15:00,25.0,0.527248677,26.354651003476725 +2019-01-08 23:30:00,25.0,0.525793651,26.356377046594226 +2019-01-08 23:45:00,25.0,0.525396825,26.35810291525137 +2019-01-09 00:00:00,25.0,0.526322751,26.359828609226174 +2019-01-09 00:15:00,25.0,0.526587302,26.361554128296678 +2019-01-09 00:30:00,25.0,0.527116402,26.36327947224094 +2019-01-09 00:45:00,25.0,0.525925926,26.365004640837043 +2019-01-09 01:00:00,25.0,0.466666667,26.366729633863088 +2019-01-09 01:15:00,25.0,0.460449735,26.368454451097207 +2019-01-09 01:30:00,25.0,0.460582011,26.37017909231755 +2019-01-09 01:45:00,25.0,0.461375661,26.371903557302286 +2019-01-09 02:00:00,25.0,0.461375661,26.373627845829613 +2019-01-09 02:15:00,25.0,0.46031746,26.375351957677747 +2019-01-09 02:30:00,25.0,0.461243386,26.377075892624934 +2019-01-09 02:45:00,25.0,0.460978836,26.37879965044943 +2019-01-09 03:00:00,25.0,0.460582011,26.380523230929526 +2019-01-09 03:15:00,25.0,0.45978836,26.38224663384353 +2019-01-09 03:30:00,25.0,0.460582011,26.383969858969774 +2019-01-09 03:45:00,25.0,0.460846561,26.385692906086614 +2019-01-09 04:00:00,25.0,0.460582011,26.387415774972425 +2019-01-09 04:15:00,25.0,0.461111111,26.38913846540561 +2019-01-09 04:30:00,25.0,0.461111111,26.39086097716459 +2019-01-09 04:45:00,25.0,0.460185185,26.392583310027817 +2019-01-09 05:00:00,25.0,0.458730159,26.39430546377375 +2019-01-09 05:15:00,25.0,0.458862434,26.396027438180894 +2019-01-09 05:30:00,25.0,0.46005291,26.39774923302776 +2019-01-09 05:45:00,25.0,0.460582011,26.399470848092882 +2019-01-09 06:00:00,25.0,0.460846561,26.401192283154828 +2019-01-09 06:15:00,25.0,0.487962963,26.402913537992177 +2019-01-09 06:30:00,25.0,0.54510582,26.404634612383546 +2019-01-09 06:45:00,25.0,0.548809524,26.40635550610756 +2019-01-09 07:00:00,25.0,0.550925926,26.408076218942874 +2019-01-09 07:15:00,25.0,0.565873016,26.409796750668164 +2019-01-09 07:30:00,25.0,0.627380952,26.411517101062138 +2019-01-09 07:45:00,25.0,0.626984127,26.41323726990352 +2019-01-09 08:00:00,25.0,0.626455026,26.414957256971046 +2019-01-09 08:15:00,25.0,0.627645503,26.416677062043505 +2019-01-09 08:30:00,25.0,0.627380952,26.418396684899676 +2019-01-09 08:45:00,25.0,0.627645503,26.420116125318387 +2019-01-09 09:00:00,25.0,0.629497354,26.421835383078474 +2019-01-09 09:15:00,25.0,0.63015873,26.423554457958808 +2019-01-09 09:30:00,25.0,0.629365079,26.42527334973827 +2019-01-09 09:45:00,25.0,0.62989418,26.42699205819578 +2019-01-09 10:00:00,25.0,0.629761905,26.428710583110266 +2019-01-09 10:15:00,25.0,0.62989418,26.430428924260696 +2019-01-09 10:30:00,25.0,0.62989418,26.432147081426045 +2019-01-09 10:45:00,25.0,0.630555556,26.433865054385322 +2019-01-09 11:00:00,25.0,0.631216931,26.43558284291756 +2019-01-09 11:15:00,25.0,0.631613757,26.437300446801814 +2019-01-09 11:30:00,25.0,0.632010582,26.439017865817156 +2019-01-09 11:45:00,25.0,0.632142857,26.440735099742692 +2019-01-09 12:00:00,25.0,0.632275132,26.442452148357546 +2019-01-09 12:15:00,25.0,0.654497354,26.444169011440867 +2019-01-09 12:30:00,25.0,0.658597884,26.445885688771828 +2019-01-09 12:45:00,25.0,0.657539683,26.447602180129625 +2019-01-09 13:00:00,25.0,0.659126984,26.44931848529348 +2019-01-09 13:15:00,25.0,0.65978836,26.451034604042643 +2019-01-09 13:30:00,25.0,0.659920635,26.452750536156376 +2019-01-09 13:45:00,25.0,0.66031746,26.454466281413975 +2019-01-09 14:00:00,25.0,0.66031746,26.456181839594755 +2019-01-09 14:15:00,25.0,0.660185185,26.457897210478055 +2019-01-09 14:30:00,25.0,0.659259259,26.459612393843248 +2019-01-09 14:45:00,25.0,0.659656085,26.461327389469712 +2019-01-09 15:00:00,25.0,0.66031746,26.463042197136872 +2019-01-09 15:15:00,25.0,0.660185185,26.464756816624156 +2019-01-09 15:30:00,25.0,0.65952381,26.46647124771103 +2019-01-09 15:45:00,25.0,0.658994709,26.468185490176978 +2019-01-09 16:00:00,25.0,0.658730159,26.469899543801514 +2019-01-09 16:15:00,25.0,0.659259259,26.47161340836417 +2019-01-09 16:30:00,25.0,0.658068783,26.473327083644502 +2019-01-09 16:45:00,25.0,0.682010582,26.4750405694221 +2019-01-09 17:00:00,25.0,0.684656085,26.476753865476564 +2019-01-09 17:15:00,25.0,0.683994709,26.47846697158753 +2019-01-09 17:30:00,25.0,0.683994709,26.48017988753465 +2019-01-09 17:45:00,25.0,0.683465608,26.481892613097614 +2019-01-09 18:00:00,25.0,0.682539683,26.483605148056117 +2019-01-09 18:15:00,25.0,0.683465608,26.485317492189896 +2019-01-09 18:30:00,25.0,0.683333333,26.487029645278703 +2019-01-09 18:45:00,25.0,0.682936508,26.488741607102316 +2019-01-09 19:00:00,25.0,0.708994709,26.490453377440538 +2019-01-09 19:15:00,25.0,0.709391534,26.4921649560732 +2019-01-09 19:30:00,25.0,0.727777778,26.49387634278015 +2019-01-09 19:45:00,25.0,0.726190476,26.495587537341272 +2019-01-09 20:00:00,25.0,0.721825397,26.497298539536466 +2019-01-09 20:15:00,25.0,0.716931217,26.499009349145656 +2019-01-09 20:30:00,25.0,0.709259259,26.500719965948793 +2019-01-09 20:45:00,25.0,0.700661376,26.50243038972586 +2019-01-09 21:00:00,25.0,0.692063492,26.504140620256848 +2019-01-09 21:15:00,25.0,0.679365079,26.505850657321794 +2019-01-09 21:30:00,25.0,0.664021164,26.507560500700745 +2019-01-09 21:45:00,25.0,0.651058201,26.509270150173776 +2019-01-09 22:00:00,25.0,0.63452381,26.510979605520987 +2019-01-09 22:15:00,25.0,0.618518519,26.512688866522506 +2019-01-09 22:30:00,25.0,0.600793651,26.51439793295848 +2019-01-09 22:45:00,25.0,0.578703704,26.516106804609095 +2019-01-09 23:00:00,25.0,0.552645503,26.51781548125454 +2019-01-09 23:15:00,25.0,0.528571429,26.51952396267505 +2019-01-09 23:30:00,25.0,0.498941799,26.52123224865087 +2019-01-09 23:45:00,25.0,0.473677249,26.522940338962275 +2019-01-10 00:00:00,25.0,0.439550265,26.524648233389573 +2019-01-10 00:15:00,25.0,0.418121693,26.52635593171309 +2019-01-10 00:30:00,25.0,0.393518519,26.528063433713175 +2019-01-10 00:45:00,25.0,0.370767196,26.529770739170203 +2019-01-10 01:00:00,25.0,0.36005291,26.531477847864583 +2019-01-10 01:15:00,25.0,0.346164021,26.533184759576738 +2019-01-10 01:30:00,25.0,0.325396825,26.53489147408712 +2019-01-10 01:45:00,25.0,0.301719577,26.53659799117621 +2019-01-10 02:00:00,25.0,0.285978836,26.53830431062451 +2019-01-10 02:15:00,25.0,0.271693122,26.540010432212554 +2019-01-10 02:30:00,25.0,0.254761905,26.541716355720894 +2019-01-10 02:45:00,25.0,0.24047619,26.543422080930107 +2019-01-10 03:00:00,25.0,0.231613757,26.5451276076208 +2019-01-10 03:15:00,25.0,0.21984127,26.546832935573605 +2019-01-10 03:30:00,25.0,0.213095238,26.548538064569183 +2019-01-10 03:45:00,25.0,0.197619048,26.55024299438821 +2019-01-10 04:00:00,25.0,0.180952381,26.551947724811395 +2019-01-10 04:15:00,25.0,0.165740741,26.553652255619475 +2019-01-10 04:30:00,25.0,0.145634921,26.555356586593206 +2019-01-10 04:45:00,25.0,0.126190476,26.557060717513373 +2019-01-10 05:00:00,25.0,0.10978836,26.558764648160793 +2019-01-10 05:15:00,25.0,0.096428571,26.560468378316294 +2019-01-10 05:30:00,25.0,0.085582011,26.562171907760742 +2019-01-10 05:45:00,25.0,0.076719577,26.563875236275024 +2019-01-10 06:00:00,25.0,0.067989418,26.565578363640057 +2019-01-10 06:15:00,25.0,0.05952381,26.567281289636778 +2019-01-10 06:30:00,25.0,0.054100529,26.568984014046155 +2019-01-10 06:45:00,25.0,0.051322751,26.570686536649177 +2019-01-10 07:00:00,25.0,0.048015873,26.572388857226862 +2019-01-10 07:15:00,25.0,0.04510582,26.574090975560253 +2019-01-10 07:30:00,25.0,0.037037037,26.575792891430424 +2019-01-10 07:45:00,25.0,0.029232804,26.577494604618465 +2019-01-10 08:00:00,25.0,0.025,26.579196114905503 +2019-01-10 08:15:00,25.0,0.024074074,26.58089742207268 +2019-01-10 08:30:00,25.0,0.026587302,26.582598525901176 +2019-01-10 08:45:00,25.0,0.024867725,26.584299426172187 +2019-01-10 09:00:00,25.0,0.023148148,26.58600012266694 +2019-01-10 09:15:00,25.0,0.026455026,26.587700615166685 +2019-01-10 09:30:00,25.0,0.025793651,26.589400903452706 +2019-01-10 09:45:00,25.0,0.02010582,26.591100987306305 +2019-01-10 10:00:00,25.0,0.015343915,26.592800866508817 +2019-01-10 10:15:00,25.0,0.012830688,26.594500540841594 +2019-01-10 10:30:00,25.0,0.012962963,26.596200010086022 +2019-01-10 10:45:00,25.0,0.013095238,26.59789927402351 +2019-01-10 11:00:00,25.0,0.020634921,26.599598332435498 +2019-01-10 11:15:00,25.0,0.02526455,26.60129718510345 +2019-01-10 11:30:00,25.0,0.018386243,26.60299583180885 +2019-01-10 11:45:00,25.0,0.016931217,26.60469427233322 +2019-01-10 12:00:00,25.0,0.019179894,26.6063925064581 +2019-01-10 12:15:00,25.0,0.01984127,26.608090533965058 +2019-01-10 12:30:00,25.0,0.024074074,26.60978835463569 +2019-01-10 12:45:00,25.0,0.025925926,26.61148596825162 +2019-01-10 13:00:00,25.0,0.030026455,26.6131833745945 +2019-01-10 13:15:00,25.0,0.037433862,26.614880573445998 +2019-01-10 13:30:00,25.0,0.051322751,26.61657756458782 +2019-01-10 13:45:00,25.0,0.049206349,26.618274347801698 +2019-01-10 14:00:00,25.0,0.038492063,26.619970922869385 +2019-01-10 14:15:00,25.0,0.037433862,26.621667289572663 +2019-01-10 14:30:00,25.0,0.038227513,26.623363447693343 +2019-01-10 14:45:00,25.0,0.033994709,26.62505939701326 +2019-01-10 15:00:00,25.0,0.030820106,26.626755137314277 +2019-01-10 15:15:00,25.0,0.032142857,26.628450668378285 +2019-01-10 15:30:00,25.0,0.039021164,26.6301459899872 +2019-01-10 15:45:00,25.0,0.044708995,26.631841101922966 +2019-01-10 16:00:00,25.0,0.04484127,26.633536003967556 +2019-01-10 16:15:00,25.0,0.046428571,26.635230695902965 +2019-01-10 16:30:00,25.0,0.050925926,26.636925177511216 +2019-01-10 16:45:00,25.0,0.053835979,26.638619448574367 +2019-01-10 17:00:00,25.0,0.062037037,26.640313508874492 +2019-01-10 17:15:00,25.0,0.070899471,26.6420073581937 +2019-01-10 17:30:00,25.0,0.074338624,26.64370099631412 +2019-01-10 17:45:00,25.0,0.07989418,26.645394423017915 +2019-01-10 18:00:00,25.0,0.08994709,26.647087638087275 +2019-01-10 18:15:00,25.0,0.09510582,26.648780641304413 +2019-01-10 18:30:00,25.0,0.10026455,26.650473432451566 +2019-01-10 18:45:00,25.0,0.117857143,26.65216601131101 +2019-01-10 19:00:00,25.0,0.128306878,26.65385837766504 +2019-01-10 19:15:00,25.0,0.137566138,26.65555053129598 +2019-01-10 19:30:00,25.0,0.147883598,26.657242471986176 +2019-01-10 19:45:00,25.0,0.162037037,26.658934199518015 +2019-01-10 20:00:00,25.0,0.177910053,26.660625713673895 +2019-01-10 20:15:00,25.0,0.191534392,26.662317014236258 +2019-01-10 20:30:00,25.0,0.189550265,26.66400810098756 +2019-01-10 20:45:00,25.0,0.189417989,26.66569897371029 +2019-01-10 21:00:00,25.0,0.203835979,26.66738963218696 +2019-01-10 21:15:00,25.0,0.224074074,26.66908007620012 +2019-01-10 21:30:00,25.0,0.236243386,26.670770305532344 +2019-01-10 21:45:00,25.0,0.243915344,26.67246031996622 +2019-01-10 22:00:00,25.0,0.250793651,26.674150119284384 +2019-01-10 22:15:00,25.0,0.253968254,26.67583970326948 +2019-01-10 22:30:00,25.0,0.255026455,26.677529071704203 +2019-01-10 22:45:00,25.0,0.249338624,26.679218224371255 +2019-01-10 23:00:00,25.0,0.246693122,26.68090716105337 +2019-01-10 23:15:00,25.0,0.281613757,26.68259588153332 +2019-01-10 23:30:00,25.0,0.307142857,26.684284385593894 +2019-01-10 23:45:00,25.0,0.303835979,26.685972673017915 +2019-01-11 00:00:00,25.0,0.298148148,26.68766074358823 +2019-01-11 00:15:00,25.0,0.288492063,26.68934859708771 +2019-01-11 00:30:00,25.0,0.293253968,26.691036233299272 +2019-01-11 00:45:00,25.0,0.313095238,26.69272365200584 +2019-01-11 01:00:00,25.0,0.327910053,26.694410852990373 +2019-01-11 01:15:00,25.0,0.34021164,26.69609783603586 +2019-01-11 01:30:00,25.0,0.362169312,26.697784600925324 +2019-01-11 01:45:00,25.0,0.43994709,26.699471147441802 +2019-01-11 02:00:00,25.0,0.477513228,26.70115747536837 +2019-01-11 02:15:00,25.0,0.487169312,26.70284358448813 +2019-01-11 02:30:00,25.0,0.523809524,26.704529474584202 +2019-01-11 02:45:00,25.0,0.558201058,26.706215145439756 +2019-01-11 03:00:00,25.0,0.584656085,26.707900596837966 +2019-01-11 03:15:00,25.0,0.59484127,26.70958582856205 +2019-01-11 03:30:00,25.0,0.614417989,26.711270840395255 +2019-01-11 03:45:00,25.0,0.616269841,26.71295563212084 +2019-01-11 04:00:00,25.0,0.610449735,26.71464020352211 +2019-01-11 04:15:00,25.0,0.603835979,26.71632455438239 +2019-01-11 04:30:00,25.0,0.597222222,26.718008684485035 +2019-01-11 04:45:00,25.0,0.612698413,26.719692593613427 +2019-01-11 05:00:00,25.0,0.61494709,26.72137628155098 +2019-01-11 05:15:00,25.0,0.619312169,26.723059748081134 +2019-01-11 05:30:00,25.0,0.625793651,26.724742992987355 +2019-01-11 05:45:00,25.0,0.630291005,26.726426016053143 +2019-01-11 06:00:00,25.0,0.642592593,26.728108817062022 +2019-01-11 06:15:00,25.0,0.655555556,26.729791395797545 +2019-01-11 06:30:00,25.0,0.658730159,26.7314737520433 +2019-01-11 06:45:00,25.0,0.648544974,26.733155885582892 +2019-01-11 07:00:00,25.0,0.646693122,26.734837796199965 +2019-01-11 07:15:00,25.0,0.625661376,26.736519483678187 +2019-01-11 07:30:00,25.0,0.613492063,26.738200947801257 +2019-01-11 07:45:00,25.0,0.61957672,26.739882188352897 +2019-01-11 08:00:00,25.0,0.611507937,26.74156320511687 +2019-01-11 08:15:00,25.0,0.606613757,26.74324399787695 +2019-01-11 08:30:00,25.0,0.612301587,26.74492456641695 +2019-01-11 08:45:00,25.0,0.624867725,26.74660491052072 +2019-01-11 09:00:00,25.0,0.635846561,26.748285029972127 +2019-01-11 09:15:00,25.0,0.643386243,26.749964924555066 +2019-01-11 09:30:00,25.0,0.642724868,26.751644594053467 +2019-01-11 09:45:00,25.0,0.649470899,26.75332403825129 +2019-01-11 10:00:00,25.0,0.649867725,26.755003256932515 +2019-01-11 10:15:00,25.0,0.648412698,26.756682249881166 +2019-01-11 10:30:00,25.0,0.632671958,26.758361016881278 +2019-01-11 10:45:00,25.0,0.605026455,26.76003955771693 +2019-01-11 11:00:00,25.0,0.60515873,26.76171787217222 +2019-01-11 11:15:00,25.0,0.60462963,26.76339596003128 +2019-01-11 11:30:00,25.0,0.605026455,26.765073821078275 +2019-01-11 11:45:00,25.0,0.607936508,26.76675145509739 +2019-01-11 12:00:00,25.0,0.612566138,26.768428861872845 +2019-01-11 12:15:00,25.0,0.611507937,26.77010604118889 +2019-01-11 12:30:00,25.0,0.612962963,26.7717829928298 +2019-01-11 12:45:00,25.0,0.61494709,26.77345971657988 +2019-01-11 13:00:00,25.0,0.613756614,26.77513621222347 +2019-01-11 13:15:00,25.0,0.612962963,26.776812479544933 +2019-01-11 13:30:00,25.0,0.608994709,26.778488518328665 +2019-01-11 13:45:00,25.0,0.606216931,26.78016432835909 +2019-01-11 14:00:00,25.0,0.608333333,26.781839909420658 +2019-01-11 14:15:00,25.0,0.605820106,26.783515261297854 +2019-01-11 14:30:00,25.0,0.603174603,26.78519038377519 +2019-01-11 14:45:00,25.0,0.609920635,26.78686527663721 +2019-01-11 15:00:00,25.0,0.612566138,26.788539939668485 +2019-01-11 15:15:00,25.0,0.611772487,26.790214372653615 +2019-01-11 15:30:00,25.0,0.603042328,26.791888575377232 +2019-01-11 15:45:00,25.0,0.571957672,26.793562547623992 +2019-01-11 16:00:00,25.0,0.568121693,26.79523628917859 +2019-01-11 16:15:00,25.0,0.562566138,26.79690979982574 +2019-01-11 16:30:00,25.0,0.560582011,26.798583079350195 +2019-01-11 16:45:00,25.0,0.55978836,26.800256127536734 +2019-01-11 17:00:00,25.0,0.555555556,26.801928944170164 +2019-01-11 17:15:00,25.0,0.545767196,26.803601529035326 +2019-01-11 17:30:00,25.0,0.543121693,26.805273881917085 +2019-01-11 17:45:00,25.0,0.538095238,26.806946002600338 +2019-01-11 18:00:00,25.0,0.531481481,26.808617890870018 +2019-01-11 18:15:00,25.0,0.557010582,26.810289546511083 +2019-01-11 18:30:00,25.0,0.567460317,26.811960969308515 +2019-01-11 18:45:00,25.0,0.565740741,26.813632159047337 +2019-01-11 19:00:00,25.0,0.563359788,26.81530311551259 +2019-01-11 19:15:00,25.0,0.56031746,26.81697383848936 +2019-01-11 19:30:00,25.0,0.558068783,26.818644327762755 +2019-01-11 19:45:00,25.0,0.589814815,26.820314583117902 +2019-01-11 20:00:00,25.0,0.576455026,26.82198460433998 +2019-01-11 20:15:00,25.0,0.560978836,26.82365439121418 +2019-01-11 20:30:00,25.0,0.550661376,26.825323943525735 +2019-01-11 20:45:00,25.0,0.551587302,26.8269932610599 +2019-01-11 21:00:00,25.0,0.556481481,26.82866234360197 +2019-01-11 21:15:00,25.0,0.547883598,26.83033119093725 +2019-01-11 21:30:00,25.0,0.543121693,26.831999802851104 +2019-01-11 21:45:00,25.0,0.54047619,26.833668179128903 +2019-01-11 22:00:00,25.0,0.54457672,26.835336319556056 +2019-01-11 22:15:00,25.0,0.534656085,26.837004223918008 +2019-01-11 22:30:00,25.0,0.523148148,26.838671892000228 +2019-01-11 22:45:00,25.0,0.520899471,26.84033932358821 +2019-01-11 23:00:00,25.0,0.506878307,26.842006518467496 +2019-01-11 23:15:00,25.0,0.506216931,26.84367347642364 +2019-01-11 23:30:00,25.0,0.510582011,26.845340197242233 +2019-01-11 23:45:00,25.0,0.503306878,26.847006680708905 +2019-01-12 00:00:00,25.0,0.496825397,26.8486729266093 +2019-01-12 00:15:00,25.0,0.497883598,26.85033893472911 +2019-01-12 00:30:00,25.0,0.496693122,26.852004704854043 +2019-01-12 00:45:00,25.0,0.501851852,26.853670236769847 +2019-01-12 01:00:00,25.0,0.503703704,26.8553355302623 +2019-01-12 01:15:00,25.0,0.501058201,26.8570005851172 +2019-01-12 01:30:00,25.0,0.503703704,26.858665401120387 +2019-01-12 01:45:00,25.0,0.509391534,26.86032997805773 +2019-01-12 02:00:00,25.0,0.494312169,26.86199431571513 +2019-01-12 02:15:00,25.0,0.487962963,26.86365841387851 +2019-01-12 02:30:00,25.0,0.485582011,26.865322272333838 +2019-01-12 02:45:00,25.0,0.478174603,26.866985890867095 +2019-01-12 03:00:00,25.0,0.46494709,26.86864926926431 +2019-01-12 03:15:00,25.0,0.468121693,26.870312407311534 +2019-01-12 03:30:00,25.0,0.502777778,26.871975304794844 +2019-01-12 03:45:00,25.0,0.529365079,26.873637961500364 +2019-01-12 04:00:00,25.0,0.538359788,26.875300377214234 +2019-01-12 04:15:00,25.0,0.558994709,26.876962551722627 +2019-01-12 04:30:00,25.0,0.554100529,26.87862448481176 +2019-01-12 04:45:00,25.0,0.546031746,26.88028617626786 +2019-01-12 05:00:00,25.0,0.542328042,26.881947625877203 +2019-01-12 05:15:00,25.0,0.556349206,26.883608833426088 +2019-01-12 05:30:00,25.0,0.573677249,26.88526979870085 +2019-01-12 05:45:00,25.0,0.590740741,26.886930521487844 +2019-01-12 06:00:00,25.0,0.586904762,26.888591001573474 +2019-01-12 06:15:00,25.0,0.586375661,26.890251238744156 +2019-01-12 06:30:00,25.0,0.535714286,26.891911232786352 +2019-01-12 06:45:00,25.0,0.546428571,26.893570983486548 +2019-01-12 07:00:00,25.0,0.54021164,26.895230490631263 +2019-01-12 07:15:00,25.0,0.519312169,26.896889754007045 +2019-01-12 07:30:00,25.0,0.542592593,26.89854877340048 +2019-01-12 07:45:00,25.0,0.536507937,26.900207548598182 +2019-01-12 08:00:00,25.0,0.538492063,26.90186607938679 +2019-01-12 08:15:00,25.0,0.540343915,26.903524365552983 +2019-01-12 08:30:00,25.0,0.544047619,26.905182406883466 +2019-01-12 08:45:00,25.0,0.554100529,26.906840203164982 +2019-01-12 09:00:00,25.0,0.563095238,26.9084977541843 +2019-01-12 09:15:00,25.0,0.565608466,26.910155059728222 +2019-01-12 09:30:00,25.0,0.55952381,26.91181211958358 +2019-01-12 09:45:00,25.0,0.56521164,26.91346893353724 +2019-01-12 10:00:00,25.0,0.585449735,26.915125501376096 +2019-01-12 10:15:00,25.0,0.584391534,26.91678182288708 +2019-01-12 10:30:00,25.0,0.583068783,26.918437897857157 +2019-01-12 10:45:00,25.0,0.594047619,26.920093726073308 +2019-01-12 11:00:00,25.0,0.591931217,26.92174930732256 +2019-01-12 11:15:00,25.0,0.580952381,26.923404641391976 +2019-01-12 11:30:00,25.0,0.537566138,26.925059728068632 +2019-01-12 11:45:00,25.0,0.529232804,26.926714567139655 +2019-01-12 12:00:00,25.0,0.550132275,26.92836915839219 +2019-01-12 12:15:00,25.0,0.612169312,26.930023501613423 +2019-01-12 12:30:00,25.0,0.620502646,26.931677596590568 +2019-01-12 12:45:00,25.0,0.61468254,26.933331443110873 +2019-01-12 13:00:00,25.0,0.615740741,26.93498504096161 +2019-01-12 13:15:00,25.0,0.621560847,26.9366383899301 +2019-01-12 13:30:00,25.0,0.626322751,26.938291489803678 +2019-01-12 13:45:00,25.0,0.63042328,26.939944340369717 +2019-01-12 14:00:00,25.0,0.633068783,26.941596941415632 +2019-01-12 14:15:00,25.0,0.633068783,26.94324929272885 +2019-01-12 14:30:00,25.0,0.628306878,26.944901394096853 +2019-01-12 14:45:00,25.0,0.625661376,26.946553245307136 +2019-01-12 15:00:00,25.0,0.630820106,26.94820484614724 +2019-01-12 15:15:00,25.0,0.635978836,26.949856196404728 +2019-01-12 15:30:00,25.0,0.633465608,26.951507295867202 +2019-01-12 15:45:00,25.0,0.617328042,26.953158144322288 +2019-01-12 16:00:00,25.0,0.620767196,26.95480874155766 +2019-01-12 16:15:00,25.0,0.626587302,26.956459087361008 +2019-01-12 16:30:00,25.0,0.633862434,26.958109181520058 +2019-01-12 16:45:00,25.0,0.636640212,26.959759023822578 +2019-01-12 17:00:00,25.0,0.638492063,26.961408614056356 +2019-01-12 17:15:00,25.0,0.637830688,26.963057952009223 +2019-01-12 17:30:00,25.0,0.637962963,26.964707037469033 +2019-01-12 17:45:00,25.0,0.63994709,26.96635587022368 +2019-01-12 18:00:00,25.0,0.642195767,26.96800445006108 +2019-01-12 18:15:00,25.0,0.640608466,26.969652776769202 +2019-01-12 18:30:00,25.0,0.640740741,26.97130085013602 +2019-01-12 18:45:00,25.0,0.639021164,26.972948669949567 +2019-01-12 19:00:00,25.0,0.637301587,26.97459623599789 +2019-01-12 19:15:00,25.0,0.638227513,26.976243548069075 +2019-01-12 19:30:00,25.0,0.637433862,26.977890605951245 +2019-01-12 19:45:00,25.0,0.637566138,26.979537409432545 +2019-01-12 20:00:00,25.0,0.639550265,26.98118395830117 +2019-01-12 20:15:00,25.0,0.638888889,26.982830252345327 +2019-01-12 20:30:00,25.0,0.64047619,26.984476291353268 +2019-01-12 20:45:00,25.0,0.638888889,26.98612207511328 +2019-01-12 21:00:00,25.0,0.637566138,26.987767603413673 +2019-01-12 21:15:00,25.0,0.638492063,26.9894128760428 +2019-01-12 21:30:00,25.0,0.633333333,26.991057892789037 +2019-01-12 21:45:00,25.0,0.63015873,26.992702653440805 +2019-01-12 22:00:00,25.0,0.628571429,26.994347157786546 +2019-01-12 22:15:00,25.0,0.662962963,26.995991405614742 +2019-01-12 22:30:00,25.0,0.664814815,26.997635396713903 +2019-01-12 22:45:00,25.0,0.661772487,26.99927913087258 +2019-01-12 23:00:00,25.0,0.650661376,27.00092260787935 +2019-01-12 23:15:00,25.0,0.645899471,27.002565827522822 +2019-01-12 23:30:00,25.0,0.644179894,27.004208789591644 +2019-01-12 23:45:00,25.0,0.652248677,27.0058514938745 +2019-01-13 00:00:00,25.0,0.656084656,27.007493940160092 +2019-01-13 00:15:00,25.0,0.653835979,27.009136128237166 +2019-01-13 00:30:00,25.0,0.649206349,27.01077805789451 +2019-01-13 00:45:00,25.0,0.642063492,27.01241972892092 +2019-01-13 01:00:00,25.0,0.642063492,27.014061141105255 +2019-01-13 01:15:00,25.0,0.641269841,27.015702294236384 +2019-01-13 01:30:00,25.0,0.635582011,27.01734318810322 +2019-01-13 01:45:00,25.0,0.637962963,27.018983822494707 +2019-01-13 02:00:00,25.0,0.631746032,27.020624197199826 +2019-01-13 02:15:00,25.0,0.634126984,27.022264312007586 +2019-01-13 02:30:00,25.0,0.637433862,27.023904166707027 +2019-01-13 02:45:00,25.0,0.61984127,27.025543761087235 +2019-01-13 03:00:00,25.0,0.623809524,27.027183094937318 +2019-01-13 03:15:00,25.0,0.617989418,27.02882216804642 +2019-01-13 03:30:00,25.0,0.612301587,27.030460980203724 +2019-01-13 03:45:00,25.0,0.60026455,27.032099531198437 +2019-01-13 04:00:00,25.0,0.572089947,27.033737820819805 +2019-01-13 04:15:00,25.0,0.56031746,27.03537584885711 +2019-01-13 04:30:00,25.0,0.575132275,27.037013615099667 +2019-01-13 04:45:00,25.0,0.594047619,27.03865111933682 +2019-01-13 05:00:00,25.0,0.600396825,27.040288361357945 +2019-01-13 05:15:00,25.0,0.612566138,27.041925340952464 +2019-01-13 05:30:00,25.0,0.635185185,27.04356205790982 +2019-01-13 05:45:00,25.0,0.640740741,27.045198512019496 +2019-01-13 06:00:00,25.0,0.661111111,27.046834703071006 +2019-01-13 06:15:00,25.0,0.682804233,27.048470630853906 +2019-01-13 06:30:00,25.0,0.699603175,27.050106295157768 +2019-01-13 06:45:00,25.0,0.712698413,27.05174169577222 +2019-01-13 07:00:00,25.0,0.723809524,27.053376832486904 +2019-01-13 07:15:00,25.0,0.731878307,27.055011705091513 +2019-01-13 07:30:00,25.0,0.729232804,27.05664631337576 +2019-01-13 07:45:00,25.0,0.727777778,27.0582806571294 +2019-01-13 08:00:00,25.0,0.732539683,27.059914736142222 +2019-01-13 08:15:00,25.0,0.735185185,27.061548550204044 +2019-01-13 08:30:00,25.0,0.738624339,27.06318209910472 +2019-01-13 08:45:00,25.0,0.737433862,27.06481538263414 +2019-01-13 09:00:00,25.0,0.735582011,27.06644840058223 +2019-01-13 09:15:00,25.0,0.733068783,27.068081152738948 +2019-01-13 09:30:00,25.0,0.687169312,27.06971363889428 +2019-01-13 09:45:00,25.0,0.679100529,27.071345858838257 +2019-01-13 10:00:00,25.0,0.680952381,27.072977812360936 +2019-01-13 10:15:00,25.0,0.678174603,27.074609499252414 +2019-01-13 10:30:00,25.0,0.676719577,27.07624091930282 +2019-01-13 10:45:00,25.0,0.677645503,27.077872072302313 +2019-01-13 11:00:00,25.0,0.631216931,27.07950295804109 +2019-01-13 11:15:00,25.0,0.631216931,27.08113357630939 +2019-01-13 11:30:00,25.0,0.622486772,27.08276392689747 +2019-01-13 11:45:00,25.0,0.62526455,27.08439400959564 +2019-01-13 12:00:00,25.0,0.628306878,27.08602382419423 +2019-01-13 12:15:00,25.0,0.59047619,27.087653370483604 +2019-01-13 12:30:00,25.0,0.553174603,27.089282648254176 +2019-01-13 12:45:00,25.0,0.553439153,27.090911657296378 +2019-01-13 13:00:00,25.0,0.554232804,27.092540397400686 +2019-01-13 13:15:00,25.0,0.554232804,27.094168868357606 +2019-01-13 13:30:00,25.0,0.554761905,27.095797069957683 +2019-01-13 13:45:00,25.0,0.553968254,27.09742500199149 +2019-01-13 14:00:00,25.0,0.551322751,27.09905266424964 +2019-01-13 14:15:00,25.0,0.544444444,27.100680056522783 +2019-01-13 14:30:00,25.0,0.552645503,27.102307178601595 +2019-01-13 14:45:00,25.0,0.553703704,27.103934030276793 +2019-01-13 15:00:00,25.0,0.553439153,27.10556061133913 +2019-01-13 15:15:00,25.0,0.552248677,27.10718692157939 +2019-01-13 15:30:00,25.0,0.551719577,27.10881296078839 +2019-01-13 15:45:00,25.0,0.549470899,27.110438728756993 +2019-01-13 16:00:00,25.0,0.550529101,27.11206422527608 +2019-01-13 16:15:00,25.0,0.551455026,27.11368945013658 +2019-01-13 16:30:00,25.0,0.551322751,27.115314403129453 +2019-01-13 16:45:00,25.0,0.551058201,27.116939084045697 +2019-01-13 17:00:00,25.0,0.550925926,27.118563492676333 +2019-01-13 17:15:00,25.0,0.551851852,27.120187628812435 +2019-01-13 17:30:00,25.0,0.551719577,27.121811492245094 +2019-01-13 17:45:00,25.0,0.551851852,27.123435082765454 +2019-01-13 18:00:00,25.0,0.551851852,27.12505840016468 +2019-01-13 18:15:00,25.0,0.551719577,27.126681444233977 +2019-01-13 18:30:00,25.0,0.549074074,27.128304214764587 +2019-01-13 18:45:00,25.0,0.550661376,27.129926711547785 +2019-01-13 19:00:00,25.0,0.550396825,27.131548934374884 +2019-01-13 19:15:00,25.0,0.551455026,27.133170883037224 +2019-01-13 19:30:00,25.0,0.545899471,27.13479255732619 +2019-01-13 19:45:00,25.0,0.543386243,27.1364139570332 +2019-01-13 20:00:00,25.0,0.481216931,27.138035081949702 +2019-01-13 20:15:00,25.0,0.477910053,27.139655931867186 +2019-01-13 20:30:00,25.0,0.473809524,27.141276506577174 +2019-01-13 20:45:00,25.0,0.469312169,27.142896805871224 +2019-01-13 21:00:00,25.0,0.467989418,27.144516829540926 +2019-01-13 21:15:00,25.0,0.492857143,27.146136577377916 +2019-01-13 21:30:00,25.0,0.501984127,27.14775604917385 +2019-01-13 21:45:00,25.0,0.501058201,27.149375244720435 +2019-01-13 22:00:00,25.0,0.505555556,27.150994163809404 +2019-01-13 22:15:00,25.0,0.506084656,27.152612806232526 +2019-01-13 22:30:00,25.0,0.503571429,27.154231171781607 +2019-01-13 22:45:00,25.0,0.508862434,27.15584926024849 +2019-01-13 23:00:00,25.0,0.486243386,27.157467071425057 +2019-01-13 23:15:00,25.0,0.518253968,27.159084605103214 +2019-01-13 23:30:00,25.0,0.523412698,27.160701861074916 +2019-01-13 23:45:00,25.0,0.513492063,27.162318839132144 +2019-01-14 00:00:00,25.0,0.516534392,27.163935539066923 +2019-01-14 00:15:00,25.0,0.528439153,27.165551960671305 +2019-01-14 00:30:00,25.0,0.53015873,27.16716810373738 +2019-01-14 00:45:00,25.0,0.527777778,27.168783968057284 +2019-01-14 01:00:00,25.0,0.469047619,27.170399553423177 +2019-01-14 01:15:00,25.0,0.469444444,27.172014859627254 +2019-01-14 01:30:00,25.0,0.473677249,27.173629886461757 +2019-01-14 01:45:00,25.0,0.471428571,27.175244633718957 +2019-01-14 02:00:00,25.0,0.466534392,27.176859101191155 +2019-01-14 02:15:00,25.0,0.456878307,27.178473288670702 +2019-01-14 02:30:00,25.0,0.439814815,27.180087195949973 +2019-01-14 02:45:00,25.0,0.456613757,27.181700822821387 +2019-01-14 03:00:00,25.0,0.459920635,27.18331416907739 +2019-01-14 03:15:00,25.0,0.462169312,27.18492723451048 +2019-01-14 03:30:00,25.0,0.471825397,27.186540018913167 +2019-01-14 03:45:00,25.0,0.470502646,27.18815252207802 +2019-01-14 04:00:00,25.0,0.483068783,27.189764743797635 +2019-01-14 04:15:00,25.0,0.485978836,27.19137668386464 +2019-01-14 04:30:00,25.0,0.502380952,27.192988342071708 +2019-01-14 04:45:00,25.0,0.52010582,27.19459971821154 +2019-01-14 05:00:00,25.0,0.645899471,27.196210812076878 +2019-01-14 05:15:00,25.0,0.630291005,27.197821623460502 +2019-01-14 05:30:00,25.0,0.630026455,27.199432152155225 +2019-01-14 05:45:00,25.0,0.627910053,27.201042397953895 +2019-01-14 06:00:00,25.0,0.577380952,27.202652360649395 +2019-01-14 06:15:00,25.0,0.571428571,27.20426204003466 +2019-01-14 06:30:00,25.0,0.546428571,27.205871435902637 +2019-01-14 06:45:00,25.0,0.558730159,27.207480548046327 +2019-01-14 07:00:00,25.0,0.54973545,27.20908937625876 +2019-01-14 07:15:00,25.0,0.478703704,27.210697920333008 +2019-01-14 07:30:00,25.0,0.47962963,27.212306180062175 +2019-01-14 07:45:00,25.0,0.480952381,27.213914155239404 +2019-01-14 08:00:00,25.0,0.481613757,27.21552184565787 +2019-01-14 08:15:00,25.0,0.481349206,27.21712925111079 +2019-01-14 08:30:00,25.0,0.481746032,27.21873637139142 +2019-01-14 08:45:00,25.0,0.482671958,27.22034320629304 +2019-01-14 09:00:00,25.0,0.476455026,27.221949755608982 +2019-01-14 09:15:00,25.0,0.504365079,27.22355601913261 +2019-01-14 09:30:00,25.0,0.556481481,27.22516199665731 +2019-01-14 09:45:00,25.0,0.568518519,27.22676768797653 +2019-01-14 10:00:00,25.0,0.56957672,27.22837309288374 +2019-01-14 10:15:00,25.0,0.573544974,27.229978211172444 +2019-01-14 10:30:00,25.0,0.573280423,27.231583042636192 +2019-01-14 10:45:00,25.0,0.553042328,27.233187587068567 +2019-01-14 11:00:00,25.0,0.567063492,27.234791844263185 +2019-01-14 11:15:00,25.0,0.572619048,27.236395814013708 +2019-01-14 11:30:00,25.0,0.576058201,27.23799949611383 +2019-01-14 11:45:00,25.0,0.574867725,27.239602890357272 +2019-01-14 12:00:00,25.0,0.57473545,27.241205996537815 +2019-01-14 12:15:00,25.0,0.576322751,27.242808814449255 +2019-01-14 12:30:00,25.0,0.608994709,27.244411343885435 +2019-01-14 12:45:00,25.0,0.613359788,27.246013584640238 +2019-01-14 13:00:00,25.0,0.61494709,27.247615536507574 +2019-01-14 13:15:00,25.0,0.614814815,27.249217199281404 +2019-01-14 13:30:00,25.0,0.614814815,27.25081857275571 +2019-01-14 13:45:00,25.0,0.616137566,27.252419656724523 +2019-01-14 14:00:00,25.0,0.615079365,27.254020450981912 +2019-01-14 14:15:00,25.0,0.615873016,27.255620955321973 +2019-01-14 14:30:00,25.0,0.616005291,27.25722116953885 +2019-01-14 14:45:00,25.0,0.616005291,27.258821093426718 +2019-01-14 15:00:00,25.0,0.615740741,27.260420726779792 +2019-01-14 15:15:00,25.0,0.61494709,27.262020069392317 +2019-01-14 15:30:00,25.0,0.614021164,27.263619121058593 +2019-01-14 15:45:00,25.0,0.61468254,27.265217881572937 +2019-01-14 16:00:00,25.0,0.613624339,27.26681635072972 +2019-01-14 16:15:00,25.0,0.612169312,27.268414528323333 +2019-01-14 16:30:00,25.0,0.613492063,27.270012414148226 +2019-01-14 16:45:00,25.0,0.610449735,27.27161000799887 +2019-01-14 17:00:00,25.0,0.611772487,27.27320730966978 +2019-01-14 17:15:00,25.0,0.608465608,27.274804318955503 +2019-01-14 17:30:00,25.0,0.609259259,27.276401035650636 +2019-01-14 17:45:00,25.0,0.610449735,27.2779974595498 +2019-01-14 18:00:00,25.0,0.611772487,27.279593590447657 +2019-01-14 18:15:00,25.0,0.610714286,27.281189428138916 +2019-01-14 18:30:00,25.0,0.60978836,27.28278497241831 +2019-01-14 18:45:00,25.0,0.613492063,27.28438022308062 +2019-01-14 19:00:00,25.0,0.612962963,27.285975179920662 +2019-01-14 19:15:00,25.0,0.613095238,27.287569842733287 +2019-01-14 19:30:00,25.0,0.614417989,27.289164211313384 +2019-01-14 19:45:00,25.0,0.612433862,27.290758285455887 +2019-01-14 20:00:00,25.0,0.612830688,27.292352064955757 +2019-01-14 20:15:00,25.0,0.612433862,27.293945549608004 +2019-01-14 20:30:00,25.0,0.609126984,27.295538739207664 +2019-01-14 20:45:00,25.0,0.606084656,27.29713163354982 +2019-01-14 21:00:00,25.0,0.604232804,27.298724232429596 +2019-01-14 21:15:00,25.0,0.602248677,27.30031653564214 +2019-01-14 21:30:00,25.0,0.59457672,27.301908542982645 +2019-01-14 21:45:00,25.0,0.58505291,27.30350025424635 +2019-01-14 22:00:00,25.0,0.568518519,27.305091669228524 +2019-01-14 22:15:00,25.0,0.623809524,27.306682787724476 +2019-01-14 22:30:00,25.0,0.626190476,27.308273609529547 +2019-01-14 22:45:00,25.0,0.623015873,27.309864134439128 +2019-01-14 23:00:00,25.0,0.632142857,27.31145436224864 +2019-01-14 23:15:00,25.0,0.656084656,27.313044292753546 +2019-01-14 23:30:00,25.0,0.662301587,27.31463392574934 +2019-01-14 23:45:00,25.0,0.673148148,27.316223261031567 +2019-01-15 00:00:00,25.0,0.68505291,27.317812298395797 +2019-01-15 00:15:00,25.0,0.680291005,27.319401037637647 +2019-01-15 00:30:00,25.0,0.683862434,27.320989478552768 +2019-01-15 00:45:00,25.0,0.693915344,27.322577620936855 +2019-01-15 01:00:00,25.0,0.701190476,27.324165464585633 +2019-01-15 01:15:00,25.0,0.702380952,27.32575300929487 +2019-01-15 01:30:00,25.0,0.704100529,27.327340254860378 +2019-01-15 01:45:00,25.0,0.70462963,27.328927201077995 +2019-01-15 02:00:00,25.0,0.576455026,27.33051384774361 +2019-01-15 02:15:00,25.0,0.558730159,27.33210019465314 +2019-01-15 02:30:00,25.0,0.558994709,27.333686241602546 +2019-01-15 02:45:00,25.0,0.557936508,27.33527198838783 +2019-01-15 03:00:00,25.0,0.554761905,27.33685743480503 +2019-01-15 03:15:00,25.0,0.556216931,27.338442580650216 +2019-01-15 03:30:00,25.0,0.557936508,27.34002742571951 +2019-01-15 03:45:00,25.0,0.558333333,27.341611969809062 +2019-01-15 04:00:00,25.0,0.558597884,27.343196212715064 +2019-01-15 04:15:00,25.0,0.558862434,27.34478015423375 +2019-01-15 04:30:00,25.0,0.557804233,27.346363794161384 +2019-01-15 04:45:00,25.0,0.557936508,27.34794713229428 +2019-01-15 05:00:00,25.0,0.557010582,27.349530168428785 +2019-01-15 05:15:00,25.0,0.555820106,27.351112902361283 +2019-01-15 05:30:00,25.0,0.557671958,27.3526953338882 +2019-01-15 05:45:00,25.0,0.55542328,27.354277462806 +2019-01-15 06:00:00,25.0,0.539814815,27.355859288911184 +2019-01-15 06:15:00,25.0,0.506746032,27.3574408120003 +2019-01-15 06:30:00,25.0,0.493915344,27.35902203186992 +2019-01-15 06:45:00,25.0,0.486772487,27.36060294831667 +2019-01-15 07:00:00,25.0,0.489021164,27.362183561137208 +2019-01-15 07:15:00,25.0,0.485185185,27.36376387012823 +2019-01-15 07:30:00,25.0,0.486111111,27.365343875086474 +2019-01-15 07:45:00,25.0,0.48478836,27.36692357580872 +2019-01-15 08:00:00,25.0,0.481084656,27.368502972091775 +2019-01-15 08:15:00,25.0,0.418915344,27.3700820637325 +2019-01-15 08:30:00,25.0,0.390873016,27.371660850527785 +2019-01-15 08:45:00,25.0,0.385582011,27.373239332274565 +2019-01-15 09:00:00,25.0,0.378835979,27.374817508769812 +2019-01-15 09:15:00,25.0,0.371296296,27.37639537981054 +2019-01-15 09:30:00,25.0,0.370634921,27.37797294519379 +2019-01-15 09:45:00,25.0,0.376058201,27.37955020471666 +2019-01-15 10:00:00,25.0,0.381216931,27.38112715817628 +2019-01-15 10:15:00,25.0,0.383994709,27.382703805369815 +2019-01-15 10:30:00,25.0,0.385978836,27.38428014609447 +2019-01-15 10:45:00,25.0,0.382142857,27.3858561801475 +2019-01-15 11:00:00,25.0,0.389814815,27.38743190732619 +2019-01-15 11:15:00,25.0,0.381613757,27.38900732742786 +2019-01-15 11:30:00,25.0,0.371164021,27.39058244024988 +2019-01-15 11:45:00,25.0,0.370502646,27.392157245589658 +2019-01-15 12:00:00,25.0,0.370238095,27.393731743244636 +2019-01-15 12:15:00,25.0,0.360582011,27.3953059330123 +2019-01-15 12:30:00,25.0,0.353835979,27.396879814690173 +2019-01-15 12:45:00,25.0,0.358597884,27.39845338807582 +2019-01-15 13:00:00,25.0,0.366402116,27.40002665296684 +2019-01-15 13:15:00,25.0,0.384920635,27.40159960916088 +2019-01-15 13:30:00,25.0,0.401322751,27.403172256455623 +2019-01-15 13:45:00,25.0,0.400529101,27.40474459464879 +2019-01-15 14:00:00,25.0,0.417063492,27.406316623538142 +2019-01-15 14:15:00,25.0,0.415740741,27.407888342921485 +2019-01-15 14:30:00,25.0,0.421693122,27.409459752596657 +2019-01-15 14:45:00,25.0,0.422619048,27.41103085236154 +2019-01-15 15:00:00,25.0,0.422619048,27.41260164201406 +2019-01-15 15:15:00,25.0,0.423280423,27.414172121352173 +2019-01-15 15:30:00,25.0,0.424074074,27.41574229017388 +2019-01-15 15:45:00,25.0,0.425,27.417312148277226 +2019-01-15 16:00:00,25.0,0.419444444,27.418881695460293 +2019-01-15 16:15:00,25.0,0.400396825,27.4204509315212 +2019-01-15 16:30:00,25.0,0.399867725,27.422019856258107 +2019-01-15 16:45:00,25.0,0.400661376,27.423588469469216 +2019-01-15 17:00:00,25.0,0.400396825,27.425156770952768 +2019-01-15 17:15:00,25.0,0.400396825,27.426724760507046 +2019-01-15 17:30:00,25.0,0.396825397,27.42829243793037 +2019-01-15 17:45:00,25.0,0.396296296,27.429859803021106 +2019-01-15 18:00:00,25.0,0.398412698,27.431426855577648 +2019-01-15 18:15:00,25.0,0.399074074,27.432993595398447 +2019-01-15 18:30:00,25.0,0.397619048,27.43456002228198 +2019-01-15 18:45:00,25.0,0.397354497,27.436126136026765 +2019-01-15 19:00:00,25.0,0.397222222,27.437691936431374 +2019-01-15 19:15:00,25.0,0.427777778,27.439257423294407 +2019-01-15 19:30:00,25.0,0.429100529,27.440822596414506 +2019-01-15 19:45:00,25.0,0.417063492,27.442387455590353 +2019-01-15 20:00:00,25.0,0.418783069,27.443952000620676 +2019-01-15 20:15:00,25.0,0.418518519,27.44551623130424 +2019-01-15 20:30:00,25.0,0.417989418,27.44708014743985 +2019-01-15 20:45:00,25.0,0.418518519,27.448643748826346 +2019-01-15 21:00:00,25.0,0.416666667,27.45020703526262 +2019-01-15 21:15:00,25.0,0.417063492,27.451770006547594 +2019-01-15 21:30:00,25.0,0.418253968,27.45333266248024 +2019-01-15 21:45:00,25.0,0.45,27.454895002859562 +2019-01-15 22:00:00,25.0,0.44973545,27.456457027484607 +2019-01-15 22:15:00,25.0,0.450132275,27.458018736154468 +2019-01-15 22:30:00,25.0,0.455687831,27.45958012866827 +2019-01-15 22:45:00,25.0,0.460846561,27.46114120482519 +2019-01-15 23:00:00,25.0,0.467460317,27.462701964424433 +2019-01-15 23:15:00,25.0,0.468386243,27.46426240726525 +2019-01-15 23:30:00,25.0,0.468386243,27.465822533146934 +2019-01-15 23:45:00,25.0,0.468386243,27.46738234186882 +2019-01-16 00:00:00,25.0,0.469179894,27.46894183323028 +2019-01-16 00:15:00,25.0,0.470238095,27.470501007030727 +2019-01-16 00:30:00,25.0,0.470502646,27.47205986306962 +2019-01-16 00:45:00,25.0,0.473809524,27.473618401146457 +2019-01-16 01:00:00,25.0,0.475793651,27.475176621060772 +2019-01-16 01:15:00,25.0,0.476719577,27.47673452261214 +2019-01-16 01:30:00,25.0,0.477513228,27.478292105600186 +2019-01-16 01:45:00,25.0,0.477513228,27.479849369824567 +2019-01-16 02:00:00,25.0,0.474338624,27.481406315084985 +2019-01-16 02:15:00,25.0,0.472619048,27.48296294118118 +2019-01-16 02:30:00,25.0,0.466798942,27.48451924791294 +2019-01-16 02:45:00,25.0,0.456878307,27.486075235080083 +2019-01-16 03:00:00,25.0,0.445899471,27.48763090248248 +2019-01-16 03:15:00,25.0,0.447619048,27.48918624992003 +2019-01-16 03:30:00,25.0,0.452513228,27.490741277192694 +2019-01-16 03:45:00,25.0,0.447883598,27.492295984100444 +2019-01-16 04:00:00,25.0,0.456084656,27.493850370443322 +2019-01-16 04:15:00,25.0,0.476851852,27.495404436021396 +2019-01-16 04:30:00,25.0,0.460449735,27.496958180634778 +2019-01-16 04:45:00,25.0,0.438227513,27.49851160408362 +2019-01-16 05:00:00,25.0,0.423544974,27.50006470616812 +2019-01-16 05:15:00,25.0,0.42037037,27.501617486688517 +2019-01-16 05:30:00,25.0,0.425529101,27.50316994544508 +2019-01-16 05:45:00,25.0,0.435449735,27.504722082238136 +2019-01-16 06:00:00,25.0,0.461375661,27.50627389686804 +2019-01-16 06:15:00,25.0,0.459391534,27.5078253891352 +2019-01-16 06:30:00,25.0,0.500925926,27.509376558840053 +2019-01-16 06:45:00,25.0,0.561507937,27.51092740578309 +2019-01-16 07:00:00,25.0,0.570238095,27.512477929764835 +2019-01-16 07:15:00,25.0,0.556613757,27.514028130585853 +2019-01-16 07:30:00,25.0,0.55462963,27.51557800804676 +2019-01-16 07:45:00,25.0,0.578042328,27.5171275619482 +2019-01-16 08:00:00,25.0,0.619179894,27.518676792090872 +2019-01-16 08:15:00,25.0,0.62010582,27.520225698275507 +2019-01-16 08:30:00,25.0,0.628968254,27.52177428030288 +2019-01-16 08:45:00,25.0,0.688359788,27.52332253797381 +2019-01-16 09:00:00,25.0,0.690740741,27.524870471089162 +2019-01-16 09:15:00,25.0,0.690079365,27.52641807944983 +2019-01-16 09:30:00,25.0,0.711904762,27.527965362856758 +2019-01-16 09:45:00,25.0,0.718253968,27.529512321110936 +2019-01-16 10:00:00,25.0,0.717724868,27.531058954013382 +2019-01-16 10:15:00,25.0,0.717063492,27.532605261365173 +2019-01-16 10:30:00,25.0,0.707671958,27.534151242967415 +2019-01-16 10:45:00,25.0,0.68994709,27.53569689862126 +2019-01-16 11:00:00,25.0,0.688888889,27.537242228127905 +2019-01-16 11:15:00,25.0,0.690608466,27.53878723128858 +2019-01-16 11:30:00,25.0,0.690873016,27.540331907904573 +2019-01-16 11:45:00,25.0,0.692460317,27.541876257777197 +2019-01-16 12:00:00,25.0,0.693121693,27.543420280707817 +2019-01-16 12:15:00,25.0,0.692989418,27.544963976497833 +2019-01-16 12:30:00,25.0,0.693518519,27.546507344948697 +2019-01-16 12:45:00,25.0,0.693386243,27.54805038586189 +2019-01-16 13:00:00,25.0,0.675,27.549593099038955 +2019-01-16 13:15:00,25.0,0.665343915,27.551135484281453 +2019-01-16 13:30:00,25.0,0.66468254,27.552677541391 +2019-01-16 13:45:00,25.0,0.66521164,27.55421927016926 +2019-01-16 14:00:00,25.0,0.66547619,27.555760670417925 +2019-01-16 14:15:00,25.0,0.666798942,27.557301741938737 +2019-01-16 14:30:00,25.0,0.666402116,27.55884248453349 +2019-01-16 14:45:00,25.0,0.66547619,27.560382898003997 +2019-01-16 15:00:00,25.0,0.665740741,27.561922982152133 +2019-01-16 15:15:00,25.0,0.666269841,27.563462736779808 +2019-01-16 15:30:00,25.0,0.666798942,27.565002161688973 +2019-01-16 15:45:00,25.0,0.667063492,27.566541256681628 +2019-01-16 16:00:00,25.0,0.652116402,27.56808002155981 +2019-01-16 16:15:00,25.0,0.627116402,27.569618456125596 +2019-01-16 16:30:00,25.0,0.626984127,27.57115656018111 +2019-01-16 16:45:00,25.0,0.626322751,27.57269433352852 +2019-01-16 17:00:00,25.0,0.626851852,27.574231775970034 +2019-01-16 17:15:00,25.0,0.626587302,27.5757688873079 +2019-01-16 17:30:00,25.0,0.627248677,27.577305667344408 +2019-01-16 17:45:00,25.0,0.627777778,27.578842115881905 +2019-01-16 18:00:00,25.0,0.627513228,27.580378232722758 +2019-01-16 18:15:00,25.0,0.626851852,27.581914017669394 +2019-01-16 18:30:00,25.0,0.622354497,27.583449470524275 +2019-01-16 18:45:00,25.0,0.61547619,27.58498459108991 +2019-01-16 19:00:00,25.0,0.617989418,27.586519379168845 +2019-01-16 19:15:00,25.0,0.605555556,27.588053834563674 +2019-01-16 19:30:00,25.0,0.593386243,27.58958795707703 +2019-01-16 19:45:00,25.0,0.633068783,27.591121746511593 +2019-01-16 20:00:00,25.0,0.652645503,27.59265520267008 +2019-01-16 20:15:00,25.0,0.665873016,27.59418832535526 +2019-01-16 20:30:00,25.0,0.661772487,27.595721114369933 +2019-01-16 20:45:00,25.0,0.638359788,27.59725356951695 +2019-01-16 21:00:00,25.0,0.64457672,27.598785690599204 +2019-01-16 21:15:00,25.0,0.64021164,27.600317477419633 +2019-01-16 21:30:00,25.0,0.634126984,27.60184892978121 +2019-01-16 21:45:00,25.0,0.581481481,27.603380047486958 +2019-01-16 22:00:00,25.0,0.560185185,27.60491083033994 +2019-01-16 22:15:00,25.0,0.550132275,27.606441278143265 +2019-01-16 22:30:00,25.0,0.574338624,27.607971390700083 +2019-01-16 22:45:00,25.0,0.590079365,27.609501167813587 +2019-01-16 23:00:00,25.0,0.616666667,27.611030609287013 +2019-01-16 23:15:00,25.0,0.601851852,27.61255971492364 +2019-01-16 23:30:00,25.0,0.603439153,27.614088484526793 +2019-01-16 23:45:00,25.0,0.601587302,27.615616917899835 +2019-01-17 00:00:00,25.0,0.595899471,27.617145014846184 +2019-01-17 00:15:00,25.0,0.616798942,27.61867277516928 +2019-01-17 00:30:00,25.0,0.645899471,27.620200198672627 +2019-01-17 00:45:00,25.0,0.626190476,27.621727285159764 +2019-01-17 01:00:00,25.0,0.619444444,27.623254034434268 +2019-01-17 01:15:00,25.0,0.631613757,27.624780446299773 +2019-01-17 01:30:00,25.0,0.646164021,27.62630652055994 +2019-01-17 01:45:00,25.0,0.666666667,27.62783225701849 +2019-01-17 02:00:00,25.0,0.689285714,27.629357655479172 +2019-01-17 02:15:00,25.0,0.698280423,27.63088271574579 +2019-01-17 02:30:00,25.0,0.722089947,27.632407437622188 +2019-01-17 02:45:00,25.0,0.699603175,27.633931820912252 +2019-01-17 03:00:00,25.0,0.70026455,27.635455865419907 +2019-01-17 03:15:00,25.0,0.695634921,27.636979570949133 +2019-01-17 03:30:00,25.0,0.697089947,27.638502937303947 +2019-01-17 03:45:00,25.0,0.697883598,27.64002596428841 +2019-01-17 04:00:00,25.0,0.698412698,27.64154865170662 +2019-01-17 04:15:00,25.0,0.698148148,27.643070999362735 +2019-01-17 04:30:00,25.0,0.694312169,27.644593007060944 +2019-01-17 04:45:00,25.0,0.658201058,27.646114674605478 +2019-01-17 05:00:00,25.0,0.65978836,27.647636001800624 +2019-01-17 05:15:00,25.0,0.661904762,27.649156988450702 +2019-01-17 05:30:00,25.0,0.662830688,27.650677634360076 +2019-01-17 05:45:00,25.0,0.663756614,27.652197939333163 +2019-01-17 06:00:00,25.0,0.634920635,27.653717903174414 +2019-01-17 06:15:00,25.0,0.619312169,27.655237525688328 +2019-01-17 06:30:00,25.0,0.622354497,27.656756806679446 +2019-01-17 06:45:00,25.0,0.620502646,27.65827574595236 +2019-01-17 07:00:00,25.0,0.620899471,27.659794343311695 +2019-01-17 07:15:00,25.0,0.620634921,27.66131259856213 +2019-01-17 07:30:00,25.0,0.617857143,27.662830511508382 +2019-01-17 07:45:00,25.0,0.612698413,27.66434808195521 +2019-01-17 08:00:00,25.0,0.602645503,27.665865309707424 +2019-01-17 08:15:00,25.0,0.614153439,27.667382194569875 +2019-01-17 08:30:00,25.0,0.619973545,27.668898736347458 +2019-01-17 08:45:00,25.0,0.618386243,27.67041493484511 +2019-01-17 09:00:00,25.0,0.619444444,27.671930789867815 +2019-01-17 09:15:00,25.0,0.614153439,27.673446301220597 +2019-01-17 09:30:00,25.0,0.607804233,27.674961468708535 +2019-01-17 09:45:00,25.0,0.607804233,27.676476292136737 +2019-01-17 10:00:00,25.0,0.613624339,27.677990771310366 +2019-01-17 10:15:00,25.0,0.610582011,27.67950490603463 +2019-01-17 10:30:00,25.0,0.613095238,27.68101869611477 +2019-01-17 10:45:00,25.0,0.627248677,27.68253214135608 +2019-01-17 11:00:00,25.0,0.626190476,27.684045241563904 +2019-01-17 11:15:00,25.0,0.618253968,27.68555799654362 +2019-01-17 11:30:00,25.0,0.648280423,27.68707040610065 +2019-01-17 11:45:00,25.0,0.645899471,27.68858247004047 +2019-01-17 12:00:00,25.0,0.62962963,27.69009418816859 +2019-01-17 12:15:00,25.0,0.61984127,27.691605560290572 +2019-01-17 12:30:00,25.0,0.669047619,27.69311658621202 +2019-01-17 12:45:00,25.0,0.718518519,27.694627265738582 +2019-01-17 13:00:00,25.0,0.723544974,27.69613759867595 +2019-01-17 13:15:00,25.0,0.67989418,27.697647584829866 +2019-01-17 13:30:00,25.0,0.633068783,27.699157224006104 +2019-01-17 13:45:00,25.0,0.617857143,27.700666516010497 +2019-01-17 14:00:00,25.0,0.669708995,27.702175460648913 +2019-01-17 14:15:00,25.0,0.711375661,27.70368405772727 +2019-01-17 14:30:00,25.0,0.657539683,27.70519230705153 +2019-01-17 14:45:00,25.0,0.63042328,27.706700208427694 +2019-01-17 15:00:00,25.0,0.640079365,27.708207761661818 +2019-01-17 15:15:00,25.0,0.695502646,27.70971496655999 +2019-01-17 15:30:00,25.0,0.698941799,27.711221822928355 +2019-01-17 15:45:00,25.0,0.649338624,27.7127283305731 +2019-01-17 16:00:00,25.0,0.621957672,27.714234489300445 +2019-01-17 16:15:00,25.0,0.649206349,27.715740298916675 +2019-01-17 16:30:00,25.0,0.71005291,27.717245759228103 +2019-01-17 16:45:00,25.0,0.739285714,27.718750870041095 +2019-01-17 17:00:00,25.0,0.735714286,27.72025563116206 +2019-01-17 17:15:00,25.0,0.720899471,27.721760042397452 +2019-01-17 17:30:00,25.0,0.703306878,27.72326410355377 +2019-01-17 17:45:00,25.0,0.689417989,27.72476781443756 +2019-01-17 18:00:00,25.0,0.677116402,27.726271174855405 +2019-01-17 18:15:00,25.0,0.689021164,27.72777418461395 +2019-01-17 18:30:00,25.0,0.705291005,27.729276843519866 +2019-01-17 18:45:00,25.0,0.708994709,27.730779151379878 +2019-01-17 19:00:00,25.0,0.710714286,27.73228110800076 +2019-01-17 19:15:00,25.0,0.672354497,27.733782713189324 +2019-01-17 19:30:00,25.0,0.627248677,27.73528396675243 +2019-01-17 19:45:00,25.0,0.623809524,27.736784868496983 +2019-01-17 20:00:00,25.0,0.647354497,27.738285418229935 +2019-01-17 20:15:00,25.0,0.633068783,27.739785615758283 +2019-01-17 20:30:00,25.0,0.621428571,27.741285460889063 +2019-01-17 20:45:00,25.0,0.624338624,27.742784953429368 +2019-01-17 21:00:00,25.0,0.609656085,27.744284093186323 +2019-01-17 21:15:00,25.0,0.591269841,27.745782879967113 +2019-01-17 21:30:00,25.0,0.596296296,27.747281313578952 +2019-01-17 21:45:00,25.0,0.606216931,27.748779393829114 +2019-01-17 22:00:00,25.0,0.611111111,27.750277120524913 +2019-01-17 22:15:00,25.0,0.622222222,27.751774493473704 +2019-01-17 22:30:00,25.0,0.564153439,27.753271512482893 +2019-01-17 22:45:00,25.0,0.493121693,27.754768177359928 +2019-01-17 23:00:00,25.0,0.460714286,27.75626448791231 +2019-01-17 23:15:00,25.0,0.456084656,27.757760443947575 +2019-01-17 23:30:00,25.0,0.451984127,27.75925604527331 +2019-01-17 23:45:00,25.0,0.435846561,27.76075129169715 +2019-01-18 00:00:00,25.0,0.393518519,27.762246183026775 +2019-01-18 00:15:00,25.0,0.396957672,27.7637407190699 +2019-01-18 00:30:00,25.0,0.414285714,27.7652348996343 +2019-01-18 00:45:00,25.0,0.415608466,27.76672872452779 +2019-01-18 01:00:00,25.0,0.425793651,27.768222193558234 +2019-01-18 01:15:00,25.0,0.401984127,27.76971530653353 +2019-01-18 01:30:00,25.0,0.370767196,27.77120806326164 +2019-01-18 01:45:00,25.0,0.343121693,27.772700463550553 +2019-01-18 02:00:00,25.0,0.321957672,27.77419250720832 +2019-01-18 02:15:00,25.0,0.302248677,27.775684194043027 +2019-01-18 02:30:00,25.0,0.276058201,27.777175523862812 +2019-01-18 02:45:00,25.0,0.260582011,27.778666496475854 +2019-01-18 03:00:00,25.0,0.254232804,27.780157111690386 +2019-01-18 03:15:00,25.0,0.255291005,27.781647369314676 +2019-01-18 03:30:00,25.0,0.26005291,27.783137269157045 +2019-01-18 03:45:00,25.0,0.282671958,27.78462681102586 +2019-01-18 04:00:00,25.0,0.271957672,27.78611599472953 +2019-01-18 04:15:00,25.0,0.258862434,27.787604820076517 +2019-01-18 04:30:00,25.0,0.231481481,27.789093286875325 +2019-01-18 04:45:00,25.0,0.216005291,27.7905813949345 +2019-01-18 05:00:00,25.0,0.196957672,27.792069144062637 +2019-01-18 05:15:00,25.0,0.199867725,27.793556534068383 +2019-01-18 05:30:00,25.0,0.260846561,27.795043564760423 +2019-01-18 05:45:00,25.0,0.265343915,27.796530235947493 +2019-01-18 06:00:00,25.0,0.238359788,27.798016547438376 +2019-01-18 06:15:00,25.0,0.250661376,27.799502499041896 +2019-01-18 06:30:00,25.0,0.27473545,27.80098809056693 +2019-01-18 06:45:00,25.0,0.259391534,27.80247332182239 +2019-01-18 07:00:00,25.0,0.314285714,27.80395819261725 +2019-01-18 07:15:00,25.0,0.285582011,27.805442702760523 +2019-01-18 07:30:00,25.0,0.263756614,27.80692685206126 +2019-01-18 07:45:00,25.0,0.224470899,27.808410640328574 +2019-01-18 08:00:00,25.0,0.201322751,27.809894067371616 +2019-01-18 08:15:00,25.0,0.247089947,27.811377132999578 +2019-01-18 08:30:00,25.0,0.261243386,27.81285983702171 +2019-01-18 08:45:00,25.0,0.222619048,27.8143421792473 +2019-01-18 09:00:00,25.0,0.213888889,27.815824159485693 +2019-01-18 09:15:00,25.0,0.213756614,27.817305777546263 +2019-01-18 09:30:00,25.0,0.209656085,27.818787033238447 +2019-01-18 09:45:00,25.0,0.217592593,27.820267926371724 +2019-01-18 10:00:00,25.0,0.186111111,27.82174845675561 +2019-01-18 10:15:00,25.0,0.141137566,27.823228624199686 +2019-01-18 10:30:00,25.0,0.124470899,27.824708428513564 +2019-01-18 10:45:00,25.0,0.114814815,27.826187869506903 +2019-01-18 11:00:00,25.0,0.124206349,27.827666946989424 +2019-01-18 11:15:00,25.0,0.136111111,27.82914566077088 +2019-01-18 11:30:00,25.0,0.127380952,27.830624010661076 +2019-01-18 11:45:00,25.0,0.130820106,27.832101996469863 +2019-01-18 12:00:00,25.0,0.117724868,27.83357961800714 +2019-01-18 12:15:00,25.0,0.104497354,27.835056875082845 +2019-01-18 12:30:00,25.0,0.107010582,27.83653376750698 +2019-01-18 12:45:00,25.0,0.10952381,27.83801029508958 +2019-01-18 13:00:00,25.0,0.103174603,27.839486457640728 +2019-01-18 13:15:00,25.0,0.101455026,27.840962254970556 +2019-01-18 13:30:00,25.0,0.096693122,27.842437686889248 +2019-01-18 13:45:00,25.0,0.093253968,27.843912753207032 +2019-01-18 14:00:00,25.0,0.090343915,27.845387453734173 +2019-01-18 14:15:00,25.0,0.09510582,27.846861788281 +2019-01-18 14:30:00,25.0,0.094444444,27.848335756657875 +2019-01-18 14:45:00,25.0,0.091402116,27.849809358675216 +2019-01-18 15:00:00,25.0,0.090343915,27.851282594143484 +2019-01-18 15:15:00,25.0,0.081084656,27.852755462873187 +2019-01-18 15:30:00,25.0,0.074603175,27.854227964674884 +2019-01-18 15:45:00,25.0,0.069312169,27.855700099359176 +2019-01-18 16:00:00,25.0,0.063624339,27.85717186673671 +2019-01-18 16:15:00,25.0,0.062830688,27.858643266618195 +2019-01-18 16:30:00,25.0,0.059126984,27.860114298814363 +2019-01-18 16:45:00,25.0,0.062433862,27.861584963136018 +2019-01-18 17:00:00,25.0,0.066534392,27.86305525939399 +2019-01-18 17:15:00,25.0,0.073544974,27.864525187399174 +2019-01-18 17:30:00,25.0,0.072883598,27.8659947469625 +2019-01-18 17:45:00,25.0,0.06005291,27.86746393789495 +2019-01-18 18:00:00,25.0,0.05952381,27.868932760007553 +2019-01-18 18:15:00,25.0,0.067592593,27.87040121311139 +2019-01-18 18:30:00,25.0,0.05978836,27.87186929701758 +2019-01-18 18:45:00,25.0,0.062169312,27.8733370115373 +2019-01-18 19:00:00,25.0,0.080555556,27.87480435648176 +2019-01-18 19:15:00,25.0,0.070502646,27.876271331662235 +2019-01-18 19:30:00,25.0,0.075,27.87773793689004 +2019-01-18 19:45:00,25.0,0.074338624,27.87920417197653 +2019-01-18 20:00:00,25.0,0.079761905,27.880670036733118 +2019-01-18 20:15:00,25.0,0.087698413,27.88213553097126 +2019-01-18 20:30:00,25.0,0.081481481,27.883600654502466 +2019-01-18 20:45:00,25.0,0.085978836,27.88506540713828 +2019-01-18 21:00:00,25.0,0.102116402,27.88652978869031 +2019-01-18 21:15:00,25.0,0.099470899,27.8879937989702 +2019-01-18 21:30:00,25.0,0.092989418,27.88945743778964 +2019-01-18 21:45:00,25.0,0.092592593,27.890920704960386 +2019-01-18 22:00:00,25.0,0.091798942,27.89238360029422 +2019-01-18 22:15:00,25.0,0.094312169,27.893846123602984 +2019-01-18 22:30:00,25.0,0.100529101,27.895308274698564 +2019-01-18 22:45:00,25.0,0.106349206,27.896770053392896 +2019-01-18 23:00:00,25.0,0.110449735,27.89823145949796 +2019-01-18 23:15:00,25.0,0.112037037,27.89969249282579 +2019-01-18 23:30:00,25.0,0.131746032,27.90115315318846 +2019-01-18 23:45:00,25.0,0.145238095,27.902613440398103 +2019-01-19 00:00:00,25.0,0.144973545,27.904073354266888 +2019-01-19 00:15:00,25.0,0.154497354,27.90553289460704 +2019-01-19 00:30:00,25.0,0.158730159,27.906992061230827 +2019-01-19 00:45:00,25.0,0.152910053,27.908450853950573 +2019-01-19 01:00:00,25.0,0.150661376,27.909909272578638 +2019-01-19 01:15:00,25.0,0.141931217,27.91136731692744 +2019-01-19 01:30:00,25.0,0.136111111,27.912824986809444 +2019-01-19 01:45:00,25.0,0.13478836,27.914282282037156 +2019-01-19 02:00:00,25.0,0.139153439,27.91573920242314 +2019-01-19 02:15:00,25.0,0.136507937,27.917195747780003 +2019-01-19 02:30:00,25.0,0.127513228,27.9186519179204 +2019-01-19 02:45:00,25.0,0.124867725,27.920107712657032 +2019-01-19 03:00:00,25.0,0.12526455,27.921563131802657 +2019-01-19 03:15:00,25.0,0.12962963,27.923018175170068 +2019-01-19 03:30:00,25.0,0.132010582,27.924472842572122 +2019-01-19 03:45:00,25.0,0.128703704,27.925927133821713 +2019-01-19 04:00:00,25.0,0.123941799,27.927381048731785 +2019-01-19 04:15:00,25.0,0.124074074,27.928834587115336 +2019-01-19 04:30:00,25.0,0.121164021,27.930287748785403 +2019-01-19 04:45:00,25.0,0.12010582,27.931740533555086 +2019-01-19 05:00:00,25.0,0.127116402,27.93319294123751 +2019-01-19 05:15:00,25.0,0.141534392,27.93464497164588 +2019-01-19 05:30:00,25.0,0.151455026,27.936096624593418 +2019-01-19 05:45:00,25.0,0.15978836,27.937547899893417 +2019-01-19 06:00:00,25.0,0.167460317,27.93899879735921 +2019-01-19 06:15:00,25.0,0.176455026,27.94044931680418 +2019-01-19 06:30:00,25.0,0.184391534,27.941899458041753 +2019-01-19 06:45:00,25.0,0.185449735,27.943349220885413 +2019-01-19 07:00:00,25.0,0.184920635,27.944798605148684 +2019-01-19 07:15:00,25.0,0.187301587,27.946247610645145 +2019-01-19 07:30:00,25.0,0.197486772,27.947696237188424 +2019-01-19 07:45:00,25.0,0.204761905,27.949144484592193 +2019-01-19 08:00:00,25.0,0.202513228,27.950592352670174 +2019-01-19 08:15:00,25.0,0.20026455,27.95203984123614 +2019-01-19 08:30:00,25.0,0.205687831,27.953486950103912 +2019-01-19 08:45:00,25.0,0.205555556,27.95493367908736 +2019-01-19 09:00:00,25.0,0.207010582,27.9563800280004 +2019-01-19 09:15:00,25.0,0.211640212,27.957825996657004 +2019-01-19 09:30:00,25.0,0.217989418,27.959271584871182 +2019-01-19 09:45:00,25.0,0.216137566,27.960716792457003 +2019-01-19 10:00:00,25.0,0.217460317,27.96216161922858 +2019-01-19 10:15:00,25.0,0.220767196,27.96360606500008 +2019-01-19 10:30:00,25.0,0.231746032,27.965050129585705 +2019-01-19 10:45:00,25.0,0.239021164,27.966493812799726 +2019-01-19 11:00:00,25.0,0.239285714,27.967937114456447 +2019-01-19 11:15:00,25.0,0.235978836,27.969380034370232 +2019-01-19 11:30:00,25.0,0.226851852,27.970822572355488 +2019-01-19 11:45:00,25.0,0.214021164,27.97226472822667 +2019-01-19 12:00:00,25.0,0.200661376,27.973706501798286 +2019-01-19 12:15:00,25.0,0.192063492,27.97514789288489 +2019-01-19 12:30:00,25.0,0.18478836,27.976588901301092 +2019-01-19 12:45:00,25.0,0.177248677,27.97802952686154 +2019-01-19 13:00:00,25.0,0.173412698,27.97946976938094 +2019-01-19 13:15:00,25.0,0.163095238,27.98090962867405 +2019-01-19 13:30:00,25.0,0.157804233,27.982349104555663 +2019-01-19 13:45:00,25.0,0.155687831,27.983788196840635 +2019-01-19 14:00:00,25.0,0.149074074,27.985226905343865 +2019-01-19 14:15:00,25.0,0.143121693,27.986665229880302 +2019-01-19 14:30:00,25.0,0.139550265,27.98810317026495 +2019-01-19 14:45:00,25.0,0.142063492,27.989540726312853 +2019-01-19 15:00:00,25.0,0.142724868,27.990977897839112 +2019-01-19 15:15:00,25.0,0.135185185,27.992414684658876 +2019-01-19 15:30:00,25.0,0.127777778,27.993851086587338 +2019-01-19 15:45:00,25.0,0.129761905,27.995287103439747 +2019-01-19 16:00:00,25.0,0.138227513,27.996722735031398 +2019-01-19 16:15:00,25.0,0.138359788,27.998157981177638 +2019-01-19 16:30:00,25.0,0.13042328,27.99959284169386 +2019-01-19 16:45:00,25.0,0.125793651,28.001027316395515 +2019-01-19 17:00:00,25.0,0.12010582,28.002461405098092 +2019-01-19 17:15:00,25.0,0.117195767,28.003895107617133 +2019-01-19 17:30:00,25.0,0.119047619,28.00532842376824 +2019-01-19 17:45:00,25.0,0.121957672,28.00676135336705 +2019-01-19 18:00:00,25.0,0.117857143,28.00819389622926 +2019-01-19 18:15:00,25.0,0.11957672,28.00962605217061 +2019-01-19 18:30:00,25.0,0.122619048,28.01105782100689 +2019-01-19 18:45:00,25.0,0.125396825,28.01248920255395 +2019-01-19 19:00:00,25.0,0.125,28.01392019662768 +2019-01-19 19:15:00,25.0,0.125925926,28.015350803044022 +2019-01-19 19:30:00,25.0,0.12962963,28.016781021618964 +2019-01-19 19:45:00,25.0,0.133730159,28.018210852168554 +2019-01-19 20:00:00,25.0,0.133068783,28.019640294508882 +2019-01-19 20:15:00,25.0,0.134126984,28.021069348456088 +2019-01-19 20:30:00,25.0,0.132142857,28.022498013826365 +2019-01-19 20:45:00,25.0,0.129761905,28.023926290435952 +2019-01-19 21:00:00,25.0,0.126455026,28.025354178101146 +2019-01-19 21:15:00,25.0,0.124867725,28.026781676638286 +2019-01-19 21:30:00,25.0,0.127777778,28.02820878586376 +2019-01-19 21:45:00,25.0,0.129365079,28.02963550559402 +2019-01-19 22:00:00,25.0,0.131878307,28.03106183564555 +2019-01-19 22:15:00,25.0,0.132804233,28.03248777583489 +2019-01-19 22:30:00,25.0,0.133465608,28.03391332597864 +2019-01-19 22:45:00,25.0,0.133730159,28.03533848589344 +2019-01-19 23:00:00,25.0,0.12962963,28.03676325539598 +2019-01-19 23:15:00,25.0,0.131349206,28.038187634303004 +2019-01-19 23:30:00,25.0,0.135449735,28.039611622431302 +2019-01-19 23:45:00,25.0,0.137566138,28.041035219597724 +2019-01-20 00:00:00,25.0,0.132275132,28.04245842561916 +2019-01-20 00:15:00,25.0,0.121296296,28.043881240312555 +2019-01-20 00:30:00,25.0,0.111507937,28.045303663494902 +2019-01-20 00:45:00,25.0,0.102116402,28.046725694983245 +2019-01-20 01:00:00,25.0,0.094179894,28.04814733459468 +2019-01-20 01:15:00,25.0,0.092460317,28.049568582146357 +2019-01-20 01:30:00,25.0,0.090079365,28.050989437455463 +2019-01-20 01:45:00,25.0,0.087301587,28.05240990033925 +2019-01-20 02:00:00,25.0,0.083597884,28.053829970615013 +2019-01-20 02:15:00,25.0,0.077513228,28.0552496481001 +2019-01-20 02:30:00,25.0,0.071031746,28.056668932611906 +2019-01-20 02:45:00,25.0,0.06521164,28.058087823967885 +2019-01-20 03:00:00,25.0,0.058730159,28.059506321985534 +2019-01-20 03:15:00,25.0,0.054232804,28.0609244264824 +2019-01-20 03:30:00,25.0,0.049603175,28.062342137276083 +2019-01-20 03:45:00,25.0,0.044312169,28.063759454184236 +2019-01-20 04:00:00,25.0,0.040343915,28.06517637702456 +2019-01-20 04:15:00,25.0,0.033333333,28.066592905614808 +2019-01-20 04:30:00,25.0,0.027645503,28.068009039772782 +2019-01-20 04:45:00,25.0,0.024206349,28.069424779316332 +2019-01-20 05:00:00,25.0,0.022222222,28.070840124063366 +2019-01-20 05:15:00,25.0,0.016798942,28.07225507383184 +2019-01-20 05:30:00,25.0,0.012037037,28.07366962843976 +2019-01-20 05:45:00,25.0,0.010185185,28.07508378770518 +2019-01-20 06:00:00,25.0,0.010846561,28.076497551446206 +2019-01-20 06:15:00,25.0,0.011375661,28.077910919481003 +2019-01-20 06:30:00,25.0,0.012301587,28.079323891627773 +2019-01-20 06:45:00,25.0,0.012433862,28.08073646770478 +2019-01-20 07:00:00,25.0,0.014550265,28.082148647530335 +2019-01-20 07:15:00,25.0,0.019179894,28.0835604309228 +2019-01-20 07:30:00,25.0,0.019444444,28.08497181770059 +2019-01-20 07:45:00,25.0,0.018650794,28.086382807682167 +2019-01-20 08:00:00,25.0,0.016931217,28.087793400686046 +2019-01-20 08:15:00,25.0,0.016666667,28.089203596530794 +2019-01-20 08:30:00,25.0,0.015079365,28.090613395035028 +2019-01-20 08:45:00,25.0,0.014285714,28.092022796017417 +2019-01-20 09:00:00,25.0,0.014153439,28.09343179929668 +2019-01-20 09:15:00,25.0,0.01494709,28.09484040469159 +2019-01-20 09:30:00,25.0,0.016402116,28.096248612020965 +2019-01-20 09:45:00,25.0,0.016137566,28.09765642110368 +2019-01-20 10:00:00,25.0,0.01494709,28.09906383175866 +2019-01-20 10:15:00,25.0,0.01521164,28.100470843804878 +2019-01-20 10:30:00,25.0,0.01521164,28.101877457061363 +2019-01-20 10:45:00,25.0,0.01521164,28.103283671347196 +2019-01-20 11:00:00,25.0,0.016269841,28.1046894864815 +2019-01-20 11:15:00,25.0,0.017328042,28.10609490228346 +2019-01-20 11:30:00,25.0,0.019708995,28.10749991857231 +2019-01-20 11:45:00,25.0,0.022222222,28.108904535167326 +2019-01-20 12:00:00,25.0,0.02473545,28.110308751887853 +2019-01-20 12:15:00,25.0,0.026719577,28.11171256855327 +2019-01-20 12:30:00,25.0,0.027910053,28.11311598498302 +2019-01-20 12:45:00,25.0,0.03042328,28.114519000996584 +2019-01-20 13:00:00,25.0,0.030820106,28.11592161641351 +2019-01-20 13:15:00,25.0,0.030291005,28.11732383105339 +2019-01-20 13:30:00,25.0,0.035185185,28.118725644735868 +2019-01-20 13:45:00,25.0,0.033465608,28.120127057280634 +2019-01-20 14:00:00,25.0,0.032936508,28.12152806850744 +2019-01-20 14:15:00,25.0,0.032804233,28.122928678236086 +2019-01-20 14:30:00,25.0,0.035185185,28.12432888628642 +2019-01-20 14:45:00,25.0,0.036772487,28.125728692478344 +2019-01-20 15:00:00,25.0,0.036375661,28.12712809663181 +2019-01-20 15:15:00,25.0,0.037037037,28.128527098566828 +2019-01-20 15:30:00,25.0,0.039021164,28.12992569810345 +2019-01-20 15:45:00,25.0,0.042328042,28.13132389506179 +2019-01-20 16:00:00,25.0,0.042592593,28.132721689262002 +2019-01-20 16:15:00,25.0,0.041402116,28.134119080524307 +2019-01-20 16:30:00,25.0,0.041137566,28.135516068668963 +2019-01-20 16:45:00,25.0,0.043915344,28.136912653516287 +2019-01-20 17:00:00,25.0,0.045634921,28.138308834886647 +2019-01-20 17:15:00,25.0,0.044973545,28.139704612600465 +2019-01-20 17:30:00,25.0,0.045238095,28.14109998647821 +2019-01-20 17:45:00,25.0,0.048280423,28.14249495634041 +2019-01-20 18:00:00,25.0,0.052248677,28.143889522007637 +2019-01-20 18:15:00,25.0,0.056481481,28.14528368330052 +2019-01-20 18:30:00,25.0,0.057539683,28.14667744003974 +2019-01-20 18:45:00,25.0,0.056084656,28.148070792046028 +2019-01-20 19:00:00,25.0,0.058068783,28.149463739140163 +2019-01-20 19:15:00,25.0,0.061772487,28.15085628114299 +2019-01-20 19:30:00,25.0,0.062830688,28.15224841787539 +2019-01-20 19:45:00,25.0,0.065079365,28.153640149158306 +2019-01-20 20:00:00,25.0,0.066666667,28.155031474812727 +2019-01-20 20:15:00,25.0,0.074206349,28.156422394659703 +2019-01-20 20:30:00,25.0,0.079497354,28.157812908520327 +2019-01-20 20:45:00,25.0,0.083597884,28.159203016215752 +2019-01-20 21:00:00,25.0,0.090079365,28.160592717567173 +2019-01-20 21:15:00,25.0,0.097222222,28.161982012395846 +2019-01-20 21:30:00,25.0,0.104232804,28.163370900523077 +2019-01-20 21:45:00,25.0,0.113492063,28.164759381770224 +2019-01-20 22:00:00,25.0,0.118253968,28.166147455958697 +2019-01-20 22:15:00,25.0,0.121031746,28.16753512290996 +2019-01-20 22:30:00,25.0,0.125529101,28.168922382445526 +2019-01-20 22:45:00,25.0,0.133201058,28.170309234386963 +2019-01-20 23:00:00,25.0,0.143253968,28.171695678555896 +2019-01-20 23:15:00,25.0,0.15,28.173081714773986 +2019-01-20 23:30:00,25.0,0.159920635,28.174467342862968 +2019-01-20 23:45:00,25.0,0.169312169,28.175852562644618 +2019-01-21 00:00:00,25.0,0.176851852,28.17723737394076 +2019-01-21 00:15:00,25.0,0.18015873,28.178621776573284 +2019-01-21 00:30:00,25.0,0.187830688,28.180005770364115 +2019-01-21 00:45:00,25.0,0.200529101,28.181389355135252 +2019-01-21 01:00:00,25.0,0.212962963,28.18277253070873 +2019-01-21 01:15:00,25.0,0.223015873,28.184155296906635 +2019-01-21 01:30:00,25.0,0.238888889,28.185537653551123 +2019-01-21 01:45:00,25.0,0.258068783,28.18691960046439 +2019-01-21 02:00:00,25.0,0.274338624,28.18830113746868 +2019-01-21 02:15:00,25.0,0.283994709,28.189682264386306 +2019-01-21 02:30:00,25.0,0.292592593,28.191062981039614 +2019-01-21 02:45:00,25.0,0.311507937,28.192443287251024 +2019-01-21 03:00:00,25.0,0.326455026,28.19382318284299 +2019-01-21 03:15:00,25.0,0.33505291,28.19520266763803 +2019-01-21 03:30:00,25.0,0.34537037,28.196581741458708 +2019-01-21 03:45:00,25.0,0.356878307,28.19796040412765 +2019-01-21 04:00:00,25.0,0.359126984,28.19933865546752 +2019-01-21 04:15:00,25.0,0.361640212,28.200716495301055 +2019-01-21 04:30:00,25.0,0.374206349,28.20209392345103 +2019-01-21 04:45:00,25.0,0.368915344,28.203470939740274 +2019-01-21 05:00:00,25.0,0.362301587,28.204847543991676 +2019-01-21 05:15:00,25.0,0.36031746,28.20622373602817 +2019-01-21 05:30:00,25.0,0.361904762,28.20759951567275 +2019-01-21 05:45:00,25.0,0.354497354,28.208974882748457 +2019-01-21 06:00:00,25.0,0.331084656,28.210349837078393 +2019-01-21 06:15:00,25.0,0.324470899,28.211724378485705 +2019-01-21 06:30:00,25.0,0.315608466,28.2130985067936 +2019-01-21 06:45:00,25.0,0.312169312,28.214472221825325 +2019-01-21 07:00:00,25.0,0.299603175,28.215845523404198 +2019-01-21 07:15:00,25.0,0.282142857,28.21721841135358 +2019-01-21 07:30:00,25.0,0.261772487,28.218590885496887 +2019-01-21 07:45:00,25.0,0.264814815,28.21996294565759 +2019-01-21 08:00:00,25.0,0.248941799,28.221334591659204 +2019-01-21 08:15:00,25.0,0.230026455,28.222705823325313 +2019-01-21 08:30:00,25.0,0.220899471,28.22407664047954 +2019-01-21 08:45:00,25.0,0.225396825,28.225447042945575 +2019-01-21 09:00:00,25.0,0.212962963,28.226817030547146 +2019-01-21 09:15:00,25.0,0.204497354,28.228186603108046 +2019-01-21 09:30:00,25.0,0.197354497,28.229555760452115 +2019-01-21 09:45:00,25.0,0.187301587,28.23092450240325 +2019-01-21 10:00:00,25.0,0.182010582,28.232292828785404 +2019-01-21 10:15:00,25.0,0.189021164,28.23366073942257 +2019-01-21 10:30:00,25.0,0.192063492,28.235028234138817 +2019-01-21 10:45:00,25.0,0.192063492,28.236395312758244 +2019-01-21 11:00:00,25.0,0.197089947,28.23776197510502 +2019-01-21 11:15:00,25.0,0.201058201,28.239128221003355 +2019-01-21 11:30:00,25.0,0.188359788,28.24049405027753 +2019-01-21 11:45:00,25.0,0.172222222,28.24185946275186 +2019-01-21 12:00:00,25.0,0.176851852,28.243224458250726 +2019-01-21 12:15:00,25.0,0.174338624,28.24458903659856 +2019-01-21 12:30:00,25.0,0.177380952,28.245953197619844 +2019-01-21 12:45:00,25.0,0.183597884,28.24731694113912 +2019-01-21 13:00:00,25.0,0.19510582,28.248680266980973 +2019-01-21 13:15:00,25.0,0.201190476,28.25004317497006 +2019-01-21 13:30:00,25.0,0.201322751,28.25140566493107 +2019-01-21 13:45:00,25.0,0.212037037,28.25276773668876 +2019-01-21 14:00:00,25.0,0.21005291,28.25412939006794 +2019-01-21 14:15:00,25.0,0.212566138,28.255490624893472 +2019-01-21 14:30:00,25.0,0.227248677,28.256851440990264 +2019-01-21 14:45:00,25.0,0.227116402,28.25821183818329 +2019-01-21 15:00:00,25.0,0.216269841,28.259571816297573 +2019-01-21 15:15:00,25.0,0.215740741,28.260931375158183 +2019-01-21 15:30:00,25.0,0.216402116,28.26229051459026 +2019-01-21 15:45:00,25.0,0.195238095,28.263649234418978 +2019-01-21 16:00:00,25.0,0.172354497,28.265007534469586 +2019-01-21 16:15:00,25.0,0.169312169,28.266365414567368 +2019-01-21 16:30:00,25.0,0.158068783,28.267722874537675 +2019-01-21 16:45:00,25.0,0.158730159,28.269079914205903 +2019-01-21 17:00:00,25.0,0.160185185,28.27043653339751 +2019-01-21 17:15:00,25.0,0.155687831,28.271792731938007 +2019-01-21 17:30:00,25.0,0.155026455,28.27314850965295 +2019-01-21 17:45:00,25.0,0.151322751,28.274503866367958 +2019-01-21 18:00:00,25.0,0.145899471,28.275858801908704 +2019-01-21 18:15:00,25.0,0.147222222,28.277213316100912 +2019-01-21 18:30:00,25.0,0.147486772,28.27856740877036 +2019-01-21 18:45:00,25.0,0.145634921,28.279921079742884 +2019-01-21 19:00:00,25.0,0.137962963,28.28127432884437 +2019-01-21 19:15:00,25.0,0.142328042,28.28262715590076 +2019-01-21 19:30:00,25.0,0.14484127,28.28397956073805 +2019-01-21 19:45:00,25.0,0.138888889,28.28533154318229 +2019-01-21 20:00:00,25.0,0.136243386,28.286683103059588 +2019-01-21 20:15:00,25.0,0.142063492,28.2880342401961 +2019-01-21 20:30:00,25.0,0.142592593,28.289384954418043 +2019-01-21 20:45:00,25.0,0.147751323,28.29073524555168 +2019-01-21 21:00:00,25.0,0.153571429,28.292085113423337 +2019-01-21 21:15:00,25.0,0.158333333,28.293434557859392 +2019-01-21 21:30:00,25.0,0.165079365,28.29478357868627 +2019-01-21 21:45:00,25.0,0.169444444,28.296132175730467 +2019-01-21 22:00:00,25.0,0.160582011,28.297480348818514 +2019-01-21 22:15:00,25.0,0.150925926,28.29882809777701 +2019-01-21 22:30:00,25.0,0.141137566,28.300175422432602 +2019-01-21 22:45:00,25.0,0.139550265,28.301522322612 +2019-01-21 23:00:00,25.0,0.141269841,28.302868798141958 +2019-01-21 23:15:00,25.0,0.145238095,28.304214848849284 +2019-01-21 23:30:00,25.0,0.152910053,28.305560474560856 +2019-01-21 23:45:00,25.0,0.175132275,28.306905675103593 +2019-01-22 00:00:00,25.0,0.183994709,28.30825045030447 +2019-01-22 00:15:00,25.0,0.199206349,28.30959479999052 +2019-01-22 00:30:00,25.0,0.221296296,28.31093872398883 +2019-01-22 00:45:00,25.0,0.250925926,28.31228222212654 +2019-01-22 01:00:00,25.0,0.286243386,28.313625294230846 +2019-01-22 01:15:00,25.0,0.305687831,28.314967940129 +2019-01-22 01:30:00,25.0,0.312698413,28.316310159648314 +2019-01-22 01:45:00,25.0,0.323809524,28.31765195261614 +2019-01-22 02:00:00,25.0,0.351190476,28.318993318859892 +2019-01-22 02:15:00,25.0,0.372354497,28.320334258207048 +2019-01-22 02:30:00,25.0,0.387037037,28.321674770485128 +2019-01-22 02:45:00,25.0,0.399074074,28.323014855521716 +2019-01-22 03:00:00,25.0,0.420634921,28.324354513144442 +2019-01-22 03:15:00,25.0,0.43994709,28.325693743181002 +2019-01-22 03:30:00,25.0,0.462301587,28.327032545459137 +2019-01-22 03:45:00,25.0,0.473809524,28.32837091980665 +2019-01-22 04:00:00,25.0,0.492724868,28.329708866051394 +2019-01-22 04:15:00,25.0,0.512830688,28.331046384021278 +2019-01-22 04:30:00,25.0,0.523280423,28.332383473544272 +2019-01-22 04:45:00,25.0,0.533068783,28.33372013444839 +2019-01-22 05:00:00,25.0,0.550925926,28.335056366561716 +2019-01-22 05:15:00,25.0,0.561375661,28.336392169712376 +2019-01-22 05:30:00,25.0,0.565873016,28.337727543728555 +2019-01-22 05:45:00,25.0,0.568783069,28.339062488438493 +2019-01-22 06:00:00,25.0,0.558333333,28.340397003670493 +2019-01-22 06:15:00,25.0,0.567328042,28.341731089252896 +2019-01-22 06:30:00,25.0,0.568386243,28.343064745014118 +2019-01-22 06:45:00,25.0,0.574338624,28.34439797078262 +2019-01-22 07:00:00,25.0,0.583333333,28.345730766386914 +2019-01-22 07:15:00,25.0,0.58505291,28.347063131655577 +2019-01-22 07:30:00,25.0,0.589285714,28.348395066417236 +2019-01-22 07:45:00,25.0,0.596693122,28.349726570500575 +2019-01-22 08:00:00,25.0,0.603571429,28.351057643734336 +2019-01-22 08:15:00,25.0,0.607142857,28.352388285947306 +2019-01-22 08:30:00,25.0,0.610582011,28.353718496968337 +2019-01-22 08:45:00,25.0,0.610449735,28.355048276626338 +2019-01-22 09:00:00,25.0,0.614285714,28.356377624750266 +2019-01-22 09:15:00,25.0,0.626322751,28.35770654116914 +2019-01-22 09:30:00,25.0,0.631084656,28.359035025712032 +2019-01-22 09:45:00,25.0,0.633201058,28.360363078208064 +2019-01-22 10:00:00,25.0,0.636904762,28.361690698486424 +2019-01-22 10:15:00,25.0,0.64047619,28.363017886376348 +2019-01-22 10:30:00,25.0,0.645238095,28.36434464170713 +2019-01-22 10:45:00,25.0,0.646296296,28.365670964308123 +2019-01-22 11:00:00,25.0,0.646825397,28.36699685400873 +2019-01-22 11:15:00,25.0,0.644444444,28.36832231063841 +2019-01-22 11:30:00,25.0,0.643915344,28.36964733402668 +2019-01-22 11:45:00,25.0,0.644444444,28.370971924003115 +2019-01-22 12:00:00,25.0,0.643915344,28.372296080397344 +2019-01-22 12:15:00,25.0,0.638756614,28.37361980303905 +2019-01-22 12:30:00,25.0,0.638624339,28.374943091757967 +2019-01-22 12:45:00,25.0,0.637037037,28.376265946383896 +2019-01-22 13:00:00,25.0,0.633597884,28.37758836674669 +2019-01-22 13:15:00,25.0,0.633730159,28.37891035267625 +2019-01-22 13:30:00,25.0,0.63015873,28.380231904002546 +2019-01-22 13:45:00,25.0,0.62526455,28.381553020555593 +2019-01-22 14:00:00,25.0,0.626190476,28.38287370216547 +2019-01-22 14:15:00,25.0,0.62989418,28.3841939486623 +2019-01-22 14:30:00,25.0,0.631216931,28.38551375987628 +2019-01-22 14:45:00,25.0,0.632275132,28.38683313563764 +2019-01-22 15:00:00,25.0,0.631349206,28.38815207577669 +2019-01-22 15:15:00,25.0,0.62526455,28.389470580123785 +2019-01-22 15:30:00,25.0,0.621825397,28.39078864850933 +2019-01-22 15:45:00,25.0,0.625,28.39210628076379 +2019-01-22 16:00:00,25.0,0.626455026,28.393423476717697 +2019-01-22 16:15:00,25.0,0.62010582,28.39474023620162 +2019-01-22 16:30:00,25.0,0.615740741,28.396056559046205 +2019-01-22 16:45:00,25.0,0.611772487,28.397372445082137 +2019-01-22 17:00:00,25.0,0.608730159,28.398687894140163 +2019-01-22 17:15:00,25.0,0.607936508,28.400002906051093 +2019-01-22 17:30:00,25.0,0.607010582,28.401317480645776 +2019-01-22 17:45:00,25.0,0.604761905,28.40263161775514 +2019-01-22 18:00:00,25.0,0.596693122,28.40394531721015 +2019-01-22 18:15:00,25.0,0.592460317,28.405258578841842 +2019-01-22 18:30:00,25.0,0.583201058,28.406571402481298 +2019-01-22 18:45:00,25.0,0.576058201,28.407883787959655 +2019-01-22 19:00:00,25.0,0.574470899,28.409195735108113 +2019-01-22 19:15:00,25.0,0.568915344,28.410507243757934 +2019-01-22 19:30:00,25.0,0.564550265,28.41181831374042 +2019-01-22 19:45:00,25.0,0.569708995,28.41312894488694 +2019-01-22 20:00:00,25.0,0.568253968,28.414439137028914 +2019-01-22 20:15:00,25.0,0.55489418,28.415748889997833 +2019-01-22 20:30:00,25.0,0.541269841,28.417058203625224 +2019-01-22 20:45:00,25.0,0.52962963,28.418367077742687 +2019-01-22 21:00:00,25.0,0.511375661,28.419675512181865 +2019-01-22 21:15:00,25.0,0.501984127,28.420983506774466 +2019-01-22 21:30:00,25.0,0.499867725,28.422291061352254 +2019-01-22 21:45:00,25.0,0.484259259,28.42359817574705 +2019-01-22 22:00:00,25.0,0.466269841,28.424904849790725 +2019-01-22 22:15:00,25.0,0.44510582,28.426211083315216 +2019-01-22 22:30:00,25.0,0.43452381,28.42751687615251 +2019-01-22 22:45:00,25.0,0.427116402,28.428822228134653 +2019-01-22 23:00:00,25.0,0.416269841,28.43012713909375 +2019-01-22 23:15:00,25.0,0.403571429,28.431431608861953 +2019-01-22 23:30:00,25.0,0.385582011,28.432735637271488 +2019-01-22 23:45:00,25.0,0.371693122,28.434039224154624 +2019-01-23 00:00:00,25.0,0.359126984,28.435342369343687 +2019-01-23 00:15:00,25.0,0.350925926,28.43664507267107 +2019-01-23 00:30:00,25.0,0.348148148,28.43794733396921 +2019-01-23 00:45:00,25.0,0.349603175,28.43924915307061 +2019-01-23 01:00:00,25.0,0.357142857,28.440550529807826 +2019-01-23 01:15:00,25.0,0.355026455,28.441851464013475 +2019-01-23 01:30:00,25.0,0.353703704,28.443151955520225 +2019-01-23 01:45:00,25.0,0.343650794,28.4444520041608 +2019-01-23 02:00:00,25.0,0.341402116,28.445751609767996 +2019-01-23 02:15:00,25.0,0.336507937,28.447050772174645 +2019-01-23 02:30:00,25.0,0.324338624,28.448349491213648 +2019-01-23 02:45:00,25.0,0.313756614,28.449647766717963 +2019-01-23 03:00:00,25.0,0.307671958,28.450945598520597 +2019-01-23 03:15:00,25.0,0.310978836,28.45224298645463 +2019-01-23 03:30:00,25.0,0.308465608,28.453539930353177 +2019-01-23 03:45:00,25.0,0.298412698,28.454836430049433 +2019-01-23 04:00:00,25.0,0.279100529,28.45613248537663 +2019-01-23 04:15:00,25.0,0.26031746,28.457428096168073 +2019-01-23 04:30:00,25.0,0.242857143,28.458723262257116 +2019-01-23 04:45:00,25.0,0.231746032,28.46001798347717 +2019-01-23 05:00:00,25.0,0.223148148,28.461312259661703 +2019-01-23 05:15:00,25.0,0.217063492,28.46260609064425 +2019-01-23 05:30:00,25.0,0.213095238,28.463899476258387 +2019-01-23 05:45:00,25.0,0.212301587,28.465192416337757 +2019-01-23 06:00:00,25.0,0.216269841,28.466484910716066 +2019-01-23 06:15:00,25.0,0.21957672,28.467776959227066 +2019-01-23 06:30:00,25.0,0.22473545,28.469068561704567 +2019-01-23 06:45:00,25.0,0.229232804,28.470359717982447 +2019-01-23 07:00:00,25.0,0.23478836,28.471650427894627 +2019-01-23 07:15:00,25.0,0.235846561,28.4729406912751 +2019-01-23 07:30:00,25.0,0.232142857,28.474230507957905 +2019-01-23 07:45:00,25.0,0.226851852,28.475519877777145 +2019-01-23 08:00:00,25.0,0.22037037,28.476808800566975 +2019-01-23 08:15:00,25.0,0.213095238,28.478097276161616 +2019-01-23 08:30:00,25.0,0.207010582,28.479385304395336 +2019-01-23 08:45:00,25.0,0.202777778,28.480672885102468 +2019-01-23 09:00:00,25.0,0.205687831,28.4819600181174 +2019-01-23 09:15:00,25.0,0.19973545,28.483246703274585 +2019-01-23 09:30:00,25.0,0.188888889,28.484532940408513 +2019-01-23 09:45:00,25.0,0.187830688,28.485818729353756 +2019-01-23 10:00:00,25.0,0.18478836,28.487104069944927 +2019-01-23 10:15:00,25.0,0.175661376,28.488388962016707 +2019-01-23 10:30:00,25.0,0.156746032,28.489673405403828 +2019-01-23 10:45:00,25.0,0.148280423,28.490957399941077 +2019-01-23 11:00:00,25.0,0.149603175,28.492240945463315 +2019-01-23 11:15:00,25.0,0.150793651,28.49352404180544 +2019-01-23 11:30:00,25.0,0.147619048,28.49480668880242 +2019-01-23 11:45:00,25.0,0.136375661,28.49608888628928 +2019-01-23 12:00:00,25.0,0.118915344,28.497370634101095 +2019-01-23 12:15:00,25.0,0.105952381,28.49865193207301 +2019-01-23 12:30:00,25.0,0.094708995,28.49993278004022 +2019-01-23 12:45:00,25.0,0.091137566,28.501213177837975 +2019-01-23 13:00:00,25.0,0.095634921,28.50249312530159 +2019-01-23 13:15:00,25.0,0.092328042,28.50377262226644 +2019-01-23 13:30:00,25.0,0.097751323,28.505051668567948 +2019-01-23 13:45:00,25.0,0.099603175,28.5063302640416 +2019-01-23 14:00:00,25.0,0.101851852,28.50760840852294 +2019-01-23 14:15:00,25.0,0.106349206,28.508886101847573 +2019-01-23 14:30:00,25.0,0.107142857,28.510163343851158 +2019-01-23 14:45:00,25.0,0.103835979,28.511440134369412 +2019-01-23 15:00:00,25.0,0.106349206,28.51271647323811 +2019-01-23 15:15:00,25.0,0.106349206,28.51399236029309 +2019-01-23 15:30:00,25.0,0.10542328,28.515267795370242 +2019-01-23 15:45:00,25.0,0.103835979,28.516542778305517 +2019-01-23 16:00:00,25.0,0.102513228,28.517817308934927 +2019-01-23 16:15:00,25.0,0.09973545,28.51909138709453 +2019-01-23 16:30:00,25.0,0.099867725,28.52036501262046 +2019-01-23 16:45:00,25.0,0.101851852,28.5216381853489 +2019-01-23 17:00:00,25.0,0.104365079,28.522910905116085 +2019-01-23 17:15:00,25.0,0.103174603,28.52418317175832 +2019-01-23 17:30:00,25.0,0.10462963,28.525454985111963 +2019-01-23 17:45:00,25.0,0.107142857,28.526726345013426 +2019-01-23 18:00:00,25.0,0.113756614,28.52799725129919 +2019-01-23 18:15:00,25.0,0.116666667,28.529267703805786 +2019-01-23 18:30:00,25.0,0.120502646,28.530537702369802 +2019-01-23 18:45:00,25.0,0.127380952,28.531807246827892 +2019-01-23 19:00:00,25.0,0.133597884,28.533076337016762 +2019-01-23 19:15:00,25.0,0.138227513,28.53434497277318 +2019-01-23 19:30:00,25.0,0.140079365,28.53561315393397 +2019-01-23 19:45:00,25.0,0.139021164,28.536880880336014 +2019-01-23 20:00:00,25.0,0.138624339,28.53814815181626 +2019-01-23 20:15:00,25.0,0.143518519,28.5394149682117 +2019-01-23 20:30:00,25.0,0.141137566,28.5406813293594 +2019-01-23 20:45:00,25.0,0.139814815,28.54194723509648 +2019-01-23 21:00:00,25.0,0.14047619,28.54321268526011 +2019-01-23 21:15:00,25.0,0.14457672,28.544477679687525 +2019-01-23 21:30:00,25.0,0.13531746,28.54574221821602 +2019-01-23 21:45:00,25.0,0.129365079,28.54700630068295 +2019-01-23 22:00:00,25.0,0.121296296,28.54826992692572 +2019-01-23 22:15:00,25.0,0.112698413,28.549533096781804 +2019-01-23 22:30:00,25.0,0.100661376,28.55079581008873 +2019-01-23 22:45:00,25.0,0.091798942,28.552058066684083 +2019-01-23 23:00:00,25.0,0.092460317,28.553319866405506 +2019-01-23 23:15:00,25.0,0.095238095,28.55458120909071 +2019-01-23 23:30:00,25.0,0.095502646,28.555842094577457 +2019-01-23 23:45:00,25.0,0.101190476,28.557102522703563 +2019-01-24 00:00:00,25.0,0.106878307,28.558362493306916 +2019-01-24 00:15:00,25.0,0.103571429,28.55962200622545 +2019-01-24 00:30:00,25.0,0.107275132,28.560881061297167 +2019-01-24 00:45:00,25.0,0.107010582,28.562139658360124 +2019-01-24 01:00:00,25.0,0.106084656,28.563397797252435 +2019-01-24 01:15:00,25.0,0.096296296,28.564655477812277 +2019-01-24 01:30:00,25.0,0.095238095,28.565912699877885 +2019-01-24 01:45:00,25.0,0.095767196,28.567169463287552 +2019-01-24 02:00:00,25.0,0.095899471,28.56842576787963 +2019-01-24 02:15:00,25.0,0.097222222,28.569681613492527 +2019-01-24 02:30:00,25.0,0.098280423,28.57093699996472 +2019-01-24 02:45:00,25.0,0.096957672,28.57219192713473 +2019-01-24 03:00:00,25.0,0.097619048,28.573446394841156 +2019-01-24 03:15:00,25.0,0.092328042,28.574700402922634 +2019-01-24 03:30:00,25.0,0.086640212,28.575953951217876 +2019-01-24 03:45:00,25.0,0.083201058,28.57720703956565 +2019-01-24 04:00:00,25.0,0.078835979,28.578459667804776 +2019-01-24 04:15:00,25.0,0.073809524,28.57971183577414 +2019-01-24 04:30:00,25.0,0.067195767,28.580963543312688 +2019-01-24 04:45:00,25.0,0.061507937,28.582214790259417 +2019-01-24 05:00:00,25.0,0.056613757,28.583465576453392 +2019-01-24 05:15:00,25.0,0.057539683,28.584715901733738 +2019-01-24 05:30:00,25.0,0.05515873,28.585965765939626 +2019-01-24 05:45:00,25.0,0.058068783,28.587215168910305 +2019-01-24 06:00:00,25.0,0.061904762,28.588464110485067 +2019-01-24 06:15:00,25.0,0.063888889,28.589712590503275 +2019-01-24 06:30:00,25.0,0.067857143,28.59096060880434 +2019-01-24 06:45:00,25.0,0.067592593,28.59220816522775 +2019-01-24 07:00:00,25.0,0.068386243,28.59345525961303 +2019-01-24 07:15:00,25.0,0.075132275,28.59470189179978 +2019-01-24 07:30:00,25.0,0.078968254,28.59594806162766 +2019-01-24 07:45:00,25.0,0.083597884,28.59719376893638 +2019-01-24 08:00:00,25.0,0.085582011,28.59843901356571 +2019-01-24 08:15:00,25.0,0.083465608,28.599683795355492 +2019-01-24 08:30:00,25.0,0.086111111,28.600928114145617 +2019-01-24 08:45:00,25.0,0.093253968,28.602171969776034 +2019-01-24 09:00:00,25.0,0.099074074,28.60341536208676 +2019-01-24 09:15:00,25.0,0.106481481,28.604658290917865 +2019-01-24 09:30:00,25.0,0.113227513,28.60590075610948 +2019-01-24 09:45:00,25.0,0.117328042,28.607142757501798 +2019-01-24 10:00:00,25.0,0.124338624,28.60838429493507 +2019-01-24 10:15:00,25.0,0.128174603,28.609625368249606 +2019-01-24 10:30:00,25.0,0.132275132,28.610865977285773 +2019-01-24 10:45:00,25.0,0.127910053,28.612106121884008 +2019-01-24 11:00:00,25.0,0.123677249,28.61334580188479 +2019-01-24 11:15:00,25.0,0.118121693,28.614585017128682 +2019-01-24 11:30:00,25.0,0.113227513,28.615823767456284 +2019-01-24 11:45:00,25.0,0.107671958,28.617062052708263 +2019-01-24 12:00:00,25.0,0.103571429,28.61829987272536 +2019-01-24 12:15:00,25.0,0.101190476,28.61953722734835 +2019-01-24 12:30:00,25.0,0.099338624,28.62077411641809 +2019-01-24 12:45:00,25.0,0.096296296,28.622010539775488 +2019-01-24 13:00:00,25.0,0.091402116,28.623246497261505 +2019-01-24 13:15:00,25.0,0.089021164,28.62448198871718 +2019-01-24 13:30:00,25.0,0.088095238,28.625717013983593 +2019-01-24 13:45:00,25.0,0.08531746,28.626951572901895 +2019-01-24 14:00:00,25.0,0.081878307,28.628185665313296 +2019-01-24 14:15:00,25.0,0.078439153,28.62941929105906 +2019-01-24 14:30:00,25.0,0.078439153,28.630652449980523 +2019-01-24 14:45:00,25.0,0.075529101,28.631885141919064 +2019-01-24 15:00:00,25.0,0.074074074,28.633117366716135 +2019-01-24 15:15:00,25.0,0.078306878,28.634349124213248 +2019-01-24 15:30:00,25.0,0.079232804,28.635580414251965 +2019-01-24 15:45:00,25.0,0.080291005,28.636811236673918 +2019-01-24 16:00:00,25.0,0.078571429,28.638041591320796 +2019-01-24 16:15:00,25.0,0.071296296,28.63927147803435 +2019-01-24 16:30:00,25.0,0.072222222,28.640500896656384 +2019-01-24 16:45:00,25.0,0.075925926,28.64172984702877 +2019-01-24 17:00:00,25.0,0.077645503,28.642958328993437 +2019-01-24 17:15:00,25.0,0.086507937,28.644186342392377 +2019-01-24 17:30:00,25.0,0.094973545,28.645413887067637 +2019-01-24 17:45:00,25.0,0.09484127,28.64664096286133 +2019-01-24 18:00:00,25.0,0.096560847,28.647867569615624 +2019-01-24 18:15:00,25.0,0.097222222,28.649093707172753 +2019-01-24 18:30:00,25.0,0.094047619,28.650319375375005 +2019-01-24 18:45:00,25.0,0.09510582,28.651544574064737 +2019-01-24 19:00:00,25.0,0.096957672,28.65276930308435 +2019-01-24 19:15:00,25.0,0.098809524,28.653993562276334 +2019-01-24 19:30:00,25.0,0.097883598,28.655217351483206 +2019-01-24 19:45:00,25.0,0.094312169,28.656440670547568 +2019-01-24 20:00:00,25.0,0.093650794,28.65766351931207 +2019-01-24 20:15:00,25.0,0.086111111,28.658885897619427 +2019-01-24 20:30:00,25.0,0.087830688,28.660107805312414 +2019-01-24 20:45:00,25.0,0.087037037,28.66132924223387 +2019-01-24 21:00:00,25.0,0.083994709,28.662550208226687 +2019-01-24 21:15:00,25.0,0.077777778,28.66377070313382 +2019-01-24 21:30:00,25.0,0.073015873,28.664990726798294 +2019-01-24 21:45:00,25.0,0.069312169,28.666210279063176 +2019-01-24 22:00:00,25.0,0.064550265,28.667429359771614 +2019-01-24 22:15:00,25.0,0.056216931,28.6686479687668 +2019-01-24 22:30:00,25.0,0.049867725,28.669866105891998 +2019-01-24 22:45:00,25.0,0.044708995,28.671083770990524 +2019-01-24 23:00:00,25.0,0.03968254,28.672300963905762 +2019-01-24 23:15:00,25.0,0.036507937,28.67351768448116 +2019-01-24 23:30:00,25.0,0.039550265,28.67473393256021 +2019-01-24 23:45:00,25.0,0.046164021,28.675949707986476 +2019-01-25 00:00:00,25.0,0.051190476,28.677165010603588 +2019-01-25 00:15:00,25.0,0.050661376,28.678379840255232 +2019-01-25 00:30:00,25.0,0.049338624,28.67959419678515 +2019-01-25 00:45:00,25.0,0.048809524,28.680808080037146 +2019-01-25 01:00:00,25.0,0.049603175,28.682021489855092 +2019-01-25 01:15:00,25.0,0.046825397,28.68323442608292 +2019-01-25 01:30:00,25.0,0.046428571,28.684446888564608 +2019-01-25 01:45:00,25.0,0.049206349,28.685658877144213 +2019-01-25 02:00:00,25.0,0.051190476,28.68687039166585 +2019-01-25 02:15:00,25.0,0.052116402,28.688081431973686 +2019-01-25 02:30:00,25.0,0.054761905,28.689291997911955 +2019-01-25 02:45:00,25.0,0.057010582,28.69050208932495 +2019-01-25 03:00:00,25.0,0.06005291,28.69171170605703 +2019-01-25 03:15:00,25.0,0.053968254,28.69292084795261 +2019-01-25 03:30:00,25.0,0.05,28.694129514856165 +2019-01-25 03:45:00,25.0,0.052380952,28.695337706612236 +2019-01-25 04:00:00,25.0,0.052513228,28.69654542306542 +2019-01-25 04:15:00,25.0,0.050396825,28.69775266406038 +2019-01-25 04:30:00,25.0,0.050793651,28.69895942944184 +2019-01-25 04:45:00,25.0,0.04537037,28.700165719054574 +2019-01-25 05:00:00,25.0,0.045767196,28.701371532743437 +2019-01-25 05:15:00,25.0,0.05026455,28.70257687035333 +2019-01-25 05:30:00,25.0,0.049470899,28.70378173172922 +2019-01-25 05:45:00,25.0,0.051058201,28.70498611671613 +2019-01-25 06:00:00,25.0,0.061243386,28.70619002515916 +2019-01-25 06:15:00,25.0,0.07037037,28.70739345690345 +2019-01-25 06:30:00,25.0,0.079365079,28.70859641179422 +2019-01-25 06:45:00,25.0,0.090079365,28.709798889676733 +2019-01-25 07:00:00,25.0,0.107671958,28.711000890396335 +2019-01-25 07:15:00,25.0,0.121031746,28.712202413798416 +2019-01-25 07:30:00,25.0,0.132010582,28.713403459728433 +2019-01-25 07:45:00,25.0,0.143518519,28.714604028031903 +2019-01-25 08:00:00,25.0,0.154232804,28.715804118554413 +2019-01-25 08:15:00,25.0,0.164021164,28.7170037311416 +2019-01-25 08:30:00,25.0,0.175,28.718202865639164 +2019-01-25 08:45:00,25.0,0.193121693,28.719401521892877 +2019-01-25 09:00:00,25.0,0.214153439,28.720599699748558 +2019-01-25 09:15:00,25.0,0.235846561,28.7217973990521 +2019-01-25 09:30:00,25.0,0.262566138,28.722994619649448 +2019-01-25 09:45:00,25.0,0.290343915,28.724191361386616 +2019-01-25 10:00:00,25.0,0.31547619,28.725387624109672 +2019-01-25 10:15:00,25.0,0.338492063,28.726583407664755 +2019-01-25 10:30:00,25.0,0.346560847,28.727778711898058 +2019-01-25 10:45:00,25.0,0.366931217,28.728973536655836 +2019-01-25 11:00:00,25.0,0.374338624,28.730167881784414 +2019-01-25 11:15:00,25.0,0.380555556,28.731361747130165 +2019-01-25 11:30:00,25.0,0.38015873,28.732555132539538 +2019-01-25 11:45:00,25.0,0.377777778,28.733748037859034 +2019-01-25 12:00:00,25.0,0.374206349,28.73494046293522 +2019-01-25 12:15:00,25.0,0.375132275,28.73613240761472 +2019-01-25 12:30:00,25.0,0.381216931,28.737323871744227 +2019-01-25 12:45:00,25.0,0.391005291,28.73851485517049 +2019-01-25 13:00:00,25.0,0.411111111,28.739705357740323 +2019-01-25 13:15:00,25.0,0.421164021,28.740895379300603 +2019-01-25 13:30:00,25.0,0.434656085,28.74208491969826 +2019-01-25 13:45:00,25.0,0.438227513,28.7432739787803 +2019-01-25 14:00:00,25.0,0.451851852,28.74446255639378 +2019-01-25 14:15:00,25.0,0.457804233,28.745650652385823 +2019-01-25 14:30:00,25.0,0.462301587,28.74683826660361 +2019-01-25 14:45:00,25.0,0.453835979,28.748025398894395 +2019-01-25 15:00:00,25.0,0.456613757,28.74921204910548 +2019-01-25 15:15:00,25.0,0.477116402,28.750398217084236 +2019-01-25 15:30:00,25.0,0.508465608,28.7515839026781 +2019-01-25 15:45:00,25.0,0.535846561,28.752769105734558 +2019-01-25 16:00:00,25.0,0.560714286,28.753953826101174 +2019-01-25 16:15:00,25.0,0.586111111,28.755138063625562 +2019-01-25 16:30:00,25.0,0.596428571,28.756321818155406 +2019-01-25 16:45:00,25.0,0.600793651,28.757505089538444 +2019-01-25 17:00:00,25.0,0.606746032,28.75868787762249 +2019-01-25 17:15:00,25.0,0.618518519,28.759870182255398 +2019-01-25 17:30:00,25.0,0.62037037,28.76105200328511 +2019-01-25 17:45:00,25.0,0.623677249,28.762233340559607 +2019-01-25 18:00:00,25.0,0.607936508,28.76341419392695 +2019-01-25 18:15:00,25.0,0.578439153,28.764594563235253 +2019-01-25 18:30:00,25.0,0.571957672,28.765774448332692 +2019-01-25 18:45:00,25.0,0.575,28.76695384906751 +2019-01-25 19:00:00,25.0,0.548544974,28.768132765288005 +2019-01-25 19:15:00,25.0,0.507407407,28.769311196842548 +2019-01-25 19:30:00,25.0,0.489417989,28.770489143579567 +2019-01-25 19:45:00,25.0,0.488359788,28.771666605347544 +2019-01-25 20:00:00,25.0,0.473809524,28.77284358199504 +2019-01-25 20:15:00,25.0,0.471296296,28.774020073370664 +2019-01-25 20:30:00,25.0,0.468915344,28.775196079323095 +2019-01-25 20:45:00,25.0,0.470899471,28.776371599701072 +2019-01-25 21:00:00,25.0,0.448809524,28.777546634353396 +2019-01-25 21:15:00,25.0,0.424338624,28.778721183128933 +2019-01-25 21:30:00,25.0,0.427910053,28.77989524587661 +2019-01-25 21:45:00,25.0,0.437433862,28.781068822445413 +2019-01-25 22:00:00,25.0,0.432804233,28.7822419126844 +2019-01-25 22:15:00,25.0,0.41468254,28.783414516442676 +2019-01-25 22:30:00,25.0,0.442592593,28.784586633569425 +2019-01-25 22:45:00,25.0,0.480820106,28.785758263913888 +2019-01-25 23:00:00,25.0,0.48042328,28.78692940732536 +2019-01-25 23:15:00,25.0,0.469708995,28.788100063653214 +2019-01-25 23:30:00,25.0,0.451851852,28.789270232746873 +2019-01-25 23:45:00,25.0,0.468518519,28.790439914455828 +2019-01-26 00:00:00,25.0,0.477116402,28.79160910862963 +2019-01-26 00:15:00,25.0,0.474470899,28.792777815117898 +2019-01-26 00:30:00,25.0,0.457142857,28.793946033770307 +2019-01-26 00:45:00,25.0,0.427777778,28.7951137644366 +2019-01-26 01:00:00,25.0,0.435714286,28.79628100696658 +2019-01-26 01:15:00,25.0,0.44484127,28.797447761210112 +2019-01-26 01:30:00,25.0,0.447486772,28.79861402701713 +2019-01-26 01:45:00,25.0,0.44047619,28.799779804237623 +2019-01-26 02:00:00,25.0,0.427248677,28.800945092721644 +2019-01-26 02:15:00,25.0,0.41521164,28.802109892319315 +2019-01-26 02:30:00,25.0,0.397486772,28.803274202880814 +2019-01-26 02:45:00,25.0,0.397619048,28.804438024256385 +2019-01-26 03:00:00,25.0,0.385582011,28.80560135629634 +2019-01-26 03:15:00,25.0,0.365873016,28.806764198851038 +2019-01-26 03:30:00,25.0,0.332804233,28.807926551770922 +2019-01-26 03:45:00,25.0,0.310846561,28.80908841490648 +2019-01-26 04:00:00,25.0,0.298941799,28.810249788108273 +2019-01-26 04:15:00,25.0,0.276984127,28.811410671226923 +2019-01-26 04:30:00,25.0,0.264153439,28.81257106411312 +2019-01-26 04:45:00,25.0,0.237698413,28.813730966617598 +2019-01-26 05:00:00,25.0,0.203306878,28.81489037859118 +2019-01-26 05:15:00,25.0,0.191005291,28.816049299884735 +2019-01-26 05:30:00,25.0,0.200529101,28.817207730349196 +2019-01-26 05:45:00,25.0,0.210978836,28.818365669835572 +2019-01-26 06:00:00,25.0,0.217328042,28.819523118194923 +2019-01-26 06:15:00,25.0,0.225661376,28.820680075278368 +2019-01-26 06:30:00,25.0,0.226587302,28.821836540937106 +2019-01-26 06:45:00,25.0,0.232539683,28.822992515022385 +2019-01-26 07:00:00,25.0,0.23042328,28.82414799738552 +2019-01-26 07:15:00,25.0,0.214417989,28.825302987877894 +2019-01-26 07:30:00,25.0,0.191931217,28.826457486350947 +2019-01-26 07:45:00,25.0,0.172486772,28.827611492656185 +2019-01-26 08:00:00,25.0,0.15026455,28.828765006645177 +2019-01-26 08:15:00,25.0,0.121693122,28.829918028169555 +2019-01-26 08:30:00,25.0,0.100793651,28.831070557081016 +2019-01-26 08:45:00,25.0,0.092857143,28.832222593231318 +2019-01-26 09:00:00,25.0,0.091798942,28.833374136472287 +2019-01-26 09:15:00,25.0,0.086772487,28.8345251866558 +2019-01-26 09:30:00,25.0,0.082142857,28.835675743633814 +2019-01-26 09:45:00,25.0,0.078968254,28.836825807258343 +2019-01-26 10:00:00,25.0,0.073941799,28.837975377381454 +2019-01-26 10:15:00,25.0,0.075,28.839124453855298 +2019-01-26 10:30:00,25.0,0.082936508,28.840273036532068 +2019-01-26 10:45:00,25.0,0.098677249,28.841421125264038 +2019-01-26 11:00:00,25.0,0.122751323,28.842568719903532 +2019-01-26 11:15:00,25.0,0.157804233,28.843715820302954 +2019-01-26 11:30:00,25.0,0.193783069,28.844862426314748 +2019-01-26 11:45:00,25.0,0.219708995,28.84600853779144 +2019-01-26 12:00:00,25.0,0.235714286,28.84715415458562 +2019-01-26 12:15:00,25.0,0.244179894,28.84829927654993 +2019-01-26 12:30:00,25.0,0.252116402,28.849443903537086 +2019-01-26 12:45:00,25.0,0.264285714,28.85058803539986 +2019-01-26 13:00:00,25.0,0.271296296,28.85173167199109 +2019-01-26 13:15:00,25.0,0.270767196,28.85287481316368 +2019-01-26 13:30:00,25.0,0.28968254,28.8540174587706 +2019-01-26 13:45:00,25.0,0.307010582,28.855159608664877 +2019-01-26 14:00:00,25.0,0.316798942,28.85630126269961 +2019-01-26 14:15:00,25.0,0.325,28.857442420727946 +2019-01-26 14:30:00,25.0,0.339153439,28.85858308260312 +2019-01-26 14:45:00,25.0,0.358465608,28.859723248178405 +2019-01-26 15:00:00,25.0,0.389153439,28.860862917307156 +2019-01-26 15:15:00,25.0,0.404232804,28.862002089842786 +2019-01-26 15:30:00,25.0,0.409259259,28.863140765638775 +2019-01-26 15:45:00,25.0,0.414417989,28.86427894454866 +2019-01-26 16:00:00,25.0,0.428306878,28.865416626426047 +2019-01-26 16:15:00,25.0,0.467460317,28.866553811124604 +2019-01-26 16:30:00,25.0,0.497619048,28.867690498498064 +2019-01-26 16:45:00,25.0,0.522089947,28.86882668840022 +2019-01-26 17:00:00,25.0,0.514285714,28.869962380684942 +2019-01-26 17:15:00,25.0,0.508201058,28.871097575206147 +2019-01-26 17:30:00,25.0,0.524206349,28.872232271817825 +2019-01-26 17:45:00,25.0,0.523809524,28.87336647037403 +2019-01-26 18:00:00,25.0,0.533333333,28.87450017072888 +2019-01-26 18:15:00,25.0,0.542063492,28.875633372736548 +2019-01-26 18:30:00,25.0,0.542989418,28.87676607625129 +2019-01-26 18:45:00,25.0,0.569179894,28.877898281127408 +2019-01-26 19:00:00,25.0,0.603042328,28.87902998721928 +2019-01-26 19:15:00,25.0,0.623544974,28.880161194381337 +2019-01-26 19:30:00,25.0,0.633068783,28.881291902468085 +2019-01-26 19:45:00,25.0,0.645899471,28.88242211133409 +2019-01-26 20:00:00,25.0,0.656349206,28.88355182083398 +2019-01-26 20:15:00,25.0,0.661243386,28.88468103082245 +2019-01-26 20:30:00,25.0,0.662962963,28.885809741154258 +2019-01-26 20:45:00,25.0,0.656481481,28.886937951684224 +2019-01-26 21:00:00,25.0,0.66005291,28.88806566226724 +2019-01-26 21:15:00,25.0,0.655291005,28.889192872758258 +2019-01-26 21:30:00,25.0,0.656481481,28.890319583012285 +2019-01-26 21:45:00,25.0,0.661640212,28.89144579288441 +2019-01-26 22:00:00,25.0,0.651058201,28.892571502229774 +2019-01-26 22:15:00,25.0,0.64973545,28.893696710903587 +2019-01-26 22:30:00,25.0,0.659656085,28.89482141876112 +2019-01-26 22:45:00,25.0,0.663227513,28.895945625657706 +2019-01-26 23:00:00,25.0,0.662037037,28.897069331448755 +2019-01-26 23:15:00,25.0,0.664153439,28.898192535989732 +2019-01-26 23:30:00,25.0,0.663227513,28.899315239136165 +2019-01-26 23:45:00,25.0,0.663624339,28.900437440743648 +2019-01-27 00:00:00,25.0,0.668386243,28.901559140667846 +2019-01-27 00:15:00,25.0,0.672486772,28.90268033876448 +2019-01-27 00:30:00,25.0,0.675396825,28.90380103488934 +2019-01-27 00:45:00,25.0,0.678174603,28.904921228898278 +2019-01-27 01:00:00,25.0,0.678835979,28.906040920647214 +2019-01-27 01:15:00,25.0,0.686243386,28.90716010999213 +2019-01-27 01:30:00,25.0,0.694444444,28.908278796789073 +2019-01-27 01:45:00,25.0,0.696957672,28.909396980894154 +2019-01-27 02:00:00,25.0,0.70026455,28.91051466216355 +2019-01-27 02:15:00,25.0,0.705952381,28.911631840453502 +2019-01-27 02:30:00,25.0,0.716269841,28.912748515620322 +2019-01-27 02:45:00,25.0,0.725396825,28.91386468752037 +2019-01-27 03:00:00,25.0,0.726851852,28.914980356010087 +2019-01-27 03:15:00,25.0,0.725529101,28.916095520945976 +2019-01-27 03:30:00,25.0,0.732142857,28.917210182184597 +2019-01-27 03:45:00,25.0,0.732275132,28.918324339582583 +2019-01-27 04:00:00,25.0,0.730291005,28.919437992996624 +2019-01-27 04:15:00,25.0,0.727910053,28.920551142283482 +2019-01-27 04:30:00,25.0,0.719708995,28.921663787299984 +2019-01-27 04:45:00,25.0,0.702513228,28.922775927903015 +2019-01-27 05:00:00,25.0,0.694973545,28.92388756394953 +2019-01-27 05:15:00,25.0,0.687037037,28.92499869529655 +2019-01-27 05:30:00,25.0,0.67526455,28.926109321801157 +2019-01-27 05:45:00,25.0,0.658333333,28.9272194433205 +2019-01-27 06:00:00,25.0,0.630952381,28.92832905971179 +2019-01-27 06:15:00,25.0,0.601190476,28.929438170832306 +2019-01-27 06:30:00,25.0,0.57473545,28.930546776539398 +2019-01-27 06:45:00,25.0,0.562962963,28.931654876690466 +2019-01-27 07:00:00,25.0,0.564814815,28.93276247114299 +2019-01-27 07:15:00,25.0,0.577513228,28.933869559754505 +2019-01-27 07:30:00,25.0,0.56005291,28.934976142382617 +2019-01-27 07:45:00,25.0,0.533201058,28.93608221888499 +2019-01-27 08:00:00,25.0,0.512566138,28.937187789119363 +2019-01-27 08:15:00,25.0,0.48994709,28.938292852943537 +2019-01-27 08:30:00,25.0,0.49484127,28.939397410215367 +2019-01-27 08:45:00,25.0,0.51005291,28.94050146079279 +2019-01-27 09:00:00,25.0,0.511375661,28.941605004533802 +2019-01-27 09:15:00,25.0,0.504761905,28.942708041296456 +2019-01-27 09:30:00,25.0,0.498677249,28.94381057093888 +2019-01-27 09:45:00,25.0,0.484391534,28.944912593319263 +2019-01-27 10:00:00,25.0,0.48478836,28.946014108295863 +2019-01-27 10:15:00,25.0,0.474206349,28.947115115726998 +2019-01-27 10:30:00,25.0,0.452116402,28.948215615471053 +2019-01-27 10:45:00,25.0,0.436904762,28.94931560738648 +2019-01-27 11:00:00,25.0,0.427777778,28.950415091331802 +2019-01-27 11:15:00,25.0,0.430291005,28.95151406716559 +2019-01-27 11:30:00,25.0,0.432936508,28.9526125347465 +2019-01-27 11:45:00,25.0,0.425396825,28.95371049393324 +2019-01-27 12:00:00,25.0,0.409259259,28.954807944584587 +2019-01-27 12:15:00,25.0,0.406613757,28.955904886559388 +2019-01-27 12:30:00,25.0,0.425396825,28.95700131971655 +2019-01-27 12:45:00,25.0,0.42526455,28.95809724391505 +2019-01-27 13:00:00,25.0,0.383597884,28.95919265901392 +2019-01-27 13:15:00,25.0,0.363492063,28.96028756487227 +2019-01-27 13:30:00,25.0,0.336904762,28.961381961349275 +2019-01-27 13:45:00,25.0,0.33505291,28.962475848304166 +2019-01-27 14:00:00,25.0,0.316137566,28.963569225596245 +2019-01-27 14:15:00,25.0,0.284259259,28.96466209308488 +2019-01-27 14:30:00,25.0,0.288227513,28.965754450629504 +2019-01-27 14:45:00,25.0,0.279761905,28.966846298089614 +2019-01-27 15:00:00,25.0,0.266666667,28.967937635324777 +2019-01-27 15:15:00,25.0,0.265608466,28.96902846219462 +2019-01-27 15:30:00,25.0,0.247619048,28.97011877855884 +2019-01-27 15:45:00,25.0,0.256216931,28.971208584277196 +2019-01-27 16:00:00,25.0,0.263227513,28.97229787920952 +2019-01-27 16:15:00,25.0,0.259391534,28.973386663215695 +2019-01-27 16:30:00,25.0,0.264021164,28.974474936155687 +2019-01-27 16:45:00,25.0,0.250661376,28.97556269788952 +2019-01-27 17:00:00,25.0,0.258994709,28.976649948277277 +2019-01-27 17:15:00,25.0,0.254100529,28.97773668717912 +2019-01-27 17:30:00,25.0,0.255026455,28.978822914455264 +2019-01-27 17:45:00,25.0,0.242857143,28.979908629966005 +2019-01-27 18:00:00,25.0,0.249074074,28.980993833571684 +2019-01-27 18:15:00,25.0,0.263492063,28.982078525132728 +2019-01-27 18:30:00,25.0,0.258201058,28.98316270450962 +2019-01-27 18:45:00,25.0,0.279365079,28.98424637156291 +2019-01-27 19:00:00,25.0,0.304100529,28.985329526153212 +2019-01-27 19:15:00,25.0,0.29537037,28.98641216814121 +2019-01-27 19:30:00,25.0,0.294444444,28.987494297387652 +2019-01-27 19:45:00,25.0,0.306084656,28.98857591375335 +2019-01-27 20:00:00,25.0,0.299074074,28.98965701709919 +2019-01-27 20:15:00,25.0,0.306481481,28.990737607286114 +2019-01-27 20:30:00,25.0,0.313492063,28.991817684175132 +2019-01-27 20:45:00,25.0,0.308201058,28.992897247627322 +2019-01-27 21:00:00,25.0,0.319179894,28.99397629750383 +2019-01-27 21:15:00,25.0,0.325529101,28.99505483366587 +2019-01-27 21:30:00,25.0,0.310449735,28.99613285597471 +2019-01-27 21:45:00,25.0,0.297089947,28.9972103642917 +2019-01-27 22:00:00,25.0,0.299074074,28.998287358478244 +2019-01-27 22:15:00,25.0,0.291402116,28.99936383839582 +2019-01-27 22:30:00,25.0,0.288095238,29.000439803905962 +2019-01-27 22:45:00,25.0,0.296693122,29.00151525487028 +2019-01-27 23:00:00,25.0,0.294708995,29.002590191150453 +2019-01-27 23:15:00,25.0,0.283597884,29.003664612608212 +2019-01-27 23:30:00,25.0,0.27526455,29.004738519105366 +2019-01-27 23:45:00,25.0,0.254761905,29.005811910503787 +2019-01-28 00:00:00,25.0,0.21031746,29.00688478666541 +2019-01-28 00:15:00,25.0,0.176587302,29.007957147452245 +2019-01-28 00:30:00,25.0,0.16005291,29.009028992726357 +2019-01-28 00:45:00,25.0,0.150925926,29.010100322349885 +2019-01-28 01:00:00,25.0,0.132804233,29.01117113618503 +2019-01-28 01:15:00,25.0,0.125793651,29.012241434094065 +2019-01-28 01:30:00,25.0,0.120238095,29.01331121593932 +2019-01-28 01:45:00,25.0,0.112037037,29.014380481583206 +2019-01-28 02:00:00,25.0,0.108465608,29.015449230888187 +2019-01-28 02:15:00,25.0,0.097751323,29.016517463716795 +2019-01-28 02:30:00,25.0,0.09021164,29.017585179931636 +2019-01-28 02:45:00,25.0,0.086111111,29.018652379395373 +2019-01-28 03:00:00,25.0,0.082804233,29.019719061970747 +2019-01-28 03:15:00,25.0,0.075132275,29.020785227520552 +2019-01-28 03:30:00,25.0,0.074206349,29.02185087590766 +2019-01-28 03:45:00,25.0,0.073148148,29.022916006995004 +2019-01-28 04:00:00,25.0,0.064417989,29.023980620645585 +2019-01-28 04:15:00,25.0,0.059126984,29.025044716722466 +2019-01-28 04:30:00,25.0,0.057407407,29.026108295088783 +2019-01-28 04:45:00,25.0,0.068253968,29.027171355607738 +2019-01-28 05:00:00,25.0,0.068518519,29.028233898142595 +2019-01-28 05:15:00,25.0,0.101190476,29.02929592255669 +2019-01-28 05:30:00,25.0,0.140079365,29.03035742871342 +2019-01-28 05:45:00,25.0,0.171296296,29.03141841647625 +2019-01-28 06:00:00,25.0,0.201455026,29.03247888570872 +2019-01-28 06:15:00,25.0,0.215873016,29.033538836274424 +2019-01-28 06:30:00,25.0,0.22037037,29.03459826803703 +2019-01-28 06:45:00,25.0,0.222883598,29.035657180860277 +2019-01-28 07:00:00,25.0,0.242989418,29.036715574607953 +2019-01-28 07:15:00,25.0,0.271957672,29.037773449143938 +2019-01-28 07:30:00,25.0,0.284920635,29.03883080433216 +2019-01-28 07:45:00,25.0,0.288492063,29.039887640036618 +2019-01-28 08:00:00,25.0,0.296031746,29.04094395612138 +2019-01-28 08:15:00,25.0,0.327777778,29.041999752450586 +2019-01-28 08:30:00,25.0,0.384259259,29.043055028888425 +2019-01-28 08:45:00,25.0,0.443386243,29.044109785299177 +2019-01-28 09:00:00,25.0,0.472089947,29.045164021547173 +2019-01-28 09:15:00,25.0,0.523941799,29.04621773749681 +2019-01-28 09:30:00,25.0,0.562566138,29.047270933012562 +2019-01-28 09:45:00,25.0,0.598015873,29.048323607958963 +2019-01-28 10:00:00,25.0,0.62526455,29.049375762200615 +2019-01-28 10:15:00,25.0,0.640740741,29.05042739560219 +2019-01-28 10:30:00,25.0,0.641798942,29.051478508028417 +2019-01-28 10:45:00,25.0,0.643915344,29.052529099344106 +2019-01-28 11:00:00,25.0,0.647619048,29.053579169414128 +2019-01-28 11:15:00,25.0,0.646825397,29.05462871810342 +2019-01-28 11:30:00,25.0,0.650925926,29.055677745276984 +2019-01-28 11:45:00,25.0,0.653571429,29.056726250799894 +2019-01-28 12:00:00,25.0,0.649206349,29.057774234537288 +2019-01-28 12:15:00,25.0,0.646825397,29.05882169635437 +2019-01-28 12:30:00,25.0,0.642989418,29.059868636116416 +2019-01-28 12:45:00,25.0,0.647486772,29.060915053688767 +2019-01-28 13:00:00,25.0,0.648412698,29.061960948936825 +2019-01-28 13:15:00,25.0,0.647486772,29.06300632172607 +2019-01-28 13:30:00,25.0,0.651587302,29.06405117192204 +2019-01-28 13:45:00,25.0,0.650132275,29.065095499390345 +2019-01-28 14:00:00,25.0,0.611375661,29.066139303996664 +2019-01-28 14:15:00,25.0,0.611111111,29.06718258560674 +2019-01-28 14:30:00,25.0,0.610185185,29.06822534408638 +2019-01-28 14:45:00,25.0,0.602645503,29.069267579301464 +2019-01-28 15:00:00,25.0,0.599603175,29.070309291117937 +2019-01-28 15:15:00,25.0,0.593121693,29.07135047940181 +2019-01-28 15:30:00,25.0,0.58452381,29.072391144019168 +2019-01-28 15:45:00,25.0,0.585582011,29.073431284836154 +2019-01-28 16:00:00,25.0,0.602513228,29.074470901718982 +2019-01-28 16:15:00,25.0,0.598148148,29.075509994533938 +2019-01-28 16:30:00,25.0,0.584920635,29.07654856314737 +2019-01-28 16:45:00,25.0,0.59021164,29.077586607425694 +2019-01-28 17:00:00,25.0,0.587301587,29.078624127235393 +2019-01-28 17:15:00,25.0,0.59484127,29.07966112244302 +2019-01-28 17:30:00,25.0,0.55462963,29.080697592915197 +2019-01-28 17:45:00,25.0,0.539285714,29.081733538518606 +2019-01-28 18:00:00,25.0,0.565873016,29.082768959120003 +2019-01-28 18:15:00,25.0,0.573148148,29.083803854586215 +2019-01-28 18:30:00,25.0,0.545502646,29.08483822478412 +2019-01-28 18:45:00,25.0,0.557804233,29.085872069580688 +2019-01-28 19:00:00,25.0,0.548941799,29.086905388842936 +2019-01-28 19:15:00,25.0,0.539550265,29.08793818243796 +2019-01-28 19:30:00,25.0,0.578968254,29.088970450232914 +2019-01-28 19:45:00,25.0,0.579232804,29.090002192095028 +2019-01-28 20:00:00,25.0,0.592063492,29.091033407891594 +2019-01-28 20:15:00,25.0,0.556084656,29.09206409748998 +2019-01-28 20:30:00,25.0,0.496825397,29.093094260757617 +2019-01-28 20:45:00,25.0,0.473280423,29.094123897562 +2019-01-28 21:00:00,25.0,0.502777778,29.095153007770698 +2019-01-28 21:15:00,25.0,0.494047619,29.096181591251337 +2019-01-28 21:30:00,25.0,0.451322751,29.097209647871622 +2019-01-28 21:45:00,25.0,0.449074074,29.098237177499325 +2019-01-28 22:00:00,25.0,0.426851852,29.09926418000228 +2019-01-28 22:15:00,25.0,0.430555556,29.100290655248394 +2019-01-28 22:30:00,25.0,0.424603175,29.101316603105634 +2019-01-28 22:45:00,25.0,0.398544974,29.102342023442045 +2019-01-28 23:00:00,25.0,0.397751323,29.103366916125733 +2019-01-28 23:15:00,25.0,0.394973545,29.104391281024874 +2019-01-28 23:30:00,25.0,0.450793651,29.105415118007716 +2019-01-28 23:45:00,25.0,0.438888889,29.106438426942567 +2019-01-29 00:00:00,25.0,0.417195767,29.107461207697803 +2019-01-29 00:15:00,25.0,0.406216931,29.108483460141876 +2019-01-29 00:30:00,25.0,0.356613757,29.109505184143302 +2019-01-29 00:45:00,25.0,0.331349206,29.110526379570665 +2019-01-29 01:00:00,25.0,0.332010582,29.111547046292614 +2019-01-29 01:15:00,25.0,0.372354497,29.11256718417787 +2019-01-29 01:30:00,25.0,0.401058201,29.113586793095216 +2019-01-29 01:45:00,25.0,0.445238095,29.114605872913515 +2019-01-29 02:00:00,25.0,0.392328042,29.115624423501686 +2019-01-29 02:15:00,25.0,0.371693122,29.116642444728726 +2019-01-29 02:30:00,25.0,0.372486772,29.117659936463685 +2019-01-29 02:45:00,25.0,0.387566138,29.118676898575696 +2019-01-29 03:00:00,25.0,0.394312169,29.11969333093396 +2019-01-29 03:15:00,25.0,0.417328042,29.12070923340773 +2019-01-29 03:30:00,25.0,0.409920635,29.121724605866348 +2019-01-29 03:45:00,25.0,0.34537037,29.122739448179214 +2019-01-29 04:00:00,25.0,0.293518519,29.12375376021579 +2019-01-29 04:15:00,25.0,0.302116402,29.124767541845618 +2019-01-29 04:30:00,25.0,0.323280423,29.1257807929383 +2019-01-29 04:45:00,25.0,0.421164021,29.126793513363513 +2019-01-29 05:00:00,25.0,0.427777778,29.127805702990997 +2019-01-29 05:15:00,25.0,0.409920635,29.128817361690558 +2019-01-29 05:30:00,25.0,0.338227513,29.12982848933208 +2019-01-29 05:45:00,25.0,0.307936508,29.130839085785507 +2019-01-29 06:00:00,25.0,0.333201058,29.131849150920853 +2019-01-29 06:15:00,25.0,0.348941799,29.132858684608202 +2019-01-29 06:30:00,25.0,0.33015873,29.133867686717707 +2019-01-29 06:45:00,25.0,0.317195767,29.13487615711958 +2019-01-29 07:00:00,25.0,0.327777778,29.13588409568412 +2019-01-29 07:15:00,25.0,0.365873016,29.136891502281678 +2019-01-29 07:30:00,25.0,0.37526455,29.13789837678268 +2019-01-29 07:45:00,25.0,0.36521164,29.13890471905762 +2019-01-29 08:00:00,25.0,0.398809524,29.139910528977058 +2019-01-29 08:15:00,25.0,0.402380952,29.140915806411627 +2019-01-29 08:30:00,25.0,0.408068783,29.141920551232023 +2019-01-29 08:45:00,25.0,0.437566138,29.142924763309015 +2019-01-29 09:00:00,25.0,0.462037037,29.143928442513438 +2019-01-29 09:15:00,25.0,0.469973545,29.144931588716197 +2019-01-29 09:30:00,25.0,0.48015873,29.14593420178827 +2019-01-29 09:45:00,25.0,0.500132275,29.146936281600688 +2019-01-29 10:00:00,25.0,0.502910053,29.14793782802457 +2019-01-29 10:15:00,25.0,0.525396825,29.14893884093109 +2019-01-29 10:30:00,25.0,0.53452381,29.1499393201915 +2019-01-29 10:45:00,25.0,0.564153439,29.150939265677113 +2019-01-29 11:00:00,25.0,0.579232804,29.151938677259313 +2019-01-29 11:15:00,25.0,0.573809524,29.152937554809554 +2019-01-29 11:30:00,25.0,0.577910053,29.153935898199357 +2019-01-29 11:45:00,25.0,0.587566138,29.154933707300316 +2019-01-29 12:00:00,25.0,0.563624339,29.155930981984092 +2019-01-29 12:15:00,25.0,0.534391534,29.156927722122404 +2019-01-29 12:30:00,25.0,0.526190476,29.157923927587056 +2019-01-29 12:45:00,25.0,0.508465608,29.158919598249916 +2019-01-29 13:00:00,25.0,0.497619048,29.159914733982912 +2019-01-29 13:15:00,25.0,0.493650794,29.16090933465805 +2019-01-29 13:30:00,25.0,0.494444444,29.161903400147406 +2019-01-29 13:45:00,25.0,0.500661376,29.162896930323114 +2019-01-29 14:00:00,25.0,0.488888889,29.16388992505739 +2019-01-29 14:15:00,25.0,0.462433862,29.164882384222512 +2019-01-29 14:30:00,25.0,0.480555556,29.165874307690824 +2019-01-29 14:45:00,25.0,0.538492063,29.166865695334742 +2019-01-29 15:00:00,25.0,0.522486772,29.16785654702676 +2019-01-29 15:15:00,25.0,0.490608466,29.16884686263942 +2019-01-29 15:30:00,25.0,0.463888889,29.16983664204535 +2019-01-29 15:45:00,25.0,0.472354497,29.170825885117246 +2019-01-29 16:00:00,25.0,0.49510582,29.17181459172787 +2019-01-29 16:15:00,25.0,0.50026455,29.17280276175005 +2019-01-29 16:30:00,25.0,0.492063492,29.173790395056677 +2019-01-29 16:45:00,25.0,0.501587302,29.174777491520732 +2019-01-29 17:00:00,25.0,0.513359788,29.175764051015246 +2019-01-29 17:15:00,25.0,0.528042328,29.176750073413327 +2019-01-29 17:30:00,25.0,0.537037037,29.177735558588154 +2019-01-29 17:45:00,25.0,0.538756614,29.17872050641296 +2019-01-29 18:00:00,25.0,0.541798942,29.17970491676107 +2019-01-29 18:15:00,25.0,0.531878307,29.180688789505865 +2019-01-29 18:30:00,25.0,0.517195767,29.181672124520794 +2019-01-29 18:45:00,25.0,0.53042328,29.182654921679383 +2019-01-29 19:00:00,25.0,0.556216931,29.183637180855214 +2019-01-29 19:15:00,25.0,0.573941799,29.184618901921958 +2019-01-29 19:30:00,25.0,0.581746032,29.185600084753332 +2019-01-29 19:45:00,25.0,0.577116402,29.186580729223138 +2019-01-29 20:00:00,25.0,0.572089947,29.187560835205247 +2019-01-29 20:15:00,25.0,0.559391534,29.188540402573594 +2019-01-29 20:30:00,25.0,0.541798942,29.189519431202182 +2019-01-29 20:45:00,25.0,0.523280423,29.190497920965086 +2019-01-29 21:00:00,25.0,0.498941799,29.191475871736454 +2019-01-29 21:15:00,25.0,0.48478836,29.1924532833905 +2019-01-29 21:30:00,25.0,0.477777778,29.1934301558015 +2019-01-29 21:45:00,25.0,0.46521164,29.194406488843818 +2019-01-29 22:00:00,25.0,0.451851852,29.195382282391865 +2019-01-29 22:15:00,25.0,0.450925926,29.196357536320136 +2019-01-29 22:30:00,25.0,0.445502646,29.197332250503194 +2019-01-29 22:45:00,25.0,0.44457672,29.198306424815666 +2019-01-29 23:00:00,25.0,0.46521164,29.199280059132256 +2019-01-29 23:15:00,25.0,0.479761905,29.200253153327722 +2019-01-29 23:30:00,25.0,0.463492063,29.201225707276915 +2019-01-29 23:45:00,25.0,0.446031746,29.202197720854734 +2019-01-30 00:00:00,25.0,0.433201058,29.203169193936162 +2019-01-30 00:15:00,25.0,0.41005291,29.204140126396247 +2019-01-30 00:30:00,25.0,0.388227513,29.205110518110097 +2019-01-30 00:45:00,25.0,0.375793651,29.206080368952904 +2019-01-30 01:00:00,25.0,0.367592593,29.207049678799926 +2019-01-30 01:15:00,25.0,0.362698413,29.20801844752648 +2019-01-30 01:30:00,25.0,0.350529101,29.20898667500797 +2019-01-30 01:45:00,25.0,0.351190476,29.209954361119856 +2019-01-30 02:00:00,25.0,0.350396825,29.210921505737666 +2019-01-30 02:15:00,25.0,0.345899471,29.211888108737014 +2019-01-30 02:30:00,25.0,0.334656085,29.21285416999357 +2019-01-30 02:45:00,25.0,0.337037037,29.213819689383072 +2019-01-30 03:00:00,25.0,0.342460317,29.21478466678134 +2019-01-30 03:15:00,25.0,0.357407407,29.21574910206425 +2019-01-30 03:30:00,25.0,0.372619048,29.21671299510776 +2019-01-30 03:45:00,25.0,0.377116402,29.217676345787886 +2019-01-30 04:00:00,25.0,0.372619048,29.218639153980725 +2019-01-30 04:15:00,25.0,0.377380952,29.21960141956243 +2019-01-30 04:30:00,25.0,0.390343915,29.220563142409244 +2019-01-30 04:45:00,25.0,0.388888889,29.221524322397457 +2019-01-30 05:00:00,25.0,0.386904762,29.22248495940345 +2019-01-30 05:15:00,25.0,0.386375661,29.223445053303656 +2019-01-30 05:30:00,25.0,0.383862434,29.224404603974584 +2019-01-30 05:45:00,25.0,0.37473545,29.225363611292824 +2019-01-30 06:00:00,25.0,0.364285714,29.226322075135016 +2019-01-30 06:15:00,25.0,0.371296296,29.227279995377888 +2019-01-30 06:30:00,25.0,0.385978836,29.228237371898224 +2019-01-30 06:45:00,25.0,0.390343915,29.22919420457289 +2019-01-30 07:00:00,25.0,0.391798942,29.23015049327881 +2019-01-30 07:15:00,25.0,0.402380952,29.231106237892988 +2019-01-30 07:30:00,25.0,0.433994709,29.232061438292494 +2019-01-30 07:45:00,25.0,0.446031746,29.23301609435446 +2019-01-30 08:00:00,25.0,0.43531746,29.23397020595611 +2019-01-30 08:15:00,25.0,0.438888889,29.234923772974714 +2019-01-30 08:30:00,25.0,0.448412698,29.235876795287624 +2019-01-30 08:45:00,25.0,0.45542328,29.23682927277226 +2019-01-30 09:00:00,25.0,0.443915344,29.23778120530611 +2019-01-30 09:15:00,25.0,0.430026455,29.23873259276674 +2019-01-30 09:30:00,25.0,0.433333333,29.23968343503178 +2019-01-30 09:45:00,25.0,0.44510582,29.24063373197892 +2019-01-30 10:00:00,25.0,0.463359788,29.241583483485943 +2019-01-30 10:15:00,25.0,0.472486772,29.242532689430682 +2019-01-30 10:30:00,25.0,0.474470899,29.243481349691056 +2019-01-30 10:45:00,25.0,0.474074074,29.24442946414504 +2019-01-30 11:00:00,25.0,0.473148148,29.24537703267068 +2019-01-30 11:15:00,25.0,0.476719577,29.24632405514611 +2019-01-30 11:30:00,25.0,0.479761905,29.247270531449516 +2019-01-30 11:45:00,25.0,0.478439153,29.248216461459158 +2019-01-30 12:00:00,25.0,0.483597884,29.24916184505337 +2019-01-30 12:15:00,25.0,0.496031746,29.250106682110555 +2019-01-30 12:30:00,25.0,0.504497354,29.251050972509184 +2019-01-30 12:45:00,25.0,0.502645503,29.251994716127804 +2019-01-30 13:00:00,25.0,0.497883598,29.252937912845024 +2019-01-30 13:15:00,25.0,0.494444444,29.25388056253953 +2019-01-30 13:30:00,25.0,0.485846561,29.254822665090074 +2019-01-30 13:45:00,25.0,0.473677249,29.25576422037549 +2019-01-30 14:00:00,25.0,0.471164021,29.25670522827466 +2019-01-30 14:15:00,25.0,0.46957672,29.257645688666557 +2019-01-30 14:30:00,25.0,0.460978836,29.258585601430212 +2019-01-30 14:45:00,25.0,0.446164021,29.259524966444737 +2019-01-30 15:00:00,25.0,0.442328042,29.26046378358931 +2019-01-30 15:15:00,25.0,0.438492063,29.26140205274317 +2019-01-30 15:30:00,25.0,0.433333333,29.262339773785637 +2019-01-30 15:45:00,25.0,0.42989418,29.2632769465961 +2019-01-30 16:00:00,25.0,0.427910053,29.26421357105402 +2019-01-30 16:15:00,25.0,0.43478836,29.26514964703893 +2019-01-30 16:30:00,25.0,0.439285714,29.26608517443042 +2019-01-30 16:45:00,25.0,0.446031746,29.267020153108163 +2019-01-30 17:00:00,25.0,0.458465608,29.267954582951905 +2019-01-30 17:15:00,25.0,0.455291005,29.268888463841453 +2019-01-30 17:30:00,25.0,0.457407407,29.26982179565669 +2019-01-30 17:45:00,25.0,0.465608466,29.270754578277568 +2019-01-30 18:00:00,25.0,0.466137566,29.271686811584114 +2019-01-30 18:15:00,25.0,0.467857143,29.27261849545642 +2019-01-30 18:30:00,25.0,0.464021164,29.273549629774646 +2019-01-30 18:45:00,25.0,0.463227513,29.274480214419032 +2019-01-30 19:00:00,25.0,0.458068783,29.275410249269886 +2019-01-30 19:15:00,25.0,0.44457672,29.276339734207582 +2019-01-30 19:30:00,25.0,0.436111111,29.277268669112566 +2019-01-30 19:45:00,25.0,0.433068783,29.278197053865355 +2019-01-30 20:00:00,25.0,0.425396825,29.279124888346544 +2019-01-30 20:15:00,25.0,0.407539683,29.28005217243679 +2019-01-30 20:30:00,25.0,0.38452381,29.280978906016824 +2019-01-30 20:45:00,25.0,0.367063492,29.28190508896744 +2019-01-30 21:00:00,25.0,0.354232804,29.282830721169525 +2019-01-30 21:15:00,25.0,0.35515873,29.28375580250401 +2019-01-30 21:30:00,25.0,0.346164021,29.284680332851913 +2019-01-30 21:45:00,25.0,0.341798942,29.28560431209432 +2019-01-30 22:00:00,25.0,0.33968254,29.286527740112383 +2019-01-30 22:15:00,25.0,0.342857143,29.287450616787332 +2019-01-30 22:30:00,25.0,0.342460317,29.288372942000464 +2019-01-30 22:45:00,25.0,0.348544974,29.289294715633147 +2019-01-30 23:00:00,25.0,0.352513228,29.290215937566817 +2019-01-30 23:15:00,25.0,0.351058201,29.29113660768299 +2019-01-30 23:30:00,25.0,0.347089947,29.29205672586324 +2019-01-30 23:45:00,25.0,0.345502646,29.29297629198923 +2019-01-31 00:00:00,25.0,0.342724868,29.293895305942673 +2019-01-31 00:15:00,25.0,0.33968254,29.29481376760537 +2019-01-31 00:30:00,25.0,0.334391534,29.29573167685918 +2019-01-31 00:45:00,25.0,0.327910053,29.296649033586046 +2019-01-31 01:00:00,25.0,0.316137566,29.29756583766797 +2019-01-31 01:15:00,25.0,0.306349206,29.298482088987036 +2019-01-31 01:30:00,25.0,0.299338624,29.29939778742539 +2019-01-31 01:45:00,25.0,0.29457672,29.300312932865253 +2019-01-31 02:00:00,25.0,0.287566138,29.301227525188917 +2019-01-31 02:15:00,25.0,0.283730159,29.302141564278745 +2019-01-31 02:30:00,25.0,0.28452381,29.30305505001717 +2019-01-31 02:45:00,25.0,0.281481481,29.303967982286704 +2019-01-31 03:00:00,25.0,0.277116402,29.304880360969914 +2019-01-31 03:15:00,25.0,0.278306878,29.305792185949453 +2019-01-31 03:30:00,25.0,0.275925926,29.30670345710804 +2019-01-31 03:45:00,25.0,0.277116402,29.307614174328464 +2019-01-31 04:00:00,25.0,0.277645503,29.308524337493587 +2019-01-31 04:15:00,25.0,0.279365079,29.30943394648634 +2019-01-31 04:30:00,25.0,0.28478836,29.31034300118973 +2019-01-31 04:45:00,25.0,0.286111111,29.31125150148683 +2019-01-31 05:00:00,25.0,0.296693122,29.31215944726079 +2019-01-31 05:15:00,25.0,0.306216931,29.31306683839482 +2019-01-31 05:30:00,25.0,0.307407407,29.313973674772217 +2019-01-31 05:45:00,25.0,0.306613757,29.314879956276343 +2019-01-31 06:00:00,25.0,0.310185185,29.31578568279062 +2019-01-31 06:15:00,25.0,0.311375661,29.316690854198562 +2019-01-31 06:30:00,25.0,0.309259259,29.317595470383736 +2019-01-31 06:45:00,25.0,0.308465608,29.31849953122979 +2019-01-31 07:00:00,25.0,0.304497354,29.319403036620447 +2019-01-31 07:15:00,25.0,0.304365079,29.32030598643949 +2019-01-31 07:30:00,25.0,0.314550265,29.32120838057078 +2019-01-31 07:45:00,25.0,0.316005291,29.322110218898253 +2019-01-31 08:00:00,25.0,0.308068783,29.323011501305913 +2019-01-31 08:15:00,25.0,0.311640212,29.323912227677827 +2019-01-31 08:30:00,25.0,0.327116402,29.324812397898146 +2019-01-31 08:45:00,25.0,0.335185185,29.325712011851092 +2019-01-31 09:00:00,25.0,0.36468254,29.32661106942095 +2019-01-31 09:15:00,25.0,0.394312169,29.32750957049208 +2019-01-31 09:30:00,25.0,0.428042328,29.328407514948918 +2019-01-31 09:45:00,25.0,0.448941799,29.32930490267597 +2019-01-31 10:00:00,25.0,0.457275132,29.330201733557804 +2019-01-31 10:15:00,25.0,0.460978836,29.331098007479074 +2019-01-31 10:30:00,25.0,0.468121693,29.331993724324498 +2019-01-31 10:45:00,25.0,0.483068783,29.332888883978868 +2019-01-31 11:00:00,25.0,0.48042328,29.333783486327047 +2019-01-31 11:15:00,25.0,0.474867725,29.334677531253963 +2019-01-31 11:30:00,25.0,0.452513228,29.33557101864463 +2019-01-31 11:45:00,25.0,0.431084656,29.336463948384118 +2019-01-31 12:00:00,25.0,0.43015873,29.337356320357582 +2019-01-31 12:15:00,25.0,0.443915344,29.338248134450243 +2019-01-31 12:30:00,25.0,0.470767196,29.339139390547388 +2019-01-31 12:45:00,25.0,0.486243386,29.340030088534387 +2019-01-31 13:00:00,25.0,0.448809524,29.340920228296678 +2019-01-31 13:15:00,25.0,0.476455026,29.341809809719763 +2019-01-31 13:30:00,25.0,0.465873016,29.342698832689223 +2019-01-31 13:45:00,25.0,0.450396825,29.343587297090714 +2019-01-31 14:00:00,25.0,0.437566138,29.34447520280996 +2019-01-31 14:15:00,25.0,0.421164021,29.34536254973275 +2019-01-31 14:30:00,25.0,0.392195767,29.346249337744958 +2019-01-31 14:45:00,25.0,0.390873016,29.34713556673252 +2019-01-31 15:00:00,25.0,0.394047619,29.348021236581445 +2019-01-31 15:15:00,25.0,0.368121693,29.348906347177824 +2019-01-31 15:30:00,25.0,0.352116402,29.349790898407804 +2019-01-31 15:45:00,25.0,0.334126984,29.350674890157617 +2019-01-31 16:00:00,25.0,0.305952381,29.351558322313558 +2019-01-31 16:15:00,25.0,0.316931217,29.352441194761997 +2019-01-31 16:30:00,25.0,0.322089947,29.353323507389383 +2019-01-31 16:45:00,25.0,0.293783069,29.354205260082228 +2019-01-31 17:00:00,25.0,0.302777778,29.355086452727118 +2019-01-31 17:15:00,25.0,0.315079365,29.355967085210715 +2019-01-31 17:30:00,25.0,0.295238095,29.356847157419743 +2019-01-31 17:45:00,25.0,0.273941799,29.35772666924101 +2019-01-31 18:00:00,25.0,0.251058201,29.35860562056139 +2019-01-31 18:15:00,25.0,0.237698413,29.359484011267835 +2019-01-31 18:30:00,25.0,0.241269841,29.360361841247357 +2019-01-31 18:45:00,25.0,0.261243386,29.361239110387054 +2019-01-31 19:00:00,25.0,0.269973545,29.362115818574082 +2019-01-31 19:15:00,25.0,0.273412698,29.362991965695684 +2019-01-31 19:30:00,25.0,0.278042328,29.363867551639167 +2019-01-31 19:45:00,25.0,0.291269841,29.364742576291906 +2019-01-31 20:00:00,25.0,0.302116402,29.365617039541355 +2019-01-31 20:15:00,25.0,0.31468254,29.366490941275046 +2019-01-31 20:30:00,25.0,0.311772487,29.367364281380564 +2019-01-31 20:45:00,25.0,0.320634921,29.36823705974559 +2019-01-31 21:00:00,25.0,0.317063492,29.369109276257852 +2019-01-31 21:15:00,25.0,0.326058201,29.369980930805173 +2019-01-31 21:30:00,25.0,0.329761905,29.370852023275436 +2019-01-31 21:45:00,25.0,0.315740741,29.3717225535566 +2019-01-31 22:00:00,25.0,0.32037037,29.372592521536696 +2019-01-31 22:15:00,25.0,0.341137566,29.373461927103826 +2019-01-31 22:30:00,25.0,0.360714286,29.37433077014616 +2019-01-31 22:45:00,25.0,0.382010582,29.375199050551952 +2019-01-31 23:00:00,25.0,0.401719577,29.37606676820952 +2019-01-31 23:15:00,25.0,0.426322751,29.376933923007257 +2019-01-31 23:30:00,25.0,0.433201058,29.377800514833623 +2019-01-31 23:45:00,25.0,0.43015873,29.37866654357716 +2019-02-01 00:00:00,25.0,0.434920635,29.37953200912648 +2019-02-01 00:15:00,25.0,0.442328042,29.380396911370255 +2019-02-01 00:30:00,25.0,0.438492063,29.381261250197245 +2019-02-01 00:45:00,25.0,0.434920635,29.382125025496276 +2019-02-01 01:00:00,25.0,0.427116402,29.38298823715625 +2019-02-01 01:15:00,25.0,0.443386243,29.383850885066135 +2019-02-01 01:30:00,25.0,0.478835979,29.38471296911498 +2019-02-01 01:45:00,25.0,0.507804233,29.385574489191896 +2019-02-01 02:00:00,25.0,0.544708995,29.386435445186073 +2019-02-01 02:15:00,25.0,0.575925926,29.387295836986773 +2019-02-01 02:30:00,25.0,0.58452381,29.388155664483335 +2019-02-01 02:45:00,25.0,0.582936508,29.389014927565164 +2019-02-01 03:00:00,25.0,0.577248677,29.389873626121737 +2019-02-01 03:15:00,25.0,0.583333333,29.39073176004261 +2019-02-01 03:30:00,25.0,0.601322751,29.391589329217403 +2019-02-01 03:45:00,25.0,0.624206349,29.392446333535815 +2019-02-01 04:00:00,25.0,0.637698413,29.39330277288762 +2019-02-01 04:15:00,25.0,0.625529101,29.394158647162655 +2019-02-01 04:30:00,25.0,0.622883598,29.395013956250843 +2019-02-01 04:45:00,25.0,0.632804233,29.395868700042165 +2019-02-01 05:00:00,25.0,0.648280423,29.396722878426683 +2019-02-01 05:15:00,25.0,0.661904762,29.397576491294533 +2019-02-01 05:30:00,25.0,0.664021164,29.398429538535922 +2019-02-01 05:45:00,25.0,0.67010582,29.399282020041127 +2019-02-01 06:00:00,25.0,0.63994709,29.400133935700495 +2019-02-01 06:15:00,25.0,0.644312169,29.400985285404463 +2019-02-01 06:30:00,25.0,0.648677249,29.40183606904352 +2019-02-01 06:45:00,25.0,0.648941799,29.402686286508235 +2019-02-01 07:00:00,25.0,0.647486772,29.403535937689256 +2019-02-01 07:15:00,25.0,0.646957672,29.404385022477296 +2019-02-01 07:30:00,25.0,0.647619048,29.405233540763145 +2019-02-01 07:45:00,25.0,0.655026455,29.406081492437664 +2019-02-01 08:00:00,25.0,0.660714286,29.406928877391785 +2019-02-01 08:15:00,25.0,0.665079365,29.40777569551652 +2019-02-01 08:30:00,25.0,0.669312169,29.408621946702947 +2019-02-01 08:45:00,25.0,0.674338624,29.40946763084222 +2019-02-01 09:00:00,25.0,0.680291005,29.410312747825564 +2019-02-01 09:15:00,25.0,0.682142857,29.41115729754428 +2019-02-01 09:30:00,25.0,0.682804233,29.412001279889736 +2019-02-01 09:45:00,25.0,0.684391534,29.41284469475338 +2019-02-01 10:00:00,25.0,0.689153439,29.41368754202673 +2019-02-01 10:15:00,25.0,0.713756614,29.414529821601377 +2019-02-01 10:30:00,25.0,0.726455026,29.415371533368987 +2019-02-01 10:45:00,25.0,0.724206349,29.416212677221292 +2019-02-01 11:00:00,25.0,0.713095238,29.417053253050106 +2019-02-01 11:15:00,25.0,0.695634921,29.417893260747313 +2019-02-01 11:30:00,25.0,0.673544974,29.418732700204863 +2019-02-01 11:45:00,25.0,0.65515873,29.419571571314794 +2019-02-01 12:00:00,25.0,0.646428571,29.420409873969202 +2019-02-01 12:15:00,25.0,0.636111111,29.421247608060266 +2019-02-01 12:30:00,25.0,0.628042328,29.422084773480236 +2019-02-01 12:45:00,25.0,0.615079365,29.42292137012143 +2019-02-01 13:00:00,25.0,0.614153439,29.42375739787624 +2019-02-01 13:15:00,25.0,0.614814815,29.424592856637144 +2019-02-01 13:30:00,25.0,0.616137566,29.425427746296677 +2019-02-01 13:45:00,25.0,0.611375661,29.42626206674745 +2019-02-01 14:00:00,25.0,0.618386243,29.42709581788216 +2019-02-01 14:15:00,25.0,0.613888889,29.427928999593565 +2019-02-01 14:30:00,25.0,0.595634921,29.428761611774494 +2019-02-01 14:45:00,25.0,0.587566138,29.42959365431786 +2019-02-01 15:00:00,25.0,0.59047619,29.43042512711664 +2019-02-01 15:15:00,25.0,0.570899471,29.43125603006389 +2019-02-01 15:30:00,25.0,0.542857143,29.43208636305274 +2019-02-01 15:45:00,25.0,0.524603175,29.432916125976384 +2019-02-01 16:00:00,25.0,0.51494709,29.4337453187281 +2019-02-01 16:15:00,25.0,0.503042328,29.434573941201236 +2019-02-01 16:30:00,25.0,0.492328042,29.435401993289215 +2019-02-01 16:45:00,25.0,0.486904762,29.436229474885526 +2019-02-01 17:00:00,25.0,0.479232804,29.437056385883736 +2019-02-01 17:15:00,25.0,0.475661376,29.43788272617749 +2019-02-01 17:30:00,25.0,0.463227513,29.4387084956605 +2019-02-01 17:45:00,25.0,0.453174603,29.439533694226554 +2019-02-01 18:00:00,25.0,0.449470899,29.440358321769512 +2019-02-01 18:15:00,25.0,0.452380952,29.44118237818331 +2019-02-01 18:30:00,25.0,0.446560847,29.442005863361956 +2019-02-01 18:45:00,25.0,0.427777778,29.44282877719953 +2019-02-01 19:00:00,25.0,0.397089947,29.443651119590186 +2019-02-01 19:15:00,25.0,0.379497354,29.444472890428155 +2019-02-01 19:30:00,25.0,0.368915344,29.445294089607742 +2019-02-01 19:45:00,25.0,0.345502646,29.446114717023313 +2019-02-01 20:00:00,25.0,0.328968254,29.446934772569325 +2019-02-01 20:15:00,25.0,0.320767196,29.4477542561403 +2019-02-01 20:30:00,25.0,0.315343915,29.44857316763083 +2019-02-01 20:45:00,25.0,0.313624339,29.449391506935587 +2019-02-01 21:00:00,25.0,0.31031746,29.450209273949312 +2019-02-01 21:15:00,25.0,0.296693122,29.451026468566827 +2019-02-01 21:30:00,25.0,0.28452381,29.45184309068302 +2019-02-01 21:45:00,25.0,0.283862434,29.452659140192853 +2019-02-01 22:00:00,25.0,0.275661376,29.453474616991368 +2019-02-01 22:15:00,25.0,0.24973545,29.454289520973674 +2019-02-01 22:30:00,25.0,0.227777778,29.455103852034952 +2019-02-01 22:45:00,25.0,0.208465608,29.45591761007047 +2019-02-01 23:00:00,25.0,0.197222222,29.456730794975552 +2019-02-01 23:15:00,25.0,0.193915344,29.457543406645613 +2019-02-01 23:30:00,25.0,0.185846561,29.458355444976124 +2019-02-01 23:45:00,25.0,0.164285714,29.459166909862645 +2019-02-02 00:00:00,25.0,0.153571429,29.4599778012008 +2019-02-02 00:15:00,25.0,0.147883598,29.460788118886292 +2019-02-02 00:30:00,25.0,0.142460317,29.461597862814894 +2019-02-02 00:45:00,25.0,0.146031746,29.462407032882457 +2019-02-02 01:00:00,25.0,0.14510582,29.463215628984905 +2019-02-02 01:15:00,25.0,0.148148148,29.46402365101823 +2019-02-02 01:30:00,25.0,0.149470899,29.464831098878506 +2019-02-02 01:45:00,25.0,0.150793651,29.465637972461877 +2019-02-02 02:00:00,25.0,0.158465608,29.46644427166456 +2019-02-02 02:15:00,25.0,0.164021164,29.467249996382847 +2019-02-02 02:30:00,25.0,0.161111111,29.468055146513105 +2019-02-02 02:45:00,25.0,0.17037037,29.468859721951773 +2019-02-02 03:00:00,25.0,0.179232804,29.469663722595364 +2019-02-02 03:15:00,25.0,0.182804233,29.47046714834046 +2019-02-02 03:30:00,25.0,0.175793651,29.471269999083738 +2019-02-02 03:45:00,25.0,0.172619048,29.472072274721917 +2019-02-02 04:00:00,25.0,0.167063492,29.472873975151817 +2019-02-02 04:15:00,25.0,0.161772487,29.473675100270317 +2019-02-02 04:30:00,25.0,0.155291005,29.474475649974373 +2019-02-02 04:45:00,25.0,0.148412698,29.47527562416102 +2019-02-02 05:00:00,25.0,0.153703704,29.476075022727365 +2019-02-02 05:15:00,25.0,0.152645503,29.47687384557058 +2019-02-02 05:30:00,25.0,0.153968254,29.477672092587927 +2019-02-02 05:45:00,25.0,0.155291005,29.478469763676728 +2019-02-02 06:00:00,25.0,0.152777778,29.479266858734388 +2019-02-02 06:15:00,25.0,0.153968254,29.480063377658382 +2019-02-02 06:30:00,25.0,0.150396825,29.480859320346255 +2019-02-02 06:45:00,25.0,0.142592593,29.48165468669564 +2019-02-02 07:00:00,25.0,0.139153439,29.482449476604227 +2019-02-02 07:15:00,25.0,0.141137566,29.483243689969793 +2019-02-02 07:30:00,25.0,0.147486772,29.484037326690185 +2019-02-02 07:45:00,25.0,0.157671958,29.48483038666332 +2019-02-02 08:00:00,25.0,0.162698413,29.485622869787193 +2019-02-02 08:15:00,25.0,0.167724868,29.486414775959876 +2019-02-02 08:30:00,25.0,0.16984127,29.48720610507951 +2019-02-02 08:45:00,25.0,0.163888889,29.487996857044315 +2019-02-02 09:00:00,25.0,0.163359788,29.48878703175258 +2019-02-02 09:15:00,25.0,0.165343915,29.48957662910267 +2019-02-02 09:30:00,25.0,0.15515873,29.490365648993027 +2019-02-02 09:45:00,25.0,0.148544974,29.491154091322166 +2019-02-02 10:00:00,25.0,0.155555556,29.491941955988676 +2019-02-02 10:15:00,25.0,0.167989418,29.49272924289122 +2019-02-02 10:30:00,25.0,0.167724868,29.49351595192853 +2019-02-02 10:45:00,25.0,0.168518519,29.494302082999425 +2019-02-02 11:00:00,25.0,0.164153439,29.495087636002786 +2019-02-02 11:15:00,25.0,0.159920635,29.49587261083758 +2019-02-02 11:30:00,25.0,0.15542328,29.49665700740283 +2019-02-02 11:45:00,25.0,0.154497354,29.49744082559766 +2019-02-02 12:00:00,25.0,0.155291005,29.49822406532124 +2019-02-02 12:15:00,25.0,0.144179894,29.499006726472835 +2019-02-02 12:30:00,25.0,0.133465608,29.499788808951777 +2019-02-02 12:45:00,25.0,0.131349206,29.500570312657473 +2019-02-02 13:00:00,25.0,0.134391534,29.501351237489402 +2019-02-02 13:15:00,25.0,0.132142857,29.502131583347115 +2019-02-02 13:30:00,25.0,0.136772487,29.502911350130255 +2019-02-02 13:45:00,25.0,0.14537037,29.503690537738514 +2019-02-02 14:00:00,25.0,0.154100529,29.504469146071678 +2019-02-02 14:15:00,25.0,0.153968254,29.505247175029602 +2019-02-02 14:30:00,25.0,0.155291005,29.506024624512207 +2019-02-02 14:45:00,25.0,0.158597884,29.5068014944195 +2019-02-02 15:00:00,25.0,0.169708995,29.50757778465156 +2019-02-02 15:15:00,25.0,0.173412698,29.508353495108533 +2019-02-02 15:30:00,25.0,0.178703704,29.50912862569065 +2019-02-02 15:45:00,25.0,0.185714286,29.509903176298213 +2019-02-02 16:00:00,25.0,0.183465608,29.510677146831593 +2019-02-02 16:15:00,25.0,0.188492063,29.511450537191244 +2019-02-02 16:30:00,25.0,0.187962963,29.51222334727769 +2019-02-02 16:45:00,25.0,0.187962963,29.51299557699153 +2019-02-02 17:00:00,25.0,0.192195767,29.513767226233433 +2019-02-02 17:15:00,25.0,0.18994709,29.514538294904156 +2019-02-02 17:30:00,25.0,0.185978836,29.515308782904516 +2019-02-02 17:45:00,25.0,0.177645503,29.516078690135416 +2019-02-02 18:00:00,25.0,0.168650794,29.516848016497825 +2019-02-02 18:15:00,25.0,0.16547619,29.517616761892793 +2019-02-02 18:30:00,25.0,0.166137566,29.51838492622144 +2019-02-02 18:45:00,25.0,0.175,29.519152509384966 +2019-02-02 19:00:00,25.0,0.18505291,29.519919511284638 +2019-02-02 19:15:00,25.0,0.190079365,29.520685931821806 +2019-02-02 19:30:00,25.0,0.190343915,29.52145177089789 +2019-02-02 19:45:00,25.0,0.192989418,29.52221702841439 +2019-02-02 20:00:00,25.0,0.19537037,29.52298170427287 +2019-02-02 20:15:00,25.0,0.185978836,29.523745798374975 +2019-02-02 20:30:00,25.0,0.166666667,29.524509310622435 +2019-02-02 20:45:00,25.0,0.161904762,29.52527224091704 +2019-02-02 21:00:00,25.0,0.179365079,29.526034589160655 +2019-02-02 21:15:00,25.0,0.187962963,29.526796355255232 +2019-02-02 21:30:00,25.0,0.202116402,29.527557539102787 +2019-02-02 21:45:00,25.0,0.210582011,29.52831814060542 +2019-02-02 22:00:00,25.0,0.220238095,29.529078159665296 +2019-02-02 22:15:00,25.0,0.251851852,29.529837596184656 +2019-02-02 22:30:00,25.0,0.285714286,29.53059645006583 +2019-02-02 22:45:00,25.0,0.307936508,29.531354721211205 +2019-02-02 23:00:00,25.0,0.325925926,29.53211240952325 +2019-02-02 23:15:00,25.0,0.309920635,29.53286951490451 +2019-02-02 23:30:00,25.0,0.34537037,29.533626037257612 +2019-02-02 23:45:00,25.0,0.338624339,29.53438197648524 +2019-02-03 00:00:00,25.0,0.332010582,29.535137332490166 +2019-02-03 00:15:00,25.0,0.386640212,29.535892105175236 +2019-02-03 00:30:00,25.0,0.453042328,29.536646294443372 +2019-02-03 00:45:00,25.0,0.481349206,29.537399900197563 +2019-02-03 01:00:00,25.0,0.452777778,29.538152922340885 +2019-02-03 01:15:00,25.0,0.509391534,29.538905360776475 +2019-02-03 01:30:00,25.0,0.507936508,29.539657215407555 +2019-02-03 01:45:00,25.0,0.464153439,29.540408486137423 +2019-02-03 02:00:00,25.0,0.47526455,29.54115917286945 +2019-02-03 02:15:00,25.0,0.460978836,29.54190927550707 +2019-02-03 02:30:00,25.0,0.456349206,29.542658793953816 +2019-02-03 02:45:00,25.0,0.47989418,29.543407728113277 +2019-02-03 03:00:00,25.0,0.496957672,29.544156077889124 +2019-02-03 03:15:00,25.0,0.491402116,29.544903843185104 +2019-02-03 03:30:00,25.0,0.510978836,29.545651023905037 +2019-02-03 03:45:00,25.0,0.537830688,29.546397619952813 +2019-02-03 04:00:00,25.0,0.536375661,29.547143631232416 +2019-02-03 04:15:00,25.0,0.543783069,29.547889057647883 +2019-02-03 04:30:00,25.0,0.531084656,29.548633899103336 +2019-02-03 04:45:00,25.0,0.530952381,29.54937815550297 +2019-02-03 05:00:00,25.0,0.518783069,29.550121826751067 +2019-02-03 05:15:00,25.0,0.522089947,29.550864912751962 +2019-02-03 05:30:00,25.0,0.488095238,29.551607413410082 +2019-02-03 05:45:00,25.0,0.45542328,29.55234932862993 +2019-02-03 06:00:00,25.0,0.42037037,29.553090658316073 +2019-02-03 06:15:00,25.0,0.422619048,29.553831402373163 +2019-02-03 06:30:00,25.0,0.407010582,29.55457156070592 +2019-02-03 06:45:00,25.0,0.413624339,29.55531113321915 +2019-02-03 07:00:00,25.0,0.421031746,29.556050119817716 +2019-02-03 07:15:00,25.0,0.38015873,29.556788520406577 +2019-02-03 07:30:00,25.0,0.348677249,29.55752633489076 +2019-02-03 07:45:00,25.0,0.305820106,29.558263563175355 +2019-02-03 08:00:00,25.0,0.291402116,29.55900020516555 +2019-02-03 08:15:00,25.0,0.276984127,29.559736260766588 +2019-02-03 08:30:00,25.0,0.264153439,29.560471729883798 +2019-02-03 08:45:00,25.0,0.260846561,29.561206612422584 +2019-02-03 09:00:00,25.0,0.243386243,29.561940908288424 +2019-02-03 09:15:00,25.0,0.252777778,29.562674617386868 +2019-02-03 09:30:00,25.0,0.250793651,29.563407739623546 +2019-02-03 09:45:00,25.0,0.262301587,29.564140274904165 +2019-02-03 10:00:00,25.0,0.289550265,29.5648722231345 +2019-02-03 10:15:00,25.0,0.288756614,29.565603584220412 +2019-02-03 10:30:00,25.0,0.296825397,29.566334358067824 +2019-02-03 10:45:00,25.0,0.28042328,29.56706454458275 +2019-02-03 11:00:00,25.0,0.310582011,29.567794143671264 +2019-02-03 11:15:00,25.0,0.327380952,29.568523155239525 +2019-02-03 11:30:00,25.0,0.276587302,29.56925157919377 +2019-02-03 11:45:00,25.0,0.253174603,29.569979415440308 +2019-02-03 12:00:00,25.0,0.260846561,29.57070666388552 +2019-02-03 12:15:00,25.0,0.291534392,29.571433324435866 +2019-02-03 12:30:00,25.0,0.311772487,29.57215939699788 +2019-02-03 12:45:00,25.0,0.326322751,29.572884881478174 +2019-02-03 13:00:00,25.0,0.336904762,29.573609777783435 +2019-02-03 13:15:00,25.0,0.312301587,29.574334085820425 +2019-02-03 13:30:00,25.0,0.312037037,29.575057805495984 +2019-02-03 13:45:00,25.0,0.314417989,29.57578093671702 +2019-02-03 14:00:00,25.0,0.319708995,29.576503479390524 +2019-02-03 14:15:00,25.0,0.339814815,29.577225433423568 +2019-02-03 14:30:00,25.0,0.339417989,29.577946798723282 +2019-02-03 14:45:00,25.0,0.313492063,29.57866757519689 +2019-02-03 15:00:00,25.0,0.30515873,29.57938776275168 +2019-02-03 15:15:00,25.0,0.324470899,29.58010736129502 +2019-02-03 15:30:00,25.0,0.309259259,29.580826370734354 +2019-02-03 15:45:00,25.0,0.294047619,29.581544790977205 +2019-02-03 16:00:00,25.0,0.285582011,29.582262621931164 +2019-02-03 16:15:00,25.0,0.287830688,29.5829798635039 +2019-02-03 16:30:00,25.0,0.284656085,29.583696515603165 +2019-02-03 16:45:00,25.0,0.263359788,29.584412578136778 +2019-02-03 17:00:00,25.0,0.237962963,29.585128051012642 +2019-02-03 17:15:00,25.0,0.228571429,29.585842934138725 +2019-02-03 17:30:00,25.0,0.203174603,29.586557227423082 +2019-02-03 17:45:00,25.0,0.197883598,29.587270930773833 +2019-02-03 18:00:00,25.0,0.194973545,29.587984044099187 +2019-02-03 18:15:00,25.0,0.210846561,29.58869656730742 +2019-02-03 18:30:00,25.0,0.205820106,29.58940850030688 +2019-02-03 18:45:00,25.0,0.202513228,29.590119843006004 +2019-02-03 19:00:00,25.0,0.210185185,29.590830595313292 +2019-02-03 19:15:00,25.0,0.225396825,29.59154075713733 +2019-02-03 19:30:00,25.0,0.246164021,29.59225032838677 +2019-02-03 19:45:00,25.0,0.252777778,29.59295930897035 +2019-02-03 20:00:00,25.0,0.25489418,29.593667698796875 +2019-02-03 20:15:00,25.0,0.265079365,29.594375497775232 +2019-02-03 20:30:00,25.0,0.277777778,29.595082705814384 +2019-02-03 20:45:00,25.0,0.30026455,29.59578932282337 +2019-02-03 21:00:00,25.0,0.298677249,29.596495348711297 +2019-02-03 21:15:00,25.0,0.30952381,29.59720078338736 +2019-02-03 21:30:00,25.0,0.306613757,29.59790562676082 +2019-02-03 21:45:00,25.0,0.331349206,29.598609878741023 +2019-02-03 22:00:00,25.0,0.364285714,29.599313539237382 +2019-02-03 22:15:00,25.0,0.38478836,29.600016608159393 +2019-02-03 22:30:00,25.0,0.397751323,29.600719085416628 +2019-02-03 22:45:00,25.0,0.418783069,29.601420970918724 +2019-02-03 23:00:00,25.0,0.430291005,29.602122264575414 +2019-02-03 23:15:00,25.0,0.452513228,29.60282296629649 +2019-02-03 23:30:00,25.0,0.477513228,29.603523075991824 +2019-02-03 23:45:00,25.0,0.499206349,29.60422259357137 +2019-02-04 00:00:00,25.0,0.521825397,29.604921518945154 +2019-02-04 00:15:00,25.0,0.53531746,29.60561985202328 +2019-02-04 00:30:00,25.0,0.55489418,29.606317592715925 +2019-02-04 00:45:00,25.0,0.566534392,29.607014740933344 +2019-02-04 01:00:00,25.0,0.565740741,29.607711296585865 +2019-02-04 01:15:00,25.0,0.574074074,29.608407259583903 +2019-02-04 01:30:00,25.0,0.594047619,29.609102629837935 +2019-02-04 01:45:00,25.0,0.612169312,29.609797407258522 +2019-02-04 02:00:00,25.0,0.61547619,29.6104915917563 +2019-02-04 02:15:00,25.0,0.62962963,29.611185183241986 +2019-02-04 02:30:00,25.0,0.634259259,29.611878181626366 +2019-02-04 02:45:00,25.0,0.646164021,29.6125705868203 +2019-02-04 03:00:00,25.0,0.648148148,29.613262398734737 +2019-02-04 03:15:00,25.0,0.621560847,29.61395361728069 +2019-02-04 03:30:00,25.0,0.611375661,29.614644242369252 +2019-02-04 03:45:00,25.0,0.613095238,29.615334273911596 +2019-02-04 04:00:00,25.0,0.612566138,29.61602371181897 +2019-02-04 04:15:00,25.0,0.610846561,29.616712556002692 +2019-02-04 04:30:00,25.0,0.611243386,29.617400806374164 +2019-02-04 04:45:00,25.0,0.612301587,29.618088462844863 +2019-02-04 05:00:00,25.0,0.613624339,29.61877552532634 +2019-02-04 05:15:00,25.0,0.612698413,29.61946199373022 +2019-02-04 05:30:00,25.0,0.615873016,29.62014786796821 +2019-02-04 05:45:00,25.0,0.614417989,29.620833147952094 +2019-02-04 06:00:00,25.0,0.615873016,29.621517833593728 +2019-02-04 06:15:00,25.0,0.616931217,29.622201924805047 +2019-02-04 06:30:00,25.0,0.617328042,29.622885421498058 +2019-02-04 06:45:00,25.0,0.61547619,29.623568323584852 +2019-02-04 07:00:00,25.0,0.579232804,29.62425063097759 +2019-02-04 07:15:00,25.0,0.516534392,29.62493234358851 +2019-02-04 07:30:00,25.0,0.474867725,29.625613461329937 +2019-02-04 07:45:00,25.0,0.478835979,29.62629398411426 +2019-02-04 08:00:00,25.0,0.483333333,29.62697391185394 +2019-02-04 08:15:00,25.0,0.485714286,29.627653244461538 +2019-02-04 08:30:00,25.0,0.481746032,29.628331981849666 +2019-02-04 08:45:00,25.0,0.482539683,29.629010123931025 +2019-02-04 09:00:00,25.0,0.488888889,29.629687670618395 +2019-02-04 09:15:00,25.0,0.531481481,29.630364621824622 +2019-02-04 09:30:00,25.0,0.530026455,29.63104097746264 +2019-02-04 09:45:00,25.0,0.531746032,29.631716737445455 +2019-02-04 10:00:00,25.0,0.532407407,29.632391901686145 +2019-02-04 10:15:00,25.0,0.539021164,29.633066470097873 +2019-02-04 10:30:00,25.0,0.540740741,29.63374044259387 +2019-02-04 10:45:00,25.0,0.545502646,29.63441381908745 +2019-02-04 11:00:00,25.0,0.553439153,29.635086599492006 +2019-02-04 11:15:00,25.0,0.557671958,29.635758783720995 +2019-02-04 11:30:00,25.0,0.563492063,29.63643037168797 +2019-02-04 11:45:00,25.0,0.56521164,29.63710136330654 +2019-02-04 12:00:00,25.0,0.566931217,29.637771758490402 +2019-02-04 12:15:00,25.0,0.571296296,29.638441557153335 +2019-02-04 12:30:00,25.0,0.575925926,29.63911075920918 +2019-02-04 12:45:00,25.0,0.582539683,29.63977936457187 +2019-02-04 13:00:00,25.0,0.588756614,29.6404473731554 +2019-02-04 13:15:00,25.0,0.596957672,29.641114784873853 +2019-02-04 13:30:00,25.0,0.606481481,29.641781599641384 +2019-02-04 13:45:00,25.0,0.616534392,29.64244781737223 +2019-02-04 14:00:00,25.0,0.621296296,29.643113437980695 +2019-02-04 14:15:00,25.0,0.623677249,29.643778461381167 +2019-02-04 14:30:00,25.0,0.621296296,29.644442887488108 +2019-02-04 14:45:00,25.0,0.624206349,29.64510671621606 +2019-02-04 15:00:00,25.0,0.626587302,29.64576994747964 +2019-02-04 15:15:00,25.0,0.626719577,29.64643258119354 +2019-02-04 15:30:00,25.0,0.62526455,29.647094617272533 +2019-02-04 15:45:00,25.0,0.577910053,29.64775605563146 +2019-02-04 16:00:00,25.0,0.577248677,29.648416896185257 +2019-02-04 16:15:00,25.0,0.578703704,29.649077138848916 +2019-02-04 16:30:00,25.0,0.580291005,29.649736783537517 +2019-02-04 16:45:00,25.0,0.581481481,29.65039583016621 +2019-02-04 17:00:00,25.0,0.582407407,29.65105427865024 +2019-02-04 17:15:00,25.0,0.534656085,29.651712128904904 +2019-02-04 17:30:00,25.0,0.529497354,29.65236938084559 +2019-02-04 17:45:00,25.0,0.530555556,29.653026034387764 +2019-02-04 18:00:00,25.0,0.530555556,29.653682089446967 +2019-02-04 18:15:00,25.0,0.490079365,29.65433754593881 +2019-02-04 18:30:00,25.0,0.46468254,29.65499240377899 +2019-02-04 18:45:00,25.0,0.433597884,29.655646662883278 +2019-02-04 19:00:00,25.0,0.432407407,29.65630032316752 +2019-02-04 19:15:00,25.0,0.432407407,29.65695338454764 +2019-02-04 19:30:00,25.0,0.432804233,29.657605846939646 +2019-02-04 19:45:00,25.0,0.432407407,29.65825771025961 +2019-02-04 20:00:00,25.0,0.432804233,29.65890897442369 +2019-02-04 20:15:00,25.0,0.432407407,29.659559639348117 +2019-02-04 20:30:00,25.0,0.429232804,29.660209704949203 +2019-02-04 20:45:00,25.0,0.424074074,29.660859171143336 +2019-02-04 21:00:00,25.0,0.408730159,29.66150803784698 +2019-02-04 21:15:00,25.0,0.38478836,29.66215630497667 +2019-02-04 21:30:00,25.0,0.387301587,29.662803972449034 +2019-02-04 21:45:00,25.0,0.394179894,29.663451040180764 +2019-02-04 22:00:00,25.0,0.396428571,29.66409750808863 +2019-02-04 22:15:00,25.0,0.381349206,29.664743376089483 +2019-02-04 22:30:00,25.0,0.398941799,29.66538864410025 +2019-02-04 22:45:00,25.0,0.437830688,29.66603331203794 +2019-02-04 23:00:00,25.0,0.433333333,29.666677379819625 +2019-02-04 23:15:00,25.0,0.432936508,29.667320847362472 +2019-02-04 23:30:00,25.0,0.429761905,29.667963714583713 +2019-02-04 23:45:00,25.0,0.434920635,29.66860598140066 +2019-02-05 00:00:00,25.0,0.424338624,29.669247647730703 +2019-02-05 00:15:00,25.0,0.425396825,29.66988871349131 +2019-02-05 00:30:00,25.0,0.42010582,29.67052917860003 +2019-02-05 00:45:00,25.0,0.406746032,29.67116904297448 +2019-02-05 01:00:00,25.0,0.401587302,29.671808306532363 +2019-02-05 01:15:00,25.0,0.397883598,29.672446969191448 +2019-02-05 01:30:00,25.0,0.390740741,29.673085030869593 +2019-02-05 01:45:00,25.0,0.393518519,29.673722491484735 +2019-02-05 02:00:00,25.0,0.391402116,29.674359350954873 +2019-02-05 02:15:00,25.0,0.404100529,29.6749956091981 +2019-02-05 02:30:00,25.0,0.42526455,29.675631266132573 +2019-02-05 02:45:00,25.0,0.439285714,29.676266321676536 +2019-02-05 03:00:00,25.0,0.449206349,29.676900775748305 +2019-02-05 03:15:00,25.0,0.437433862,29.677534628266272 +2019-02-05 03:30:00,25.0,0.438492063,29.67816787914892 +2019-02-05 03:45:00,25.0,0.434920635,29.678800528314788 +2019-02-05 04:00:00,25.0,0.458333333,29.679432575682508 +2019-02-05 04:15:00,25.0,0.464021164,29.680064021170786 +2019-02-05 04:30:00,25.0,0.46957672,29.680694864698395 +2019-02-05 04:45:00,25.0,0.47526455,29.681325106184207 +2019-02-05 05:00:00,25.0,0.484259259,29.681954745547152 +2019-02-05 05:15:00,25.0,0.508201058,29.682583782706246 +2019-02-05 05:30:00,25.0,0.534259259,29.68321221758058 +2019-02-05 05:45:00,25.0,0.53994709,29.683840050089323 +2019-02-05 06:00:00,25.0,0.54047619,29.684467280151722 +2019-02-05 06:15:00,25.0,0.53531746,29.6850939076871 +2019-02-05 06:30:00,25.0,0.526058201,29.685719932614862 +2019-02-05 06:45:00,25.0,0.521296296,29.686345354854485 +2019-02-05 07:00:00,25.0,0.533201058,29.686970174325523 +2019-02-05 07:15:00,25.0,0.532142857,29.687594390947616 +2019-02-05 07:30:00,25.0,0.522883598,29.688218004640476 +2019-02-05 07:45:00,25.0,0.513359788,29.688841015323888 +2019-02-05 08:00:00,25.0,0.517592593,29.68946342291772 +2019-02-05 08:15:00,25.0,0.51494709,29.690085227341914 +2019-02-05 08:30:00,25.0,0.517063492,29.6907064285165 +2019-02-05 08:45:00,25.0,0.522883598,29.691327026361567 +2019-02-05 09:00:00,25.0,0.520899471,29.6919470207973 +2019-02-05 09:15:00,25.0,0.516931217,29.692566411743954 +2019-02-05 09:30:00,25.0,0.50952381,29.693185199121856 +2019-02-05 09:45:00,25.0,0.515608466,29.693803382851424 +2019-02-05 10:00:00,25.0,0.528042328,29.694420962853137 +2019-02-05 10:15:00,25.0,0.51468254,29.695037939047566 +2019-02-05 10:30:00,25.0,0.515608466,29.695654311355355 +2019-02-05 10:45:00,25.0,0.51468254,29.69627007969722 +2019-02-05 11:00:00,25.0,0.506746032,29.696885243993965 +2019-02-05 11:15:00,25.0,0.502380952,29.697499804166462 +2019-02-05 11:30:00,25.0,0.502777778,29.698113760135662 +2019-02-05 11:45:00,25.0,0.498544974,29.698727111822606 +2019-02-05 12:00:00,25.0,0.49047619,29.699339859148395 +2019-02-05 12:15:00,25.0,0.488624339,29.69995200203422 +2019-02-05 12:30:00,25.0,0.48531746,29.70056354040134 +2019-02-05 12:45:00,25.0,0.487433862,29.701174474171108 +2019-02-05 13:00:00,25.0,0.487301587,29.701784803264935 +2019-02-05 13:15:00,25.0,0.480820106,29.702394527604326 +2019-02-05 13:30:00,25.0,0.46984127,29.70300364711085 +2019-02-05 13:45:00,25.0,0.450793651,29.703612161706168 +2019-02-05 14:00:00,25.0,0.440079365,29.704220071312005 +2019-02-05 14:15:00,25.0,0.425925926,29.704827375850172 +2019-02-05 14:30:00,25.0,0.415079365,29.705434075242557 +2019-02-05 14:45:00,25.0,0.400925926,29.706040169411125 +2019-02-05 15:00:00,25.0,0.38452381,29.706645658277917 +2019-02-05 15:15:00,25.0,0.376719577,29.707250541765056 +2019-02-05 15:30:00,25.0,0.360714286,29.70785481979474 +2019-02-05 15:45:00,25.0,0.340079365,29.708458492289246 +2019-02-05 16:00:00,25.0,0.331481481,29.709061559170927 +2019-02-05 16:15:00,25.0,0.332671958,29.709664020362215 +2019-02-05 16:30:00,25.0,0.325925926,29.71026587578562 +2019-02-05 16:45:00,25.0,0.31547619,29.71086712536373 +2019-02-05 17:00:00,25.0,0.308597884,29.71146776901921 +2019-02-05 17:15:00,25.0,0.300132275,29.712067806674806 +2019-02-05 17:30:00,25.0,0.282142857,29.71266723825334 +2019-02-05 17:45:00,25.0,0.260978836,29.71326606367771 +2019-02-05 18:00:00,25.0,0.248941799,29.713864282870894 +2019-02-05 18:15:00,25.0,0.24484127,29.71446189575595 +2019-02-05 18:30:00,25.0,0.249867725,29.715058902256004 +2019-02-05 18:45:00,25.0,0.253042328,29.71565530229428 +2019-02-05 19:00:00,25.0,0.268121693,29.716251095794057 +2019-02-05 19:15:00,25.0,0.293121693,29.716846282678706 +2019-02-05 19:30:00,25.0,0.316931217,29.717440862871676 +2019-02-05 19:45:00,25.0,0.346296296,29.718034836296482 +2019-02-05 20:00:00,25.0,0.365608466,29.718628202876737 +2019-02-05 20:15:00,25.0,0.372354497,29.719220962536113 +2019-02-05 20:30:00,25.0,0.389550265,29.719813115198374 +2019-02-05 20:45:00,25.0,0.416666667,29.72040466078735 +2019-02-05 21:00:00,25.0,0.439550265,29.720995599226956 +2019-02-05 21:15:00,25.0,0.443650794,29.721585930441186 +2019-02-05 21:30:00,25.0,0.431349206,29.72217565435411 +2019-02-05 21:45:00,25.0,0.435449735,29.722764770889878 +2019-02-05 22:00:00,25.0,0.449206349,29.723353279972713 +2019-02-05 22:15:00,25.0,0.483333333,29.72394118152692 +2019-02-05 22:30:00,25.0,0.503306878,29.724528475476884 +2019-02-05 22:45:00,25.0,0.512433862,29.725115161747066 +2019-02-05 23:00:00,25.0,0.518518519,29.725701240262 +2019-02-05 23:15:00,25.0,0.53505291,29.72628671094631 +2019-02-05 23:30:00,25.0,0.565079365,29.72687157372469 +2019-02-05 23:45:00,25.0,0.58968254,29.72745582852191 +2019-02-06 00:00:00,25.0,0.610978836,29.728039475262825 +2019-02-06 00:15:00,25.0,0.632804233,29.72862251387236 +2019-02-06 00:30:00,25.0,0.64510582,29.72920494427553 +2019-02-06 00:45:00,25.0,0.651455026,29.729786766397417 +2019-02-06 01:00:00,25.0,0.66468254,29.73036798016319 +2019-02-06 01:15:00,25.0,0.675396825,29.730948585498087 +2019-02-06 01:30:00,25.0,0.681084656,29.731528582327435 +2019-02-06 01:45:00,25.0,0.699867725,29.732107970576624 +2019-02-06 02:00:00,25.0,0.706746032,29.73268675017114 +2019-02-06 02:15:00,25.0,0.711507937,29.73326492103654 +2019-02-06 02:30:00,25.0,0.722883598,29.73384248309845 +2019-02-06 02:45:00,25.0,0.731349206,29.73441943628259 +2019-02-06 03:00:00,25.0,0.724603175,29.734995780514748 +2019-02-06 03:15:00,25.0,0.718121693,29.735571515720792 +2019-02-06 03:30:00,25.0,0.675925926,29.736146641826675 +2019-02-06 03:45:00,25.0,0.667063492,29.736721158758417 +2019-02-06 04:00:00,25.0,0.665608466,29.737295066442126 +2019-02-06 04:15:00,25.0,0.683201058,29.737868364803983 +2019-02-06 04:30:00,25.0,0.698941799,29.73844105377025 +2019-02-06 04:45:00,25.0,0.684391534,29.739013133267264 +2019-02-06 05:00:00,25.0,0.651719577,29.739584603221445 +2019-02-06 05:15:00,25.0,0.640079365,29.740155463559287 +2019-02-06 05:30:00,25.0,0.633333333,29.740725714207368 +2019-02-06 05:45:00,25.0,0.622619048,29.74129535509234 +2019-02-06 06:00:00,25.0,0.606613757,29.741864386140932 +2019-02-06 06:15:00,25.0,0.597222222,29.742432807279958 +2019-02-06 06:30:00,25.0,0.589153439,29.743000618436305 +2019-02-06 06:45:00,25.0,0.574603175,29.743567819536935 +2019-02-06 07:00:00,25.0,0.568783069,29.744134410508902 +2019-02-06 07:15:00,25.0,0.569708995,29.744700391279324 +2019-02-06 07:30:00,25.0,0.571560847,29.7452657617754 +2019-02-06 07:45:00,25.0,0.570502646,29.745830521924418 +2019-02-06 08:00:00,25.0,0.573280423,29.746394671653736 +2019-02-06 08:15:00,25.0,0.578439153,29.74695821089079 +2019-02-06 08:30:00,25.0,0.586375661,29.747521139563094 +2019-02-06 08:45:00,25.0,0.590873016,29.748083457598245 +2019-02-06 09:00:00,25.0,0.603703704,29.748645164923918 +2019-02-06 09:15:00,25.0,0.611243386,29.74920626146786 +2019-02-06 09:30:00,25.0,0.611904762,29.74976674715791 +2019-02-06 09:45:00,25.0,0.610185185,29.75032662192197 +2019-02-06 10:00:00,25.0,0.611243386,29.750885885688028 +2019-02-06 10:15:00,25.0,0.610978836,29.751444538384153 +2019-02-06 10:30:00,25.0,0.607010582,29.752002579938488 +2019-02-06 10:45:00,25.0,0.598148148,29.752560010279257 +2019-02-06 11:00:00,25.0,0.602910053,29.75311682933476 +2019-02-06 11:15:00,25.0,0.618518519,29.753673037033384 +2019-02-06 11:30:00,25.0,0.61005291,29.75422863330358 +2019-02-06 11:45:00,25.0,0.596296296,29.75478361807389 +2019-02-06 12:00:00,25.0,0.597486772,29.75533799127293 +2019-02-06 12:15:00,25.0,0.587830688,29.7558917528294 +2019-02-06 12:30:00,25.0,0.578835979,29.756444902672065 +2019-02-06 12:45:00,25.0,0.568783069,29.756997440729783 +2019-02-06 13:00:00,25.0,0.590608466,29.757549366931485 +2019-02-06 13:15:00,25.0,0.596825397,29.75810068120618 +2019-02-06 13:30:00,25.0,0.575529101,29.758651383482956 +2019-02-06 13:45:00,25.0,0.573280423,29.759201473690982 +2019-02-06 14:00:00,25.0,0.600925926,29.759750951759507 +2019-02-06 14:15:00,25.0,0.578968254,29.76029981761785 +2019-02-06 14:30:00,25.0,0.560582011,29.76084807119541 +2019-02-06 14:45:00,25.0,0.547089947,29.761395712421685 +2019-02-06 15:00:00,25.0,0.533597884,29.761942741226225 +2019-02-06 15:15:00,25.0,0.490079365,29.762489157538674 +2019-02-06 15:30:00,25.0,0.458333333,29.763034961288746 +2019-02-06 15:45:00,25.0,0.440740741,29.76358015240624 +2019-02-06 16:00:00,25.0,0.434126984,29.764124730821038 +2019-02-06 16:15:00,25.0,0.420502646,29.76466869646309 +2019-02-06 16:30:00,25.0,0.392195767,29.76521204926243 +2019-02-06 16:45:00,25.0,0.362566138,29.76575478914917 +2019-02-06 17:00:00,25.0,0.342989418,29.766296916053506 +2019-02-06 17:15:00,25.0,0.341137566,29.766838429905704 +2019-02-06 17:30:00,25.0,0.350661376,29.767379330636114 +2019-02-06 17:45:00,25.0,0.366005291,29.767919618175164 +2019-02-06 18:00:00,25.0,0.374074074,29.768459292453365 +2019-02-06 18:15:00,25.0,0.36031746,29.768998353401294 +2019-02-06 18:30:00,25.0,0.329232804,29.769536800949624 +2019-02-06 18:45:00,25.0,0.308333333,29.770074635029097 +2019-02-06 19:00:00,25.0,0.306349206,29.770611855570532 +2019-02-06 19:15:00,25.0,0.277777778,29.771148462504833 +2019-02-06 19:30:00,25.0,0.246428571,29.77168445576298 +2019-02-06 19:45:00,25.0,0.243650794,29.772219835276037 +2019-02-06 20:00:00,25.0,0.23968254,29.772754600975134 +2019-02-06 20:15:00,25.0,0.243915344,29.77328875279149 +2019-02-06 20:30:00,25.0,0.234126984,29.773822290656405 +2019-02-06 20:45:00,25.0,0.23531746,29.774355214501256 +2019-02-06 21:00:00,25.0,0.237566138,29.774887524257487 +2019-02-06 21:15:00,25.0,0.229365079,29.77541921985664 +2019-02-06 21:30:00,25.0,0.231481481,29.775950301230324 +2019-02-06 21:45:00,25.0,0.226322751,29.776480768310233 +2019-02-06 22:00:00,25.0,0.226322751,29.777010621028133 +2019-02-06 22:15:00,25.0,0.236640212,29.777539859315873 +2019-02-06 22:30:00,25.0,0.22473545,29.778068483105386 +2019-02-06 22:45:00,25.0,0.225661376,29.778596492328674 +2019-02-06 23:00:00,25.0,0.21494709,29.779123886917827 +2019-02-06 23:15:00,25.0,0.197354497,29.779650666805004 +2019-02-06 23:30:00,25.0,0.18015873,29.78017683192246 +2019-02-06 23:45:00,25.0,0.177645503,29.78070238220251 +2019-02-07 00:00:00,25.0,0.169312169,29.78122731757756 +2019-02-07 00:15:00,25.0,0.16547619,29.781751637980086 +2019-02-07 00:30:00,25.0,0.162698413,29.782275343342658 +2019-02-07 00:45:00,25.0,0.147751323,29.78279843359791 +2019-02-07 01:00:00,25.0,0.141798942,29.78332090867856 +2019-02-07 01:15:00,25.0,0.130026455,29.78384276851741 +2019-02-07 01:30:00,25.0,0.126322751,29.784364013047337 +2019-02-07 01:45:00,25.0,0.123280423,29.78488464220129 +2019-02-07 02:00:00,25.0,0.125,29.785404655912316 +2019-02-07 02:15:00,25.0,0.147222222,29.785924054113522 +2019-02-07 02:30:00,25.0,0.165608466,29.7864428367381 +2019-02-07 02:45:00,25.0,0.179497354,29.786961003719327 +2019-02-07 03:00:00,25.0,0.198148148,29.787478554990557 +2019-02-07 03:15:00,25.0,0.217857143,29.78799549048522 +2019-02-07 03:30:00,25.0,0.221031746,29.78851181013682 +2019-02-07 03:45:00,25.0,0.238624339,29.789027513878956 +2019-02-07 04:00:00,25.0,0.281746032,29.789542601645294 +2019-02-07 04:15:00,25.0,0.331878307,29.79005707336958 +2019-02-07 04:30:00,25.0,0.387169312,29.790570928985645 +2019-02-07 04:45:00,25.0,0.41494709,29.79108416842739 +2019-02-07 05:00:00,25.0,0.449470899,29.791596791628805 +2019-02-07 05:15:00,25.0,0.487830688,29.79210879852396 +2019-02-07 05:30:00,25.0,0.505820106,29.792620189046986 +2019-02-07 05:45:00,25.0,0.481481481,29.79313096313212 +2019-02-07 06:00:00,25.0,0.479761905,29.79364112071366 +2019-02-07 06:15:00,25.0,0.487037037,29.794150661725986 +2019-02-07 06:30:00,25.0,0.450132275,29.794659586103567 +2019-02-07 06:45:00,25.0,0.470767196,29.795167893780935 +2019-02-07 07:00:00,25.0,0.471957672,29.795675584692717 +2019-02-07 07:15:00,25.0,0.464153439,29.796182658773606 +2019-02-07 07:30:00,25.0,0.46984127,29.796689115958387 +2019-02-07 07:45:00,25.0,0.461375661,29.79719495618192 +2019-02-07 08:00:00,25.0,0.445899471,29.797700179379135 +2019-02-07 08:15:00,25.0,0.426058201,29.79820478548505 +2019-02-07 08:30:00,25.0,0.424603175,29.79870877443477 +2019-02-07 08:45:00,25.0,0.431746032,29.799212146163462 +2019-02-07 09:00:00,25.0,0.436243386,29.799714900606382 +2019-02-07 09:15:00,25.0,0.45978836,29.80021703769887 +2019-02-07 09:30:00,25.0,0.467063492,29.80071855737634 +2019-02-07 09:45:00,25.0,0.46031746,29.801219459574277 +2019-02-07 10:00:00,25.0,0.46031746,29.80171974422826 +2019-02-07 10:15:00,25.0,0.466534392,29.802219411273942 +2019-02-07 10:30:00,25.0,0.47473545,29.80271846064705 +2019-02-07 10:45:00,25.0,0.478703704,29.8032168922834 +2019-02-07 11:00:00,25.0,0.484391534,29.803714706118882 +2019-02-07 11:15:00,25.0,0.486243386,29.804211902089463 +2019-02-07 11:30:00,25.0,0.486243386,29.80470848013119 +2019-02-07 11:45:00,25.0,0.479497354,29.8052044401802 +2019-02-07 12:00:00,25.0,0.480291005,29.8056997821727 +2019-02-07 12:15:00,25.0,0.491798942,29.80619450604497 +2019-02-07 12:30:00,25.0,0.522619048,29.80668861173339 +2019-02-07 12:45:00,25.0,0.523015873,29.807182099174394 +2019-02-07 13:00:00,25.0,0.523544974,29.807674968304514 +2019-02-07 13:15:00,25.0,0.523015873,29.80816721906036 +2019-02-07 13:30:00,25.0,0.521428571,29.808658851378613 +2019-02-07 13:45:00,25.0,0.523809524,29.80914986519604 +2019-02-07 14:00:00,25.0,0.526322751,29.809640260449484 +2019-02-07 14:15:00,25.0,0.525529101,29.81013003707587 +2019-02-07 14:30:00,25.0,0.523941799,29.8106191950122 +2019-02-07 14:45:00,25.0,0.524206349,29.81110773419556 +2019-02-07 15:00:00,25.0,0.520502646,29.811595654563114 +2019-02-07 15:15:00,25.0,0.513227513,29.8120829560521 +2019-02-07 15:30:00,25.0,0.522089947,29.812569638599847 +2019-02-07 15:45:00,25.0,0.52037037,29.81305570214375 +2019-02-07 16:00:00,25.0,0.518253968,29.813541146621294 +2019-02-07 16:15:00,25.0,0.56521164,29.81402597197004 +2019-02-07 16:30:00,25.0,0.630820106,29.814510178127627 +2019-02-07 16:45:00,25.0,0.62989418,29.814993765031772 +2019-02-07 17:00:00,25.0,0.611507937,29.815476732620283 +2019-02-07 17:15:00,25.0,0.607804233,29.815959080831036 +2019-02-07 17:30:00,25.0,0.626719577,29.816440809601986 +2019-02-07 17:45:00,25.0,0.627248677,29.81692191887118 +2019-02-07 18:00:00,25.0,0.628571429,29.81740240857673 +2019-02-07 18:15:00,25.0,0.623544974,29.817882278656835 +2019-02-07 18:30:00,25.0,0.531084656,29.818361529049778 +2019-02-07 18:45:00,25.0,0.531084656,29.818840159693913 +2019-02-07 19:00:00,25.0,0.531084656,29.819318170527673 +2019-02-07 19:15:00,25.0,0.52962963,29.819795561489585 +2019-02-07 19:30:00,25.0,0.529761905,29.82027233251824 +2019-02-07 19:45:00,25.0,0.52989418,29.820748483552315 +2019-02-07 20:00:00,25.0,0.528439153,29.821224014530564 +2019-02-07 20:15:00,25.0,0.524338624,29.82169892539183 +2019-02-07 20:30:00,25.0,0.524603175,29.822173216075022 +2019-02-07 20:45:00,25.0,0.528306878,29.82264688651914 +2019-02-07 21:00:00,25.0,0.531481481,29.823119936663257 +2019-02-07 21:15:00,25.0,0.556084656,29.82359236644653 +2019-02-07 21:30:00,25.0,0.58478836,29.82406417580819 +2019-02-07 21:45:00,25.0,0.583201058,29.824535364687556 +2019-02-07 22:00:00,25.0,0.582936508,29.825005933024023 +2019-02-07 22:15:00,25.0,0.593915344,29.82547588075706 +2019-02-07 22:30:00,25.0,0.621296296,29.82594520782623 +2019-02-07 22:45:00,25.0,0.62010582,29.82641391417116 +2019-02-07 23:00:00,25.0,0.620502646,29.82688199973156 +2019-02-07 23:15:00,25.0,0.622089947,29.827349464447238 +2019-02-07 23:30:00,25.0,0.620502646,29.827816308258058 +2019-02-07 23:45:00,25.0,0.622354497,29.828282531103973 +2019-02-08 00:00:00,25.0,0.621428571,29.828748132925018 +2019-02-08 00:15:00,25.0,0.549603175,29.829213113661304 +2019-02-08 00:30:00,25.0,0.517328042,29.829677473253028 +2019-02-08 00:45:00,25.0,0.517724868,29.830141211640466 +2019-02-08 01:00:00,25.0,0.518253968,29.83060432876396 +2019-02-08 01:15:00,25.0,0.517063492,29.83106682456395 +2019-02-08 01:30:00,25.0,0.515740741,29.83152869898095 +2019-02-08 01:45:00,25.0,0.483597884,29.83198995195555 +2019-02-08 02:00:00,25.0,0.464550265,29.832450583428425 +2019-02-08 02:15:00,25.0,0.464417989,29.832910593340323 +2019-02-08 02:30:00,25.0,0.463359788,29.833369981632078 +2019-02-08 02:45:00,25.0,0.464285714,29.833828748244606 +2019-02-08 03:00:00,25.0,0.462301587,29.834286893118893 +2019-02-08 03:15:00,25.0,0.460846561,29.834744416196017 +2019-02-08 03:30:00,25.0,0.480026455,29.83520131741713 +2019-02-08 03:45:00,25.0,0.501455026,29.835657596723465 +2019-02-08 04:00:00,25.0,0.51547619,29.83611325405633 +2019-02-08 04:15:00,25.0,0.541005291,29.836568289357118 +2019-02-08 04:30:00,25.0,0.541269841,29.8370227025673 +2019-02-08 04:45:00,25.0,0.544973545,29.837476493628436 +2019-02-08 05:00:00,25.0,0.560714286,29.83792966248215 +2019-02-08 05:15:00,25.0,0.608465608,29.83838220907016 +2019-02-08 05:30:00,25.0,0.63531746,29.838834133334252 +2019-02-08 05:45:00,25.0,0.658862434,29.839285435216308 +2019-02-08 06:00:00,25.0,0.656746032,29.839736114658272 +2019-02-08 06:15:00,25.0,0.656481481,29.840186171602184 +2019-02-08 06:30:00,25.0,0.65026455,29.840635605990148 +2019-02-08 06:45:00,25.0,0.664285714,29.84108441776436 +2019-02-08 07:00:00,25.0,0.668915344,29.841532606867098 +2019-02-08 07:15:00,25.0,0.640740741,29.841980173240707 +2019-02-08 07:30:00,25.0,0.638095238,29.842427116827626 +2019-02-08 07:45:00,25.0,0.641137566,29.842873437570365 +2019-02-08 08:00:00,25.0,0.644312169,29.843319135411516 +2019-02-08 08:15:00,25.0,0.645502646,29.843764210293756 +2019-02-08 08:30:00,25.0,0.642857143,29.844208662159836 +2019-02-08 08:45:00,25.0,0.642195767,29.84465249095259 +2019-02-08 09:00:00,25.0,0.646825397,29.845095696614933 +2019-02-08 09:15:00,25.0,0.648941799,29.84553827908986 +2019-02-08 09:30:00,25.0,0.64973545,29.84598023832044 +2019-02-08 09:45:00,25.0,0.617989418,29.84642157424983 +2019-02-08 10:00:00,25.0,0.537830688,29.846862286821267 +2019-02-08 10:15:00,25.0,0.532010582,29.84730237597806 +2019-02-08 10:30:00,25.0,0.530026455,29.847741841663606 +2019-02-08 10:45:00,25.0,0.525132275,29.848180683821383 +2019-02-08 11:00:00,25.0,0.525925926,29.848618902394943 +2019-02-08 11:15:00,25.0,0.532275132,29.849056497327922 +2019-02-08 11:30:00,25.0,0.537037037,29.849493468564035 +2019-02-08 11:45:00,25.0,0.537698413,29.84992981604708 +2019-02-08 12:00:00,25.0,0.536243386,29.850365539720926 +2019-02-08 12:15:00,25.0,0.53478836,29.850800639529538 +2019-02-08 12:30:00,25.0,0.532539683,29.85123511541695 +2019-02-08 12:45:00,25.0,0.529100529,29.851668967327278 +2019-02-08 13:00:00,25.0,0.526455026,29.852102195204715 +2019-02-08 13:15:00,25.0,0.528703704,29.852534798993545 +2019-02-08 13:30:00,25.0,0.529365079,29.85296677863812 +2019-02-08 13:45:00,25.0,0.53042328,29.85339813408288 +2019-02-08 14:00:00,25.0,0.526587302,29.853828865272348 +2019-02-08 14:15:00,25.0,0.527777778,29.85425897215111 +2019-02-08 14:30:00,25.0,0.533862434,29.854688454663858 +2019-02-08 14:45:00,25.0,0.537698413,29.855117312755343 +2019-02-08 15:00:00,25.0,0.573412698,29.855545546370408 +2019-02-08 15:15:00,25.0,0.616269841,29.855973155453967 +2019-02-08 15:30:00,25.0,0.637301587,29.856400139951027 +2019-02-08 15:45:00,25.0,0.643650794,29.856826499806665 +2019-02-08 16:00:00,25.0,0.641534392,29.85725223496604 +2019-02-08 16:15:00,25.0,0.643783069,29.857677345374395 +2019-02-08 16:30:00,25.0,0.654365079,29.858101830977052 +2019-02-08 16:45:00,25.0,0.669973545,29.858525691719414 +2019-02-08 17:00:00,25.0,0.668915344,29.858948927546958 +2019-02-08 17:15:00,25.0,0.667989418,29.85937153840525 +2019-02-08 17:30:00,25.0,0.66984127,29.85979352423993 +2019-02-08 17:45:00,25.0,0.669708995,29.860214884996726 +2019-02-08 18:00:00,25.0,0.655555556,29.860635620621437 +2019-02-08 18:15:00,25.0,0.643253968,29.86105573105995 +2019-02-08 18:30:00,25.0,0.643915344,29.861475216258228 +2019-02-08 18:45:00,25.0,0.644312169,29.861894076162315 +2019-02-08 19:00:00,25.0,0.64457672,29.862312310718337 +2019-02-08 19:15:00,25.0,0.644444444,29.862729919872503 +2019-02-08 19:30:00,25.0,0.644708995,29.863146903571096 +2019-02-08 19:45:00,25.0,0.644047619,29.863563261760483 +2019-02-08 20:00:00,25.0,0.642989418,29.863978994387107 +2019-02-08 20:15:00,25.0,0.641798942,29.8643941013975 +2019-02-08 20:30:00,25.0,0.64047619,29.864808582738274 +2019-02-08 20:45:00,25.0,0.640608466,29.86522243835611 +2019-02-08 21:00:00,25.0,0.640608466,29.86563566819778 +2019-02-08 21:15:00,25.0,0.640608466,29.866048272210133 +2019-02-08 21:30:00,25.0,0.640873016,29.866460250340097 +2019-02-08 21:45:00,25.0,0.640608466,29.866871602534687 +2019-02-08 22:00:00,25.0,0.641137566,29.86728232874099 +2019-02-08 22:15:00,25.0,0.641666667,29.86769242890618 +2019-02-08 22:30:00,25.0,0.641269841,29.868101902977507 +2019-02-08 22:45:00,25.0,0.64047619,29.868510750902306 +2019-02-08 23:00:00,25.0,0.622354497,29.868918972627988 +2019-02-08 23:15:00,25.0,0.600396825,29.869326568102046 +2019-02-08 23:30:00,25.0,0.56521164,29.869733537272054 +2019-02-08 23:45:00,25.0,0.535846561,29.870139880085674 +2019-02-09 00:00:00,25.0,0.53531746,29.87054559649063 +2019-02-09 00:15:00,25.0,0.53505291,29.87095068643474 +2019-02-09 00:30:00,25.0,0.534656085,29.871355149865906 +2019-02-09 00:45:00,25.0,0.53505291,29.871758986732104 +2019-02-09 01:00:00,25.0,0.535582011,29.87216219698139 +2019-02-09 01:15:00,25.0,0.535714286,29.8725647805619 +2019-02-09 01:30:00,25.0,0.535978836,29.87296673742185 +2019-02-09 01:45:00,25.0,0.535582011,29.873368067509553 +2019-02-09 02:00:00,25.0,0.534920635,29.873768770773374 +2019-02-09 02:15:00,25.0,0.535185185,29.874168847161783 +2019-02-09 02:30:00,25.0,0.53505291,29.874568296623316 +2019-02-09 02:45:00,25.0,0.53531746,29.8749671191066 +2019-02-09 03:00:00,25.0,0.535449735,29.87536531456033 +2019-02-09 03:15:00,25.0,0.535449735,29.875762882933294 +2019-02-09 03:30:00,25.0,0.53452381,29.87615982417436 +2019-02-09 03:45:00,25.0,0.53452381,29.876556138232463 +2019-02-09 04:00:00,25.0,0.535582011,29.876951825056633 +2019-02-09 04:15:00,25.0,0.534920635,29.87734688459598 +2019-02-09 04:30:00,25.0,0.534656085,29.877741316799682 +2019-02-09 04:45:00,25.0,0.535185185,29.878135121617014 +2019-02-09 05:00:00,25.0,0.535846561,29.878528298997317 +2019-02-09 05:15:00,25.0,0.535714286,29.878920848890026 +2019-02-09 05:30:00,25.0,0.535582011,29.87931277124465 +2019-02-09 05:45:00,25.0,0.535449735,29.87970406601077 +2019-02-09 06:00:00,25.0,0.535449735,29.88009473313807 +2019-02-09 06:15:00,25.0,0.534920635,29.88048477257629 +2019-02-09 06:30:00,25.0,0.534656085,29.880874184275267 +2019-02-09 06:45:00,25.0,0.534920635,29.881262968184917 +2019-02-09 07:00:00,25.0,0.53505291,29.881651124255228 +2019-02-09 07:15:00,25.0,0.53478836,29.88203865243628 +2019-02-09 07:30:00,25.0,0.53505291,29.88242555267822 +2019-02-09 07:45:00,25.0,0.53531746,29.882811824931295 +2019-02-09 08:00:00,25.0,0.534920635,29.883197469145813 +2019-02-09 08:15:00,25.0,0.534920635,29.88358248527218 +2019-02-09 08:30:00,25.0,0.53505291,29.88396687326086 +2019-02-09 08:45:00,25.0,0.534391534,29.88435063306243 +2019-02-09 09:00:00,25.0,0.533333333,29.884733764627516 +2019-02-09 09:15:00,25.0,0.531613757,29.885116267906845 +2019-02-09 09:30:00,25.0,0.467857143,29.885498142851215 +2019-02-09 09:45:00,25.0,0.449867725,29.885879389411514 +2019-02-09 10:00:00,25.0,0.423412698,29.886260007538702 +2019-02-09 10:15:00,25.0,0.408201058,29.88663999718382 +2019-02-09 10:30:00,25.0,0.397751323,29.887019358297998 +2019-02-09 10:45:00,25.0,0.397751323,29.88739809083244 +2019-02-09 11:00:00,25.0,0.383465608,29.88777619473843 +2019-02-09 11:15:00,25.0,0.377645503,29.888153669967338 +2019-02-09 11:30:00,25.0,0.373280423,29.888530516470613 +2019-02-09 11:45:00,25.0,0.367195767,29.888906734199782 +2019-02-09 12:00:00,25.0,0.357671958,29.889282323106457 +2019-02-09 12:15:00,25.0,0.356216931,29.889657283142327 +2019-02-09 12:30:00,25.0,0.354761905,29.890031614259165 +2019-02-09 12:45:00,25.0,0.355291005,29.89040531640882 +2019-02-09 13:00:00,25.0,0.372089947,29.89077838954323 +2019-02-09 13:15:00,25.0,0.377645503,29.89115083361441 +2019-02-09 13:30:00,25.0,0.392328042,29.89152264857445 +2019-02-09 13:45:00,25.0,0.405687831,29.891893834375537 +2019-02-09 14:00:00,25.0,0.41494709,29.892264390969913 +2019-02-09 14:15:00,25.0,0.418386243,29.89263431830993 +2019-02-09 14:30:00,25.0,0.407671958,29.893003616347997 +2019-02-09 14:45:00,25.0,0.410449735,29.893372285036623 +2019-02-09 15:00:00,25.0,0.412169312,29.89374032432838 +2019-02-09 15:15:00,25.0,0.420238095,29.894107734175936 +2019-02-09 15:30:00,25.0,0.429232804,29.894474514532032 +2019-02-09 15:45:00,25.0,0.436640212,29.89484066534949 +2019-02-09 16:00:00,25.0,0.440608466,29.895206186581223 +2019-02-09 16:15:00,25.0,0.447751323,29.895571078180208 +2019-02-09 16:30:00,25.0,0.449867725,29.895935340099513 +2019-02-09 16:45:00,25.0,0.450793651,29.896298972292286 +2019-02-09 17:00:00,25.0,0.452248677,29.89666197471176 +2019-02-09 17:15:00,25.0,0.454100529,29.897024347311238 +2019-02-09 17:30:00,25.0,0.457275132,29.89738609004412 +2019-02-09 17:45:00,25.0,0.459391534,29.89774720286387 +2019-02-09 18:00:00,25.0,0.461772487,29.898107685724042 +2019-02-09 18:15:00,25.0,0.462962963,29.89846753857827 +2019-02-09 18:30:00,25.0,0.464153439,29.89882676138027 +2019-02-09 18:45:00,25.0,0.465343915,29.89918535408384 +2019-02-09 19:00:00,25.0,0.465740741,29.899543316642855 +2019-02-09 19:15:00,25.0,0.465873016,29.899900649011276 +2019-02-09 19:30:00,25.0,0.466137566,29.900257351143136 +2019-02-09 19:45:00,25.0,0.466269841,29.900613422992556 +2019-02-09 20:00:00,25.0,0.474338624,29.900968864513743 +2019-02-09 20:15:00,25.0,0.492195767,29.901323675660976 +2019-02-09 20:30:00,25.0,0.492460317,29.901677856388616 +2019-02-09 20:45:00,25.0,0.492460317,29.90203140665111 +2019-02-09 21:00:00,25.0,0.492195767,29.90238432640298 +2019-02-09 21:15:00,25.0,0.492857143,29.90273661559884 +2019-02-09 21:30:00,25.0,0.492989418,29.903088274193372 +2019-02-09 21:45:00,25.0,0.492857143,29.903439302141347 +2019-02-09 22:00:00,25.0,0.492063492,29.903789699397613 +2019-02-09 22:15:00,25.0,0.491534392,29.904139465917105 +2019-02-09 22:30:00,25.0,0.51031746,29.90448860165483 +2019-02-09 22:45:00,25.0,0.531481481,29.904837106565886 +2019-02-09 23:00:00,25.0,0.531216931,29.90518498060544 +2019-02-09 23:15:00,25.0,0.530820106,29.90553222372876 +2019-02-09 23:30:00,25.0,0.530687831,29.905878835891173 +2019-02-09 23:45:00,25.0,0.53015873,29.9062248170481 +2019-02-10 00:00:00,25.0,0.530952381,29.90657016715504 +2019-02-10 00:15:00,25.0,0.530026455,29.906914886167574 +2019-02-10 00:30:00,25.0,0.530555556,29.907258974041362 +2019-02-10 00:45:00,25.0,0.53015873,29.907602430732148 +2019-02-10 01:00:00,25.0,0.55952381,29.907945256195752 +2019-02-10 01:15:00,25.0,0.57037037,29.908287450388084 +2019-02-10 01:30:00,25.0,0.57010582,29.908629013265127 +2019-02-10 01:45:00,25.0,0.569973545,29.908969944782953 +2019-02-10 02:00:00,25.0,0.569312169,29.909310244897704 +2019-02-10 02:15:00,25.0,0.567857143,29.909649913565616 +2019-02-10 02:30:00,25.0,0.562566138,29.909988950742996 +2019-02-10 02:45:00,25.0,0.561375661,29.910327356386237 +2019-02-10 03:00:00,25.0,0.562830688,29.91066513045181 +2019-02-10 03:15:00,25.0,0.584391534,29.911002272896276 +2019-02-10 03:30:00,25.0,0.657804233,29.911338783676268 +2019-02-10 03:45:00,25.0,0.653042328,29.911674662748503 +2019-02-10 04:00:00,25.0,0.651455026,29.912009910069777 +2019-02-10 04:15:00,25.0,0.648544974,29.91234452559697 +2019-02-10 04:30:00,25.0,0.647883598,29.912678509287048 +2019-02-10 04:45:00,25.0,0.655687831,29.91301186109705 +2019-02-10 05:00:00,25.0,0.657010582,29.9133445809841 +2019-02-10 05:15:00,25.0,0.656878307,29.913676668905403 +2019-02-10 05:30:00,25.0,0.689550265,29.914008124818242 +2019-02-10 05:45:00,25.0,0.683862434,29.914338948679987 +2019-02-10 06:00:00,25.0,0.679100529,29.914669140448087 +2019-02-10 06:15:00,25.0,0.64047619,29.914998700080073 +2019-02-10 06:30:00,25.0,0.59047619,29.915327627533554 +2019-02-10 06:45:00,25.0,0.527910053,29.915655922766224 +2019-02-10 07:00:00,25.0,0.493650794,29.915983585735855 +2019-02-10 07:15:00,25.0,0.472354497,29.916310616400303 +2019-02-10 07:30:00,25.0,0.44021164,29.91663701471751 +2019-02-10 07:45:00,25.0,0.407936508,29.916962780645484 +2019-02-10 08:00:00,25.0,0.379232804,29.917287914142328 +2019-02-10 08:15:00,25.0,0.35489418,29.917612415166225 +2019-02-10 08:30:00,25.0,0.314550265,29.917936283675438 +2019-02-10 08:45:00,25.0,0.279761905,29.918259519628307 +2019-02-10 09:00:00,25.0,0.250529101,29.91858212298326 +2019-02-10 09:15:00,25.0,0.232539683,29.918904093698796 +2019-02-10 09:30:00,25.0,0.218386243,29.91922543173351 +2019-02-10 09:45:00,25.0,0.201322751,29.919546137046066 +2019-02-10 10:00:00,25.0,0.200925926,29.919866209595217 +2019-02-10 10:15:00,25.0,0.198941799,29.920185649339793 +2019-02-10 10:30:00,25.0,0.202380952,29.92050445623871 +2019-02-10 10:45:00,25.0,0.197751323,29.920822630250957 +2019-02-10 11:00:00,25.0,0.181613757,29.92114017133561 +2019-02-10 11:15:00,25.0,0.169179894,29.921457079451834 +2019-02-10 11:30:00,25.0,0.169973545,29.92177335455886 +2019-02-10 11:45:00,25.0,0.160582011,29.922088996616008 +2019-02-10 12:00:00,25.0,0.15,29.922404005582685 +2019-02-10 12:15:00,25.0,0.143253968,29.922718381418367 +2019-02-10 12:30:00,25.0,0.151322751,29.92303212408262 +2019-02-10 12:45:00,25.0,0.150661376,29.923345233535095 +2019-02-10 13:00:00,25.0,0.149867725,29.923657709735515 +2019-02-10 13:15:00,25.0,0.148280423,29.92396955264369 +2019-02-10 13:30:00,25.0,0.15,29.924280762219507 +2019-02-10 13:45:00,25.0,0.159126984,29.92459133842294 +2019-02-10 14:00:00,25.0,0.163624339,29.92490128121404 +2019-02-10 14:15:00,25.0,0.169708995,29.925210590552943 +2019-02-10 14:30:00,25.0,0.196428571,29.925519266399867 +2019-02-10 14:45:00,25.0,0.220767196,29.925827308715107 +2019-02-10 15:00:00,25.0,0.239814815,29.926134717459043 +2019-02-10 15:15:00,25.0,0.264153439,29.926441492592133 +2019-02-10 15:30:00,25.0,0.294444444,29.926747634074918 +2019-02-10 15:45:00,25.0,0.312301587,29.927053141868026 +2019-02-10 16:00:00,25.0,0.325132275,29.92735801593216 +2019-02-10 16:15:00,25.0,0.332275132,29.927662256228103 +2019-02-10 16:30:00,25.0,0.345238095,29.927965862716732 +2019-02-10 16:45:00,25.0,0.345899471,29.928268835358985 +2019-02-10 17:00:00,25.0,0.336904762,29.928571174115902 +2019-02-10 17:15:00,25.0,0.323544974,29.92887287894859 +2019-02-10 17:30:00,25.0,0.341005291,29.929173949818242 +2019-02-10 17:45:00,25.0,0.372619048,29.929474386686138 +2019-02-10 18:00:00,25.0,0.419708995,29.929774189513637 +2019-02-10 18:15:00,25.0,0.45489418,29.93007335826217 +2019-02-10 18:30:00,25.0,0.482142857,29.930371892893262 +2019-02-10 18:45:00,25.0,0.52010582,29.930669793368516 +2019-02-10 19:00:00,25.0,0.548544974,29.930967059649614 +2019-02-10 19:15:00,25.0,0.581613757,29.93126369169832 +2019-02-10 19:30:00,25.0,0.583465608,29.93155968947648 +2019-02-10 19:45:00,25.0,0.584920635,29.931855052946023 +2019-02-10 20:00:00,25.0,0.606481481,29.932149782068958 +2019-02-10 20:15:00,25.0,0.609656085,29.932443876807376 +2019-02-10 20:30:00,25.0,0.616931217,29.932737337123456 +2019-02-10 20:45:00,25.0,0.630291005,29.933030162979442 +2019-02-10 21:00:00,25.0,0.653174603,29.933322354337676 +2019-02-10 21:15:00,25.0,0.658068783,29.933613911160577 +2019-02-10 21:30:00,25.0,0.651851852,29.933904833410644 +2019-02-10 21:45:00,25.0,0.63505291,29.93419512105045 +2019-02-10 22:00:00,25.0,0.622222222,29.93448477404267 +2019-02-10 22:15:00,25.0,0.638227513,29.93477379235004 +2019-02-10 22:30:00,25.0,0.651719577,29.935062175935386 +2019-02-10 22:45:00,25.0,0.624206349,29.935349924761617 +2019-02-10 23:00:00,25.0,0.601587302,29.935637038791725 +2019-02-10 23:15:00,25.0,0.606084656,29.935923517988776 +2019-02-10 23:30:00,25.0,0.60542328,29.936209362315925 +2019-02-10 23:45:00,25.0,0.602116402,29.936494571736404 +2019-02-11 00:00:00,25.0,0.601322751,29.93677914621353 +2019-02-11 00:15:00,25.0,0.589417989,29.9370630857107 +2019-02-11 00:30:00,25.0,0.589021164,29.937346390191397 +2019-02-11 00:45:00,25.0,0.546560847,29.937629059619177 +2019-02-11 01:00:00,25.0,0.455026455,29.93791109395768 +2019-02-11 01:15:00,25.0,0.465740741,29.93819249317064 +2019-02-11 01:30:00,25.0,0.455952381,29.93847325722185 +2019-02-11 01:45:00,25.0,0.464550265,29.938753386075206 +2019-02-11 02:00:00,25.0,0.469312169,29.939032879694675 +2019-02-11 02:15:00,25.0,0.478439153,29.93931173804431 +2019-02-11 02:30:00,25.0,0.483730159,29.93958996108824 +2019-02-11 02:45:00,25.0,0.486640212,29.93986754879068 +2019-02-11 03:00:00,25.0,0.484920635,29.94014450111593 +2019-02-11 03:15:00,25.0,0.47037037,29.940420818028365 +2019-02-11 03:30:00,25.0,0.470634921,29.94069649949244 +2019-02-11 03:45:00,25.0,0.482142857,29.940971545472703 +2019-02-11 04:00:00,25.0,0.48968254,29.941245955933773 +2019-02-11 04:15:00,25.0,0.489417989,29.94151973084036 +2019-02-11 04:30:00,25.0,0.488756614,29.94179287015724 +2019-02-11 04:45:00,25.0,0.48968254,29.942065373849292 +2019-02-11 05:00:00,25.0,0.489021164,29.94233724188146 +2019-02-11 05:15:00,25.0,0.485449735,29.94260847421878 +2019-02-11 05:30:00,25.0,0.488624339,29.942879070826358 +2019-02-11 05:45:00,25.0,0.486375661,29.943149031669396 +2019-02-11 06:00:00,25.0,0.484391534,29.94341835671317 +2019-02-11 06:15:00,25.0,0.484656085,29.94368704592304 +2019-02-11 06:30:00,25.0,0.485846561,29.94395509926444 +2019-02-11 06:45:00,25.0,0.48505291,29.9442225167029 +2019-02-11 07:00:00,25.0,0.487962963,29.94448929820402 +2019-02-11 07:15:00,25.0,0.488227513,29.944755443733484 +2019-02-11 07:30:00,25.0,0.485449735,29.945020953257064 +2019-02-11 07:45:00,25.0,0.488888889,29.94528582674061 +2019-02-11 08:00:00,25.0,0.489814815,29.94555006415005 +2019-02-11 08:15:00,25.0,0.492063492,29.9458136654514 +2019-02-11 08:30:00,25.0,0.492592593,29.946076630610754 +2019-02-11 08:45:00,25.0,0.492857143,29.946338959594286 +2019-02-11 09:00:00,25.0,0.491931217,29.94660065236826 +2019-02-11 09:15:00,25.0,0.493518519,29.94686170889901 +2019-02-11 09:30:00,25.0,0.493121693,29.947122129152966 +2019-02-11 09:45:00,25.0,0.493518519,29.947381913096624 +2019-02-11 10:00:00,25.0,0.492195767,29.947641060696576 +2019-02-11 10:15:00,25.0,0.473809524,29.94789957191949 +2019-02-11 10:30:00,25.0,0.468650794,29.94815744673211 +2019-02-11 10:45:00,25.0,0.457010582,29.948414685101273 +2019-02-11 11:00:00,25.0,0.442063492,29.94867128699389 +2019-02-11 11:15:00,25.0,0.406084656,29.948927252376958 +2019-02-11 11:30:00,25.0,0.363492063,29.94918258121755 +2019-02-11 11:45:00,25.0,0.363492063,29.94943727348283 +2019-02-11 12:00:00,25.0,0.363624339,29.949691329140038 +2019-02-11 12:15:00,25.0,0.342592593,29.94994474815649 +2019-02-11 12:30:00,25.0,0.320634921,29.9501975304996 +2019-02-11 12:45:00,25.0,0.32037037,29.950449676136852 +2019-02-11 13:00:00,25.0,0.32037037,29.950701185035815 +2019-02-11 13:15:00,25.0,0.319444444,29.950952057164134 +2019-02-11 13:30:00,25.0,0.318121693,29.951202292489544 +2019-02-11 13:45:00,25.0,0.318915344,29.95145189097986 +2019-02-11 14:00:00,25.0,0.318518519,29.951700852602983 +2019-02-11 14:15:00,25.0,0.317460317,29.95194917732688 +2019-02-11 14:30:00,25.0,0.316005291,29.95219686511962 +2019-02-11 14:45:00,25.0,0.315079365,29.952443915949342 +2019-02-11 15:00:00,25.0,0.311904762,29.952690329784268 +2019-02-11 15:15:00,25.0,0.348809524,29.95293610659271 +2019-02-11 15:30:00,25.0,0.368915344,29.953181246343043 +2019-02-11 15:45:00,25.0,0.424074074,29.95342574900375 +2019-02-11 16:00:00,25.0,0.416798942,29.953669614543372 +2019-02-11 16:15:00,25.0,0.411904762,29.953912842930553 +2019-02-11 16:30:00,25.0,0.416798942,29.954155434133998 +2019-02-11 16:45:00,25.0,0.419444444,29.954397388122512 +2019-02-11 17:00:00,25.0,0.44457672,29.954638704864973 +2019-02-11 17:15:00,25.0,0.443783069,29.954879384330336 +2019-02-11 17:30:00,25.0,0.44537037,29.955119426487652 +2019-02-11 17:45:00,25.0,0.479365079,29.955358831306043 +2019-02-11 18:00:00,25.0,0.503306878,29.955597598754714 +2019-02-11 18:15:00,25.0,0.506746032,29.95583572880296 +2019-02-11 18:30:00,25.0,0.504761905,29.956073221420144 +2019-02-11 18:45:00,25.0,0.48531746,29.95631007657573 +2019-02-11 19:00:00,25.0,0.450529101,29.956546294239242 +2019-02-11 19:15:00,25.0,0.444047619,29.956781874380304 +2019-02-11 19:30:00,25.0,0.494708995,29.95701681696861 +2019-02-11 19:45:00,25.0,0.501851852,29.95725112197395 +2019-02-11 20:00:00,25.0,0.521560847,29.957484789366177 +2019-02-11 20:15:00,25.0,0.519444444,29.957717819115246 +2019-02-11 20:30:00,25.0,0.518650794,29.957950211191175 +2019-02-11 20:45:00,25.0,0.515740741,29.958181965564076 +2019-02-11 21:00:00,25.0,0.492460317,29.958413082204142 +2019-02-11 21:15:00,25.0,0.473412698,29.958643561081647 +2019-02-11 21:30:00,25.0,0.491931217,29.958873402166944 +2019-02-11 21:45:00,25.0,0.50952381,29.959102605430473 +2019-02-11 22:00:00,25.0,0.556216931,29.95933117084275 +2019-02-11 22:15:00,25.0,0.593783069,29.959559098374378 +2019-02-11 22:30:00,25.0,0.577910053,29.959786387996036 +2019-02-11 22:45:00,25.0,0.641666667,29.9600130396785 +2019-02-11 23:00:00,25.0,0.638359788,29.96023905339261 +2019-02-11 23:15:00,25.0,0.638888889,29.960464429109294 +2019-02-11 23:30:00,25.0,0.637433862,29.96068916679957 +2019-02-11 23:45:00,25.0,0.650661376,29.960913266434524 +2019-02-12 00:00:00,25.0,0.659920635,29.96113672798534 +2019-02-12 00:15:00,25.0,0.643386243,29.96135955142327 +2019-02-12 00:30:00,25.0,0.617724868,29.961581736719655 +2019-02-12 00:45:00,25.0,0.598677249,29.96180328384592 +2019-02-12 01:00:00,25.0,0.623809524,29.962024192773566 +2019-02-12 01:15:00,25.0,0.616005291,29.96224446347418 +2019-02-12 01:30:00,25.0,0.580555556,29.96246409591943 +2019-02-12 01:45:00,25.0,0.603968254,29.962683090081068 +2019-02-12 02:00:00,25.0,0.622354497,29.962901445930925 +2019-02-12 02:15:00,25.0,0.593253968,29.963119163440915 +2019-02-12 02:30:00,25.0,0.578703704,29.963336242583036 +2019-02-12 02:45:00,25.0,0.59457672,29.963552683329368 +2019-02-12 03:00:00,25.0,0.613624339,29.963768485652068 +2019-02-12 03:15:00,25.0,0.596825397,29.963983649523378 +2019-02-12 03:30:00,25.0,0.602248677,29.96419817491563 +2019-02-12 03:45:00,25.0,0.581084656,29.96441206180123 +2019-02-12 04:00:00,25.0,0.56957672,29.964625310152663 +2019-02-12 04:15:00,25.0,0.595238095,29.9648379199425 +2019-02-12 04:30:00,25.0,0.595899471,29.965049891143398 +2019-02-12 04:45:00,25.0,0.581084656,29.965261223728092 +2019-02-12 05:00:00,25.0,0.541666667,29.9654719176694 +2019-02-12 05:15:00,25.0,0.528306878,29.965681972940224 +2019-02-12 05:30:00,25.0,0.501058201,29.96589138951354 +2019-02-12 05:45:00,25.0,0.505026455,29.96610016736242 +2019-02-12 06:00:00,25.0,0.470899471,29.966308306460004 +2019-02-12 06:15:00,25.0,0.442857143,29.966515806779526 +2019-02-12 06:30:00,25.0,0.364153439,29.96672266829429 +2019-02-12 06:45:00,25.0,0.31005291,29.966928890977698 +2019-02-12 07:00:00,25.0,0.296825397,29.967134474803217 +2019-02-12 07:15:00,25.0,0.283597884,29.967339419744413 +2019-02-12 07:30:00,25.0,0.271296296,29.967543725774917 +2019-02-12 07:45:00,25.0,0.264021164,29.967747392868453 +2019-02-12 08:00:00,25.0,0.247619048,29.967950420998825 +2019-02-12 08:15:00,25.0,0.235185185,29.968152810139923 +2019-02-12 08:30:00,25.0,0.216666667,29.96835456026571 +2019-02-12 08:45:00,25.0,0.185846561,29.968555671350238 +2019-02-12 09:00:00,25.0,0.16468254,29.968756143367642 +2019-02-12 09:15:00,25.0,0.153439153,29.968955976292136 +2019-02-12 09:30:00,25.0,0.14537037,29.969155170098016 +2019-02-12 09:45:00,25.0,0.143121693,29.96935372475966 +2019-02-12 10:00:00,25.0,0.129365079,29.96955164025153 +2019-02-12 10:15:00,25.0,0.127645503,29.96974891654817 +2019-02-12 10:30:00,25.0,0.138095238,29.96994555362421 +2019-02-12 10:45:00,25.0,0.147222222,29.97014155145435 +2019-02-12 11:00:00,25.0,0.151190476,29.970336910013387 +2019-02-12 11:15:00,25.0,0.156746032,29.97053162927619 +2019-02-12 11:30:00,25.0,0.16957672,29.970725709217717 +2019-02-12 11:45:00,25.0,0.183333333,29.970919149813003 +2019-02-12 12:00:00,25.0,0.193253968,29.971111951037166 +2019-02-12 12:15:00,25.0,0.192460317,29.97130411286541 +2019-02-12 12:30:00,25.0,0.19484127,29.971495635273016 +2019-02-12 12:45:00,25.0,0.188492063,29.97168651823535 +2019-02-12 13:00:00,25.0,0.187301587,29.971876761727863 +2019-02-12 13:15:00,25.0,0.208730159,29.972066365726086 +2019-02-12 13:30:00,25.0,0.264153439,29.972255330205627 +2019-02-12 13:45:00,25.0,0.302645503,29.972443655142182 +2019-02-12 14:00:00,25.0,0.317195767,29.972631340511533 +2019-02-12 14:15:00,25.0,0.347619048,29.972818386289532 +2019-02-12 14:30:00,25.0,0.370899471,29.97300479245213 +2019-02-12 14:45:00,25.0,0.375925926,29.973190558975343 +2019-02-12 15:00:00,25.0,0.350925926,29.973375685835283 +2019-02-12 15:15:00,25.0,0.348148148,29.97356017300813 +2019-02-12 15:30:00,25.0,0.356481481,29.973744020470168 +2019-02-12 15:45:00,25.0,0.37037037,29.973927228197738 +2019-02-12 16:00:00,25.0,0.389153439,29.974109796167284 +2019-02-12 16:15:00,25.0,0.431613757,29.974291724355318 +2019-02-12 16:30:00,25.0,0.463624339,29.97447301273844 +2019-02-12 16:45:00,25.0,0.46494709,29.974653661293335 +2019-02-12 17:00:00,25.0,0.465740741,29.974833669996766 +2019-02-12 17:15:00,25.0,0.472619048,29.975013038825583 +2019-02-12 17:30:00,25.0,0.489417989,29.975191767756712 +2019-02-12 17:45:00,25.0,0.506084656,29.975369856767163 +2019-02-12 18:00:00,25.0,0.527777778,29.975547305834034 +2019-02-12 18:15:00,25.0,0.550925926,29.975724114934497 +2019-02-12 18:30:00,25.0,0.561375661,29.975900284045814 +2019-02-12 18:45:00,25.0,0.574338624,29.976075813145325 +2019-02-12 19:00:00,25.0,0.595899471,29.97625070221045 +2019-02-12 19:15:00,25.0,0.606084656,29.9764249512187 +2019-02-12 19:30:00,25.0,0.54457672,29.976598560147657 +2019-02-12 19:45:00,25.0,0.519179894,29.976771528974993 +2019-02-12 20:00:00,25.0,0.533730159,29.97694385767846 +2019-02-12 20:15:00,25.0,0.532539683,29.977115546235893 +2019-02-12 20:30:00,25.0,0.533862434,29.977286594625213 +2019-02-12 20:45:00,25.0,0.53968254,29.977457002824412 +2019-02-12 21:00:00,25.0,0.538359788,29.97762677081158 +2019-02-12 21:15:00,25.0,0.588756614,29.97779589856487 +2019-02-12 21:30:00,25.0,0.626190476,29.97796438606254 +2019-02-12 21:45:00,25.0,0.631878307,29.97813223328291 +2019-02-12 22:00:00,25.0,0.640740741,29.978299440204395 +2019-02-12 22:15:00,25.0,0.651587302,29.97846600680549 +2019-02-12 22:30:00,25.0,0.650132275,29.97863193306477 +2019-02-12 22:45:00,25.0,0.634656085,29.978797218960892 +2019-02-12 23:00:00,25.0,0.636507937,29.978961864472595 +2019-02-12 23:15:00,25.0,0.643386243,29.979125869578702 +2019-02-12 23:30:00,25.0,0.642328042,29.979289234258122 +2019-02-12 23:45:00,25.0,0.645899471,29.97945195848984 +2019-02-13 00:00:00,25.0,0.649074074,29.979614042252926 +2019-02-13 00:15:00,25.0,0.658730159,29.979775485526535 +2019-02-13 00:30:00,25.0,0.665343915,29.9799362882899 +2019-02-13 00:45:00,25.0,0.66984127,29.980096450522336 +2019-02-13 01:00:00,25.0,0.671031746,29.980255972203246 +2019-02-13 01:15:00,25.0,0.665873016,29.98041485331211 +2019-02-13 01:30:00,25.0,0.663624339,29.98057309382849 +2019-02-13 01:45:00,25.0,0.662698413,29.98073069373204 +2019-02-13 02:00:00,25.0,0.653042328,29.980887653002483 +2019-02-13 02:15:00,25.0,0.641798942,29.98104397161963 +2019-02-13 02:30:00,25.0,0.638227513,29.98119964956338 +2019-02-13 02:45:00,25.0,0.632407407,29.981354686813706 +2019-02-13 03:00:00,25.0,0.621957672,29.981509083350666 +2019-02-13 03:15:00,25.0,0.615343915,29.981662839154403 +2019-02-13 03:30:00,25.0,0.619179894,29.981815954205143 +2019-02-13 03:45:00,25.0,0.607671958,29.981968428483185 +2019-02-13 04:00:00,25.0,0.593915344,29.982120261968923 +2019-02-13 04:15:00,25.0,0.579232804,29.982271454642827 +2019-02-13 04:30:00,25.0,0.565343915,29.982422006485447 +2019-02-13 04:45:00,25.0,0.554100529,29.982571917477422 +2019-02-13 05:00:00,25.0,0.544179894,29.98272118759947 +2019-02-13 05:15:00,25.0,0.543518519,29.98286981683239 +2019-02-13 05:30:00,25.0,0.536904762,29.98301780515707 +2019-02-13 05:45:00,25.0,0.53042328,29.983165152554463 +2019-02-13 06:00:00,25.0,0.518915344,29.98331185900563 +2019-02-13 06:15:00,25.0,0.498280423,29.983457924491695 +2019-02-13 06:30:00,25.0,0.475,29.983603348993874 +2019-02-13 06:45:00,25.0,0.466666667,29.98374813249346 +2019-02-13 07:00:00,25.0,0.457539683,29.98389227497183 +2019-02-13 07:15:00,25.0,0.44457672,29.984035776410444 +2019-02-13 07:30:00,25.0,0.447089947,29.984178636790844 +2019-02-13 07:45:00,25.0,0.472354497,29.984320856094655 +2019-02-13 08:00:00,25.0,0.483994709,29.98446243430359 +2019-02-13 08:15:00,25.0,0.500661376,29.984603371399434 +2019-02-13 08:30:00,25.0,0.528306878,29.984743667364057 +2019-02-13 08:45:00,25.0,0.541798942,29.98488332217942 +2019-02-13 09:00:00,25.0,0.533068783,29.98502233582756 +2019-02-13 09:15:00,25.0,0.541666667,29.985160708290586 +2019-02-13 09:30:00,25.0,0.558730159,29.98529843955071 +2019-02-13 09:45:00,25.0,0.569047619,29.98543552959022 +2019-02-13 10:00:00,25.0,0.582142857,29.985571978391473 +2019-02-13 10:15:00,25.0,0.576719577,29.985707785936924 +2019-02-13 10:30:00,25.0,0.573280423,29.985842952209104 +2019-02-13 10:45:00,25.0,0.572089947,29.98597747719063 +2019-02-13 11:00:00,25.0,0.574603175,29.986111360864196 +2019-02-13 11:15:00,25.0,0.575132275,29.986244603212583 +2019-02-13 11:30:00,25.0,0.571164021,29.986377204218655 +2019-02-13 11:45:00,25.0,0.562433862,29.986509163865353 +2019-02-13 12:00:00,25.0,0.570634921,29.986640482135705 +2019-02-13 12:15:00,25.0,0.596031746,29.98677115901282 +2019-02-13 12:30:00,25.0,0.613227513,29.98690119447989 +2019-02-13 12:45:00,25.0,0.611772487,29.987030588520195 +2019-02-13 13:00:00,25.0,0.626455026,29.987159341117085 +2019-02-13 13:15:00,25.0,0.651455026,29.987287452254005 +2019-02-13 13:30:00,25.0,0.655555556,29.98741492191447 +2019-02-13 13:45:00,25.0,0.646296296,29.987541750082094 +2019-02-13 14:00:00,25.0,0.646825397,29.987667936740554 +2019-02-13 14:15:00,25.0,0.644444444,29.987793481873627 +2019-02-13 14:30:00,25.0,0.652513228,29.98791838546516 +2019-02-13 14:45:00,25.0,0.662301587,29.988042647499093 +2019-02-13 15:00:00,25.0,0.664550265,29.98816626795944 +2019-02-13 15:15:00,25.0,0.646560847,29.9882892468303 +2019-02-13 15:30:00,25.0,0.634656085,29.988411584095857 +2019-02-13 15:45:00,25.0,0.631349206,29.988533279740373 +2019-02-13 16:00:00,25.0,0.611111111,29.988654333748197 +2019-02-13 16:15:00,25.0,0.605820106,29.98877474610376 +2019-02-13 16:30:00,25.0,0.620899471,29.988894516791575 +2019-02-13 16:45:00,25.0,0.62010582,29.98901364579623 +2019-02-13 17:00:00,25.0,0.610582011,29.98913213310241 +2019-02-13 17:15:00,25.0,0.607539683,29.989249978694872 +2019-02-13 17:30:00,25.0,0.603042328,29.98936718255846 +2019-02-13 17:45:00,25.0,0.58531746,29.989483744678097 +2019-02-13 18:00:00,25.0,0.553174603,29.98959966503879 +2019-02-13 18:15:00,25.0,0.543783069,29.98971494362563 +2019-02-13 18:30:00,25.0,0.533333333,29.989829580423788 +2019-02-13 18:45:00,25.0,0.537830688,29.989943575418526 +2019-02-13 19:00:00,25.0,0.546693122,29.990056928595173 +2019-02-13 19:15:00,25.0,0.552513228,29.990169639939154 +2019-02-13 19:30:00,25.0,0.562169312,29.99028170943597 +2019-02-13 19:45:00,25.0,0.577116402,29.990393137071205 +2019-02-13 20:00:00,25.0,0.590873016,29.99050392283053 +2019-02-13 20:15:00,25.0,0.597619048,29.990614066699695 +2019-02-13 20:30:00,25.0,0.596957672,29.990723568664535 +2019-02-13 20:45:00,25.0,0.61494709,29.99083242871096 +2019-02-13 21:00:00,25.0,0.622354497,29.99094064682497 +2019-02-13 21:15:00,25.0,0.617063492,29.99104822299265 +2019-02-13 21:30:00,25.0,0.625529101,29.991155157200158 +2019-02-13 21:45:00,25.0,0.641798942,29.991261449433743 +2019-02-13 22:00:00,25.0,0.657804233,29.99136709967973 +2019-02-13 22:15:00,25.0,0.655026455,29.991472107924537 +2019-02-13 22:30:00,25.0,0.631878307,29.99157647415465 +2019-02-13 22:45:00,25.0,0.612169312,29.991680198356647 +2019-02-13 23:00:00,25.0,0.608862434,29.991783280517193 +2019-02-13 23:15:00,25.0,0.606216931,29.99188572062302 +2019-02-13 23:30:00,25.0,0.595634921,29.99198751866096 +2019-02-13 23:45:00,25.0,0.576322751,29.992088674617914 +2019-02-14 00:00:00,25.0,0.549338624,29.99218918848087 +2019-02-14 00:15:00,25.0,0.547619048,29.992289060236907 +2019-02-14 00:30:00,25.0,0.542989418,29.992388289873176 +2019-02-14 00:45:00,25.0,0.537037037,29.99248687737691 +2019-02-14 01:00:00,25.0,0.525925926,29.99258482273543 +2019-02-14 01:15:00,25.0,0.498015873,29.992682125936142 +2019-02-14 01:30:00,25.0,0.481349206,29.992778786966525 +2019-02-14 01:45:00,25.0,0.487037037,29.99287480581415 +2019-02-14 02:00:00,25.0,0.490740741,29.992970182466667 +2019-02-14 02:15:00,25.0,0.489285714,29.993064916911806 +2019-02-14 02:30:00,25.0,0.491402116,29.993159009137383 +2019-02-14 02:45:00,25.0,0.475925926,29.9932524591313 +2019-02-14 03:00:00,25.0,0.463227513,29.993345266881526 +2019-02-14 03:15:00,25.0,0.442857143,29.993437432376137 +2019-02-14 03:30:00,25.0,0.453306878,29.99352895560327 +2019-02-14 03:45:00,25.0,0.457142857,29.993619836551158 +2019-02-14 04:00:00,25.0,0.447751323,29.993710075208107 +2019-02-14 04:15:00,25.0,0.428306878,29.993799671562513 +2019-02-14 04:30:00,25.0,0.421825397,29.993888625602853 +2019-02-14 04:45:00,25.0,0.416402116,29.993976937317683 +2019-02-14 05:00:00,25.0,0.425132275,29.994064606695645 +2019-02-14 05:15:00,25.0,0.433465608,29.994151633725465 +2019-02-14 05:30:00,25.0,0.412698413,29.994238018395944 +2019-02-14 05:45:00,25.0,0.388756614,29.994323760695977 +2019-02-14 06:00:00,25.0,0.362169312,29.99440886061453 +2019-02-14 06:15:00,25.0,0.337962963,29.994493318140663 +2019-02-14 06:30:00,25.0,0.312169312,29.994577133263512 +2019-02-14 06:45:00,25.0,0.302380952,29.99466030597229 +2019-02-14 07:00:00,25.0,0.295767196,29.994742836256307 +2019-02-14 07:15:00,25.0,0.308201058,29.99482472410494 +2019-02-14 07:30:00,25.0,0.310449735,29.994905969507666 +2019-02-14 07:45:00,25.0,0.323677249,29.994986572454028 +2019-02-14 08:00:00,25.0,0.335714286,29.99506653293366 +2019-02-14 08:15:00,25.0,0.363359788,29.99514585093628 +2019-02-14 08:30:00,25.0,0.361507937,29.99522452645168 +2019-02-14 08:45:00,25.0,0.355820106,29.995302559469746 +2019-02-14 09:00:00,25.0,0.344973545,29.995379949980443 +2019-02-14 09:15:00,25.0,0.355026455,29.995456697973808 +2019-02-14 09:30:00,25.0,0.379232804,29.99553280343998 +2019-02-14 09:45:00,25.0,0.389285714,29.99560826636916 +2019-02-14 10:00:00,25.0,0.385449735,29.99568308675165 +2019-02-14 10:15:00,25.0,0.382275132,29.995757264577826 +2019-02-14 10:30:00,25.0,0.394179894,29.99583079983814 +2019-02-14 10:45:00,25.0,0.399867725,29.99590369252314 +2019-02-14 11:00:00,25.0,0.411375661,29.995975942623446 +2019-02-14 11:15:00,25.0,0.40489418,29.99604755012977 +2019-02-14 11:30:00,25.0,0.393253968,29.996118515032897 +2019-02-14 11:45:00,25.0,0.390873016,29.996188837323707 +2019-02-14 12:00:00,25.0,0.399206349,29.996258516993144 +2019-02-14 12:15:00,25.0,0.38994709,29.996327554032252 +2019-02-14 12:30:00,25.0,0.382407407,29.996395948432152 +2019-02-14 12:45:00,25.0,0.388227513,29.996463700184044 +2019-02-14 13:00:00,25.0,0.388492063,29.996530809279218 +2019-02-14 13:15:00,25.0,0.388227513,29.996597275709036 +2019-02-14 13:30:00,25.0,0.373677249,29.996663099464953 +2019-02-14 13:45:00,25.0,0.355687831,29.996728280538502 +2019-02-14 14:00:00,25.0,0.343650794,29.9967928189213 +2019-02-14 14:15:00,25.0,0.347486772,29.996856714605045 +2019-02-14 14:30:00,25.0,0.35026455,29.996919967581515 +2019-02-14 14:45:00,25.0,0.360714286,29.99698257784258 +2019-02-14 15:00:00,25.0,0.363624339,29.997044545380184 +2019-02-14 15:15:00,25.0,0.34973545,29.99710587018636 +2019-02-14 15:30:00,25.0,0.342857143,29.997166552253216 +2019-02-14 15:45:00,25.0,0.333465608,29.99722659157295 +2019-02-14 16:00:00,25.0,0.320238095,29.997285988137836 +2019-02-14 16:15:00,25.0,0.31005291,29.99734474194024 +2019-02-14 16:30:00,25.0,0.306084656,29.997402852972595 +2019-02-14 16:45:00,25.0,0.292857143,29.997460321227436 +2019-02-14 17:00:00,25.0,0.285714286,29.99751714669737 +2019-02-14 17:15:00,25.0,0.271296296,29.997573329375086 +2019-02-14 17:30:00,25.0,0.255952381,29.997628869253358 +2019-02-14 17:45:00,25.0,0.246693122,29.99768376632504 +2019-02-14 18:00:00,25.0,0.241137566,29.997738020583075 +2019-02-14 18:15:00,25.0,0.235714286,29.997791632020483 +2019-02-14 18:30:00,25.0,0.230291005,29.997844600630366 +2019-02-14 18:45:00,25.0,0.216798942,29.997896926405918 +2019-02-14 19:00:00,25.0,0.200396825,29.9979486093404 +2019-02-14 19:15:00,25.0,0.19457672,29.99799964942717 +2019-02-14 19:30:00,25.0,0.190608466,29.998050046659664 +2019-02-14 19:45:00,25.0,0.19047619,29.998099801031394 +2019-02-14 20:00:00,25.0,0.185449735,29.998148912535967 +2019-02-14 20:15:00,25.0,0.183597884,29.99819738116706 +2019-02-14 20:30:00,25.0,0.18015873,29.998245206918444 +2019-02-14 20:45:00,25.0,0.178306878,29.998292389783963 +2019-02-14 21:00:00,25.0,0.176190476,29.99833892975755 +2019-02-14 21:15:00,25.0,0.173412698,29.998384826833224 +2019-02-14 21:30:00,25.0,0.176984127,29.998430081005075 +2019-02-14 21:45:00,25.0,0.183862434,29.998474692267287 +2019-02-14 22:00:00,25.0,0.198677249,29.998518660614117 +2019-02-14 22:15:00,25.0,0.218386243,29.998561986039913 +2019-02-14 22:30:00,25.0,0.222089947,29.9986046685391 +2019-02-14 22:45:00,25.0,0.222222222,29.998646708106193 +2019-02-14 23:00:00,25.0,0.224206349,29.998688104735777 +2019-02-14 23:15:00,25.0,0.226851852,29.998728858422535 +2019-02-14 23:30:00,25.0,0.235185185,29.998768969161222 +2019-02-14 23:45:00,25.0,0.241534392,29.99880843694668 +2019-02-15 00:00:00,25.0,0.240608466,29.99884726177383 +2019-02-15 00:15:00,25.0,0.242195767,29.99888544363768 +2019-02-15 00:30:00,25.0,0.24484127,29.998922982533315 +2019-02-15 00:45:00,25.0,0.245238095,29.998959878455917 +2019-02-15 01:00:00,25.0,0.245634921,29.99899613140073 +2019-02-15 01:15:00,25.0,0.238624339,29.999031741363098 +2019-02-15 01:30:00,25.0,0.237037037,29.999066708338432 +2019-02-15 01:45:00,25.0,0.239285714,29.999101032322244 +2019-02-15 02:00:00,25.0,0.242592593,29.999134713310113 +2019-02-15 02:15:00,25.0,0.23505291,29.999167751297712 +2019-02-15 02:30:00,25.0,0.232142857,29.99920014628079 +2019-02-15 02:45:00,25.0,0.217857143,29.999231898255175 +2019-02-15 03:00:00,25.0,0.210582011,29.99926300721679 +2019-02-15 03:15:00,25.0,0.202645503,29.99929347316163 +2019-02-15 03:30:00,25.0,0.195767196,29.999323296085773 +2019-02-15 03:45:00,25.0,0.190608466,29.99935247598539 +2019-02-15 04:00:00,25.0,0.191402116,29.999381012856723 +2019-02-15 04:15:00,25.0,0.194973545,29.999408906696107 +2019-02-15 04:30:00,25.0,0.189021164,29.99943615749995 +2019-02-15 04:45:00,25.0,0.181613757,29.999462765264745 +2019-02-15 05:00:00,25.0,0.176984127,29.99948872998708 +2019-02-15 05:15:00,25.0,0.173412698,29.9995140516636 +2019-02-15 05:30:00,25.0,0.174206349,29.999538730291057 +2019-02-15 05:45:00,25.0,0.173412698,29.999562765866276 +2019-02-15 06:00:00,25.0,0.170238095,29.999586158386165 +2019-02-15 06:15:00,25.0,0.159391534,29.999608907847715 +2019-02-15 06:30:00,25.0,0.157010582,29.999631014248003 +2019-02-15 06:45:00,25.0,0.150661376,29.999652477584178 +2019-02-15 07:00:00,25.0,0.146825397,29.999673297853487 +2019-02-15 07:15:00,25.0,0.140343915,29.99969347505325 +2019-02-15 07:30:00,25.0,0.142328042,29.99971300918087 +2019-02-15 07:45:00,25.0,0.136243386,29.999731900233833 +2019-02-15 08:00:00,25.0,0.129232804,29.999750148209714 +2019-02-15 08:15:00,25.0,0.132407407,29.999767753106163 +2019-02-15 08:30:00,25.0,0.130687831,29.999784714920914 +2019-02-15 08:45:00,25.0,0.133201058,29.999801033651792 +2019-02-15 09:00:00,25.0,0.136375661,29.999816709296688 +2019-02-15 09:15:00,25.0,0.143121693,29.999831741853598 +2019-02-15 09:30:00,25.0,0.150529101,29.999846131320577 +2019-02-15 09:45:00,25.0,0.153306878,29.99985987769578 +2019-02-15 10:00:00,25.0,0.155687831,29.999872980977436 +2019-02-15 10:15:00,25.0,0.168121693,29.999885441163862 +2019-02-15 10:30:00,25.0,0.176190476,29.999897258253455 +2019-02-15 10:45:00,25.0,0.187566138,29.999908432244695 +2019-02-15 11:00:00,25.0,0.195899471,29.999918963136146 +2019-02-15 11:15:00,25.0,0.198544974,29.99992885092645 +2019-02-15 11:30:00,25.0,0.206481481,29.99993809561434 +2019-02-15 11:45:00,25.0,0.214285714,29.999946697198624 +2019-02-15 12:00:00,25.0,0.219973545,29.999954655678195 +2019-02-15 12:15:00,25.0,0.23042328,29.99996197105203 +2019-02-15 12:30:00,25.0,0.23531746,29.999968643319185 +2019-02-15 12:45:00,25.0,0.237169312,29.99997467247881 +2019-02-15 13:00:00,25.0,0.243915344,29.999980058530124 +2019-02-15 13:15:00,25.0,0.250396825,29.999984801472433 +2019-02-15 13:30:00,25.0,0.258730159,29.99998890130513 +2019-02-15 13:45:00,25.0,0.270238095,29.999992358027683 +2019-02-15 14:00:00,25.0,0.277910053,29.999995171639654 +2019-02-15 14:15:00,25.0,0.281084656,29.99999734214068 +2019-02-15 14:30:00,25.0,0.283597884,29.999998869530476 +2019-02-15 14:45:00,25.0,0.283730159,29.99999975380885 +2019-02-15 15:00:00,25.0,0.287301587,29.999999994975692 +2019-02-15 15:15:00,25.0,0.292989418,29.999999593030964 +2019-02-15 15:30:00,25.0,0.298412698,29.999998547974716 +2019-02-15 15:45:00,25.0,0.303439153,29.99999685980709 +2019-02-15 16:00:00,25.0,0.31031746,29.9999945285283 +2019-02-15 16:15:00,25.0,0.316402116,29.999991554138646 +2019-02-15 16:30:00,25.0,0.319708995,29.99998793663851 +2019-02-15 16:45:00,25.0,0.317724868,29.999983676028357 +2019-02-15 17:00:00,25.0,0.320634921,29.999978772308737 +2019-02-15 17:15:00,25.0,0.331084656,29.99997322548028 +2019-02-15 17:30:00,25.0,0.329232804,29.999967035543698 +2019-02-15 17:45:00,25.0,0.325529101,29.999960202499786 +2019-02-15 18:00:00,25.0,0.322486772,29.999952726349427 +2019-02-15 18:15:00,25.0,0.329100529,29.99994460709358 +2019-02-15 18:30:00,25.0,0.34021164,29.999935844733287 +2019-02-15 18:45:00,25.0,0.35489418,29.99992643926968 +2019-02-15 19:00:00,25.0,0.366931217,29.999916390703966 +2019-02-15 19:15:00,25.0,0.367592593,29.999905699037438 +2019-02-15 19:30:00,25.0,0.382539683,29.99989436427147 +2019-02-15 19:45:00,25.0,0.408465608,29.999882386407524 +2019-02-15 20:00:00,25.0,0.41984127,29.999869765447137 +2019-02-15 20:15:00,25.0,0.438492063,29.999856501391932 +2019-02-15 20:30:00,25.0,0.471296296,29.999842594243614 +2019-02-15 20:45:00,25.0,0.50515873,29.999828044003976 +2019-02-15 21:00:00,25.0,0.536640212,29.999812850674886 +2019-02-15 21:15:00,25.0,0.558597884,29.999797014258302 +2019-02-15 21:30:00,25.0,0.574206349,29.99978053475626 +2019-02-15 21:45:00,25.0,0.586904762,29.99976341217087 +2019-02-15 22:00:00,25.0,0.597751323,29.99974564650435 +2019-02-15 22:15:00,25.0,0.603174603,29.999727237758975 +2019-02-15 22:30:00,25.0,0.604365079,29.999708185937116 +2019-02-15 22:45:00,25.0,0.608465608,29.999688491041223 +2019-02-15 23:00:00,25.0,0.612169312,29.999668153073827 +2019-02-15 23:15:00,25.0,0.623677249,29.999647172037548 +2019-02-15 23:30:00,25.0,0.630026455,29.999625547935082 +2019-02-15 23:45:00,25.0,0.633597884,29.999603280769207 +2019-02-16 00:00:00,25.0,0.634656085,29.999580370542795 +2019-02-16 00:15:00,25.0,0.633730159,29.99955681725879 +2019-02-16 00:30:00,25.0,0.635449735,29.999532620920217 +2019-02-16 00:45:00,25.0,0.628968254,29.99950778153019 +2019-02-16 01:00:00,25.0,0.628042328,29.99948229909191 +2019-02-16 01:15:00,25.0,0.623941799,29.999456173608646 +2019-02-16 01:30:00,25.0,0.626587302,29.999429405083767 +2019-02-16 01:45:00,25.0,0.633994709,29.999401993520706 +2019-02-16 02:00:00,25.0,0.63531746,29.999373938922993 +2019-02-16 02:15:00,25.0,0.634126984,29.999345241294243 +2019-02-16 02:30:00,25.0,0.591931217,29.999315900638138 +2019-02-16 02:45:00,25.0,0.585714286,29.999285916958456 +2019-02-16 03:00:00,25.0,0.581084656,29.99925529025905 +2019-02-16 03:15:00,25.0,0.575396825,29.999224020543867 +2019-02-16 03:30:00,25.0,0.56957672,29.999192107816924 +2019-02-16 03:45:00,25.0,0.55489418,29.99915955208232 +2019-02-16 04:00:00,25.0,0.551322751,29.999126353344256 +2019-02-16 04:15:00,25.0,0.548015873,29.99909251160699 +2019-02-16 04:30:00,25.0,0.536640212,29.99905802687488 +2019-02-16 04:45:00,25.0,0.527116402,29.99902289915236 +2019-02-16 05:00:00,25.0,0.523015873,29.99898712844395 +2019-02-16 05:15:00,25.0,0.516005291,29.99895071475425 +2019-02-16 05:30:00,25.0,0.520767196,29.998913658087943 +2019-02-16 05:45:00,25.0,0.527116402,29.998875958449794 +2019-02-16 06:00:00,25.0,0.530952381,29.998837615844657 +2019-02-16 06:15:00,25.0,0.541931217,29.99879863027746 +2019-02-16 06:30:00,25.0,0.551719577,29.998759001753214 +2019-02-16 06:45:00,25.0,0.555291005,29.998718730277027 +2019-02-16 07:00:00,25.0,0.561640212,29.998677815854066 +2019-02-16 07:15:00,25.0,0.576851852,29.9986362584896 +2019-02-16 07:30:00,25.0,0.596693122,29.998594058188974 +2019-02-16 07:45:00,25.0,0.619047619,29.998551214957615 +2019-02-16 08:00:00,25.0,0.632804233,29.998507728801037 +2019-02-16 08:15:00,25.0,0.638756614,29.99846359972483 +2019-02-16 08:30:00,25.0,0.632539683,29.998418827734668 +2019-02-16 08:45:00,25.0,0.627910053,29.99837341283631 +2019-02-16 09:00:00,25.0,0.627248677,29.998327355035602 +2019-02-16 09:15:00,25.0,0.632539683,29.998280654338465 +2019-02-16 09:30:00,25.0,0.624338624,29.99823331075091 +2019-02-16 09:45:00,25.0,0.621957672,29.998185324279017 +2019-02-16 10:00:00,25.0,0.623412698,29.998136694928967 +2019-02-16 10:15:00,25.0,0.636243386,29.99808742270701 +2019-02-16 10:30:00,25.0,0.640740741,29.998037507619486 +2019-02-16 10:45:00,25.0,0.637830688,29.997986949672814 +2019-02-16 11:00:00,25.0,0.631349206,29.997935748873495 +2019-02-16 11:15:00,25.0,0.632804233,29.997883905228118 +2019-02-16 11:30:00,25.0,0.643783069,29.997831418743353 +2019-02-16 11:45:00,25.0,0.647222222,29.997778289425945 +2019-02-16 12:00:00,25.0,0.650925926,29.99772451728273 +2019-02-16 12:15:00,25.0,0.651851852,29.997670102320626 +2019-02-16 12:30:00,25.0,0.660185185,29.997615044546627 +2019-02-16 12:45:00,25.0,0.664417989,29.997559343967822 +2019-02-16 13:00:00,25.0,0.651455026,29.997503000591372 +2019-02-16 13:15:00,25.0,0.641931217,29.997446014424526 +2019-02-16 13:30:00,25.0,0.636640212,29.997388385474608 +2019-02-16 13:45:00,25.0,0.63042328,29.997330113749037 +2019-02-16 14:00:00,25.0,0.612830688,29.9972711992553 +2019-02-16 14:15:00,25.0,0.602645503,29.997211642000984 +2019-02-16 14:30:00,25.0,0.600529101,29.997151441993744 +2019-02-16 14:45:00,25.0,0.589417989,29.99709059924132 +2019-02-16 15:00:00,25.0,0.585978836,29.997029113751545 +2019-02-16 15:15:00,25.0,0.577645503,29.996966985532325 +2019-02-16 15:30:00,25.0,0.552380952,29.996904214591652 +2019-02-16 15:45:00,25.0,0.542592593,29.996840800937594 +2019-02-16 16:00:00,25.0,0.546560847,29.996776744578312 +2019-02-16 16:15:00,25.0,0.535978836,29.996712045522045 +2019-02-16 16:30:00,25.0,0.525529101,29.996646703777117 +2019-02-16 16:45:00,25.0,0.525793651,29.996580719351925 +2019-02-16 17:00:00,25.0,0.542195767,29.996514092254962 +2019-02-16 17:15:00,25.0,0.52989418,29.9964468224948 +2019-02-16 17:30:00,25.0,0.510185185,29.996378910080086 +2019-02-16 17:45:00,25.0,0.502777778,29.996310355019556 +2019-02-16 18:00:00,25.0,0.495238095,29.99624115732203 +2019-02-16 18:15:00,25.0,0.491931217,29.996171316996403 +2019-02-16 18:30:00,25.0,0.481481481,29.996100834051667 +2019-02-16 18:45:00,25.0,0.492857143,29.99602970849688 +2019-02-16 19:00:00,25.0,0.499338624,29.995957940341192 +2019-02-16 19:15:00,25.0,0.503174603,29.99588552959384 +2019-02-16 19:30:00,25.0,0.495238095,29.995812476264128 +2019-02-16 19:45:00,25.0,0.491005291,29.99573878036146 +2019-02-16 20:00:00,25.0,0.501984127,29.995664441895308 +2019-02-16 20:15:00,25.0,0.505555556,29.99558946087524 +2019-02-16 20:30:00,25.0,0.505687831,29.9955138373109 +2019-02-16 20:45:00,25.0,0.494179894,29.99543757121201 +2019-02-16 21:00:00,25.0,0.472883598,29.99536066258838 +2019-02-16 21:15:00,25.0,0.458994709,29.995283111449908 +2019-02-16 21:30:00,25.0,0.466269841,29.99520491780656 +2019-02-16 21:45:00,25.0,0.482407407,29.995126081668403 +2019-02-16 22:00:00,25.0,0.489550265,29.995046603045573 +2019-02-16 22:15:00,25.0,0.482142857,29.99496648194829 +2019-02-16 22:30:00,25.0,0.461904762,29.99488571838686 +2019-02-16 22:45:00,25.0,0.440873016,29.994804312371677 +2019-02-16 23:00:00,25.0,0.428306878,29.994722263913204 +2019-02-16 23:15:00,25.0,0.431349206,29.994639573022 +2019-02-16 23:30:00,25.0,0.429365079,29.994556239708697 +2019-02-16 23:45:00,25.0,0.424206349,29.994472263984015 +2019-02-17 00:00:00,25.0,0.409656085,29.994387645858758 +2019-02-17 00:15:00,25.0,0.387301587,29.9943023853438 +2019-02-17 00:30:00,25.0,0.366005291,29.99421648245012 +2019-02-17 00:45:00,25.0,0.345767196,29.99412993718876 +2019-02-17 01:00:00,25.0,0.334920635,29.994042749570855 +2019-02-17 01:15:00,25.0,0.320899471,29.993954919607617 +2019-02-17 01:30:00,25.0,0.307804233,29.99386644731034 +2019-02-17 01:45:00,25.0,0.302116402,29.993777332690406 +2019-02-17 02:00:00,25.0,0.303703704,29.99368757575928 +2019-02-17 02:15:00,25.0,0.312698413,29.993597176528507 +2019-02-17 02:30:00,25.0,0.325396825,29.99350613500971 +2019-02-17 02:45:00,25.0,0.336375661,29.993414451214598 +2019-02-17 03:00:00,25.0,0.346560847,29.993322125154968 +2019-02-17 03:15:00,25.0,0.349603175,29.993229156842695 +2019-02-17 03:30:00,25.0,0.349074074,29.993135546289736 +2019-02-17 03:45:00,25.0,0.34537037,29.99304129350813 +2019-02-17 04:00:00,25.0,0.331216931,29.99294639851 +2019-02-17 04:15:00,25.0,0.323412698,29.992850861307556 +2019-02-17 04:30:00,25.0,0.321428571,29.992754681913077 +2019-02-17 04:45:00,25.0,0.304761905,29.992657860338944 +2019-02-17 05:00:00,25.0,0.293518519,29.992560396597604 +2019-02-17 05:15:00,25.0,0.27962963,29.992462290701596 +2019-02-17 05:30:00,25.0,0.265343915,29.992363542663536 +2019-02-17 05:45:00,25.0,0.260185185,29.992264152496126 +2019-02-17 06:00:00,25.0,0.258994709,29.992164120212152 +2019-02-17 06:15:00,25.0,0.254497354,29.99206344582448 +2019-02-17 06:30:00,25.0,0.242724868,29.991962129346057 +2019-02-17 06:45:00,25.0,0.233862434,29.991860170789916 +2019-02-17 07:00:00,25.0,0.237830688,29.99175757016917 +2019-02-17 07:15:00,25.0,0.236111111,29.991654327497017 +2019-02-17 07:30:00,25.0,0.236243386,29.991550442786735 +2019-02-17 07:45:00,25.0,0.226851852,29.991445916051685 +2019-02-17 08:00:00,25.0,0.220634921,29.991340747305316 +2019-02-17 08:15:00,25.0,0.218650794,29.99123493656115 +2019-02-17 08:30:00,25.0,0.210714286,29.9911284838328 +2019-02-17 08:45:00,25.0,0.196693122,29.991021389133955 +2019-02-17 09:00:00,25.0,0.188095238,29.990913652478394 +2019-02-17 09:15:00,25.0,0.178703704,29.99080527387997 +2019-02-17 09:30:00,25.0,0.178703704,29.990696253352624 +2019-02-17 09:45:00,25.0,0.193253968,29.990586590910382 +2019-02-17 10:00:00,25.0,0.208597884,29.990476286567347 +2019-02-17 10:15:00,25.0,0.209259259,29.990365340337704 +2019-02-17 10:30:00,25.0,0.219444444,29.990253752235724 +2019-02-17 10:45:00,25.0,0.233730159,29.990141522275763 +2019-02-17 11:00:00,25.0,0.249074074,29.990028650472254 +2019-02-17 11:15:00,25.0,0.255687831,29.989915136839716 +2019-02-17 11:30:00,25.0,0.262830688,29.989800981392747 +2019-02-17 11:45:00,25.0,0.271428571,29.98968618414603 +2019-02-17 12:00:00,25.0,0.269179894,29.989570745114335 +2019-02-17 12:15:00,25.0,0.278968254,29.989454664312504 +2019-02-17 12:30:00,25.0,0.287830688,29.989337941755473 +2019-02-17 12:45:00,25.0,0.297089947,29.989220577458248 +2019-02-17 13:00:00,25.0,0.298412698,29.989102571435932 +2019-02-17 13:15:00,25.0,0.298280423,29.9889839237037 +2019-02-17 13:30:00,25.0,0.298677249,29.988864634276815 +2019-02-17 13:45:00,25.0,0.298941799,29.988744703170617 +2019-02-17 14:00:00,25.0,0.302645503,29.988624130400535 +2019-02-17 14:15:00,25.0,0.304761905,29.988502915982075 +2019-02-17 14:30:00,25.0,0.307010582,29.988381059930823 +2019-02-17 14:45:00,25.0,0.308862434,29.988258562262466 +2019-02-17 15:00:00,25.0,0.302645503,29.988135422992748 +2019-02-17 15:15:00,25.0,0.30489418,29.98801164213751 +2019-02-17 15:30:00,25.0,0.309656085,29.987887219712675 +2019-02-17 15:45:00,25.0,0.316402116,29.98776215573425 +2019-02-17 16:00:00,25.0,0.328439153,29.98763645021831 +2019-02-17 16:15:00,25.0,0.336243386,29.987510103181034 +2019-02-17 16:30:00,25.0,0.350661376,29.987383114638668 +2019-02-17 16:45:00,25.0,0.361243386,29.98725548460755 +2019-02-17 17:00:00,25.0,0.364153439,29.987127213104092 +2019-02-17 17:15:00,25.0,0.378968254,29.98699830014479 +2019-02-17 17:30:00,25.0,0.392857143,29.986868745746232 +2019-02-17 17:45:00,25.0,0.403042328,29.98673854992508 +2019-02-17 18:00:00,25.0,0.414814815,29.986607712698074 +2019-02-17 18:15:00,25.0,0.422883598,29.986476234082048 +2019-02-17 18:30:00,25.0,0.441402116,29.986344114093914 +2019-02-17 18:45:00,25.0,0.466137566,29.98621135275066 +2019-02-17 19:00:00,25.0,0.478835979,29.98607795006937 +2019-02-17 19:15:00,25.0,0.492857143,29.985943906067195 +2019-02-17 19:30:00,25.0,0.512962963,29.985809220761382 +2019-02-17 19:45:00,25.0,0.523544974,29.98567389416925 +2019-02-17 20:00:00,25.0,0.539417989,29.985537926308204 +2019-02-17 20:15:00,25.0,0.566798942,29.98540131719574 +2019-02-17 20:30:00,25.0,0.588492063,29.985264066849425 +2019-02-17 20:45:00,25.0,0.591931217,29.985126175286908 +2019-02-17 21:00:00,25.0,0.597883598,29.98498764252593 +2019-02-17 21:15:00,25.0,0.608465608,29.984848468584307 +2019-02-17 21:30:00,25.0,0.614153439,29.98470865347994 +2019-02-17 21:45:00,25.0,0.611904762,29.984568197230818 +2019-02-17 22:00:00,25.0,0.60952381,29.984427099855 +2019-02-17 22:15:00,25.0,0.620767196,29.984285361370638 +2019-02-17 22:30:00,25.0,0.625661376,29.984142981795955 +2019-02-17 22:45:00,25.0,0.626455026,29.983999961149276 +2019-02-17 23:00:00,25.0,0.619444444,29.983856299448988 +2019-02-17 23:15:00,25.0,0.609126984,29.983711996713573 +2019-02-17 23:30:00,25.0,0.592592593,29.983567052961593 +2019-02-17 23:45:00,25.0,0.583597884,29.983421468211688 +2019-02-18 00:00:00,25.0,0.578306878,29.98327524248258 +2019-02-18 00:15:00,25.0,0.573809524,29.983128375793086 +2019-02-18 00:30:00,25.0,0.570634921,29.982980868162088 +2019-02-18 00:45:00,25.0,0.569973545,29.982832719608563 +2019-02-18 01:00:00,25.0,0.556084656,29.982683930151566 +2019-02-18 01:15:00,25.0,0.527513228,29.98253449981023 +2019-02-18 01:30:00,25.0,0.51494709,29.982384428603783 +2019-02-18 01:45:00,25.0,0.51468254,29.982233716551523 +2019-02-18 02:00:00,25.0,0.505291005,29.982082363672838 +2019-02-18 02:15:00,25.0,0.496825397,29.98193036998719 +2019-02-18 02:30:00,25.0,0.474338624,29.98177773551413 +2019-02-18 02:45:00,25.0,0.440740741,29.98162446027329 +2019-02-18 03:00:00,25.0,0.422354497,29.98147054428439 +2019-02-18 03:15:00,25.0,0.409656085,29.981315987567225 +2019-02-18 03:30:00,25.0,0.39021164,29.981160790141672 +2019-02-18 03:45:00,25.0,0.36031746,29.98100495202769 +2019-02-18 04:00:00,25.0,0.348015873,29.98084847324533 +2019-02-18 04:15:00,25.0,0.336772487,29.980691353814716 +2019-02-18 04:30:00,25.0,0.338095238,29.980533593756057 +2019-02-18 04:45:00,25.0,0.324470899,29.980375193089642 +2019-02-18 05:00:00,25.0,0.308201058,29.980216151835847 +2019-02-18 05:15:00,25.0,0.290873016,29.98005647001513 +2019-02-18 05:30:00,25.0,0.283465608,29.979896147648027 +2019-02-18 05:45:00,25.0,0.297486772,29.97973518475516 +2019-02-18 06:00:00,25.0,0.322222222,29.979573581357233 +2019-02-18 06:15:00,25.0,0.336772487,29.979411337475028 +2019-02-18 06:30:00,25.0,0.335449735,29.979248453129422 +2019-02-18 06:45:00,25.0,0.341534392,29.979084928341354 +2019-02-18 07:00:00,25.0,0.340740741,29.978920763131867 +2019-02-18 07:15:00,25.0,0.347486772,29.978755957522072 +2019-02-18 07:30:00,25.0,0.351587302,29.978590511533163 +2019-02-18 07:45:00,25.0,0.348677249,29.97842442518643 +2019-02-18 08:00:00,25.0,0.339814815,29.978257698503224 +2019-02-18 08:15:00,25.0,0.33968254,29.978090331504998 +2019-02-18 08:30:00,25.0,0.35978836,29.977922324213274 +2019-02-18 08:45:00,25.0,0.377910053,29.977753676649662 +2019-02-18 09:00:00,25.0,0.395238095,29.97758438883586 +2019-02-18 09:15:00,25.0,0.393253968,29.97741446079364 +2019-02-18 09:30:00,25.0,0.389153439,29.97724389254485 +2019-02-18 09:45:00,25.0,0.397883598,29.977072684111437 +2019-02-18 10:00:00,25.0,0.40978836,29.97690083551542 +2019-02-18 10:15:00,25.0,0.416534392,29.976728346778906 +2019-02-18 10:30:00,25.0,0.431084656,29.976555217924073 +2019-02-18 10:45:00,25.0,0.438888889,29.976381448973196 +2019-02-18 11:00:00,25.0,0.44047619,29.976207039948626 +2019-02-18 11:15:00,25.0,0.440608466,29.97603199087279 +2019-02-18 11:30:00,25.0,0.444708995,29.97585630176821 +2019-02-18 11:45:00,25.0,0.443518519,29.975679972657478 +2019-02-18 12:00:00,25.0,0.421825397,29.975503003563276 +2019-02-18 12:15:00,25.0,0.392328042,29.975325394508367 +2019-02-18 12:30:00,25.0,0.379365079,29.975147145515596 +2019-02-18 12:45:00,25.0,0.366005291,29.974968256607887 +2019-02-18 13:00:00,25.0,0.341666667,29.974788727808253 +2019-02-18 13:15:00,25.0,0.322751323,29.97460855913978 +2019-02-18 13:30:00,25.0,0.316402116,29.974427750625644 +2019-02-18 13:45:00,25.0,0.313227513,29.974246302289107 +2019-02-18 14:00:00,25.0,0.308201058,29.974064214153497 +2019-02-18 14:15:00,25.0,0.305026455,29.97388148624224 +2019-02-18 14:30:00,25.0,0.298280423,29.97369811857884 +2019-02-18 14:45:00,25.0,0.290608466,29.973514111186883 +2019-02-18 15:00:00,25.0,0.291402116,29.973329464090035 +2019-02-18 15:15:00,25.0,0.3,29.97314417731204 +2019-02-18 15:30:00,25.0,0.300132275,29.972958250876736 +2019-02-18 15:45:00,25.0,0.285449735,29.972771684808038 +2019-02-18 16:00:00,25.0,0.266137566,29.972584479129942 +2019-02-18 16:15:00,25.0,0.251719577,29.972396633866524 +2019-02-18 16:30:00,25.0,0.245899471,29.972208149041947 +2019-02-18 16:45:00,25.0,0.242989418,29.972019024680456 +2019-02-18 17:00:00,25.0,0.240873016,29.97182926080637 +2019-02-18 17:15:00,25.0,0.242724868,29.971638857444105 +2019-02-18 17:30:00,25.0,0.251190476,29.97144781461815 +2019-02-18 17:45:00,25.0,0.257142857,29.97125613235307 +2019-02-18 18:00:00,25.0,0.254497354,29.971063810673527 +2019-02-18 18:15:00,25.0,0.256613757,29.970870849604253 +2019-02-18 18:30:00,25.0,0.272354497,29.970677249170073 +2019-02-18 18:45:00,25.0,0.302513228,29.970483009395885 +2019-02-18 19:00:00,25.0,0.326058201,29.97028813030667 +2019-02-18 19:15:00,25.0,0.33968254,29.970092611927498 +2019-02-18 19:30:00,25.0,0.344973545,29.969896454283518 +2019-02-18 19:45:00,25.0,0.368386243,29.969699657399953 +2019-02-18 20:00:00,25.0,0.387962963,29.969502221302122 +2019-02-18 20:15:00,25.0,0.385185185,29.969304146015418 +2019-02-18 20:30:00,25.0,0.379232804,29.969105431565318 +2019-02-18 20:45:00,25.0,0.38452381,29.96890607797738 +2019-02-18 21:00:00,25.0,0.403306878,29.968706085277248 +2019-02-18 21:15:00,25.0,0.405820106,29.968505453490643 +2019-02-18 21:30:00,25.0,0.393386243,29.96830418264337 +2019-02-18 21:45:00,25.0,0.398280423,29.968102272761318 +2019-02-18 22:00:00,25.0,0.406216931,29.96789972387046 +2019-02-18 22:15:00,25.0,0.418253968,29.967696535996843 +2019-02-18 22:30:00,25.0,0.415608466,29.967492709166606 +2019-02-18 22:45:00,25.0,0.417724868,29.96728824340596 +2019-02-18 23:00:00,25.0,0.419444444,29.967083138741213 +2019-02-18 23:15:00,25.0,0.443783069,29.966877395198736 +2019-02-18 23:30:00,25.0,0.439814815,29.966671012805 +2019-02-18 23:45:00,25.0,0.438095238,29.96646399158655 +2019-02-19 00:00:00,25.0,0.456481481,29.96625633157001 +2019-02-19 00:15:00,25.0,0.453835979,29.966048032782087 +2019-02-19 00:30:00,25.0,0.458333333,29.965839095249578 +2019-02-19 00:45:00,25.0,0.482804233,29.965629518999357 +2019-02-19 01:00:00,25.0,0.518386243,29.965419304058376 +2019-02-19 01:15:00,25.0,0.536243386,29.965208450453677 +2019-02-19 01:30:00,25.0,0.542857143,29.96499695821238 +2019-02-19 01:45:00,25.0,0.546957672,29.964784827361687 +2019-02-19 02:00:00,25.0,0.575,29.964572057928883 +2019-02-19 02:15:00,25.0,0.587301587,29.964358649941335 +2019-02-19 02:30:00,25.0,0.604761905,29.96414460342649 +2019-02-19 02:45:00,25.0,0.61547619,29.963929918411885 +2019-02-19 03:00:00,25.0,0.612962963,29.963714594925126 +2019-02-19 03:15:00,25.0,0.616931217,29.963498632993915 +2019-02-19 03:30:00,25.0,0.610846561,29.96328203264602 +2019-02-19 03:45:00,25.0,0.625529101,29.963064793909314 +2019-02-19 04:00:00,25.0,0.630555556,29.962846916811728 +2019-02-19 04:15:00,25.0,0.634259259,29.962628401381288 +2019-02-19 04:30:00,25.0,0.637698413,29.962409247646107 +2019-02-19 04:45:00,25.0,0.645634921,29.962189455634363 +2019-02-19 05:00:00,25.0,0.649470899,29.96196902537433 +2019-02-19 05:15:00,25.0,0.638492063,29.961747956894364 +2019-02-19 05:30:00,25.0,0.636507937,29.961526250222892 +2019-02-19 05:45:00,25.0,0.637830688,29.96130390538844 +2019-02-19 06:00:00,25.0,0.637830688,29.961080922419598 +2019-02-19 06:15:00,25.0,0.643915344,29.96085730134505 +2019-02-19 06:30:00,25.0,0.658597884,29.960633042193557 +2019-02-19 06:45:00,25.0,0.644179894,29.960408144993966 +2019-02-19 07:00:00,25.0,0.685449735,29.960182609775206 +2019-02-19 07:15:00,25.0,0.669047619,29.95995643656628 +2019-02-19 07:30:00,25.0,0.658465608,29.95972962539628 +2019-02-19 07:45:00,25.0,0.660582011,29.959502176294386 +2019-02-19 08:00:00,25.0,0.664550265,29.959274089289842 +2019-02-19 08:15:00,25.0,0.65952381,29.959045364411995 +2019-02-19 08:30:00,25.0,0.653703704,29.95881600169026 +2019-02-19 08:45:00,25.0,0.647619048,29.958586001154135 +2019-02-19 09:00:00,25.0,0.675661376,29.958355362833206 +2019-02-19 09:15:00,25.0,0.68015873,29.95812408675714 +2019-02-19 09:30:00,25.0,0.678439153,29.957892172955685 +2019-02-19 09:45:00,25.0,0.680291005,29.957659621458664 +2019-02-19 10:00:00,25.0,0.68531746,29.957426432295996 +2019-02-19 10:15:00,25.0,0.686904762,29.957192605497667 +2019-02-19 10:30:00,25.0,0.683333333,29.95695814109376 +2019-02-19 10:45:00,25.0,0.683730159,29.956723039114426 +2019-02-19 11:00:00,25.0,0.686772487,29.95648729958991 +2019-02-19 11:15:00,25.0,0.688359788,29.956250922550524 +2019-02-19 11:30:00,25.0,0.686772487,29.956013908026684 +2019-02-19 11:45:00,25.0,0.687698413,29.955776256048864 +2019-02-19 12:00:00,25.0,0.688492063,29.95553796664764 +2019-02-19 12:15:00,25.0,0.684126984,29.955299039853653 +2019-02-19 12:30:00,25.0,0.680291005,29.95505947569764 +2019-02-19 12:45:00,25.0,0.680026455,29.95481927421042 +2019-02-19 13:00:00,25.0,0.677513228,29.954578435422874 +2019-02-19 13:15:00,25.0,0.674074074,29.95433695936599 +2019-02-19 13:30:00,25.0,0.674470899,29.95409484607082 +2019-02-19 13:45:00,25.0,0.667328042,29.953852095568514 +2019-02-19 14:00:00,25.0,0.667724868,29.953608707890286 +2019-02-19 14:15:00,25.0,0.666269841,29.95336468306745 +2019-02-19 14:30:00,25.0,0.666269841,29.953120021131383 +2019-02-19 14:45:00,25.0,0.671031746,29.952874722113563 +2019-02-19 15:00:00,25.0,0.669179894,29.952628786045533 +2019-02-19 15:15:00,25.0,0.671957672,29.952382212958934 +2019-02-19 15:30:00,25.0,0.668518519,29.952135002885477 +2019-02-19 15:45:00,25.0,0.675661376,29.95188715585696 +2019-02-19 16:00:00,25.0,0.669708995,29.951638671905254 +2019-02-19 16:15:00,25.0,0.669973545,29.95138955106233 +2019-02-19 16:30:00,25.0,0.67010582,29.951139793360227 +2019-02-19 16:45:00,25.0,0.674603175,29.950889398831066 +2019-02-19 17:00:00,25.0,0.669312169,29.95063836750706 +2019-02-19 17:15:00,25.0,0.667989418,29.95038669942049 +2019-02-19 17:30:00,25.0,0.650529101,29.95013439460373 +2019-02-19 17:45:00,25.0,0.643915344,29.949881453089233 +2019-02-19 18:00:00,25.0,0.629100529,29.94962787490953 +2019-02-19 18:15:00,25.0,0.636111111,29.949373660097237 +2019-02-19 18:30:00,25.0,0.644444444,29.949118808685057 +2019-02-19 18:45:00,25.0,0.636375661,29.94886332070576 +2019-02-19 19:00:00,25.0,0.631349206,29.948607196192217 +2019-02-19 19:15:00,25.0,0.628968254,29.948350435177368 +2019-02-19 19:30:00,25.0,0.639417989,29.948093037694235 +2019-02-19 19:45:00,25.0,0.627777778,29.94783500377593 +2019-02-19 20:00:00,25.0,0.610714286,29.947576333455636 +2019-02-19 20:15:00,25.0,0.615343915,29.94731702676663 +2019-02-19 20:30:00,25.0,0.606746032,29.94705708374226 +2019-02-19 20:45:00,25.0,0.609391534,29.946796504415964 +2019-02-19 21:00:00,25.0,0.611375661,29.946535288821256 +2019-02-19 21:15:00,25.0,0.602513228,29.94627343699173 +2019-02-19 21:30:00,25.0,0.61005291,29.946010948961078 +2019-02-19 21:45:00,25.0,0.605952381,29.945747824763053 +2019-02-19 22:00:00,25.0,0.594179894,29.945484064431497 +2019-02-19 22:15:00,25.0,0.595899471,29.94521966800034 +2019-02-19 22:30:00,25.0,0.597619048,29.944954635503592 +2019-02-19 22:45:00,25.0,0.578703704,29.944688966975335 +2019-02-19 23:00:00,25.0,0.562037037,29.944422662449742 +2019-02-19 23:15:00,25.0,0.546825397,29.944155721961067 +2019-02-19 23:30:00,25.0,0.540079365,29.943888145543646 +2019-02-19 23:45:00,25.0,0.544047619,29.943619933231894 +2019-02-20 00:00:00,25.0,0.550132275,29.943351085060304 +2019-02-20 00:15:00,25.0,0.537433862,29.943081601063465 +2019-02-20 00:30:00,25.0,0.535582011,29.94281148127603 +2019-02-20 00:45:00,25.0,0.537830688,29.94254072573275 +2019-02-20 01:00:00,25.0,0.513359788,29.942269334468445 +2019-02-20 01:15:00,25.0,0.509259259,29.941997307518026 +2019-02-20 01:30:00,25.0,0.508465608,29.941724644916476 +2019-02-20 01:45:00,25.0,0.499603175,29.941451346698873 +2019-02-20 02:00:00,25.0,0.500925926,29.941177412900362 +2019-02-20 02:15:00,25.0,0.473148148,29.94090284355618 +2019-02-20 02:30:00,25.0,0.446693122,29.940627638701645 +2019-02-20 02:45:00,25.0,0.43042328,29.940351798372152 +2019-02-20 03:00:00,25.0,0.425132275,29.940075322603178 +2019-02-20 03:15:00,25.0,0.412830688,29.93979821143029 +2019-02-20 03:30:00,25.0,0.417063492,29.939520464889128 +2019-02-20 03:45:00,25.0,0.434391534,29.93924208301541 +2019-02-20 04:00:00,25.0,0.414814815,29.938963065844952 +2019-02-20 04:15:00,25.0,0.402777778,29.93868341341364 +2019-02-20 04:30:00,25.0,0.412830688,29.938403125757436 +2019-02-20 04:45:00,25.0,0.411772487,29.9381222029124 +2019-02-20 05:00:00,25.0,0.408333333,29.937840644914658 +2019-02-20 05:15:00,25.0,0.425793651,29.93755845180043 +2019-02-20 05:30:00,25.0,0.431613757,29.937275623606013 +2019-02-20 05:45:00,25.0,0.438756614,29.93699216036778 +2019-02-20 06:00:00,25.0,0.438492063,29.936708062122193 +2019-02-20 06:15:00,25.0,0.430687831,29.93642332890579 +2019-02-20 06:30:00,25.0,0.443783069,29.936137960755204 +2019-02-20 06:45:00,25.0,0.454497354,29.93585195770713 +2019-02-20 07:00:00,25.0,0.458465608,29.935565319798357 +2019-02-20 07:15:00,25.0,0.457936508,29.93527804706575 +2019-02-20 07:30:00,25.0,0.455820106,29.93499013954627 +2019-02-20 07:45:00,25.0,0.473544974,29.934701597276934 +2019-02-20 08:00:00,25.0,0.480026455,29.934412420294866 +2019-02-20 08:15:00,25.0,0.483862434,29.934122608637253 +2019-02-20 08:30:00,25.0,0.487830688,29.93383216234138 +2019-02-20 08:45:00,25.0,0.494179894,29.933541081444595 +2019-02-20 09:00:00,25.0,0.493253968,29.933249365984338 +2019-02-20 09:15:00,25.0,0.481613757,29.93295701599814 +2019-02-20 09:30:00,25.0,0.493783069,29.932664031523597 +2019-02-20 09:45:00,25.0,0.521428571,29.93237041259839 +2019-02-20 10:00:00,25.0,0.537698413,29.932076159260294 +2019-02-20 10:15:00,25.0,0.547222222,29.93178127154715 +2019-02-20 10:30:00,25.0,0.535449735,29.931485749496886 +2019-02-20 10:45:00,25.0,0.542328042,29.93118959314752 +2019-02-20 11:00:00,25.0,0.542592593,29.930892802537134 +2019-02-20 11:15:00,25.0,0.550529101,29.93059537770391 +2019-02-20 11:30:00,25.0,0.546957672,29.9302973186861 +2019-02-20 11:45:00,25.0,0.548809524,29.929998625522046 +2019-02-20 12:00:00,25.0,0.560582011,29.92969929825016 +2019-02-20 12:15:00,25.0,0.574470899,29.929399336908943 +2019-02-20 12:30:00,25.0,0.570767196,29.929098741536983 +2019-02-20 12:45:00,25.0,0.561243386,29.928797512172935 +2019-02-20 13:00:00,25.0,0.558201058,29.928495648855552 +2019-02-20 13:15:00,25.0,0.567989418,29.928193151623653 +2019-02-20 13:30:00,25.0,0.576190476,29.92789002051615 +2019-02-20 13:45:00,25.0,0.580687831,29.927586255572027 +2019-02-20 14:00:00,25.0,0.580820106,29.927281856830362 +2019-02-20 14:15:00,25.0,0.584391534,29.926976824330307 +2019-02-20 14:30:00,25.0,0.587433862,29.92667115811109 +2019-02-20 14:45:00,25.0,0.60489418,29.926364858212033 +2019-02-20 15:00:00,25.0,0.622619048,29.92605792467253 +2019-02-20 15:15:00,25.0,0.642724868,29.92575035753206 +2019-02-20 15:30:00,25.0,0.657804233,29.925442156830183 +2019-02-20 15:45:00,25.0,0.662830688,29.92513332260654 +2019-02-20 16:00:00,25.0,0.66031746,29.92482385490085 +2019-02-20 16:15:00,25.0,0.664550265,29.924513753752926 +2019-02-20 16:30:00,25.0,0.668783069,29.92420301920265 +2019-02-20 16:45:00,25.0,0.678968254,29.92389165128999 +2019-02-20 17:00:00,25.0,0.683333333,29.92357965005499 +2019-02-20 17:15:00,25.0,0.687169312,29.923267015537785 +2019-02-20 17:30:00,25.0,0.687301587,29.92295374777859 +2019-02-20 17:45:00,25.0,0.677910053,29.922639846817688 +2019-02-20 18:00:00,25.0,0.678042328,29.922325312695463 +2019-02-20 18:15:00,25.0,0.680820106,29.92201014545237 +2019-02-20 18:30:00,25.0,0.683201058,29.92169434512894 +2019-02-20 18:45:00,25.0,0.683994709,29.9213779117658 +2019-02-20 19:00:00,25.0,0.68968254,29.921060845403645 +2019-02-20 19:15:00,25.0,0.694047619,29.920743146083257 +2019-02-20 19:30:00,25.0,0.693386243,29.920424813845504 +2019-02-20 19:45:00,25.0,0.699603175,29.920105848731325 +2019-02-20 20:00:00,25.0,0.706746032,29.91978625078175 +2019-02-20 20:15:00,25.0,0.671560847,29.919466020037888 +2019-02-20 20:30:00,25.0,0.69510582,29.91914515654092 +2019-02-20 20:45:00,25.0,0.706878307,29.918823660332123 +2019-02-20 21:00:00,25.0,0.703835979,29.918501531452847 +2019-02-20 21:15:00,25.0,0.707804233,29.91817876994452 +2019-02-20 21:30:00,25.0,0.709391534,29.917855375848667 +2019-02-20 21:45:00,25.0,0.697222222,29.917531349206875 +2019-02-20 22:00:00,25.0,0.694708995,29.917206690060823 +2019-02-20 22:15:00,25.0,0.687830688,29.916881398452272 +2019-02-20 22:30:00,25.0,0.677777778,29.916555474423056 +2019-02-20 22:45:00,25.0,0.68531746,29.916228918015104 +2019-02-20 23:00:00,25.0,0.705026455,29.915901729270413 +2019-02-20 23:15:00,25.0,0.719444444,29.915573908231067 +2019-02-20 23:30:00,25.0,0.718518519,29.91524545493923 +2019-02-20 23:45:00,25.0,0.719708995,29.914916369437158 +2019-02-21 00:00:00,25.0,0.727116402,29.914586651767166 +2019-02-21 00:15:00,25.0,0.73015873,29.91425630197167 +2019-02-21 00:30:00,25.0,0.723148148,29.913925320093156 +2019-02-21 00:45:00,25.0,0.724470899,29.913593706174204 +2019-02-21 01:00:00,25.0,0.725396825,29.913261460257456 +2019-02-21 01:15:00,25.0,0.722089947,29.912928582385653 +2019-02-21 01:30:00,25.0,0.721957672,29.91259507260161 +2019-02-21 01:45:00,25.0,0.726190476,29.91226093094822 +2019-02-21 02:00:00,25.0,0.718783069,29.91192615746847 +2019-02-21 02:15:00,25.0,0.708730159,29.91159075220541 +2019-02-21 02:30:00,25.0,0.706613757,29.911254715202183 +2019-02-21 02:45:00,25.0,0.708994709,29.91091804650201 +2019-02-21 03:00:00,25.0,0.707010582,29.910580746148202 +2019-02-21 03:15:00,25.0,0.702777778,29.910242814184134 +2019-02-21 03:30:00,25.0,0.7,29.909904250653273 +2019-02-21 03:45:00,25.0,0.698280423,29.90956505559917 +2019-02-21 04:00:00,25.0,0.694047619,29.90922522906545 +2019-02-21 04:15:00,25.0,0.695634921,29.908884771095824 +2019-02-21 04:30:00,25.0,0.683994709,29.90854368173408 +2019-02-21 04:45:00,25.0,0.675132275,29.90820196102409 +2019-02-21 05:00:00,25.0,0.666534392,29.90785960900981 +2019-02-21 05:15:00,25.0,0.652380952,29.907516625735273 +2019-02-21 05:30:00,25.0,0.63531746,29.907173011244595 +2019-02-21 05:45:00,25.0,0.63015873,29.906828765581967 +2019-02-21 06:00:00,25.0,0.632804233,29.906483888791673 +2019-02-21 06:15:00,25.0,0.641931217,29.906138380918065 +2019-02-21 06:30:00,25.0,0.621693122,29.905792242005596 +2019-02-21 06:45:00,25.0,0.619047619,29.905445472098773 +2019-02-21 07:00:00,25.0,0.616402116,29.905098071242204 +2019-02-21 07:15:00,25.0,0.60952381,29.904750039480575 +2019-02-21 07:30:00,25.0,0.612301587,29.904401376858644 +2019-02-21 07:45:00,25.0,0.601190476,29.904052083421266 +2019-02-21 08:00:00,25.0,0.599338624,29.90370215921336 +2019-02-21 08:15:00,25.0,0.604365079,29.903351604279937 +2019-02-21 08:30:00,25.0,0.609126984,29.90300041866609 +2019-02-21 08:45:00,25.0,0.63452381,29.90264860241698 +2019-02-21 09:00:00,25.0,0.662566138,29.90229615557787 +2019-02-21 09:15:00,25.0,0.674603175,29.90194307819408 +2019-02-21 09:30:00,25.0,0.69537037,29.901589370311033 +2019-02-21 09:45:00,25.0,0.68505291,29.90123503197422 +2019-02-21 10:00:00,25.0,0.674470899,29.90088006322922 +2019-02-21 10:15:00,25.0,0.666402116,29.900524464121688 +2019-02-21 10:30:00,25.0,0.660449735,29.900168234697357 +2019-02-21 10:45:00,25.0,0.647222222,29.899811375002052 +2019-02-21 11:00:00,25.0,0.636904762,29.899453885081677 +2019-02-21 11:15:00,25.0,0.618386243,29.899095764982203 +2019-02-21 11:30:00,25.0,0.603042328,29.8987370147497 +2019-02-21 11:45:00,25.0,0.577645503,29.898377634430304 +2019-02-21 12:00:00,25.0,0.58478836,29.898017624070246 +2019-02-21 12:15:00,25.0,0.598148148,29.897656983715827 +2019-02-21 12:30:00,25.0,0.609656085,29.89729571341344 +2019-02-21 12:45:00,25.0,0.607407407,29.896933813209543 +2019-02-21 13:00:00,25.0,0.582539683,29.896571283150692 +2019-02-21 13:15:00,25.0,0.567195767,29.896208123283515 +2019-02-21 13:30:00,25.0,0.548941799,29.89584433365472 +2019-02-21 13:45:00,25.0,0.545767196,29.895479914311096 +2019-02-21 14:00:00,25.0,0.531349206,29.895114865299526 +2019-02-21 14:15:00,25.0,0.503306878,29.894749186666953 +2019-02-21 14:30:00,25.0,0.474338624,29.894382878460416 +2019-02-21 14:45:00,25.0,0.463888889,29.89401594072703 +2019-02-21 15:00:00,25.0,0.442460317,29.893648373513987 +2019-02-21 15:15:00,25.0,0.418253968,29.893280176868572 +2019-02-21 15:30:00,25.0,0.389417989,29.89291135083814 +2019-02-21 15:45:00,25.0,0.377645503,29.892541895470124 +2019-02-21 16:00:00,25.0,0.357010582,29.89217181081206 +2019-02-21 16:15:00,25.0,0.336772487,29.89180109691153 +2019-02-21 16:30:00,25.0,0.319312169,29.89142975381623 +2019-02-21 16:45:00,25.0,0.313492063,29.891057781573913 +2019-02-21 17:00:00,25.0,0.306746032,29.890685180232435 +2019-02-21 17:15:00,25.0,0.305026455,29.89031194983971 +2019-02-21 17:30:00,25.0,0.28994709,29.88993809044375 +2019-02-21 17:45:00,25.0,0.275132275,29.889563602092636 +2019-02-21 18:00:00,25.0,0.278571429,29.88918848483454 +2019-02-21 18:15:00,25.0,0.271825397,29.88881273871771 +2019-02-21 18:30:00,25.0,0.250396825,29.888436363790476 +2019-02-21 18:45:00,25.0,0.247486772,29.888059360101245 +2019-02-21 19:00:00,25.0,0.269047619,29.88768172769851 +2019-02-21 19:15:00,25.0,0.26468254,29.887303466630847 +2019-02-21 19:30:00,25.0,0.253571429,29.8869245769469 +2019-02-21 19:45:00,25.0,0.240873016,29.88654505869541 +2019-02-21 20:00:00,25.0,0.227777778,29.88616491192519 +2019-02-21 20:15:00,25.0,0.216666667,29.885784136685132 +2019-02-21 20:30:00,25.0,0.206349206,29.885402733024215 +2019-02-21 20:45:00,25.0,0.195502646,29.885020700991493 +2019-02-21 21:00:00,25.0,0.172486772,29.88463804063611 +2019-02-21 21:15:00,25.0,0.176984127,29.88425475200728 +2019-02-21 21:30:00,25.0,0.168253968,29.883870835154305 +2019-02-21 21:45:00,25.0,0.182275132,29.883486290126562 +2019-02-21 22:00:00,25.0,0.203042328,29.883101116973513 +2019-02-21 22:15:00,25.0,0.208201058,29.8827153157447 +2019-02-21 22:30:00,25.0,0.203306878,29.882328886489752 +2019-02-21 22:45:00,25.0,0.19457672,29.881941829258363 +2019-02-21 23:00:00,25.0,0.192724868,29.88155414410032 +2019-02-21 23:15:00,25.0,0.198544974,29.881165831065488 +2019-02-21 23:30:00,25.0,0.189153439,29.88077689020382 +2019-02-21 23:45:00,25.0,0.175132275,29.88038732156533 +2019-02-22 00:00:00,25.0,0.171428571,29.879997125200134 +2019-02-22 00:15:00,25.0,0.175132275,29.879606301158415 +2019-02-22 00:30:00,25.0,0.175396825,29.879214849490445 +2019-02-22 00:45:00,25.0,0.176322751,29.878822770246575 +2019-02-22 01:00:00,25.0,0.178174603,29.878430063477232 +2019-02-22 01:15:00,25.0,0.169047619,29.878036729232925 +2019-02-22 01:30:00,25.0,0.16957672,29.87764276756425 +2019-02-22 01:45:00,25.0,0.176058201,29.877248178521874 +2019-02-22 02:00:00,25.0,0.181216931,29.87685296215656 +2019-02-22 02:15:00,25.0,0.177116402,29.876457118519127 +2019-02-22 02:30:00,25.0,0.170502646,29.876060647660502 +2019-02-22 02:45:00,25.0,0.166666667,29.875663549631675 +2019-02-22 03:00:00,25.0,0.154365079,29.87526582448372 +2019-02-22 03:15:00,25.0,0.152513228,29.874867472267795 +2019-02-22 03:30:00,25.0,0.15542328,29.87446849303514 +2019-02-22 03:45:00,25.0,0.156613757,29.874068886837065 +2019-02-22 04:00:00,25.0,0.156878307,29.873668653724977 +2019-02-22 04:15:00,25.0,0.150396825,29.87326779375035 +2019-02-22 04:30:00,25.0,0.151190476,29.872866306964745 +2019-02-22 04:45:00,25.0,0.155555556,29.872464193419802 +2019-02-22 05:00:00,25.0,0.155291005,29.87206145316724 +2019-02-22 05:15:00,25.0,0.151058201,29.87165808625886 +2019-02-22 05:30:00,25.0,0.151984127,29.87125409274655 +2019-02-22 05:45:00,25.0,0.153571429,29.870849472682266 +2019-02-22 06:00:00,25.0,0.150132275,29.870444226118057 +2019-02-22 06:15:00,25.0,0.149074074,29.87003835310604 +2019-02-22 06:30:00,25.0,0.147354497,29.869631853698422 +2019-02-22 06:45:00,25.0,0.140740741,29.86922472794749 +2019-02-22 07:00:00,25.0,0.148544974,29.86881697590561 +2019-02-22 07:15:00,25.0,0.163095238,29.868408597625223 +2019-02-22 07:30:00,25.0,0.181878307,29.86799959315886 +2019-02-22 07:45:00,25.0,0.198809524,29.867589962559126 +2019-02-22 08:00:00,25.0,0.206481481,29.86717970587871 +2019-02-22 08:15:00,25.0,0.211507937,29.866768823170375 +2019-02-22 08:30:00,25.0,0.215740741,29.86635731448698 +2019-02-22 08:45:00,25.0,0.216005291,29.865945179881447 +2019-02-22 09:00:00,25.0,0.22989418,29.865532419406787 +2019-02-22 09:15:00,25.0,0.230026455,29.865119033116088 +2019-02-22 09:30:00,25.0,0.224867725,29.864705021062527 +2019-02-22 09:45:00,25.0,0.221428571,29.86429038329935 +2019-02-22 10:00:00,25.0,0.224603175,29.863875119879886 +2019-02-22 10:15:00,25.0,0.22010582,29.863459230857554 +2019-02-22 10:30:00,25.0,0.229232804,29.863042716285843 +2019-02-22 10:45:00,25.0,0.246693122,29.862625576218328 +2019-02-22 11:00:00,25.0,0.251719577,29.862207810708657 +2019-02-22 11:15:00,25.0,0.262698413,29.86178941981057 +2019-02-22 11:30:00,25.0,0.267063492,29.861370403577883 +2019-02-22 11:45:00,25.0,0.275925926,29.860950762064483 +2019-02-22 12:00:00,25.0,0.273412698,29.860530495324355 +2019-02-22 12:15:00,25.0,0.270899471,29.860109603411544 +2019-02-22 12:30:00,25.0,0.268253968,29.859688086380192 +2019-02-22 12:45:00,25.0,0.262566138,29.859265944284516 +2019-02-22 13:00:00,25.0,0.262169312,29.858843177178812 +2019-02-22 13:15:00,25.0,0.273412698,29.85841978511746 +2019-02-22 13:30:00,25.0,0.266269841,29.85799576815491 +2019-02-22 13:45:00,25.0,0.259126984,29.857571126345707 +2019-02-22 14:00:00,25.0,0.261243386,29.857145859744467 +2019-02-22 14:15:00,25.0,0.259259259,29.856719968405887 +2019-02-22 14:30:00,25.0,0.281349206,29.85629345238475 +2019-02-22 14:45:00,25.0,0.281878307,29.855866311735916 +2019-02-22 15:00:00,25.0,0.276455026,29.855438546514318 +2019-02-22 15:15:00,25.0,0.244444444,29.855010156774984 +2019-02-22 15:30:00,25.0,0.219312169,29.854581142573007 +2019-02-22 15:45:00,25.0,0.21468254,29.854151503963575 +2019-02-22 16:00:00,25.0,0.197354497,29.853721241001946 +2019-02-22 16:15:00,25.0,0.171693122,29.85329035374346 +2019-02-22 16:30:00,25.0,0.169047619,29.852858842243542 +2019-02-22 16:45:00,25.0,0.171560847,29.85242670655769 +2019-02-22 17:00:00,25.0,0.175396825,29.851993946741487 +2019-02-22 17:15:00,25.0,0.169047619,29.8515605628506 +2019-02-22 17:30:00,25.0,0.177910053,29.85112655494077 +2019-02-22 17:45:00,25.0,0.174603175,29.850691923067814 +2019-02-22 18:00:00,25.0,0.179100529,29.850256667287645 +2019-02-22 18:15:00,25.0,0.183597884,29.84982078765624 +2019-02-22 18:30:00,25.0,0.174206349,29.849384284229664 +2019-02-22 18:45:00,25.0,0.154365079,29.84894715706406 +2019-02-22 19:00:00,25.0,0.155687831,29.84850940621566 +2019-02-22 19:15:00,25.0,0.15,29.84807103174076 +2019-02-22 19:30:00,25.0,0.142328042,29.847632033695742 +2019-02-22 19:45:00,25.0,0.147486772,29.847192412137083 +2019-02-22 20:00:00,25.0,0.163888889,29.846752167121316 +2019-02-22 20:15:00,25.0,0.162566138,29.846311298705075 +2019-02-22 20:30:00,25.0,0.169973545,29.845869806945064 +2019-02-22 20:45:00,25.0,0.178439153,29.845427691898063 +2019-02-22 21:00:00,25.0,0.18968254,29.844984953620944 +2019-02-22 21:15:00,25.0,0.208862434,29.84454159217065 +2019-02-22 21:30:00,25.0,0.216137566,29.844097607604212 +2019-02-22 21:45:00,25.0,0.208730159,29.843652999978726 +2019-02-22 22:00:00,25.0,0.193783069,29.843207769351388 +2019-02-22 22:15:00,25.0,0.196825397,29.842761915779462 +2019-02-22 22:30:00,25.0,0.213756614,29.842315439320295 +2019-02-22 22:45:00,25.0,0.227380952,29.84186834003131 +2019-02-22 23:00:00,25.0,0.253968254,29.841420617970016 +2019-02-22 23:15:00,25.0,0.278174603,29.840972273194005 +2019-02-22 23:30:00,25.0,0.308597884,29.84052330576094 +2019-02-22 23:45:00,25.0,0.305026455,29.840073715728565 +2019-02-23 00:00:00,25.0,0.310449735,29.839623503154712 +2019-02-23 00:15:00,25.0,0.325529101,29.839172668097287 +2019-02-23 00:30:00,25.0,0.310714286,29.838721210614278 +2019-02-23 00:45:00,25.0,0.285582011,29.838269130763752 +2019-02-23 01:00:00,25.0,0.276851852,29.83781642860386 +2019-02-23 01:15:00,25.0,0.262698413,29.837363104192818 +2019-02-23 01:30:00,25.0,0.25489418,29.83690915758895 +2019-02-23 01:45:00,25.0,0.228306878,29.83645458885063 +2019-02-23 02:00:00,25.0,0.218518519,29.835999398036332 +2019-02-23 02:15:00,25.0,0.21494709,29.8355435852046 +2019-02-23 02:30:00,25.0,0.224206349,29.83508715041407 +2019-02-23 02:45:00,25.0,0.222751323,29.83463009372344 +2019-02-23 03:00:00,25.0,0.232142857,29.834172415191507 +2019-02-23 03:15:00,25.0,0.238359788,29.83371411487713 +2019-02-23 03:30:00,25.0,0.244047619,29.83325519283926 +2019-02-23 03:45:00,25.0,0.245634921,29.832795649136926 +2019-02-23 04:00:00,25.0,0.239285714,29.832335483829233 +2019-02-23 04:15:00,25.0,0.224338624,29.831874696975373 +2019-02-23 04:30:00,25.0,0.221031746,29.831413288634607 +2019-02-23 04:45:00,25.0,0.228835979,29.830951258866286 +2019-02-23 05:00:00,25.0,0.236375661,29.83048860772984 +2019-02-23 05:15:00,25.0,0.226984127,29.830025335284773 +2019-02-23 05:30:00,25.0,0.216931217,29.82956144159067 +2019-02-23 05:45:00,25.0,0.216666667,29.8290969267072 +2019-02-23 06:00:00,25.0,0.217857143,29.828631790694114 +2019-02-23 06:15:00,25.0,0.215740741,29.828166033611232 +2019-02-23 06:30:00,25.0,0.207671958,29.82769965551847 +2019-02-23 06:45:00,25.0,0.193253968,29.827232656475804 +2019-02-23 07:00:00,25.0,0.182407407,29.826765036543307 +2019-02-23 07:15:00,25.0,0.183333333,29.826296795781122 +2019-02-23 07:30:00,25.0,0.186640212,29.825827934249478 +2019-02-23 07:45:00,25.0,0.197619048,29.82535845200868 +2019-02-23 08:00:00,25.0,0.206481481,29.824888349119114 +2019-02-23 08:15:00,25.0,0.212566138,29.824417625641246 +2019-02-23 08:30:00,25.0,0.217857143,29.82394628163562 +2019-02-23 08:45:00,25.0,0.217460317,29.823474317162866 +2019-02-23 09:00:00,25.0,0.220634921,29.823001732283682 +2019-02-23 09:15:00,25.0,0.234920635,29.822528527058857 +2019-02-23 09:30:00,25.0,0.236243386,29.822054701549256 +2019-02-23 09:45:00,25.0,0.227910053,29.821580255815825 +2019-02-23 10:00:00,25.0,0.21521164,29.821105189919585 +2019-02-23 10:15:00,25.0,0.209920635,29.820629503921637 +2019-02-23 10:30:00,25.0,0.193783069,29.820153197883172 +2019-02-23 10:45:00,25.0,0.188624339,29.819676271865454 +2019-02-23 11:00:00,25.0,0.178042328,29.81919872592982 +2019-02-23 11:15:00,25.0,0.168121693,29.8187205601377 +2019-02-23 11:30:00,25.0,0.146825397,29.818241774550586 +2019-02-23 11:45:00,25.0,0.132671958,29.81776236923007 +2019-02-23 12:00:00,25.0,0.127910053,29.817282344237814 +2019-02-23 12:15:00,25.0,0.123148148,29.816801699635555 +2019-02-23 12:30:00,25.0,0.11468254,29.816320435485117 +2019-02-23 12:45:00,25.0,0.099470899,29.815838551848405 +2019-02-23 13:00:00,25.0,0.091137566,29.815356048787393 +2019-02-23 13:15:00,25.0,0.08478836,29.81487292636415 +2019-02-23 13:30:00,25.0,0.072619048,29.814389184640806 +2019-02-23 13:45:00,25.0,0.064021164,29.81390482367959 +2019-02-23 14:00:00,25.0,0.065079365,29.813419843542796 +2019-02-23 14:15:00,25.0,0.061243386,29.812934244292805 +2019-02-23 14:30:00,25.0,0.053306878,29.812448025992076 +2019-02-23 14:45:00,25.0,0.050661376,29.81196118870315 +2019-02-23 15:00:00,25.0,0.042724868,29.811473732488643 +2019-02-23 15:15:00,25.0,0.043386243,29.81098565741125 +2019-02-23 15:30:00,25.0,0.046296296,29.81049696353375 +2019-02-23 15:45:00,25.0,0.050925926,29.810007650919005 +2019-02-23 16:00:00,25.0,0.057142857,29.809517719629945 +2019-02-23 16:15:00,25.0,0.066534392,29.80902716972959 +2019-02-23 16:30:00,25.0,0.06957672,29.808536001281034 +2019-02-23 16:45:00,25.0,0.074867725,29.80804421434745 +2019-02-23 17:00:00,25.0,0.083333333,29.8075518089921 +2019-02-23 17:15:00,25.0,0.093386243,29.807058785278308 +2019-02-23 17:30:00,25.0,0.105687831,29.8065651432695 +2019-02-23 17:45:00,25.0,0.124206349,29.806070883029157 +2019-02-23 18:00:00,25.0,0.148015873,29.80557600462086 +2019-02-23 18:15:00,25.0,0.179365079,29.805080508108258 +2019-02-23 18:30:00,25.0,0.200925926,29.804584393555082 +2019-02-23 18:45:00,25.0,0.213227513,29.80408766102515 +2019-02-23 19:00:00,25.0,0.222751323,29.803590310582344 +2019-02-23 19:15:00,25.0,0.227910053,29.80309234229064 +2019-02-23 19:30:00,25.0,0.253968254,29.80259375621409 +2019-02-23 19:45:00,25.0,0.273015873,29.802094552416815 +2019-02-23 20:00:00,25.0,0.283201058,29.801594730963032 +2019-02-23 20:15:00,25.0,0.294444444,29.801094291917025 +2019-02-23 20:30:00,25.0,0.300529101,29.800593235343158 +2019-02-23 20:45:00,25.0,0.303439153,29.800091561305887 +2019-02-23 21:00:00,25.0,0.307936508,29.79958926986973 +2019-02-23 21:15:00,25.0,0.299338624,29.799086361099302 +2019-02-23 21:30:00,25.0,0.304761905,29.79858283505928 +2019-02-23 21:45:00,25.0,0.300529101,29.798078691814432 +2019-02-23 22:00:00,25.0,0.283068783,29.797573931429604 +2019-02-23 22:15:00,25.0,0.277645503,29.797068553969712 +2019-02-23 22:30:00,25.0,0.284391534,29.79656255949977 +2019-02-23 22:45:00,25.0,0.271957672,29.79605594808485 +2019-02-23 23:00:00,25.0,0.272751323,29.79554871979012 +2019-02-23 23:15:00,25.0,0.274603175,29.795040874680815 +2019-02-23 23:30:00,25.0,0.25952381,29.79453241282226 +2019-02-23 23:45:00,25.0,0.24973545,29.794023334279856 +2019-02-24 00:00:00,25.0,0.248544974,29.793513639119077 +2019-02-24 00:15:00,25.0,0.233862434,29.793003327405486 +2019-02-24 00:30:00,25.0,0.203174603,29.792492399204715 +2019-02-24 00:45:00,25.0,0.190608466,29.791980854582484 +2019-02-24 01:00:00,25.0,0.175,29.791468693604592 +2019-02-24 01:15:00,25.0,0.168650794,29.79095591633691 +2019-02-24 01:30:00,25.0,0.172619048,29.79044252284539 +2019-02-24 01:45:00,25.0,0.168783069,29.789928513196074 +2019-02-24 02:00:00,25.0,0.16005291,29.789413887455066 +2019-02-24 02:15:00,25.0,0.156481481,29.788898645688565 +2019-02-24 02:30:00,25.0,0.148544974,29.788382787962842 +2019-02-24 02:45:00,25.0,0.15,29.787866314344242 +2019-02-24 03:00:00,25.0,0.152910053,29.787349224899206 +2019-02-24 03:15:00,25.0,0.158465608,29.786831519694232 +2019-02-24 03:30:00,25.0,0.165343915,29.786313198795916 +2019-02-24 03:45:00,25.0,0.163227513,29.78579426227092 +2019-02-24 04:00:00,25.0,0.157671958,29.785274710185995 +2019-02-24 04:15:00,25.0,0.151719577,29.784754542607963 +2019-02-24 04:30:00,25.0,0.148412698,29.784233759603733 +2019-02-24 04:45:00,25.0,0.138888889,29.78371236124029 +2019-02-24 05:00:00,25.0,0.132010582,29.783190347584693 +2019-02-24 05:15:00,25.0,0.124206349,29.78266771870409 +2019-02-24 05:30:00,25.0,0.119047619,29.7821444746657 +2019-02-24 05:45:00,25.0,0.119312169,29.78162061553682 +2019-02-24 06:00:00,25.0,0.111640212,29.781096141384836 +2019-02-24 06:15:00,25.0,0.099206349,29.780571052277203 +2019-02-24 06:30:00,25.0,0.091798942,29.78004534828146 +2019-02-24 06:45:00,25.0,0.08968254,29.779519029465227 +2019-02-24 07:00:00,25.0,0.079232804,29.7789920958962 +2019-02-24 07:15:00,25.0,0.071693122,29.77846454764215 +2019-02-24 07:30:00,25.0,0.063624339,29.777936384770936 +2019-02-24 07:45:00,25.0,0.06005291,29.77740760735049 +2019-02-24 08:00:00,25.0,0.054365079,29.776878215448825 +2019-02-24 08:15:00,25.0,0.057539683,29.776348209134028 +2019-02-24 08:30:00,25.0,0.059920635,29.77581758847428 +2019-02-24 08:45:00,25.0,0.058333333,29.77528635353782 +2019-02-24 09:00:00,25.0,0.053968254,29.77475450439298 +2019-02-24 09:15:00,25.0,0.055820106,29.774222041108175 +2019-02-24 09:30:00,25.0,0.057142857,29.77368896375188 +2019-02-24 09:45:00,25.0,0.054761905,29.773155272392668 +2019-02-24 10:00:00,25.0,0.059126984,29.77262096709918 +2019-02-24 10:15:00,25.0,0.061243386,29.772086047940142 +2019-02-24 10:30:00,25.0,0.061640212,29.771550514984355 +2019-02-24 10:45:00,25.0,0.060846561,29.771014368300705 +2019-02-24 11:00:00,25.0,0.060449735,29.770477607958146 +2019-02-24 11:15:00,25.0,0.058862434,29.769940234025718 +2019-02-24 11:30:00,25.0,0.059259259,29.769402246572543 +2019-02-24 11:45:00,25.0,0.061111111,29.768863645667818 +2019-02-24 12:00:00,25.0,0.056481481,29.768324431380815 +2019-02-24 12:15:00,25.0,0.055291005,29.767784603780896 +2019-02-24 12:30:00,25.0,0.051851852,29.767244162937487 +2019-02-24 12:45:00,25.0,0.052116402,29.766703108920105 +2019-02-24 13:00:00,25.0,0.047883598,29.76616144179834 +2019-02-24 13:15:00,25.0,0.053306878,29.76561916164186 +2019-02-24 13:30:00,25.0,0.055820106,29.765076268520424 +2019-02-24 13:45:00,25.0,0.059920635,29.76453276250385 +2019-02-24 14:00:00,25.0,0.065608466,29.763988643662053 +2019-02-24 14:15:00,25.0,0.066931217,29.76344391206501 +2019-02-24 14:30:00,25.0,0.065740741,29.76289856778279 +2019-02-24 14:45:00,25.0,0.057142857,29.76235261088554 +2019-02-24 15:00:00,25.0,0.063359788,29.761806041443478 +2019-02-24 15:15:00,25.0,0.06957672,29.761258859526905 +2019-02-24 15:30:00,25.0,0.06957672,29.760711065206202 +2019-02-24 15:45:00,25.0,0.078835979,29.760162658551828 +2019-02-24 16:00:00,25.0,0.085846561,29.75961363963432 +2019-02-24 16:15:00,25.0,0.086243386,29.75906400852429 +2019-02-24 16:30:00,25.0,0.089153439,29.75851376529244 +2019-02-24 16:45:00,25.0,0.093915344,29.757962910009542 +2019-02-24 17:00:00,25.0,0.097354497,29.757411442746445 +2019-02-24 17:15:00,25.0,0.096296296,29.75685936357408 +2019-02-24 17:30:00,25.0,0.096031746,29.75630667256346 +2019-02-24 17:45:00,25.0,0.096825397,29.75575336978567 +2019-02-24 18:00:00,25.0,0.101851852,29.755199455311878 +2019-02-24 18:15:00,25.0,0.10952381,29.754644929213335 +2019-02-24 18:30:00,25.0,0.111640212,29.754089791561356 +2019-02-24 18:45:00,25.0,0.110978836,29.753534042427347 +2019-02-24 19:00:00,25.0,0.095767196,29.752977681882797 +2019-02-24 19:15:00,25.0,0.08531746,29.752420709999257 +2019-02-24 19:30:00,25.0,0.077645503,29.751863126848374 +2019-02-24 19:45:00,25.0,0.072619048,29.75130493250186 +2019-02-24 20:00:00,25.0,0.066534392,29.750746127031512 +2019-02-24 20:15:00,25.0,0.062566138,29.750186710509205 +2019-02-24 20:30:00,25.0,0.058201058,29.749626683006895 +2019-02-24 20:45:00,25.0,0.057142857,29.74906604459661 +2019-02-24 21:00:00,25.0,0.056349206,29.748504795350467 +2019-02-24 21:15:00,25.0,0.052910053,29.747942935340646 +2019-02-24 21:30:00,25.0,0.051851852,29.747380464639424 +2019-02-24 21:45:00,25.0,0.042989418,29.74681738331914 +2019-02-24 22:00:00,25.0,0.046164021,29.746253691452225 +2019-02-24 22:15:00,25.0,0.051058201,29.745689389111178 +2019-02-24 22:30:00,25.0,0.045238095,29.74512447636858 +2019-02-24 22:45:00,25.0,0.043518519,29.744558953297094 +2019-02-24 23:00:00,25.0,0.042592593,29.74399281996946 +2019-02-24 23:15:00,25.0,0.040079365,29.743426076458494 +2019-02-24 23:30:00,25.0,0.032671958,29.74285872283709 +2019-02-24 23:45:00,25.0,0.028571429,29.742290759178225 +2019-02-25 00:00:00,25.0,0.027248677,29.74172218555495 +2019-02-25 00:15:00,25.0,0.025925926,29.7411530020404 +2019-02-25 00:30:00,25.0,0.022883598,29.740583208707775 +2019-02-25 00:45:00,25.0,0.023809524,29.740012805630375 +2019-02-25 01:00:00,25.0,0.022486772,29.73944179288156 +2019-02-25 01:15:00,25.0,0.01984127,29.738870170534774 +2019-02-25 01:30:00,25.0,0.030687831,29.73829793866355 +2019-02-25 01:45:00,25.0,0.044312169,29.737725097341475 +2019-02-25 02:00:00,25.0,0.056613757,29.73715164664224 +2019-02-25 02:15:00,25.0,0.057936508,29.7365775866396 +2019-02-25 02:30:00,25.0,0.063227513,29.736002917407394 +2019-02-25 02:45:00,25.0,0.059656085,29.735427639019534 +2019-02-25 03:00:00,25.0,0.061111111,29.73485175155001 +2019-02-25 03:15:00,25.0,0.068650794,29.73427525507291 +2019-02-25 03:30:00,25.0,0.07010582,29.733698149662363 +2019-02-25 03:45:00,25.0,0.068386243,29.733120435392614 +2019-02-25 04:00:00,25.0,0.068386243,29.73254211233796 +2019-02-25 04:15:00,25.0,0.073280423,29.731963180572794 +2019-02-25 04:30:00,25.0,0.08505291,29.731383640171575 +2019-02-25 04:45:00,25.0,0.078306878,29.730803491208846 +2019-02-25 05:00:00,25.0,0.068518519,29.730222733759224 +2019-02-25 05:15:00,25.0,0.065608466,29.72964136789741 +2019-02-25 05:30:00,25.0,0.065873016,29.729059393698183 +2019-02-25 05:45:00,25.0,0.062830688,29.728476811236398 +2019-02-25 06:00:00,25.0,0.055555556,29.727893620586983 +2019-02-25 06:15:00,25.0,0.05462963,29.72730982182495 +2019-02-25 06:30:00,25.0,0.060978836,29.726725415025392 +2019-02-25 06:45:00,25.0,0.067195767,29.726140400263475 +2019-02-25 07:00:00,25.0,0.04973545,29.725554777614448 +2019-02-25 07:15:00,25.0,0.04457672,29.72496854715363 +2019-02-25 07:30:00,25.0,0.047883598,29.724381708956425 +2019-02-25 07:45:00,25.0,0.057407407,29.723794263098313 +2019-02-25 08:00:00,25.0,0.062566138,29.723206209654858 +2019-02-25 08:15:00,25.0,0.068518519,29.72261754870169 +2019-02-25 08:30:00,25.0,0.072089947,29.722028280314525 +2019-02-25 08:45:00,25.0,0.069973545,29.721438404569163 +2019-02-25 09:00:00,25.0,0.056613757,29.720847921541466 +2019-02-25 09:15:00,25.0,0.046957672,29.72025683130739 +2019-02-25 09:30:00,25.0,0.039021164,29.719665133942954 +2019-02-25 09:45:00,25.0,0.037962963,29.719072829524276 +2019-02-25 10:00:00,25.0,0.043121693,29.718479918127528 +2019-02-25 10:15:00,25.0,0.043783069,29.717886399828977 +2019-02-25 10:30:00,25.0,0.038888889,29.71729227470496 +2019-02-25 10:45:00,25.0,0.036904762,29.716697542831902 +2019-02-25 11:00:00,25.0,0.043518519,29.716102204286287 +2019-02-25 11:15:00,25.0,0.045899471,29.7155062591447 +2019-02-25 11:30:00,25.0,0.051190476,29.714909707483788 +2019-02-25 11:45:00,25.0,0.060582011,29.714312549380278 +2019-02-25 12:00:00,25.0,0.073280423,29.713714784910984 +2019-02-25 12:15:00,25.0,0.087301587,29.713116414152786 +2019-02-25 12:30:00,25.0,0.098677249,29.71251743718265 +2019-02-25 12:45:00,25.0,0.105952381,29.71191785407762 +2019-02-25 13:00:00,25.0,0.110714286,29.711317664914816 +2019-02-25 13:15:00,25.0,0.12010582,29.710716869771428 +2019-02-25 13:30:00,25.0,0.128042328,29.71011546872474 +2019-02-25 13:45:00,25.0,0.131878307,29.709513461852108 +2019-02-25 14:00:00,25.0,0.134126984,29.708910849230953 +2019-02-25 14:15:00,25.0,0.13478836,29.70830763093879 +2019-02-25 14:30:00,25.0,0.130820106,29.707703807053207 +2019-02-25 14:45:00,25.0,0.126190476,29.707099377651872 +2019-02-25 15:00:00,25.0,0.128571429,29.706494342812523 +2019-02-25 15:15:00,25.0,0.135846561,29.70588870261298 +2019-02-25 15:30:00,25.0,0.137698413,29.705282457131148 +2019-02-25 15:45:00,25.0,0.144708995,29.704675606444997 +2019-02-25 16:00:00,25.0,0.146825397,29.704068150632587 +2019-02-25 16:15:00,25.0,0.146560847,29.703460089772047 +2019-02-25 16:30:00,25.0,0.145238095,29.70285142394159 +2019-02-25 16:45:00,25.0,0.149470899,29.702242153219498 +2019-02-25 17:00:00,25.0,0.153835979,29.701632277684144 +2019-02-25 17:15:00,25.0,0.15952381,29.70102179741397 +2019-02-25 17:30:00,25.0,0.165343915,29.700410712487493 +2019-02-25 17:45:00,25.0,0.168650794,29.699799022983317 +2019-02-25 18:00:00,25.0,0.161640212,29.699186728980116 +2019-02-25 18:15:00,25.0,0.150132275,29.698573830556647 +2019-02-25 18:30:00,25.0,0.147751323,29.69796032779174 +2019-02-25 18:45:00,25.0,0.143915344,29.69734622076431 +2019-02-25 19:00:00,25.0,0.134126984,29.696731509553338 +2019-02-25 19:15:00,25.0,0.123677249,29.696116194237895 +2019-02-25 19:30:00,25.0,0.110846561,29.695500274897118 +2019-02-25 19:45:00,25.0,0.102248677,29.694883751610234 +2019-02-25 20:00:00,25.0,0.108465608,29.694266624456542 +2019-02-25 20:15:00,25.0,0.108333333,29.693648893515416 +2019-02-25 20:30:00,25.0,0.117195767,29.693030558866305 +2019-02-25 20:45:00,25.0,0.123280423,29.69241162058875 +2019-02-25 21:00:00,25.0,0.129365079,29.691792078762354 +2019-02-25 21:15:00,25.0,0.125,29.69117193346681 +2019-02-25 21:30:00,25.0,0.120238095,29.690551184781874 +2019-02-25 21:45:00,25.0,0.126190476,29.689929832787392 +2019-02-25 22:00:00,25.0,0.128835979,29.689307877563287 +2019-02-25 22:15:00,25.0,0.133201058,29.688685319189553 +2019-02-25 22:30:00,25.0,0.135449735,29.688062157746266 +2019-02-25 22:45:00,25.0,0.139417989,29.687438393313577 +2019-02-25 23:00:00,25.0,0.136375661,29.686814025971717 +2019-02-25 23:15:00,25.0,0.128042328,29.686189055800995 +2019-02-25 23:30:00,25.0,0.113756614,29.68556348288179 +2019-02-25 23:45:00,25.0,0.107407407,29.684937307294575 +2019-02-26 00:00:00,25.0,0.105952381,29.68431052911988 +2019-02-26 00:15:00,25.0,0.104365079,29.683683148438327 +2019-02-26 00:30:00,25.0,0.102248677,29.683055165330614 +2019-02-26 00:45:00,25.0,0.10952381,29.68242657987751 +2019-02-26 01:00:00,25.0,0.11547619,29.681797392159865 +2019-02-26 01:15:00,25.0,0.107671958,29.68116760225861 +2019-02-26 01:30:00,25.0,0.099206349,29.680537210254744 +2019-02-26 01:45:00,25.0,0.093650794,29.679906216229355 +2019-02-26 02:00:00,25.0,0.096428571,29.6792746202636 +2019-02-26 02:15:00,25.0,0.099603175,29.67864242243872 +2019-02-26 02:30:00,25.0,0.098677249,29.678009622836026 +2019-02-26 02:45:00,25.0,0.097354497,29.67737622153691 +2019-02-26 03:00:00,25.0,0.098544974,29.676742218622845 +2019-02-26 03:15:00,25.0,0.101190476,29.676107614175372 +2019-02-26 03:30:00,25.0,0.088756614,29.67547240827612 +2019-02-26 03:45:00,25.0,0.078835979,29.674836601006792 +2019-02-26 04:00:00,25.0,0.078306878,29.674200192449163 +2019-02-26 04:15:00,25.0,0.082010582,29.673563182685093 +2019-02-26 04:30:00,25.0,0.081481481,29.67292557179651 +2019-02-26 04:45:00,25.0,0.075661376,29.672287359865432 +2019-02-26 05:00:00,25.0,0.075,29.67164854697394 +2019-02-26 05:15:00,25.0,0.07010582,29.67100913320421 +2019-02-26 05:30:00,25.0,0.063492063,29.670369118638472 +2019-02-26 05:45:00,25.0,0.057010582,29.669728503359053 +2019-02-26 06:00:00,25.0,0.055026455,29.669087287448356 +2019-02-26 06:15:00,25.0,0.051190476,29.668445470988843 +2019-02-26 06:30:00,25.0,0.043783069,29.667803054063075 +2019-02-26 06:45:00,25.0,0.041931217,29.66716003675368 +2019-02-26 07:00:00,25.0,0.039153439,29.66651641914336 +2019-02-26 07:15:00,25.0,0.036640212,29.665872201314905 +2019-02-26 07:30:00,25.0,0.033994709,29.66522738335117 +2019-02-26 07:45:00,25.0,0.028703704,29.664581965335096 +2019-02-26 08:00:00,25.0,0.026984127,29.6639359473497 +2019-02-26 08:15:00,25.0,0.023941799,29.66328932947807 +2019-02-26 08:30:00,25.0,0.020502646,29.662642111803375 +2019-02-26 08:45:00,25.0,0.021164021,29.661994294408867 +2019-02-26 09:00:00,25.0,0.023809524,29.661345877377865 +2019-02-26 09:15:00,25.0,0.019179894,29.660696860793774 +2019-02-26 09:30:00,25.0,0.016269841,29.660047244740067 +2019-02-26 09:45:00,25.0,0.013359788,29.659397029300305 +2019-02-26 10:00:00,25.0,0.009920635,29.658746214558114 +2019-02-26 10:15:00,25.0,0.008465608,29.65809480059721 +2019-02-26 10:30:00,25.0,0.00978836,29.657442787501374 +2019-02-26 10:45:00,25.0,0.007539683,29.65679017535447 +2019-02-26 11:00:00,25.0,0.007407407,29.65613696424044 +2019-02-26 11:15:00,25.0,0.010449735,29.6554831542433 +2019-02-26 11:30:00,25.0,0.010846561,29.654828745447148 +2019-02-26 11:45:00,25.0,0.011904762,29.65417373793615 +2019-02-26 12:00:00,25.0,0.00978836,29.653518131794563 +2019-02-26 12:15:00,25.0,0.012037037,29.652861927106706 +2019-02-26 12:30:00,25.0,0.012698413,29.652205123956982 +2019-02-26 12:45:00,25.0,0.015079365,29.651547722429868 +2019-02-26 13:00:00,25.0,0.019444444,29.65088972260993 +2019-02-26 13:15:00,25.0,0.020767196,29.650231124581794 +2019-02-26 13:30:00,25.0,0.026455026,29.64957192843017 +2019-02-26 13:45:00,25.0,0.031349206,29.648912134239847 +2019-02-26 14:00:00,25.0,0.035978836,29.648251742095688 +2019-02-26 14:15:00,25.0,0.038095238,29.647590752082642 +2019-02-26 14:30:00,25.0,0.042989418,29.646929164285716 +2019-02-26 14:45:00,25.0,0.046296296,29.64626697879001 +2019-02-26 15:00:00,25.0,0.049867725,29.645604195680697 +2019-02-26 15:15:00,25.0,0.054497354,29.64494081504302 +2019-02-26 15:30:00,25.0,0.054232804,29.644276836962316 +2019-02-26 15:45:00,25.0,0.05515873,29.643612261523977 +2019-02-26 16:00:00,25.0,0.053571429,29.642947088813486 +2019-02-26 16:15:00,25.0,0.053968254,29.642281318916396 +2019-02-26 16:30:00,25.0,0.057804233,29.641614951918342 +2019-02-26 16:45:00,25.0,0.062962963,29.640947987905037 +2019-02-26 17:00:00,25.0,0.068783069,29.640280426962264 +2019-02-26 17:15:00,25.0,0.061111111,29.639612269175885 +2019-02-26 17:30:00,25.0,0.055952381,29.63894351463184 +2019-02-26 17:45:00,25.0,0.050793651,29.638274163416153 +2019-02-26 18:00:00,25.0,0.044179894,29.637604215614907 +2019-02-26 18:15:00,25.0,0.04047619,29.63693367131428 +2019-02-26 18:30:00,25.0,0.038888889,29.636262530600515 +2019-02-26 18:45:00,25.0,0.03505291,29.63559079355994 +2019-02-26 19:00:00,25.0,0.035582011,29.634918460278946 +2019-02-26 19:15:00,25.0,0.035582011,29.63424553084402 +2019-02-26 19:30:00,25.0,0.037962963,29.633572005341712 +2019-02-26 19:45:00,25.0,0.038492063,29.632897883858654 +2019-02-26 20:00:00,25.0,0.041931217,29.632223166481545 +2019-02-26 20:15:00,25.0,0.045238095,29.63154785329718 +2019-02-26 20:30:00,25.0,0.047089947,29.630871944392414 +2019-02-26 20:45:00,25.0,0.051058201,29.630195439854184 +2019-02-26 21:00:00,25.0,0.052777778,29.629518339769504 +2019-02-26 21:15:00,25.0,0.047222222,29.628840644225466 +2019-02-26 21:30:00,25.0,0.048544974,29.628162353309236 +2019-02-26 21:45:00,25.0,0.04537037,29.627483467108053 +2019-02-26 22:00:00,25.0,0.042328042,29.62680398570924 +2019-02-26 22:15:00,25.0,0.042328042,29.626123909200196 +2019-02-26 22:30:00,25.0,0.042460317,29.625443237668392 +2019-02-26 22:45:00,25.0,0.040079365,29.624761971201373 +2019-02-26 23:00:00,25.0,0.034920635,29.624080109886773 +2019-02-26 23:15:00,25.0,0.033333333,29.62339765381229 +2019-02-26 23:30:00,25.0,0.032010582,29.622714603065706 +2019-02-26 23:45:00,25.0,0.036772487,29.62203095773487 +2019-02-27 00:00:00,25.0,0.041534392,29.621346717907723 +2019-02-27 00:15:00,25.0,0.042724868,29.62066188367227 +2019-02-27 00:30:00,25.0,0.04047619,29.619976455116593 +2019-02-27 00:45:00,25.0,0.041005291,29.619290432328853 +2019-02-27 01:00:00,25.0,0.036507937,29.618603815397293 +2019-02-27 01:15:00,25.0,0.042328042,29.617916604410226 +2019-02-27 01:30:00,25.0,0.057010582,29.617228799456036 +2019-02-27 01:45:00,25.0,0.069179894,29.6165404006232 +2019-02-27 02:00:00,25.0,0.069973545,29.615851408000257 +2019-02-27 02:15:00,25.0,0.068783069,29.615161821675827 +2019-02-27 02:30:00,25.0,0.068650794,29.614471641738604 +2019-02-27 02:45:00,25.0,0.072619048,29.61378086827736 +2019-02-27 03:00:00,25.0,0.074338624,29.613089501380948 +2019-02-27 03:15:00,25.0,0.079497354,29.612397541138293 +2019-02-27 03:30:00,25.0,0.088888889,29.611704987638394 +2019-02-27 03:45:00,25.0,0.094312169,29.61101184097033 +2019-02-27 04:00:00,25.0,0.091534392,29.610318101223257 +2019-02-27 04:15:00,25.0,0.096825397,29.6096237684864 +2019-02-27 04:30:00,25.0,0.108068783,29.608928842849068 +2019-02-27 04:45:00,25.0,0.11984127,29.60823332440065 +2019-02-27 05:00:00,25.0,0.123280423,29.607537213230597 +2019-02-27 05:15:00,25.0,0.126058201,29.606840509428444 +2019-02-27 05:30:00,25.0,0.132936508,29.60614321308381 +2019-02-27 05:45:00,25.0,0.137433862,29.605445324286382 +2019-02-27 06:00:00,25.0,0.149074074,29.604746843125916 +2019-02-27 06:15:00,25.0,0.152645503,29.60404776969226 +2019-02-27 06:30:00,25.0,0.158862434,29.60334810407533 +2019-02-27 06:45:00,25.0,0.157010582,29.602647846365116 +2019-02-27 07:00:00,25.0,0.159391534,29.601946996651684 +2019-02-27 07:15:00,25.0,0.16494709,29.601245555025184 +2019-02-27 07:30:00,25.0,0.156746032,29.600543521575833 +2019-02-27 07:45:00,25.0,0.164550265,29.599840896393932 +2019-02-27 08:00:00,25.0,0.168121693,29.599137679569854 +2019-02-27 08:15:00,25.0,0.170502646,29.598433871194047 +2019-02-27 08:30:00,25.0,0.168783069,29.597729471357034 +2019-02-27 08:45:00,25.0,0.172883598,29.597024480149422 +2019-02-27 09:00:00,25.0,0.172751323,29.59631889766188 +2019-02-27 09:15:00,25.0,0.182142857,29.595612723985173 +2019-02-27 09:30:00,25.0,0.191666667,29.594905959210124 +2019-02-27 09:45:00,25.0,0.197089947,29.59419860342764 +2019-02-27 10:00:00,25.0,0.204365079,29.5934906567287 +2019-02-27 10:15:00,25.0,0.208730159,29.592782119204365 +2019-02-27 10:30:00,25.0,0.206746032,29.59207299094577 +2019-02-27 10:45:00,25.0,0.208597884,29.59136327204412 +2019-02-27 11:00:00,25.0,0.196031746,29.590652962590706 +2019-02-27 11:15:00,25.0,0.189550265,29.589942062676887 +2019-02-27 11:30:00,25.0,0.18505291,29.589230572394097 +2019-02-27 11:45:00,25.0,0.182142857,29.588518491833856 +2019-02-27 12:00:00,25.0,0.186772487,29.58780582108775 +2019-02-27 12:15:00,25.0,0.201190476,29.587092560247445 +2019-02-27 12:30:00,25.0,0.216666667,29.58637870940468 +2019-02-27 12:45:00,25.0,0.221560847,29.58566426865128 +2019-02-27 13:00:00,25.0,0.23505291,29.584949238079126 +2019-02-27 13:15:00,25.0,0.248544974,29.584233617780196 +2019-02-27 13:30:00,25.0,0.262698413,29.58351740784653 +2019-02-27 13:45:00,25.0,0.263756614,29.582800608370253 +2019-02-27 14:00:00,25.0,0.274206349,29.582083219443557 +2019-02-27 14:15:00,25.0,0.288095238,29.581365241158718 +2019-02-27 14:30:00,25.0,0.301587302,29.58064667360808 +2019-02-27 14:45:00,25.0,0.312169312,29.57992751688407 +2019-02-27 15:00:00,25.0,0.319444444,29.57920777107919 +2019-02-27 15:15:00,25.0,0.323412698,29.578487436286007 +2019-02-27 15:30:00,25.0,0.334391534,29.57776651259718 +2019-02-27 15:45:00,25.0,0.340343915,29.57704500010543 +2019-02-27 16:00:00,25.0,0.345899471,29.576322898903566 +2019-02-27 16:15:00,25.0,0.364550265,29.57560020908446 +2019-02-27 16:30:00,25.0,0.360582011,29.57487693074107 +2019-02-27 16:45:00,25.0,0.359259259,29.574153063966428 +2019-02-27 17:00:00,25.0,0.368915344,29.573428608853632 +2019-02-27 17:15:00,25.0,0.377380952,29.572703565495868 +2019-02-27 17:30:00,25.0,0.378835979,29.571977933986393 +2019-02-27 17:45:00,25.0,0.38994709,29.571251714418537 +2019-02-27 18:00:00,25.0,0.412698413,29.57052490688571 +2019-02-27 18:15:00,25.0,0.410846561,29.569797511481394 +2019-02-27 18:30:00,25.0,0.427910053,29.569069528299153 +2019-02-27 18:45:00,25.0,0.417063492,29.568340957432614 +2019-02-27 19:00:00,25.0,0.424206349,29.56761179897549 +2019-02-27 19:15:00,25.0,0.426587302,29.566882053021573 +2019-02-27 19:30:00,25.0,0.417195767,29.56615171966472 +2019-02-27 19:45:00,25.0,0.398544974,29.56542079899887 +2019-02-27 20:00:00,25.0,0.385714286,29.564689291118032 +2019-02-27 20:15:00,25.0,0.376058201,29.563957196116295 +2019-02-27 20:30:00,25.0,0.376455026,29.56322451408783 +2019-02-27 20:45:00,25.0,0.36468254,29.562491245126864 +2019-02-27 21:00:00,25.0,0.364153439,29.56175738932772 +2019-02-27 21:15:00,25.0,0.358465608,29.56102294678479 +2019-02-27 21:30:00,25.0,0.353439153,29.56028791759253 +2019-02-27 21:45:00,25.0,0.365079365,29.55955230184549 +2019-02-27 22:00:00,25.0,0.378968254,29.558816099638285 +2019-02-27 22:15:00,25.0,0.37989418,29.558079311065605 +2019-02-27 22:30:00,25.0,0.391402116,29.55734193622222 +2019-02-27 22:45:00,25.0,0.401587302,29.556603975202968 +2019-02-27 23:00:00,25.0,0.394179894,29.555865428102774 +2019-02-27 23:15:00,25.0,0.415608466,29.555126295016628 +2019-02-27 23:30:00,25.0,0.422354497,29.554386576039597 +2019-02-27 23:45:00,25.0,0.433597884,29.553646271266828 +2019-02-28 00:00:00,25.0,0.430026455,29.55290538079354 +2019-02-28 00:15:00,25.0,0.431878307,29.552163904715027 +2019-02-28 00:30:00,25.0,0.43505291,29.55142184312666 +2019-02-28 00:45:00,25.0,0.431746032,29.55067919612389 +2019-02-28 01:00:00,25.0,0.450925926,29.54993596380223 +2019-02-28 01:15:00,25.0,0.475661376,29.549192146257283 +2019-02-28 01:30:00,25.0,0.500132275,29.548447743584713 +2019-02-28 01:45:00,25.0,0.502248677,29.547702755880273 +2019-02-28 02:00:00,25.0,0.481216931,29.546957183239783 +2019-02-28 02:15:00,25.0,0.466931217,29.54621102575914 +2019-02-28 02:30:00,25.0,0.474470899,29.545464283534315 +2019-02-28 02:45:00,25.0,0.469312169,29.544716956661357 +2019-02-28 03:00:00,25.0,0.461507937,29.54396904523639 +2019-02-28 03:15:00,25.0,0.460185185,29.543220549355613 +2019-02-28 03:30:00,25.0,0.458333333,29.5424714691153 +2019-02-28 03:45:00,25.0,0.443650794,29.541721804611793 +2019-02-28 04:00:00,25.0,0.427777778,29.54097155594152 +2019-02-28 04:15:00,25.0,0.400396825,29.54022072320098 +2019-02-28 04:30:00,25.0,0.385185185,29.539469306486748 +2019-02-28 04:45:00,25.0,0.366005291,29.53871730589547 +2019-02-28 05:00:00,25.0,0.352116402,29.53796472152387 +2019-02-28 05:15:00,25.0,0.32962963,29.53721155346875 +2019-02-28 05:30:00,25.0,0.307407407,29.536457801826984 +2019-02-28 05:45:00,25.0,0.29021164,29.535703466695516 +2019-02-28 06:00:00,25.0,0.277248677,29.53494854817138 +2019-02-28 06:15:00,25.0,0.302645503,29.534193046351664 +2019-02-28 06:30:00,25.0,0.322089947,29.53343696133355 +2019-02-28 06:45:00,25.0,0.316005291,29.532680293214284 +2019-02-28 07:00:00,25.0,0.302645503,29.531923042091194 +2019-02-28 07:15:00,25.0,0.283862434,29.531165208061676 +2019-02-28 07:30:00,25.0,0.263095238,29.530406791223207 +2019-02-28 07:45:00,25.0,0.244444444,29.529647791673334 +2019-02-28 08:00:00,25.0,0.225925926,29.52888820950968 +2019-02-28 08:15:00,25.0,0.214814815,29.52812804482995 +2019-02-28 08:30:00,25.0,0.207010582,29.527367297731914 +2019-02-28 08:45:00,25.0,0.189550265,29.526605968313422 +2019-02-28 09:00:00,25.0,0.168650794,29.525844056672398 +2019-02-28 09:15:00,25.0,0.148677249,29.525081562906834 +2019-02-28 09:30:00,25.0,0.146693122,29.52431848711482 +2019-02-28 09:45:00,25.0,0.141666667,29.523554829394484 +2019-02-28 10:00:00,25.0,0.132275132,29.522790589844067 +2019-02-28 10:15:00,25.0,0.117328042,29.52202576856186 +2019-02-28 10:30:00,25.0,0.112169312,29.521260365646235 +2019-02-28 10:45:00,25.0,0.1,29.52049438119564 +2019-02-28 11:00:00,25.0,0.092460317,29.519727815308602 +2019-02-28 11:15:00,25.0,0.087962963,29.518960668083714 +2019-02-28 11:30:00,25.0,0.083201058,29.518192939619652 +2019-02-28 11:45:00,25.0,0.082275132,29.517424630015157 +2019-02-28 12:00:00,25.0,0.087433862,29.516655739369057 +2019-02-28 12:15:00,25.0,0.083068783,29.515886267780246 +2019-02-28 12:30:00,25.0,0.083333333,29.515116215347692 +2019-02-28 12:45:00,25.0,0.091269841,29.51434558217045 +2019-02-28 13:00:00,25.0,0.102513228,29.51357436834763 +2019-02-28 13:15:00,25.0,0.111772487,29.512802573978433 +2019-02-28 13:30:00,25.0,0.111640212,29.51203019916213 +2019-02-28 13:45:00,25.0,0.112962963,29.51125724399806 +2019-02-28 14:00:00,25.0,0.116005291,29.51048370858565 +2019-02-28 14:15:00,25.0,0.118915344,29.509709593024386 +2019-02-28 14:30:00,25.0,0.124603175,29.508934897413845 +2019-02-28 14:45:00,25.0,0.131084656,29.50815962185366 +2019-02-28 15:00:00,25.0,0.129232804,29.50738376644356 +2019-02-28 15:15:00,25.0,0.131481481,29.506607331283327 +2019-02-28 15:30:00,25.0,0.135846561,29.50583031647284 +2019-02-28 15:45:00,25.0,0.135582011,29.505052722112023 +2019-02-28 16:00:00,25.0,0.126719577,29.504274548300906 +2019-02-28 16:15:00,25.0,0.122486772,29.503495795139578 +2019-02-28 16:30:00,25.0,0.116798942,29.5027164627282 +2019-02-28 16:45:00,25.0,0.11031746,29.501936551167013 +2019-02-28 17:00:00,25.0,0.102513228,29.50115606055633 +2019-02-28 17:15:00,25.0,0.099074074,29.50037499099654 +2019-02-28 17:30:00,25.0,0.09537037,29.499593342588106 +2019-02-28 17:45:00,25.0,0.096031746,29.498811115431568 +2019-02-28 18:00:00,25.0,0.097486772,29.498028309627536 +2019-02-28 18:15:00,25.0,0.1,29.497244925276696 +2019-02-28 18:30:00,25.0,0.097883598,29.49646096247981 +2019-02-28 18:45:00,25.0,0.093253968,29.49567642133771 +2019-02-28 19:00:00,25.0,0.07989418,29.494891301951306 +2019-02-28 19:15:00,25.0,0.074338624,29.494105604421584 +2019-02-28 19:30:00,25.0,0.068915344,29.4933193288496 +2019-02-28 19:45:00,25.0,0.062698413,29.492532475336496 +2019-02-28 20:00:00,25.0,0.063492063,29.491745043983464 +2019-02-28 20:15:00,25.0,0.068121693,29.490957034891792 +2019-02-28 20:30:00,25.0,0.071164021,29.49016844816284 +2019-02-28 20:45:00,25.0,0.066666667,29.48937928389803 +2019-02-28 21:00:00,25.0,0.064550265,29.488589542198874 +2019-02-28 21:15:00,25.0,0.062698413,29.48779922316694 +2019-02-28 21:30:00,25.0,0.057407407,29.487008326903894 +2019-02-28 21:45:00,25.0,0.050529101,29.48621685351145 +2019-02-28 22:00:00,25.0,0.046957672,29.48542480309142 +2019-02-28 22:15:00,25.0,0.039814815,29.48463217574567 +2019-02-28 22:30:00,25.0,0.040740741,29.483838971576155 +2019-02-28 22:45:00,25.0,0.039285714,29.483045190684898 +2019-02-28 23:00:00,25.0,0.036640212,29.482250833174 +2019-02-28 23:15:00,25.0,0.037830688,29.481455899145622 +2019-02-28 23:30:00,25.0,0.036507937,29.480660388702024 +2019-02-28 23:45:00,25.0,0.03531746,29.47986430194552 +2019-03-01 00:00:00,25.0,0.035714286,29.479067638978503 +2019-03-01 00:15:00,25.0,0.031481481,29.478270399903444 +2019-03-01 00:30:00,25.0,0.032407407,29.477472584822884 +2019-03-01 00:45:00,25.0,0.033862434,29.476674193839443 +2019-03-01 01:00:00,25.0,0.036904762,29.475875227055806 +2019-03-01 01:15:00,25.0,0.045634921,29.475075684574747 +2019-03-01 01:30:00,25.0,0.053439153,29.474275566499095 +2019-03-01 01:45:00,25.0,0.058465608,29.47347487293177 +2019-03-01 02:00:00,25.0,0.07010582,29.47267360397576 +2019-03-01 02:15:00,25.0,0.080820106,29.47187175973412 +2019-03-01 02:30:00,25.0,0.087830688,29.471069340309988 +2019-03-01 02:45:00,25.0,0.096296296,29.470266345806575 +2019-03-01 03:00:00,25.0,0.104761905,29.46946277632716 +2019-03-01 03:15:00,25.0,0.114021164,29.468658631975103 +2019-03-01 03:30:00,25.0,0.118783069,29.467853912853833 +2019-03-01 03:45:00,25.0,0.135846561,29.46704861906686 +2019-03-01 04:00:00,25.0,0.150396825,29.466242750717754 +2019-03-01 04:15:00,25.0,0.159126984,29.465436307910174 +2019-03-01 04:30:00,25.0,0.174470899,29.464629290747844 +2019-03-01 04:45:00,25.0,0.188227513,29.463821699334567 +2019-03-01 05:00:00,25.0,0.198809524,29.463013533774213 +2019-03-01 05:15:00,25.0,0.206746032,29.46220479417073 +2019-03-01 05:30:00,25.0,0.218386243,29.46139548062815 +2019-03-01 05:45:00,25.0,0.221560847,29.460585593250556 +2019-03-01 06:00:00,25.0,0.214550265,29.459775132142127 +2019-03-01 06:15:00,25.0,0.213624339,29.458964097407097 +2019-03-01 06:30:00,25.0,0.216137566,29.458152489149793 +2019-03-01 06:45:00,25.0,0.213359788,29.4573403074746 +2019-03-01 07:00:00,25.0,0.20978836,29.456527552485984 +2019-03-01 07:15:00,25.0,0.196957672,29.45571422428848 +2019-03-01 07:30:00,25.0,0.195767196,29.45490032298671 +2019-03-01 07:45:00,25.0,0.199206349,29.454085848685352 +2019-03-01 08:00:00,25.0,0.214285714,29.453270801489165 +2019-03-01 08:15:00,25.0,0.228306878,29.452455181502984 +2019-03-01 08:30:00,25.0,0.236243386,29.451638988831718 +2019-03-01 08:45:00,25.0,0.246164021,29.450822223580346 +2019-03-01 09:00:00,25.0,0.254497354,29.450004885853918 +2019-03-01 09:15:00,25.0,0.257010582,29.44918697575757 +2019-03-01 09:30:00,25.0,0.268518519,29.4483684933965 +2019-03-01 09:45:00,25.0,0.276719577,29.44754943887598 +2019-03-01 10:00:00,25.0,0.289153439,29.446729812301363 +2019-03-01 10:15:00,25.0,0.301719577,29.44590961377807 +2019-03-01 10:30:00,25.0,0.312301587,29.445088843411597 +2019-03-01 10:45:00,25.0,0.322089947,29.44426750130751 +2019-03-01 11:00:00,25.0,0.326190476,29.443445587571457 +2019-03-01 11:15:00,25.0,0.350661376,29.442623102309152 +2019-03-01 11:30:00,25.0,0.36984127,29.441800045626383 +2019-03-01 11:45:00,25.0,0.360449735,29.440976417629017 +2019-03-01 12:00:00,25.0,0.338756614,29.440152218422988 +2019-03-01 12:15:00,25.0,0.331481481,29.439327448114312 +2019-03-01 12:30:00,25.0,0.325529101,29.438502106809064 +2019-03-01 12:45:00,25.0,0.321296296,29.43767619461341 +2019-03-01 13:00:00,25.0,0.325396825,29.436849711633574 +2019-03-01 13:15:00,25.0,0.324603175,29.43602265797586 +2019-03-01 13:30:00,25.0,0.313492063,29.435195033746655 +2019-03-01 13:45:00,25.0,0.306878307,29.4343668390524 +2019-03-01 14:00:00,25.0,0.287433862,29.433538073999625 +2019-03-01 14:15:00,25.0,0.26494709,29.432708738694924 +2019-03-01 14:30:00,25.0,0.255555556,29.43187883324497 +2019-03-01 14:45:00,25.0,0.253703704,29.431048357756506 +2019-03-01 15:00:00,25.0,0.250925926,29.43021731233635 +2019-03-01 15:15:00,25.0,0.240873016,29.429385697091394 +2019-03-01 15:30:00,25.0,0.248809524,29.4285535121286 +2019-03-01 15:45:00,25.0,0.247751323,29.42772075755501 +2019-03-01 16:00:00,25.0,0.259920635,29.42688743347773 +2019-03-01 16:15:00,25.0,0.264153439,29.42605354000395 +2019-03-01 16:30:00,25.0,0.257010582,29.42521907724092 +2019-03-01 16:45:00,25.0,0.257539683,29.424384045295977 +2019-03-01 17:00:00,25.0,0.253439153,29.42354844427652 +2019-03-01 17:15:00,25.0,0.239021164,29.422712274290028 +2019-03-01 17:30:00,25.0,0.232671958,29.421875535444048 +2019-03-01 17:45:00,25.0,0.228835979,29.42103822784621 +2019-03-01 18:00:00,25.0,0.216798942,29.420200351604205 +2019-03-01 18:15:00,25.0,0.201058201,29.419361906825806 +2019-03-01 18:30:00,25.0,0.189814815,29.41852289361885 +2019-03-01 18:45:00,25.0,0.186243386,29.417683312091256 +2019-03-01 19:00:00,25.0,0.173412698,29.416843162351018 +2019-03-01 19:15:00,25.0,0.156746032,29.41600244450619 +2019-03-01 19:30:00,25.0,0.152380952,29.415161158664915 +2019-03-01 19:45:00,25.0,0.153174603,29.414319304935397 +2019-03-01 20:00:00,25.0,0.147883598,29.413476883425915 +2019-03-01 20:15:00,25.0,0.153703704,29.412633894244824 +2019-03-01 20:30:00,25.0,0.16031746,29.411790337500552 +2019-03-01 20:45:00,25.0,0.157804233,29.4109462133016 +2019-03-01 21:00:00,25.0,0.152380952,29.410101521756545 +2019-03-01 21:15:00,25.0,0.161111111,29.409256262974022 +2019-03-01 21:30:00,25.0,0.169047619,29.408410437062763 +2019-03-01 21:45:00,25.0,0.16494709,29.40756404413155 +2019-03-01 22:00:00,25.0,0.161507937,29.406717084289255 +2019-03-01 22:15:00,25.0,0.164153439,29.405869557644813 +2019-03-01 22:30:00,25.0,0.160449735,29.405021464307232 +2019-03-01 22:45:00,25.0,0.159126984,29.404172804385603 +2019-03-01 23:00:00,25.0,0.157539683,29.403323577989077 +2019-03-01 23:15:00,25.0,0.159126984,29.40247378522688 +2019-03-01 23:30:00,25.0,0.153306878,29.401623426208324 +2019-03-01 23:45:00,25.0,0.143121693,29.40077250104278 +2019-03-02 00:00:00,25.0,0.123148148,29.399921009839694 +2019-03-02 00:15:00,25.0,0.109126984,29.39906895270859 +2019-03-02 00:30:00,25.0,0.094973545,29.39821632975906 +2019-03-02 00:45:00,25.0,0.087037037,29.397363141100765 +2019-03-02 01:00:00,25.0,0.082804233,29.39650938684345 +2019-03-02 01:15:00,25.0,0.077380952,29.39565506709693 +2019-03-02 01:30:00,25.0,0.071825397,29.394800181971082 +2019-03-02 01:45:00,25.0,0.064550265,29.393944731575864 +2019-03-02 02:00:00,25.0,0.060978836,29.393088716021314 +2019-03-02 02:15:00,25.0,0.060185185,29.39223213541753 +2019-03-02 02:30:00,25.0,0.06031746,29.391374989874684 +2019-03-02 02:45:00,25.0,0.063888889,29.390517279503026 +2019-03-02 03:00:00,25.0,0.072354497,29.389659004412877 +2019-03-02 03:15:00,25.0,0.07473545,29.388800164714635 +2019-03-02 03:30:00,25.0,0.074867725,29.38794076051876 +2019-03-02 03:45:00,25.0,0.07473545,29.38708079193579 +2019-03-02 04:00:00,25.0,0.07989418,29.386220259076342 +2019-03-02 04:15:00,25.0,0.084391534,29.385359162051095 +2019-03-02 04:30:00,25.0,0.075132275,29.384497500970806 +2019-03-02 04:45:00,25.0,0.07010582,29.383635275946304 +2019-03-02 05:00:00,25.0,0.07473545,29.38277248708849 +2019-03-02 05:15:00,25.0,0.069973545,29.381909134508344 +2019-03-02 05:30:00,25.0,0.06521164,29.381045218316903 +2019-03-02 05:45:00,25.0,0.068253968,29.38018073862529 +2019-03-02 06:00:00,25.0,0.066534392,29.379315695544697 +2019-03-02 06:15:00,25.0,0.058862434,29.378450089186387 +2019-03-02 06:30:00,25.0,0.066534392,29.377583919661696 +2019-03-02 06:45:00,25.0,0.075529101,29.376717187082033 +2019-03-02 07:00:00,25.0,0.087301587,29.37584989155888 +2019-03-02 07:15:00,25.0,0.102645503,29.37498203320379 +2019-03-02 07:30:00,25.0,0.104100529,29.37411361212839 +2019-03-02 07:45:00,25.0,0.100925926,29.373244628444375 +2019-03-02 08:00:00,25.0,0.099206349,29.372375082263517 +2019-03-02 08:15:00,25.0,0.11005291,29.37150497369766 +2019-03-02 08:30:00,25.0,0.120238095,29.370634302858726 +2019-03-02 08:45:00,25.0,0.132539683,29.369763069858692 +2019-03-02 09:00:00,25.0,0.144047619,29.36889127480962 +2019-03-02 09:15:00,25.0,0.144444444,29.368018917823644 +2019-03-02 09:30:00,25.0,0.147883598,29.36714599901297 +2019-03-02 09:45:00,25.0,0.14973545,29.366272518489875 +2019-03-02 10:00:00,25.0,0.148148148,29.365398476366707 +2019-03-02 10:15:00,25.0,0.152513228,29.364523872755885 +2019-03-02 10:30:00,25.0,0.159656085,29.363648707769904 +2019-03-02 10:45:00,25.0,0.170767196,29.36277298152133 +2019-03-02 11:00:00,25.0,0.191666667,29.361896694122805 +2019-03-02 11:15:00,25.0,0.215608466,29.361019845687036 +2019-03-02 11:30:00,25.0,0.233730159,29.360142436326804 +2019-03-02 11:45:00,25.0,0.256878307,29.35926446615496 +2019-03-02 12:00:00,25.0,0.269708995,29.35838593528444 +2019-03-02 12:15:00,25.0,0.282407407,29.357506843828233 +2019-03-02 12:30:00,25.0,0.303306878,29.356627191899417 +2019-03-02 12:45:00,25.0,0.32010582,29.355746979611133 +2019-03-02 13:00:00,25.0,0.334391534,29.35486620707659 +2019-03-02 13:15:00,25.0,0.342857143,29.353984874409086 +2019-03-02 13:30:00,25.0,0.347883598,29.35310298172197 +2019-03-02 13:45:00,25.0,0.338227513,29.35222052912868 +2019-03-02 14:00:00,25.0,0.351587302,29.351337516742714 +2019-03-02 14:15:00,25.0,0.369708995,29.35045394467765 +2019-03-02 14:30:00,25.0,0.381084656,29.349569813047133 +2019-03-02 14:45:00,25.0,0.389285714,29.348685121964884 +2019-03-02 15:00:00,25.0,0.405555556,29.347799871544694 +2019-03-02 15:15:00,25.0,0.429232804,29.346914061900428 +2019-03-02 15:30:00,25.0,0.439814815,29.346027693146013 +2019-03-02 15:45:00,25.0,0.463624339,29.345140765395463 +2019-03-02 16:00:00,25.0,0.481481481,29.344253278762856 +2019-03-02 16:15:00,25.0,0.492460317,29.34336523336234 +2019-03-02 16:30:00,25.0,0.518253968,29.34247662930814 +2019-03-02 16:45:00,25.0,0.540079365,29.34158746671455 +2019-03-02 17:00:00,25.0,0.55462963,29.340697745695934 +2019-03-02 17:15:00,25.0,0.577513228,29.339807466366732 +2019-03-02 17:30:00,25.0,0.593783069,29.338916628841453 +2019-03-02 17:45:00,25.0,0.604232804,29.338025233234678 +2019-03-02 18:00:00,25.0,0.614417989,29.33713327966106 +2019-03-02 18:15:00,25.0,0.616005291,29.336240768235328 +2019-03-02 18:30:00,25.0,0.618518519,29.335347699072273 +2019-03-02 18:45:00,25.0,0.615873016,29.334454072286768 +2019-03-02 19:00:00,25.0,0.61494709,29.33355988799375 +2019-03-02 19:15:00,25.0,0.598015873,29.332665146308237 +2019-03-02 19:30:00,25.0,0.586640212,29.331769847345306 +2019-03-02 19:45:00,25.0,0.58531746,29.330873991220116 +2019-03-02 20:00:00,25.0,0.604761905,29.329977578047895 +2019-03-02 20:15:00,25.0,0.637301587,29.329080607943936 +2019-03-02 20:30:00,25.0,0.664417989,29.328183081023617 +2019-03-02 20:45:00,25.0,0.681084656,29.327284997402373 +2019-03-02 21:00:00,25.0,0.686375661,29.326386357195723 +2019-03-02 21:15:00,25.0,0.695899471,29.325487160519252 +2019-03-02 21:30:00,25.0,0.696428571,29.32458740748861 +2019-03-02 21:45:00,25.0,0.696560847,29.323687098219537 +2019-03-02 22:00:00,25.0,0.696957672,29.322786232827823 +2019-03-02 22:15:00,25.0,0.694444444,29.321884811429342 +2019-03-02 22:30:00,25.0,0.688492063,29.320982834140036 +2019-03-02 22:45:00,25.0,0.687830688,29.320080301075922 +2019-03-02 23:00:00,25.0,0.698544974,29.319177212353082 +2019-03-02 23:15:00,25.0,0.700793651,29.31827356808768 +2019-03-02 23:30:00,25.0,0.705820106,29.31736936839594 +2019-03-02 23:45:00,25.0,0.706216931,29.316464613394164 +2019-03-03 00:00:00,25.0,0.71547619,29.31555930319872 +2019-03-03 00:15:00,25.0,0.715079365,29.314653437926054 +2019-03-03 00:30:00,25.0,0.711640212,29.313747017692684 +2019-03-03 00:45:00,25.0,0.701455026,29.31284004261519 +2019-03-03 01:00:00,25.0,0.698280423,29.31193251281023 +2019-03-03 01:15:00,25.0,0.693915344,29.31102442839454 +2019-03-03 01:30:00,25.0,0.690079365,29.310115789484907 +2019-03-03 01:45:00,25.0,0.686243386,29.309206596198212 +2019-03-03 02:00:00,25.0,0.668253968,29.308296848651395 +2019-03-03 02:15:00,25.0,0.673809524,29.307386546961467 +2019-03-03 02:30:00,25.0,0.653968254,29.30647569124552 +2019-03-03 02:45:00,25.0,0.66521164,29.305564281620704 +2019-03-03 03:00:00,25.0,0.66031746,29.304652318204248 +2019-03-03 03:15:00,25.0,0.65952381,29.30373980111345 +2019-03-03 03:30:00,25.0,0.667328042,29.302826730465686 +2019-03-03 03:45:00,25.0,0.668386243,29.301913106378393 +2019-03-03 04:00:00,25.0,0.667063492,29.30099892896908 +2019-03-03 04:15:00,25.0,0.664550265,29.300084198355336 +2019-03-03 04:30:00,25.0,0.656613757,29.29916891465481 +2019-03-03 04:45:00,25.0,0.665079365,29.298253077985237 +2019-03-03 05:00:00,25.0,0.667328042,29.297336688464405 +2019-03-03 05:15:00,25.0,0.674603175,29.296419746210184 +2019-03-03 05:30:00,25.0,0.679100529,29.29550225134052 +2019-03-03 05:45:00,25.0,0.677380952,29.294584203973415 +2019-03-03 06:00:00,25.0,0.67962963,29.293665604226952 +2019-03-03 06:15:00,25.0,0.68042328,29.29274645221929 +2019-03-03 06:30:00,25.0,0.678042328,29.291826748068644 +2019-03-03 06:45:00,25.0,0.67473545,29.290906491893317 +2019-03-03 07:00:00,25.0,0.67010582,29.289985683811665 +2019-03-03 07:15:00,25.0,0.636375661,29.289064323942128 +2019-03-03 07:30:00,25.0,0.635978836,29.288142412403218 +2019-03-03 07:45:00,25.0,0.636507937,29.287219949313506 +2019-03-03 08:00:00,25.0,0.641137566,29.28629693479165 +2019-03-03 08:15:00,25.0,0.634656085,29.28537336895636 +2019-03-03 08:30:00,25.0,0.627910053,29.284449251926436 +2019-03-03 08:45:00,25.0,0.633333333,29.283524583820736 +2019-03-03 09:00:00,25.0,0.639814815,29.28259936475819 +2019-03-03 09:15:00,25.0,0.63994709,29.28167359485781 +2019-03-03 09:30:00,25.0,0.638492063,29.280747274238667 +2019-03-03 09:45:00,25.0,0.637566138,29.279820403019905 +2019-03-03 10:00:00,25.0,0.632010582,29.278892981320737 +2019-03-03 10:15:00,25.0,0.632539683,29.277965009260456 +2019-03-03 10:30:00,25.0,0.633862434,29.27703648695842 +2019-03-03 10:45:00,25.0,0.62962963,29.276107414534053 +2019-03-03 11:00:00,25.0,0.623280423,29.27517779210686 +2019-03-03 11:15:00,25.0,0.615873016,29.274247619796405 +2019-03-03 11:30:00,25.0,0.617195767,29.273316897722335 +2019-03-03 11:45:00,25.0,0.640079365,29.272385626004358 +2019-03-03 12:00:00,25.0,0.635978836,29.271453804762256 +2019-03-03 12:15:00,25.0,0.636904762,29.270521434115885 +2019-03-03 12:30:00,25.0,0.634391534,29.269588514185166 +2019-03-03 12:45:00,25.0,0.61984127,29.268655045090092 +2019-03-03 13:00:00,25.0,0.613624339,29.26772102695073 +2019-03-03 13:15:00,25.0,0.634126984,29.26678645988722 +2019-03-03 13:30:00,25.0,0.633333333,29.26585134401976 +2019-03-03 13:45:00,25.0,0.633597884,29.264915679468633 +2019-03-03 14:00:00,25.0,0.631746032,29.263979466354183 +2019-03-03 14:15:00,25.0,0.626719577,29.26304270479683 +2019-03-03 14:30:00,25.0,0.611507937,29.26210539491706 +2019-03-03 14:45:00,25.0,0.605820106,29.261167536835433 +2019-03-03 15:00:00,25.0,0.615608466,29.26022913067258 +2019-03-03 15:15:00,25.0,0.603835979,29.2592901765492 +2019-03-03 15:30:00,25.0,0.578174603,29.25835067458606 +2019-03-03 15:45:00,25.0,0.533994709,29.257410624904004 +2019-03-03 16:00:00,25.0,0.486904762,29.256470027623948 +2019-03-03 16:15:00,25.0,0.439021164,29.255528882866866 +2019-03-03 16:30:00,25.0,0.418650794,29.254587190753814 +2019-03-03 16:45:00,25.0,0.413359788,29.253644951405917 +2019-03-03 17:00:00,25.0,0.419312169,29.25270216494436 +2019-03-03 17:15:00,25.0,0.42962963,29.251758831490413 +2019-03-03 17:30:00,25.0,0.458465608,29.25081495116541 +2019-03-03 17:45:00,25.0,0.489153439,29.249870524090753 +2019-03-03 18:00:00,25.0,0.491931217,29.248925550387916 +2019-03-03 18:15:00,25.0,0.511507937,29.247980030178443 +2019-03-03 18:30:00,25.0,0.551851852,29.247033963583952 +2019-03-03 18:45:00,25.0,0.609126984,29.246087350726125 +2019-03-03 19:00:00,25.0,0.650793651,29.24514019172672 +2019-03-03 19:15:00,25.0,0.665873016,29.24419248670756 +2019-03-03 19:30:00,25.0,0.646825397,29.24324423579055 +2019-03-03 19:45:00,25.0,0.601455026,29.242295439097642 +2019-03-03 20:00:00,25.0,0.58968254,29.24134609675088 +2019-03-03 20:15:00,25.0,0.589285714,29.240396208872372 +2019-03-03 20:30:00,25.0,0.574074074,29.239445775584294 +2019-03-03 20:45:00,25.0,0.539285714,29.23849479700889 +2019-03-03 21:00:00,25.0,0.537962963,29.237543273268482 +2019-03-03 21:15:00,25.0,0.530291005,29.236591204485453 +2019-03-03 21:30:00,25.0,0.523941799,29.23563859078226 +2019-03-03 21:45:00,25.0,0.517857143,29.23468543228143 +2019-03-03 22:00:00,25.0,0.511375661,29.233731729105568 +2019-03-03 22:15:00,25.0,0.512037037,29.23277748137733 +2019-03-03 22:30:00,25.0,0.514814815,29.231822689219463 +2019-03-03 22:45:00,25.0,0.52037037,29.23086735275477 +2019-03-03 23:00:00,25.0,0.522486772,29.22991147210613 +2019-03-03 23:15:00,25.0,0.524603175,29.22895504739649 +2019-03-03 23:30:00,25.0,0.52989418,29.227998078748865 +2019-03-03 23:45:00,25.0,0.541269841,29.227040566286348 +2019-03-04 00:00:00,25.0,0.562301587,29.22608251013209 +2019-03-04 00:15:00,25.0,0.596825397,29.225123910409327 +2019-03-04 00:30:00,25.0,0.623015873,29.224164767241348 +2019-03-04 00:45:00,25.0,0.635582011,29.223205080751526 +2019-03-04 01:00:00,25.0,0.638492063,29.222244851063294 +2019-03-04 01:15:00,25.0,0.641666667,29.22128407830016 +2019-03-04 01:30:00,25.0,0.643386243,29.220322762585702 +2019-03-04 01:45:00,25.0,0.646031746,29.21936090404357 +2019-03-04 02:00:00,25.0,0.647883598,29.21839850279747 +2019-03-04 02:15:00,25.0,0.647619048,29.2174355589712 +2019-03-04 02:30:00,25.0,0.646296296,29.216472072688607 +2019-03-04 02:45:00,25.0,0.645899471,29.215508044073623 +2019-03-04 03:00:00,25.0,0.643915344,29.21454347325024 +2019-03-04 03:15:00,25.0,0.64537037,29.213578360342527 +2019-03-04 03:30:00,25.0,0.647354497,29.212612705474612 +2019-03-04 03:45:00,25.0,0.646031746,29.211646508770713 +2019-03-04 04:00:00,25.0,0.646164021,29.21067977035509 +2019-03-04 04:15:00,25.0,0.647089947,29.209712490352093 +2019-03-04 04:30:00,25.0,0.646164021,29.208744668886137 +2019-03-04 04:45:00,25.0,0.646693122,29.2077763060817 +2019-03-04 05:00:00,25.0,0.645238095,29.206807402063344 +2019-03-04 05:15:00,25.0,0.643915344,29.205837956955687 +2019-03-04 05:30:00,25.0,0.635714286,29.20486797088342 +2019-03-04 05:45:00,25.0,0.637566138,29.203897443971307 +2019-03-04 06:00:00,25.0,0.640740741,29.20292637634418 +2019-03-04 06:15:00,25.0,0.642195767,29.201954768126935 +2019-03-04 06:30:00,25.0,0.640740741,29.20098261944455 +2019-03-04 06:45:00,25.0,0.644444444,29.200009930422056 +2019-03-04 07:00:00,25.0,0.644312169,29.19903670118457 +2019-03-04 07:15:00,25.0,0.642592593,29.198062931857272 +2019-03-04 07:30:00,25.0,0.625,29.197088622565403 +2019-03-04 07:45:00,25.0,0.626455026,29.196113773434284 +2019-03-04 08:00:00,25.0,0.634656085,29.195138384589306 +2019-03-04 08:15:00,25.0,0.610846561,29.194162456155922 +2019-03-04 08:30:00,25.0,0.576851852,29.19318598825966 +2019-03-04 08:45:00,25.0,0.487566138,29.192208981026116 +2019-03-04 09:00:00,25.0,0.446825397,29.191231434580953 +2019-03-04 09:15:00,25.0,0.386243386,29.190253349049904 +2019-03-04 09:30:00,25.0,0.369179894,29.189274724558775 +2019-03-04 09:45:00,25.0,0.363756614,29.18829556123344 +2019-03-04 10:00:00,25.0,0.368783069,29.18731585919984 +2019-03-04 10:15:00,25.0,0.368650794,29.186335618583982 +2019-03-04 10:30:00,25.0,0.369179894,29.185354839511955 +2019-03-04 10:45:00,25.0,0.346693122,29.184373522109908 +2019-03-04 11:00:00,25.0,0.318783069,29.18339166650405 +2019-03-04 11:15:00,25.0,0.318386243,29.182409272820685 +2019-03-04 11:30:00,25.0,0.318783069,29.181426341186157 +2019-03-04 11:45:00,25.0,0.318915344,29.180442871726903 +2019-03-04 12:00:00,25.0,0.319179894,29.179458864569412 +2019-03-04 12:15:00,25.0,0.325132275,29.178474319840255 +2019-03-04 12:30:00,25.0,0.361640212,29.17748923766606 +2019-03-04 12:45:00,25.0,0.368650794,29.176503618173538 +2019-03-04 13:00:00,25.0,0.368121693,29.175517461489456 +2019-03-04 13:15:00,25.0,0.387433862,29.174530767740656 +2019-03-04 13:30:00,25.0,0.412698413,29.17354353705405 +2019-03-04 13:45:00,25.0,0.409656085,29.172555769556624 +2019-03-04 14:00:00,25.0,0.416005291,29.171567465375414 +2019-03-04 14:15:00,25.0,0.447089947,29.17057862463755 +2019-03-04 14:30:00,25.0,0.464021164,29.169589247470213 +2019-03-04 14:45:00,25.0,0.508201058,29.16859933400066 +2019-03-04 15:00:00,25.0,0.516402116,29.167608884356216 +2019-03-04 15:15:00,25.0,0.518650794,29.166617898664278 +2019-03-04 15:30:00,25.0,0.522619048,29.1656263770523 +2019-03-04 15:45:00,25.0,0.521428571,29.164634319647824 +2019-03-04 16:00:00,25.0,0.519708995,29.163641726578444 +2019-03-04 16:15:00,25.0,0.517857143,29.162648597971835 +2019-03-04 16:30:00,25.0,0.523677249,29.16165493395573 +2019-03-04 16:45:00,25.0,0.524867725,29.160660734657938 +2019-03-04 17:00:00,25.0,0.526851852,29.15966600020634 +2019-03-04 17:15:00,25.0,0.526851852,29.158670730728875 +2019-03-04 17:30:00,25.0,0.51984127,29.15767492635356 +2019-03-04 17:45:00,25.0,0.51031746,29.156678587208475 +2019-03-04 18:00:00,25.0,0.518253968,29.155681713421775 +2019-03-04 18:15:00,25.0,0.517195767,29.154684305121677 +2019-03-04 18:30:00,25.0,0.525132275,29.153686362436474 +2019-03-04 18:45:00,25.0,0.514814815,29.15268788549452 +2019-03-04 19:00:00,25.0,0.497883598,29.151688874424238 +2019-03-04 19:15:00,25.0,0.466534392,29.150689329354133 +2019-03-04 19:30:00,25.0,0.465608466,29.149689250412763 +2019-03-04 19:45:00,25.0,0.473677249,29.148688637728757 +2019-03-04 20:00:00,25.0,0.474867725,29.147687491430823 +2019-03-04 20:15:00,25.0,0.462698413,29.14668581164773 +2019-03-04 20:30:00,25.0,0.432539683,29.145683598508306 +2019-03-04 20:45:00,25.0,0.427248677,29.144680852141473 +2019-03-04 21:00:00,25.0,0.426322751,29.143677572676197 +2019-03-04 21:15:00,25.0,0.423280423,29.142673760241525 +2019-03-04 21:30:00,25.0,0.416137566,29.14166941496657 +2019-03-04 21:45:00,25.0,0.409126984,29.140664536980513 +2019-03-04 22:00:00,25.0,0.406878307,29.139659126412603 +2019-03-04 22:15:00,25.0,0.405952381,29.138653183392158 +2019-03-04 22:30:00,25.0,0.409391534,29.137646708048567 +2019-03-04 22:45:00,25.0,0.403439153,29.13663970051128 +2019-03-04 23:00:00,25.0,0.37037037,29.13563216090983 +2019-03-04 23:15:00,25.0,0.371164021,29.134624089373798 +2019-03-04 23:30:00,25.0,0.371164021,29.133615486032852 +2019-03-04 23:45:00,25.0,0.372883598,29.13260635101672 +2019-03-05 00:00:00,25.0,0.374338624,29.131596684455193 +2019-03-05 00:15:00,25.0,0.381481481,29.130586486478144 +2019-03-05 00:30:00,25.0,0.402380952,29.129575757215505 +2019-03-05 00:45:00,25.0,0.405555556,29.128564496797278 +2019-03-05 01:00:00,25.0,0.438359788,29.127552705353533 +2019-03-05 01:15:00,25.0,0.438359788,29.12654038301441 +2019-03-05 01:30:00,25.0,0.437698413,29.125527529910116 +2019-03-05 01:45:00,25.0,0.432407407,29.124514146170927 +2019-03-05 02:00:00,25.0,0.393253968,29.123500231927185 +2019-03-05 02:15:00,25.0,0.395899471,29.1224857873093 +2019-03-05 02:30:00,25.0,0.393518519,29.12147081244776 +2019-03-05 02:45:00,25.0,0.395634921,29.120455307473108 +2019-03-05 03:00:00,25.0,0.437301587,29.119439272515958 +2019-03-05 03:15:00,25.0,0.43505291,29.118422707707 +2019-03-05 03:30:00,25.0,0.436111111,29.117405613176985 +2019-03-05 03:45:00,25.0,0.43505291,29.116387989056733 +2019-03-05 04:00:00,25.0,0.422354497,29.115369835477136 +2019-03-05 04:15:00,25.0,0.436111111,29.11435115256915 +2019-03-05 04:30:00,25.0,0.436243386,29.113331940463794 +2019-03-05 04:45:00,25.0,0.435449735,29.112312199292173 +2019-03-05 05:00:00,25.0,0.44021164,29.11129192918544 +2019-03-05 05:15:00,25.0,0.438756614,29.11027113027483 +2019-03-05 05:30:00,25.0,0.443386243,29.109249802691636 +2019-03-05 05:45:00,25.0,0.446164021,29.108227946567222 +2019-03-05 06:00:00,25.0,0.440740741,29.107205562033027 +2019-03-05 06:15:00,25.0,0.470502646,29.106182649220553 +2019-03-05 06:30:00,25.0,0.490873016,29.105159208261362 +2019-03-05 06:45:00,25.0,0.501851852,29.1041352392871 +2019-03-05 07:00:00,25.0,0.496031746,29.103110742429465 +2019-03-05 07:15:00,25.0,0.501719577,29.102085717820234 +2019-03-05 07:30:00,25.0,0.503042328,29.10106016559125 +2019-03-05 07:45:00,25.0,0.499603175,29.100034085874416 +2019-03-05 08:00:00,25.0,0.453174603,29.099007478801713 +2019-03-05 08:15:00,25.0,0.416931217,29.097980344505185 +2019-03-05 08:30:00,25.0,0.400132275,29.096952683116942 +2019-03-05 08:45:00,25.0,0.406613757,29.095924494769168 +2019-03-05 09:00:00,25.0,0.402248677,29.094895779594108 +2019-03-05 09:15:00,25.0,0.397222222,29.093866537724082 +2019-03-05 09:30:00,25.0,0.369708995,29.092836769291466 +2019-03-05 09:45:00,25.0,0.358201058,29.09180647442872 +2019-03-05 10:00:00,25.0,0.356349206,29.090775653268352 +2019-03-05 10:15:00,25.0,0.409126984,29.08974430594296 +2019-03-05 10:30:00,25.0,0.413756614,29.08871243258519 +2019-03-05 10:45:00,25.0,0.434656085,29.08768003332777 +2019-03-05 11:00:00,25.0,0.45952381,29.086647108303488 +2019-03-05 11:15:00,25.0,0.505291005,29.085613657645197 +2019-03-05 11:30:00,25.0,0.508862434,29.084579681485828 +2019-03-05 11:45:00,25.0,0.498544974,29.083545179958367 +2019-03-05 12:00:00,25.0,0.498941799,29.082510153195877 +2019-03-05 12:15:00,25.0,0.504365079,29.08147460133149 +2019-03-05 12:30:00,25.0,0.496164021,29.08043852449839 +2019-03-05 12:45:00,25.0,0.487566138,29.079401922829852 +2019-03-05 13:00:00,25.0,0.49484127,29.0783647964592 +2019-03-05 13:15:00,25.0,0.49973545,29.07732714551983 +2019-03-05 13:30:00,25.0,0.54047619,29.07628897014521 +2019-03-05 13:45:00,25.0,0.549338624,29.075250270468874 +2019-03-05 14:00:00,25.0,0.539285714,29.074211046624416 +2019-03-05 14:15:00,25.0,0.526719577,29.07317129874551 +2019-03-05 14:30:00,25.0,0.533201058,29.072131026965888 +2019-03-05 14:45:00,25.0,0.526851852,29.071090231419348 +2019-03-05 15:00:00,25.0,0.52989418,29.070048912239766 +2019-03-05 15:15:00,25.0,0.544312169,29.069007069561078 +2019-03-05 15:30:00,25.0,0.552777778,29.067964703517283 +2019-03-05 15:45:00,25.0,0.542328042,29.06692181424246 +2019-03-05 16:00:00,25.0,0.527116402,29.06587840187074 +2019-03-05 16:15:00,25.0,0.518518519,29.06483446653634 +2019-03-05 16:30:00,25.0,0.52037037,29.06379000837352 +2019-03-05 16:45:00,25.0,0.543650794,29.062745027516627 +2019-03-05 17:00:00,25.0,0.547751323,29.06169952410007 +2019-03-05 17:15:00,25.0,0.577910053,29.060653498258326 +2019-03-05 17:30:00,25.0,0.591402116,29.059606950125932 +2019-03-05 17:45:00,25.0,0.581084656,29.0585598798375 +2019-03-05 18:00:00,25.0,0.580026455,29.057512287527707 +2019-03-05 18:15:00,25.0,0.56984127,29.056464173331292 +2019-03-05 18:30:00,25.0,0.549338624,29.055415537383073 +2019-03-05 18:45:00,25.0,0.543518519,29.054366379817928 +2019-03-05 19:00:00,25.0,0.543650794,29.053316700770793 +2019-03-05 19:15:00,25.0,0.555820106,29.05226650037669 +2019-03-05 19:30:00,25.0,0.53452381,29.051215778770693 +2019-03-05 19:45:00,25.0,0.526587302,29.05016453608795 +2019-03-05 20:00:00,25.0,0.516534392,29.049112772463676 +2019-03-05 20:15:00,25.0,0.485449735,29.048060488033144 +2019-03-05 20:30:00,25.0,0.473412698,29.047007682931714 +2019-03-05 20:45:00,25.0,0.502116402,29.045954357294786 +2019-03-05 21:00:00,25.0,0.498677249,29.04490051125785 +2019-03-05 21:15:00,25.0,0.49537037,29.043846144956454 +2019-03-05 21:30:00,25.0,0.496825397,29.042791258526208 +2019-03-05 21:45:00,25.0,0.495634921,29.041735852102796 +2019-03-05 22:00:00,25.0,0.494708995,29.04067992582197 +2019-03-05 22:15:00,25.0,0.502777778,29.039623479819543 +2019-03-05 22:30:00,25.0,0.498941799,29.0385665142314 +2019-03-05 22:45:00,25.0,0.482936508,29.03750902919348 +2019-03-05 23:00:00,25.0,0.465079365,29.036451024841817 +2019-03-05 23:15:00,25.0,0.448544974,29.03539250131248 +2019-03-05 23:30:00,25.0,0.46031746,29.034333458741624 +2019-03-05 23:45:00,25.0,0.483994709,29.033273897265463 +2019-03-06 00:00:00,25.0,0.50026455,29.032213817020285 +2019-03-06 00:15:00,25.0,0.508730159,29.031153218142435 +2019-03-06 00:30:00,25.0,0.51957672,29.030092100768332 +2019-03-06 00:45:00,25.0,0.510978836,29.02903046503446 +2019-03-06 01:00:00,25.0,0.498280423,29.027968311077366 +2019-03-06 01:15:00,25.0,0.484920635,29.026905639033668 +2019-03-06 01:30:00,25.0,0.484920635,29.025842449040052 +2019-03-06 01:45:00,25.0,0.466931217,29.024778741233266 +2019-03-06 02:00:00,25.0,0.452645503,29.023714515750125 +2019-03-06 02:15:00,25.0,0.446693122,29.022649772727515 +2019-03-06 02:30:00,25.0,0.425396825,29.021584512302386 +2019-03-06 02:45:00,25.0,0.406481481,29.02051873461175 +2019-03-06 03:00:00,25.0,0.413492063,29.019452439792694 +2019-03-06 03:15:00,25.0,0.425793651,29.01838562798236 +2019-03-06 03:30:00,25.0,0.441402116,29.017318299317978 +2019-03-06 03:45:00,25.0,0.44510582,29.01625045393682 +2019-03-06 04:00:00,25.0,0.447354497,29.015182091976232 +2019-03-06 04:15:00,25.0,0.447883598,29.014113213573637 +2019-03-06 04:30:00,25.0,0.425,29.013043818866514 +2019-03-06 04:45:00,25.0,0.424867725,29.01197390799241 +2019-03-06 05:00:00,25.0,0.423677249,29.01090348108894 +2019-03-06 05:15:00,25.0,0.421560847,29.009832538293782 +2019-03-06 05:30:00,25.0,0.417989418,29.008761079744687 +2019-03-06 05:45:00,25.0,0.412037037,29.007689105579466 +2019-03-06 06:00:00,25.0,0.423941799,29.006616615936004 +2019-03-06 06:15:00,25.0,0.448148148,29.00554361095224 +2019-03-06 06:30:00,25.0,0.46031746,29.00447009076619 +2019-03-06 06:45:00,25.0,0.484656085,29.003396055515932 +2019-03-06 07:00:00,25.0,0.50978836,29.002321505339612 +2019-03-06 07:15:00,25.0,0.527380952,29.00124644037544 +2019-03-06 07:30:00,25.0,0.549470899,29.000170860761692 +2019-03-06 07:45:00,25.0,0.563095238,28.999094766636716 +2019-03-06 08:00:00,25.0,0.577248677,28.998018158138915 +2019-03-06 08:15:00,25.0,0.58478836,28.99694103540677 +2019-03-06 08:30:00,25.0,0.591666667,28.995863398578823 +2019-03-06 08:45:00,25.0,0.602116402,28.994785247793683 +2019-03-06 09:00:00,25.0,0.60542328,28.99370658319002 +2019-03-06 09:15:00,25.0,0.623148148,28.99262740490657 +2019-03-06 09:30:00,25.0,0.622486772,28.991547713082152 +2019-03-06 09:45:00,25.0,0.610978836,28.990467507855634 +2019-03-06 10:00:00,25.0,0.63452381,28.98938678936595 +2019-03-06 10:15:00,25.0,0.63994709,28.988305557752106 +2019-03-06 10:30:00,25.0,0.642989418,28.98722381315318 +2019-03-06 10:45:00,25.0,0.645238095,28.986141555708294 +2019-03-06 11:00:00,25.0,0.647222222,28.98505878555666 +2019-03-06 11:15:00,25.0,0.647486772,28.98397550283755 +2019-03-06 11:30:00,25.0,0.647486772,28.98289170769029 +2019-03-06 11:45:00,25.0,0.651058201,28.981807400254283 +2019-03-06 12:00:00,25.0,0.657142857,28.980722580669 +2019-03-06 12:15:00,25.0,0.658862434,28.979637249073967 +2019-03-06 12:30:00,25.0,0.666137566,28.97855140560878 +2019-03-06 12:45:00,25.0,0.674206349,28.97746505041311 +2019-03-06 13:00:00,25.0,0.684126984,28.976378183626682 +2019-03-06 13:15:00,25.0,0.698148148,28.975290805389292 +2019-03-06 13:30:00,25.0,0.706481481,28.974202915840802 +2019-03-06 13:45:00,25.0,0.706216931,28.97311451512114 +2019-03-06 14:00:00,25.0,0.710582011,28.972025603370295 +2019-03-06 14:15:00,25.0,0.711375661,28.970936180728323 +2019-03-06 14:30:00,25.0,0.719047619,28.969846247335358 +2019-03-06 14:45:00,25.0,0.723677249,28.968755803331582 +2019-03-06 15:00:00,25.0,0.721825397,28.967664848857254 +2019-03-06 15:15:00,25.0,0.732142857,28.96657338405269 +2019-03-06 15:30:00,25.0,0.735185185,28.965481409058285 +2019-03-06 15:45:00,25.0,0.738095238,28.964388924014482 +2019-03-06 16:00:00,25.0,0.731216931,28.963295929061807 +2019-03-06 16:15:00,25.0,0.729761905,28.962202424340838 +2019-03-06 16:30:00,25.0,0.732142857,28.961108409992224 +2019-03-06 16:45:00,25.0,0.73994709,28.960013886156688 +2019-03-06 17:00:00,25.0,0.746164021,28.958918852975 +2019-03-06 17:15:00,25.0,0.746693122,28.957823310588008 +2019-03-06 17:30:00,25.0,0.750661376,28.956727259136628 +2019-03-06 17:45:00,25.0,0.75,28.955630698761833 +2019-03-06 18:00:00,25.0,0.749603175,28.954533629604665 +2019-03-06 18:15:00,25.0,0.744444444,28.953436051806232 +2019-03-06 18:30:00,25.0,0.742195767,28.95233796550771 +2019-03-06 18:45:00,25.0,0.744312169,28.95123937085033 +2019-03-06 19:00:00,25.0,0.74021164,28.950140267975407 +2019-03-06 19:15:00,25.0,0.75,28.949040657024298 +2019-03-06 19:30:00,25.0,0.754497354,28.947940538138447 +2019-03-06 19:45:00,25.0,0.750396825,28.946839911459346 +2019-03-06 20:00:00,25.0,0.746164021,28.945738777128568 +2019-03-06 20:15:00,25.0,0.748280423,28.944637135287735 +2019-03-06 20:30:00,25.0,0.749867725,28.943534986078554 +2019-03-06 20:45:00,25.0,0.748941799,28.942432329642774 +2019-03-06 21:00:00,25.0,0.747883598,28.941329166122227 +2019-03-06 21:15:00,25.0,0.748809524,28.940225495658805 +2019-03-06 21:30:00,25.0,0.751455026,28.939121318394463 +2019-03-06 21:45:00,25.0,0.751851852,28.938016634471225 +2019-03-06 22:00:00,25.0,0.75462963,28.936911444031175 +2019-03-06 22:15:00,25.0,0.750396825,28.935805747216467 +2019-03-06 22:30:00,25.0,0.748280423,28.93469954416932 +2019-03-06 22:45:00,25.0,0.752248677,28.93359283503201 +2019-03-06 23:00:00,25.0,0.749470899,28.93248561994689 +2019-03-06 23:15:00,25.0,0.749470899,28.931377899056372 +2019-03-06 23:30:00,25.0,0.748280423,28.930269672502934 +2019-03-06 23:45:00,25.0,0.750529101,28.929160940429117 +2019-03-07 00:00:00,25.0,0.747486772,28.928051702977527 +2019-03-07 00:15:00,25.0,0.744179894,28.926941960290844 +2019-03-07 00:30:00,25.0,0.744973545,28.925831712511794 +2019-03-07 00:45:00,25.0,0.746957672,28.92472095978319 +2019-03-07 01:00:00,25.0,0.74537037,28.923609702247898 +2019-03-07 01:15:00,25.0,0.743518519,28.922497940048846 +2019-03-07 01:30:00,25.0,0.744312169,28.921385673329034 +2019-03-07 01:45:00,25.0,0.744179894,28.920272902231524 +2019-03-07 02:00:00,25.0,0.744179894,28.919159626899443 +2019-03-07 02:15:00,25.0,0.74457672,28.918045847475984 +2019-03-07 02:30:00,25.0,0.745502646,28.916931564104402 +2019-03-07 02:45:00,25.0,0.74457672,28.915816776928022 +2019-03-07 03:00:00,25.0,0.741269841,28.914701486090227 +2019-03-07 03:15:00,25.0,0.746428571,28.91358569173447 +2019-03-07 03:30:00,25.0,0.742460317,28.91246939400427 +2019-03-07 03:45:00,25.0,0.742857143,28.911352593043198 +2019-03-07 04:00:00,25.0,0.743915344,28.91023528899491 +2019-03-07 04:15:00,25.0,0.74457672,28.90911748200311 +2019-03-07 04:30:00,25.0,0.746164021,28.90799917221158 +2019-03-07 04:45:00,25.0,0.740740741,28.906880359764152 +2019-03-07 05:00:00,25.0,0.712037037,28.905761044804734 +2019-03-07 05:15:00,25.0,0.693783069,28.904641227477292 +2019-03-07 05:30:00,25.0,0.669047619,28.903520907925863 +2019-03-07 05:45:00,25.0,0.631613757,28.902400086294545 +2019-03-07 06:00:00,25.0,0.613756614,28.901278762727497 +2019-03-07 06:15:00,25.0,0.597619048,28.900156937368948 +2019-03-07 06:30:00,25.0,0.585582011,28.899034610363195 +2019-03-07 06:45:00,25.0,0.553571429,28.897911781854585 +2019-03-07 07:00:00,25.0,0.531613757,28.896788451987543 +2019-03-07 07:15:00,25.0,0.535185185,28.895664620906558 +2019-03-07 07:30:00,25.0,0.534656085,28.894540288756172 +2019-03-07 07:45:00,25.0,0.541402116,28.89341545568101 +2019-03-07 08:00:00,25.0,0.538227513,28.892290121825738 +2019-03-07 08:15:00,25.0,0.551719577,28.89116428733511 +2019-03-07 08:30:00,25.0,0.563227513,28.890037952353925 +2019-03-07 08:45:00,25.0,0.576587302,28.88891111702706 +2019-03-07 09:00:00,25.0,0.591798942,28.88778378149945 +2019-03-07 09:15:00,25.0,0.608994709,28.886655945916093 +2019-03-07 09:30:00,25.0,0.668650794,28.88552761042206 +2019-03-07 09:45:00,25.0,0.682407407,28.884398775162474 +2019-03-07 10:00:00,25.0,0.618386243,28.88326944028253 +2019-03-07 10:15:00,25.0,0.534656085,28.882139605927485 +2019-03-07 10:30:00,25.0,0.510978836,28.881009272242665 +2019-03-07 10:45:00,25.0,0.518518519,28.879878439373453 +2019-03-07 11:00:00,25.0,0.519179894,28.878747107465298 +2019-03-07 11:15:00,25.0,0.516137566,28.877615276663718 +2019-03-07 11:30:00,25.0,0.501058201,28.876482947114287 +2019-03-07 11:45:00,25.0,0.501984127,28.87535011896265 +2019-03-07 12:00:00,25.0,0.518253968,28.87421679235452 +2019-03-07 12:15:00,25.0,0.521428571,28.873082967435657 +2019-03-07 12:30:00,25.0,0.522222222,28.871948644351907 +2019-03-07 12:45:00,25.0,0.523280423,28.87081382324916 +2019-03-07 13:00:00,25.0,0.518783069,28.869678504273388 +2019-03-07 13:15:00,25.0,0.521693122,28.86854268757061 +2019-03-07 13:30:00,25.0,0.521957672,28.867406373286922 +2019-03-07 13:45:00,25.0,0.521428571,28.86626956156848 +2019-03-07 14:00:00,25.0,0.549206349,28.8651322525615 +2019-03-07 14:15:00,25.0,0.576190476,28.863994446412267 +2019-03-07 14:30:00,25.0,0.608201058,28.86285614326713 +2019-03-07 14:45:00,25.0,0.671825397,28.8617173432725 +2019-03-07 15:00:00,25.0,0.722751323,28.860578046574847 +2019-03-07 15:15:00,25.0,0.762566138,28.859438253320718 +2019-03-07 15:30:00,25.0,0.761375661,28.85829796365671 +2019-03-07 15:45:00,25.0,0.761375661,28.85715717772949 +2019-03-07 16:00:00,25.0,0.762698413,28.85601589568579 +2019-03-07 16:15:00,25.0,0.762962963,28.854874117672406 +2019-03-07 16:30:00,25.0,0.762301587,28.853731843836194 +2019-03-07 16:45:00,25.0,0.759920635,28.852589074324072 +2019-03-07 17:00:00,25.0,0.760846561,28.851445809283035 +2019-03-07 17:15:00,25.0,0.758994709,28.850302048860126 +2019-03-07 17:30:00,25.0,0.749603175,28.84915779320246 +2019-03-07 17:45:00,25.0,0.746031746,28.84801304245721 +2019-03-07 18:00:00,25.0,0.746031746,28.846867796771622 +2019-03-07 18:15:00,25.0,0.743650794,28.845722056293 +2019-03-07 18:30:00,25.0,0.743386243,28.844575821168704 +2019-03-07 18:45:00,25.0,0.732671958,28.843429091546177 +2019-03-07 19:00:00,25.0,0.721031746,28.842281867572904 +2019-03-07 19:15:00,25.0,0.722619048,28.84113414939645 +2019-03-07 19:30:00,25.0,0.736507937,28.839985937164432 +2019-03-07 19:45:00,25.0,0.754100529,28.83883723102454 +2019-03-07 20:00:00,25.0,0.757275132,28.83768803112452 +2019-03-07 20:15:00,25.0,0.758333333,28.83653833761219 +2019-03-07 20:30:00,25.0,0.760714286,28.835388150635424 +2019-03-07 20:45:00,25.0,0.759259259,28.834237470342156 +2019-03-07 21:00:00,25.0,0.755687831,28.833086296880396 +2019-03-07 21:15:00,25.0,0.760449735,28.83193463039821 +2019-03-07 21:30:00,25.0,0.75978836,28.830782471043722 +2019-03-07 21:45:00,25.0,0.759391534,28.82962981896513 +2019-03-07 22:00:00,25.0,0.759126984,28.828476674310693 +2019-03-07 22:15:00,25.0,0.759920635,28.827323037228727 +2019-03-07 22:30:00,25.0,0.76005291,28.82616890786762 +2019-03-07 22:45:00,25.0,0.758201058,28.82501428637581 +2019-03-07 23:00:00,25.0,0.750396825,28.823859172901816 +2019-03-07 23:15:00,25.0,0.731084656,28.82270356759421 +2019-03-07 23:30:00,25.0,0.720899471,28.821547470601626 +2019-03-07 23:45:00,25.0,0.727910053,28.82039088207276 +2019-03-08 00:00:00,25.0,0.724867725,28.819233802156386 +2019-03-08 00:15:00,25.0,0.714021164,28.81807623100132 +2019-03-08 00:30:00,25.0,0.730687831,28.81691816875646 +2019-03-08 00:45:00,25.0,0.737037037,28.81575961557075 +2019-03-08 01:00:00,25.0,0.732407407,28.814600571593214 +2019-03-08 01:15:00,25.0,0.724338624,28.813441036972925 +2019-03-08 01:30:00,25.0,0.729761905,28.812281011859028 +2019-03-08 01:45:00,25.0,0.741534392,28.811120496400726 +2019-03-08 02:00:00,25.0,0.75,28.809959490747286 +2019-03-08 02:15:00,25.0,0.751455026,28.808797995048046 +2019-03-08 02:30:00,25.0,0.757275132,28.807636009452395 +2019-03-08 02:45:00,25.0,0.75952381,28.806473534109788 +2019-03-08 03:00:00,25.0,0.758994709,28.805310569169748 +2019-03-08 03:15:00,25.0,0.760846561,28.804147114781863 +2019-03-08 03:30:00,25.0,0.756878307,28.80298317109577 +2019-03-08 03:45:00,25.0,0.760449735,28.801818738261186 +2019-03-08 04:00:00,25.0,0.760449735,28.800653816427882 +2019-03-08 04:15:00,25.0,0.761904762,28.799488405745688 +2019-03-08 04:30:00,25.0,0.761640212,28.798322506364503 +2019-03-08 04:45:00,25.0,0.762433862,28.79715611843429 +2019-03-08 05:00:00,25.0,0.762169312,28.795989242105076 +2019-03-08 05:15:00,25.0,0.761111111,28.79482187752694 +2019-03-08 05:30:00,25.0,0.761904762,28.793654024850035 +2019-03-08 05:45:00,25.0,0.761904762,28.792485684224573 +2019-03-08 06:00:00,25.0,0.762698413,28.791316855800826 +2019-03-08 06:15:00,25.0,0.761507937,28.790147539729134 +2019-03-08 06:30:00,25.0,0.761243386,28.788977736159897 +2019-03-08 06:45:00,25.0,0.75978836,28.787807445243576 +2019-03-08 07:00:00,25.0,0.76005291,28.7866366671307 +2019-03-08 07:15:00,25.0,0.761904762,28.785465401971855 +2019-03-08 07:30:00,25.0,0.760978836,28.784293649917693 +2019-03-08 07:45:00,25.0,0.727513228,28.783121411118923 +2019-03-08 08:00:00,25.0,0.720238095,28.781948685726327 +2019-03-08 08:15:00,25.0,0.72037037,28.78077547389074 +2019-03-08 08:30:00,25.0,0.691402116,28.779601775763062 +2019-03-08 08:45:00,25.0,0.600925926,28.77842759149426 +2019-03-08 09:00:00,25.0,0.6,28.777252921235362 +2019-03-08 09:15:00,25.0,0.599867725,28.776077765137455 +2019-03-08 09:30:00,25.0,0.598544974,28.774902123351687 +2019-03-08 09:45:00,25.0,0.596560847,28.773725996029274 +2019-03-08 10:00:00,25.0,0.592989418,28.772549383321493 +2019-03-08 10:15:00,25.0,0.582275132,28.77137228537968 +2019-03-08 10:30:00,25.0,0.571957672,28.770194702355244 +2019-03-08 10:45:00,25.0,0.582407407,28.769016634399637 +2019-03-08 11:00:00,25.0,0.589153439,28.767838081664394 +2019-03-08 11:15:00,25.0,0.586904762,28.766659044301097 +2019-03-08 11:30:00,25.0,0.567724868,28.7654795224614 +2019-03-08 11:45:00,25.0,0.547619048,28.764299516297015 +2019-03-08 12:00:00,25.0,0.567857143,28.763119025959718 +2019-03-08 12:15:00,25.0,0.580555556,28.761938051601344 +2019-03-08 12:30:00,25.0,0.593650794,28.760756593373795 +2019-03-08 12:45:00,25.0,0.560185185,28.759574651429034 +2019-03-08 13:00:00,25.0,0.531746032,28.75839222591908 +2019-03-08 13:15:00,25.0,0.507275132,28.757209316996022 +2019-03-08 13:30:00,25.0,0.50489418,28.75602592481201 +2019-03-08 13:45:00,25.0,0.507407407,28.754842049519254 +2019-03-08 14:00:00,25.0,0.503571429,28.75365769127003 +2019-03-08 14:15:00,25.0,0.479232804,28.752472850216662 +2019-03-08 14:30:00,25.0,0.464285714,28.75128752651156 +2019-03-08 14:45:00,25.0,0.468650794,28.750101720307175 +2019-03-08 15:00:00,25.0,0.47989418,28.74891543175603 +2019-03-08 15:15:00,25.0,0.484656085,28.747728661010708 +2019-03-08 15:30:00,25.0,0.483862434,28.74654140822386 +2019-03-08 15:45:00,25.0,0.49484127,28.74535367354818 +2019-03-08 16:00:00,25.0,0.497222222,28.74416545713645 +2019-03-08 16:15:00,25.0,0.49021164,28.742976759141495 +2019-03-08 16:30:00,25.0,0.508333333,28.74178757971621 +2019-03-08 16:45:00,25.0,0.525793651,28.74059791901355 +2019-03-08 17:00:00,25.0,0.523544974,28.739407777186532 +2019-03-08 17:15:00,25.0,0.533597884,28.738217154388234 +2019-03-08 17:30:00,25.0,0.56521164,28.737026050771796 +2019-03-08 17:45:00,25.0,0.59537037,28.73583446649042 +2019-03-08 18:00:00,25.0,0.604232804,28.73464240169737 +2019-03-08 18:15:00,25.0,0.608994709,28.733449856545977 +2019-03-08 18:30:00,25.0,0.615873016,28.732256831189627 +2019-03-08 18:45:00,25.0,0.626719577,28.73106332578177 +2019-03-08 19:00:00,25.0,0.669708995,28.72986934047591 +2019-03-08 19:15:00,25.0,0.667592593,28.72867487542563 +2019-03-08 19:30:00,25.0,0.646825397,28.727479930784558 +2019-03-08 19:45:00,25.0,0.642195767,28.726284506706396 +2019-03-08 20:00:00,25.0,0.651587302,28.725088603344897 +2019-03-08 20:15:00,25.0,0.657936508,28.723892220853884 +2019-03-08 20:30:00,25.0,0.669312169,28.722695359387238 +2019-03-08 20:45:00,25.0,0.691005291,28.721498019098902 +2019-03-08 21:00:00,25.0,0.693783069,28.720300200142884 +2019-03-08 21:15:00,25.0,0.692857143,28.719101902673245 +2019-03-08 21:30:00,25.0,0.686904762,28.71790312684411 +2019-03-08 21:45:00,25.0,0.696296296,28.716703872809678 +2019-03-08 22:00:00,25.0,0.70978836,28.715504140724192 +2019-03-08 22:15:00,25.0,0.711904762,28.714303930741973 +2019-03-08 22:30:00,25.0,0.70952381,28.713103243017382 +2019-03-08 22:45:00,25.0,0.719973545,28.711902077704867 +2019-03-08 23:00:00,25.0,0.721164021,28.710700434958916 +2019-03-08 23:15:00,25.0,0.730687831,28.709498314934088 +2019-03-08 23:30:00,25.0,0.741666667,28.708295717785006 +2019-03-08 23:45:00,25.0,0.742857143,28.707092643666353 +2019-03-09 00:00:00,25.0,0.741931217,28.70588909273286 +2019-03-09 00:15:00,25.0,0.739550265,28.704685065139344 +2019-03-09 00:30:00,25.0,0.731349206,28.703480561040664 +2019-03-09 00:45:00,25.0,0.723544974,28.702275580591742 +2019-03-09 01:00:00,25.0,0.728042328,28.70107012394757 +2019-03-09 01:15:00,25.0,0.728571429,28.699864191263195 +2019-03-09 01:30:00,25.0,0.725132275,28.69865778269373 +2019-03-09 01:45:00,25.0,0.721693122,28.697450898394344 +2019-03-09 02:00:00,25.0,0.717195767,28.696243538520267 +2019-03-09 02:15:00,25.0,0.716402116,28.695035703226797 +2019-03-09 02:30:00,25.0,0.714285714,28.693827392669284 +2019-03-09 02:45:00,25.0,0.710714286,28.692618607003144 +2019-03-09 03:00:00,25.0,0.715873016,28.691409346383857 +2019-03-09 03:15:00,25.0,0.712830688,28.69019961096696 +2019-03-09 03:30:00,25.0,0.718650794,28.688989400908053 +2019-03-09 03:45:00,25.0,0.718253968,28.687778716362793 +2019-03-09 04:00:00,25.0,0.722751323,28.6865675574869 +2019-03-09 04:15:00,25.0,0.721428571,28.68535592443616 +2019-03-09 04:30:00,25.0,0.725132275,28.684143817366415 +2019-03-09 04:45:00,25.0,0.729100529,28.682931236433568 +2019-03-09 05:00:00,25.0,0.729232804,28.68171818179359 +2019-03-09 05:15:00,25.0,0.739550265,28.680504653602494 +2019-03-09 05:30:00,25.0,0.744973545,28.679290652016377 +2019-03-09 05:45:00,25.0,0.743915344,28.678076177191382 +2019-03-09 06:00:00,25.0,0.749338624,28.67686122928372 +2019-03-09 06:15:00,25.0,0.751455026,28.67564580844966 +2019-03-09 06:30:00,25.0,0.75515873,28.674429914845533 +2019-03-09 06:45:00,25.0,0.754497354,28.67321354862773 +2019-03-09 07:00:00,25.0,0.713227513,28.6719967099527 +2019-03-09 07:15:00,25.0,0.712962963,28.67077939897696 +2019-03-09 07:30:00,25.0,0.712962963,28.669561615857077 +2019-03-09 07:45:00,25.0,0.659391534,28.66834336074969 +2019-03-09 08:00:00,25.0,0.621957672,28.667124633811497 +2019-03-09 08:15:00,25.0,0.596825397,28.66590543519925 +2019-03-09 08:30:00,25.0,0.597222222,28.66468576506976 +2019-03-09 08:45:00,25.0,0.566269841,28.66346562357991 +2019-03-09 09:00:00,25.0,0.517989418,28.662245010886632 +2019-03-09 09:15:00,25.0,0.518121693,28.661023927146932 +2019-03-09 09:30:00,25.0,0.518783069,28.659802372517863 +2019-03-09 09:45:00,25.0,0.517328042,28.658580347156544 +2019-03-09 10:00:00,25.0,0.517724868,28.65735785122016 +2019-03-09 10:15:00,25.0,0.518518519,28.656134884865946 +2019-03-09 10:30:00,25.0,0.518121693,28.6549114482512 +2019-03-09 10:45:00,25.0,0.471428571,28.65368754153329 +2019-03-09 11:00:00,25.0,0.456481481,28.652463164869637 +2019-03-09 11:15:00,25.0,0.456613757,28.65123831841772 +2019-03-09 11:30:00,25.0,0.456349206,28.650013002335086 +2019-03-09 11:45:00,25.0,0.456613757,28.648787216779333 +2019-03-09 12:00:00,25.0,0.456746032,28.647560961908123 +2019-03-09 12:15:00,25.0,0.456613757,28.646334237879188 +2019-03-09 12:30:00,25.0,0.481349206,28.645107044850302 +2019-03-09 12:45:00,25.0,0.479497354,28.643879382979318 +2019-03-09 13:00:00,25.0,0.476984127,28.642651252424137 +2019-03-09 13:15:00,25.0,0.471693122,28.641422653342723 +2019-03-09 13:30:00,25.0,0.466798942,28.640193585893105 +2019-03-09 13:45:00,25.0,0.448280423,28.638964050233362 +2019-03-09 14:00:00,25.0,0.469973545,28.637734046521647 +2019-03-09 14:15:00,25.0,0.45462963,28.636503574916162 +2019-03-09 14:30:00,25.0,0.43452381,28.63527263557517 +2019-03-09 14:45:00,25.0,0.437962963,28.634041228657008 +2019-03-09 15:00:00,25.0,0.463359788,28.632809354320052 +2019-03-09 15:15:00,25.0,0.486904762,28.63157701272275 +2019-03-09 15:30:00,25.0,0.507804233,28.63034420402361 +2019-03-09 15:45:00,25.0,0.548544974,28.629110928381202 +2019-03-09 16:00:00,25.0,0.550396825,28.62787718595415 +2019-03-09 16:15:00,25.0,0.642195767,28.62664297690114 +2019-03-09 16:30:00,25.0,0.629761905,28.625408301380922 +2019-03-09 16:45:00,25.0,0.607142857,28.6241731595523 +2019-03-09 17:00:00,25.0,0.630291005,28.62293755157414 +2019-03-09 17:15:00,25.0,0.65978836,28.621701477605367 +2019-03-09 17:30:00,25.0,0.685449735,28.620464937804975 +2019-03-09 17:45:00,25.0,0.701719577,28.619227932332002 +2019-03-09 18:00:00,25.0,0.706613757,28.617990461345567 +2019-03-09 18:15:00,25.0,0.708597884,28.61675252500482 +2019-03-09 18:30:00,25.0,0.703174603,28.615514123468998 +2019-03-09 18:45:00,25.0,0.702777778,28.614275256897386 +2019-03-09 19:00:00,25.0,0.707804233,28.613035925449328 +2019-03-09 19:15:00,25.0,0.708465608,28.61179612928423 +2019-03-09 19:30:00,25.0,0.662698413,28.610555868561555 +2019-03-09 19:45:00,25.0,0.621031746,28.609315143440835 +2019-03-09 20:00:00,25.0,0.626587302,28.608073954081647 +2019-03-09 20:15:00,25.0,0.625529101,28.606832300643642 +2019-03-09 20:30:00,25.0,0.629365079,28.60559018328652 +2019-03-09 20:45:00,25.0,0.628306878,28.604347602170048 +2019-03-09 21:00:00,25.0,0.626058201,28.603104557454046 +2019-03-09 21:15:00,25.0,0.627645503,28.601861049298403 +2019-03-09 21:30:00,25.0,0.629232804,28.600617077863056 +2019-03-09 21:45:00,25.0,0.62989418,28.599372643308012 +2019-03-09 22:00:00,25.0,0.649206349,28.59812774579333 +2019-03-09 22:15:00,25.0,0.696296296,28.596882385479134 +2019-03-09 22:30:00,25.0,0.709656085,28.5956365625256 +2019-03-09 22:45:00,25.0,0.745767196,28.594390277092977 +2019-03-09 23:00:00,25.0,0.753571429,28.593143529341557 +2019-03-09 23:15:00,25.0,0.75542328,28.591896319431704 +2019-03-09 23:30:00,25.0,0.756878307,28.590648647523835 +2019-03-09 23:45:00,25.0,0.753835979,28.589400513778433 +2019-03-10 00:00:00,25.0,0.672486772,28.58815191835603 +2019-03-10 00:15:00,25.0,0.657539683,28.586902861417226 +2019-03-10 00:30:00,25.0,0.65515873,28.58565334312268 +2019-03-10 00:45:00,25.0,0.657671958,28.5844033636331 +2019-03-10 01:00:00,25.0,0.666402116,28.58315292310927 +2019-03-10 01:15:00,25.0,0.669444444,28.581902021712022 +2019-03-10 01:30:00,25.0,0.668650794,28.580650659602245 +2019-03-10 01:45:00,25.0,0.661507937,28.5793988369409 +2019-03-10 02:00:00,25.0,0.646957672,28.578146553888992 +2019-03-10 02:15:00,25.0,0.648809524,28.576893810607597 +2019-03-10 02:30:00,25.0,0.633597884,28.575640607257846 +2019-03-10 02:45:00,25.0,0.580555556,28.574386944000924 +2019-03-10 03:00:00,25.0,0.571428571,28.573132820998087 +2019-03-10 03:15:00,25.0,0.573544974,28.571878238410637 +2019-03-10 03:30:00,25.0,0.552248677,28.570623196399946 +2019-03-10 03:45:00,25.0,0.526719577,28.569367695127436 +2019-03-10 04:00:00,25.0,0.546560847,28.5681117347546 +2019-03-10 04:15:00,25.0,0.551190476,28.56685531544297 +2019-03-10 04:30:00,25.0,0.517724868,28.565598437354165 +2019-03-10 04:45:00,25.0,0.499074074,28.564341100649834 +2019-03-10 05:00:00,25.0,0.491931217,28.563083305491705 +2019-03-10 05:15:00,25.0,0.457010582,28.56182505204156 +2019-03-10 05:30:00,25.0,0.426719577,28.560566340461232 +2019-03-10 05:45:00,25.0,0.395238095,28.55930717091263 +2019-03-10 06:00:00,25.0,0.375793651,28.5580475435577 +2019-03-10 06:15:00,25.0,0.359656085,28.556787458558464 +2019-03-10 06:30:00,25.0,0.339814815,28.555526916076996 +2019-03-10 06:45:00,25.0,0.324206349,28.55426591627543 +2019-03-10 07:00:00,25.0,0.312037037,28.553004459315957 +2019-03-10 07:15:00,25.0,0.306349206,28.551742545360835 +2019-03-10 07:30:00,25.0,0.285978836,28.550480174572364 +2019-03-10 07:45:00,25.0,0.271560847,28.549217347112922 +2019-03-10 08:00:00,25.0,0.251984127,28.547954063144932 +2019-03-10 08:15:00,25.0,0.232671958,28.54669032283088 +2019-03-10 08:30:00,25.0,0.220899471,28.545426126333314 +2019-03-10 08:45:00,25.0,0.206349206,28.54416147381484 +2019-03-10 09:00:00,25.0,0.194444444,28.542896365438114 +2019-03-10 09:15:00,25.0,0.195634921,28.541630801365862 +2019-03-10 09:30:00,25.0,0.190873016,28.540364781760864 +2019-03-10 09:45:00,25.0,0.182804233,28.539098306785956 +2019-03-10 10:00:00,25.0,0.181613757,28.537831376604032 +2019-03-10 10:15:00,25.0,0.176455026,28.536563991378053 +2019-03-10 10:30:00,25.0,0.166534392,28.535296151271034 +2019-03-10 10:45:00,25.0,0.158994709,28.534027856446045 +2019-03-10 11:00:00,25.0,0.156746032,28.532759107066212 +2019-03-10 11:15:00,25.0,0.142592593,28.53148990329473 +2019-03-10 11:30:00,25.0,0.13531746,28.53022024529485 +2019-03-10 11:45:00,25.0,0.13015873,28.52895013322987 +2019-03-10 12:00:00,25.0,0.126455026,28.527679567263164 +2019-03-10 12:15:00,25.0,0.121560847,28.526408547558148 +2019-03-10 12:30:00,25.0,0.117724868,28.525137074278305 +2019-03-10 12:45:00,25.0,0.123148148,28.523865147587177 +2019-03-10 13:00:00,25.0,0.126587302,28.522592767648362 +2019-03-10 13:15:00,25.0,0.122619048,28.52131993462551 +2019-03-10 13:30:00,25.0,0.121560847,28.520046648682346 +2019-03-10 13:45:00,25.0,0.123148148,28.518772909982637 +2019-03-10 14:00:00,25.0,0.129232804,28.517498718690216 +2019-03-10 14:15:00,25.0,0.132671958,28.51622407496897 +2019-03-10 14:30:00,25.0,0.147089947,28.51494897898285 +2019-03-10 14:45:00,25.0,0.182010582,28.513673430895857 +2019-03-10 15:00:00,25.0,0.187698413,28.51239743087206 +2019-03-10 15:15:00,25.0,0.207539683,28.511120979075578 +2019-03-10 15:30:00,25.0,0.253703704,28.509844075670596 +2019-03-10 15:45:00,25.0,0.283201058,28.508566720821346 +2019-03-10 16:00:00,25.0,0.308994709,28.507288914692126 +2019-03-10 16:15:00,25.0,0.360449735,28.506010657447295 +2019-03-10 16:30:00,25.0,0.428835979,28.50473194925126 +2019-03-10 16:45:00,25.0,0.383730159,28.50345279026849 +2019-03-10 17:00:00,25.0,0.387301587,28.50217318066352 +2019-03-10 17:15:00,25.0,0.403042328,28.50089312060093 +2019-03-10 17:30:00,25.0,0.40515873,28.499612610245368 +2019-03-10 17:45:00,25.0,0.386904762,28.498331649761536 +2019-03-10 18:00:00,25.0,0.336904762,28.49705023931419 +2019-03-10 18:15:00,25.0,0.323941799,28.495768379068156 +2019-03-10 18:30:00,25.0,0.286243386,28.494486069188305 +2019-03-10 18:45:00,25.0,0.278968254,28.49320330983957 +2019-03-10 19:00:00,25.0,0.22962963,28.491920101186945 +2019-03-10 19:15:00,25.0,0.222089947,28.490636443395474 +2019-03-10 19:30:00,25.0,0.21005291,28.48935233663027 +2019-03-10 19:45:00,25.0,0.214550265,28.488067781056493 +2019-03-10 20:00:00,25.0,0.231084656,28.486782776839373 +2019-03-10 20:15:00,25.0,0.246693122,28.48549732414418 +2019-03-10 20:30:00,25.0,0.295899471,28.484211423136262 +2019-03-10 20:45:00,25.0,0.311772487,28.482925073981008 +2019-03-10 21:00:00,25.0,0.297222222,28.481638276843867 +2019-03-10 21:15:00,25.0,0.289285714,28.48035103189036 +2019-03-10 21:30:00,25.0,0.310846561,28.479063339286053 +2019-03-10 21:45:00,25.0,0.316137566,28.477775199196568 +2019-03-10 22:00:00,25.0,0.306746032,28.476486611787593 +2019-03-10 22:15:00,25.0,0.308862434,28.475197577224865 +2019-03-10 22:30:00,25.0,0.306746032,28.473908095674183 +2019-03-10 22:45:00,25.0,0.283201058,28.472618167301405 +2019-03-10 23:00:00,25.0,0.288227513,28.471327792272447 +2019-03-10 23:15:00,25.0,0.331481481,28.470036970753274 +2019-03-10 23:30:00,25.0,0.323677249,28.468745702909917 +2019-03-10 23:45:00,25.0,0.330291005,28.467453988908463 +2019-03-11 00:00:00,25.0,0.345502646,28.46616182891506 +2019-03-11 00:15:00,25.0,0.360185185,28.464869223095896 +2019-03-11 00:30:00,25.0,0.387433862,28.46357617161724 +2019-03-11 00:45:00,25.0,0.405820106,28.4622826746454 +2019-03-11 01:00:00,25.0,0.411375661,28.460988732346756 +2019-03-11 01:15:00,25.0,0.396957672,28.45969434488773 +2019-03-11 01:30:00,25.0,0.395238095,28.458399512434816 +2019-03-11 01:45:00,25.0,0.433201058,28.457104235154556 +2019-03-11 02:00:00,25.0,0.427248677,28.455808513213547 +2019-03-11 02:15:00,25.0,0.451322751,28.454512346778454 +2019-03-11 02:30:00,25.0,0.47473545,28.45321573601599 +2019-03-11 02:45:00,25.0,0.494444444,28.45191868109293 +2019-03-11 03:00:00,25.0,0.497089947,28.4506211821761 +2019-03-11 03:15:00,25.0,0.538359788,28.449323239432395 +2019-03-11 03:30:00,25.0,0.567857143,28.448024853028752 +2019-03-11 03:45:00,25.0,0.557010582,28.446726023132175 +2019-03-11 04:00:00,25.0,0.562962963,28.44542674990972 +2019-03-11 04:15:00,25.0,0.576851852,28.44412703352851 +2019-03-11 04:30:00,25.0,0.532407407,28.442826874155706 +2019-03-11 04:45:00,25.0,0.503439153,28.441526271958548 +2019-03-11 05:00:00,25.0,0.500661376,28.44022522710432 +2019-03-11 05:15:00,25.0,0.490873016,28.438923739760362 +2019-03-11 05:30:00,25.0,0.464021164,28.43762181009408 +2019-03-11 05:45:00,25.0,0.468915344,28.43631943827292 +2019-03-11 06:00:00,25.0,0.467592593,28.435016624464406 +2019-03-11 06:15:00,25.0,0.454497354,28.43371336883611 +2019-03-11 06:30:00,25.0,0.433730159,28.432409671555654 +2019-03-11 06:45:00,25.0,0.435846561,28.431105532790724 +2019-03-11 07:00:00,25.0,0.437698413,28.429800952709066 +2019-03-11 07:15:00,25.0,0.451455026,28.42849593147847 +2019-03-11 07:30:00,25.0,0.446296296,28.427190469266797 +2019-03-11 07:45:00,25.0,0.45542328,28.425884566241955 +2019-03-11 08:00:00,25.0,0.454100529,28.424578222571917 +2019-03-11 08:15:00,25.0,0.44021164,28.423271438424702 +2019-03-11 08:30:00,25.0,0.451058201,28.421964213968394 +2019-03-11 08:45:00,25.0,0.428174603,28.420656549371135 +2019-03-11 09:00:00,25.0,0.40026455,28.419348444801113 +2019-03-11 09:15:00,25.0,0.383730159,28.418039900426585 +2019-03-11 09:30:00,25.0,0.359126984,28.416730916415858 +2019-03-11 09:45:00,25.0,0.31521164,28.41542149293729 +2019-03-11 10:00:00,25.0,0.296031746,28.414111630159315 +2019-03-11 10:15:00,25.0,0.299074074,28.4128013282504 +2019-03-11 10:30:00,25.0,0.28994709,28.41149058737908 +2019-03-11 10:45:00,25.0,0.293650794,28.410179407713954 +2019-03-11 11:00:00,25.0,0.283333333,28.408867789423656 +2019-03-11 11:15:00,25.0,0.278174603,28.4075557326769 +2019-03-11 11:30:00,25.0,0.288888889,28.406243237642443 +2019-03-11 11:45:00,25.0,0.272883598,28.404930304489096 +2019-03-11 12:00:00,25.0,0.251587302,28.403616933385738 +2019-03-11 12:15:00,25.0,0.230952381,28.402303124501294 +2019-03-11 12:30:00,25.0,0.236243386,28.400988878004753 +2019-03-11 12:45:00,25.0,0.238359788,28.39967419406515 +2019-03-11 13:00:00,25.0,0.227777778,28.39835907285159 +2019-03-11 13:15:00,25.0,0.196957672,28.397043514533223 +2019-03-11 13:30:00,25.0,0.182539683,28.39572751927926 +2019-03-11 13:45:00,25.0,0.193783069,28.394411087258966 +2019-03-11 14:00:00,25.0,0.215343915,28.393094218641664 +2019-03-11 14:15:00,25.0,0.246825397,28.391776913596733 +2019-03-11 14:30:00,25.0,0.254497354,28.39045917229361 +2019-03-11 14:45:00,25.0,0.268518519,28.389140994901783 +2019-03-11 15:00:00,25.0,0.29510582,28.3878223815908 +2019-03-11 15:15:00,25.0,0.316269841,28.386503332530268 +2019-03-11 15:30:00,25.0,0.313888889,28.385183847889838 +2019-03-11 15:45:00,25.0,0.346560847,28.38386392783923 +2019-03-11 16:00:00,25.0,0.358862434,28.382543572548215 +2019-03-11 16:15:00,25.0,0.347089947,28.38122278218662 +2019-03-11 16:30:00,25.0,0.354497354,28.379901556924327 +2019-03-11 16:45:00,25.0,0.368518519,28.378579896931278 +2019-03-11 17:00:00,25.0,0.360714286,28.377257802377464 +2019-03-11 17:15:00,25.0,0.349206349,28.375935273432937 +2019-03-11 17:30:00,25.0,0.338888889,28.374612310267807 +2019-03-11 17:45:00,25.0,0.347486772,28.37328891305223 +2019-03-11 18:00:00,25.0,0.372089947,28.371965081956432 +2019-03-11 18:15:00,25.0,0.356613757,28.370640817150687 +2019-03-11 18:30:00,25.0,0.355291005,28.369316118805315 +2019-03-11 18:45:00,25.0,0.356216931,28.367990987090714 +2019-03-11 19:00:00,25.0,0.344973545,28.366665422177316 +2019-03-11 19:15:00,25.0,0.317857143,28.365339424235625 +2019-03-11 19:30:00,25.0,0.311243386,28.36401299343619 +2019-03-11 19:45:00,25.0,0.318783069,28.362686129949623 +2019-03-11 20:00:00,25.0,0.328571429,28.361358833946582 +2019-03-11 20:15:00,25.0,0.322751323,28.36003110559779 +2019-03-11 20:30:00,25.0,0.316931217,28.35870294507403 +2019-03-11 20:45:00,25.0,0.30978836,28.35737435254612 +2019-03-11 21:00:00,25.0,0.299206349,28.356045328184955 +2019-03-11 21:15:00,25.0,0.286375661,28.354715872161478 +2019-03-11 21:30:00,25.0,0.271560847,28.353385984646682 +2019-03-11 21:45:00,25.0,0.26031746,28.352055665811623 +2019-03-11 22:00:00,25.0,0.254100529,28.350724915827406 +2019-03-11 22:15:00,25.0,0.247222222,28.349393734865203 +2019-03-11 22:30:00,25.0,0.252380952,28.348062123096224 +2019-03-11 22:45:00,25.0,0.257142857,28.34673008069175 +2019-03-11 23:00:00,25.0,0.251719577,28.34539760782311 +2019-03-11 23:15:00,25.0,0.251190476,28.34406470466169 +2019-03-11 23:30:00,25.0,0.253042328,28.34273137137893 +2019-03-11 23:45:00,25.0,0.256216931,28.34139760814633 +2019-03-12 00:00:00,25.0,0.27526455,28.34006341513544 +2019-03-12 00:15:00,25.0,0.288227513,28.338728792517863 +2019-03-12 00:30:00,25.0,0.281349206,28.337393740465263 +2019-03-12 00:45:00,25.0,0.283333333,28.33605825914936 +2019-03-12 01:00:00,25.0,0.284656085,28.334722348741927 +2019-03-12 01:15:00,25.0,0.288624339,28.333386009414788 +2019-03-12 01:30:00,25.0,0.302910053,28.332049241339828 +2019-03-12 01:45:00,25.0,0.293121693,28.330712044688987 +2019-03-12 02:00:00,25.0,0.281084656,28.329374419634256 +2019-03-12 02:15:00,25.0,0.282142857,28.328036366347682 +2019-03-12 02:30:00,25.0,0.292592593,28.326697885001376 +2019-03-12 02:45:00,25.0,0.306613757,28.32535897576749 +2019-03-12 03:00:00,25.0,0.338624339,28.324019638818235 +2019-03-12 03:15:00,25.0,0.367195767,28.322679874325885 +2019-03-12 03:30:00,25.0,0.397486772,28.321339682462764 +2019-03-12 03:45:00,25.0,0.419444444,28.319999063401248 +2019-03-12 04:00:00,25.0,0.443783069,28.318658017313773 +2019-03-12 04:15:00,25.0,0.455820106,28.317316544372822 +2019-03-12 04:30:00,25.0,0.473677249,28.315974644750945 +2019-03-12 04:45:00,25.0,0.491931217,28.31463231862074 +2019-03-12 05:00:00,25.0,0.523941799,28.31328956615485 +2019-03-12 05:15:00,25.0,0.562962963,28.311946387525996 +2019-03-12 05:30:00,25.0,0.593915344,28.310602782906933 +2019-03-12 05:45:00,25.0,0.608201058,28.30925875247048 +2019-03-12 06:00:00,25.0,0.616798942,28.307914296389512 +2019-03-12 06:15:00,25.0,0.622619048,28.306569414836954 +2019-03-12 06:30:00,25.0,0.628968254,28.305224107985786 +2019-03-12 06:45:00,25.0,0.640740741,28.303878376009045 +2019-03-12 07:00:00,25.0,0.642989418,28.302532219079826 +2019-03-12 07:15:00,25.0,0.647486772,28.30118563737127 +2019-03-12 07:30:00,25.0,0.655026455,28.29983863105658 +2019-03-12 07:45:00,25.0,0.664417989,28.298491200309016 +2019-03-12 08:00:00,25.0,0.673941799,28.297143345301876 +2019-03-12 08:15:00,25.0,0.679761905,28.295795066208534 +2019-03-12 08:30:00,25.0,0.690343915,28.294446363202404 +2019-03-12 08:45:00,25.0,0.696560847,28.29309723645696 +2019-03-12 09:00:00,25.0,0.687169312,28.291747686145733 +2019-03-12 09:15:00,25.0,0.686111111,28.2903977124423 +2019-03-12 09:30:00,25.0,0.683597884,28.2890473155203 +2019-03-12 09:45:00,25.0,0.681084656,28.287696495553426 +2019-03-12 10:00:00,25.0,0.678174603,28.286345252715424 +2019-03-12 10:15:00,25.0,0.667857143,28.28499358718009 +2019-03-12 10:30:00,25.0,0.66521164,28.28364149912128 +2019-03-12 10:45:00,25.0,0.674206349,28.282288988712907 +2019-03-12 11:00:00,25.0,0.676322751,28.28093605612893 +2019-03-12 11:15:00,25.0,0.673544974,28.27958270154336 +2019-03-12 11:30:00,25.0,0.664285714,28.278228925130282 +2019-03-12 11:45:00,25.0,0.660582011,28.276874727063813 +2019-03-12 12:00:00,25.0,0.656878307,28.275520107518137 +2019-03-12 12:15:00,25.0,0.653835979,28.274165066667486 +2019-03-12 12:30:00,25.0,0.651322751,28.272809604686145 +2019-03-12 12:45:00,25.0,0.644179894,28.271453721748465 +2019-03-12 13:00:00,25.0,0.64484127,28.270097418028836 +2019-03-12 13:15:00,25.0,0.652645503,28.268740693701712 +2019-03-12 13:30:00,25.0,0.658068783,28.2673835489416 +2019-03-12 13:45:00,25.0,0.663756614,28.26602598392305 +2019-03-12 14:00:00,25.0,0.667460317,28.26466799882069 +2019-03-12 14:15:00,25.0,0.668121693,28.263309593809176 +2019-03-12 14:30:00,25.0,0.662169312,28.261950769063226 +2019-03-12 14:45:00,25.0,0.668650794,28.26059152475763 +2019-03-12 15:00:00,25.0,0.679365079,28.2592318610672 +2019-03-12 15:15:00,25.0,0.68531746,28.257871778166834 +2019-03-12 15:30:00,25.0,0.682936508,28.256511276231457 +2019-03-12 15:45:00,25.0,0.683201058,28.255150355436072 +2019-03-12 16:00:00,25.0,0.687433862,28.25378901595571 +2019-03-12 16:15:00,25.0,0.696031746,28.252427257965483 +2019-03-12 16:30:00,25.0,0.704761905,28.251065081640533 +2019-03-12 16:45:00,25.0,0.712830688,28.24970248715607 +2019-03-12 17:00:00,25.0,0.715873016,28.24833947468736 +2019-03-12 17:15:00,25.0,0.719047619,28.246976044409706 +2019-03-12 17:30:00,25.0,0.721428571,28.245612196498485 +2019-03-12 17:45:00,25.0,0.732010582,28.24424793112911 +2019-03-12 18:00:00,25.0,0.733201058,28.242883248477064 +2019-03-12 18:15:00,25.0,0.732407407,28.24151814871787 +2019-03-12 18:30:00,25.0,0.736507937,28.24015263202711 +2019-03-12 18:45:00,25.0,0.738756614,28.238786698580427 +2019-03-12 19:00:00,25.0,0.738756614,28.237420348553503 +2019-03-12 19:15:00,25.0,0.737962963,28.236053582122082 +2019-03-12 19:30:00,25.0,0.748015873,28.234686399461964 +2019-03-12 19:45:00,25.0,0.751587302,28.233318800748997 +2019-03-12 20:00:00,25.0,0.742460317,28.231950786159082 +2019-03-12 20:15:00,25.0,0.745238095,28.230582355868187 +2019-03-12 20:30:00,25.0,0.744973545,28.229213510052308 +2019-03-12 20:45:00,25.0,0.740740741,28.22784424888752 +2019-03-12 21:00:00,25.0,0.733862434,28.226474572549936 +2019-03-12 21:15:00,25.0,0.742328042,28.225104481215727 +2019-03-12 21:30:00,25.0,0.737566138,28.22373397506112 +2019-03-12 21:45:00,25.0,0.730555556,28.222363054262388 +2019-03-12 22:00:00,25.0,0.750132275,28.220991718995865 +2019-03-12 22:15:00,25.0,0.749206349,28.219619969437936 +2019-03-12 22:30:00,25.0,0.752513228,28.21824780576504 +2019-03-12 22:45:00,25.0,0.752910053,28.21687522815366 +2019-03-12 23:00:00,25.0,0.751719577,28.21550223678035 +2019-03-12 23:15:00,25.0,0.752513228,28.214128831821697 +2019-03-12 23:30:00,25.0,0.753835979,28.212755013454363 +2019-03-12 23:45:00,25.0,0.743518519,28.211380781855045 +2019-03-13 00:00:00,25.0,0.742063492,28.2100061372005 +2019-03-13 00:15:00,25.0,0.751455026,28.20863107966754 +2019-03-13 00:30:00,25.0,0.756216931,28.207255609433027 +2019-03-13 00:45:00,25.0,0.757936508,28.205879726673878 +2019-03-13 01:00:00,25.0,0.758333333,28.20450343156706 +2019-03-13 01:15:00,25.0,0.758994709,28.203126724289593 +2019-03-13 01:30:00,25.0,0.758730159,28.20174960501856 +2019-03-13 01:45:00,25.0,0.756613757,28.200372073931085 +2019-03-13 02:00:00,25.0,0.757539683,28.19899413120435 +2019-03-13 02:15:00,25.0,0.757142857,28.19761577701559 +2019-03-13 02:30:00,25.0,0.757671958,28.196237011542088 +2019-03-13 02:45:00,25.0,0.757010582,28.194857834961184 +2019-03-13 03:00:00,25.0,0.757407407,28.19347824745028 +2019-03-13 03:15:00,25.0,0.756084656,28.192098249186813 +2019-03-13 03:30:00,25.0,0.75515873,28.19071784034828 +2019-03-13 03:45:00,25.0,0.755555556,28.18933702111224 +2019-03-13 04:00:00,25.0,0.75542328,28.187955791656293 +2019-03-13 04:15:00,25.0,0.754761905,28.186574152158098 +2019-03-13 04:30:00,25.0,0.752777778,28.185192102795362 +2019-03-13 04:45:00,25.0,0.751851852,28.183809643745846 +2019-03-13 05:00:00,25.0,0.745502646,28.18242677518737 +2019-03-13 05:15:00,25.0,0.745634921,28.1810434972978 +2019-03-13 05:30:00,25.0,0.750396825,28.179659810255053 +2019-03-13 05:45:00,25.0,0.747883598,28.178275714237106 +2019-03-13 06:00:00,25.0,0.743915344,28.17689120942198 +2019-03-13 06:15:00,25.0,0.747619048,28.175506295987763 +2019-03-13 06:30:00,25.0,0.748677249,28.174120974112576 +2019-03-13 06:45:00,25.0,0.749074074,28.172735243974607 +2019-03-13 07:00:00,25.0,0.70462963,28.17134910575209 +2019-03-13 07:15:00,25.0,0.682539683,28.16996255962331 +2019-03-13 07:30:00,25.0,0.636243386,28.168575605766616 +2019-03-13 07:45:00,25.0,0.58994709,28.167188244360396 +2019-03-13 08:00:00,25.0,0.552116402,28.165800475583094 +2019-03-13 08:15:00,25.0,0.513227513,28.164412299613215 +2019-03-13 08:30:00,25.0,0.477910053,28.1630237166293 +2019-03-13 08:45:00,25.0,0.476058201,28.161634726809957 +2019-03-13 09:00:00,25.0,0.475529101,28.160245330333844 +2019-03-13 09:15:00,25.0,0.476322751,28.158855527379664 +2019-03-13 09:30:00,25.0,0.475925926,28.157465318126174 +2019-03-13 09:45:00,25.0,0.474867725,28.156074702752193 +2019-03-13 10:00:00,25.0,0.473544974,28.154683681436584 +2019-03-13 10:15:00,25.0,0.47526455,28.153292254358256 +2019-03-13 10:30:00,25.0,0.475396825,28.151900421696187 +2019-03-13 10:45:00,25.0,0.475529101,28.15050818362939 +2019-03-13 11:00:00,25.0,0.47473545,28.149115540336943 +2019-03-13 11:15:00,25.0,0.46468254,28.147722491997968 +2019-03-13 11:30:00,25.0,0.474074074,28.146329038791645 +2019-03-13 11:45:00,25.0,0.474470899,28.144935180897203 +2019-03-13 12:00:00,25.0,0.473148148,28.143540918493922 +2019-03-13 12:15:00,25.0,0.473941799,28.142146251761133 +2019-03-13 12:30:00,25.0,0.472751323,28.140751180878222 +2019-03-13 12:45:00,25.0,0.473148148,28.13935570602463 +2019-03-13 13:00:00,25.0,0.473015873,28.137959827379845 +2019-03-13 13:15:00,25.0,0.473280423,28.136563545123405 +2019-03-13 13:30:00,25.0,0.473015873,28.135166859434907 +2019-03-13 13:45:00,25.0,0.472751323,28.13376977049399 +2019-03-13 14:00:00,25.0,0.473544974,28.132372278480357 +2019-03-13 14:15:00,25.0,0.474206349,28.130974383573754 +2019-03-13 14:30:00,25.0,0.474470899,28.129576085953985 +2019-03-13 14:45:00,25.0,0.474603175,28.128177385800896 +2019-03-13 15:00:00,25.0,0.474867725,28.126778283294396 +2019-03-13 15:15:00,25.0,0.502910053,28.125378778614436 +2019-03-13 15:30:00,25.0,0.578703704,28.12397887194103 +2019-03-13 15:45:00,25.0,0.579497354,28.122578563454233 +2019-03-13 16:00:00,25.0,0.607275132,28.121177853334153 +2019-03-13 16:15:00,25.0,0.61957672,28.119776741760962 +2019-03-13 16:30:00,25.0,0.619973545,28.118375228914868 +2019-03-13 16:45:00,25.0,0.612962963,28.116973314976136 +2019-03-13 17:00:00,25.0,0.595238095,28.115571000125083 +2019-03-13 17:15:00,25.0,0.582539683,28.114168284542078 +2019-03-13 17:30:00,25.0,0.582010582,28.11276516840755 +2019-03-13 17:45:00,25.0,0.581746032,28.11136165190196 +2019-03-13 18:00:00,25.0,0.582407407,28.109957735205832 +2019-03-13 18:15:00,25.0,0.582539683,28.108553418499753 +2019-03-13 18:30:00,25.0,0.582142857,28.107148701964338 +2019-03-13 18:45:00,25.0,0.582539683,28.105743585780267 +2019-03-13 19:00:00,25.0,0.595238095,28.10433807012827 +2019-03-13 19:15:00,25.0,0.61984127,28.10293215518913 +2019-03-13 19:30:00,25.0,0.63015873,28.101525841143676 +2019-03-13 19:45:00,25.0,0.632804233,28.100119128172793 +2019-03-13 20:00:00,25.0,0.637830688,28.098712016457416 +2019-03-13 20:15:00,25.0,0.598280423,28.09730450617853 +2019-03-13 20:30:00,25.0,0.562301587,28.09589659751717 +2019-03-13 20:45:00,25.0,0.564285714,28.094488290654432 +2019-03-13 21:00:00,25.0,0.56521164,28.09307958577145 +2019-03-13 21:15:00,25.0,0.567328042,28.09167048304941 +2019-03-13 21:30:00,25.0,0.569047619,28.090260982669562 +2019-03-13 21:45:00,25.0,0.570238095,28.0888510848132 +2019-03-13 22:00:00,25.0,0.570238095,28.087440789661663 +2019-03-13 22:15:00,25.0,0.570502646,28.086030097396346 +2019-03-13 22:30:00,25.0,0.571031746,28.0846190081987 +2019-03-13 22:45:00,25.0,0.566402116,28.08320752225022 +2019-03-13 23:00:00,25.0,0.565343915,28.081795639732455 +2019-03-13 23:15:00,25.0,0.565740741,28.080383360827007 +2019-03-13 23:30:00,25.0,0.559391534,28.07897068571552 +2019-03-13 23:45:00,25.0,0.555555556,28.077557614579707 +2019-03-14 00:00:00,25.0,0.550396825,28.07614414760131 +2019-03-14 00:15:00,25.0,0.555820106,28.074730284962133 +2019-03-14 00:30:00,25.0,0.543253968,28.073316026844033 +2019-03-14 00:45:00,25.0,0.538227513,28.071901373428915 +2019-03-14 01:00:00,25.0,0.538888889,28.07048632489874 +2019-03-14 01:15:00,25.0,0.573280423,28.069070881435508 +2019-03-14 01:30:00,25.0,0.571031746,28.067655043221276 +2019-03-14 01:45:00,25.0,0.567195767,28.066238810438158 +2019-03-14 02:00:00,25.0,0.614550265,28.06482218326831 +2019-03-14 02:15:00,25.0,0.630952381,28.06340516189394 +2019-03-14 02:30:00,25.0,0.643253968,28.061987746497312 +2019-03-14 02:45:00,25.0,0.655555556,28.060569937260734 +2019-03-14 03:00:00,25.0,0.663624339,28.059151734366573 +2019-03-14 03:15:00,25.0,0.668783069,28.057733137997232 +2019-03-14 03:30:00,25.0,0.679100529,28.056314148335186 +2019-03-14 03:45:00,25.0,0.714550265,28.054894765562942 +2019-03-14 04:00:00,25.0,0.725529101,28.053474989863062 +2019-03-14 04:15:00,25.0,0.757539683,28.05205482141817 +2019-03-14 04:30:00,25.0,0.773148148,28.050634260410924 +2019-03-14 04:45:00,25.0,0.784920635,28.04921330702404 +2019-03-14 05:00:00,25.0,0.787169312,28.047791961440286 +2019-03-14 05:15:00,25.0,0.786772487,28.046370223842477 +2019-03-14 05:30:00,25.0,0.783333333,28.04494809441348 +2019-03-14 05:45:00,25.0,0.783201058,28.04352557333622 +2019-03-14 06:00:00,25.0,0.781746032,28.04210266079366 +2019-03-14 06:15:00,25.0,0.781878307,28.040679356968813 +2019-03-14 06:30:00,25.0,0.781349206,28.039255662044752 +2019-03-14 06:45:00,25.0,0.783730159,28.037831576204596 +2019-03-14 07:00:00,25.0,0.781746032,28.036407099631518 +2019-03-14 07:15:00,25.0,0.777645503,28.03498223250873 +2019-03-14 07:30:00,25.0,0.772619048,28.033556975019508 +2019-03-14 07:45:00,25.0,0.77473545,28.03213132734717 +2019-03-14 08:00:00,25.0,0.766269841,28.030705289675083 +2019-03-14 08:15:00,25.0,0.762301587,28.029278862186672 +2019-03-14 08:30:00,25.0,0.75952381,28.0278520450654 +2019-03-14 08:45:00,25.0,0.751455026,28.026424838494798 +2019-03-14 09:00:00,25.0,0.753968254,28.02499724265843 +2019-03-14 09:15:00,25.0,0.757407407,28.02356925773992 +2019-03-14 09:30:00,25.0,0.76031746,28.022140883922933 +2019-03-14 09:45:00,25.0,0.764021164,28.020712121391195 +2019-03-14 10:00:00,25.0,0.752248677,28.019282970328476 +2019-03-14 10:15:00,25.0,0.741402116,28.017853430918592 +2019-03-14 10:30:00,25.0,0.753306878,28.016423503345422 +2019-03-14 10:45:00,25.0,0.76521164,28.014993187792882 +2019-03-14 11:00:00,25.0,0.757142857,28.01356248444494 +2019-03-14 11:15:00,25.0,0.747354497,28.01213139348562 +2019-03-14 11:30:00,25.0,0.73478836,28.010699915098993 +2019-03-14 11:45:00,25.0,0.726984127,28.009268049469178 +2019-03-14 12:00:00,25.0,0.716402116,28.00783579678034 +2019-03-14 12:15:00,25.0,0.700793651,28.006403157216706 +2019-03-14 12:30:00,25.0,0.689153439,28.004970130962544 +2019-03-14 12:45:00,25.0,0.647486772,28.003536718202167 +2019-03-14 13:00:00,25.0,0.649603175,28.00210291911995 +2019-03-14 13:15:00,25.0,0.630555556,28.00066873390031 +2019-03-14 13:30:00,25.0,0.607010582,27.999234162727713 +2019-03-14 13:45:00,25.0,0.607539683,27.997799205786684 +2019-03-14 14:00:00,25.0,0.600529101,27.99636386326178 +2019-03-14 14:15:00,25.0,0.599470899,27.994928135337627 +2019-03-14 14:30:00,25.0,0.611111111,27.993492022198886 +2019-03-14 14:45:00,25.0,0.578042328,27.992055524030278 +2019-03-14 15:00:00,25.0,0.601851852,27.990618641016564 +2019-03-14 15:15:00,25.0,0.647619048,27.98918137334256 +2019-03-14 15:30:00,25.0,0.692724868,27.987743721193134 +2019-03-14 15:45:00,25.0,0.721164021,27.986305684753198 +2019-03-14 16:00:00,25.0,0.733068783,27.98486726420772 +2019-03-14 16:15:00,25.0,0.737433862,27.983428459741702 +2019-03-14 16:30:00,25.0,0.73994709,27.981989271540215 +2019-03-14 16:45:00,25.0,0.746164021,27.98054969978837 +2019-03-14 17:00:00,25.0,0.748015873,27.979109744671323 +2019-03-14 17:15:00,25.0,0.739417989,27.97766940637429 +2019-03-14 17:30:00,25.0,0.721296296,27.976228685082532 +2019-03-14 17:45:00,25.0,0.722222222,27.97478758098135 +2019-03-14 18:00:00,25.0,0.727910053,27.97334609425611 +2019-03-14 18:15:00,25.0,0.72010582,27.971904225092214 +2019-03-14 18:30:00,25.0,0.711243386,27.97046197367512 +2019-03-14 18:45:00,25.0,0.705026455,27.96901934019034 +2019-03-14 19:00:00,25.0,0.699206349,27.96757632482342 +2019-03-14 19:15:00,25.0,0.697222222,27.966132927759965 +2019-03-14 19:30:00,25.0,0.665079365,27.964689149185634 +2019-03-14 19:45:00,25.0,0.651322751,27.963244989286125 +2019-03-14 20:00:00,25.0,0.64973545,27.961800448247185 +2019-03-14 20:15:00,25.0,0.642989418,27.960355526254624 +2019-03-14 20:30:00,25.0,0.637433862,27.958910223494286 +2019-03-14 20:45:00,25.0,0.641666667,27.957464540152067 +2019-03-14 21:00:00,25.0,0.641534392,27.956018476413917 +2019-03-14 21:15:00,25.0,0.637566138,27.954572032465833 +2019-03-14 21:30:00,25.0,0.636375661,27.953125208493855 +2019-03-14 21:45:00,25.0,0.636507937,27.951678004684084 +2019-03-14 22:00:00,25.0,0.634920635,27.950230421222656 +2019-03-14 22:15:00,25.0,0.632804233,27.948782458295767 +2019-03-14 22:30:00,25.0,0.633333333,27.947334116089657 +2019-03-14 22:45:00,25.0,0.632407407,27.94588539479061 +2019-03-14 23:00:00,25.0,0.634920635,27.944436294584975 +2019-03-14 23:15:00,25.0,0.637169312,27.942986815659125 +2019-03-14 23:30:00,25.0,0.635978836,27.941536958199503 +2019-03-14 23:45:00,25.0,0.634391534,27.940086722392593 +2019-03-15 00:00:00,25.0,0.632539683,27.93863610842493 +2019-03-15 00:15:00,25.0,0.62989418,27.937185116483086 +2019-03-15 00:30:00,25.0,0.621560847,27.935733746753698 +2019-03-15 00:45:00,25.0,0.61957672,27.934281999423447 +2019-03-15 01:00:00,25.0,0.620502646,27.93282987467905 +2019-03-15 01:15:00,25.0,0.614153439,27.931377372707296 +2019-03-15 01:30:00,25.0,0.609126984,27.929924493694998 +2019-03-15 01:45:00,25.0,0.611507937,27.928471237829037 +2019-03-15 02:00:00,25.0,0.627645503,27.927017605296328 +2019-03-15 02:15:00,25.0,0.657671958,27.92556359628384 +2019-03-15 02:30:00,25.0,0.63994709,27.924109210978596 +2019-03-15 02:45:00,25.0,0.623809524,27.92265444956766 +2019-03-15 03:00:00,25.0,0.626587302,27.921199312238144 +2019-03-15 03:15:00,25.0,0.647883598,27.919743799177215 +2019-03-15 03:30:00,25.0,0.646428571,27.91828791057209 +2019-03-15 03:45:00,25.0,0.642328042,27.916831646610014 +2019-03-15 04:00:00,25.0,0.639285714,27.915375007478307 +2019-03-15 04:15:00,25.0,0.630555556,27.913917993364322 +2019-03-15 04:30:00,25.0,0.605687831,27.91246060445546 +2019-03-15 04:45:00,25.0,0.607804233,27.911002840939176 +2019-03-15 05:00:00,25.0,0.631216931,27.90954470300298 +2019-03-15 05:15:00,25.0,0.641269841,27.908086190834403 +2019-03-15 05:30:00,25.0,0.64484127,27.906627304621058 +2019-03-15 05:45:00,25.0,0.651058201,27.905168044550578 +2019-03-15 06:00:00,25.0,0.664550265,27.90370841081067 +2019-03-15 06:15:00,25.0,0.660714286,27.902248403589063 +2019-03-15 06:30:00,25.0,0.672354497,27.900788023073552 +2019-03-15 06:45:00,25.0,0.685582011,27.899327269451977 +2019-03-15 07:00:00,25.0,0.697222222,27.89786614291222 +2019-03-15 07:15:00,25.0,0.696560847,27.896404643642214 +2019-03-15 07:30:00,25.0,0.697486772,27.894942771829943 +2019-03-15 07:45:00,25.0,0.691798942,27.89348052766343 +2019-03-15 08:00:00,25.0,0.694179894,27.892017911330765 +2019-03-15 08:15:00,25.0,0.706878307,27.890554923020062 +2019-03-15 08:30:00,25.0,0.711507937,27.889091562919496 +2019-03-15 08:45:00,25.0,0.725,27.88762783121729 +2019-03-15 09:00:00,25.0,0.727248677,27.88616372810171 +2019-03-15 09:15:00,25.0,0.72989418,27.884699253761074 +2019-03-15 09:30:00,25.0,0.73968254,27.883234408383746 +2019-03-15 09:45:00,25.0,0.742724868,27.88176919215814 +2019-03-15 10:00:00,25.0,0.739417989,27.88030360527271 +2019-03-15 10:15:00,25.0,0.737566138,27.87883764791597 +2019-03-15 10:30:00,25.0,0.734259259,27.87737132027647 +2019-03-15 10:45:00,25.0,0.739021164,27.875904622542812 +2019-03-15 11:00:00,25.0,0.724867725,27.874437554903647 +2019-03-15 11:15:00,25.0,0.710185185,27.872970117547677 +2019-03-15 11:30:00,25.0,0.698677249,27.87150231066364 +2019-03-15 11:45:00,25.0,0.723544974,27.870034134440335 +2019-03-15 12:00:00,25.0,0.727513228,27.8685655890666 +2019-03-15 12:15:00,25.0,0.729232804,27.867096674731318 +2019-03-15 12:30:00,25.0,0.731878307,27.86562739162343 +2019-03-15 12:45:00,25.0,0.72962963,27.86415773993192 +2019-03-15 13:00:00,25.0,0.729100529,27.86268771984581 +2019-03-15 13:15:00,25.0,0.732407407,27.861217331554187 +2019-03-15 13:30:00,25.0,0.709920635,27.85974657524617 +2019-03-15 13:45:00,25.0,0.672089947,27.85827545111093 +2019-03-15 14:00:00,25.0,0.658465608,27.85680395933769 +2019-03-15 14:15:00,25.0,0.661772487,27.855332100115714 +2019-03-15 14:30:00,25.0,0.669444444,27.85385987363432 +2019-03-15 14:45:00,25.0,0.679232804,27.852387280082862 +2019-03-15 15:00:00,25.0,0.678042328,27.85091431965076 +2019-03-15 15:15:00,25.0,0.683597884,27.849440992527455 +2019-03-15 15:30:00,25.0,0.693121693,27.84796729890246 +2019-03-15 15:45:00,25.0,0.706613757,27.84649323896532 +2019-03-15 16:00:00,25.0,0.712433862,27.845018812905636 +2019-03-15 16:15:00,25.0,0.714285714,27.843544020913047 +2019-03-15 16:30:00,25.0,0.718386243,27.84206886317725 +2019-03-15 16:45:00,25.0,0.721957672,27.84059333988798 +2019-03-15 17:00:00,25.0,0.725132275,27.839117451235026 +2019-03-15 17:15:00,25.0,0.725529101,27.83764119740821 +2019-03-15 17:30:00,25.0,0.731878307,27.836164578597423 +2019-03-15 17:45:00,25.0,0.723015873,27.834687594992584 +2019-03-15 18:00:00,25.0,0.726587302,27.83321024678367 +2019-03-15 18:15:00,25.0,0.734391534,27.831732534160697 +2019-03-15 18:30:00,25.0,0.73042328,27.830254457313735 +2019-03-15 18:45:00,25.0,0.731613757,27.828776016432897 +2019-03-15 19:00:00,25.0,0.726587302,27.82729721170834 +2019-03-15 19:15:00,25.0,0.712566138,27.825818043330276 +2019-03-15 19:30:00,25.0,0.707275132,27.82433851148896 +2019-03-15 19:45:00,25.0,0.65,27.82285861637469 +2019-03-15 20:00:00,25.0,0.633465608,27.82137835817781 +2019-03-15 20:15:00,25.0,0.641137566,27.81989773708872 +2019-03-15 20:30:00,25.0,0.635185185,27.81841675329786 +2019-03-15 20:45:00,25.0,0.621825397,27.816935406995714 +2019-03-15 21:00:00,25.0,0.625396825,27.81545369837282 +2019-03-15 21:15:00,25.0,0.634259259,27.813971627619757 +2019-03-15 21:30:00,25.0,0.64484127,27.812489194927153 +2019-03-15 21:45:00,25.0,0.662433862,27.811006400485685 +2019-03-15 22:00:00,25.0,0.666534392,27.809523244486066 +2019-03-15 22:15:00,25.0,0.668386243,27.80803972711907 +2019-03-15 22:30:00,25.0,0.668253968,27.806555848575506 +2019-03-15 22:45:00,25.0,0.672751323,27.805071609046234 +2019-03-15 23:00:00,25.0,0.680952381,27.803587008722165 +2019-03-15 23:15:00,25.0,0.696296296,27.802102047794246 +2019-03-15 23:30:00,25.0,0.699206349,27.80061672645348 +2019-03-15 23:45:00,25.0,0.699470899,27.79913104489091 +2019-03-16 00:00:00,25.0,0.699867725,27.79764500329763 +2019-03-16 00:15:00,25.0,0.700793651,27.796158601864775 +2019-03-16 00:30:00,25.0,0.700925926,27.794671840783533 +2019-03-16 00:45:00,25.0,0.701719577,27.793184720245133 +2019-03-16 01:00:00,25.0,0.701984127,27.791697240440854 +2019-03-16 01:15:00,25.0,0.701322751,27.790209401562013 +2019-03-16 01:30:00,25.0,0.700925926,27.788721203799987 +2019-03-16 01:45:00,25.0,0.697486772,27.787232647346187 +2019-03-16 02:00:00,25.0,0.693783069,27.78574373239207 +2019-03-16 02:15:00,25.0,0.697089947,27.784254459129155 +2019-03-16 02:30:00,25.0,0.701587302,27.782764827748988 +2019-03-16 02:45:00,25.0,0.700661376,27.781274838443174 +2019-03-16 03:00:00,25.0,0.720502646,27.77978449140335 +2019-03-16 03:15:00,25.0,0.729365079,27.778293786821216 +2019-03-16 03:30:00,25.0,0.719708995,27.776802724888505 +2019-03-16 03:45:00,25.0,0.732142857,27.775311305797008 +2019-03-16 04:00:00,25.0,0.734126984,27.773819529738546 +2019-03-16 04:15:00,25.0,0.721825397,27.772327396905 +2019-03-16 04:30:00,25.0,0.741137566,27.77083490748829 +2019-03-16 04:45:00,25.0,0.731878307,27.769342061680383 +2019-03-16 05:00:00,25.0,0.706613757,27.767848859673293 +2019-03-16 05:15:00,25.0,0.676587302,27.766355301659075 +2019-03-16 05:30:00,25.0,0.684656085,27.764861387829843 +2019-03-16 05:45:00,25.0,0.683068783,27.76336711837774 +2019-03-16 06:00:00,25.0,0.662301587,27.76187249349497 +2019-03-16 06:15:00,25.0,0.63994709,27.760377513373765 +2019-03-16 06:30:00,25.0,0.618783069,27.758882178206417 +2019-03-16 06:45:00,25.0,0.586772487,27.75738648818526 +2019-03-16 07:00:00,25.0,0.540873016,27.75589044350268 +2019-03-16 07:15:00,25.0,0.496296296,27.754394044351088 +2019-03-16 07:30:00,25.0,0.469047619,27.752897290922963 +2019-03-16 07:45:00,25.0,0.436375661,27.751400183410823 +2019-03-16 08:00:00,25.0,0.411507937,27.74990272200722 +2019-03-16 08:15:00,25.0,0.432671958,27.74840490690477 +2019-03-16 08:30:00,25.0,0.451455026,27.746906738296122 +2019-03-16 08:45:00,25.0,0.435978836,27.745408216373974 +2019-03-16 09:00:00,25.0,0.441534392,27.74390934133107 +2019-03-16 09:15:00,25.0,0.441269841,27.742410113360197 +2019-03-16 09:30:00,25.0,0.398941799,27.74091053265419 +2019-03-16 09:45:00,25.0,0.380555556,27.739410599405932 +2019-03-16 10:00:00,25.0,0.384126984,27.737910313808342 +2019-03-16 10:15:00,25.0,0.385582011,27.736409676054393 +2019-03-16 10:30:00,25.0,0.377645503,27.7349086863371 +2019-03-16 10:45:00,25.0,0.389153439,27.733407344849525 +2019-03-16 11:00:00,25.0,0.383201058,27.731905651784775 +2019-03-16 11:15:00,25.0,0.396825397,27.730403607335997 +2019-03-16 11:30:00,25.0,0.433862434,27.728901211696392 +2019-03-16 11:45:00,25.0,0.467592593,27.727398465059196 +2019-03-16 12:00:00,25.0,0.487169312,27.725895367617703 +2019-03-16 12:15:00,25.0,0.491269841,27.72439191956524 +2019-03-16 12:30:00,25.0,0.523280423,27.722888121095185 +2019-03-16 12:45:00,25.0,0.573148148,27.72138397240096 +2019-03-16 13:00:00,25.0,0.606613757,27.719879473676034 +2019-03-16 13:15:00,25.0,0.636507937,27.718374625113913 +2019-03-16 13:30:00,25.0,0.673544974,27.71686942690816 +2019-03-16 13:45:00,25.0,0.69973545,27.71536387925238 +2019-03-16 14:00:00,25.0,0.710185185,27.713857982340212 +2019-03-16 14:15:00,25.0,0.720899471,27.712351736365353 +2019-03-16 14:30:00,25.0,0.723677249,27.710845141521535 +2019-03-16 14:45:00,25.0,0.735714286,27.709338198002545 +2019-03-16 15:00:00,25.0,0.741402116,27.707830906002208 +2019-03-16 15:15:00,25.0,0.732936508,27.706323265714396 +2019-03-16 15:30:00,25.0,0.731481481,27.704815277333022 +2019-03-16 15:45:00,25.0,0.73968254,27.70330694105205 +2019-03-16 16:00:00,25.0,0.731084656,27.701798257065484 +2019-03-16 16:15:00,25.0,0.731746032,27.700289225567378 +2019-03-16 16:30:00,25.0,0.737037037,27.69877984675182 +2019-03-16 16:45:00,25.0,0.743253968,27.69727012081296 +2019-03-16 17:00:00,25.0,0.732936508,27.695760047944972 +2019-03-16 17:15:00,25.0,0.721031746,27.69424962834209 +2019-03-16 17:30:00,25.0,0.708862434,27.69273886219859 +2019-03-16 17:45:00,25.0,0.701058201,27.691227749708784 +2019-03-16 18:00:00,25.0,0.705820106,27.689716291067043 +2019-03-16 18:15:00,25.0,0.712301587,27.688204486467765 +2019-03-16 18:30:00,25.0,0.706613757,27.68669233610541 +2019-03-16 18:45:00,25.0,0.706613757,27.685179840174467 +2019-03-16 19:00:00,25.0,0.724338624,27.683666998869484 +2019-03-16 19:15:00,25.0,0.734391534,27.682153812385042 +2019-03-16 19:30:00,25.0,0.739153439,27.68064028091577 +2019-03-16 19:45:00,25.0,0.731613757,27.679126404656344 +2019-03-16 20:00:00,25.0,0.730952381,27.67761218380148 +2019-03-16 20:15:00,25.0,0.740740741,27.676097618545942 +2019-03-16 20:30:00,25.0,0.762830688,27.67458270908454 +2019-03-16 20:45:00,25.0,0.770634921,27.67306745561212 +2019-03-16 21:00:00,25.0,0.773015873,27.67155185832358 +2019-03-16 21:15:00,25.0,0.772751323,27.67003591741386 +2019-03-16 21:30:00,25.0,0.776455026,27.66851963307794 +2019-03-16 21:45:00,25.0,0.776851852,27.66700300551085 +2019-03-16 22:00:00,25.0,0.77473545,27.665486034907666 +2019-03-16 22:15:00,25.0,0.772354497,27.6639687214635 +2019-03-16 22:30:00,25.0,0.771560847,27.662451065373517 +2019-03-16 22:45:00,25.0,0.768121693,27.660933066832914 +2019-03-16 23:00:00,25.0,0.768915344,27.659414726036943 +2019-03-16 23:15:00,25.0,0.771825397,27.657896043180898 +2019-03-16 23:30:00,25.0,0.768915344,27.656377018460116 +2019-03-16 23:45:00,25.0,0.767460317,27.65485765206998 +2019-03-17 00:00:00,25.0,0.589417989,27.6533379442059 +2019-03-17 00:15:00,25.0,0.561111111,27.651817895063363 +2019-03-17 00:30:00,25.0,0.567195767,27.650297504837873 +2019-03-17 00:45:00,25.0,0.563095238,27.648776773724983 +2019-03-17 01:00:00,25.0,0.551851852,27.647255701920297 +2019-03-17 01:15:00,25.0,0.550396825,27.64573428961946 +2019-03-17 01:30:00,25.0,0.528571429,27.644212537018152 +2019-03-17 01:45:00,25.0,0.531481481,27.642690444312116 +2019-03-17 02:00:00,25.0,0.505820106,27.64116801169712 +2019-03-17 02:15:00,25.0,0.502777778,27.639645239368978 +2019-03-17 02:30:00,25.0,0.478439153,27.638122127523562 +2019-03-17 02:45:00,25.0,0.471957672,27.636598676356776 +2019-03-17 03:00:00,25.0,0.494973545,27.635074886064565 +2019-03-17 03:15:00,25.0,0.511640212,27.63355075684293 +2019-03-17 03:30:00,25.0,0.512698413,27.6320262888879 +2019-03-17 03:45:00,25.0,0.510978836,27.63050148239556 +2019-03-17 04:00:00,25.0,0.519179894,27.628976337562033 +2019-03-17 04:15:00,25.0,0.51984127,27.627450854583486 +2019-03-17 04:30:00,25.0,0.525661376,27.625925033656134 +2019-03-17 04:45:00,25.0,0.517460317,27.62439887497623 +2019-03-17 05:00:00,25.0,0.516666667,27.622872378740066 +2019-03-17 05:15:00,25.0,0.522089947,27.621345545143992 +2019-03-17 05:30:00,25.0,0.521164021,27.619818374384387 +2019-03-17 05:45:00,25.0,0.528042328,27.618290866657684 +2019-03-17 06:00:00,25.0,0.527645503,27.61676302216035 +2019-03-17 06:15:00,25.0,0.527116402,27.615234841088903 +2019-03-17 06:30:00,25.0,0.528042328,27.613706323639896 +2019-03-17 06:45:00,25.0,0.529100529,27.612177470009943 +2019-03-17 07:00:00,25.0,0.530291005,27.610648280395672 +2019-03-17 07:15:00,25.0,0.528703704,27.609118754993784 +2019-03-17 07:30:00,25.0,0.529232804,27.607588894001005 +2019-03-17 07:45:00,25.0,0.544444444,27.606058697614106 +2019-03-17 08:00:00,25.0,0.586243386,27.604528166029908 +2019-03-17 08:15:00,25.0,0.601322751,27.602997299445274 +2019-03-17 08:30:00,25.0,0.597619048,27.601466098057106 +2019-03-17 08:45:00,25.0,0.603571429,27.599934562062348 +2019-03-17 09:00:00,25.0,0.61521164,27.59840269165799 +2019-03-17 09:15:00,25.0,0.613888889,27.59687048704107 +2019-03-17 09:30:00,25.0,0.611243386,27.595337948408655 +2019-03-17 09:45:00,25.0,0.608994709,27.593805075957874 +2019-03-17 10:00:00,25.0,0.560978836,27.592271869885877 +2019-03-17 10:15:00,25.0,0.55462963,27.590738330389883 +2019-03-17 10:30:00,25.0,0.553835979,27.589204457667122 +2019-03-17 10:45:00,25.0,0.553968254,27.587670251914897 +2019-03-17 11:00:00,25.0,0.573015873,27.58613571333054 +2019-03-17 11:15:00,25.0,0.574074074,27.58460084211142 +2019-03-17 11:30:00,25.0,0.57010582,27.58306563845496 +2019-03-17 11:45:00,25.0,0.573148148,27.581530102558624 +2019-03-17 12:00:00,25.0,0.556878307,27.57999423461991 +2019-03-17 12:15:00,25.0,0.539417989,27.578458034836373 +2019-03-17 12:30:00,25.0,0.528306878,27.576921503405597 +2019-03-17 12:45:00,25.0,0.528174603,27.57538464052521 +2019-03-17 13:00:00,25.0,0.529232804,27.573847446392897 +2019-03-17 13:15:00,25.0,0.516534392,27.57230992120637 +2019-03-17 13:30:00,25.0,0.51468254,27.57077206516339 +2019-03-17 13:45:00,25.0,0.513888889,27.56923387846176 +2019-03-17 14:00:00,25.0,0.514285714,27.56769536129932 +2019-03-17 14:15:00,25.0,0.514550265,27.566156513873967 +2019-03-17 14:30:00,25.0,0.539814815,27.564617336383623 +2019-03-17 14:45:00,25.0,0.540608466,27.563077829026263 +2019-03-17 15:00:00,25.0,0.566137566,27.561537991999906 +2019-03-17 15:15:00,25.0,0.575132275,27.559997825502606 +2019-03-17 15:30:00,25.0,0.575396825,27.55845732973246 +2019-03-17 15:45:00,25.0,0.576058201,27.556916504887614 +2019-03-17 16:00:00,25.0,0.575925926,27.55537535116625 +2019-03-17 16:15:00,25.0,0.576455026,27.5538338687666 +2019-03-17 16:30:00,25.0,0.576058201,27.552292057886923 +2019-03-17 16:45:00,25.0,0.590608466,27.550749918725543 +2019-03-17 17:00:00,25.0,0.728439153,27.549207451480804 +2019-03-17 17:15:00,25.0,0.788227513,27.547664656351106 +2019-03-17 17:30:00,25.0,0.767857143,27.546121533534883 +2019-03-17 17:45:00,25.0,0.767195767,27.54457808323062 +2019-03-17 18:00:00,25.0,0.766402116,27.543034305636837 +2019-03-17 18:15:00,25.0,0.767592593,27.541490200952097 +2019-03-17 18:30:00,25.0,0.734391534,27.53994576937501 +2019-03-17 18:45:00,25.0,0.728968254,27.538401011104217 +2019-03-17 19:00:00,25.0,0.727910053,27.536855926338415 +2019-03-17 19:15:00,25.0,0.728703704,27.535310515276336 +2019-03-17 19:30:00,25.0,0.728968254,27.533764778116748 +2019-03-17 19:45:00,25.0,0.728174603,27.532218715058477 +2019-03-17 20:00:00,25.0,0.727248677,27.530672326300376 +2019-03-17 20:15:00,25.0,0.726587302,27.529125612041344 +2019-03-17 20:30:00,25.0,0.728439153,27.527578572480323 +2019-03-17 20:45:00,25.0,0.729232804,27.526031207816303 +2019-03-17 21:00:00,25.0,0.728042328,27.5244835182483 +2019-03-17 21:15:00,25.0,0.72989418,27.522935503975386 +2019-03-17 21:30:00,25.0,0.729497354,27.52138716519667 +2019-03-17 21:45:00,25.0,0.729761905,27.51983850211131 +2019-03-17 22:00:00,25.0,0.730291005,27.518289514918486 +2019-03-17 22:15:00,25.0,0.730026455,27.51674020381744 +2019-03-17 22:30:00,25.0,0.731084656,27.515190569007448 +2019-03-17 22:45:00,25.0,0.731084656,27.513640610687823 +2019-03-17 23:00:00,25.0,0.731613757,27.512090329057926 +2019-03-17 23:15:00,25.0,0.725396825,27.510539724317162 +2019-03-17 23:30:00,25.0,0.66494709,27.50898879666497 +2019-03-17 23:45:00,25.0,0.664285714,27.50743754630083 +2019-03-18 00:00:00,25.0,0.66468254,27.505885973424277 +2019-03-18 00:15:00,25.0,0.66494709,27.50433407823487 +2019-03-18 00:30:00,25.0,0.637566138,27.50278186093222 +2019-03-18 00:45:00,25.0,0.611375661,27.501229321715975 +2019-03-18 01:00:00,25.0,0.611111111,27.49967646078583 +2019-03-18 01:15:00,25.0,0.611375661,27.498123278341517 +2019-03-18 01:30:00,25.0,0.61031746,27.496569774582806 +2019-03-18 01:45:00,25.0,0.610978836,27.49501594970951 +2019-03-18 02:00:00,25.0,0.584656085,27.493461803921498 +2019-03-18 02:15:00,25.0,0.557539683,27.491907337418656 +2019-03-18 02:30:00,25.0,0.557671958,27.490352550400925 +2019-03-18 02:45:00,25.0,0.557936508,27.488797443068293 +2019-03-18 03:00:00,25.0,0.558862434,27.487242015620772 +2019-03-18 03:15:00,25.0,0.559391534,27.485686268258426 +2019-03-18 03:30:00,25.0,0.559126984,27.484130201181365 +2019-03-18 03:45:00,25.0,0.558994709,27.482573814589728 +2019-03-18 04:00:00,25.0,0.55978836,27.481017108683705 +2019-03-18 04:15:00,25.0,0.55952381,27.47946008366352 +2019-03-18 04:30:00,25.0,0.559259259,27.477902739729444 +2019-03-18 04:45:00,25.0,0.55952381,27.476345077081785 +2019-03-18 05:00:00,25.0,0.558862434,27.47478709592089 +2019-03-18 05:15:00,25.0,0.558730159,27.473228796447156 +2019-03-18 05:30:00,25.0,0.558068783,27.47167017886101 +2019-03-18 05:45:00,25.0,0.558994709,27.47011124336293 +2019-03-18 06:00:00,25.0,0.553703704,27.468551990153426 +2019-03-18 06:15:00,25.0,0.559126984,27.46699241943305 +2019-03-18 06:30:00,25.0,0.559126984,27.465432531402406 +2019-03-18 06:45:00,25.0,0.559126984,27.463872326262123 +2019-03-18 07:00:00,25.0,0.543650794,27.46231180421288 +2019-03-18 07:15:00,25.0,0.513756614,27.4607509654554 +2019-03-18 07:30:00,25.0,0.510846561,27.459189810190438 +2019-03-18 07:45:00,25.0,0.511507937,27.45762833861879 +2019-03-18 08:00:00,25.0,0.511111111,27.4560665509413 +2019-03-18 08:15:00,25.0,0.511375661,27.454504447358847 +2019-03-18 08:30:00,25.0,0.511111111,27.452942028072354 +2019-03-18 08:45:00,25.0,0.510185185,27.45137929328278 +2019-03-18 09:00:00,25.0,0.509126984,27.44981624319113 +2019-03-18 09:15:00,25.0,0.509391534,27.44825287799845 +2019-03-18 09:30:00,25.0,0.509259259,27.44668919790582 +2019-03-18 09:45:00,25.0,0.509920635,27.445125203114365 +2019-03-18 10:00:00,25.0,0.509259259,27.443560893825246 +2019-03-18 10:15:00,25.0,0.509656085,27.441996270239674 +2019-03-18 10:30:00,25.0,0.508994709,27.44043133255889 +2019-03-18 10:45:00,25.0,0.509259259,27.438866080984184 +2019-03-18 11:00:00,25.0,0.508862434,27.43730051571688 +2019-03-18 11:15:00,25.0,0.508465608,27.435734636958344 +2019-03-18 11:30:00,25.0,0.507936508,27.434168444909982 +2019-03-18 11:45:00,25.0,0.507539683,27.432601939773246 +2019-03-18 12:00:00,25.0,0.507936508,27.431035121749616 +2019-03-18 12:15:00,25.0,0.506878307,27.429467991040628 +2019-03-18 12:30:00,25.0,0.509656085,27.427900547847845 +2019-03-18 12:45:00,25.0,0.508994709,27.42633279237288 +2019-03-18 13:00:00,25.0,0.51031746,27.424764724817372 +2019-03-18 13:15:00,25.0,0.507407407,27.423196345383015 +2019-03-18 13:30:00,25.0,0.505291005,27.421627654271543 +2019-03-18 13:45:00,25.0,0.506349206,27.420058651684712 +2019-03-18 14:00:00,25.0,0.507407407,27.418489337824344 +2019-03-18 14:15:00,25.0,0.51521164,27.416919712892284 +2019-03-18 14:30:00,25.0,0.590740741,27.415349777090412 +2019-03-18 14:45:00,25.0,0.58994709,27.41377953062067 +2019-03-18 15:00:00,25.0,0.571957672,27.412208973685015 +2019-03-18 15:15:00,25.0,0.564550265,27.41063810648546 +2019-03-18 15:30:00,25.0,0.570899471,27.40906692922406 +2019-03-18 15:45:00,25.0,0.603174603,27.407495442102892 +2019-03-18 16:00:00,25.0,0.571560847,27.405923645324098 +2019-03-18 16:15:00,25.0,0.633333333,27.40435153908983 +2019-03-18 16:30:00,25.0,0.644179894,27.402779123602308 +2019-03-18 16:45:00,25.0,0.646693122,27.401206399063778 +2019-03-18 17:00:00,25.0,0.643915344,27.39963336567652 +2019-03-18 17:15:00,25.0,0.651851852,27.398060023642874 +2019-03-18 17:30:00,25.0,0.655952381,27.396486373165192 +2019-03-18 17:45:00,25.0,0.63478836,27.394912414445894 +2019-03-18 18:00:00,25.0,0.647354497,27.39333814768742 +2019-03-18 18:15:00,25.0,0.648544974,27.391763573092256 +2019-03-18 18:30:00,25.0,0.637830688,27.390188690862924 +2019-03-18 18:45:00,25.0,0.621296296,27.388613501201995 +2019-03-18 19:00:00,25.0,0.631746032,27.387038004312068 +2019-03-18 19:15:00,25.0,0.65978836,27.385462200395796 +2019-03-18 19:30:00,25.0,0.644973545,27.383886089655853 +2019-03-18 19:45:00,25.0,0.628571429,27.382309672294966 +2019-03-18 20:00:00,25.0,0.629365079,27.3807329485159 +2019-03-18 20:15:00,25.0,0.637962963,27.379155918521448 +2019-03-18 20:30:00,25.0,0.680555556,27.377578582514463 +2019-03-18 20:45:00,25.0,0.686111111,27.376000940697818 +2019-03-18 21:00:00,25.0,0.69537037,27.374422993274436 +2019-03-18 21:15:00,25.0,0.68452381,27.372844740447274 +2019-03-18 21:30:00,25.0,0.66547619,27.371266182419333 +2019-03-18 21:45:00,25.0,0.665079365,27.36968731939365 +2019-03-18 22:00:00,25.0,0.667195767,27.368108151573296 +2019-03-18 22:15:00,25.0,0.647619048,27.366528679161394 +2019-03-18 22:30:00,25.0,0.606216931,27.364948902361103 +2019-03-18 22:45:00,25.0,0.569444444,27.36336882137561 +2019-03-18 23:00:00,25.0,0.562566138,27.36178843640815 +2019-03-18 23:15:00,25.0,0.554100529,27.360207747662 +2019-03-18 23:30:00,25.0,0.563756614,27.358626755340467 +2019-03-18 23:45:00,25.0,0.561507937,27.3570454596469 +2019-03-19 00:00:00,25.0,0.545502646,27.3554638607847 +2019-03-19 00:15:00,25.0,0.532142857,27.353881958957285 +2019-03-19 00:30:00,25.0,0.530026455,27.352299754368126 +2019-03-19 00:45:00,25.0,0.543518519,27.350717247220732 +2019-03-19 01:00:00,25.0,0.521693122,27.349134437718646 +2019-03-19 01:15:00,25.0,0.502380952,27.347551326065453 +2019-03-19 01:30:00,25.0,0.501455026,27.34596791246478 +2019-03-19 01:45:00,25.0,0.496693122,27.34438419712028 +2019-03-19 02:00:00,25.0,0.479365079,27.342800180235667 +2019-03-19 02:15:00,25.0,0.469708995,27.34121586201467 +2019-03-19 02:30:00,25.0,0.457804233,27.339631242661078 +2019-03-19 02:45:00,25.0,0.447222222,27.3380463223787 +2019-03-19 03:00:00,25.0,0.439021164,27.33646110137139 +2019-03-19 03:15:00,25.0,0.426719577,27.33487557984305 +2019-03-19 03:30:00,25.0,0.425925926,27.333289757997616 +2019-03-19 03:45:00,25.0,0.41468254,27.33170363603905 +2019-03-19 04:00:00,25.0,0.427248677,27.33011721417137 +2019-03-19 04:15:00,25.0,0.413359788,27.32853049259862 +2019-03-19 04:30:00,25.0,0.393915344,27.326943471524892 +2019-03-19 04:45:00,25.0,0.408730159,27.32535615115431 +2019-03-19 05:00:00,25.0,0.409126984,27.32376853169104 +2019-03-19 05:15:00,25.0,0.397883598,27.32218061333929 +2019-03-19 05:30:00,25.0,0.407539683,27.320592396303294 +2019-03-19 05:45:00,25.0,0.406481481,27.319003880787335 +2019-03-19 06:00:00,25.0,0.413756614,27.31741506699573 +2019-03-19 06:15:00,25.0,0.396560847,27.315825955132837 +2019-03-19 06:30:00,25.0,0.34973545,27.314236545403055 +2019-03-19 06:45:00,25.0,0.327777778,27.31264683801081 +2019-03-19 07:00:00,25.0,0.302380952,27.31105683316058 +2019-03-19 07:15:00,25.0,0.275,27.309466531056877 +2019-03-19 07:30:00,25.0,0.257804233,27.307875931904242 +2019-03-19 07:45:00,25.0,0.235185185,27.306285035907266 +2019-03-19 08:00:00,25.0,0.214153439,27.30469384327057 +2019-03-19 08:15:00,25.0,0.210185185,27.30310235419882 +2019-03-19 08:30:00,25.0,0.199867725,27.301510568896724 +2019-03-19 08:45:00,25.0,0.176058201,27.29991848756901 +2019-03-19 09:00:00,25.0,0.158465608,27.298326110420454 +2019-03-19 09:15:00,25.0,0.148544974,27.29673343765588 +2019-03-19 09:30:00,25.0,0.137301587,27.29514046948014 +2019-03-19 09:45:00,25.0,0.132142857,27.29354720609812 +2019-03-19 10:00:00,25.0,0.125793651,27.29195364771475 +2019-03-19 10:15:00,25.0,0.116005291,27.290359794535 +2019-03-19 10:30:00,25.0,0.097619048,27.288765646763878 +2019-03-19 10:45:00,25.0,0.085978836,27.28717120460642 +2019-03-19 11:00:00,25.0,0.075,27.28557646826771 +2019-03-19 11:15:00,25.0,0.069312169,27.283981437952868 +2019-03-19 11:30:00,25.0,0.060714286,27.282386113867048 +2019-03-19 11:45:00,25.0,0.055026455,27.280790496215445 +2019-03-19 12:00:00,25.0,0.04973545,27.279194585203292 +2019-03-19 12:15:00,25.0,0.048280423,27.27759838103586 +2019-03-19 12:30:00,25.0,0.053439153,27.276001883918454 +2019-03-19 12:45:00,25.0,0.056084656,27.27440509405642 +2019-03-19 13:00:00,25.0,0.057142857,27.27280801165514 +2019-03-19 13:15:00,25.0,0.056481481,27.271210636920035 +2019-03-19 13:30:00,25.0,0.061507937,27.269612970056563 +2019-03-19 13:45:00,25.0,0.060714286,27.268015011270222 +2019-03-19 14:00:00,25.0,0.06468254,27.26641676076654 +2019-03-19 14:15:00,25.0,0.074074074,27.264818218751092 +2019-03-19 14:30:00,25.0,0.071560847,27.263219385429483 +2019-03-19 14:45:00,25.0,0.068915344,27.261620261007362 +2019-03-19 15:00:00,25.0,0.067460317,27.260020845690413 +2019-03-19 15:15:00,25.0,0.063624339,27.25842113968435 +2019-03-19 15:30:00,25.0,0.056481481,27.256821143194937 +2019-03-19 15:45:00,25.0,0.055820106,27.255220856427968 +2019-03-19 16:00:00,25.0,0.063095238,27.253620279589274 +2019-03-19 16:15:00,25.0,0.080555556,27.252019412884724 +2019-03-19 16:30:00,25.0,0.090873016,27.250418256520227 +2019-03-19 16:45:00,25.0,0.092063492,27.24881681070173 +2019-03-19 17:00:00,25.0,0.095502646,27.24721507563521 +2019-03-19 17:15:00,25.0,0.099470899,27.24561305152669 +2019-03-19 17:30:00,25.0,0.09973545,27.24401073858222 +2019-03-19 17:45:00,25.0,0.101322751,27.2424081370079 +2019-03-19 18:00:00,25.0,0.103042328,27.240805247009853 +2019-03-19 18:15:00,25.0,0.09973545,27.239202068794256 +2019-03-19 18:30:00,25.0,0.096957672,27.237598602567306 +2019-03-19 18:45:00,25.0,0.097751323,27.235994848535245 +2019-03-19 19:00:00,25.0,0.102777778,27.234390806904358 +2019-03-19 19:15:00,25.0,0.106613757,27.232786477880953 +2019-03-19 19:30:00,25.0,0.109656085,27.231181861671384 +2019-03-19 19:45:00,25.0,0.113095238,27.229576958482042 +2019-03-19 20:00:00,25.0,0.10952381,27.227971768519357 +2019-03-19 20:15:00,25.0,0.115079365,27.226366291989788 +2019-03-19 20:30:00,25.0,0.125925926,27.224760529099832 +2019-03-19 20:45:00,25.0,0.144047619,27.22315448005603 +2019-03-19 21:00:00,25.0,0.162962963,27.221548145064958 +2019-03-19 21:15:00,25.0,0.183333333,27.219941524333223 +2019-03-19 21:30:00,25.0,0.19537037,27.21833461806747 +2019-03-19 21:45:00,25.0,0.206746032,27.216727426474392 +2019-03-19 22:00:00,25.0,0.216798942,27.215119949760698 +2019-03-19 22:15:00,25.0,0.23015873,27.213512188133155 +2019-03-19 22:30:00,25.0,0.242857143,27.21190414179855 +2019-03-19 22:45:00,25.0,0.266137566,27.210295810963718 +2019-03-19 23:00:00,25.0,0.287566138,27.208687195835527 +2019-03-19 23:15:00,25.0,0.3,27.207078296620875 +2019-03-19 23:30:00,25.0,0.317328042,27.20546911352671 +2019-03-19 23:45:00,25.0,0.333994709,27.20385964676 +2019-03-20 00:00:00,25.0,0.344179894,27.20224989652777 +2019-03-20 00:15:00,25.0,0.353174603,27.20063986303706 +2019-03-20 00:30:00,25.0,0.357407407,27.19902954649496 +2019-03-20 00:45:00,25.0,0.364417989,27.197418947108588 +2019-03-20 01:00:00,25.0,0.374074074,27.19580806508511 +2019-03-20 01:15:00,25.0,0.389550265,27.194196900631724 +2019-03-20 01:30:00,25.0,0.407539683,27.192585453955648 +2019-03-20 01:45:00,25.0,0.423412698,27.19097372526416 +2019-03-20 02:00:00,25.0,0.452513228,27.189361714764566 +2019-03-20 02:15:00,25.0,0.474470899,27.187749422664197 +2019-03-20 02:30:00,25.0,0.494179894,27.18613684917044 +2019-03-20 02:45:00,25.0,0.503306878,27.184523994490704 +2019-03-20 03:00:00,25.0,0.510449735,27.182910858832436 +2019-03-20 03:15:00,25.0,0.526984127,27.181297442403125 +2019-03-20 03:30:00,25.0,0.53505291,27.179683745410287 +2019-03-20 03:45:00,25.0,0.539417989,27.178069768061484 +2019-03-20 04:00:00,25.0,0.533465608,27.176455510564306 +2019-03-20 04:15:00,25.0,0.532539683,27.174840973126386 +2019-03-20 04:30:00,25.0,0.533862434,27.173226155955394 +2019-03-20 04:45:00,25.0,0.551455026,27.17161105925902 +2019-03-20 05:00:00,25.0,0.565740741,27.16999568324501 +2019-03-20 05:15:00,25.0,0.581084656,27.16838002812113 +2019-03-20 05:30:00,25.0,0.601851852,27.1667640940952 +2019-03-20 05:45:00,25.0,0.612037037,27.165147881375056 +2019-03-20 06:00:00,25.0,0.605026455,27.16353139016858 +2019-03-20 06:15:00,25.0,0.59510582,27.161914620683696 +2019-03-20 06:30:00,25.0,0.591402116,27.16029757312835 +2019-03-20 06:45:00,25.0,0.580687831,27.15868024771053 +2019-03-20 07:00:00,25.0,0.570767196,27.157062644638263 +2019-03-20 07:15:00,25.0,0.561375661,27.155444764119608 +2019-03-20 07:30:00,25.0,0.550132275,27.153826606362664 +2019-03-20 07:45:00,25.0,0.540740741,27.152208171575555 +2019-03-20 08:00:00,25.0,0.537433862,27.150589459966454 +2019-03-20 08:15:00,25.0,0.539021164,27.148970471743556 +2019-03-20 08:30:00,25.0,0.546957672,27.147351207115108 +2019-03-20 08:45:00,25.0,0.546164021,27.14573166628938 +2019-03-20 09:00:00,25.0,0.531216931,27.14411184947468 +2019-03-20 09:15:00,25.0,0.520238095,27.142491756879352 +2019-03-20 09:30:00,25.0,0.496296296,27.14087138871178 +2019-03-20 09:45:00,25.0,0.469444444,27.139250745180377 +2019-03-20 10:00:00,25.0,0.438227513,27.13762982649359 +2019-03-20 10:15:00,25.0,0.419312169,27.136008632859912 +2019-03-20 10:30:00,25.0,0.420767196,27.134387164487862 +2019-03-20 10:45:00,25.0,0.416798942,27.132765421585994 +2019-03-20 11:00:00,25.0,0.409126984,27.131143404362906 +2019-03-20 11:15:00,25.0,0.405687831,27.12952111302722 +2019-03-20 11:30:00,25.0,0.394179894,27.127898547787606 +2019-03-20 11:45:00,25.0,0.355555556,27.126275708852752 +2019-03-20 12:00:00,25.0,0.338227513,27.1246525964314 +2019-03-20 12:15:00,25.0,0.331216931,27.123029210732316 +2019-03-20 12:30:00,25.0,0.332010582,27.1214055519643 +2019-03-20 12:45:00,25.0,0.332010582,27.119781620336198 +2019-03-20 13:00:00,25.0,0.32526455,27.118157416056878 +2019-03-20 13:15:00,25.0,0.317592593,27.11653293933525 +2019-03-20 13:30:00,25.0,0.316269841,27.11490819038026 +2019-03-20 13:45:00,25.0,0.310582011,27.11328316940088 +2019-03-20 14:00:00,25.0,0.300132275,27.111657876606134 +2019-03-20 14:15:00,25.0,0.295634921,27.110032312205067 +2019-03-20 14:30:00,25.0,0.286772487,27.108406476406763 +2019-03-20 14:45:00,25.0,0.286507937,27.106780369420335 +2019-03-20 15:00:00,25.0,0.28478836,27.105153991454948 +2019-03-20 15:15:00,25.0,0.274206349,27.10352734271978 +2019-03-20 15:30:00,25.0,0.267592593,27.10190042342406 +2019-03-20 15:45:00,25.0,0.266931217,27.100273233777042 +2019-03-20 16:00:00,25.0,0.259126984,27.098645773988025 +2019-03-20 16:15:00,25.0,0.259656085,27.09701804426633 +2019-03-20 16:30:00,25.0,0.260582011,27.095390044821322 +2019-03-20 16:45:00,25.0,0.272089947,27.0937617758624 +2019-03-20 17:00:00,25.0,0.274338624,27.092133237598997 +2019-03-20 17:15:00,25.0,0.271031746,27.09050443024057 +2019-03-20 17:30:00,25.0,0.272619048,27.088875353996634 +2019-03-20 17:45:00,25.0,0.273412698,27.087246009076715 +2019-03-20 18:00:00,25.0,0.284391534,27.085616395690383 +2019-03-20 18:15:00,25.0,0.28968254,27.083986514047247 +2019-03-20 18:30:00,25.0,0.292592593,27.08235636435694 +2019-03-20 18:45:00,25.0,0.291005291,27.080725946829144 +2019-03-20 19:00:00,25.0,0.291269841,27.07909526167356 +2019-03-20 19:15:00,25.0,0.284259259,27.077464309099938 +2019-03-20 19:30:00,25.0,0.304232804,27.075833089318046 +2019-03-20 19:45:00,25.0,0.329232804,27.0742016025377 +2019-03-20 20:00:00,25.0,0.34537037,27.072569848968744 +2019-03-20 20:15:00,25.0,0.357142857,27.07093782882106 +2019-03-20 20:30:00,25.0,0.368783069,27.069305542304562 +2019-03-20 20:45:00,25.0,0.384920635,27.067672989629195 +2019-03-20 21:00:00,25.0,0.388624339,27.06604017100495 +2019-03-20 21:15:00,25.0,0.392857143,27.064407086641832 +2019-03-20 21:30:00,25.0,0.384656085,27.0627737367499 +2019-03-20 21:45:00,25.0,0.389021164,27.06114012153924 +2019-03-20 22:00:00,25.0,0.403835979,27.059506241219964 +2019-03-20 22:15:00,25.0,0.417592593,27.05787209600223 +2019-03-20 22:30:00,25.0,0.424470899,27.05623768609623 +2019-03-20 22:45:00,25.0,0.425132275,27.054603011712185 +2019-03-20 23:00:00,25.0,0.440608466,27.05296807306034 +2019-03-20 23:15:00,25.0,0.44021164,27.051332870350997 +2019-03-20 23:30:00,25.0,0.435978836,27.049697403794468 +2019-03-20 23:45:00,25.0,0.451322751,27.048061673601122 +2019-03-21 00:00:00,25.0,0.469047619,27.046425679981343 +2019-03-21 00:15:00,25.0,0.489814815,27.04478942314556 +2019-03-21 00:30:00,25.0,0.508862434,27.04315290330423 +2019-03-21 00:45:00,25.0,0.51547619,27.041516120667843 +2019-03-21 01:00:00,25.0,0.510714286,27.039879075446933 +2019-03-21 01:15:00,25.0,0.520767196,27.038241767852057 +2019-03-21 01:30:00,25.0,0.549470899,27.03660419809381 +2019-03-21 01:45:00,25.0,0.572486772,27.034966366382815 +2019-03-21 02:00:00,25.0,0.57962963,27.03332827292974 +2019-03-21 02:15:00,25.0,0.584391534,27.03168991794528 +2019-03-21 02:30:00,25.0,0.574338624,27.03005130164016 +2019-03-21 02:45:00,25.0,0.571164021,27.028412424225145 +2019-03-21 03:00:00,25.0,0.586507937,27.02677328591103 +2019-03-21 03:15:00,25.0,0.60489418,27.025133886908648 +2019-03-21 03:30:00,25.0,0.593518519,27.02349422742886 +2019-03-21 03:45:00,25.0,0.586111111,27.021854307682563 +2019-03-21 04:00:00,25.0,0.597354497,27.020214127880685 +2019-03-21 04:15:00,25.0,0.607936508,27.01857368823419 +2019-03-21 04:30:00,25.0,0.607804233,27.016932988954082 +2019-03-21 04:45:00,25.0,0.604761905,27.015292030251384 +2019-03-21 05:00:00,25.0,0.605555556,27.013650812337165 +2019-03-21 05:15:00,25.0,0.61005291,27.01200933542252 +2019-03-21 05:30:00,25.0,0.622486772,27.010367599718577 +2019-03-21 05:45:00,25.0,0.633201058,27.0087256054365 +2019-03-21 06:00:00,25.0,0.638095238,27.00708335278749 +2019-03-21 06:15:00,25.0,0.627513228,27.005440841982775 +2019-03-21 06:30:00,25.0,0.621825397,27.00379807323362 +2019-03-21 06:45:00,25.0,0.61468254,27.002155046751323 +2019-03-21 07:00:00,25.0,0.608068783,27.00051176274721 +2019-03-21 07:15:00,25.0,0.603042328,26.998868221432645 +2019-03-21 07:30:00,25.0,0.603042328,26.997224423019027 +2019-03-21 07:45:00,25.0,0.612830688,26.99558036771778 +2019-03-21 08:00:00,25.0,0.623677249,26.99393605574037 +2019-03-21 08:15:00,25.0,0.635449735,26.99229148729829 +2019-03-21 08:30:00,25.0,0.640873016,26.99064666260307 +2019-03-21 08:45:00,25.0,0.652513228,26.989001581866273 +2019-03-21 09:00:00,25.0,0.665873016,26.98735624529949 +2019-03-21 09:15:00,25.0,0.667989418,26.985710653114346 +2019-03-21 09:30:00,25.0,0.667592593,26.984064805522507 +2019-03-21 09:45:00,25.0,0.668915344,26.98241870273566 +2019-03-21 10:00:00,25.0,0.66521164,26.980772344965533 +2019-03-21 10:15:00,25.0,0.668650794,26.97912573242389 +2019-03-21 10:30:00,25.0,0.657936508,26.97747886532251 +2019-03-21 10:45:00,25.0,0.659126984,26.975831743873226 +2019-03-21 11:00:00,25.0,0.655952381,26.97418436828789 +2019-03-21 11:15:00,25.0,0.645767196,26.97253673877839 +2019-03-21 11:30:00,25.0,0.64510582,26.970888855556655 +2019-03-21 11:45:00,25.0,0.649603175,26.969240718834637 +2019-03-21 12:00:00,25.0,0.640343915,26.96759232882432 +2019-03-21 12:15:00,25.0,0.638888889,26.965943685737727 +2019-03-21 12:30:00,25.0,0.625529101,26.964294789786905 +2019-03-21 12:45:00,25.0,0.610449735,26.962645641183947 +2019-03-21 13:00:00,25.0,0.604100529,26.96099624014096 +2019-03-21 13:15:00,25.0,0.611375661,26.959346586870105 +2019-03-21 13:30:00,25.0,0.623015873,26.957696681583556 +2019-03-21 13:45:00,25.0,0.626322751,26.956046524493534 +2019-03-21 14:00:00,25.0,0.612169312,26.95439611581228 +2019-03-21 14:15:00,25.0,0.586375661,26.952745455752073 +2019-03-21 14:30:00,25.0,0.557804233,26.95109454452523 +2019-03-21 14:45:00,25.0,0.532275132,26.949443382344093 +2019-03-21 15:00:00,25.0,0.508862434,26.947791969421036 +2019-03-21 15:15:00,25.0,0.487037037,26.946140305968473 +2019-03-21 15:30:00,25.0,0.459656085,26.944488392198842 +2019-03-21 15:45:00,25.0,0.442592593,26.942836228324612 +2019-03-21 16:00:00,25.0,0.428571429,26.94118381455829 +2019-03-21 16:15:00,25.0,0.419047619,26.939531151112416 +2019-03-21 16:30:00,25.0,0.414153439,26.93787823819956 +2019-03-21 16:45:00,25.0,0.409920635,26.93622507603232 +2019-03-21 17:00:00,25.0,0.397486772,26.93457166482333 +2019-03-21 17:15:00,25.0,0.384259259,26.93291800478526 +2019-03-21 17:30:00,25.0,0.379100529,26.931264096130803 +2019-03-21 17:45:00,25.0,0.363227513,26.929609939072687 +2019-03-21 18:00:00,25.0,0.340873016,26.927955533823678 +2019-03-21 18:15:00,25.0,0.313227513,26.926300880596568 +2019-03-21 18:30:00,25.0,0.294973545,26.92464597960418 +2019-03-21 18:45:00,25.0,0.280026455,26.922990831059376 +2019-03-21 19:00:00,25.0,0.266402116,26.921335435175042 +2019-03-21 19:15:00,25.0,0.252645503,26.9196797921641 +2019-03-21 19:30:00,25.0,0.237962963,26.918023902239497 +2019-03-21 19:45:00,25.0,0.222751323,26.916367765614226 +2019-03-21 20:00:00,25.0,0.206216931,26.9147113825013 +2019-03-21 20:15:00,25.0,0.20489418,26.913054753113766 +2019-03-21 20:30:00,25.0,0.199470899,26.9113978776647 +2019-03-21 20:45:00,25.0,0.190873016,26.90974075636722 +2019-03-21 21:00:00,25.0,0.184126984,26.908083389434463 +2019-03-21 21:15:00,25.0,0.172751323,26.90642577707961 +2019-03-21 21:30:00,25.0,0.162169312,26.90476791951586 +2019-03-21 21:45:00,25.0,0.160582011,26.90310981695645 +2019-03-21 22:00:00,25.0,0.158730159,26.901451469614656 +2019-03-21 22:15:00,25.0,0.157539683,26.899792877703778 +2019-03-21 22:30:00,25.0,0.15462963,26.89813404143714 +2019-03-21 22:45:00,25.0,0.150529101,26.896474961028108 +2019-03-21 23:00:00,25.0,0.148544974,26.894815636690083 +2019-03-21 23:15:00,25.0,0.151190476,26.893156068636486 +2019-03-21 23:30:00,25.0,0.153439153,26.891496257080778 +2019-03-21 23:45:00,25.0,0.151984127,26.88983620223644 +2019-03-22 00:00:00,25.0,0.14973545,26.888175904317002 +2019-03-22 00:15:00,25.0,0.14510582,26.886515363536006 +2019-03-22 00:30:00,25.0,0.14021164,26.884854580107042 +2019-03-22 00:45:00,25.0,0.139153439,26.88319355424372 +2019-03-22 01:00:00,25.0,0.143253968,26.88153228615969 +2019-03-22 01:15:00,25.0,0.146825397,26.87987077606862 +2019-03-22 01:30:00,25.0,0.141534392,26.878209024184223 +2019-03-22 01:45:00,25.0,0.139417989,26.876547030720236 +2019-03-22 02:00:00,25.0,0.131878307,26.874884795890427 +2019-03-22 02:15:00,25.0,0.12526455,26.8732223199086 +2019-03-22 02:30:00,25.0,0.11005291,26.871559602988583 +2019-03-22 02:45:00,25.0,0.088624339,26.869896645344237 +2019-03-22 03:00:00,25.0,0.078703704,26.868233447189464 +2019-03-22 03:15:00,25.0,0.072354497,26.86657000873818 +2019-03-22 03:30:00,25.0,0.061904762,26.86490633020434 +2019-03-22 03:45:00,25.0,0.05515873,26.863242411801938 +2019-03-22 04:00:00,25.0,0.051984127,26.861578253744984 +2019-03-22 04:15:00,25.0,0.052513228,26.859913856247527 +2019-03-22 04:30:00,25.0,0.059391534,26.85824921952365 +2019-03-22 04:45:00,25.0,0.059656085,26.856584343787457 +2019-03-22 05:00:00,25.0,0.06005291,26.85491922925309 +2019-03-22 05:15:00,25.0,0.063227513,26.85325387613472 +2019-03-22 05:30:00,25.0,0.068650794,26.85158828464655 +2019-03-22 05:45:00,25.0,0.077777778,26.849922455002808 +2019-03-22 06:00:00,25.0,0.08531746,26.848256387417763 +2019-03-22 06:15:00,25.0,0.086772487,26.846590082105706 +2019-03-22 06:30:00,25.0,0.080291005,26.844923539280956 +2019-03-22 06:45:00,25.0,0.069708995,26.843256759157875 +2019-03-22 07:00:00,25.0,0.060714286,26.841589741950845 +2019-03-22 07:15:00,25.0,0.064814815,26.83992248787428 +2019-03-22 07:30:00,25.0,0.066798942,26.838254997142627 +2019-03-22 07:45:00,25.0,0.067592593,26.836587269970366 +2019-03-22 08:00:00,25.0,0.073941799,26.834919306572004 +2019-03-22 08:15:00,25.0,0.086904762,26.83325110716207 +2019-03-22 08:30:00,25.0,0.107804233,26.83158267195514 +2019-03-22 08:45:00,25.0,0.11984127,26.829914001165807 +2019-03-22 09:00:00,25.0,0.117857143,26.828245095008704 +2019-03-22 09:15:00,25.0,0.121957672,26.826575953698484 +2019-03-22 09:30:00,25.0,0.145767196,26.82490657744984 +2019-03-22 09:45:00,25.0,0.168386243,26.82323696647749 +2019-03-22 10:00:00,25.0,0.174074074,26.821567120996185 +2019-03-22 10:15:00,25.0,0.181878307,26.819897041220703 +2019-03-22 10:30:00,25.0,0.207275132,26.81822672736585 +2019-03-22 10:45:00,25.0,0.220502646,26.81655617964647 +2019-03-22 11:00:00,25.0,0.231216931,26.81488539827743 +2019-03-22 11:15:00,25.0,0.238492063,26.813214383473632 +2019-03-22 11:30:00,25.0,0.228571429,26.811543135450005 +2019-03-22 11:45:00,25.0,0.229232804,26.80987165442151 +2019-03-22 12:00:00,25.0,0.216005291,26.808199940603135 +2019-03-22 12:15:00,25.0,0.196428571,26.806527994209898 +2019-03-22 12:30:00,25.0,0.186375661,26.80485581545685 +2019-03-22 12:45:00,25.0,0.183465608,26.80318340455908 +2019-03-22 13:00:00,25.0,0.173809524,26.80151076173168 +2019-03-22 13:15:00,25.0,0.160846561,26.7998378871898 +2019-03-22 13:30:00,25.0,0.158201058,26.798164781148607 +2019-03-22 13:45:00,25.0,0.153571429,26.7964914438233 +2019-03-22 14:00:00,25.0,0.14457672,26.794817875429104 +2019-03-22 14:15:00,25.0,0.138888889,26.79314407618128 +2019-03-22 14:30:00,25.0,0.133201058,26.791470046295125 +2019-03-22 14:45:00,25.0,0.132936508,26.78979578598594 +2019-03-22 15:00:00,25.0,0.125132275,26.788121295469082 +2019-03-22 15:15:00,25.0,0.11984127,26.786446574959925 +2019-03-22 15:30:00,25.0,0.124074074,26.78477162467388 +2019-03-22 15:45:00,25.0,0.128042328,26.783096444826374 +2019-03-22 16:00:00,25.0,0.124867725,26.78142103563288 +2019-03-22 16:15:00,25.0,0.11521164,26.779745397308893 +2019-03-22 16:30:00,25.0,0.107671958,26.778069530069935 +2019-03-22 16:45:00,25.0,0.106746032,26.77639343413156 +2019-03-22 17:00:00,25.0,0.110714286,26.77471710970935 +2019-03-22 17:15:00,25.0,0.11494709,26.77304055701892 +2019-03-22 17:30:00,25.0,0.117857143,26.771363776275912 +2019-03-22 17:45:00,25.0,0.115740741,26.769686767695998 +2019-03-22 18:00:00,25.0,0.118386243,26.768009531494876 +2019-03-22 18:15:00,25.0,0.12962963,26.76633206788828 +2019-03-22 18:30:00,25.0,0.146560847,26.76465437709196 +2019-03-22 18:45:00,25.0,0.150793651,26.762976459321717 +2019-03-22 19:00:00,25.0,0.147486772,26.76129831479336 +2019-03-22 19:15:00,25.0,0.155291005,26.75961994372274 +2019-03-22 19:30:00,25.0,0.16521164,26.757941346325737 +2019-03-22 19:45:00,25.0,0.173280423,26.756262522818243 +2019-03-22 20:00:00,25.0,0.182010582,26.754583473416204 +2019-03-22 20:15:00,25.0,0.20026455,26.752904198335578 +2019-03-22 20:30:00,25.0,0.22473545,26.75122469779236 +2019-03-22 20:45:00,25.0,0.241534392,26.749544972002568 +2019-03-22 21:00:00,25.0,0.266798942,26.747865021182253 +2019-03-22 21:15:00,25.0,0.283730159,26.746184845547496 +2019-03-22 21:30:00,25.0,0.298677249,26.744504445314405 +2019-03-22 21:45:00,25.0,0.312169312,26.74282382069912 +2019-03-22 22:00:00,25.0,0.334391534,26.741142971917796 +2019-03-22 22:15:00,25.0,0.35952381,26.739461899186637 +2019-03-22 22:30:00,25.0,0.357936508,26.737780602721863 +2019-03-22 22:45:00,25.0,0.366137566,26.73609908273973 +2019-03-22 23:00:00,25.0,0.387037037,26.734417339456517 +2019-03-22 23:15:00,25.0,0.377513228,26.73273537308853 +2019-03-22 23:30:00,25.0,0.364814815,26.73105318385211 +2019-03-22 23:45:00,25.0,0.336375661,26.729370771963627 +2019-03-23 00:00:00,25.0,0.317989418,26.727688137639475 +2019-03-23 00:15:00,25.0,0.315873016,26.726005281096075 +2019-03-23 00:30:00,25.0,0.321031746,26.724322202549885 +2019-03-23 00:45:00,25.0,0.323280423,26.722638902217383 +2019-03-23 01:00:00,25.0,0.327910053,26.72095538031508 +2019-03-23 01:15:00,25.0,0.32526455,26.71927163705951 +2019-03-23 01:30:00,25.0,0.332936508,26.71758767266725 +2019-03-23 01:45:00,25.0,0.347089947,26.715903487354886 +2019-03-23 02:00:00,25.0,0.346560847,26.714219081339046 +2019-03-23 02:15:00,25.0,0.34484127,26.712534454836387 +2019-03-23 02:30:00,25.0,0.348544974,26.71084960806358 +2019-03-23 02:45:00,25.0,0.350396825,26.709164541237335 +2019-03-23 03:00:00,25.0,0.343386243,26.707479254574395 +2019-03-23 03:15:00,25.0,0.33994709,26.705793748291523 +2019-03-23 03:30:00,25.0,0.326984127,26.704108022605514 +2019-03-23 03:45:00,25.0,0.329100529,26.70242207773319 +2019-03-23 04:00:00,25.0,0.334126984,26.700735913891396 +2019-03-23 04:15:00,25.0,0.346428571,26.699049531297014 +2019-03-23 04:30:00,25.0,0.341534392,26.697362930166953 +2019-03-23 04:45:00,25.0,0.334259259,26.695676110718143 +2019-03-23 05:00:00,25.0,0.332010582,26.693989073167547 +2019-03-23 05:15:00,25.0,0.300132275,26.692301817732158 +2019-03-23 05:30:00,25.0,0.281084656,26.690614344628997 +2019-03-23 05:45:00,25.0,0.245899471,26.688926654075104 +2019-03-23 06:00:00,25.0,0.233465608,26.68723874628756 +2019-03-23 06:15:00,25.0,0.21494709,26.68555062148346 +2019-03-23 06:30:00,25.0,0.176587302,26.683862279879946 +2019-03-23 06:45:00,25.0,0.149470899,26.682173721694166 +2019-03-23 07:00:00,25.0,0.147619048,26.680484947143313 +2019-03-23 07:15:00,25.0,0.17010582,26.678795956444596 +2019-03-23 07:30:00,25.0,0.175925926,26.677106749815255 +2019-03-23 07:45:00,25.0,0.192460317,26.67541732747257 +2019-03-23 08:00:00,25.0,0.186375661,26.67372768963383 +2019-03-23 08:15:00,25.0,0.190608466,26.67203783651636 +2019-03-23 08:30:00,25.0,0.199603175,26.670347768337514 +2019-03-23 08:45:00,25.0,0.194047619,26.66865748531468 +2019-03-23 09:00:00,25.0,0.200529101,26.666966987665255 +2019-03-23 09:15:00,25.0,0.202777778,26.66527627560668 +2019-03-23 09:30:00,25.0,0.211772487,26.663585349356417 +2019-03-23 09:45:00,25.0,0.222222222,26.661894209131958 +2019-03-23 10:00:00,25.0,0.231613757,26.66020285515082 +2019-03-23 10:15:00,25.0,0.237698413,26.658511287630553 +2019-03-23 10:30:00,25.0,0.239550265,26.656819506788725 +2019-03-23 10:45:00,25.0,0.239417989,26.655127512842938 +2019-03-23 11:00:00,25.0,0.259656085,26.65343530601082 +2019-03-23 11:15:00,25.0,0.264550265,26.65174288651003 +2019-03-23 11:30:00,25.0,0.27010582,26.65005025455825 +2019-03-23 11:45:00,25.0,0.280687831,26.648357410373183 +2019-03-23 12:00:00,25.0,0.304365079,26.64666435417258 +2019-03-23 12:15:00,25.0,0.30542328,26.64497108617419 +2019-03-23 12:30:00,25.0,0.324603175,26.643277606595817 +2019-03-23 12:45:00,25.0,0.327248677,26.641583915655275 +2019-03-23 13:00:00,25.0,0.315343915,26.63989001357041 +2019-03-23 13:15:00,25.0,0.304761905,26.638195900559104 +2019-03-23 13:30:00,25.0,0.298148148,26.636501576839244 +2019-03-23 13:45:00,25.0,0.288359788,26.634807042628772 +2019-03-23 14:00:00,25.0,0.272883598,26.63311229814563 +2019-03-23 14:15:00,25.0,0.275132275,26.631417343607808 +2019-03-23 14:30:00,25.0,0.275661376,26.629722179233312 +2019-03-23 14:45:00,25.0,0.286904762,26.62802680524018 +2019-03-23 15:00:00,25.0,0.296825397,26.626331221846474 +2019-03-23 15:15:00,25.0,0.295767196,26.62463542927028 +2019-03-23 15:30:00,25.0,0.300925926,26.622939427729722 +2019-03-23 15:45:00,25.0,0.300396825,26.62124321744294 +2019-03-23 16:00:00,25.0,0.298677249,26.619546798628104 +2019-03-23 16:15:00,25.0,0.27989418,26.61785017150341 +2019-03-23 16:30:00,25.0,0.271428571,26.616153336287084 +2019-03-23 16:45:00,25.0,0.26547619,26.614456293197378 +2019-03-23 17:00:00,25.0,0.259656085,26.61275904245257 +2019-03-23 17:15:00,25.0,0.248677249,26.61106158427096 +2019-03-23 17:30:00,25.0,0.242989418,26.609363918870883 +2019-03-23 17:45:00,25.0,0.238756614,26.607666046470694 +2019-03-23 18:00:00,25.0,0.228042328,26.605967967288777 +2019-03-23 18:15:00,25.0,0.223148148,26.60426968154355 +2019-03-23 18:30:00,25.0,0.214417989,26.60257118945344 +2019-03-23 18:45:00,25.0,0.191798942,26.600872491236917 +2019-03-23 19:00:00,25.0,0.165343915,26.59917358711247 +2019-03-23 19:15:00,25.0,0.154497354,26.59747447729862 +2019-03-23 19:30:00,25.0,0.150529101,26.595775162013904 +2019-03-23 19:45:00,25.0,0.15026455,26.59407564147689 +2019-03-23 20:00:00,25.0,0.150793651,26.592375915906185 +2019-03-23 20:15:00,25.0,0.150396825,26.590675985520406 +2019-03-23 20:30:00,25.0,0.144444444,26.5889758505382 +2019-03-23 20:45:00,25.0,0.136904762,26.587275511178245 +2019-03-23 21:00:00,25.0,0.134920635,26.585574967659237 +2019-03-23 21:15:00,25.0,0.132142857,26.583874220199913 +2019-03-23 21:30:00,25.0,0.123941799,26.58217326901902 +2019-03-23 21:45:00,25.0,0.11521164,26.58047211433534 +2019-03-23 22:00:00,25.0,0.121693122,26.578770756367682 +2019-03-23 22:15:00,25.0,0.123677249,26.57706919533488 +2019-03-23 22:30:00,25.0,0.112962963,26.57536743145578 +2019-03-23 22:45:00,25.0,0.111243386,26.573665464949283 +2019-03-23 23:00:00,25.0,0.118650794,26.57196329603429 +2019-03-23 23:15:00,25.0,0.118650794,26.570260924929745 +2019-03-23 23:30:00,25.0,0.113624339,26.568558351854602 +2019-03-23 23:45:00,25.0,0.111507937,26.56685557702786 +2019-03-24 00:00:00,25.0,0.107804233,26.565152600668526 +2019-03-24 00:15:00,25.0,0.096428571,26.563449422995642 +2019-03-24 00:30:00,25.0,0.090608466,26.561746044228276 +2019-03-24 00:45:00,25.0,0.087037037,26.56004246458552 +2019-03-24 01:00:00,25.0,0.084656085,26.558338684286493 +2019-03-24 01:15:00,25.0,0.085978836,26.556634703550344 +2019-03-24 01:30:00,25.0,0.073677249,26.554930522596234 +2019-03-24 01:45:00,25.0,0.06468254,26.553226141643364 +2019-03-24 02:00:00,25.0,0.063492063,26.551521560910953 +2019-03-24 02:15:00,25.0,0.063756614,26.549816780618247 +2019-03-24 02:30:00,25.0,0.063756614,26.548111800984522 +2019-03-24 02:45:00,25.0,0.069312169,26.546406622229078 +2019-03-24 03:00:00,25.0,0.069973545,26.544701244571236 +2019-03-24 03:15:00,25.0,0.07010582,26.542995668230347 +2019-03-24 03:30:00,25.0,0.072883598,26.541289893425784 +2019-03-24 03:45:00,25.0,0.073677249,26.539583920376945 +2019-03-24 04:00:00,25.0,0.06984127,26.537877749303263 +2019-03-24 04:15:00,25.0,0.064814815,26.53617138042419 +2019-03-24 04:30:00,25.0,0.067063492,26.534464813959197 +2019-03-24 04:45:00,25.0,0.06468254,26.53275805012779 +2019-03-24 05:00:00,25.0,0.062566138,26.531051089149496 +2019-03-24 05:15:00,25.0,0.060978836,26.52934393124387 +2019-03-24 05:30:00,25.0,0.056349206,26.52763657663049 +2019-03-24 05:45:00,25.0,0.049603175,26.525929025528953 +2019-03-24 06:00:00,25.0,0.04973545,26.5242212781589 +2019-03-24 06:15:00,25.0,0.053968254,26.52251333473998 +2019-03-24 06:30:00,25.0,0.057275132,26.52080519549187 +2019-03-24 06:45:00,25.0,0.052910053,26.519096860634278 +2019-03-24 07:00:00,25.0,0.054365079,26.517388330386932 +2019-03-24 07:15:00,25.0,0.05462963,26.51567960496959 +2019-03-24 07:30:00,25.0,0.060846561,26.51397068460203 +2019-03-24 07:45:00,25.0,0.069973545,26.51226156950406 +2019-03-24 08:00:00,25.0,0.070502646,26.510552259895505 +2019-03-24 08:15:00,25.0,0.063756614,26.508842755996223 +2019-03-24 08:30:00,25.0,0.062301587,26.5071330580261 +2019-03-24 08:45:00,25.0,0.068783069,26.50542316620503 +2019-03-24 09:00:00,25.0,0.078968254,26.503713080752952 +2019-03-24 09:15:00,25.0,0.083201058,26.50200280188982 +2019-03-24 09:30:00,25.0,0.093915344,26.50029232983561 +2019-03-24 09:45:00,25.0,0.107804233,26.49858166481033 +2019-03-24 10:00:00,25.0,0.108333333,26.49687080703401 +2019-03-24 10:15:00,25.0,0.114285714,26.495159756726704 +2019-03-24 10:30:00,25.0,0.125529101,26.49344851410849 +2019-03-24 10:45:00,25.0,0.136375661,26.49173707939947 +2019-03-24 11:00:00,25.0,0.151058201,26.49002545281978 +2019-03-24 11:15:00,25.0,0.168253968,26.48831363458957 +2019-03-24 11:30:00,25.0,0.183465608,26.486601624929012 +2019-03-24 11:45:00,25.0,0.185449735,26.484889424058316 +2019-03-24 12:00:00,25.0,0.194047619,26.48317703219771 +2019-03-24 12:15:00,25.0,0.20489418,26.481464449567437 +2019-03-24 12:30:00,25.0,0.21547619,26.47975167638778 +2019-03-24 12:45:00,25.0,0.231216931,26.47803871287904 +2019-03-24 13:00:00,25.0,0.23994709,26.476325559261543 +2019-03-24 13:15:00,25.0,0.247222222,26.474612215755634 +2019-03-24 13:30:00,25.0,0.262830688,26.472898682581693 +2019-03-24 13:45:00,25.0,0.280026455,26.471184959960112 +2019-03-24 14:00:00,25.0,0.29047619,26.46947104811132 +2019-03-24 14:15:00,25.0,0.304100529,26.46775694725576 +2019-03-24 14:30:00,25.0,0.324206349,26.46604265761391 +2019-03-24 14:45:00,25.0,0.335185185,26.46432817940626 +2019-03-24 15:00:00,25.0,0.34537037,26.46261351285333 +2019-03-24 15:15:00,25.0,0.365079365,26.460898658175665 +2019-03-24 15:30:00,25.0,0.377116402,26.459183615593837 +2019-03-24 15:45:00,25.0,0.391534392,26.457468385328436 +2019-03-24 16:00:00,25.0,0.413095238,26.45575296760008 +2019-03-24 16:15:00,25.0,0.439814815,26.45403736262941 +2019-03-24 16:30:00,25.0,0.464550265,26.45232157063709 +2019-03-24 16:45:00,25.0,0.477645503,26.450605591843804 +2019-03-24 17:00:00,25.0,0.495634921,26.448889426470274 +2019-03-24 17:15:00,25.0,0.529232804,26.447173074737236 +2019-03-24 17:30:00,25.0,0.541798942,26.445456536865446 +2019-03-24 17:45:00,25.0,0.552248677,26.443739813075695 +2019-03-24 18:00:00,25.0,0.562433862,26.44202290358879 +2019-03-24 18:15:00,25.0,0.568386243,26.44030580862556 +2019-03-24 18:30:00,25.0,0.580291005,26.43858852840686 +2019-03-24 18:45:00,25.0,0.583730159,26.436871063153582 +2019-03-24 19:00:00,25.0,0.599338624,26.43515341308662 +2019-03-24 19:15:00,25.0,0.627910053,26.43343557842691 +2019-03-24 19:30:00,25.0,0.635449735,26.431717559395395 +2019-03-24 19:45:00,25.0,0.650793651,26.42999935621306 +2019-03-24 20:00:00,25.0,0.671825397,26.428280969100893 +2019-03-24 20:15:00,25.0,0.689153439,26.426562398279927 +2019-03-24 20:30:00,25.0,0.7,26.424843643971204 +2019-03-24 20:45:00,25.0,0.715740741,26.423124706395793 +2019-03-24 21:00:00,25.0,0.742592593,26.421405585774792 +2019-03-24 21:15:00,25.0,0.76521164,26.41968628232932 +2019-03-24 21:30:00,25.0,0.771428571,26.417966796280506 +2019-03-24 21:45:00,25.0,0.787037037,26.416247127849527 +2019-03-24 22:00:00,25.0,0.788492063,26.414527277257562 +2019-03-24 22:15:00,25.0,0.787037037,26.41280724472583 +2019-03-24 22:30:00,25.0,0.785185185,26.41108703047556 +2019-03-24 22:45:00,25.0,0.774338624,26.40936663472801 +2019-03-24 23:00:00,25.0,0.779365079,26.407646057704465 +2019-03-24 23:15:00,25.0,0.760714286,26.405925299626226 +2019-03-24 23:30:00,25.0,0.706481481,26.404204360714623 +2019-03-24 23:45:00,25.0,0.694708995,26.402483241191007 +2019-03-25 00:00:00,25.0,0.685582011,26.40076194127675 +2019-03-25 00:15:00,25.0,0.672619048,26.39904046119325 +2019-03-25 00:30:00,25.0,0.649338624,26.397318801161934 +2019-03-25 00:45:00,25.0,0.664550265,26.395596961404237 +2019-03-25 01:00:00,25.0,0.676587302,26.39387494214163 +2019-03-25 01:15:00,25.0,0.673941799,26.392152743595602 +2019-03-25 01:30:00,25.0,0.699603175,26.39043036598767 +2019-03-25 01:45:00,25.0,0.719047619,26.388707809539365 +2019-03-25 02:00:00,25.0,0.726190476,26.38698507447225 +2019-03-25 02:15:00,25.0,0.715740741,26.38526216100791 +2019-03-25 02:30:00,25.0,0.706349206,26.383539069367938 +2019-03-25 02:45:00,25.0,0.707804233,26.381815799773975 +2019-03-25 03:00:00,25.0,0.697089947,26.380092352447665 +2019-03-25 03:15:00,25.0,0.702380952,26.378368727610685 +2019-03-25 03:30:00,25.0,0.71957672,26.376644925484726 +2019-03-25 03:45:00,25.0,0.72473545,26.374920946291518 +2019-03-25 04:00:00,25.0,0.721693122,26.373196790252795 +2019-03-25 04:15:00,25.0,0.713888889,26.371472457590322 +2019-03-25 04:30:00,25.0,0.704761905,26.369747948525887 +2019-03-25 04:45:00,25.0,0.688492063,26.368023263281305 +2019-03-25 05:00:00,25.0,0.688624339,26.366298402078403 +2019-03-25 05:15:00,25.0,0.692724868,26.36457336513904 +2019-03-25 05:30:00,25.0,0.715873016,26.3628481526851 +2019-03-25 05:45:00,25.0,0.698677249,26.36112276493847 +2019-03-25 06:00:00,25.0,0.700793651,26.359397202121084 +2019-03-25 06:15:00,25.0,0.698677249,26.35767146445488 +2019-03-25 06:30:00,25.0,0.676587302,26.355945552161838 +2019-03-25 06:45:00,25.0,0.685582011,26.354219465463938 +2019-03-25 07:00:00,25.0,0.707936508,26.352493204583197 +2019-03-25 07:15:00,25.0,0.735978836,26.350766769741654 +2019-03-25 07:30:00,25.0,0.737698413,26.349040161161362 +2019-03-25 07:45:00,25.0,0.732010582,26.347313379064403 +2019-03-25 08:00:00,25.0,0.71521164,26.34558642367288 +2019-03-25 08:15:00,25.0,0.699206349,26.34385929520892 +2019-03-25 08:30:00,25.0,0.703439153,26.342131993894665 +2019-03-25 08:45:00,25.0,0.714814815,26.34040451995229 +2019-03-25 09:00:00,25.0,0.720502646,26.338676873603983 +2019-03-25 09:15:00,25.0,0.722883598,26.336949055071962 +2019-03-25 09:30:00,25.0,0.728968254,26.33522106457846 +2019-03-25 09:45:00,25.0,0.730026455,26.333492902345732 +2019-03-25 10:00:00,25.0,0.737169312,26.331764568596064 +2019-03-25 10:15:00,25.0,0.732539683,26.330036063551756 +2019-03-25 10:30:00,25.0,0.732010582,26.32830738743513 +2019-03-25 10:45:00,25.0,0.725793651,26.32657854046854 +2019-03-25 11:00:00,25.0,0.719708995,26.324849522874345 +2019-03-25 11:15:00,25.0,0.719312169,26.32312033487494 +2019-03-25 11:30:00,25.0,0.720899471,26.321390976692737 +2019-03-25 11:45:00,25.0,0.721296296,26.319661448550168 +2019-03-25 12:00:00,25.0,0.722619048,26.31793175066969 +2019-03-25 12:15:00,25.0,0.710185185,26.316201883273784 +2019-03-25 12:30:00,25.0,0.68968254,26.314471846584944 +2019-03-25 12:45:00,25.0,0.671428571,26.312741640825692 +2019-03-25 13:00:00,25.0,0.667857143,26.311011266218575 +2019-03-25 13:15:00,25.0,0.668650794,26.309280722986156 +2019-03-25 13:30:00,25.0,0.673544974,26.307550011351022 +2019-03-25 13:45:00,25.0,0.68531746,26.30581913153578 +2019-03-25 14:00:00,25.0,0.685449735,26.304088083763062 +2019-03-25 14:15:00,25.0,0.676190476,26.302356868255515 +2019-03-25 14:30:00,25.0,0.66957672,26.300625485235816 +2019-03-25 14:45:00,25.0,0.664550265,26.298893934926657 +2019-03-25 15:00:00,25.0,0.664021164,26.297162217550753 +2019-03-25 15:15:00,25.0,0.668650794,26.295430333330845 +2019-03-25 15:30:00,25.0,0.672222222,26.293698282489693 +2019-03-25 15:45:00,25.0,0.665343915,26.291966065250072 +2019-03-25 16:00:00,25.0,0.65026455,26.290233681834785 +2019-03-25 16:15:00,25.0,0.64021164,26.28850113246666 +2019-03-25 16:30:00,25.0,0.624603175,26.286768417368535 +2019-03-25 16:45:00,25.0,0.612698413,26.28503553676328 +2019-03-25 17:00:00,25.0,0.597883598,26.283302490873783 +2019-03-25 17:15:00,25.0,0.592989418,26.28156927992295 +2019-03-25 17:30:00,25.0,0.602248677,26.279835904133712 +2019-03-25 17:45:00,25.0,0.593783069,26.27810236372902 +2019-03-25 18:00:00,25.0,0.602777778,26.276368658931844 +2019-03-25 18:15:00,25.0,0.603968254,26.274634789965177 +2019-03-25 18:30:00,25.0,0.601851852,26.27290075705203 +2019-03-25 18:45:00,25.0,0.595767196,26.271166560415452 +2019-03-25 19:00:00,25.0,0.569312169,26.269432200278484 +2019-03-25 19:15:00,25.0,0.560185185,26.26769767686421 +2019-03-25 19:30:00,25.0,0.56468254,26.265962990395728 +2019-03-25 19:45:00,25.0,0.585714286,26.264228141096158 +2019-03-25 20:00:00,25.0,0.623015873,26.262493129188638 +2019-03-25 20:15:00,25.0,0.64021164,26.26075795489633 +2019-03-25 20:30:00,25.0,0.66031746,26.259022618442422 +2019-03-25 20:45:00,25.0,0.671957672,26.25728712005011 +2019-03-25 21:00:00,25.0,0.664285714,26.255551459942616 +2019-03-25 21:15:00,25.0,0.658333333,26.25381563834319 +2019-03-25 21:30:00,25.0,0.653439153,26.252079655475097 +2019-03-25 21:45:00,25.0,0.64047619,26.25034351156162 +2019-03-25 22:00:00,25.0,0.631613757,26.24860720682607 +2019-03-25 22:15:00,25.0,0.622486772,26.246870741491772 +2019-03-25 22:30:00,25.0,0.594708995,26.245134115782076 +2019-03-25 22:45:00,25.0,0.54973545,26.243397329920345 +2019-03-25 23:00:00,25.0,0.532671958,26.241660384129975 +2019-03-25 23:15:00,25.0,0.525925926,26.23992327863437 +2019-03-25 23:30:00,25.0,0.519973545,26.23818601365697 +2019-03-25 23:45:00,25.0,0.505291005,26.236448589421222 +2019-03-26 00:00:00,25.0,0.477513228,26.23471100615059 +2019-03-26 00:15:00,25.0,0.474867725,26.232973264068573 +2019-03-26 00:30:00,25.0,0.45515873,26.23123536339868 +2019-03-26 00:45:00,25.0,0.446031746,26.22949730436445 +2019-03-26 01:00:00,25.0,0.450396825,26.227759087189433 +2019-03-26 01:15:00,25.0,0.467195767,26.2260207120972 +2019-03-26 01:30:00,25.0,0.481746032,26.224282179311345 +2019-03-26 01:45:00,25.0,0.525529101,26.222543489055486 +2019-03-26 02:00:00,25.0,0.56468254,26.22080464155325 +2019-03-26 02:15:00,25.0,0.58968254,26.2190656370283 +2019-03-26 02:30:00,25.0,0.597089947,26.217326475704308 +2019-03-26 02:45:00,25.0,0.627116402,26.21558715780497 +2019-03-26 03:00:00,25.0,0.654761905,26.213847683553997 +2019-03-26 03:15:00,25.0,0.674470899,26.212108053175125 +2019-03-26 03:30:00,25.0,0.675396825,26.21036826689211 +2019-03-26 03:45:00,25.0,0.647486772,26.208628324928732 +2019-03-26 04:00:00,25.0,0.663095238,26.20688822750878 +2019-03-26 04:15:00,25.0,0.700925926,26.205147974856075 +2019-03-26 04:30:00,25.0,0.718518519,26.203407567194446 +2019-03-26 04:45:00,25.0,0.705687831,26.201667004747755 +2019-03-26 05:00:00,25.0,0.692195767,26.19992628773987 +2019-03-26 05:15:00,25.0,0.693783069,26.19818541639469 +2019-03-26 05:30:00,25.0,0.702777778,26.196444390936133 +2019-03-26 05:45:00,25.0,0.697354497,26.194703211588127 +2019-03-26 06:00:00,25.0,0.730291005,26.19296187857463 +2019-03-26 06:15:00,25.0,0.738756614,26.191220392119618 +2019-03-26 06:30:00,25.0,0.75,26.189478752447084 +2019-03-26 06:45:00,25.0,0.740608466,26.187736959781038 +2019-03-26 07:00:00,25.0,0.738227513,26.185995014345515 +2019-03-26 07:15:00,25.0,0.723015873,26.18425291636457 +2019-03-26 07:30:00,25.0,0.701455026,26.182510666062278 +2019-03-26 07:45:00,25.0,0.669444444,26.180768263662728 +2019-03-26 08:00:00,25.0,0.684259259,26.179025709390032 +2019-03-26 08:15:00,25.0,0.688359788,26.177283003468318 +2019-03-26 08:30:00,25.0,0.66984127,26.175540146121744 +2019-03-26 08:45:00,25.0,0.669708995,26.173797137574475 +2019-03-26 09:00:00,25.0,0.656216931,26.1720539780507 +2019-03-26 09:15:00,25.0,0.656878307,26.170310667774636 +2019-03-26 09:30:00,25.0,0.65542328,26.168567206970504 +2019-03-26 09:45:00,25.0,0.656481481,26.166823595862557 +2019-03-26 10:00:00,25.0,0.639550265,26.165079834675055 +2019-03-26 10:15:00,25.0,0.640608466,26.16333592363229 +2019-03-26 10:30:00,25.0,0.67989418,26.161591862958566 +2019-03-26 10:45:00,25.0,0.663888889,26.159847652878213 +2019-03-26 11:00:00,25.0,0.640873016,26.158103293615568 +2019-03-26 11:15:00,25.0,0.626851852,26.156358785395 +2019-03-26 11:30:00,25.0,0.604497354,26.15461412844089 +2019-03-26 11:45:00,25.0,0.587566138,26.152869322977637 +2019-03-26 12:00:00,25.0,0.587962963,26.151124369229667 +2019-03-26 12:15:00,25.0,0.57962963,26.149379267421413 +2019-03-26 12:30:00,25.0,0.577910053,26.147634017777342 +2019-03-26 12:45:00,25.0,0.605687831,26.145888620521927 +2019-03-26 13:00:00,25.0,0.611640212,26.14414307587967 +2019-03-26 13:15:00,25.0,0.619708995,26.142397384075082 +2019-03-26 13:30:00,25.0,0.626719577,26.140651545332695 +2019-03-26 13:45:00,25.0,0.624338624,26.13890555987707 +2019-03-26 14:00:00,25.0,0.633068783,26.13715942793278 +2019-03-26 14:15:00,25.0,0.621560847,26.13541314972441 +2019-03-26 14:30:00,25.0,0.609920635,26.133666725476573 +2019-03-26 14:45:00,25.0,0.603835979,26.1319201554139 +2019-03-26 15:00:00,25.0,0.588359788,26.13017343976104 +2019-03-26 15:15:00,25.0,0.583333333,26.128426578742655 +2019-03-26 15:30:00,25.0,0.559656085,26.126679572583434 +2019-03-26 15:45:00,25.0,0.532671958,26.124932421508078 +2019-03-26 16:00:00,25.0,0.50978836,26.123185125741312 +2019-03-26 16:15:00,25.0,0.48452381,26.12143768550788 +2019-03-26 16:30:00,25.0,0.455291005,26.119690101032536 +2019-03-26 16:45:00,25.0,0.421164021,26.117942372540057 +2019-03-26 17:00:00,25.0,0.395238095,26.116194500255247 +2019-03-26 17:15:00,25.0,0.388095238,26.11444648440292 +2019-03-26 17:30:00,25.0,0.393121693,26.1126983252079 +2019-03-26 17:45:00,25.0,0.401190476,26.110950022895054 +2019-03-26 18:00:00,25.0,0.398280423,26.109201577689245 +2019-03-26 18:15:00,25.0,0.382275132,26.10745298981536 +2019-03-26 18:30:00,25.0,0.358730159,26.105704259498314 +2019-03-26 18:45:00,25.0,0.355952381,26.103955386963023 +2019-03-26 19:00:00,25.0,0.345899471,26.102206372434438 +2019-03-26 19:15:00,25.0,0.307671958,26.10045721613752 +2019-03-26 19:30:00,25.0,0.271560847,26.098707918297247 +2019-03-26 19:45:00,25.0,0.24484127,26.09695847913862 +2019-03-26 20:00:00,25.0,0.226190476,26.095208898886657 +2019-03-26 20:15:00,25.0,0.211507937,26.09345917776639 +2019-03-26 20:30:00,25.0,0.195634921,26.091709316002877 +2019-03-26 20:45:00,25.0,0.181084656,26.089959313821183 +2019-03-26 21:00:00,25.0,0.167328042,26.088209171446398 +2019-03-26 21:15:00,25.0,0.16005291,26.08645888910364 +2019-03-26 21:30:00,25.0,0.159259259,26.084708467018018 +2019-03-26 21:45:00,25.0,0.165608466,26.082957905414684 +2019-03-26 22:00:00,25.0,0.172089947,26.0812072045188 +2019-03-26 22:15:00,25.0,0.181349206,26.079456364555544 +2019-03-26 22:30:00,25.0,0.198941799,26.077705385750114 +2019-03-26 22:45:00,25.0,0.199338624,26.075954268327724 +2019-03-26 23:00:00,25.0,0.193915344,26.074203012513607 +2019-03-26 23:15:00,25.0,0.198412698,26.072451618533012 +2019-03-26 23:30:00,25.0,0.208994709,26.070700086611208 +2019-03-26 23:45:00,25.0,0.220634921,26.06894841697348 +2019-03-27 00:00:00,25.0,0.230952381,26.067196609845137 +2019-03-27 00:15:00,25.0,0.233068783,26.065444665451494 +2019-03-27 00:30:00,25.0,0.244179894,26.063692584017897 +2019-03-27 00:45:00,25.0,0.253968254,26.061940365769697 +2019-03-27 01:00:00,25.0,0.253571429,26.060188010932272 +2019-03-27 01:15:00,25.0,0.243783069,26.05843551973101 +2019-03-27 01:30:00,25.0,0.241666667,26.056682892391322 +2019-03-27 01:45:00,25.0,0.248280423,26.054930129138636 +2019-03-27 02:00:00,25.0,0.258862434,26.053177230198393 +2019-03-27 02:15:00,25.0,0.275925926,26.051424195796066 +2019-03-27 02:30:00,25.0,0.278439153,26.04967102615712 +2019-03-27 02:45:00,25.0,0.272619048,26.047917721507062 +2019-03-27 03:00:00,25.0,0.278968254,26.0461642820714 +2019-03-27 03:15:00,25.0,0.295634921,26.044410708075667 +2019-03-27 03:30:00,25.0,0.313095238,26.04265699974541 +2019-03-27 03:45:00,25.0,0.31984127,26.040903157306204 +2019-03-27 04:00:00,25.0,0.319973545,26.03914918098362 +2019-03-27 04:15:00,25.0,0.316666667,26.037395071003267 +2019-03-27 04:30:00,25.0,0.332804233,26.03564082759076 +2019-03-27 04:45:00,25.0,0.345634921,26.033886450971732 +2019-03-27 05:00:00,25.0,0.339550265,26.032131941371837 +2019-03-27 05:15:00,25.0,0.340873016,26.030377299016745 +2019-03-27 05:30:00,25.0,0.355687831,26.02862252413214 +2019-03-27 05:45:00,25.0,0.367592593,26.02686761694373 +2019-03-27 06:00:00,25.0,0.374074074,26.025112577677223 +2019-03-27 06:15:00,25.0,0.380687831,26.02335740655837 +2019-03-27 06:30:00,25.0,0.371296296,26.02160210381292 +2019-03-27 06:45:00,25.0,0.356349206,26.01984666966664 +2019-03-27 07:00:00,25.0,0.378042328,26.018091104345327 +2019-03-27 07:15:00,25.0,0.385582011,26.01633540807478 +2019-03-27 07:30:00,25.0,0.38968254,26.014579581080817 +2019-03-27 07:45:00,25.0,0.387698413,26.012823623589284 +2019-03-27 08:00:00,25.0,0.404761905,26.011067535826033 +2019-03-27 08:15:00,25.0,0.417195767,26.009311318016938 +2019-03-27 08:30:00,25.0,0.416931217,26.007554970387883 +2019-03-27 08:45:00,25.0,0.418915344,26.005798493164775 +2019-03-27 09:00:00,25.0,0.414153439,26.004041886573543 +2019-03-27 09:15:00,25.0,0.394047619,26.00228515084012 +2019-03-27 09:30:00,25.0,0.373412698,26.00052828619046 +2019-03-27 09:45:00,25.0,0.372089947,25.998771292850535 +2019-03-27 10:00:00,25.0,0.379497354,25.997014171046338 +2019-03-27 10:15:00,25.0,0.379232804,25.99525692100387 +2019-03-27 10:30:00,25.0,0.37962963,25.99349954294916 +2019-03-27 10:45:00,25.0,0.395767196,25.991742037108235 +2019-03-27 11:00:00,25.0,0.405555556,25.989984403707155 +2019-03-27 11:15:00,25.0,0.412301587,25.98822664297199 +2019-03-27 11:30:00,25.0,0.414814815,25.98646875512883 +2019-03-27 11:45:00,25.0,0.421560847,25.984710740403774 +2019-03-27 12:00:00,25.0,0.425132275,25.982952599022944 +2019-03-27 12:15:00,25.0,0.413492063,25.981194331212482 +2019-03-27 12:30:00,25.0,0.414285714,25.97943593719853 +2019-03-27 12:45:00,25.0,0.425,25.97767741720726 +2019-03-27 13:00:00,25.0,0.421428571,25.975918771464862 +2019-03-27 13:15:00,25.0,0.420238095,25.974160000197536 +2019-03-27 13:30:00,25.0,0.423809524,25.97240110363149 +2019-03-27 13:45:00,25.0,0.433730159,25.97064208199297 +2019-03-27 14:00:00,25.0,0.435449735,25.96888293550822 +2019-03-27 14:15:00,25.0,0.437566138,25.967123664403502 +2019-03-27 14:30:00,25.0,0.437830688,25.965364268905102 +2019-03-27 14:45:00,25.0,0.435185185,25.963604749239316 +2019-03-27 15:00:00,25.0,0.418386243,25.96184510563246 +2019-03-27 15:15:00,25.0,0.407804233,25.960085338310858 +2019-03-27 15:30:00,25.0,0.408465608,25.95832544750086 +2019-03-27 15:45:00,25.0,0.412301587,25.95656543342883 +2019-03-27 16:00:00,25.0,0.411640212,25.954805296321133 +2019-03-27 16:15:00,25.0,0.413624339,25.953045036404173 +2019-03-27 16:30:00,25.0,0.412037037,25.951284653904356 +2019-03-27 16:45:00,25.0,0.409391534,25.949524149048106 +2019-03-27 17:00:00,25.0,0.406481481,25.947763522061862 +2019-03-27 17:15:00,25.0,0.40489418,25.946002773172083 +2019-03-27 17:30:00,25.0,0.393121693,25.94424190260524 +2019-03-27 17:45:00,25.0,0.37989418,25.94248091058781 +2019-03-27 18:00:00,25.0,0.371693122,25.940719797346315 +2019-03-27 18:15:00,25.0,0.362698413,25.938958563107256 +2019-03-27 18:30:00,25.0,0.346428571,25.937197208097178 +2019-03-27 18:45:00,25.0,0.330026455,25.935435732542626 +2019-03-27 19:00:00,25.0,0.313756614,25.933674136670167 +2019-03-27 19:15:00,25.0,0.300529101,25.93191242070638 +2019-03-27 19:30:00,25.0,0.291137566,25.93015058487786 +2019-03-27 19:45:00,25.0,0.286111111,25.92838862941122 +2019-03-27 20:00:00,25.0,0.282407407,25.926626554533087 +2019-03-27 20:15:00,25.0,0.265079365,25.924864360470103 +2019-03-27 20:30:00,25.0,0.254100529,25.923102047448925 +2019-03-27 20:45:00,25.0,0.23994709,25.921339615696226 +2019-03-27 21:00:00,25.0,0.226058201,25.919577065438695 +2019-03-27 21:15:00,25.0,0.20952381,25.917814396903033 +2019-03-27 21:30:00,25.0,0.205952381,25.91605161031596 +2019-03-27 21:45:00,25.0,0.198148148,25.91428870590421 +2019-03-27 22:00:00,25.0,0.183333333,25.91252568389453 +2019-03-27 22:15:00,25.0,0.169179894,25.910762544513688 +2019-03-27 22:30:00,25.0,0.165608466,25.908999287988458 +2019-03-27 22:45:00,25.0,0.166931217,25.907235914545637 +2019-03-27 23:00:00,25.0,0.172486772,25.905472424412032 +2019-03-27 23:15:00,25.0,0.176322751,25.903708817814472 +2019-03-27 23:30:00,25.0,0.167195767,25.90194509497979 +2019-03-27 23:45:00,25.0,0.15542328,25.900181256134843 +2019-03-28 00:00:00,25.0,0.146825397,25.898417301506505 +2019-03-28 00:15:00,25.0,0.144444444,25.89665323132165 +2019-03-28 00:30:00,25.0,0.137037037,25.894889045807187 +2019-03-28 00:45:00,25.0,0.134259259,25.89312474519002 +2019-03-28 01:00:00,25.0,0.138492063,25.891360329697083 +2019-03-28 01:15:00,25.0,0.145238095,25.889595799555316 +2019-03-28 01:30:00,25.0,0.133465608,25.887831154991684 +2019-03-28 01:45:00,25.0,0.125396825,25.886066396233154 +2019-03-28 02:00:00,25.0,0.123544974,25.88430152350671 +2019-03-28 02:15:00,25.0,0.127910053,25.88253653703936 +2019-03-28 02:30:00,25.0,0.124603175,25.88077143705812 +2019-03-28 02:45:00,25.0,0.128703704,25.879006223790018 +2019-03-28 03:00:00,25.0,0.126058201,25.877240897462105 +2019-03-28 03:15:00,25.0,0.115873016,25.875475458301437 +2019-03-28 03:30:00,25.0,0.103439153,25.873709906535087 +2019-03-28 03:45:00,25.0,0.092328042,25.87194424239015 +2019-03-28 04:00:00,25.0,0.090343915,25.870178466093726 +2019-03-28 04:15:00,25.0,0.089550265,25.868412577872938 +2019-03-28 04:30:00,25.0,0.086507937,25.86664657795491 +2019-03-28 04:45:00,25.0,0.087037037,25.8648804665668 +2019-03-28 05:00:00,25.0,0.084920635,25.863114243935758 +2019-03-28 05:15:00,25.0,0.078174603,25.861347910288966 +2019-03-28 05:30:00,25.0,0.073809524,25.859581465853616 +2019-03-28 05:45:00,25.0,0.071164021,25.857814910856906 +2019-03-28 06:00:00,25.0,0.066534392,25.856048245526058 +2019-03-28 06:15:00,25.0,0.065343915,25.854281470088303 +2019-03-28 06:30:00,25.0,0.066137566,25.852514584770894 +2019-03-28 06:45:00,25.0,0.07010582,25.85074758980108 +2019-03-28 07:00:00,25.0,0.069708995,25.84898048540615 +2019-03-28 07:15:00,25.0,0.067592593,25.847213271813377 +2019-03-28 07:30:00,25.0,0.062169312,25.845445949250077 +2019-03-28 07:45:00,25.0,0.06005291,25.843678517943566 +2019-03-28 08:00:00,25.0,0.058333333,25.841910978121167 +2019-03-28 08:15:00,25.0,0.05978836,25.840143330010235 +2019-03-28 08:30:00,25.0,0.062037037,25.83837557383812 +2019-03-28 08:45:00,25.0,0.060185185,25.8366077098322 +2019-03-28 09:00:00,25.0,0.05978836,25.834839738219863 +2019-03-28 09:15:00,25.0,0.061111111,25.833071659228505 +2019-03-28 09:30:00,25.0,0.066269841,25.831303473085544 +2019-03-28 09:45:00,25.0,0.069179894,25.829535180018407 +2019-03-28 10:00:00,25.0,0.069179894,25.827766780254535 +2019-03-28 10:15:00,25.0,0.062830688,25.825998274021387 +2019-03-28 10:30:00,25.0,0.055820106,25.82422966154643 +2019-03-28 10:45:00,25.0,0.058730159,25.82246094305714 +2019-03-28 11:00:00,25.0,0.057936508,25.82069211878103 +2019-03-28 11:15:00,25.0,0.055555556,25.818923188945593 +2019-03-28 11:30:00,25.0,0.05,25.817154153778368 +2019-03-28 11:45:00,25.0,0.045899471,25.81538501350688 +2019-03-28 12:00:00,25.0,0.04047619,25.813615768358687 +2019-03-28 12:15:00,25.0,0.039153439,25.811846418561352 +2019-03-28 12:30:00,25.0,0.03994709,25.81007696434245 +2019-03-28 12:45:00,25.0,0.042857143,25.808307405929575 +2019-03-28 13:00:00,25.0,0.04021164,25.806537743550333 +2019-03-28 13:15:00,25.0,0.033597884,25.80476797743234 +2019-03-28 13:30:00,25.0,0.028042328,25.80299810780323 +2019-03-28 13:45:00,25.0,0.023544974,25.801228134890643 +2019-03-28 14:00:00,25.0,0.025529101,25.79945805892224 +2019-03-28 14:15:00,25.0,0.027380952,25.79768788012569 +2019-03-28 14:30:00,25.0,0.03015873,25.795917598728682 +2019-03-28 14:45:00,25.0,0.031613757,25.79414721495891 +2019-03-28 15:00:00,25.0,0.034656085,25.792376729044086 +2019-03-28 15:15:00,25.0,0.037301587,25.790606141211935 +2019-03-28 15:30:00,25.0,0.040343915,25.78883545169019 +2019-03-28 15:45:00,25.0,0.047354497,25.787064660706605 +2019-03-28 16:00:00,25.0,0.052248677,25.785293768488945 +2019-03-28 16:15:00,25.0,0.051851852,25.78352277526498 +2019-03-28 16:30:00,25.0,0.053835979,25.781751681262506 +2019-03-28 16:45:00,25.0,0.060185185,25.77998048670932 +2019-03-28 17:00:00,25.0,0.062301587,25.77820919183324 +2019-03-28 17:15:00,25.0,0.064021164,25.776437796862094 +2019-03-28 17:30:00,25.0,0.067857143,25.77466630202372 +2019-03-28 17:45:00,25.0,0.074603175,25.772894707545976 +2019-03-28 18:00:00,25.0,0.078306878,25.77112301365673 +2019-03-28 18:15:00,25.0,0.075529101,25.769351220583854 +2019-03-28 18:30:00,25.0,0.076190476,25.767579328555243 +2019-03-28 18:45:00,25.0,0.074338624,25.7658073377988 +2019-03-28 19:00:00,25.0,0.075793651,25.764035248542452 +2019-03-28 19:15:00,25.0,0.08015873,25.76226306101412 +2019-03-28 19:30:00,25.0,0.08452381,25.76049077544175 +2019-03-28 19:45:00,25.0,0.088227513,25.758718392053296 +2019-03-28 20:00:00,25.0,0.093386243,25.756945911076727 +2019-03-28 20:15:00,25.0,0.101851852,25.755173332740025 +2019-03-28 20:30:00,25.0,0.10489418,25.75340065727118 +2019-03-28 20:45:00,25.0,0.107142857,25.7516278848982 +2019-03-28 21:00:00,25.0,0.110714286,25.749855015849104 +2019-03-28 21:15:00,25.0,0.118783069,25.74808205035192 +2019-03-28 21:30:00,25.0,0.129232804,25.74630898863469 +2019-03-28 21:45:00,25.0,0.135185185,25.744535830925475 +2019-03-28 22:00:00,25.0,0.142063492,25.742762577452336 +2019-03-28 22:15:00,25.0,0.140740741,25.740989228443354 +2019-03-28 22:30:00,25.0,0.139550265,25.739215784126625 +2019-03-28 22:45:00,25.0,0.143121693,25.737442244730254 +2019-03-28 23:00:00,25.0,0.15,25.735668610482353 +2019-03-28 23:15:00,25.0,0.161111111,25.733894881611054 +2019-03-28 23:30:00,25.0,0.172222222,25.732121058344497 +2019-03-28 23:45:00,25.0,0.183730159,25.730347140910837 +2019-03-29 00:00:00,25.0,0.194708995,25.728573129538237 +2019-03-29 00:15:00,25.0,0.208068783,25.726799024454873 +2019-03-29 00:30:00,25.0,0.215343915,25.72502482588894 +2019-03-29 00:45:00,25.0,0.220238095,25.723250534068637 +2019-03-29 01:00:00,25.0,0.222222222,25.721476149222177 +2019-03-29 01:15:00,25.0,0.226851852,25.71970167157778 +2019-03-29 01:30:00,25.0,0.235978836,25.717927101363696 +2019-03-29 01:45:00,25.0,0.238624339,25.716152438808162 +2019-03-29 02:00:00,25.0,0.246164021,25.714377684139446 +2019-03-29 02:15:00,25.0,0.254365079,25.71260283758582 +2019-03-29 02:30:00,25.0,0.266402116,25.71082789937557 +2019-03-29 02:45:00,25.0,0.273544974,25.70905286973699 +2019-03-29 03:00:00,25.0,0.284126984,25.707277748898388 +2019-03-29 03:15:00,25.0,0.291137566,25.705502537088087 +2019-03-29 03:30:00,25.0,0.297486772,25.703727234534416 +2019-03-29 03:45:00,25.0,0.306084656,25.70195184146572 +2019-03-29 04:00:00,25.0,0.312830688,25.700176358110358 +2019-03-29 04:15:00,25.0,0.313756614,25.698400784696688 +2019-03-29 04:30:00,25.0,0.326587302,25.696625121453096 +2019-03-29 04:45:00,25.0,0.336640212,25.69484936860797 +2019-03-29 05:00:00,25.0,0.347486772,25.693073526389707 +2019-03-29 05:15:00,25.0,0.367989418,25.691297595026725 +2019-03-29 05:30:00,25.0,0.364814815,25.689521574747445 +2019-03-29 05:45:00,25.0,0.354365079,25.68774546578031 +2019-03-29 06:00:00,25.0,0.35515873,25.68596926835376 +2019-03-29 06:15:00,25.0,0.369179894,25.684192982696253 +2019-03-29 06:30:00,25.0,0.376851852,25.682416609036263 +2019-03-29 06:45:00,25.0,0.387169312,25.68064014760227 +2019-03-29 07:00:00,25.0,0.387301587,25.678863598622765 +2019-03-29 07:15:00,25.0,0.376190476,25.677086962326257 +2019-03-29 07:30:00,25.0,0.370634921,25.675310238941254 +2019-03-29 07:45:00,25.0,0.375661376,25.673533428696288 +2019-03-29 08:00:00,25.0,0.373412698,25.67175653181989 +2019-03-29 08:15:00,25.0,0.374603175,25.669979548540617 +2019-03-29 08:30:00,25.0,0.378042328,25.668202479087025 +2019-03-29 08:45:00,25.0,0.373941799,25.666425323687683 +2019-03-29 09:00:00,25.0,0.372089947,25.664648082571173 +2019-03-29 09:15:00,25.0,0.374074074,25.66287075596609 +2019-03-29 09:30:00,25.0,0.372883598,25.661093344101037 +2019-03-29 09:45:00,25.0,0.368253968,25.659315847204624 +2019-03-29 10:00:00,25.0,0.368253968,25.657538265505487 +2019-03-29 10:15:00,25.0,0.363624339,25.655760599232256 +2019-03-29 10:30:00,25.0,0.357275132,25.653982848613577 +2019-03-29 10:45:00,25.0,0.35026455,25.652205013878113 +2019-03-29 11:00:00,25.0,0.350396825,25.650427095254532 +2019-03-29 11:15:00,25.0,0.350132275,25.64864909297151 +2019-03-29 11:30:00,25.0,0.348412698,25.646871007257744 +2019-03-29 11:45:00,25.0,0.347354497,25.64509283834193 +2019-03-29 12:00:00,25.0,0.349470899,25.64331458645278 +2019-03-29 12:15:00,25.0,0.348809524,25.64153625181903 +2019-03-29 12:30:00,25.0,0.348941799,25.639757834669393 +2019-03-29 12:45:00,25.0,0.345767196,25.63797933523263 +2019-03-29 13:00:00,25.0,0.340079365,25.636200753737484 +2019-03-29 13:15:00,25.0,0.334259259,25.634422090412723 +2019-03-29 13:30:00,25.0,0.335978836,25.63264334548713 +2019-03-29 13:45:00,25.0,0.33478836,25.630864519189483 +2019-03-29 14:00:00,25.0,0.333994709,25.629085611748586 +2019-03-29 14:15:00,25.0,0.336375661,25.62730662339324 +2019-03-29 14:30:00,25.0,0.33452381,25.625527554352264 +2019-03-29 14:45:00,25.0,0.332275132,25.62374840485449 +2019-03-29 15:00:00,25.0,0.329100529,25.621969175128747 +2019-03-29 15:15:00,25.0,0.329365079,25.620189865403894 +2019-03-29 15:30:00,25.0,0.332010582,25.61841047590878 +2019-03-29 15:45:00,25.0,0.327380952,25.61663100687229 +2019-03-29 16:00:00,25.0,0.31984127,25.614851458523287 +2019-03-29 16:15:00,25.0,0.31468254,25.613071831090668 +2019-03-29 16:30:00,25.0,0.313756614,25.61129212480333 +2019-03-29 16:45:00,25.0,0.307804233,25.609512339890184 +2019-03-29 17:00:00,25.0,0.30489418,25.607732476580154 +2019-03-29 17:15:00,25.0,0.302248677,25.605952535102166 +2019-03-29 17:30:00,25.0,0.303439153,25.60417251568516 +2019-03-29 17:45:00,25.0,0.29973545,25.60239241855809 +2019-03-29 18:00:00,25.0,0.294312169,25.600612243949907 +2019-03-29 18:15:00,25.0,0.293915344,25.598831992089593 +2019-03-29 18:30:00,25.0,0.294708995,25.59705166320612 +2019-03-29 18:45:00,25.0,0.293253968,25.595271257528484 +2019-03-29 19:00:00,25.0,0.294312169,25.59349077528568 +2019-03-29 19:15:00,25.0,0.294973545,25.59171021670672 +2019-03-29 19:30:00,25.0,0.286507937,25.58992958202062 +2019-03-29 19:45:00,25.0,0.279232804,25.588148871456415 +2019-03-29 20:00:00,25.0,0.271296296,25.58636808524314 +2019-03-29 20:15:00,25.0,0.267063492,25.584587223609844 +2019-03-29 20:30:00,25.0,0.262433862,25.58280628678559 +2019-03-29 20:45:00,25.0,0.255026455,25.581025274999444 +2019-03-29 21:00:00,25.0,0.24457672,25.57924418848048 +2019-03-29 21:15:00,25.0,0.236111111,25.57746302745779 +2019-03-29 21:30:00,25.0,0.226587302,25.575681792160466 +2019-03-29 21:45:00,25.0,0.214550265,25.57390048281762 +2019-03-29 22:00:00,25.0,0.204100529,25.572119099658366 +2019-03-29 22:15:00,25.0,0.198148148,25.57033764291183 +2019-03-29 22:30:00,25.0,0.194444444,25.568556112807148 +2019-03-29 22:45:00,25.0,0.194444444,25.566774509573463 +2019-03-29 23:00:00,25.0,0.19047619,25.564992833439927 +2019-03-29 23:15:00,25.0,0.181216931,25.563211084635707 +2019-03-29 23:30:00,25.0,0.166005291,25.561429263389975 +2019-03-29 23:45:00,25.0,0.156878307,25.559647369931913 +2019-03-30 00:00:00,25.0,0.157539683,25.55786540449071 +2019-03-30 00:15:00,25.0,0.160185185,25.556083367295567 +2019-03-30 00:30:00,25.0,0.158994709,25.5543012585757 +2019-03-30 00:45:00,25.0,0.156481481,25.552519078560316 +2019-03-30 01:00:00,25.0,0.154232804,25.55073682747865 +2019-03-30 01:15:00,25.0,0.147619048,25.54895450555994 +2019-03-30 01:30:00,25.0,0.141534392,25.547172113033433 +2019-03-30 01:45:00,25.0,0.13968254,25.545389650128385 +2019-03-30 02:00:00,25.0,0.144708995,25.543607117074057 +2019-03-30 02:15:00,25.0,0.147354497,25.541824514099723 +2019-03-30 02:30:00,25.0,0.151190476,25.540041841434665 +2019-03-30 02:45:00,25.0,0.157010582,25.538259099308178 +2019-03-30 03:00:00,25.0,0.159259259,25.536476287949558 +2019-03-30 03:15:00,25.0,0.149603175,25.534693407588122 +2019-03-30 03:30:00,25.0,0.152116402,25.532910458453177 +2019-03-30 03:45:00,25.0,0.150132275,25.531127440774057 +2019-03-30 04:00:00,25.0,0.153968254,25.5293443547801 +2019-03-30 04:15:00,25.0,0.162830688,25.527561200700642 +2019-03-30 04:30:00,25.0,0.165608466,25.525777978765046 +2019-03-30 04:45:00,25.0,0.160846561,25.52399468920267 +2019-03-30 05:00:00,25.0,0.156746032,25.522211332242886 +2019-03-30 05:15:00,25.0,0.157804233,25.520427908115067 +2019-03-30 05:30:00,25.0,0.161640212,25.51864441704861 +2019-03-30 05:45:00,25.0,0.168121693,25.516860859272906 +2019-03-30 06:00:00,25.0,0.168783069,25.515077235017365 +2019-03-30 06:15:00,25.0,0.171560847,25.513293544511395 +2019-03-30 06:30:00,25.0,0.172486772,25.511509787984426 +2019-03-30 06:45:00,25.0,0.173941799,25.509725965665883 +2019-03-30 07:00:00,25.0,0.175793651,25.507942077785206 +2019-03-30 07:15:00,25.0,0.181746032,25.506158124571844 +2019-03-30 07:30:00,25.0,0.183994709,25.504374106255256 +2019-03-30 07:45:00,25.0,0.183465608,25.502590023064897 +2019-03-30 08:00:00,25.0,0.181878307,25.500805875230252 +2019-03-30 08:15:00,25.0,0.17473545,25.499021662980795 +2019-03-30 08:30:00,25.0,0.166402116,25.49723738654602 +2019-03-30 08:45:00,25.0,0.163756614,25.49545304615542 +2019-03-30 09:00:00,25.0,0.163624339,25.4936686420385 +2019-03-30 09:15:00,25.0,0.16521164,25.491884174424776 +2019-03-30 09:30:00,25.0,0.162301587,25.490099643543775 +2019-03-30 09:45:00,25.0,0.165740741,25.488315049625022 +2019-03-30 10:00:00,25.0,0.166534392,25.48653039289806 +2019-03-30 10:15:00,25.0,0.162830688,25.484745673592435 +2019-03-30 10:30:00,25.0,0.158862434,25.482960891937697 +2019-03-30 10:45:00,25.0,0.158068783,25.48117604816341 +2019-03-30 11:00:00,25.0,0.157804233,25.47939114249915 +2019-03-30 11:15:00,25.0,0.159391534,25.47760617517449 +2019-03-30 11:30:00,25.0,0.164550265,25.47582114641902 +2019-03-30 11:45:00,25.0,0.166402116,25.47403605646233 +2019-03-30 12:00:00,25.0,0.160978836,25.47225090553403 +2019-03-30 12:15:00,25.0,0.157804233,25.470465693863723 +2019-03-30 12:30:00,25.0,0.164153439,25.468680421681032 +2019-03-30 12:45:00,25.0,0.157804233,25.46689508921558 +2019-03-30 13:00:00,25.0,0.149867725,25.465109696697 +2019-03-30 13:15:00,25.0,0.144179894,25.463324244354936 +2019-03-30 13:30:00,25.0,0.139153439,25.461538732419037 +2019-03-30 13:45:00,25.0,0.136375661,25.459753161118957 +2019-03-30 14:00:00,25.0,0.12989418,25.45796753068436 +2019-03-30 14:15:00,25.0,0.135582011,25.45618184134492 +2019-03-30 14:30:00,25.0,0.132671958,25.45439609333032 +2019-03-30 14:45:00,25.0,0.136507937,25.45261028687024 +2019-03-30 15:00:00,25.0,0.136904762,25.45082442219438 +2019-03-30 15:15:00,25.0,0.136507937,25.44903849953244 +2019-03-30 15:30:00,25.0,0.137830688,25.447252519114127 +2019-03-30 15:45:00,25.0,0.137962963,25.44546648116916 +2019-03-30 16:00:00,25.0,0.148280423,25.443680385927266 +2019-03-30 16:15:00,25.0,0.151851852,25.44189423361817 +2019-03-30 16:30:00,25.0,0.144047619,25.44010802447162 +2019-03-30 16:45:00,25.0,0.151322751,25.438321758717354 +2019-03-30 17:00:00,25.0,0.15952381,25.43653543658513 +2019-03-30 17:15:00,25.0,0.166798942,25.43474905830471 +2019-03-30 17:30:00,25.0,0.176190476,25.432962624105862 +2019-03-30 17:45:00,25.0,0.182407407,25.431176134218354 +2019-03-30 18:00:00,25.0,0.195634921,25.429389588871977 +2019-03-30 18:15:00,25.0,0.200132275,25.42760298829652 +2019-03-30 18:30:00,25.0,0.191666667,25.425816332721773 +2019-03-30 18:45:00,25.0,0.19021164,25.424029622377546 +2019-03-30 19:00:00,25.0,0.202380952,25.42224285749365 +2019-03-30 19:15:00,25.0,0.227777778,25.420456038299896 +2019-03-30 19:30:00,25.0,0.240079365,25.418669165026117 +2019-03-30 19:45:00,25.0,0.246957672,25.416882237902144 +2019-03-30 20:00:00,25.0,0.250529101,25.41509525715781 +2019-03-30 20:15:00,25.0,0.251058201,25.413308223022963 +2019-03-30 20:30:00,25.0,0.255687831,25.411521135727455 +2019-03-30 20:45:00,25.0,0.247089947,25.40973399550115 +2019-03-30 21:00:00,25.0,0.255820106,25.407946802573907 +2019-03-30 21:15:00,25.0,0.285582011,25.406159557175602 +2019-03-30 21:30:00,25.0,0.291534392,25.40437225953612 +2019-03-30 21:45:00,25.0,0.271957672,25.402584909885338 +2019-03-30 22:00:00,25.0,0.27010582,25.400797508453156 +2019-03-30 22:15:00,25.0,0.278042328,25.399010055469468 +2019-03-30 22:30:00,25.0,0.288095238,25.397222551164187 +2019-03-30 22:45:00,25.0,0.297354497,25.39543499576722 +2019-03-30 23:00:00,25.0,0.293650794,25.39364738950849 +2019-03-30 23:15:00,25.0,0.287830688,25.391859732617924 +2019-03-30 23:30:00,25.0,0.282936508,25.39007202532545 +2019-03-30 23:45:00,25.0,0.288492063,25.38828426786101 +2019-03-31 00:00:00,25.0,0.303703704,25.38649646045455 +2019-03-31 00:15:00,25.0,0.306746032,25.38470860333602 +2019-03-31 00:30:00,25.0,0.324206349,25.38292069673538 +2019-03-31 00:45:00,25.0,0.352910053,25.381132740882595 +2019-03-31 01:00:00,25.0,0.346428571,25.37934473600763 +2019-03-31 01:15:00,25.0,0.353968254,25.377556682340472 +2019-03-31 01:30:00,25.0,0.365079365,25.3757685801111 +2019-03-31 01:45:00,25.0,0.382936508,25.373980429549505 +2019-03-31 02:00:00,25.0,0.406084656,25.372192230885677 +2019-03-31 02:15:00,25.0,0.431349206,25.370403984349625 +2019-03-31 02:30:00,25.0,0.442592593,25.36861569017136 +2019-03-31 02:45:00,25.0,0.444444444,25.366827348580888 +2019-03-31 03:00:00,25.0,0.451587302,25.365038959808235 +2019-03-31 03:15:00,25.0,0.469973545,25.363250524083426 +2019-03-31 03:30:00,25.0,0.469312169,25.361462041636493 +2019-03-31 03:45:00,25.0,0.470899471,25.359673512697476 +2019-03-31 04:00:00,25.0,0.467063492,25.357884937496422 +2019-03-31 04:15:00,25.0,0.492592593,25.35609631626338 +2019-03-31 04:30:00,25.0,0.504232804,25.354307649228403 +2019-03-31 04:45:00,25.0,0.513359788,25.352518936621557 +2019-03-31 05:00:00,25.0,0.477645503,25.35073017867291 +2019-03-31 05:15:00,25.0,0.448280423,25.348941375612537 +2019-03-31 05:30:00,25.0,0.427513228,25.347152527670517 +2019-03-31 05:45:00,25.0,0.409391534,25.345363635076936 +2019-03-31 06:00:00,25.0,0.398280423,25.343574698061882 +2019-03-31 06:15:00,25.0,0.416798942,25.34178571685546 +2019-03-31 06:30:00,25.0,0.412037037,25.339996691687762 +2019-03-31 06:45:00,25.0,0.401984127,25.338207622788907 +2019-03-31 07:00:00,25.0,0.387566138,25.336418510389006 +2019-03-31 07:15:00,25.0,0.377513228,25.334629354718174 +2019-03-31 07:30:00,25.0,0.364417989,25.332840156006547 +2019-03-31 07:45:00,25.0,0.337301587,25.331050914484244 +2019-03-31 08:00:00,25.0,0.326851852,25.329261630381406 +2019-03-31 08:15:00,25.0,0.348412698,25.32747230392818 +2019-03-31 08:30:00,25.0,0.349338624,25.325682935354703 +2019-03-31 08:45:00,25.0,0.357010582,25.323893524891137 +2019-03-31 09:00:00,25.0,0.346428571,25.322104072767633 +2019-03-31 09:15:00,25.0,0.321957672,25.32031457921436 +2019-03-31 09:30:00,25.0,0.32010582,25.318525044461488 +2019-03-31 09:45:00,25.0,0.31984127,25.316735468739182 +2019-03-31 10:00:00,25.0,0.328571429,25.31494585227763 +2019-03-31 10:15:00,25.0,0.344047619,25.313156195307013 +2019-03-31 10:30:00,25.0,0.33452381,25.311366498057524 +2019-03-31 10:45:00,25.0,0.342724868,25.309576760759356 +2019-03-31 11:00:00,25.0,0.331878307,25.307786983642707 +2019-03-31 11:15:00,25.0,0.335185185,25.305997166937782 +2019-03-31 11:30:00,25.0,0.335185185,25.304207310874794 +2019-03-31 11:45:00,25.0,0.326587302,25.30241741568396 +2019-03-31 12:00:00,25.0,0.307539683,25.300627481595498 +2019-03-31 12:15:00,25.0,0.289285714,25.298837508839632 +2019-03-31 12:30:00,25.0,0.287962963,25.2970474976466 +2019-03-31 12:45:00,25.0,0.287698413,25.295257448246623 +2019-03-31 13:00:00,25.0,0.284391534,25.293467360869954 +2019-03-31 13:15:00,25.0,0.277777778,25.291677235746835 +2019-03-31 13:30:00,25.0,0.266931217,25.28988707310751 +2019-03-31 13:45:00,25.0,0.260582011,25.288096873182244 +2019-03-31 14:00:00,25.0,0.266005291,25.286306636201296 +2019-03-31 14:15:00,25.0,0.263492063,25.284516362394918 +2019-03-31 14:30:00,25.0,0.258730159,25.28272605199339 +2019-03-31 14:45:00,25.0,0.246428571,25.280935705226984 +2019-03-31 15:00:00,25.0,0.247222222,25.279145322325977 +2019-03-31 15:15:00,25.0,0.255026455,25.27735490352065 +2019-03-31 15:30:00,25.0,0.258862434,25.275564449041298 +2019-03-31 15:45:00,25.0,0.258862434,25.27377395911821 +2019-03-31 16:00:00,25.0,0.255820106,25.271983433981678 +2019-03-31 16:15:00,25.0,0.251455026,25.270192873862005 +2019-03-31 16:30:00,25.0,0.240608466,25.268402278989505 +2019-03-31 16:45:00,25.0,0.228571429,25.26661164959448 +2019-03-31 17:00:00,25.0,0.232671958,25.26482098590725 +2019-03-31 17:15:00,25.0,0.235846561,25.263030288158127 +2019-03-31 17:30:00,25.0,0.241534392,25.261239556577447 +2019-03-31 17:45:00,25.0,0.242989418,25.259448791395528 +2019-03-31 18:00:00,25.0,0.241005291,25.257657992842702 +2019-03-31 18:15:00,25.0,0.247883598,25.25586716114931 +2019-03-31 18:30:00,25.0,0.246560847,25.254076296545694 +2019-03-31 18:45:00,25.0,0.241534392,25.252285399262195 +2019-03-31 19:00:00,25.0,0.233597884,25.25049446952917 +2019-03-31 19:15:00,25.0,0.215740741,25.248703507576963 +2019-03-31 19:30:00,25.0,0.198809524,25.246912513635934 +2019-03-31 19:45:00,25.0,0.193915344,25.245121487936444 +2019-03-31 20:00:00,25.0,0.190873016,25.243330430708863 +2019-03-31 20:15:00,25.0,0.192063492,25.24153934218356 +2019-03-31 20:30:00,25.0,0.192592593,25.239748222590908 +2019-03-31 20:45:00,25.0,0.182671958,25.237957072161286 +2019-03-31 21:00:00,25.0,0.170502646,25.236165891125076 +2019-03-31 21:15:00,25.0,0.161772487,25.23437467971266 +2019-03-31 21:30:00,25.0,0.156613757,25.23258343815443 +2019-03-31 21:45:00,25.0,0.157671958,25.23079216668078 +2019-03-31 22:00:00,25.0,0.157142857,25.229000865522107 +2019-03-31 22:15:00,25.0,0.158465608,25.227209534908816 +2019-03-31 22:30:00,25.0,0.151719577,25.225418175071308 +2019-03-31 22:45:00,25.0,0.148941799,25.223626786239993 +2019-03-31 23:00:00,25.0,0.146825397,25.22183536864528 +2019-03-31 23:15:00,25.0,0.142989418,25.22004392251759 +2019-03-31 23:30:00,25.0,0.131746032,25.218252448087345 +2019-03-31 23:45:00,25.0,0.123412698,25.216460945584963 +2019-04-01 00:00:00,25.0,0.120899471,25.214669415240873 +2019-04-01 00:15:00,25.0,0.118650794,25.212877857285505 +2019-04-01 00:30:00,25.0,0.123015873,25.2110862719493 +2019-04-01 00:45:00,25.0,0.117328042,25.20929465946268 +2019-04-01 01:00:00,25.0,0.105555556,25.207503020056105 +2019-04-01 01:15:00,25.0,0.096031746,25.20571135396001 +2019-04-01 01:30:00,25.0,0.091666667,25.203919661404843 +2019-04-01 01:45:00,25.0,0.091005291,25.20212794262106 +2019-04-01 02:00:00,25.0,0.086772487,25.20033619783911 +2019-04-01 02:15:00,25.0,0.083597884,25.19854442728946 +2019-04-01 02:30:00,25.0,0.079761905,25.19675263120256 +2019-04-01 02:45:00,25.0,0.077645503,25.194960809808883 +2019-04-01 03:00:00,25.0,0.079497354,25.1931689633389 +2019-04-01 03:15:00,25.0,0.080952381,25.19137709202307 +2019-04-01 03:30:00,25.0,0.076455026,25.189585196091883 +2019-04-01 03:45:00,25.0,0.074338624,25.18779327577581 +2019-04-01 04:00:00,25.0,0.072751323,25.186001331305327 +2019-04-01 04:15:00,25.0,0.067989418,25.184209362910924 +2019-04-01 04:30:00,25.0,0.061772487,25.182417370823085 +2019-04-01 04:45:00,25.0,0.058597884,25.1806253552723 +2019-04-01 05:00:00,25.0,0.058862434,25.178833316489072 +2019-04-01 05:15:00,25.0,0.053571429,25.177041254703884 +2019-04-01 05:30:00,25.0,0.057010582,25.17524917014724 +2019-04-01 05:45:00,25.0,0.058597884,25.173457063049643 +2019-04-01 06:00:00,25.0,0.061772487,25.171664933641594 +2019-04-01 06:15:00,25.0,0.066269841,25.169872782153607 +2019-04-01 06:30:00,25.0,0.063095238,25.16808060881619 +2019-04-01 06:45:00,25.0,0.068253968,25.166288413859856 +2019-04-01 07:00:00,25.0,0.072619048,25.164496197515124 +2019-04-01 07:15:00,25.0,0.076719577,25.162703960012507 +2019-04-01 07:30:00,25.0,0.081481481,25.16091170158253 +2019-04-01 07:45:00,25.0,0.08478836,25.159119422455717 +2019-04-01 08:00:00,25.0,0.085582011,25.157327122862597 +2019-04-01 08:15:00,25.0,0.092328042,25.155534803033703 +2019-04-01 08:30:00,25.0,0.095767196,25.153742463199556 +2019-04-01 08:45:00,25.0,0.102248677,25.1519501035907 +2019-04-01 09:00:00,25.0,0.107010582,25.150157724437673 +2019-04-01 09:15:00,25.0,0.108730159,25.148365325971007 +2019-04-01 09:30:00,25.0,0.110714286,25.146572908421252 +2019-04-01 09:45:00,25.0,0.111904762,25.14478047201895 +2019-04-01 10:00:00,25.0,0.116005291,25.14298801699465 +2019-04-01 10:15:00,25.0,0.116666667,25.141195543578903 +2019-04-01 10:30:00,25.0,0.11468254,25.13940305200225 +2019-04-01 10:45:00,25.0,0.114021164,25.13761054249526 +2019-04-01 11:00:00,25.0,0.110582011,25.135818015288486 +2019-04-01 11:15:00,25.0,0.111904762,25.134025470612478 +2019-04-01 11:30:00,25.0,0.11521164,25.13223290869781 +2019-04-01 11:45:00,25.0,0.118783069,25.130440329775038 +2019-04-01 12:00:00,25.0,0.12473545,25.128647734074725 +2019-04-01 12:15:00,25.0,0.13452381,25.126855121827447 +2019-04-01 12:30:00,25.0,0.139285714,25.125062493263766 +2019-04-01 12:45:00,25.0,0.150529101,25.12326984861426 +2019-04-01 13:00:00,25.0,0.169708995,25.121477188109502 +2019-04-01 13:15:00,25.0,0.18531746,25.119684511980065 +2019-04-01 13:30:00,25.0,0.19973545,25.11789182045653 +2019-04-01 13:45:00,25.0,0.205820106,25.116099113769476 +2019-04-01 14:00:00,25.0,0.219444444,25.114306392149487 +2019-04-01 14:15:00,25.0,0.231349206,25.112513655827144 +2019-04-01 14:30:00,25.0,0.227513228,25.110720905033034 +2019-04-01 14:45:00,25.0,0.224470899,25.108928139997744 +2019-04-01 15:00:00,25.0,0.218915344,25.10713536095187 +2019-04-01 15:15:00,25.0,0.224338624,25.10534256812599 +2019-04-01 15:30:00,25.0,0.220899471,25.10354976175071 +2019-04-01 15:45:00,25.0,0.216666667,25.101756942056618 +2019-04-01 16:00:00,25.0,0.225661376,25.099964109274314 +2019-04-01 16:15:00,25.0,0.224338624,25.098171263634395 +2019-04-01 16:30:00,25.0,0.223941799,25.09637840536746 +2019-04-01 16:45:00,25.0,0.22473545,25.094585534704116 +2019-04-01 17:00:00,25.0,0.221693122,25.092792651874955 +2019-04-01 17:15:00,25.0,0.220502646,25.09099975711059 +2019-04-01 17:30:00,25.0,0.226455026,25.08920685064163 +2019-04-01 17:45:00,25.0,0.227380952,25.087413932698674 +2019-04-01 18:00:00,25.0,0.222089947,25.085621003512337 +2019-04-01 18:15:00,25.0,0.222751323,25.08382806331323 +2019-04-01 18:30:00,25.0,0.232804233,25.082035112331962 +2019-04-01 18:45:00,25.0,0.244047619,25.080242150799148 +2019-04-01 19:00:00,25.0,0.257804233,25.078449178945405 +2019-04-01 19:15:00,25.0,0.282010582,25.076656197001345 +2019-04-01 19:30:00,25.0,0.289814815,25.074863205197587 +2019-04-01 19:45:00,25.0,0.300925926,25.07307020376475 +2019-04-01 20:00:00,25.0,0.314550265,25.071277192933458 +2019-04-01 20:15:00,25.0,0.318518519,25.069484172934327 +2019-04-01 20:30:00,25.0,0.333994709,25.06769114399798 +2019-04-01 20:45:00,25.0,0.355687831,25.06589810635504 +2019-04-01 21:00:00,25.0,0.369444444,25.064105060236134 +2019-04-01 21:15:00,25.0,0.38505291,25.06231200587189 +2019-04-01 21:30:00,25.0,0.398015873,25.06051894349293 +2019-04-01 21:45:00,25.0,0.403439153,25.05872587332988 +2019-04-01 22:00:00,25.0,0.411772487,25.056932795613378 +2019-04-01 22:15:00,25.0,0.41984127,25.055139710574043 +2019-04-01 22:30:00,25.0,0.44047619,25.05334661844251 +2019-04-01 22:45:00,25.0,0.455820106,25.051553519449417 +2019-04-01 23:00:00,25.0,0.462698413,25.049760413825386 +2019-04-01 23:15:00,25.0,0.476058201,25.047967301801062 +2019-04-01 23:30:00,25.0,0.490873016,25.046174183607068 +2019-04-01 23:45:00,25.0,0.507010582,25.044381059474045 +2019-04-02 00:00:00,25.0,0.526719577,25.042587929632624 +2019-04-02 00:15:00,25.0,0.535449735,25.04079479431345 +2019-04-02 00:30:00,25.0,0.541137566,25.03900165374715 +2019-04-02 00:45:00,25.0,0.544312169,25.03720850816437 +2019-04-02 01:00:00,25.0,0.552248677,25.03541535779575 +2019-04-02 01:15:00,25.0,0.557936508,25.033622202871918 +2019-04-02 01:30:00,25.0,0.561904762,25.03182904362352 +2019-04-02 01:45:00,25.0,0.564153439,25.0300358802812 +2019-04-02 02:00:00,25.0,0.535714286,25.028242713075596 +2019-04-02 02:15:00,25.0,0.523148148,25.026449542237348 +2019-04-02 02:30:00,25.0,0.51521164,25.0246563679971 +2019-04-02 02:45:00,25.0,0.508068783,25.02286319058549 +2019-04-02 03:00:00,25.0,0.513492063,25.021070010233167 +2019-04-02 03:15:00,25.0,0.526984127,25.019276827170767 +2019-04-02 03:30:00,25.0,0.522486772,25.01748364162894 +2019-04-02 03:45:00,25.0,0.516402116,25.015690453838324 +2019-04-02 04:00:00,25.0,0.512301587,25.013897264029566 +2019-04-02 04:15:00,25.0,0.507936508,25.01210407243331 +2019-04-02 04:30:00,25.0,0.492063492,25.0103108792802 +2019-04-02 04:45:00,25.0,0.480291005,25.008517684800882 +2019-04-02 05:00:00,25.0,0.479232804,25.006724489226 +2019-04-02 05:15:00,25.0,0.478439153,25.004931292786196 +2019-04-02 05:30:00,25.0,0.487962963,25.00313809571212 +2019-04-02 05:45:00,25.0,0.49021164,25.001344898234414 +2019-04-02 06:00:00,25.0,0.491005291,24.999551700583726 +2019-04-02 06:15:00,25.0,0.487962963,24.9977585029907 +2019-04-02 06:30:00,25.0,0.492460317,24.995965305685974 +2019-04-02 06:45:00,25.0,0.497222222,24.994172108900205 +2019-04-02 07:00:00,25.0,0.498015873,24.99237891286403 +2019-04-02 07:15:00,25.0,0.498677249,24.9905857178081 +2019-04-02 07:30:00,25.0,0.488756614,24.988792523963056 +2019-04-02 07:45:00,25.0,0.479100529,24.98699933155954 +2019-04-02 08:00:00,25.0,0.470502646,24.985206140828208 +2019-04-02 08:15:00,25.0,0.464814815,24.98341295199969 +2019-04-02 08:30:00,25.0,0.467724868,24.981619765304636 +2019-04-02 08:45:00,25.0,0.478439153,24.979826580973693 +2019-04-02 09:00:00,25.0,0.483730159,24.9780333992375 +2019-04-02 09:15:00,25.0,0.479232804,24.976240220326705 +2019-04-02 09:30:00,25.0,0.486507937,24.974447044471944 +2019-04-02 09:45:00,25.0,0.490343915,24.972653871903866 +2019-04-02 10:00:00,25.0,0.49510582,24.97086070285311 +2019-04-02 10:15:00,25.0,0.50026455,24.969067537550316 +2019-04-02 10:30:00,25.0,0.500529101,24.967274376226126 +2019-04-02 10:45:00,25.0,0.496560847,24.965481219111183 +2019-04-02 11:00:00,25.0,0.489814815,24.96368806643613 +2019-04-02 11:15:00,25.0,0.483201058,24.961894918431597 +2019-04-02 11:30:00,25.0,0.49510582,24.960101775328226 +2019-04-02 11:45:00,25.0,0.498148148,24.958308637356662 +2019-04-02 12:00:00,25.0,0.507671958,24.956515504747532 +2019-04-02 12:15:00,25.0,0.525132275,24.954722377731482 +2019-04-02 12:30:00,25.0,0.537037037,24.952929256539147 +2019-04-02 12:45:00,25.0,0.552116402,24.951136141401157 +2019-04-02 13:00:00,25.0,0.557539683,24.94934303254815 +2019-04-02 13:15:00,25.0,0.552910053,24.94754993021076 +2019-04-02 13:30:00,25.0,0.561507937,24.945756834619615 +2019-04-02 13:45:00,25.0,0.576587302,24.943963746005355 +2019-04-02 14:00:00,25.0,0.580687831,24.942170664598606 +2019-04-02 14:15:00,25.0,0.594179894,24.940377590630003 +2019-04-02 14:30:00,25.0,0.603968254,24.93858452433017 +2019-04-02 14:45:00,25.0,0.613888889,24.936791465929737 +2019-04-02 15:00:00,25.0,0.615079365,24.934998415659333 +2019-04-02 15:15:00,25.0,0.589417989,24.933205373749583 +2019-04-02 15:30:00,25.0,0.565608466,24.931412340431113 +2019-04-02 15:45:00,25.0,0.563624339,24.929619315934545 +2019-04-02 16:00:00,25.0,0.568121693,24.927826300490505 +2019-04-02 16:15:00,25.0,0.573544974,24.926033294329613 +2019-04-02 16:30:00,25.0,0.586640212,24.924240297682488 +2019-04-02 16:45:00,25.0,0.585714286,24.922447310779752 +2019-04-02 17:00:00,25.0,0.570502646,24.920654333852024 +2019-04-02 17:15:00,25.0,0.538359788,24.918861367129917 +2019-04-02 17:30:00,25.0,0.553835979,24.917068410844053 +2019-04-02 17:45:00,25.0,0.518518519,24.915275465225037 +2019-04-02 18:00:00,25.0,0.483201058,24.913482530503487 +2019-04-02 18:15:00,25.0,0.45542328,24.911689606910016 +2019-04-02 18:30:00,25.0,0.427777778,24.90989669467523 +2019-04-02 18:45:00,25.0,0.410846561,24.908103794029742 +2019-04-02 19:00:00,25.0,0.390740741,24.906310905204155 +2019-04-02 19:15:00,25.0,0.379497354,24.904518028429077 +2019-04-02 19:30:00,25.0,0.374074074,24.90272516393511 +2019-04-02 19:45:00,25.0,0.376984127,24.900932311952857 +2019-04-02 20:00:00,25.0,0.363095238,24.89913947271292 +2019-04-02 20:15:00,25.0,0.341931217,24.8973466464459 +2019-04-02 20:30:00,25.0,0.348941799,24.895553833382387 +2019-04-02 20:45:00,25.0,0.358994709,24.893761033752988 +2019-04-02 21:00:00,25.0,0.368783069,24.891968247788284 +2019-04-02 21:15:00,25.0,0.368783069,24.890175475718877 +2019-04-02 21:30:00,25.0,0.412433862,24.888382717775354 +2019-04-02 21:45:00,25.0,0.443253968,24.886589974188304 +2019-04-02 22:00:00,25.0,0.432804233,24.884797245188317 +2019-04-02 22:15:00,25.0,0.428042328,24.88300453100597 +2019-04-02 22:30:00,25.0,0.411904762,24.881211831871855 +2019-04-02 22:45:00,25.0,0.409259259,24.879419148016545 +2019-04-02 23:00:00,25.0,0.437433862,24.877626479670628 +2019-04-02 23:15:00,25.0,0.468518519,24.87583382706467 +2019-04-02 23:30:00,25.0,0.455687831,24.874041190429256 +2019-04-02 23:45:00,25.0,0.434920635,24.872248569994955 +2019-04-03 00:00:00,25.0,0.437037037,24.87045596599234 +2019-04-03 00:15:00,25.0,0.454497354,24.86866337865198 +2019-04-03 00:30:00,25.0,0.48531746,24.866870808204435 +2019-04-03 00:45:00,25.0,0.507142857,24.865078254880277 +2019-04-03 01:00:00,25.0,0.513095238,24.863285718910067 +2019-04-03 01:15:00,25.0,0.514021164,24.86149320052436 +2019-04-03 01:30:00,25.0,0.489417989,24.859700699953724 +2019-04-03 01:45:00,25.0,0.482804233,24.857908217428708 +2019-04-03 02:00:00,25.0,0.455952381,24.85611575317986 +2019-04-03 02:15:00,25.0,0.429761905,24.854323307437742 +2019-04-03 02:30:00,25.0,0.403571429,24.852530880432894 +2019-04-03 02:45:00,25.0,0.383465608,24.850738472395868 +2019-04-03 03:00:00,25.0,0.376984127,24.848946083557202 +2019-04-03 03:15:00,25.0,0.35489418,24.847153714147442 +2019-04-03 03:30:00,25.0,0.329100529,24.845361364397128 +2019-04-03 03:45:00,25.0,0.291534392,24.843569034536788 +2019-04-03 04:00:00,25.0,0.289285714,24.841776724796965 +2019-04-03 04:15:00,25.0,0.28452381,24.839984435408184 +2019-04-03 04:30:00,25.0,0.271825397,24.838192166600972 +2019-04-03 04:45:00,25.0,0.252513228,24.83639991860586 +2019-04-03 05:00:00,25.0,0.227910053,24.83460769165337 +2019-04-03 05:15:00,25.0,0.219708995,24.832815485974024 +2019-04-03 05:30:00,25.0,0.203703704,24.831023301798332 +2019-04-03 05:45:00,25.0,0.176455026,24.829231139356814 +2019-04-03 06:00:00,25.0,0.163756614,24.827438998879984 +2019-04-03 06:15:00,25.0,0.15489418,24.82564688059835 +2019-04-03 06:30:00,25.0,0.144047619,24.823854784742416 +2019-04-03 06:45:00,25.0,0.13452381,24.82206271154269 +2019-04-03 07:00:00,25.0,0.141534392,24.820270661229667 +2019-04-03 07:15:00,25.0,0.143650794,24.818478634033845 +2019-04-03 07:30:00,25.0,0.129365079,24.816686630185725 +2019-04-03 07:45:00,25.0,0.123941799,24.814894649915793 +2019-04-03 08:00:00,25.0,0.114021164,24.81310269345454 +2019-04-03 08:15:00,25.0,0.114417989,24.81131076103245 +2019-04-03 08:30:00,25.0,0.094444444,24.809518852880007 +2019-04-03 08:45:00,25.0,0.077116402,24.80772696922769 +2019-04-03 09:00:00,25.0,0.071296296,24.805935110305978 +2019-04-03 09:15:00,25.0,0.063888889,24.804143276345336 +2019-04-03 09:30:00,25.0,0.055820106,24.80235146757624 +2019-04-03 09:45:00,25.0,0.042724868,24.800559684229157 +2019-04-03 10:00:00,25.0,0.032275132,24.798767926534552 +2019-04-03 10:15:00,25.0,0.027116402,24.796976194722877 +2019-04-03 10:30:00,25.0,0.025396825,24.795184489024596 +2019-04-03 10:45:00,25.0,0.028306878,24.79339280967016 +2019-04-03 11:00:00,25.0,0.031084656,24.791601156890014 +2019-04-03 11:15:00,25.0,0.026719577,24.789809530914614 +2019-04-03 11:30:00,25.0,0.031216931,24.788017931974398 +2019-04-03 11:45:00,25.0,0.03478836,24.786226360299807 +2019-04-03 12:00:00,25.0,0.038624339,24.784434816121273 +2019-04-03 12:15:00,25.0,0.044312169,24.782643299669235 +2019-04-03 12:30:00,25.0,0.048280423,24.780851811174117 +2019-04-03 12:45:00,25.0,0.050132275,24.779060350866345 +2019-04-03 13:00:00,25.0,0.058730159,24.777268918976343 +2019-04-03 13:15:00,25.0,0.066005291,24.775477515734526 +2019-04-03 13:30:00,25.0,0.074074074,24.773686141371314 +2019-04-03 13:45:00,25.0,0.084656085,24.771894796117113 +2019-04-03 14:00:00,25.0,0.098544974,24.77010348020233 +2019-04-03 14:15:00,25.0,0.10978836,24.76831219385737 +2019-04-03 14:30:00,25.0,0.116666667,24.76652093731263 +2019-04-03 14:45:00,25.0,0.117328042,24.76472971079851 +2019-04-03 15:00:00,25.0,0.121693122,24.7629385145454 +2019-04-03 15:15:00,25.0,0.130026455,24.761147348783684 +2019-04-03 15:30:00,25.0,0.131878307,24.759356213743747 +2019-04-03 15:45:00,25.0,0.135978836,24.75756510965597 +2019-04-03 16:00:00,25.0,0.127513228,24.755774036750733 +2019-04-03 16:15:00,25.0,0.119047619,24.753982995258404 +2019-04-03 16:30:00,25.0,0.11031746,24.75219198540935 +2019-04-03 16:45:00,25.0,0.10462963,24.75040100743394 +2019-04-03 17:00:00,25.0,0.110714286,24.748610061562527 +2019-04-03 17:15:00,25.0,0.119444444,24.74681914802547 +2019-04-03 17:30:00,25.0,0.127777778,24.745028267053115 +2019-04-03 17:45:00,25.0,0.132407407,24.743237418875818 +2019-04-03 18:00:00,25.0,0.137169312,24.74144660372392 +2019-04-03 18:15:00,25.0,0.139814815,24.739655821827757 +2019-04-03 18:30:00,25.0,0.151455026,24.737865073417666 +2019-04-03 18:45:00,25.0,0.157539683,24.73607435872397 +2019-04-03 19:00:00,25.0,0.157407407,24.734283677977007 +2019-04-03 19:15:00,25.0,0.161243386,24.73249303140709 +2019-04-03 19:30:00,25.0,0.15978836,24.730702419244537 +2019-04-03 19:45:00,25.0,0.15489418,24.72891184171966 +2019-04-03 20:00:00,25.0,0.151587302,24.727121299062777 +2019-04-03 20:15:00,25.0,0.140873016,24.725330791504177 +2019-04-03 20:30:00,25.0,0.135714286,24.723540319274168 +2019-04-03 20:45:00,25.0,0.138756614,24.721749882603042 +2019-04-03 21:00:00,25.0,0.13994709,24.71995948172109 +2019-04-03 21:15:00,25.0,0.141269841,24.718169116858597 +2019-04-03 21:30:00,25.0,0.137698413,24.716378788245844 +2019-04-03 21:45:00,25.0,0.14047619,24.714588496113112 +2019-04-03 22:00:00,25.0,0.14484127,24.712798240690663 +2019-04-03 22:15:00,25.0,0.145899471,24.71100802220877 +2019-04-03 22:30:00,25.0,0.146031746,24.709217840897693 +2019-04-03 22:45:00,25.0,0.148544974,24.707427696987693 +2019-04-03 23:00:00,25.0,0.14457672,24.705637590709017 +2019-04-03 23:15:00,25.0,0.154497354,24.703847522291916 +2019-04-03 23:30:00,25.0,0.155555556,24.70205749196663 +2019-04-03 23:45:00,25.0,0.156746032,24.700267499963402 +2019-04-04 00:00:00,25.0,0.150793651,24.69847754651246 +2019-04-04 00:15:00,25.0,0.148280423,24.696687631844032 +2019-04-04 00:30:00,25.0,0.143518519,24.694897756188343 +2019-04-04 00:45:00,25.0,0.142328042,24.693107919775613 +2019-04-04 01:00:00,25.0,0.145899471,24.69131812283605 +2019-04-04 01:15:00,25.0,0.135846561,24.689528365599866 +2019-04-04 01:30:00,25.0,0.134656085,24.687738648297263 +2019-04-04 01:45:00,25.0,0.13531746,24.685948971158435 +2019-04-04 02:00:00,25.0,0.130555556,24.684159334413575 +2019-04-04 02:15:00,25.0,0.12526455,24.682369738292874 +2019-04-04 02:30:00,25.0,0.128042328,24.680580183026514 +2019-04-04 02:45:00,25.0,0.127910053,24.67879066884467 +2019-04-04 03:00:00,25.0,0.128306878,24.67700119597751 +2019-04-04 03:15:00,25.0,0.130555556,24.675211764655206 +2019-04-04 03:30:00,25.0,0.131878307,24.673422375107915 +2019-04-04 03:45:00,25.0,0.13478836,24.671633027565793 +2019-04-04 04:00:00,25.0,0.143121693,24.669843722258992 +2019-04-04 04:15:00,25.0,0.140740741,24.668054459417657 +2019-04-04 04:30:00,25.0,0.137962963,24.666265239271926 +2019-04-04 04:45:00,25.0,0.131216931,24.66447606205193 +2019-04-04 05:00:00,25.0,0.131349206,24.662686927987796 +2019-04-04 05:15:00,25.0,0.13452381,24.660897837309655 +2019-04-04 05:30:00,25.0,0.137037037,24.659108790247615 +2019-04-04 05:45:00,25.0,0.140079365,24.657319787031792 +2019-04-04 06:00:00,25.0,0.141666667,24.655530827892292 +2019-04-04 06:15:00,25.0,0.142460317,24.653741913059214 +2019-04-04 06:30:00,25.0,0.135846561,24.65195304276265 +2019-04-04 06:45:00,25.0,0.133333333,24.650164217232692 +2019-04-04 07:00:00,25.0,0.133730159,24.64837543669942 +2019-04-04 07:15:00,25.0,0.123677249,24.646586701392916 +2019-04-04 07:30:00,25.0,0.119708995,24.644798011543248 +2019-04-04 07:45:00,25.0,0.116534392,24.643009367380483 +2019-04-04 08:00:00,25.0,0.114417989,24.641220769134677 +2019-04-04 08:15:00,25.0,0.108862434,24.639432217035882 +2019-04-04 08:30:00,25.0,0.107407407,24.637643711314155 +2019-04-04 08:45:00,25.0,0.107936508,24.63585525219953 +2019-04-04 09:00:00,25.0,0.107539683,24.634066839922045 +2019-04-04 09:15:00,25.0,0.109259259,24.63227847471173 +2019-04-04 09:30:00,25.0,0.108597884,24.630490156798608 +2019-04-04 09:45:00,25.0,0.108201058,24.628701886412696 +2019-04-04 10:00:00,25.0,0.106613757,24.62691366378401 +2019-04-04 10:15:00,25.0,0.10489418,24.625125489142548 +2019-04-04 10:30:00,25.0,0.105687831,24.623337362718313 +2019-04-04 10:45:00,25.0,0.10515873,24.6215492847413 +2019-04-04 11:00:00,25.0,0.107275132,24.619761255441492 +2019-04-04 11:15:00,25.0,0.109391534,24.617973275048872 +2019-04-04 11:30:00,25.0,0.11031746,24.61618534379341 +2019-04-04 11:45:00,25.0,0.111375661,24.61439746190508 +2019-04-04 12:00:00,25.0,0.113624339,24.612609629613843 +2019-04-04 12:15:00,25.0,0.113359788,24.610821847149648 +2019-04-04 12:30:00,25.0,0.114153439,24.60903411474245 +2019-04-04 12:45:00,25.0,0.116931217,24.607246432622187 +2019-04-04 13:00:00,25.0,0.120899471,24.6054588010188 +2019-04-04 13:15:00,25.0,0.121560847,24.60367122016221 +2019-04-04 13:30:00,25.0,0.122751323,24.601883690282346 +2019-04-04 13:45:00,25.0,0.123544974,24.60009621160912 +2019-04-04 14:00:00,25.0,0.123941799,24.59830878437245 +2019-04-04 14:15:00,25.0,0.12473545,24.596521408802232 +2019-04-04 14:30:00,25.0,0.125529101,24.594734085128362 +2019-04-04 14:45:00,25.0,0.128571429,24.59294681358073 +2019-04-04 15:00:00,25.0,0.13042328,24.591159594389225 +2019-04-04 15:15:00,25.0,0.135846561,24.58937242778372 +2019-04-04 15:30:00,25.0,0.144708995,24.587585313994076 +2019-04-04 15:45:00,25.0,0.14973545,24.585798253250168 +2019-04-04 16:00:00,25.0,0.151719577,24.58401124578185 +2019-04-04 16:15:00,25.0,0.157010582,24.582224291818964 +2019-04-04 16:30:00,25.0,0.156746032,24.580437391591357 +2019-04-04 16:45:00,25.0,0.161243386,24.578650545328863 +2019-04-04 17:00:00,25.0,0.162037037,24.576863753261307 +2019-04-04 17:15:00,25.0,0.159920635,24.57507701561852 +2019-04-04 17:30:00,25.0,0.166666667,24.573290332630307 +2019-04-04 17:45:00,25.0,0.16984127,24.57150370452648 +2019-04-04 18:00:00,25.0,0.173809524,24.569717131536837 +2019-04-04 18:15:00,25.0,0.171560847,24.567930613891175 +2019-04-04 18:30:00,25.0,0.165873016,24.566144151819273 +2019-04-04 18:45:00,25.0,0.159920635,24.564357745550915 +2019-04-04 19:00:00,25.0,0.15515873,24.562571395315874 +2019-04-04 19:15:00,25.0,0.149603175,24.56078510134391 +2019-04-04 19:30:00,25.0,0.152910053,24.558998863864783 +2019-04-04 19:45:00,25.0,0.147486772,24.557212683108244 +2019-04-04 20:00:00,25.0,0.147751323,24.55542655930403 +2019-04-04 20:15:00,25.0,0.152645503,24.553640492681886 +2019-04-04 20:30:00,25.0,0.160582011,24.55185448347153 +2019-04-04 20:45:00,25.0,0.162433862,24.55006853190269 +2019-04-04 21:00:00,25.0,0.171296296,24.548282638205077 +2019-04-04 21:15:00,25.0,0.182936508,24.54649680260839 +2019-04-04 21:30:00,25.0,0.183333333,24.54471102534234 +2019-04-04 21:45:00,25.0,0.187169312,24.542925306636608 +2019-04-04 22:00:00,25.0,0.193650794,24.541139646720882 +2019-04-04 22:15:00,25.0,0.198809524,24.539354045824837 +2019-04-04 22:30:00,25.0,0.197354497,24.53756850417814 +2019-04-04 22:45:00,25.0,0.203835979,24.535783022010452 +2019-04-04 23:00:00,25.0,0.208730159,24.533997599551423 +2019-04-04 23:15:00,25.0,0.20952381,24.532212237030706 +2019-04-04 23:30:00,25.0,0.213888889,24.530426934677926 +2019-04-04 23:45:00,25.0,0.208597884,24.528641692722726 +2019-04-05 00:00:00,25.0,0.20978836,24.52685651139472 +2019-04-05 00:15:00,25.0,0.212169312,24.525071390923525 +2019-04-05 00:30:00,25.0,0.213227513,24.52328633153875 +2019-04-05 00:45:00,25.0,0.222354497,24.521501333469985 +2019-04-05 01:00:00,25.0,0.226190476,24.519716396946823 +2019-04-05 01:15:00,25.0,0.237301587,24.517931522198854 +2019-04-05 01:30:00,25.0,0.240873016,24.516146709455647 +2019-04-05 01:45:00,25.0,0.239285714,24.51436195894677 +2019-04-05 02:00:00,25.0,0.251587302,24.51257727090178 +2019-04-05 02:15:00,25.0,0.251322751,24.51079264555023 +2019-04-05 02:30:00,25.0,0.244047619,24.50900808312166 +2019-04-05 02:45:00,25.0,0.236772487,24.507223583845608 +2019-04-05 03:00:00,25.0,0.224867725,24.5054391479516 +2019-04-05 03:15:00,25.0,0.21005291,24.50365477566915 +2019-04-05 03:30:00,25.0,0.221428571,24.501870467227775 +2019-04-05 03:45:00,25.0,0.213359788,24.50008622285697 +2019-04-05 04:00:00,25.0,0.197751323,24.498302042786232 +2019-04-05 04:15:00,25.0,0.188492063,24.496517927245048 +2019-04-05 04:30:00,25.0,0.201719577,24.49473387646289 +2019-04-05 04:45:00,25.0,0.20515873,24.49294989066923 +2019-04-05 05:00:00,25.0,0.214417989,24.49116597009353 +2019-04-05 05:15:00,25.0,0.221957672,24.48938211496524 +2019-04-05 05:30:00,25.0,0.242195767,24.487598325513805 +2019-04-05 05:45:00,25.0,0.262566138,24.485814601968656 +2019-04-05 06:00:00,25.0,0.286640212,24.484030944559226 +2019-04-05 06:15:00,25.0,0.301455026,24.482247353514925 +2019-04-05 06:30:00,25.0,0.311507937,24.48046382906517 +2019-04-05 06:45:00,25.0,0.327116402,24.47868037143936 +2019-04-05 07:00:00,25.0,0.347222222,24.476896980866886 +2019-04-05 07:15:00,25.0,0.35026455,24.475113657577133 +2019-04-05 07:30:00,25.0,0.347619048,24.473330401799473 +2019-04-05 07:45:00,25.0,0.364550265,24.471547213763277 +2019-04-05 08:00:00,25.0,0.36957672,24.4697640936979 +2019-04-05 08:15:00,25.0,0.356216931,24.467981041832694 +2019-04-05 08:30:00,25.0,0.346164021,24.466198058397 +2019-04-05 08:45:00,25.0,0.350661376,24.464415143620144 +2019-04-05 09:00:00,25.0,0.359920635,24.46263229773145 +2019-04-05 09:15:00,25.0,0.353439153,24.460849520960235 +2019-04-05 09:30:00,25.0,0.361772487,24.4590668135358 +2019-04-05 09:45:00,25.0,0.362037037,24.45728417568744 +2019-04-05 10:00:00,25.0,0.36957672,24.45550160764445 +2019-04-05 10:15:00,25.0,0.369973545,24.453719109636104 +2019-04-05 10:30:00,25.0,0.361507937,24.451936681891667 +2019-04-05 10:45:00,25.0,0.366534392,24.4501543246404 +2019-04-05 11:00:00,25.0,0.363624339,24.44837203811156 +2019-04-05 11:15:00,25.0,0.346957672,24.446589822534385 +2019-04-05 11:30:00,25.0,0.333068783,24.444807678138105 +2019-04-05 11:45:00,25.0,0.33531746,24.44302560515195 +2019-04-05 12:00:00,25.0,0.343253968,24.441243603805123 +2019-04-05 12:15:00,25.0,0.341269841,24.439461674326843 +2019-04-05 12:30:00,25.0,0.334126984,24.437679816946297 +2019-04-05 12:45:00,25.0,0.330687831,24.435898031892673 +2019-04-05 13:00:00,25.0,0.313624339,24.434116319395148 +2019-04-05 13:15:00,25.0,0.29973545,24.432334679682892 +2019-04-05 13:30:00,25.0,0.280555556,24.430553112985066 +2019-04-05 13:45:00,25.0,0.278042328,24.428771619530814 +2019-04-05 14:00:00,25.0,0.278571429,24.426990199549277 +2019-04-05 14:15:00,25.0,0.259920635,24.425208853269588 +2019-04-05 14:30:00,25.0,0.237169312,24.423427580920865 +2019-04-05 14:45:00,25.0,0.22473545,24.42164638273222 +2019-04-05 15:00:00,25.0,0.217724868,24.419865258932756 +2019-04-05 15:15:00,25.0,0.222222222,24.418084209751566 +2019-04-05 15:30:00,25.0,0.212301587,24.416303235417733 +2019-04-05 15:45:00,25.0,0.205026455,24.414522336160324 +2019-04-05 16:00:00,25.0,0.196296296,24.412741512208406 +2019-04-05 16:15:00,25.0,0.193915344,24.410960763791035 +2019-04-05 16:30:00,25.0,0.192328042,24.409180091137255 +2019-04-05 16:45:00,25.0,0.187433862,24.4073994944761 +2019-04-05 17:00:00,25.0,0.186507937,24.40561897403659 +2019-04-05 17:15:00,25.0,0.189285714,24.403838530047743 +2019-04-05 17:30:00,25.0,0.18968254,24.402058162738562 +2019-04-05 17:45:00,25.0,0.193650794,24.400277872338044 +2019-04-05 18:00:00,25.0,0.194708995,24.398497659075176 +2019-04-05 18:15:00,25.0,0.191666667,24.39671752317893 +2019-04-05 18:30:00,25.0,0.203042328,24.39493746487827 +2019-04-05 18:45:00,25.0,0.197619048,24.393157484402156 +2019-04-05 19:00:00,25.0,0.183201058,24.39137758197953 +2019-04-05 19:15:00,25.0,0.171957672,24.389597757839326 +2019-04-05 19:30:00,25.0,0.169179894,24.38781801221047 +2019-04-05 19:45:00,25.0,0.167724868,24.38603834532188 +2019-04-05 20:00:00,25.0,0.141798942,24.384258757402456 +2019-04-05 20:15:00,25.0,0.149470899,24.382479248681097 +2019-04-05 20:30:00,25.0,0.129365079,24.380699819386688 +2019-04-05 20:45:00,25.0,0.119444444,24.378920469748095 +2019-04-05 21:00:00,25.0,0.126984127,24.377141199994192 +2019-04-05 21:15:00,25.0,0.117460317,24.37536201035383 +2019-04-05 21:30:00,25.0,0.114814815,24.373582901055848 +2019-04-05 21:45:00,25.0,0.130820106,24.371803872329085 +2019-04-05 22:00:00,25.0,0.153835979,24.37002492440236 +2019-04-05 22:15:00,25.0,0.136375661,24.36824605750449 +2019-04-05 22:30:00,25.0,0.115873016,24.36646727186427 +2019-04-05 22:45:00,25.0,0.101984127,24.364688567710495 +2019-04-05 23:00:00,25.0,0.094179894,24.362909945271948 +2019-04-05 23:15:00,25.0,0.089417989,24.361131404777396 +2019-04-05 23:30:00,25.0,0.086507937,24.359352946455605 +2019-04-05 23:45:00,25.0,0.089550265,24.357574570535316 +2019-04-06 00:00:00,25.0,0.098412698,24.355796277245275 +2019-04-06 00:15:00,25.0,0.108201058,24.354018066814206 +2019-04-06 00:30:00,25.0,0.111111111,24.352239939470827 +2019-04-06 00:45:00,25.0,0.120238095,24.350461895443846 +2019-04-06 01:00:00,25.0,0.127513228,24.34868393496196 +2019-04-06 01:15:00,25.0,0.123544974,24.34690605825385 +2019-04-06 01:30:00,25.0,0.121560847,24.345128265548198 +2019-04-06 01:45:00,25.0,0.125661376,24.34335055707366 +2019-04-06 02:00:00,25.0,0.134920635,24.341572933058895 +2019-04-06 02:15:00,25.0,0.133333333,24.33979539373254 +2019-04-06 02:30:00,25.0,0.12526455,24.33801793932323 +2019-04-06 02:45:00,25.0,0.115873016,24.336240570059587 +2019-04-06 03:00:00,25.0,0.102645503,24.334463286170216 +2019-04-06 03:15:00,25.0,0.096296296,24.332686087883715 +2019-04-06 03:30:00,25.0,0.098677249,24.330908975428677 +2019-04-06 03:45:00,25.0,0.099338624,24.32913194903367 +2019-04-06 04:00:00,25.0,0.098941799,24.327355008927267 +2019-04-06 04:15:00,25.0,0.094047619,24.325578155338018 +2019-04-06 04:30:00,25.0,0.094047619,24.32380138849447 +2019-04-06 04:45:00,25.0,0.091931217,24.322024708625147 +2019-04-06 05:00:00,25.0,0.089550265,24.320248115958577 +2019-04-06 05:15:00,25.0,0.098015873,24.318471610723268 +2019-04-06 05:30:00,25.0,0.107407407,24.316695193147716 +2019-04-06 05:45:00,25.0,0.115343915,24.314918863460406 +2019-04-06 06:00:00,25.0,0.116534392,24.313142621889824 +2019-04-06 06:15:00,25.0,0.115608466,24.31136646866442 +2019-04-06 06:30:00,25.0,0.116402116,24.309590404012656 +2019-04-06 06:45:00,25.0,0.119047619,24.307814428162974 +2019-04-06 07:00:00,25.0,0.121164021,24.3060385413438 +2019-04-06 07:15:00,25.0,0.117592593,24.304262743783553 +2019-04-06 07:30:00,25.0,0.117724868,24.302487035710644 +2019-04-06 07:45:00,25.0,0.10952381,24.30071141735347 +2019-04-06 08:00:00,25.0,0.103571429,24.298935888940402 +2019-04-06 08:15:00,25.0,0.102777778,24.297160450699828 +2019-04-06 08:30:00,25.0,0.104100529,24.295385102860102 +2019-04-06 08:45:00,25.0,0.106613757,24.293609845649573 +2019-04-06 09:00:00,25.0,0.11005291,24.29183467929658 +2019-04-06 09:15:00,25.0,0.112566138,24.29005960402945 +2019-04-06 09:30:00,25.0,0.105820106,24.2882846200765 +2019-04-06 09:45:00,25.0,0.101058201,24.286509727666022 +2019-04-06 10:00:00,25.0,0.099867725,24.284734927026317 +2019-04-06 10:15:00,25.0,0.093650794,24.28296021838566 +2019-04-06 10:30:00,25.0,0.088227513,24.281185601972318 +2019-04-06 10:45:00,25.0,0.08968254,24.279411078014547 +2019-04-06 11:00:00,25.0,0.089417989,24.277636646740593 +2019-04-06 11:15:00,25.0,0.094179894,24.27586230837868 +2019-04-06 11:30:00,25.0,0.111375661,24.274088063157038 +2019-04-06 11:45:00,25.0,0.132142857,24.272313911303865 +2019-04-06 12:00:00,25.0,0.148677249,24.27053985304736 +2019-04-06 12:15:00,25.0,0.164417989,24.268765888615707 +2019-04-06 12:30:00,25.0,0.184391534,24.26699201823708 +2019-04-06 12:45:00,25.0,0.19973545,24.265218242139632 +2019-04-06 13:00:00,25.0,0.201851852,24.263444560551516 +2019-04-06 13:15:00,25.0,0.202910053,24.261670973700863 +2019-04-06 13:30:00,25.0,0.191666667,24.2598974818158 +2019-04-06 13:45:00,25.0,0.213756614,24.258124085124432 +2019-04-06 14:00:00,25.0,0.213492063,24.256350783854863 +2019-04-06 14:15:00,25.0,0.208068783,24.254577578235175 +2019-04-06 14:30:00,25.0,0.207275132,24.252804468493448 +2019-04-06 14:45:00,25.0,0.218253968,24.251031454857735 +2019-04-06 15:00:00,25.0,0.227777778,24.249258537556088 +2019-04-06 15:15:00,25.0,0.236772487,24.247485716816545 +2019-04-06 15:30:00,25.0,0.23968254,24.245712992867134 +2019-04-06 15:45:00,25.0,0.247354497,24.24394036593586 +2019-04-06 16:00:00,25.0,0.248148148,24.242167836250726 +2019-04-06 16:15:00,25.0,0.253306878,24.240395404039717 +2019-04-06 16:30:00,25.0,0.25515873,24.23862306953081 +2019-04-06 16:45:00,25.0,0.258597884,24.236850832951966 +2019-04-06 17:00:00,25.0,0.263492063,24.235078694531133 +2019-04-06 17:15:00,25.0,0.268650794,24.233306654496246 +2019-04-06 17:30:00,25.0,0.278306878,24.23153471307523 +2019-04-06 17:45:00,25.0,0.280687831,24.229762870496003 +2019-04-06 18:00:00,25.0,0.282936508,24.227991126986453 +2019-04-06 18:15:00,25.0,0.292063492,24.22621948277447 +2019-04-06 18:30:00,25.0,0.296957672,24.22444793808793 +2019-04-06 18:45:00,25.0,0.308201058,24.22267649315469 +2019-04-06 19:00:00,25.0,0.331084656,24.220905148202597 +2019-04-06 19:15:00,25.0,0.348280423,24.21913390345949 +2019-04-06 19:30:00,25.0,0.353703704,24.217362759153183 +2019-04-06 19:45:00,25.0,0.361640212,24.21559171551149 +2019-04-06 20:00:00,25.0,0.373280423,24.213820772762205 +2019-04-06 20:15:00,25.0,0.390079365,24.21204993113311 +2019-04-06 20:30:00,25.0,0.398941799,24.210279190851974 +2019-04-06 20:45:00,25.0,0.401587302,24.208508552146558 +2019-04-06 21:00:00,25.0,0.406349206,24.206738015244607 +2019-04-06 21:15:00,25.0,0.417328042,24.204967580373843 +2019-04-06 21:30:00,25.0,0.425529101,24.203197247761988 +2019-04-06 21:45:00,25.0,0.416666667,24.20142701763675 +2019-04-06 22:00:00,25.0,0.403571429,24.199656890225814 +2019-04-06 22:15:00,25.0,0.38452381,24.19788686575686 +2019-04-06 22:30:00,25.0,0.371428571,24.196116944457554 +2019-04-06 22:45:00,25.0,0.348677249,24.19434712655555 +2019-04-06 23:00:00,25.0,0.32526455,24.192577412278478 +2019-04-06 23:15:00,25.0,0.298148148,24.190807801853968 +2019-04-06 23:30:00,25.0,0.28015873,24.18903829550963 +2019-04-06 23:45:00,25.0,0.267989418,24.187268893473064 +2019-04-07 00:00:00,25.0,0.251719577,24.18549959597185 +2019-04-07 00:15:00,25.0,0.234126984,24.183730403233568 +2019-04-07 00:30:00,25.0,0.217724868,24.18196131548577 +2019-04-07 00:45:00,25.0,0.208068783,24.180192332955997 +2019-04-07 01:00:00,25.0,0.204365079,24.178423455871783 +2019-04-07 01:15:00,25.0,0.192724868,24.176654684460644 +2019-04-07 01:30:00,25.0,0.178306878,24.174886018950087 +2019-04-07 01:45:00,25.0,0.160978836,24.173117459567596 +2019-04-07 02:00:00,25.0,0.150661376,24.171349006540655 +2019-04-07 02:15:00,25.0,0.14537037,24.16958066009672 +2019-04-07 02:30:00,25.0,0.137698413,24.167812420463243 +2019-04-07 02:45:00,25.0,0.132010582,24.166044287867653 +2019-04-07 03:00:00,25.0,0.124603175,24.16427626253738 +2019-04-07 03:15:00,25.0,0.121957672,24.162508344699827 +2019-04-07 03:30:00,25.0,0.125396825,24.160740534582388 +2019-04-07 03:45:00,25.0,0.126984127,24.158972832412445 +2019-04-07 04:00:00,25.0,0.11957672,24.157205238417358 +2019-04-07 04:15:00,25.0,0.110714286,24.155437752824486 +2019-04-07 04:30:00,25.0,0.101851852,24.153670375861164 +2019-04-07 04:45:00,25.0,0.099338624,24.151903107754716 +2019-04-07 05:00:00,25.0,0.096693122,24.15013594873245 +2019-04-07 05:15:00,25.0,0.091137566,24.148368899021673 +2019-04-07 05:30:00,25.0,0.094973545,24.14660195884965 +2019-04-07 05:45:00,25.0,0.089550265,24.14483512844366 +2019-04-07 06:00:00,25.0,0.088227513,24.143068408030956 +2019-04-07 06:15:00,25.0,0.09537037,24.141301797838775 +2019-04-07 06:30:00,25.0,0.091931217,24.13953529809434 +2019-04-07 06:45:00,25.0,0.087698413,24.13776890902487 +2019-04-07 07:00:00,25.0,0.083201058,24.136002630857558 +2019-04-07 07:15:00,25.0,0.085846561,24.134236463819583 +2019-04-07 07:30:00,25.0,0.084920635,24.132470408138122 +2019-04-07 07:45:00,25.0,0.077777778,24.13070446404032 +2019-04-07 08:00:00,25.0,0.068650794,24.12893863175332 +2019-04-07 08:15:00,25.0,0.062433862,24.127172911504253 +2019-04-07 08:30:00,25.0,0.058730159,24.125407303520223 +2019-04-07 08:45:00,25.0,0.054761905,24.12364180802833 +2019-04-07 09:00:00,25.0,0.058068783,24.121876425255657 +2019-04-07 09:15:00,25.0,0.058201058,24.120111155429267 +2019-04-07 09:30:00,25.0,0.057671958,24.118345998776213 +2019-04-07 09:45:00,25.0,0.054761905,24.116580955523542 +2019-04-07 10:00:00,25.0,0.051851852,24.114816025898268 +2019-04-07 10:15:00,25.0,0.048809524,24.11305121012741 +2019-04-07 10:30:00,25.0,0.04510582,24.111286508437953 +2019-04-07 10:45:00,25.0,0.047089947,24.109521921056885 +2019-04-07 11:00:00,25.0,0.048941799,24.107757448211164 +2019-04-07 11:15:00,25.0,0.049338624,24.105993090127747 +2019-04-07 11:30:00,25.0,0.050529101,24.104228847033564 +2019-04-07 11:45:00,25.0,0.049867725,24.10246471915554 +2019-04-07 12:00:00,25.0,0.046296296,24.100700706720584 +2019-04-07 12:15:00,25.0,0.042989418,24.098936809955582 +2019-04-07 12:30:00,25.0,0.03994709,24.09717302908741 +2019-04-07 12:45:00,25.0,0.040740741,24.095409364342935 +2019-04-07 13:00:00,25.0,0.042460317,24.093645815948996 +2019-04-07 13:15:00,25.0,0.044312169,24.091882384132433 +2019-04-07 13:30:00,25.0,0.043915344,24.090119069120057 +2019-04-07 13:45:00,25.0,0.041534392,24.088355871138674 +2019-04-07 14:00:00,25.0,0.041534392,24.086592790415065 +2019-04-07 14:15:00,25.0,0.04457672,24.084829827176005 +2019-04-07 14:30:00,25.0,0.04484127,24.08306698164825 +2019-04-07 14:45:00,25.0,0.045767196,24.08130425405854 +2019-04-07 15:00:00,25.0,0.046164021,24.079541644633608 +2019-04-07 15:15:00,25.0,0.045899471,24.077779153600154 +2019-04-07 15:30:00,25.0,0.049470899,24.076016781184883 +2019-04-07 15:45:00,25.0,0.055026455,24.074254527614467 +2019-04-07 16:00:00,25.0,0.056216931,24.072492393115578 +2019-04-07 16:15:00,25.0,0.053306878,24.07073037791486 +2019-04-07 16:30:00,25.0,0.047751323,24.068968482238954 +2019-04-07 16:45:00,25.0,0.044179894,24.067206706314476 +2019-04-07 17:00:00,25.0,0.04047619,24.06544505036803 +2019-04-07 17:15:00,25.0,0.039550265,24.063683514626202 +2019-04-07 17:30:00,25.0,0.041005291,24.061922099315566 +2019-04-07 17:45:00,25.0,0.040608466,24.06016080466268 +2019-04-07 18:00:00,25.0,0.042460317,24.058399630894087 +2019-04-07 18:15:00,25.0,0.045238095,24.05663857823631 +2019-04-07 18:30:00,25.0,0.047619048,24.054877646915866 +2019-04-07 18:45:00,25.0,0.05462963,24.053116837159244 +2019-04-07 19:00:00,25.0,0.064417989,24.051356149192923 +2019-04-07 19:15:00,25.0,0.073544974,24.04959558324337 +2019-04-07 19:30:00,25.0,0.083597884,24.047835139537032 +2019-04-07 19:45:00,25.0,0.088888889,24.04607481830034 +2019-04-07 20:00:00,25.0,0.093783069,24.044314619759714 +2019-04-07 20:15:00,25.0,0.101190476,24.042554544141552 +2019-04-07 20:30:00,25.0,0.106746032,24.040794591672242 +2019-04-07 20:45:00,25.0,0.110978836,24.039034762578147 +2019-04-07 21:00:00,25.0,0.111640212,24.037275057085626 +2019-04-07 21:15:00,25.0,0.114021164,24.03551547542101 +2019-04-07 21:30:00,25.0,0.112169312,24.03375601781063 +2019-04-07 21:45:00,25.0,0.110185185,24.031996684480788 +2019-04-07 22:00:00,25.0,0.115873016,24.03023747565777 +2019-04-07 22:15:00,25.0,0.120767196,24.02847839156785 +2019-04-07 22:30:00,25.0,0.128439153,24.02671943243729 +2019-04-07 22:45:00,25.0,0.133465608,24.024960598492324 +2019-04-07 23:00:00,25.0,0.137830688,24.023201889959186 +2019-04-07 23:15:00,25.0,0.134391534,24.02144330706408 +2019-04-07 23:30:00,25.0,0.135449735,24.019684850033197 +2019-04-07 23:45:00,25.0,0.146825397,24.01792651909272 +2019-04-08 00:00:00,25.0,0.147619048,24.016168314468803 +2019-04-08 00:15:00,25.0,0.143253968,24.014410236387597 +2019-04-08 00:30:00,25.0,0.139417989,24.012652285075223 +2019-04-08 00:45:00,25.0,0.134259259,24.0108944607578 +2019-04-08 01:00:00,25.0,0.128968254,24.009136763661417 +2019-04-08 01:15:00,25.0,0.130952381,24.00737919401216 +2019-04-08 01:30:00,25.0,0.125661376,24.005621752036085 +2019-04-08 01:45:00,25.0,0.121560847,24.00386443795924 +2019-04-08 02:00:00,25.0,0.112698413,24.002107252007654 +2019-04-08 02:15:00,25.0,0.103571429,24.000350194407346 +2019-04-08 02:30:00,25.0,0.10515873,23.998593265384308 +2019-04-08 02:45:00,25.0,0.113756614,23.99683646516452 +2019-04-08 03:00:00,25.0,0.121825397,23.995079793973947 +2019-04-08 03:15:00,25.0,0.123544974,23.993323252038536 +2019-04-08 03:30:00,25.0,0.133730159,23.991566839584216 +2019-04-08 03:45:00,25.0,0.148412698,23.989810556836904 +2019-04-08 04:00:00,25.0,0.163227513,23.988054404022495 +2019-04-08 04:15:00,25.0,0.183333333,23.98629838136687 +2019-04-08 04:30:00,25.0,0.206613757,23.984542489095894 +2019-04-08 04:45:00,25.0,0.237566138,23.98278672743541 +2019-04-08 05:00:00,25.0,0.264153439,23.98103109661125 +2019-04-08 05:15:00,25.0,0.242195767,23.97927559684923 +2019-04-08 05:30:00,25.0,0.251587302,23.97752022837514 +2019-04-08 05:45:00,25.0,0.254497354,23.97576499141477 +2019-04-08 06:00:00,25.0,0.270634921,23.974009886193873 +2019-04-08 06:15:00,25.0,0.303439153,23.9722549129382 +2019-04-08 06:30:00,25.0,0.377513228,23.970500071873477 +2019-04-08 06:45:00,25.0,0.406878307,23.968745363225416 +2019-04-08 07:00:00,25.0,0.41005291,23.966990787219714 +2019-04-08 07:15:00,25.0,0.409259259,23.965236344082044 +2019-04-08 07:30:00,25.0,0.414814815,23.96348203403807 +2019-04-08 07:45:00,25.0,0.429232804,23.961727857313438 +2019-04-08 08:00:00,25.0,0.433862434,23.959973814133768 +2019-04-08 08:15:00,25.0,0.455026455,23.958219904724675 +2019-04-08 08:30:00,25.0,0.434391534,23.956466129311746 +2019-04-08 08:45:00,25.0,0.441666667,23.954712488120556 +2019-04-08 09:00:00,25.0,0.446693122,23.952958981376668 +2019-04-08 09:15:00,25.0,0.457539683,23.951205609305617 +2019-04-08 09:30:00,25.0,0.476984127,23.949452372132928 +2019-04-08 09:45:00,25.0,0.49973545,23.947699270084104 +2019-04-08 10:00:00,25.0,0.520502646,23.945946303384634 +2019-04-08 10:15:00,25.0,0.53968254,23.94419347225999 +2019-04-08 10:30:00,25.0,0.543518519,23.942440776935623 +2019-04-08 10:45:00,25.0,0.535185185,23.94068821763697 +2019-04-08 11:00:00,25.0,0.534126984,23.93893579458945 +2019-04-08 11:15:00,25.0,0.537566138,23.937183508018467 +2019-04-08 11:30:00,25.0,0.523677249,23.935431358149398 +2019-04-08 11:45:00,25.0,0.503042328,23.933679345207608 +2019-04-08 12:00:00,25.0,0.490740741,23.931927469418447 +2019-04-08 12:15:00,25.0,0.488227513,23.93017573100725 +2019-04-08 12:30:00,25.0,0.494047619,23.92842413019932 +2019-04-08 12:45:00,25.0,0.498809524,23.926672667219965 +2019-04-08 13:00:00,25.0,0.495502646,23.92492134229445 +2019-04-08 13:15:00,25.0,0.485978836,23.92317015564804 +2019-04-08 13:30:00,25.0,0.481349206,23.921419107505976 +2019-04-08 13:45:00,25.0,0.47989418,23.919668198093483 +2019-04-08 14:00:00,25.0,0.466005291,23.917917427635764 +2019-04-08 14:15:00,25.0,0.447751323,23.91616679635801 +2019-04-08 14:30:00,25.0,0.43968254,23.914416304485393 +2019-04-08 14:45:00,25.0,0.434920635,23.912665952243056 +2019-04-08 15:00:00,25.0,0.43042328,23.910915739856144 +2019-04-08 15:15:00,25.0,0.428835979,23.909165667549768 +2019-04-08 15:30:00,25.0,0.424338624,23.90741573554903 +2019-04-08 15:45:00,25.0,0.424338624,23.905665944079004 +2019-04-08 16:00:00,25.0,0.427380952,23.90391629336476 +2019-04-08 16:15:00,25.0,0.43994709,23.902166783631337 +2019-04-08 16:30:00,25.0,0.447619048,23.90041741510376 +2019-04-08 16:45:00,25.0,0.438888889,23.898668188007044 +2019-04-08 17:00:00,25.0,0.434126984,23.89691910256617 +2019-04-08 17:15:00,25.0,0.428042328,23.895170159006113 +2019-04-08 17:30:00,25.0,0.421560847,23.893421357551826 +2019-04-08 17:45:00,25.0,0.420238095,23.89167269842825 +2019-04-08 18:00:00,25.0,0.419973545,23.889924181860287 +2019-04-08 18:15:00,25.0,0.418386243,23.888175808072848 +2019-04-08 18:30:00,25.0,0.428571429,23.88642757729081 +2019-04-08 18:45:00,25.0,0.439285714,23.88467948973903 +2019-04-08 19:00:00,25.0,0.453835979,23.882931545642357 +2019-04-08 19:15:00,25.0,0.455820106,23.881183745225613 +2019-04-08 19:30:00,25.0,0.463095238,23.879436088713607 +2019-04-08 19:45:00,25.0,0.470238095,23.87768857633112 +2019-04-08 20:00:00,25.0,0.482275132,23.875941208302926 +2019-04-08 20:15:00,25.0,0.492592593,23.874193984853775 +2019-04-08 20:30:00,25.0,0.498677249,23.872446906208395 +2019-04-08 20:45:00,25.0,0.503042328,23.870699972591506 +2019-04-08 21:00:00,25.0,0.505687831,23.8689531842278 +2019-04-08 21:15:00,25.0,0.504497354,23.86720654134195 +2019-04-08 21:30:00,25.0,0.500132275,23.865460044158617 +2019-04-08 21:45:00,25.0,0.497751323,23.863713692902436 +2019-04-08 22:00:00,25.0,0.488227513,23.86196748779803 +2019-04-08 22:15:00,25.0,0.480820106,23.86022142907 +2019-04-08 22:30:00,25.0,0.475529101,23.858475516942924 +2019-04-08 22:45:00,25.0,0.470502646,23.85672975164137 +2019-04-08 23:00:00,25.0,0.461904762,23.85498413338988 +2019-04-08 23:15:00,25.0,0.449338624,23.85323866241298 +2019-04-08 23:30:00,25.0,0.437301587,23.851493338935175 +2019-04-08 23:45:00,25.0,0.423809524,23.849748163180955 +2019-04-09 00:00:00,25.0,0.40978836,23.84800313537479 +2019-04-09 00:15:00,25.0,0.403042328,23.846258255741123 +2019-04-09 00:30:00,25.0,0.390608466,23.844513524504393 +2019-04-09 00:45:00,25.0,0.384259259,23.842768941889002 +2019-04-09 01:00:00,25.0,0.376190476,23.84102450811935 +2019-04-09 01:15:00,25.0,0.373809524,23.839280223419806 +2019-04-09 01:30:00,25.0,0.365873016,23.837536088014723 +2019-04-09 01:45:00,25.0,0.351984127,23.83579210212844 +2019-04-09 02:00:00,25.0,0.338492063,23.834048265985274 +2019-04-09 02:15:00,25.0,0.328835979,23.832304579809513 +2019-04-09 02:30:00,25.0,0.326719577,23.83056104382544 +2019-04-09 02:45:00,25.0,0.335185185,23.82881765825731 +2019-04-09 03:00:00,25.0,0.332142857,23.827074423329364 +2019-04-09 03:15:00,25.0,0.325396825,23.825331339265816 +2019-04-09 03:30:00,25.0,0.317063492,23.823588406290874 +2019-04-09 03:45:00,25.0,0.312301587,23.82184562462871 +2019-04-09 04:00:00,25.0,0.307275132,23.82010299450349 +2019-04-09 04:15:00,25.0,0.305026455,23.81836051613935 +2019-04-09 04:30:00,25.0,0.299867725,23.816618189760412 +2019-04-09 04:45:00,25.0,0.292989418,23.814876015590784 +2019-04-09 05:00:00,25.0,0.294312169,23.813133993854542 +2019-04-09 05:15:00,25.0,0.295238095,23.811392124775757 +2019-04-09 05:30:00,25.0,0.288624339,23.809650408578463 +2019-04-09 05:45:00,25.0,0.278571429,23.80790884548669 +2019-04-09 06:00:00,25.0,0.255291005,23.806167435724436 +2019-04-09 06:15:00,25.0,0.252380952,23.80442617951569 +2019-04-09 06:30:00,25.0,0.249074074,23.802685077084412 +2019-04-09 06:45:00,25.0,0.257407407,23.800944128654553 +2019-04-09 07:00:00,25.0,0.264021164,23.799203334450038 +2019-04-09 07:15:00,25.0,0.267592593,23.79746269469476 +2019-04-09 07:30:00,25.0,0.265608466,23.795722209612617 +2019-04-09 07:45:00,25.0,0.270634921,23.79398187942747 +2019-04-09 08:00:00,25.0,0.27989418,23.79224170436316 +2019-04-09 08:15:00,25.0,0.287962963,23.79050168464352 +2019-04-09 08:30:00,25.0,0.291534392,23.78876182049235 +2019-04-09 08:45:00,25.0,0.296825397,23.787022112133442 +2019-04-09 09:00:00,25.0,0.308730159,23.785282559790552 +2019-04-09 09:15:00,25.0,0.319179894,23.783543163687426 +2019-04-09 09:30:00,25.0,0.324867725,23.781803924047797 +2019-04-09 09:45:00,25.0,0.319179894,23.780064841095367 +2019-04-09 10:00:00,25.0,0.315873016,23.778325915053816 +2019-04-09 10:15:00,25.0,0.311243386,23.776587146146817 +2019-04-09 10:30:00,25.0,0.303306878,23.774848534598004 +2019-04-09 10:45:00,25.0,0.307275132,23.77311008063101 +2019-04-09 11:00:00,25.0,0.314021164,23.771371784469437 +2019-04-09 11:15:00,25.0,0.309391534,23.769633646336864 +2019-04-09 11:30:00,25.0,0.309259259,23.76789566645686 +2019-04-09 11:45:00,25.0,0.303571429,23.766157845052966 +2019-04-09 12:00:00,25.0,0.302248677,23.764420182348708 +2019-04-09 12:15:00,25.0,0.300661376,23.76268267856758 +2019-04-09 12:30:00,25.0,0.303835979,23.76094533393307 +2019-04-09 12:45:00,25.0,0.306613757,23.759208148668638 +2019-04-09 13:00:00,25.0,0.307804233,23.757471122997725 +2019-04-09 13:15:00,25.0,0.305026455,23.75573425714375 +2019-04-09 13:30:00,25.0,0.302248677,23.753997551330112 +2019-04-09 13:45:00,25.0,0.298015873,23.7522610057802 +2019-04-09 14:00:00,25.0,0.294973545,23.750524620717353 +2019-04-09 14:15:00,25.0,0.286507937,23.748788396364926 +2019-04-09 14:30:00,25.0,0.276455026,23.74705233294623 +2019-04-09 14:45:00,25.0,0.26984127,23.74531643068456 +2019-04-09 15:00:00,25.0,0.278439153,23.743580689803196 +2019-04-09 15:15:00,25.0,0.290873016,23.74184511052539 +2019-04-09 15:30:00,25.0,0.308333333,23.740109693074377 +2019-04-09 15:45:00,25.0,0.329497354,23.738374437673368 +2019-04-09 16:00:00,25.0,0.351058201,23.73663934454556 +2019-04-09 16:15:00,25.0,0.36957672,23.73490441391412 +2019-04-09 16:30:00,25.0,0.384920635,23.733169646002203 +2019-04-09 16:45:00,25.0,0.388359788,23.731435041032935 +2019-04-09 17:00:00,25.0,0.391931217,23.72970059922943 +2019-04-09 17:15:00,25.0,0.402513228,23.727966320814772 +2019-04-09 17:30:00,25.0,0.412698413,23.72623220601203 +2019-04-09 17:45:00,25.0,0.41521164,23.724498255044246 +2019-04-09 18:00:00,25.0,0.414285714,23.722764468134447 +2019-04-09 18:15:00,25.0,0.408201058,23.721030845505638 +2019-04-09 18:30:00,25.0,0.404232804,23.719297387380802 +2019-04-09 18:45:00,25.0,0.404100529,23.7175640939829 +2019-04-09 19:00:00,25.0,0.404497354,23.71583096553487 +2019-04-09 19:15:00,25.0,0.407275132,23.714098002259632 +2019-04-09 19:30:00,25.0,0.403703704,23.712365204380085 +2019-04-09 19:45:00,25.0,0.400396825,23.710632572119103 +2019-04-09 20:00:00,25.0,0.396164021,23.70890010569954 +2019-04-09 20:15:00,25.0,0.375925926,23.707167805344238 +2019-04-09 20:30:00,25.0,0.371825397,23.705435671276003 +2019-04-09 20:45:00,25.0,0.362037037,23.703703703717625 +2019-04-09 21:00:00,25.0,0.344708995,23.701971902891877 +2019-04-09 21:15:00,25.0,0.331084656,23.700240269021503 +2019-04-09 21:30:00,25.0,0.311904762,23.698508802329236 +2019-04-09 21:45:00,25.0,0.294179894,23.696777503037776 +2019-04-09 22:00:00,25.0,0.276719577,23.695046371369813 +2019-04-09 22:15:00,25.0,0.261375661,23.693315407548003 +2019-04-09 22:30:00,25.0,0.25026455,23.691584611794987 +2019-04-09 22:45:00,25.0,0.238624339,23.689853984333382 +2019-04-09 23:00:00,25.0,0.228042328,23.688123525385794 +2019-04-09 23:15:00,25.0,0.214814815,23.68639323517479 +2019-04-09 23:30:00,25.0,0.200132275,23.68466311392293 +2019-04-09 23:45:00,25.0,0.19047619,23.682933161852745 +2019-04-10 00:00:00,25.0,0.182936508,23.68120337918674 +2019-04-10 00:15:00,25.0,0.174074074,23.67947376614741 +2019-04-10 00:30:00,25.0,0.177777778,23.677744322957217 +2019-04-10 00:45:00,25.0,0.191798942,23.67601504983861 +2019-04-10 01:00:00,25.0,0.216402116,23.67428594701401 +2019-04-10 01:15:00,25.0,0.232539683,23.67255701470582 +2019-04-10 01:30:00,25.0,0.241402116,23.670828253136417 +2019-04-10 01:45:00,25.0,0.247883598,23.669099662528158 +2019-04-10 02:00:00,25.0,0.248544974,23.667371243103382 +2019-04-10 02:15:00,25.0,0.254365079,23.665642995084397 +2019-04-10 02:30:00,25.0,0.250793651,23.663914918693497 +2019-04-10 02:45:00,25.0,0.248412698,23.662187014152952 +2019-04-10 03:00:00,25.0,0.248677249,23.660459281685014 +2019-04-10 03:15:00,25.0,0.25026455,23.658731721511895 +2019-04-10 03:30:00,25.0,0.254100529,23.65700433385581 +2019-04-10 03:45:00,25.0,0.258068783,23.65527711893893 +2019-04-10 04:00:00,25.0,0.26031746,23.65355007698342 +2019-04-10 04:15:00,25.0,0.266534392,23.651823208211418 +2019-04-10 04:30:00,25.0,0.26521164,23.650096512845032 +2019-04-10 04:45:00,25.0,0.276058201,23.648369991106353 +2019-04-10 05:00:00,25.0,0.296693122,23.646643643217455 +2019-04-10 05:15:00,25.0,0.314417989,23.644917469400383 +2019-04-10 05:30:00,25.0,0.324470899,23.64319146987716 +2019-04-10 05:45:00,25.0,0.33531746,23.64146564486979 +2019-04-10 06:00:00,25.0,0.344312169,23.63973999460025 +2019-04-10 06:15:00,25.0,0.357010582,23.638014519290504 +2019-04-10 06:30:00,25.0,0.322883598,23.636289219162478 +2019-04-10 06:45:00,25.0,0.324603175,23.63456409443809 +2019-04-10 07:00:00,25.0,0.331878307,23.632839145339226 +2019-04-10 07:15:00,25.0,0.334126984,23.63111437208775 +2019-04-10 07:30:00,25.0,0.336243386,23.629389774905516 +2019-04-10 07:45:00,25.0,0.333597884,23.627665354014336 +2019-04-10 08:00:00,25.0,0.327380952,23.62594110963602 +2019-04-10 08:15:00,25.0,0.322883598,23.62421704199233 +2019-04-10 08:30:00,25.0,0.324074074,23.622493151305033 +2019-04-10 08:45:00,25.0,0.326190476,23.62076943779585 +2019-04-10 09:00:00,25.0,0.323280423,23.619045901686494 +2019-04-10 09:15:00,25.0,0.318518519,23.61732254319865 +2019-04-10 09:30:00,25.0,0.304497354,23.61559936255398 +2019-04-10 09:45:00,25.0,0.292857143,23.61387635997412 +2019-04-10 10:00:00,25.0,0.283994709,23.61215353568069 +2019-04-10 10:15:00,25.0,0.28015873,23.610430889895284 +2019-04-10 10:30:00,25.0,0.273941799,23.608708422839474 +2019-04-10 10:45:00,25.0,0.268253968,23.606986134734804 +2019-04-10 11:00:00,25.0,0.257804233,23.6052640258028 +2019-04-10 11:15:00,25.0,0.248280423,23.603542096264963 +2019-04-10 11:30:00,25.0,0.23452381,23.601820346342773 +2019-04-10 11:45:00,25.0,0.219047619,23.600098776257685 +2019-04-10 12:00:00,25.0,0.206613757,23.59837738623113 +2019-04-10 12:15:00,25.0,0.208994709,23.596656176484522 +2019-04-10 12:30:00,25.0,0.204100529,23.59493514723924 +2019-04-10 12:45:00,25.0,0.201190476,23.593214298716653 +2019-04-10 13:00:00,25.0,0.207804233,23.591493631138096 +2019-04-10 13:15:00,25.0,0.207804233,23.589773144724887 +2019-04-10 13:30:00,25.0,0.21005291,23.588052839698317 +2019-04-10 13:45:00,25.0,0.209391534,23.58633271627966 +2019-04-10 14:00:00,25.0,0.210846561,23.58461277469016 +2019-04-10 14:15:00,25.0,0.218253968,23.582893015151036 +2019-04-10 14:30:00,25.0,0.220767196,23.581173437883496 +2019-04-10 14:45:00,25.0,0.228439153,23.579454043108708 +2019-04-10 15:00:00,25.0,0.231878307,23.577734831047827 +2019-04-10 15:15:00,25.0,0.238359788,23.576015801921987 +2019-04-10 15:30:00,25.0,0.243386243,23.574296955952285 +2019-04-10 15:45:00,25.0,0.252513228,23.572578293359808 +2019-04-10 16:00:00,25.0,0.26957672,23.570859814365612 +2019-04-10 16:15:00,25.0,0.284126984,23.569141519190737 +2019-04-10 16:30:00,25.0,0.282671958,23.567423408056186 +2019-04-10 16:45:00,25.0,0.281349206,23.565705481182952 +2019-04-10 17:00:00,25.0,0.292195767,23.563987738791997 +2019-04-10 17:15:00,25.0,0.300793651,23.562270181104264 +2019-04-10 17:30:00,25.0,0.296428571,23.560552808340663 +2019-04-10 17:45:00,25.0,0.291666667,23.558835620722093 +2019-04-10 18:00:00,25.0,0.288492063,23.55711861846942 +2019-04-10 18:15:00,25.0,0.283597884,23.555401801803487 +2019-04-10 18:30:00,25.0,0.278306878,23.553685170945116 +2019-04-10 18:45:00,25.0,0.273015873,23.551968726115106 +2019-04-10 19:00:00,25.0,0.26984127,23.55025246753423 +2019-04-10 19:15:00,25.0,0.285449735,23.54853639542323 +2019-04-10 19:30:00,25.0,0.29510582,23.546820510002842 +2019-04-10 19:45:00,25.0,0.291666667,23.54510481149376 +2019-04-10 20:00:00,25.0,0.286904762,23.543389300116665 +2019-04-10 20:15:00,25.0,0.277116402,23.541673976092206 +2019-04-10 20:30:00,25.0,0.271164021,23.539958839641017 +2019-04-10 20:45:00,25.0,0.272751323,23.538243890983697 +2019-04-10 21:00:00,25.0,0.273148148,23.53652913034083 +2019-04-10 21:15:00,25.0,0.271296296,23.534814557932975 +2019-04-10 21:30:00,25.0,0.266005291,23.53310017398066 +2019-04-10 21:45:00,25.0,0.26031746,23.531385978704392 +2019-04-10 22:00:00,25.0,0.250396825,23.52967197232466 +2019-04-10 22:15:00,25.0,0.233465608,23.52795815506192 +2019-04-10 22:30:00,25.0,0.231613757,23.52624452713661 +2019-04-10 22:45:00,25.0,0.21547619,23.524531088769137 +2019-04-10 23:00:00,25.0,0.219179894,23.522817840179886 +2019-04-10 23:15:00,25.0,0.208465608,23.521104781589226 +2019-04-10 23:30:00,25.0,0.190343915,23.51939191321749 +2019-04-10 23:45:00,25.0,0.173809524,23.51767923528499 +2019-04-11 00:00:00,25.0,0.15978836,23.515966748012016 +2019-04-11 00:15:00,25.0,0.152116402,23.514254451618832 +2019-04-11 00:30:00,25.0,0.139285714,23.51254234632568 +2019-04-11 00:45:00,25.0,0.132539683,23.510830432352773 +2019-04-11 01:00:00,25.0,0.125132275,23.5091187099203 +2019-04-11 01:15:00,25.0,0.124074074,23.50740717924843 +2019-04-11 01:30:00,25.0,0.126719577,23.505695840557298 +2019-04-11 01:45:00,25.0,0.124206349,23.503984694067025 +2019-04-11 02:00:00,25.0,0.117857143,23.502273739997705 +2019-04-11 02:15:00,25.0,0.117857143,23.500562978569402 +2019-04-11 02:30:00,25.0,0.112301587,23.498852410002154 +2019-04-11 02:45:00,25.0,0.109259259,23.497142034515985 +2019-04-11 03:00:00,25.0,0.11031746,23.49543185233088 +2019-04-11 03:15:00,25.0,0.105291005,23.493721863666817 +2019-04-11 03:30:00,25.0,0.110714286,23.49201206874373 +2019-04-11 03:45:00,25.0,0.11031746,23.49030246778154 +2019-04-11 04:00:00,25.0,0.104497354,23.488593061000138 +2019-04-11 04:15:00,25.0,0.10026455,23.486883848619396 +2019-04-11 04:30:00,25.0,0.095767196,23.48517483085915 +2019-04-11 04:45:00,25.0,0.090740741,23.483466007939228 +2019-04-11 05:00:00,25.0,0.088095238,23.48175738007941 +2019-04-11 05:15:00,25.0,0.087698413,23.480048947499476 +2019-04-11 05:30:00,25.0,0.089417989,23.47834071041916 +2019-04-11 05:45:00,25.0,0.085185185,23.476632669058183 +2019-04-11 06:00:00,25.0,0.081216931,23.474924823636236 +2019-04-11 06:15:00,25.0,0.082936508,23.473217174372987 +2019-04-11 06:30:00,25.0,0.079761905,23.47150972148808 +2019-04-11 06:45:00,25.0,0.08015873,23.469802465201127 +2019-04-11 07:00:00,25.0,0.082407407,23.46809540573172 +2019-04-11 07:15:00,25.0,0.080291005,23.466388543299427 +2019-04-11 07:30:00,25.0,0.080555556,23.464681878123788 +2019-04-11 07:45:00,25.0,0.082539683,23.462975410424317 +2019-04-11 08:00:00,25.0,0.082671958,23.461269140420505 +2019-04-11 08:15:00,25.0,0.083730159,23.459563068331818 +2019-04-11 08:30:00,25.0,0.083201058,23.45785719437769 +2019-04-11 08:45:00,25.0,0.078571429,23.456151518777542 +2019-04-11 09:00:00,25.0,0.075925926,23.454446041750757 +2019-04-11 09:15:00,25.0,0.076322751,23.452740763516694 +2019-04-11 09:30:00,25.0,0.074338624,23.451035684294695 +2019-04-11 09:45:00,25.0,0.072619048,23.449330804304072 +2019-04-11 10:00:00,25.0,0.068915344,23.447626123764106 +2019-04-11 10:15:00,25.0,0.062698413,23.44592164289406 +2019-04-11 10:30:00,25.0,0.057804233,23.44421736191317 +2019-04-11 10:45:00,25.0,0.054761905,23.44251328104064 +2019-04-11 11:00:00,25.0,0.05,23.440809400495656 +2019-04-11 11:15:00,25.0,0.046031746,23.439105720497373 +2019-04-11 11:30:00,25.0,0.043783069,23.437402241264927 +2019-04-11 11:45:00,25.0,0.047222222,23.435698963017416 +2019-04-11 12:00:00,25.0,0.047486772,23.43399588597393 +2019-04-11 12:15:00,25.0,0.047354497,23.43229301035351 +2019-04-11 12:30:00,25.0,0.047619048,23.430590336375193 +2019-04-11 12:45:00,25.0,0.04457672,23.428887864257977 +2019-04-11 13:00:00,25.0,0.045899471,23.427185594220838 +2019-04-11 13:15:00,25.0,0.04484127,23.425483526482726 +2019-04-11 13:30:00,25.0,0.042195767,23.423781661262566 +2019-04-11 13:45:00,25.0,0.044179894,23.42207999877926 +2019-04-11 14:00:00,25.0,0.051587302,23.420378539251672 +2019-04-11 14:15:00,25.0,0.06005291,23.41867728289865 +2019-04-11 14:30:00,25.0,0.071296296,23.416976229939014 +2019-04-11 14:45:00,25.0,0.077116402,23.41527538059156 +2019-04-11 15:00:00,25.0,0.082671958,23.41357473507505 +2019-04-11 15:15:00,25.0,0.084656085,23.41187429360823 +2019-04-11 15:30:00,25.0,0.08452381,23.410174056409815 +2019-04-11 15:45:00,25.0,0.08478836,23.40847402369849 +2019-04-11 16:00:00,25.0,0.083730159,23.406774195692915 +2019-04-11 16:15:00,25.0,0.081216931,23.40507457261173 +2019-04-11 16:30:00,25.0,0.081746032,23.403375154673544 +2019-04-11 16:45:00,25.0,0.088756614,23.40167594209694 +2019-04-11 17:00:00,25.0,0.091931217,23.399976935100476 +2019-04-11 17:15:00,25.0,0.102248677,23.39827813390268 +2019-04-11 17:30:00,25.0,0.107010582,23.39657953872205 +2019-04-11 17:45:00,25.0,0.108994709,23.394881149777078 +2019-04-11 18:00:00,25.0,0.112433862,23.3931829672862 +2019-04-11 18:15:00,25.0,0.121296296,23.39148499146785 +2019-04-11 18:30:00,25.0,0.123809524,23.38978722254042 +2019-04-11 18:45:00,25.0,0.122751323,23.388089660722283 +2019-04-11 19:00:00,25.0,0.137037037,23.386392306231784 +2019-04-11 19:15:00,25.0,0.155820106,23.38469515928724 +2019-04-11 19:30:00,25.0,0.164285714,23.38299822010694 +2019-04-11 19:45:00,25.0,0.166798942,23.381301488909152 +2019-04-11 20:00:00,25.0,0.179497354,23.37960496591211 +2019-04-11 20:15:00,25.0,0.181216931,23.377908651334028 +2019-04-11 20:30:00,25.0,0.172089947,23.376212545393088 +2019-04-11 20:45:00,25.0,0.163492063,23.37451664830745 +2019-04-11 21:00:00,25.0,0.153306878,23.372820960295233 +2019-04-11 21:15:00,25.0,0.147883598,23.371125481574555 +2019-04-11 21:30:00,25.0,0.14537037,23.369430212363483 +2019-04-11 21:45:00,25.0,0.141534392,23.367735152880073 +2019-04-11 22:00:00,25.0,0.14510582,23.366040303342345 +2019-04-11 22:15:00,25.0,0.143253968,23.36434566396829 +2019-04-11 22:30:00,25.0,0.133994709,23.36265123497588 +2019-04-11 22:45:00,25.0,0.136904762,23.360957016583058 +2019-04-11 23:00:00,25.0,0.146693122,23.359263009007734 +2019-04-11 23:15:00,25.0,0.147751323,23.3575692124678 +2019-04-11 23:30:00,25.0,0.139814815,23.355875627181113 +2019-04-11 23:45:00,25.0,0.130687831,23.354182253365508 +2019-04-12 00:00:00,25.0,0.124867725,23.35248909123879 +2019-04-12 00:15:00,25.0,0.124470899,23.350796141018733 +2019-04-12 00:30:00,25.0,0.121296296,23.349103402923095 +2019-04-12 00:45:00,25.0,0.124338624,23.347410877169597 +2019-04-12 01:00:00,25.0,0.123941799,23.345718563975936 +2019-04-12 01:15:00,25.0,0.123148148,23.34402646355978 +2019-04-12 01:30:00,25.0,0.129100529,23.34233457613877 +2019-04-12 01:45:00,25.0,0.138888889,23.340642901930522 +2019-04-12 02:00:00,25.0,0.149470899,23.338951441152624 +2019-04-12 02:15:00,25.0,0.146825397,23.337260194022633 +2019-04-12 02:30:00,25.0,0.137169312,23.335569160758084 +2019-04-12 02:45:00,25.0,0.142195767,23.333878341576483 +2019-04-12 03:00:00,25.0,0.145767196,23.332187736695303 +2019-04-12 03:15:00,25.0,0.152645503,23.330497346331995 +2019-04-12 03:30:00,25.0,0.157671958,23.32880717070398 +2019-04-12 03:45:00,25.0,0.166137566,23.327117210028653 +2019-04-12 04:00:00,25.0,0.168783069,23.32542746452338 +2019-04-12 04:15:00,25.0,0.171825397,23.3237379344055 +2019-04-12 04:30:00,25.0,0.171560847,23.32204861989233 +2019-04-12 04:45:00,25.0,0.167989418,23.320359521201144 +2019-04-12 05:00:00,25.0,0.166931217,23.318670638549204 +2019-04-12 05:15:00,25.0,0.168783069,23.316981972153737 +2019-04-12 05:30:00,25.0,0.162830688,23.315293522231944 +2019-04-12 05:45:00,25.0,0.157804233,23.313605289000993 +2019-04-12 06:00:00,25.0,0.167592593,23.31191727267803 +2019-04-12 06:15:00,25.0,0.172883598,23.310229473480177 +2019-04-12 06:30:00,25.0,0.183465608,23.308541891624518 +2019-04-12 06:45:00,25.0,0.182936508,23.306854527328113 +2019-04-12 07:00:00,25.0,0.188095238,23.305167380807998 +2019-04-12 07:15:00,25.0,0.183597884,23.30348045228117 +2019-04-12 07:30:00,25.0,0.211772487,23.301793741964616 +2019-04-12 07:45:00,25.0,0.22962963,23.30010725007528 +2019-04-12 08:00:00,25.0,0.242195767,23.298420976830084 +2019-04-12 08:15:00,25.0,0.23505291,23.296734922445914 +2019-04-12 08:30:00,25.0,0.224074074,23.295049087139642 +2019-04-12 08:45:00,25.0,0.215740741,23.2933634711281 +2019-04-12 09:00:00,25.0,0.224074074,23.291678074628095 +2019-04-12 09:15:00,25.0,0.236375661,23.28999289785641 +2019-04-12 09:30:00,25.0,0.202248677,23.288307941029796 +2019-04-12 09:45:00,25.0,0.19047619,23.286623204364975 +2019-04-12 10:00:00,25.0,0.208068783,23.28493868807864 +2019-04-12 10:15:00,25.0,0.212566138,23.283254392387462 +2019-04-12 10:30:00,25.0,0.203306878,23.28157031750807 +2019-04-12 10:45:00,25.0,0.173941799,23.279886463657085 +2019-04-12 11:00:00,25.0,0.140740741,23.27820283105108 +2019-04-12 11:15:00,25.0,0.115873016,23.276519419906613 +2019-04-12 11:30:00,25.0,0.10489418,23.274836230440204 +2019-04-12 11:45:00,25.0,0.103042328,23.273153262868348 +2019-04-12 12:00:00,25.0,0.10462963,23.27147051740752 +2019-04-12 12:15:00,25.0,0.110846561,23.269787994274147 +2019-04-12 12:30:00,25.0,0.103835979,23.26810569368465 +2019-04-12 12:45:00,25.0,0.094708995,23.266423615855402 +2019-04-12 13:00:00,25.0,0.087037037,23.264741761002764 +2019-04-12 13:15:00,25.0,0.085714286,23.263060129343053 +2019-04-12 13:30:00,25.0,0.082936508,23.261378721092566 +2019-04-12 13:45:00,25.0,0.099206349,23.25969753646757 +2019-04-12 14:00:00,25.0,0.130291005,23.2580165756843 +2019-04-12 14:15:00,25.0,0.134656085,23.256335838958975 +2019-04-12 14:30:00,25.0,0.134920635,23.254655326507766 +2019-04-12 14:45:00,25.0,0.11957672,23.25297503854683 +2019-04-12 15:00:00,25.0,0.103968254,23.251294975292282 +2019-04-12 15:15:00,25.0,0.108730159,23.24961513696022 +2019-04-12 15:30:00,25.0,0.111772487,23.24793552376671 +2019-04-12 15:45:00,25.0,0.117857143,23.246256135927787 +2019-04-12 16:00:00,25.0,0.127248677,23.244576973659456 +2019-04-12 16:15:00,25.0,0.141666667,23.2428980371777 +2019-04-12 16:30:00,25.0,0.161111111,23.24121932669846 +2019-04-12 16:45:00,25.0,0.167592593,23.23954084243766 +2019-04-12 17:00:00,25.0,0.181878307,23.23786258461119 +2019-04-12 17:15:00,25.0,0.201984127,23.23618455343491 +2019-04-12 17:30:00,25.0,0.219312169,23.234506749124655 +2019-04-12 17:45:00,25.0,0.233333333,23.232829171896228 +2019-04-12 18:00:00,25.0,0.233068783,23.231151821965398 +2019-04-12 18:15:00,25.0,0.223148148,23.229474699547914 +2019-04-12 18:30:00,25.0,0.222883598,23.22779780485949 +2019-04-12 18:45:00,25.0,0.265873016,23.226121138115815 +2019-04-12 19:00:00,25.0,0.281084656,23.224444699532544 +2019-04-12 19:15:00,25.0,0.302777778,23.2227684893253 +2019-04-12 19:30:00,25.0,0.323412698,23.221092507709688 +2019-04-12 19:45:00,25.0,0.309259259,23.219416754901275 +2019-04-12 20:00:00,25.0,0.276058201,23.217741231115593 +2019-04-12 20:15:00,25.0,0.255952381,23.21606593656816 +2019-04-12 20:30:00,25.0,0.257275132,23.214390871474453 +2019-04-12 20:45:00,25.0,0.266931217,23.212716036049923 +2019-04-12 21:00:00,25.0,0.277248677,23.211041430509994 +2019-04-12 21:15:00,25.0,0.267063492,23.209367055070054 +2019-04-12 21:30:00,25.0,0.258597884,23.207692909945465 +2019-04-12 21:45:00,25.0,0.254365079,23.20601899535156 +2019-04-12 22:00:00,25.0,0.245502646,23.204345311503644 +2019-04-12 22:15:00,25.0,0.228306878,23.202671858616988 +2019-04-12 22:30:00,25.0,0.229365079,23.200998636906835 +2019-04-12 22:45:00,25.0,0.235185185,23.1993256465884 +2019-04-12 23:00:00,25.0,0.244312169,23.19765288787687 +2019-04-12 23:15:00,25.0,0.229232804,23.19598036098739 +2019-04-12 23:30:00,25.0,0.216666667,23.194308066135093 +2019-04-12 23:45:00,25.0,0.220767196,23.192636003535068 +2019-04-13 00:00:00,25.0,0.213359788,23.190964173402385 +2019-04-13 00:15:00,25.0,0.205026455,23.189292575952074 +2019-04-13 00:30:00,25.0,0.208068783,23.18762121139914 +2019-04-13 00:45:00,25.0,0.228306878,23.18595007995856 +2019-04-13 01:00:00,25.0,0.233730159,23.184279181845277 +2019-04-13 01:15:00,25.0,0.227116402,23.182608517274208 +2019-04-13 01:30:00,25.0,0.232142857,23.180938086460234 +2019-04-13 01:45:00,25.0,0.257010582,23.17926788961821 +2019-04-13 02:00:00,25.0,0.280952381,23.177597926962967 +2019-04-13 02:15:00,25.0,0.292460317,23.175928198709293 +2019-04-13 02:30:00,25.0,0.282010582,23.174258705071956 +2019-04-13 02:45:00,25.0,0.281481481,23.172589446265686 +2019-04-13 03:00:00,25.0,0.294047619,23.17092042250519 +2019-04-13 03:15:00,25.0,0.328306878,23.169251634005143 +2019-04-13 03:30:00,25.0,0.345767196,23.167583080980183 +2019-04-13 03:45:00,25.0,0.310978836,23.165914763644928 +2019-04-13 04:00:00,25.0,0.293386243,23.164246682213964 +2019-04-13 04:15:00,25.0,0.301719577,23.162578836901833 +2019-04-13 04:30:00,25.0,0.298015873,23.160911227923066 +2019-04-13 04:45:00,25.0,0.300529101,23.15924385549215 +2019-04-13 05:00:00,25.0,0.31984127,23.15757671982355 +2019-04-13 05:15:00,25.0,0.320238095,23.155909821131694 +2019-04-13 05:30:00,25.0,0.327248677,23.154243159630983 +2019-04-13 05:45:00,25.0,0.341666667,23.15257673553579 +2019-04-13 06:00:00,25.0,0.330291005,23.15091054906045 +2019-04-13 06:15:00,25.0,0.341931217,23.14924460041927 +2019-04-13 06:30:00,25.0,0.35026455,23.147578889826534 +2019-04-13 06:45:00,25.0,0.370767196,23.145913417496484 +2019-04-13 07:00:00,25.0,0.391402116,23.14424818364334 +2019-04-13 07:15:00,25.0,0.423941799,23.142583188481296 +2019-04-13 07:30:00,25.0,0.454100529,23.140918432224492 +2019-04-13 07:45:00,25.0,0.458333333,23.139253915087064 +2019-04-13 08:00:00,25.0,0.467857143,23.1375896372831 +2019-04-13 08:15:00,25.0,0.476322751,23.135925599026667 +2019-04-13 08:30:00,25.0,0.481878307,23.134261800531796 +2019-04-13 08:45:00,25.0,0.482010582,23.132598242012488 +2019-04-13 09:00:00,25.0,0.466534392,23.130934923682716 +2019-04-13 09:15:00,25.0,0.451587302,23.129271845756417 +2019-04-13 09:30:00,25.0,0.458465608,23.127609008447504 +2019-04-13 09:45:00,25.0,0.473412698,23.12594641196985 +2019-04-13 10:00:00,25.0,0.468253968,23.124284056537306 +2019-04-13 10:15:00,25.0,0.497751323,23.122621942363683 +2019-04-13 10:30:00,25.0,0.506481481,23.12096006966277 +2019-04-13 10:45:00,25.0,0.515873016,23.119298438648325 +2019-04-13 11:00:00,25.0,0.504365079,23.11763704953406 +2019-04-13 11:15:00,25.0,0.49973545,23.115975902533677 +2019-04-13 11:30:00,25.0,0.51521164,23.11431499786083 +2019-04-13 11:45:00,25.0,0.517195767,23.11265433572915 +2019-04-13 12:00:00,25.0,0.505820106,23.11099391635224 +2019-04-13 12:15:00,25.0,0.490079365,23.10933373994366 +2019-04-13 12:30:00,25.0,0.480687831,23.10767380671695 +2019-04-13 12:45:00,25.0,0.493386243,23.10601411688561 +2019-04-13 13:00:00,25.0,0.476851852,23.10435467066312 +2019-04-13 13:15:00,25.0,0.478968254,23.102695468262915 +2019-04-13 13:30:00,25.0,0.488227513,23.10103650989841 +2019-04-13 13:45:00,25.0,0.48452381,23.099377795782985 +2019-04-13 14:00:00,25.0,0.474206349,23.09771932612998 +2019-04-13 14:15:00,25.0,0.462037037,23.09606110115272 +2019-04-13 14:30:00,25.0,0.455026455,23.094403121064484 +2019-04-13 14:45:00,25.0,0.443915344,23.09274538607853 +2019-04-13 15:00:00,25.0,0.460582011,23.091087896408073 +2019-04-13 15:15:00,25.0,0.458465608,23.089430652266312 +2019-04-13 15:30:00,25.0,0.458994709,23.0877736538664 +2019-04-13 15:45:00,25.0,0.46984127,23.086116901421462 +2019-04-13 16:00:00,25.0,0.473544974,23.084460395144596 +2019-04-13 16:15:00,25.0,0.492063492,23.082804135248868 +2019-04-13 16:30:00,25.0,0.489153439,23.081148121947308 +2019-04-13 16:45:00,25.0,0.489285714,23.079492355452913 +2019-04-13 17:00:00,25.0,0.491666667,23.07783683597866 +2019-04-13 17:15:00,25.0,0.503042328,23.076181563737478 +2019-04-13 17:30:00,25.0,0.515343915,23.074526538942273 +2019-04-13 17:45:00,25.0,0.51547619,23.072871761805917 +2019-04-13 18:00:00,25.0,0.531481481,23.071217232541258 +2019-04-13 18:15:00,25.0,0.552645503,23.069562951361096 +2019-04-13 18:30:00,25.0,0.565343915,23.067908918478217 +2019-04-13 18:45:00,25.0,0.550661376,23.066255134105365 +2019-04-13 19:00:00,25.0,0.554497354,23.06460159845525 +2019-04-13 19:15:00,25.0,0.57526455,23.062948311740556 +2019-04-13 19:30:00,25.0,0.564285714,23.06129527417393 +2019-04-13 19:45:00,25.0,0.563227513,23.059642485967988 +2019-04-13 20:00:00,25.0,0.594973545,23.057989947335322 +2019-04-13 20:15:00,25.0,0.613359788,23.05633765848848 +2019-04-13 20:30:00,25.0,0.625925926,23.05468561963999 +2019-04-13 20:45:00,25.0,0.624470899,23.053033831002335 +2019-04-13 21:00:00,25.0,0.595899471,23.05138229278797 +2019-04-13 21:15:00,25.0,0.598544974,23.049731005209328 +2019-04-13 21:30:00,25.0,0.627645503,23.048079968478792 +2019-04-13 21:45:00,25.0,0.646560847,23.046429182808726 +2019-04-13 22:00:00,25.0,0.646428571,23.04477864841146 +2019-04-13 22:15:00,25.0,0.630555556,23.04312836549929 +2019-04-13 22:30:00,25.0,0.627116402,23.041478334284474 +2019-04-13 22:45:00,25.0,0.627777778,23.039828554979245 +2019-04-13 23:00:00,25.0,0.617195767,23.038179027795806 +2019-04-13 23:15:00,25.0,0.624206349,23.036529752946315 +2019-04-13 23:30:00,25.0,0.629497354,23.03488073064291 +2019-04-13 23:45:00,25.0,0.636243386,23.033231961097698 +2019-04-14 00:00:00,25.0,0.653306878,23.031583444522738 +2019-04-14 00:15:00,25.0,0.652248677,23.029935181130067 +2019-04-14 00:30:00,25.0,0.633068783,23.028287171131694 +2019-04-14 00:45:00,25.0,0.617592593,23.026639414739584 +2019-04-14 01:00:00,25.0,0.613095238,23.02499191216568 +2019-04-14 01:15:00,25.0,0.594973545,23.023344663621888 +2019-04-14 01:30:00,25.0,0.580026455,23.021697669320076 +2019-04-14 01:45:00,25.0,0.575132275,23.020050929472088 +2019-04-14 02:00:00,25.0,0.568650794,23.01840444428973 +2019-04-14 02:15:00,25.0,0.566534392,23.016758213984776 +2019-04-14 02:30:00,25.0,0.576587302,23.015112238768968 +2019-04-14 02:45:00,25.0,0.58994709,23.013466518854017 +2019-04-14 03:00:00,25.0,0.593518519,23.011821054451598 +2019-04-14 03:15:00,25.0,0.589153439,23.010175845773357 +2019-04-14 03:30:00,25.0,0.584259259,23.0085308930309 +2019-04-14 03:45:00,25.0,0.595634921,23.006886196435808 +2019-04-14 04:00:00,25.0,0.598412698,23.005241756199627 +2019-04-14 04:15:00,25.0,0.589021164,23.003597572533863 +2019-04-14 04:30:00,25.0,0.582407407,23.001953645649998 +2019-04-14 04:45:00,25.0,0.577910053,23.00030997575948 +2019-04-14 05:00:00,25.0,0.565079365,22.99866656307372 +2019-04-14 05:15:00,25.0,0.55489418,22.997023407804093 +2019-04-14 05:30:00,25.0,0.545634921,22.995380510161954 +2019-04-14 05:45:00,25.0,0.544312169,22.993737870358608 +2019-04-14 06:00:00,25.0,0.54047619,22.99209548860534 +2019-04-14 06:15:00,25.0,0.545767196,22.990453365113396 +2019-04-14 06:30:00,25.0,0.551058201,22.98881150009399 +2019-04-14 06:45:00,25.0,0.54973545,22.987169893758303 +2019-04-14 07:00:00,25.0,0.554365079,22.98552854631748 +2019-04-14 07:15:00,25.0,0.550661376,22.983887457982636 +2019-04-14 07:30:00,25.0,0.52962963,22.98224662896485 +2019-04-14 07:45:00,25.0,0.517460317,22.98060605947517 +2019-04-14 08:00:00,25.0,0.513095238,22.97896574972462 +2019-04-14 08:15:00,25.0,0.512698413,22.97732569992416 +2019-04-14 08:30:00,25.0,0.517063492,22.975685910284753 +2019-04-14 08:45:00,25.0,0.521296296,22.97404638101731 +2019-04-14 09:00:00,25.0,0.522354497,22.972407112332704 +2019-04-14 09:15:00,25.0,0.496825397,22.970768104441788 +2019-04-14 09:30:00,25.0,0.48994709,22.969129357555374 +2019-04-14 09:45:00,25.0,0.498015873,22.96749087188424 +2019-04-14 10:00:00,25.0,0.489153439,22.96585264763913 +2019-04-14 10:15:00,25.0,0.48478836,22.964214685030765 +2019-04-14 10:30:00,25.0,0.481216931,22.962576984269813 +2019-04-14 10:45:00,25.0,0.471031746,22.960939545566923 +2019-04-14 11:00:00,25.0,0.463227513,22.959302369132708 +2019-04-14 11:15:00,25.0,0.449338624,22.95766545517774 +2019-04-14 11:30:00,25.0,0.442195767,22.95602880391257 +2019-04-14 11:45:00,25.0,0.429232804,22.954392415547705 +2019-04-14 12:00:00,25.0,0.41031746,22.952756290293618 +2019-04-14 12:15:00,25.0,0.396164021,22.951120428360753 +2019-04-14 12:30:00,25.0,0.383862434,22.94948482995952 +2019-04-14 12:45:00,25.0,0.380291005,22.94784949530029 +2019-04-14 13:00:00,25.0,0.38015873,22.94621442459341 +2019-04-14 13:15:00,25.0,0.369444444,22.94457961804918 +2019-04-14 13:30:00,25.0,0.374338624,22.942945075877873 +2019-04-14 13:45:00,25.0,0.377645503,22.94131079828973 +2019-04-14 14:00:00,25.0,0.372486772,22.93967678549496 +2019-04-14 14:15:00,25.0,0.378042328,22.938043037703725 +2019-04-14 14:30:00,25.0,0.384259259,22.936409555126165 +2019-04-14 14:45:00,25.0,0.387962963,22.934776337972384 +2019-04-14 15:00:00,25.0,0.382142857,22.933143386452446 +2019-04-14 15:15:00,25.0,0.368121693,22.93151070077639 +2019-04-14 15:30:00,25.0,0.353174603,22.92987828115421 +2019-04-14 15:45:00,25.0,0.36005291,22.928246127795877 +2019-04-14 16:00:00,25.0,0.379761905,22.92661424091132 +2019-04-14 16:15:00,25.0,0.396164021,22.924982620710438 +2019-04-14 16:30:00,25.0,0.384259259,22.923351267403092 +2019-04-14 16:45:00,25.0,0.369708995,22.92172018119911 +2019-04-14 17:00:00,25.0,0.361375661,22.920089362308286 +2019-04-14 17:15:00,25.0,0.355555556,22.91845881094038 +2019-04-14 17:30:00,25.0,0.347089947,22.916828527305118 +2019-04-14 17:45:00,25.0,0.351587302,22.91519851161219 +2019-04-14 18:00:00,25.0,0.360185185,22.913568764071254 +2019-04-14 18:15:00,25.0,0.358862434,22.91193928489193 +2019-04-14 18:30:00,25.0,0.357142857,22.910310074283807 +2019-04-14 18:45:00,25.0,0.355026455,22.908681132456433 +2019-04-14 19:00:00,25.0,0.35462963,22.907052459619333 +2019-04-14 19:15:00,25.0,0.351719577,22.90542405598199 +2019-04-14 19:30:00,25.0,0.367724868,22.903795921753847 +2019-04-14 19:45:00,25.0,0.38994709,22.902168057144326 +2019-04-14 20:00:00,25.0,0.413095238,22.9005404623628 +2019-04-14 20:15:00,25.0,0.433333333,22.89891313761862 +2019-04-14 20:30:00,25.0,0.453042328,22.89728608312109 +2019-04-14 20:45:00,25.0,0.458862434,22.895659299079494 +2019-04-14 21:00:00,25.0,0.456878307,22.894032785703065 +2019-04-14 21:15:00,25.0,0.455555556,22.89240654320101 +2019-04-14 21:30:00,25.0,0.464814815,22.890780571782503 +2019-04-14 21:45:00,25.0,0.470767196,22.88915487165668 +2019-04-14 22:00:00,25.0,0.472089947,22.887529443032637 +2019-04-14 22:15:00,25.0,0.477910053,22.885904286119448 +2019-04-14 22:30:00,25.0,0.47989418,22.88427940112614 +2019-04-14 22:45:00,25.0,0.482275132,22.882654788261707 +2019-04-14 23:00:00,25.0,0.480952381,22.88103044773512 +2019-04-14 23:15:00,25.0,0.485449735,22.879406379755295 +2019-04-14 23:30:00,25.0,0.493121693,22.87778258453113 +2019-04-14 23:45:00,25.0,0.500661376,22.876159062271476 +2019-04-15 00:00:00,25.0,0.503968254,22.87453581318516 +2019-04-15 00:15:00,25.0,0.50026455,22.872912837480964 +2019-04-15 00:30:00,25.0,0.497883598,22.87129013536764 +2019-04-15 00:45:00,25.0,0.491931217,22.869667707053907 +2019-04-15 01:00:00,25.0,0.487433862,22.868045552748438 +2019-04-15 01:15:00,25.0,0.489417989,22.866423672659884 +2019-04-15 01:30:00,25.0,0.488888889,22.86480206699685 +2019-04-15 01:45:00,25.0,0.47037037,22.863180735967923 +2019-04-15 02:00:00,25.0,0.469312169,22.861559679781625 +2019-04-15 02:15:00,25.0,0.471031746,22.859938898646476 +2019-04-15 02:30:00,25.0,0.469312169,22.85831839277093 +2019-04-15 02:45:00,25.0,0.45952381,22.85669816236343 +2019-04-15 03:00:00,25.0,0.453968254,22.85507820763237 +2019-04-15 03:15:00,25.0,0.452645503,22.853458528786117 +2019-04-15 03:30:00,25.0,0.449603175,22.851839126032992 +2019-04-15 03:45:00,25.0,0.451587302,22.850219999581288 +2019-04-15 04:00:00,25.0,0.448148148,22.84860114963926 +2019-04-15 04:15:00,25.0,0.451058201,22.846982576415133 +2019-04-15 04:30:00,25.0,0.450925926,22.84536428011709 +2019-04-15 04:45:00,25.0,0.448280423,22.84374626095327 +2019-04-15 05:00:00,25.0,0.464417989,22.8421285191318 +2019-04-15 05:15:00,25.0,0.479497354,22.840511054860755 +2019-04-15 05:30:00,25.0,0.489285714,22.83889386834817 +2019-04-15 05:45:00,25.0,0.496428571,22.83727695980206 +2019-04-15 06:00:00,25.0,0.49047619,22.835660329430386 +2019-04-15 06:15:00,25.0,0.497619048,22.83404397744109 +2019-04-15 06:30:00,25.0,0.509391534,22.83242790404207 +2019-04-15 06:45:00,25.0,0.520238095,22.830812109441187 +2019-04-15 07:00:00,25.0,0.524074074,22.82919659384627 +2019-04-15 07:15:00,25.0,0.535185185,22.827581357465107 +2019-04-15 07:30:00,25.0,0.530555556,22.825966400505457 +2019-04-15 07:45:00,25.0,0.513624339,22.82435172317504 +2019-04-15 08:00:00,25.0,0.512037037,22.822737325681537 +2019-04-15 08:15:00,25.0,0.505555556,22.821123208232596 +2019-04-15 08:30:00,25.0,0.497089947,22.819509371035828 +2019-04-15 08:45:00,25.0,0.489021164,22.81789581429881 +2019-04-15 09:00:00,25.0,0.479232804,22.816282538229085 +2019-04-15 09:15:00,25.0,0.478306878,22.81466954303415 +2019-04-15 09:30:00,25.0,0.460449735,22.81305682892147 +2019-04-15 09:45:00,25.0,0.468518519,22.811444396098484 +2019-04-15 10:00:00,25.0,0.48042328,22.809832244772583 +2019-04-15 10:15:00,25.0,0.499867725,22.808220375151127 +2019-04-15 10:30:00,25.0,0.50515873,22.806608787441434 +2019-04-15 10:45:00,25.0,0.500529101,22.804997481850798 +2019-04-15 11:00:00,25.0,0.502380952,22.803386458586463 +2019-04-15 11:15:00,25.0,0.505952381,22.80177571785564 +2019-04-15 11:30:00,25.0,0.511772487,22.800165259865516 +2019-04-15 11:45:00,25.0,0.50978836,22.79855508482322 +2019-04-15 12:00:00,25.0,0.507010582,22.796945192935866 +2019-04-15 12:15:00,25.0,0.505687831,22.795335584410516 +2019-04-15 12:30:00,25.0,0.504100529,22.793726259454207 +2019-04-15 12:45:00,25.0,0.499867725,22.792117218273926 +2019-04-15 13:00:00,25.0,0.506746032,22.79050846107664 +2019-04-15 13:15:00,25.0,0.51494709,22.788899988069268 +2019-04-15 13:30:00,25.0,0.512830688,22.787291799458693 +2019-04-15 13:45:00,25.0,0.505555556,22.78568389545177 +2019-04-15 14:00:00,25.0,0.512962963,22.784076276255306 +2019-04-15 14:15:00,25.0,0.517724868,22.782468942076076 +2019-04-15 14:30:00,25.0,0.51984127,22.78086189312082 +2019-04-15 14:45:00,25.0,0.523412698,22.779255129596244 +2019-04-15 15:00:00,25.0,0.527645503,22.77764865170901 +2019-04-15 15:15:00,25.0,0.526322751,22.77604245966575 +2019-04-15 15:30:00,25.0,0.523941799,22.774436553673056 +2019-04-15 15:45:00,25.0,0.529365079,22.772830933937477 +2019-04-15 16:00:00,25.0,0.528835979,22.771225600665538 +2019-04-15 16:15:00,25.0,0.531878307,22.769620554063717 +2019-04-15 16:30:00,25.0,0.537169312,22.768015794338464 +2019-04-15 16:45:00,25.0,0.541269841,22.76641132169618 +2019-04-15 17:00:00,25.0,0.548544974,22.76480713634324 +2019-04-15 17:15:00,25.0,0.563095238,22.763203238485982 +2019-04-15 17:30:00,25.0,0.574470899,22.761599628330693 +2019-04-15 17:45:00,25.0,0.589153439,22.75999630608364 +2019-04-15 18:00:00,25.0,0.63042328,22.758393271951046 +2019-04-15 18:15:00,25.0,0.649338624,22.756790526139095 +2019-04-15 18:30:00,25.0,0.655687831,22.755188068853936 +2019-04-15 18:45:00,25.0,0.664021164,22.75358590030168 +2019-04-15 19:00:00,25.0,0.618121693,22.751984020688408 +2019-04-15 19:15:00,25.0,0.611111111,22.750382430220146 +2019-04-15 19:30:00,25.0,0.62473545,22.748781129102902 +2019-04-15 19:45:00,25.0,0.631216931,22.74718011754264 +2019-04-15 20:00:00,25.0,0.639021164,22.74557939574528 +2019-04-15 20:15:00,25.0,0.649867725,22.743978963916717 +2019-04-15 20:30:00,25.0,0.657936508,22.7423788222628 +2019-04-15 20:45:00,25.0,0.663624339,22.74077897098934 +2019-04-15 21:00:00,25.0,0.670767196,22.739179410302118 +2019-04-15 21:15:00,25.0,0.67473545,22.73758014040687 +2019-04-15 21:30:00,25.0,0.677777778,22.735981161509297 +2019-04-15 21:45:00,25.0,0.677910053,22.734382473815064 +2019-04-15 22:00:00,25.0,0.67962963,22.7327840775298 +2019-04-15 22:15:00,25.0,0.681746032,22.731185972859098 +2019-04-15 22:30:00,25.0,0.681878307,22.7295881600085 +2019-04-15 22:45:00,25.0,0.677116402,22.727990639183528 +2019-04-15 23:00:00,25.0,0.675793651,22.726393410589655 +2019-04-15 23:15:00,25.0,0.673809524,22.724796474432324 +2019-04-15 23:30:00,25.0,0.672619048,22.723199830916933 +2019-04-15 23:45:00,25.0,0.675132275,22.721603480248845 +2019-04-16 00:00:00,25.0,0.674338624,22.720007422633394 +2019-04-16 00:15:00,25.0,0.669444444,22.71841165827586 +2019-04-16 00:30:00,25.0,0.664814815,22.716816187381497 +2019-04-16 00:45:00,25.0,0.657539683,22.715221010155517 +2019-04-16 01:00:00,25.0,0.649074074,22.7136261268031 +2019-04-16 01:15:00,25.0,0.646428571,22.71203153752938 +2019-04-16 01:30:00,25.0,0.64537037,22.710437242539456 +2019-04-16 01:45:00,25.0,0.638888889,22.70884324203839 +2019-04-16 02:00:00,25.0,0.631613757,22.70724953623121 +2019-04-16 02:15:00,25.0,0.627777778,22.705656125322896 +2019-04-16 02:30:00,25.0,0.620899471,22.704063009518404 +2019-04-16 02:45:00,25.0,0.616402116,22.702470189022634 +2019-04-16 03:00:00,25.0,0.615608466,22.700877664040465 +2019-04-16 03:15:00,25.0,0.61521164,22.699285434776733 +2019-04-16 03:30:00,25.0,0.608068783,22.69769350143623 +2019-04-16 03:45:00,25.0,0.601719577,22.696101864223717 +2019-04-16 04:00:00,25.0,0.6,22.69451052334391 +2019-04-16 04:15:00,25.0,0.601190476,22.692919479001496 +2019-04-16 04:30:00,25.0,0.60026455,22.691328731401114 +2019-04-16 04:45:00,25.0,0.59457672,22.68973828074737 +2019-04-16 05:00:00,25.0,0.586904762,22.68814812724484 +2019-04-16 05:15:00,25.0,0.583862434,22.686558271098043 +2019-04-16 05:30:00,25.0,0.580026455,22.68496871251147 +2019-04-16 05:45:00,25.0,0.574074074,22.683379451689582 +2019-04-16 06:00:00,25.0,0.568518519,22.681790488836786 +2019-04-16 06:15:00,25.0,0.568518519,22.68020182415746 +2019-04-16 06:30:00,25.0,0.564814815,22.67861345785595 +2019-04-16 06:45:00,25.0,0.56521164,22.677025390136542 +2019-04-16 07:00:00,25.0,0.567460317,22.6754376212035 +2019-04-16 07:15:00,25.0,0.563888889,22.673850151261053 +2019-04-16 07:30:00,25.0,0.563095238,22.67226298051338 +2019-04-16 07:45:00,25.0,0.559391534,22.670676109164628 +2019-04-16 08:00:00,25.0,0.552116402,22.669089537418905 +2019-04-16 08:15:00,25.0,0.546031746,22.66750326548028 +2019-04-16 08:30:00,25.0,0.542195767,22.66591729355278 +2019-04-16 08:45:00,25.0,0.53478836,22.664331621840397 +2019-04-16 09:00:00,25.0,0.523280423,22.662746250547084 +2019-04-16 09:15:00,25.0,0.512830688,22.661161179876757 +2019-04-16 09:30:00,25.0,0.513492063,22.65957641003329 +2019-04-16 09:45:00,25.0,0.513624339,22.657991941220523 +2019-04-16 10:00:00,25.0,0.510582011,22.656407773642247 +2019-04-16 10:15:00,25.0,0.514814815,22.654823907502227 +2019-04-16 10:30:00,25.0,0.518650794,22.653240343004178 +2019-04-16 10:45:00,25.0,0.528042328,22.65165708035179 +2019-04-16 11:00:00,25.0,0.535449735,22.6500741197487 +2019-04-16 11:15:00,25.0,0.537433862,22.648491461398514 +2019-04-16 11:30:00,25.0,0.535582011,22.646909105504797 +2019-04-16 11:45:00,25.0,0.543783069,22.645327052271075 +2019-04-16 12:00:00,25.0,0.545899471,22.643745301900836 +2019-04-16 12:15:00,25.0,0.545502646,22.642163854597523 +2019-04-16 12:30:00,25.0,0.54457672,22.640582710564555 +2019-04-16 12:45:00,25.0,0.54510582,22.639001870005295 +2019-04-16 13:00:00,25.0,0.541137566,22.63742133312308 +2019-04-16 13:15:00,25.0,0.541666667,22.635841100121198 +2019-04-16 13:30:00,25.0,0.535185185,22.6342611712029 +2019-04-16 13:45:00,25.0,0.542857143,22.63268154657141 +2019-04-16 14:00:00,25.0,0.55,22.631102226429892 +2019-04-16 14:15:00,25.0,0.547751323,22.629523210981485 +2019-04-16 14:30:00,25.0,0.542592593,22.62794450042929 +2019-04-16 14:45:00,25.0,0.542724868,22.626366094976362 +2019-04-16 15:00:00,25.0,0.539814815,22.624787994825716 +2019-04-16 15:15:00,25.0,0.54457672,22.623210200180335 +2019-04-16 15:30:00,25.0,0.544708995,22.62163271124316 +2019-04-16 15:45:00,25.0,0.556084656,22.620055528217083 +2019-04-16 16:00:00,25.0,0.571957672,22.61847865130497 +2019-04-16 16:15:00,25.0,0.587433862,22.616902080709647 +2019-04-16 16:30:00,25.0,0.598015873,22.61532581663389 +2019-04-16 16:45:00,25.0,0.608333333,22.613749859280443 +2019-04-16 17:00:00,25.0,0.620634921,22.61217420885201 +2019-04-16 17:15:00,25.0,0.631481481,22.610598865551253 +2019-04-16 17:30:00,25.0,0.642063492,22.609023829580803 +2019-04-16 17:45:00,25.0,0.647089947,22.607449101143235 +2019-04-16 18:00:00,25.0,0.65462963,22.6058746804411 +2019-04-16 18:15:00,25.0,0.660185185,22.60430056767691 +2019-04-16 18:30:00,25.0,0.664814815,22.602726763053113 +2019-04-16 18:45:00,25.0,0.670767196,22.60115326677215 +2019-04-16 19:00:00,25.0,0.670899471,22.599580079036407 +2019-04-16 19:15:00,25.0,0.673412698,22.598007200048226 +2019-04-16 19:30:00,25.0,0.675529101,22.596434630009913 +2019-04-16 19:45:00,25.0,0.679365079,22.594862369123746 +2019-04-16 20:00:00,25.0,0.685185185,22.593290417591938 +2019-04-16 20:15:00,25.0,0.688624339,22.591718775616688 +2019-04-16 20:30:00,25.0,0.68994709,22.59014744340014 +2019-04-16 20:45:00,25.0,0.691534392,22.588576421144403 +2019-04-16 21:00:00,25.0,0.692195767,22.587005709051546 +2019-04-16 21:15:00,25.0,0.692857143,22.5854353073236 +2019-04-16 21:30:00,25.0,0.689153439,22.58386521616255 +2019-04-16 21:45:00,25.0,0.685582011,22.582295435770344 +2019-04-16 22:00:00,25.0,0.681613757,22.580725966348894 +2019-04-16 22:15:00,25.0,0.677910053,22.579156808100066 +2019-04-16 22:30:00,25.0,0.677910053,22.577587961225692 +2019-04-16 22:45:00,25.0,0.676587302,22.57601942592756 +2019-04-16 23:00:00,25.0,0.676851852,22.574451202407413 +2019-04-16 23:15:00,25.0,0.677248677,22.57288329086697 +2019-04-16 23:30:00,25.0,0.683068783,22.57131569150789 +2019-04-16 23:45:00,25.0,0.685582011,22.569748404531808 +2019-04-17 00:00:00,25.0,0.682407407,22.568181430140303 +2019-04-17 00:15:00,25.0,0.676322751,22.566614768534933 +2019-04-17 00:30:00,25.0,0.672751323,22.5650484199172 +2019-04-17 00:45:00,25.0,0.66547619,22.563482384488577 +2019-04-17 01:00:00,25.0,0.661111111,22.561916662450482 +2019-04-17 01:15:00,25.0,0.650396825,22.560351254004306 +2019-04-17 01:30:00,25.0,0.63994709,22.5587861593514 +2019-04-17 01:45:00,25.0,0.634920635,22.55722137869306 +2019-04-17 02:00:00,25.0,0.631349206,22.555656912230564 +2019-04-17 02:15:00,25.0,0.630952381,22.55409276016513 +2019-04-17 02:30:00,25.0,0.63015873,22.552528922697945 +2019-04-17 02:45:00,25.0,0.626322751,22.55096540003015 +2019-04-17 03:00:00,25.0,0.625793651,22.54940219236285 +2019-04-17 03:15:00,25.0,0.623148148,22.547839299897113 +2019-04-17 03:30:00,25.0,0.61547619,22.54627672283396 +2019-04-17 03:45:00,25.0,0.613095238,22.544714461374365 +2019-04-17 04:00:00,25.0,0.605291005,22.543152515719285 +2019-04-17 04:15:00,25.0,0.597883598,22.541590886069606 +2019-04-17 04:30:00,25.0,0.593253968,22.540029572626196 +2019-04-17 04:45:00,25.0,0.587566138,22.538468575589878 +2019-04-17 05:00:00,25.0,0.576719577,22.536907895161423 +2019-04-17 05:15:00,25.0,0.548412698,22.535347531541575 +2019-04-17 05:30:00,25.0,0.525529101,22.53378748493103 +2019-04-17 05:45:00,25.0,0.547751323,22.532227755530442 +2019-04-17 06:00:00,25.0,0.551058201,22.53066834354043 +2019-04-17 06:15:00,25.0,0.548015873,22.52910924916157 +2019-04-17 06:30:00,25.0,0.540079365,22.527550472594395 +2019-04-17 06:45:00,25.0,0.536507937,22.5259920140394 +2019-04-17 07:00:00,25.0,0.526719577,22.524433873697035 +2019-04-17 07:15:00,25.0,0.517724868,22.52287605176771 +2019-04-17 07:30:00,25.0,0.510978836,22.521318548451802 +2019-04-17 07:45:00,25.0,0.507539683,22.519761363949634 +2019-04-17 08:00:00,25.0,0.491798942,22.5182044984615 +2019-04-17 08:15:00,25.0,0.495767196,22.516647952187643 +2019-04-17 08:30:00,25.0,0.495634921,22.515091725328276 +2019-04-17 08:45:00,25.0,0.501190476,22.513535818083557 +2019-04-17 09:00:00,25.0,0.506349206,22.511980230653617 +2019-04-17 09:15:00,25.0,0.509259259,22.51042496323853 +2019-04-17 09:30:00,25.0,0.517328042,22.508870016038347 +2019-04-17 09:45:00,25.0,0.522222222,22.50731538925307 +2019-04-17 10:00:00,25.0,0.53015873,22.50576108308265 +2019-04-17 10:15:00,25.0,0.541137566,22.50420709772701 +2019-04-17 10:30:00,25.0,0.55,22.50265343338603 +2019-04-17 10:45:00,25.0,0.559391534,22.501100090259545 +2019-04-17 11:00:00,25.0,0.56468254,22.499547068547344 +2019-04-17 11:15:00,25.0,0.566666667,22.497994368449184 +2019-04-17 11:30:00,25.0,0.567328042,22.49644199016478 +2019-04-17 11:45:00,25.0,0.570634921,22.494889933893795 +2019-04-17 12:00:00,25.0,0.572222222,22.49333819983587 +2019-04-17 12:15:00,25.0,0.575661376,22.491786788190577 +2019-04-17 12:30:00,25.0,0.578042328,22.490235699157477 +2019-04-17 12:45:00,25.0,0.574867725,22.488684932936064 +2019-04-17 13:00:00,25.0,0.566269841,22.487134489725804 +2019-04-17 13:15:00,25.0,0.563624339,22.485584369726123 +2019-04-17 13:30:00,25.0,0.561640212,22.484034573136395 +2019-04-17 13:45:00,25.0,0.557275132,22.482485100155962 +2019-04-17 14:00:00,25.0,0.549206349,22.480935950984126 +2019-04-17 14:15:00,25.0,0.541137566,22.47938712582013 +2019-04-17 14:30:00,25.0,0.54537037,22.477838624863193 +2019-04-17 14:45:00,25.0,0.568518519,22.47629044831249 +2019-04-17 15:00:00,25.0,0.583201058,22.474742596367143 +2019-04-17 15:15:00,25.0,0.595899471,22.47319506922625 +2019-04-17 15:30:00,25.0,0.605820106,22.471647867088855 +2019-04-17 15:45:00,25.0,0.603306878,22.47010099015396 +2019-04-17 16:00:00,25.0,0.586904762,22.46855443862053 +2019-04-17 16:15:00,25.0,0.580291005,22.46700821268748 +2019-04-17 16:30:00,25.0,0.579497354,22.465462312553697 +2019-04-17 16:45:00,25.0,0.580291005,22.463916738418014 +2019-04-17 17:00:00,25.0,0.585714286,22.462371490479228 +2019-04-17 17:15:00,25.0,0.59021164,22.460826568936096 +2019-04-17 17:30:00,25.0,0.589021164,22.459281973987324 +2019-04-17 17:45:00,25.0,0.594179894,22.45773770583158 +2019-04-17 18:00:00,25.0,0.593915344,22.456193764667493 +2019-04-17 18:15:00,25.0,0.616666667,22.454650150693652 +2019-04-17 18:30:00,25.0,0.639285714,22.453106864108594 +2019-04-17 18:45:00,25.0,0.642328042,22.451563905110827 +2019-04-17 19:00:00,25.0,0.651322751,22.45002127389881 +2019-04-17 19:15:00,25.0,0.658597884,22.44847897067095 +2019-04-17 19:30:00,25.0,0.656481481,22.44693699562563 +2019-04-17 19:45:00,25.0,0.659920635,22.44539534896118 +2019-04-17 20:00:00,25.0,0.663888889,22.443854030875894 +2019-04-17 20:15:00,25.0,0.653968254,22.442313041568013 +2019-04-17 20:30:00,25.0,0.643518519,22.440772381235746 +2019-04-17 20:45:00,25.0,0.638492063,22.439232050077262 +2019-04-17 21:00:00,25.0,0.637698413,22.43769204829067 +2019-04-17 21:15:00,25.0,0.639153439,22.436152376074055 +2019-04-17 21:30:00,25.0,0.642989418,22.434613033625457 +2019-04-17 21:45:00,25.0,0.646957672,22.433074021142865 +2019-04-17 22:00:00,25.0,0.659126984,22.431535338824226 +2019-04-17 22:15:00,25.0,0.666005291,22.42999698686746 +2019-04-17 22:30:00,25.0,0.675132275,22.428458965470426 +2019-04-17 22:45:00,25.0,0.681084656,22.42692127483095 +2019-04-17 23:00:00,25.0,0.681084656,22.425383915146814 +2019-04-17 23:15:00,25.0,0.682936508,22.423846886615753 +2019-04-17 23:30:00,25.0,0.683333333,22.422310189435464 +2019-04-17 23:45:00,25.0,0.682407407,22.420773823803604 +2019-04-18 00:00:00,25.0,0.678042328,22.419237789917783 +2019-04-18 00:15:00,25.0,0.670767196,22.41770208797557 +2019-04-18 00:30:00,25.0,0.659126984,22.416166718174487 +2019-04-18 00:45:00,25.0,0.649074074,22.414631680712017 +2019-04-18 01:00:00,25.0,0.641798942,22.413096975785603 +2019-04-18 01:15:00,25.0,0.636375661,22.411562603592643 +2019-04-18 01:30:00,25.0,0.629761905,22.410028564330485 +2019-04-18 01:45:00,25.0,0.624206349,22.40849485819645 +2019-04-18 02:00:00,25.0,0.616666667,22.4069614853878 +2019-04-18 02:15:00,25.0,0.611640212,22.405428446101762 +2019-04-18 02:30:00,25.0,0.605687831,22.40389574053552 +2019-04-18 02:45:00,25.0,0.596560847,22.402363368886217 +2019-04-18 03:00:00,25.0,0.586375661,22.400831331350943 +2019-04-18 03:15:00,25.0,0.575925926,22.399299628126762 +2019-04-18 03:30:00,25.0,0.564550265,22.39776825941068 +2019-04-18 03:45:00,25.0,0.555555556,22.39623722539966 +2019-04-18 04:00:00,25.0,0.551719577,22.394706526290634 +2019-04-18 04:15:00,25.0,0.552380952,22.393176162280483 +2019-04-18 04:30:00,25.0,0.547486772,22.391646133566045 +2019-04-18 04:45:00,25.0,0.540608466,22.390116440344116 +2019-04-18 05:00:00,25.0,0.532010582,22.388587082811448 +2019-04-18 05:15:00,25.0,0.52010582,22.387058061164755 +2019-04-18 05:30:00,25.0,0.510449735,22.385529375600694 +2019-04-18 05:45:00,25.0,0.505026455,22.384001026315897 +2019-04-18 06:00:00,25.0,0.498015873,22.38247301350694 +2019-04-18 06:15:00,25.0,0.492195767,22.380945337370356 +2019-04-18 06:30:00,25.0,0.486375661,22.379417998102646 +2019-04-18 06:45:00,25.0,0.471164021,22.37789099590026 +2019-04-18 07:00:00,25.0,0.457142857,22.376364330959593 +2019-04-18 07:15:00,25.0,0.447486772,22.37483800347702 +2019-04-18 07:30:00,25.0,0.436772487,22.373312013648853 +2019-04-18 07:45:00,25.0,0.427645503,22.371786361671376 +2019-04-18 08:00:00,25.0,0.416269841,22.370261047740815 +2019-04-18 08:15:00,25.0,0.397354497,22.368736072053366 +2019-04-18 08:30:00,25.0,0.379761905,22.36721143480517 +2019-04-18 08:45:00,25.0,0.367460317,22.365687136192328 +2019-04-18 09:00:00,25.0,0.361772487,22.3641631764109 +2019-04-18 09:15:00,25.0,0.356216931,22.362639555656905 +2019-04-18 09:30:00,25.0,0.355555556,22.361116274126314 +2019-04-18 09:45:00,25.0,0.359920635,22.359593332015052 +2019-04-18 10:00:00,25.0,0.364550265,22.358070729519007 +2019-04-18 10:15:00,25.0,0.363888889,22.356548466834013 +2019-04-18 10:30:00,25.0,0.370502646,22.35502654415587 +2019-04-18 10:45:00,25.0,0.373677249,22.353504961680336 +2019-04-18 11:00:00,25.0,0.392592593,22.351983719603115 +2019-04-18 11:15:00,25.0,0.408730159,22.350462818119873 +2019-04-18 11:30:00,25.0,0.424074074,22.348942257426238 +2019-04-18 11:45:00,25.0,0.438624339,22.34742203771778 +2019-04-18 12:00:00,25.0,0.455687831,22.345902159190036 +2019-04-18 12:15:00,25.0,0.474603175,22.3443826220385 +2019-04-18 12:30:00,25.0,0.494973545,22.342863426458614 +2019-04-18 12:45:00,25.0,0.504100529,22.341344572645777 +2019-04-18 13:00:00,25.0,0.515079365,22.339826060795357 +2019-04-18 13:15:00,25.0,0.52473545,22.338307891102666 +2019-04-18 13:30:00,25.0,0.531878307,22.33679006376297 +2019-04-18 13:45:00,25.0,0.538359788,22.335272578971495 +2019-04-18 14:00:00,25.0,0.546031746,22.333755436923425 +2019-04-18 14:15:00,25.0,0.559656085,22.3322386378139 +2019-04-18 14:30:00,25.0,0.577116402,22.330722181838016 +2019-04-18 14:45:00,25.0,0.592328042,22.32920606919082 +2019-04-18 15:00:00,25.0,0.606481481,22.32769030006732 +2019-04-18 15:15:00,25.0,0.619047619,22.326174874662478 +2019-04-18 15:30:00,25.0,0.632407407,22.324659793171204 +2019-04-18 15:45:00,25.0,0.641005291,22.32314505578838 +2019-04-18 16:00:00,25.0,0.645767196,22.32163066270883 +2019-04-18 16:15:00,25.0,0.656216931,22.320116614127343 +2019-04-18 16:30:00,25.0,0.677910053,22.31860291023866 +2019-04-18 16:45:00,25.0,0.687301587,22.317089551237473 +2019-04-18 17:00:00,25.0,0.696296296,22.31557653731843 +2019-04-18 17:15:00,25.0,0.700132275,22.31406386867615 +2019-04-18 17:30:00,25.0,0.701851852,22.312551545505187 +2019-04-18 17:45:00,25.0,0.708201058,22.31103956800006 +2019-04-18 18:00:00,25.0,0.711111111,22.309527936355245 +2019-04-18 18:15:00,25.0,0.713095238,22.308016650765175 +2019-04-18 18:30:00,25.0,0.716931217,22.30650571142423 +2019-04-18 18:45:00,25.0,0.722222222,22.30499511852675 +2019-04-18 19:00:00,25.0,0.725529101,22.303484872267035 +2019-04-18 19:15:00,25.0,0.723941799,22.301974972839336 +2019-04-18 19:30:00,25.0,0.723015873,22.300465420437853 +2019-04-18 19:45:00,25.0,0.716798942,22.29895621525676 +2019-04-18 20:00:00,25.0,0.713095238,22.297447357490164 +2019-04-18 20:15:00,25.0,0.70978836,22.295938847332142 +2019-04-18 20:30:00,25.0,0.711243386,22.29443068497672 +2019-04-18 20:45:00,25.0,0.714285714,22.292922870617886 +2019-04-18 21:00:00,25.0,0.712566138,22.291415404449573 +2019-04-18 21:15:00,25.0,0.705952381,22.28990828666568 +2019-04-18 21:30:00,25.0,0.696957672,22.288401517460052 +2019-04-18 21:45:00,25.0,0.691402116,22.286895097026495 +2019-04-18 22:00:00,25.0,0.690608466,22.285389025558764 +2019-04-18 22:15:00,25.0,0.687698413,22.28388330325058 +2019-04-18 22:30:00,25.0,0.682275132,22.28237793029561 +2019-04-18 22:45:00,25.0,0.678042328,22.280872906887478 +2019-04-18 23:00:00,25.0,0.68042328,22.27936823321976 +2019-04-18 23:15:00,25.0,0.683862434,22.277863909486 +2019-04-18 23:30:00,25.0,0.678968254,22.27635993587968 +2019-04-18 23:45:00,25.0,0.679100529,22.274856312594245 +2019-04-19 00:00:00,25.0,0.673544974,22.273353039823096 +2019-04-19 00:15:00,25.0,0.666534392,22.271850117759588 +2019-04-19 00:30:00,25.0,0.643915344,22.27034754659703 +2019-04-19 00:45:00,25.0,0.621164021,22.268845326528684 +2019-04-19 01:00:00,25.0,0.605687831,22.267343457747778 +2019-04-19 01:15:00,25.0,0.588624339,22.265841940447473 +2019-04-19 01:30:00,25.0,0.569973545,22.2643407748209 +2019-04-19 01:45:00,25.0,0.552380952,22.262839961061154 +2019-04-19 02:00:00,25.0,0.530291005,22.26133949936126 +2019-04-19 02:15:00,25.0,0.505291005,22.259839389914216 +2019-04-19 02:30:00,25.0,0.488492063,22.25833963291297 +2019-04-19 02:45:00,25.0,0.477116402,22.256840228550423 +2019-04-19 03:00:00,25.0,0.463624339,22.25534117701943 +2019-04-19 03:15:00,25.0,0.442328042,22.253842478512812 +2019-04-19 03:30:00,25.0,0.425,22.25234413322332 +2019-04-19 03:45:00,25.0,0.409920635,22.25084614134369 +2019-04-19 04:00:00,25.0,0.396825397,22.249348503066585 +2019-04-19 04:15:00,25.0,0.382804233,22.247851218584643 +2019-04-19 04:30:00,25.0,0.36494709,22.24635428809044 +2019-04-19 04:45:00,25.0,0.339021164,22.244857711776522 +2019-04-19 05:00:00,25.0,0.317195767,22.24336148983538 +2019-04-19 05:15:00,25.0,0.304761905,22.241865622459457 +2019-04-19 05:30:00,25.0,0.298941799,22.240370109841162 +2019-04-19 05:45:00,25.0,0.291534392,22.23887495217285 +2019-04-19 06:00:00,25.0,0.280555556,22.237380149646828 +2019-04-19 06:15:00,25.0,0.272354497,22.235885702455363 +2019-04-19 06:30:00,25.0,0.259920635,22.234391610790674 +2019-04-19 06:45:00,25.0,0.246560847,22.232897874844934 +2019-04-19 07:00:00,25.0,0.233068783,22.23140449481027 +2019-04-19 07:15:00,25.0,0.225132275,22.22991147087877 +2019-04-19 07:30:00,25.0,0.218650794,22.228418803242462 +2019-04-19 07:45:00,25.0,0.216666667,22.22692649209334 +2019-04-19 08:00:00,25.0,0.212566138,22.225434537623347 +2019-04-19 08:15:00,25.0,0.200661376,22.223942940024386 +2019-04-19 08:30:00,25.0,0.189814815,22.222451699488303 +2019-04-19 08:45:00,25.0,0.183730159,22.22096081620691 +2019-04-19 09:00:00,25.0,0.180687831,22.21947029037197 +2019-04-19 09:15:00,25.0,0.175793651,22.21798012217519 +2019-04-19 09:30:00,25.0,0.172883598,22.216490311808247 +2019-04-19 09:45:00,25.0,0.173280423,22.21500085946276 +2019-04-19 10:00:00,25.0,0.175661376,22.213511765330303 +2019-04-19 10:15:00,25.0,0.177116402,22.21202302960241 +2019-04-19 10:30:00,25.0,0.179497354,22.210534652470564 +2019-04-19 10:45:00,25.0,0.187301587,22.20904663412621 +2019-04-19 11:00:00,25.0,0.193121693,22.20755897476073 +2019-04-19 11:15:00,25.0,0.199603175,22.20607167456548 +2019-04-19 11:30:00,25.0,0.203174603,22.20458473373175 +2019-04-19 11:45:00,25.0,0.206481481,22.2030981524508 +2019-04-19 12:00:00,25.0,0.209656085,22.201611930913838 +2019-04-19 12:15:00,25.0,0.215608466,22.200126069312024 +2019-04-19 12:30:00,25.0,0.226984127,22.198640567836474 +2019-04-19 12:45:00,25.0,0.231878307,22.197155426678254 +2019-04-19 13:00:00,25.0,0.238227513,22.195670646028386 +2019-04-19 13:15:00,25.0,0.250396825,22.19418622607785 +2019-04-19 13:30:00,25.0,0.261904762,22.192702167017572 +2019-04-19 13:45:00,25.0,0.273809524,22.191218469038436 +2019-04-19 14:00:00,25.0,0.287433862,22.18973513233128 +2019-04-19 14:15:00,25.0,0.29484127,22.188252157086893 +2019-04-19 14:30:00,25.0,0.300661376,22.18676954349602 +2019-04-19 14:45:00,25.0,0.304100529,22.185287291749354 +2019-04-19 15:00:00,25.0,0.308333333,22.18380540203755 +2019-04-19 15:15:00,25.0,0.314814815,22.182323874551212 +2019-04-19 15:30:00,25.0,0.319179894,22.180842709480896 +2019-04-19 15:45:00,25.0,0.330026455,22.179361907017114 +2019-04-19 16:00:00,25.0,0.339153439,22.177881467350325 +2019-04-19 16:15:00,25.0,0.353042328,22.176401390670954 +2019-04-19 16:30:00,25.0,0.360185185,22.17492167716937 +2019-04-19 16:45:00,25.0,0.362698413,22.173442327035893 +2019-04-19 17:00:00,25.0,0.36547619,22.171963340460806 +2019-04-19 17:15:00,25.0,0.367857143,22.170484717634338 +2019-04-19 17:30:00,25.0,0.366402116,22.16900645874667 +2019-04-19 17:45:00,25.0,0.366666667,22.16752856398794 +2019-04-19 18:00:00,25.0,0.360185185,22.166051033548243 +2019-04-19 18:15:00,25.0,0.356746032,22.164573867617616 +2019-04-19 18:30:00,25.0,0.351455026,22.163097066386058 +2019-04-19 18:45:00,25.0,0.347751323,22.16162063004352 +2019-04-19 19:00:00,25.0,0.341534392,22.160144558779905 +2019-04-19 19:15:00,25.0,0.341798942,22.158668852785063 +2019-04-19 19:30:00,25.0,0.345899471,22.15719351224881 +2019-04-19 19:45:00,25.0,0.351719577,22.1557185373609 +2019-04-19 20:00:00,25.0,0.357804233,22.154243928311057 +2019-04-19 20:15:00,25.0,0.37010582,22.152769685288945 +2019-04-19 20:30:00,25.0,0.385582011,22.15129580848418 +2019-04-19 20:45:00,25.0,0.4,22.14982229808634 +2019-04-19 21:00:00,25.0,0.415343915,22.14834915428495 +2019-04-19 21:15:00,25.0,0.425661376,22.146876377269493 +2019-04-19 21:30:00,25.0,0.42526455,22.14540396722939 +2019-04-19 21:45:00,25.0,0.421560847,22.14393192435404 +2019-04-19 22:00:00,25.0,0.407539683,22.14246024883277 +2019-04-19 22:15:00,25.0,0.394444444,22.140988940854875 +2019-04-19 22:30:00,25.0,0.37962963,22.1395180006096 +2019-04-19 22:45:00,25.0,0.362698413,22.138047428286132 +2019-04-19 23:00:00,25.0,0.354365079,22.13657722407363 +2019-04-19 23:15:00,25.0,0.348280423,22.135107388161188 +2019-04-19 23:30:00,25.0,0.338492063,22.13363792073786 +2019-04-19 23:45:00,25.0,0.327248677,22.132168821992657 +2019-04-20 00:00:00,25.0,0.310582011,22.130700092114537 +2019-04-20 00:15:00,25.0,0.29510582,22.129231731292407 +2019-04-20 00:30:00,25.0,0.278968254,22.127763739715135 +2019-04-20 00:45:00,25.0,0.262830688,22.126296117571535 +2019-04-20 01:00:00,25.0,0.248941799,22.124828865050375 +2019-04-20 01:15:00,25.0,0.232010582,22.12336198234038 +2019-04-20 01:30:00,25.0,0.220767196,22.121895469630225 +2019-04-20 01:45:00,25.0,0.208201058,22.120429327108532 +2019-04-20 02:00:00,25.0,0.19457672,22.11896355496388 +2019-04-20 02:15:00,25.0,0.183597884,22.1174981533848 +2019-04-20 02:30:00,25.0,0.17473545,22.11603312255978 +2019-04-20 02:45:00,25.0,0.170767196,22.114568462677248 +2019-04-20 03:00:00,25.0,0.168121693,22.1131041739256 +2019-04-20 03:15:00,25.0,0.169708995,22.11164025649317 +2019-04-20 03:30:00,25.0,0.166931217,22.110176710568254 +2019-04-20 03:45:00,25.0,0.164814815,22.108713536339096 +2019-04-20 04:00:00,25.0,0.157936508,22.10725073399389 +2019-04-20 04:15:00,25.0,0.156746032,22.10578830372079 +2019-04-20 04:30:00,25.0,0.158994709,22.10432624570789 +2019-04-20 04:45:00,25.0,0.15952381,22.102864560143253 +2019-04-20 05:00:00,25.0,0.162962963,22.101403247214876 +2019-04-20 05:15:00,25.0,0.162037037,22.09994230711072 +2019-04-20 05:30:00,25.0,0.161375661,22.098481740018695 +2019-04-20 05:45:00,25.0,0.15952381,22.097021546126662 +2019-04-20 06:00:00,25.0,0.159259259,22.09556172562243 +2019-04-20 06:15:00,25.0,0.160846561,22.09410227869377 +2019-04-20 06:30:00,25.0,0.158597884,22.092643205528404 +2019-04-20 06:45:00,25.0,0.155820106,22.09118450631399 +2019-04-20 07:00:00,25.0,0.152777778,22.089726181238156 +2019-04-20 07:15:00,25.0,0.147883598,22.088268230488474 +2019-04-20 07:30:00,25.0,0.144444444,22.086810654252467 +2019-04-20 07:45:00,25.0,0.136111111,22.085353452717616 +2019-04-20 08:00:00,25.0,0.132275132,22.083896626071343 +2019-04-20 08:15:00,25.0,0.128174603,22.082440174501038 +2019-04-20 08:30:00,25.0,0.123015873,22.080984098194026 +2019-04-20 08:45:00,25.0,0.115343915,22.079528397337594 +2019-04-20 09:00:00,25.0,0.115608466,22.078073072118976 +2019-04-20 09:15:00,25.0,0.114417989,22.076618122725357 +2019-04-20 09:30:00,25.0,0.112962963,22.07516354934388 +2019-04-20 09:45:00,25.0,0.113095238,22.073709352161636 +2019-04-20 10:00:00,25.0,0.113888889,22.072255531365663 +2019-04-20 10:15:00,25.0,0.109920635,22.070802087142958 +2019-04-20 10:30:00,25.0,0.108068783,22.069349019680466 +2019-04-20 10:45:00,25.0,0.10542328,22.067896329165084 +2019-04-20 11:00:00,25.0,0.106349206,22.066444015783656 +2019-04-20 11:15:00,25.0,0.104100529,22.06499207972299 +2019-04-20 11:30:00,25.0,0.101719577,22.06354052116983 +2019-04-20 11:45:00,25.0,0.101058201,22.062089340310887 +2019-04-20 12:00:00,25.0,0.102380952,22.060638537332807 +2019-04-20 12:15:00,25.0,0.101190476,22.0591881124222 +2019-04-20 12:30:00,25.0,0.102910053,22.05773806576562 +2019-04-20 12:45:00,25.0,0.099338624,22.05628839754958 +2019-04-20 13:00:00,25.0,0.096825397,22.054839107960532 +2019-04-20 13:15:00,25.0,0.092592593,22.053390197184896 +2019-04-20 13:30:00,25.0,0.084656085,22.05194166540903 +2019-04-20 13:45:00,25.0,0.082275132,22.050493512819248 +2019-04-20 14:00:00,25.0,0.079100529,22.049045739601812 +2019-04-20 14:15:00,25.0,0.078968254,22.04759834594294 +2019-04-20 14:30:00,25.0,0.078571429,22.046151332028803 +2019-04-20 14:45:00,25.0,0.078306878,22.04470469804551 +2019-04-20 15:00:00,25.0,0.074867725,22.043258444179145 +2019-04-20 15:15:00,25.0,0.071164021,22.04181257061571 +2019-04-20 15:30:00,25.0,0.068518519,22.04036707754119 +2019-04-20 15:45:00,25.0,0.06547619,22.03892196514151 +2019-04-20 16:00:00,25.0,0.063624339,22.03747723360253 +2019-04-20 16:15:00,25.0,0.061507937,22.036032883110085 +2019-04-20 16:30:00,25.0,0.060714286,22.034588913849948 +2019-04-20 16:45:00,25.0,0.056216931,22.033145326007848 +2019-04-20 17:00:00,25.0,0.053439153,22.031702119769456 +2019-04-20 17:15:00,25.0,0.052380952,22.030259295320405 +2019-04-20 17:30:00,25.0,0.051190476,22.028816852846276 +2019-04-20 17:45:00,25.0,0.051322751,22.027374792532598 +2019-04-20 18:00:00,25.0,0.050925926,22.02593311456485 +2019-04-20 18:15:00,25.0,0.048544974,22.024491819128468 +2019-04-20 18:30:00,25.0,0.046560847,22.02305090640883 +2019-04-20 18:45:00,25.0,0.043121693,22.021610376591276 +2019-04-20 19:00:00,25.0,0.042989418,22.02017022986108 +2019-04-20 19:15:00,25.0,0.044708995,22.01873046640349 +2019-04-20 19:30:00,25.0,0.043518519,22.017291086403677 +2019-04-20 19:45:00,25.0,0.043253968,22.015852090046792 +2019-04-20 20:00:00,25.0,0.043783069,22.014413477517913 +2019-04-20 20:15:00,25.0,0.045767196,22.012975249002082 +2019-04-20 20:30:00,25.0,0.047089947,22.011537404684283 +2019-04-20 20:45:00,25.0,0.054365079,22.010099944749456 +2019-04-20 21:00:00,25.0,0.062301587,22.00866286938249 +2019-04-20 21:15:00,25.0,0.07010582,22.00722617876823 +2019-04-20 21:30:00,25.0,0.082407407,22.005789873091466 +2019-04-20 21:45:00,25.0,0.093915344,22.00435395253693 +2019-04-20 22:00:00,25.0,0.093121693,22.002918417289322 +2019-04-20 22:15:00,25.0,0.09484127,22.00148326753328 +2019-04-20 22:30:00,25.0,0.096825397,22.000048503453403 +2019-04-20 22:45:00,25.0,0.094708995,21.998614125234223 +2019-04-20 23:00:00,25.0,0.08531746,21.997180133060237 +2019-04-20 23:15:00,25.0,0.076851852,21.995746527115895 +2019-04-20 23:30:00,25.0,0.068915344,21.994313307585582 +2019-04-20 23:45:00,25.0,0.062037037,21.992880474653646 +2019-04-21 00:00:00,25.0,0.059259259,21.99144802850438 +2019-04-21 00:15:00,25.0,0.058333333,21.990015969322027 +2019-04-21 00:30:00,25.0,0.058465608,21.988584297290785 +2019-04-21 00:45:00,25.0,0.053042328,21.9871530125948 +2019-04-21 01:00:00,25.0,0.052380952,21.985722115418167 +2019-04-21 01:15:00,25.0,0.048809524,21.984291605944925 +2019-04-21 01:30:00,25.0,0.047486772,21.982861484359077 +2019-04-21 01:45:00,25.0,0.048148148,21.981431750844564 +2019-04-21 02:00:00,25.0,0.048280423,21.98000240558528 +2019-04-21 02:15:00,25.0,0.044973545,21.97857344876508 +2019-04-21 02:30:00,25.0,0.040608466,21.97714488056775 +2019-04-21 02:45:00,25.0,0.036772487,21.97571670117704 +2019-04-21 03:00:00,25.0,0.036243386,21.974288910776643 +2019-04-21 03:15:00,25.0,0.031084656,21.972861509550206 +2019-04-21 03:30:00,25.0,0.027380952,21.97143449768133 +2019-04-21 03:45:00,25.0,0.026322751,21.970007875353552 +2019-04-21 04:00:00,25.0,0.023677249,21.968581642750372 +2019-04-21 04:15:00,25.0,0.021164021,21.967155800055234 +2019-04-21 04:30:00,25.0,0.019047619,21.965730347451537 +2019-04-21 04:45:00,25.0,0.016269841,21.96430528512262 +2019-04-21 05:00:00,25.0,0.017195767,21.96288061325178 +2019-04-21 05:15:00,25.0,0.020502646,21.961456332022262 +2019-04-21 05:30:00,25.0,0.026190476,21.960032441617262 +2019-04-21 05:45:00,25.0,0.027248677,21.95860894221992 +2019-04-21 06:00:00,25.0,0.030291005,21.957185834013337 +2019-04-21 06:15:00,25.0,0.033597884,21.955763117180553 +2019-04-21 06:30:00,25.0,0.033597884,21.954340791904556 +2019-04-21 06:45:00,25.0,0.031878307,21.952918858368292 +2019-04-21 07:00:00,25.0,0.026322751,21.951497316754654 +2019-04-21 07:15:00,25.0,0.01957672,21.95007616724649 +2019-04-21 07:30:00,25.0,0.016137566,21.948655410026582 +2019-04-21 07:45:00,25.0,0.013359788,21.947235045277672 +2019-04-21 08:00:00,25.0,0.012037037,21.94581507318246 +2019-04-21 08:15:00,25.0,0.011904762,21.944395493923572 +2019-04-21 08:30:00,25.0,0.012301587,21.942976307683608 +2019-04-21 08:45:00,25.0,0.010582011,21.941557514645105 +2019-04-21 09:00:00,25.0,0.007142857,21.94013911499055 +2019-04-21 09:15:00,25.0,0.005687831,21.938721108902385 +2019-04-21 09:30:00,25.0,0.00515873,21.93730349656299 +2019-04-21 09:45:00,25.0,0.00489418,21.935886278154705 +2019-04-21 10:00:00,25.0,0.005555556,21.934469453859816 +2019-04-21 10:15:00,25.0,0.006084656,21.93305302386056 +2019-04-21 10:30:00,25.0,0.005555556,21.931636988339115 +2019-04-21 10:45:00,25.0,0.005820106,21.930221347477623 +2019-04-21 11:00:00,25.0,0.007142857,21.928806101458164 +2019-04-21 11:15:00,25.0,0.009920635,21.92739125046277 +2019-04-21 11:30:00,25.0,0.00978836,21.92597679467342 +2019-04-21 11:45:00,25.0,0.012566138,21.92456273427205 +2019-04-21 12:00:00,25.0,0.013888889,21.923149069440534 +2019-04-21 12:15:00,25.0,0.015873016,21.921735800360704 +2019-04-21 12:30:00,25.0,0.018915344,21.92032292721434 +2019-04-21 12:45:00,25.0,0.021825397,21.918910450183162 +2019-04-21 13:00:00,25.0,0.026851852,21.91749836944885 +2019-04-21 13:15:00,25.0,0.030687831,21.916086685193033 +2019-04-21 13:30:00,25.0,0.035582011,21.91467539759728 +2019-04-21 13:45:00,25.0,0.038492063,21.913264506843117 +2019-04-21 14:00:00,25.0,0.041269841,21.911854013112013 +2019-04-21 14:15:00,25.0,0.044047619,21.91044391658539 +2019-04-21 14:30:00,25.0,0.047751323,21.90903421744462 +2019-04-21 14:45:00,25.0,0.052513228,21.90762491587102 +2019-04-21 15:00:00,25.0,0.056216931,21.906216012045856 +2019-04-21 15:15:00,25.0,0.062566138,21.904807506150348 +2019-04-21 15:30:00,25.0,0.068650794,21.903399398365657 +2019-04-21 15:45:00,25.0,0.072222222,21.901991688872904 +2019-04-21 16:00:00,25.0,0.078042328,21.900584377853146 +2019-04-21 16:15:00,25.0,0.083730159,21.899177465487398 +2019-04-21 16:30:00,25.0,0.088227513,21.897770951956616 +2019-04-21 16:45:00,25.0,0.092857143,21.89636483744171 +2019-04-21 17:00:00,25.0,0.095238095,21.89495912212354 +2019-04-21 17:15:00,25.0,0.100793651,21.893553806182915 +2019-04-21 17:30:00,25.0,0.108201058,21.892148889800584 +2019-04-21 17:45:00,25.0,0.116798942,21.890744373157254 +2019-04-21 18:00:00,25.0,0.125925926,21.889340256433574 +2019-04-21 18:15:00,25.0,0.126719577,21.88793653981015 +2019-04-21 18:30:00,25.0,0.126322751,21.886533223467524 +2019-04-21 18:45:00,25.0,0.130687831,21.885130307586202 +2019-04-21 19:00:00,25.0,0.13531746,21.883727792346626 +2019-04-21 19:15:00,25.0,0.143915344,21.88232567792919 +2019-04-21 19:30:00,25.0,0.152248677,21.880923964514242 +2019-04-21 19:45:00,25.0,0.161772487,21.879522652282066 +2019-04-21 20:00:00,25.0,0.183994709,21.878121741412908 +2019-04-21 20:15:00,25.0,0.207671958,21.876721232086954 +2019-04-21 20:30:00,25.0,0.218650794,21.87532112448434 +2019-04-21 20:45:00,25.0,0.231481481,21.873921418785155 +2019-04-21 21:00:00,25.0,0.257407407,21.872522115169428 +2019-04-21 21:15:00,25.0,0.286640212,21.871123213817143 +2019-04-21 21:30:00,25.0,0.298148148,21.869724714908227 +2019-04-21 21:45:00,25.0,0.321693122,21.86832661862256 +2019-04-21 22:00:00,25.0,0.357407407,21.86692892513997 +2019-04-21 22:15:00,25.0,0.388095238,21.86553163464023 +2019-04-21 22:30:00,25.0,0.418253968,21.864134747303066 +2019-04-21 22:45:00,25.0,0.43994709,21.862738263308145 +2019-04-21 23:00:00,25.0,0.462698413,21.861342182835084 +2019-04-21 23:15:00,25.0,0.477645503,21.859946506063455 +2019-04-21 23:30:00,25.0,0.489021164,21.858551233172772 +2019-04-21 23:45:00,25.0,0.502910053,21.857156364342497 +2019-04-22 00:00:00,25.0,0.517328042,21.855761899752043 +2019-04-22 00:15:00,25.0,0.531481481,21.854367839580767 +2019-04-22 00:30:00,25.0,0.546957672,21.852974184007977 +2019-04-22 00:45:00,25.0,0.557936508,21.851580933212926 +2019-04-22 01:00:00,25.0,0.571428571,21.85018808737482 +2019-04-22 01:15:00,25.0,0.571560847,21.848795646672812 +2019-04-22 01:30:00,25.0,0.564021164,21.847403611285998 +2019-04-22 01:45:00,25.0,0.55,21.846011981393428 +2019-04-22 02:00:00,25.0,0.530687831,21.84462075717409 +2019-04-22 02:15:00,25.0,0.514550265,21.843229938806935 +2019-04-22 02:30:00,25.0,0.50489418,21.841839526470842 +2019-04-22 02:45:00,25.0,0.497619048,21.840449520344663 +2019-04-22 03:00:00,25.0,0.478968254,21.83905992060717 +2019-04-22 03:15:00,25.0,0.458465608,21.837670727437107 +2019-04-22 03:30:00,25.0,0.461111111,21.836281941013155 +2019-04-22 03:45:00,25.0,0.476190476,21.834893561513933 +2019-04-22 04:00:00,25.0,0.488624339,21.833505589118026 +2019-04-22 04:15:00,25.0,0.498015873,21.832118024003957 +2019-04-22 04:30:00,25.0,0.517063492,21.830730866350198 +2019-04-22 04:45:00,25.0,0.524338624,21.829344116335164 +2019-04-22 05:00:00,25.0,0.530952381,21.82795777413723 +2019-04-22 05:15:00,25.0,0.535449735,21.8265718399347 +2019-04-22 05:30:00,25.0,0.545634921,21.825186313905846 +2019-04-22 05:45:00,25.0,0.56005291,21.823801196228874 +2019-04-22 06:00:00,25.0,0.56521164,21.822416487081938 +2019-04-22 06:15:00,25.0,0.573677249,21.821032186643148 +2019-04-22 06:30:00,25.0,0.569179894,21.819648295090552 +2019-04-22 06:45:00,25.0,0.568915344,21.818264812602152 +2019-04-22 07:00:00,25.0,0.561904762,21.81688173935589 +2019-04-22 07:15:00,25.0,0.558597884,21.815499075529665 +2019-04-22 07:30:00,25.0,0.556481481,21.814116821301315 +2019-04-22 07:45:00,25.0,0.548280423,21.81273497684863 +2019-04-22 08:00:00,25.0,0.548544974,21.811353542349348 +2019-04-22 08:15:00,25.0,0.551719577,21.80997251798115 +2019-04-22 08:30:00,25.0,0.554232804,21.80859190392167 +2019-04-22 08:45:00,25.0,0.546296296,21.80721170034848 +2019-04-22 09:00:00,25.0,0.443121693,21.805831907439106 +2019-04-22 09:15:00,25.0,0.409391534,21.804452525371026 +2019-04-22 09:30:00,25.0,0.412962963,21.803073554321653 +2019-04-22 09:45:00,25.0,0.424603175,21.801694994468356 +2019-04-22 10:00:00,25.0,0.421693122,21.80031684598845 +2019-04-22 10:15:00,25.0,0.420502646,21.798939109059198 +2019-04-22 10:30:00,25.0,0.412169312,21.797561783857798 +2019-04-22 10:45:00,25.0,0.41957672,21.79618487056141 +2019-04-22 11:00:00,25.0,0.42037037,21.794808369347137 +2019-04-22 11:15:00,25.0,0.422486772,21.793432280392032 +2019-04-22 11:30:00,25.0,0.419312169,21.792056603873082 +2019-04-22 11:45:00,25.0,0.419179894,21.790681339967236 +2019-04-22 12:00:00,25.0,0.418121693,21.789306488851377 +2019-04-22 12:15:00,25.0,0.41031746,21.787932050702345 +2019-04-22 12:30:00,25.0,0.397222222,21.786558025696927 +2019-04-22 12:45:00,25.0,0.378968254,21.78518441401185 +2019-04-22 13:00:00,25.0,0.327248677,21.783811215823793 +2019-04-22 13:15:00,25.0,0.312433862,21.782438431309377 +2019-04-22 13:30:00,25.0,0.313227513,21.781066060645173 +2019-04-22 13:45:00,25.0,0.312169312,21.779694104007703 +2019-04-22 14:00:00,25.0,0.370767196,21.778322561573425 +2019-04-22 14:15:00,25.0,0.389417989,21.776951433518754 +2019-04-22 14:30:00,25.0,0.394444444,21.775580720020045 +2019-04-22 14:45:00,25.0,0.4,21.774210421253606 +2019-04-22 15:00:00,25.0,0.403571429,21.772840537395687 +2019-04-22 15:15:00,25.0,0.40489418,21.771471068622482 +2019-04-22 15:30:00,25.0,0.404232804,21.770102015110137 +2019-04-22 15:45:00,25.0,0.41521164,21.768733377034742 +2019-04-22 16:00:00,25.0,0.452777778,21.76736515457234 +2019-04-22 16:15:00,25.0,0.458465608,21.76599734789891 +2019-04-22 16:30:00,25.0,0.460714286,21.76462995719038 +2019-04-22 16:45:00,25.0,0.494444444,21.763262982622635 +2019-04-22 17:00:00,25.0,0.495899471,21.761896424371493 +2019-04-22 17:15:00,25.0,0.496164021,21.760530282612724 +2019-04-22 17:30:00,25.0,0.503571429,21.75916455752204 +2019-04-22 17:45:00,25.0,0.506481481,21.757799249275116 +2019-04-22 18:00:00,25.0,0.642989418,21.75643435804755 +2019-04-22 18:15:00,25.0,0.703042328,21.7550698840149 +2019-04-22 18:30:00,25.0,0.717989418,21.753705827352675 +2019-04-22 18:45:00,25.0,0.748677249,21.752342188236312 +2019-04-22 19:00:00,25.0,0.749603175,21.75097896684121 +2019-04-22 19:15:00,25.0,0.746560847,21.74961616334271 +2019-04-22 19:30:00,25.0,0.740873016,21.7482537779161 +2019-04-22 19:45:00,25.0,0.734656085,21.746891810736617 +2019-04-22 20:00:00,25.0,0.732804233,21.745530261979432 +2019-04-22 20:15:00,25.0,0.732804233,21.744169131819675 +2019-04-22 20:30:00,25.0,0.741931217,21.742808420432418 +2019-04-22 20:45:00,25.0,0.745238095,21.741448127992676 +2019-04-22 21:00:00,25.0,0.745634921,21.740088254675413 +2019-04-22 21:15:00,25.0,0.745899471,21.738728800655544 +2019-04-22 21:30:00,25.0,0.747089947,21.737369766107918 +2019-04-22 21:45:00,25.0,0.749867725,21.736011151207347 +2019-04-22 22:00:00,25.0,0.574603175,21.73465295612857 +2019-04-22 22:15:00,25.0,0.528174603,21.733295181046284 +2019-04-22 22:30:00,25.0,0.494047619,21.73193782613513 +2019-04-22 22:45:00,25.0,0.477380952,21.730580891569694 +2019-04-22 23:00:00,25.0,0.508333333,21.72922437752451 +2019-04-22 23:15:00,25.0,0.512301587,21.72786828417405 +2019-04-22 23:30:00,25.0,0.51468254,21.726512611692748 +2019-04-22 23:45:00,25.0,0.51468254,21.72515736025496 +2019-04-23 00:00:00,25.0,0.514550265,21.723802530035016 +2019-04-23 00:15:00,25.0,0.514417989,21.722448121207165 +2019-04-23 00:30:00,25.0,0.494444444,21.72109413394562 +2019-04-23 00:45:00,25.0,0.474074074,21.719740568424534 +2019-04-23 01:00:00,25.0,0.486904762,21.71838742481801 +2019-04-23 01:15:00,25.0,0.48531746,21.717034703300083 +2019-04-23 01:30:00,25.0,0.479761905,21.71568240404475 +2019-04-23 01:45:00,25.0,0.474470899,21.714330527225943 +2019-04-23 02:00:00,25.0,0.474470899,21.712979073017546 +2019-04-23 02:15:00,25.0,0.47473545,21.711628041593386 +2019-04-23 02:30:00,25.0,0.474074074,21.710277433127235 +2019-04-23 02:45:00,25.0,0.474867725,21.708927247792815 +2019-04-23 03:00:00,25.0,0.475396825,21.70757748576378 +2019-04-23 03:15:00,25.0,0.475396825,21.70622814721375 +2019-04-23 03:30:00,25.0,0.475396825,21.704879232316276 +2019-04-23 03:45:00,25.0,0.487433862,21.70353074124486 +2019-04-23 04:00:00,25.0,0.698280423,21.702182674172946 +2019-04-23 04:15:00,25.0,0.772354497,21.700835031273925 +2019-04-23 04:30:00,25.0,0.772089947,21.699487812721138 +2019-04-23 04:45:00,25.0,0.773809524,21.69814101868786 +2019-04-23 05:00:00,25.0,0.775,21.69679464934733 +2019-04-23 05:15:00,25.0,0.773809524,21.695448704872707 +2019-04-23 05:30:00,25.0,0.774603175,21.694103185437122 +2019-04-23 05:45:00,25.0,0.773941799,21.69275809121363 +2019-04-23 06:00:00,25.0,0.773677249,21.69141342237525 +2019-04-23 06:15:00,25.0,0.772486772,21.690069179094927 +2019-04-23 06:30:00,25.0,0.772354497,21.68872536154556 +2019-04-23 06:45:00,25.0,0.773544974,21.687381969900002 +2019-04-23 07:00:00,25.0,0.774206349,21.686039004331043 +2019-04-23 07:15:00,25.0,0.762566138,21.68469646501141 +2019-04-23 07:30:00,25.0,0.720634921,21.68335435211379 +2019-04-23 07:45:00,25.0,0.721164021,21.682012665810802 +2019-04-23 08:00:00,25.0,0.71984127,21.680671406275025 +2019-04-23 08:15:00,25.0,0.720502646,21.67933057367897 +2019-04-23 08:30:00,25.0,0.720502646,21.6779901681951 +2019-04-23 08:45:00,25.0,0.688227513,21.676650189995822 +2019-04-23 09:00:00,25.0,0.666137566,21.675310639253485 +2019-04-23 09:15:00,25.0,0.666931217,21.673971516140387 +2019-04-23 09:30:00,25.0,0.621825397,21.672632820828763 +2019-04-23 09:45:00,25.0,0.611243386,21.671294553490807 +2019-04-23 10:00:00,25.0,0.613492063,21.669956714298646 +2019-04-23 10:15:00,25.0,0.613359788,21.668619303424357 +2019-04-23 10:30:00,25.0,0.611904762,21.667282321039963 +2019-04-23 10:45:00,25.0,0.602777778,21.665945767317424 +2019-04-23 11:00:00,25.0,0.602513228,21.66460964242866 +2019-04-23 11:15:00,25.0,0.623412698,21.663273946545512 +2019-04-23 11:30:00,25.0,0.66468254,21.661938679839793 +2019-04-23 11:45:00,25.0,0.666005291,21.660603842483244 +2019-04-23 12:00:00,25.0,0.660185185,21.659269434647555 +2019-04-23 12:15:00,25.0,0.655555556,21.65793545650436 +2019-04-23 12:30:00,25.0,0.663756614,21.656601908225237 +2019-04-23 12:45:00,25.0,0.654232804,21.65526878998172 +2019-04-23 13:00:00,25.0,0.661111111,21.65393610194526 +2019-04-23 13:15:00,25.0,0.649074074,21.652603844287285 +2019-04-23 13:30:00,25.0,0.648280423,21.651272017179146 +2019-04-23 13:45:00,25.0,0.659920635,21.649940620792147 +2019-04-23 14:00:00,25.0,0.659920635,21.648609655297538 +2019-04-23 14:15:00,25.0,0.653439153,21.64727912086651 +2019-04-23 14:30:00,25.0,0.645238095,21.645949017670198 +2019-04-23 14:45:00,25.0,0.65462963,21.644619345879683 +2019-04-23 15:00:00,25.0,0.646560847,21.64329010566599 +2019-04-23 15:15:00,25.0,0.650925926,21.641961297200087 +2019-04-23 15:30:00,25.0,0.65952381,21.640632920652894 +2019-04-23 15:45:00,25.0,0.660978836,21.63930497619527 +2019-04-23 16:00:00,25.0,0.661111111,21.637977463998013 +2019-04-23 16:15:00,25.0,0.662169312,21.63665038423187 +2019-04-23 16:30:00,25.0,0.662301587,21.635323737067537 +2019-04-23 16:45:00,25.0,0.662962963,21.633997522675653 +2019-04-23 17:00:00,25.0,0.662566138,21.632671741226794 +2019-04-23 17:15:00,25.0,0.661904762,21.631346392891484 +2019-04-23 17:30:00,25.0,0.662698413,21.630021477840195 +2019-04-23 17:45:00,25.0,0.663756614,21.62869699624334 +2019-04-23 18:00:00,25.0,0.663492063,21.627372948271283 +2019-04-23 18:15:00,25.0,0.663227513,21.626049334094315 +2019-04-23 18:30:00,25.0,0.663888889,21.624726153882687 +2019-04-23 18:45:00,25.0,0.664021164,21.62340340780659 +2019-04-23 19:00:00,25.0,0.664153439,21.622081096036162 +2019-04-23 19:15:00,25.0,0.664550265,21.62075921874148 +2019-04-23 19:30:00,25.0,0.664550265,21.619437776092564 +2019-04-23 19:45:00,25.0,0.664021164,21.61811676825938 +2019-04-23 20:00:00,25.0,0.663492063,21.616796195411844 +2019-04-23 20:15:00,25.0,0.664550265,21.615476057719807 +2019-04-23 20:30:00,25.0,0.664550265,21.61415635535307 +2019-04-23 20:45:00,25.0,0.664417989,21.612837088481378 +2019-04-23 21:00:00,25.0,0.66468254,21.611518257274415 +2019-04-23 21:15:00,25.0,0.66521164,21.610199861901812 +2019-04-23 21:30:00,25.0,0.632407407,21.60888190253315 +2019-04-23 21:45:00,25.0,0.611375661,21.607564379337937 +2019-04-23 22:00:00,25.0,0.611243386,21.606247292485648 +2019-04-23 22:15:00,25.0,0.623015873,21.604930642145682 +2019-04-23 22:30:00,25.0,0.638095238,21.60361442848739 +2019-04-23 22:45:00,25.0,0.637433862,21.60229865168007 +2019-04-23 23:00:00,25.0,0.638095238,21.600983311892957 +2019-04-23 23:15:00,25.0,0.638095238,21.599668409295237 +2019-04-23 23:30:00,25.0,0.637830688,21.59835394405603 +2019-04-23 23:45:00,25.0,0.619708995,21.59703991634441 +2019-04-24 00:00:00,25.0,0.611243386,21.59572632632939 +2019-04-24 00:15:00,25.0,0.610978836,21.594413174179927 +2019-04-24 00:30:00,25.0,0.610714286,21.593100460064917 +2019-04-24 00:45:00,25.0,0.610846561,21.591788184153213 +2019-04-24 01:00:00,25.0,0.610582011,21.590476346613595 +2019-04-24 01:15:00,25.0,0.611111111,21.589164947614798 +2019-04-24 01:30:00,25.0,0.611243386,21.587853987325495 +2019-04-24 01:45:00,25.0,0.611111111,21.58654346591431 +2019-04-24 02:00:00,25.0,0.610449735,21.5852333835498 +2019-04-24 02:15:00,25.0,0.609656085,21.583923740400472 +2019-04-24 02:30:00,25.0,0.607539683,21.58261453663478 +2019-04-24 02:45:00,25.0,0.60026455,21.581305772421107 +2019-04-24 03:00:00,25.0,0.603835979,21.579997447927795 +2019-04-24 03:15:00,25.0,0.607407407,21.578689563323127 +2019-04-24 03:30:00,25.0,0.608068783,21.577382118775326 +2019-04-24 03:45:00,25.0,0.608068783,21.57607511445255 +2019-04-24 04:00:00,25.0,0.606878307,21.57476855052292 +2019-04-24 04:15:00,25.0,0.606613757,21.573462427154478 +2019-04-24 04:30:00,25.0,0.606746032,21.572156744515226 +2019-04-24 04:45:00,25.0,0.643518519,21.570851502773106 +2019-04-24 05:00:00,25.0,0.646031746,21.569546702096 +2019-04-24 05:15:00,25.0,0.72037037,21.568242342651736 +2019-04-24 05:30:00,25.0,0.764285714,21.56693842460808 +2019-04-24 05:45:00,25.0,0.75952381,21.565634948132747 +2019-04-24 06:00:00,25.0,0.756349206,21.56433191339339 +2019-04-24 06:15:00,25.0,0.750925926,21.56302932055761 +2019-04-24 06:30:00,25.0,0.745502646,21.561727169792956 +2019-04-24 06:45:00,25.0,0.739417989,21.560425461266906 +2019-04-24 07:00:00,25.0,0.733597884,21.559124195146893 +2019-04-24 07:15:00,25.0,0.727910053,21.557823371600282 +2019-04-24 07:30:00,25.0,0.722619048,21.5565229907944 +2019-04-24 07:45:00,25.0,0.711375661,21.55522305289649 +2019-04-24 08:00:00,25.0,0.70026455,21.553923558073762 +2019-04-24 08:15:00,25.0,0.690740741,21.552624506493363 +2019-04-24 08:30:00,25.0,0.677513228,21.551325898322375 +2019-04-24 08:45:00,25.0,0.666005291,21.550027733727827 +2019-04-24 09:00:00,25.0,0.673941799,21.548730012876693 +2019-04-24 09:15:00,25.0,0.676322751,21.547432735935892 +2019-04-24 09:30:00,25.0,0.684391534,21.54613590307228 +2019-04-24 09:45:00,25.0,0.671031746,21.544839514452658 +2019-04-24 10:00:00,25.0,0.66984127,21.54354357024377 +2019-04-24 10:15:00,25.0,0.661772487,21.54224807061231 +2019-04-24 10:30:00,25.0,0.667328042,21.5409530157249 +2019-04-24 10:45:00,25.0,0.674603175,21.539658405748114 +2019-04-24 11:00:00,25.0,0.688756614,21.538364240848473 +2019-04-24 11:15:00,25.0,0.686243386,21.53707052119243 +2019-04-24 11:30:00,25.0,0.671428571,21.535777246946388 +2019-04-24 11:45:00,25.0,0.667592593,21.534484418276694 +2019-04-24 12:00:00,25.0,0.655555556,21.533192035349632 +2019-04-24 12:15:00,25.0,0.645899471,21.53190009833143 +2019-04-24 12:30:00,25.0,0.655687831,21.53060860738826 +2019-04-24 12:45:00,25.0,0.639550265,21.52931756268624 +2019-04-24 13:00:00,25.0,0.64973545,21.528026964391422 +2019-04-24 13:15:00,25.0,0.666798942,21.52673681266981 +2019-04-24 13:30:00,25.0,0.673280423,21.52544710768735 +2019-04-24 13:45:00,25.0,0.677116402,21.524157849609917 +2019-04-24 14:00:00,25.0,0.68015873,21.522869038603343 +2019-04-24 14:15:00,25.0,0.691137566,21.521580674833398 +2019-04-24 14:30:00,25.0,0.688095238,21.520292758465793 +2019-04-24 14:45:00,25.0,0.691402116,21.519005289666186 +2019-04-24 15:00:00,25.0,0.701058201,21.517718268600174 +2019-04-24 15:15:00,25.0,0.702380952,21.51643169543329 +2019-04-24 15:30:00,25.0,0.698412698,21.515145570331025 +2019-04-24 15:45:00,25.0,0.69537037,21.5138598934588 +2019-04-24 16:00:00,25.0,0.697486772,21.51257466498198 +2019-04-24 16:15:00,25.0,0.693650794,21.51128988506587 +2019-04-24 16:30:00,25.0,0.694444444,21.510005553875732 +2019-04-24 16:45:00,25.0,0.694973545,21.508721671576755 +2019-04-24 17:00:00,25.0,0.701322751,21.507438238334075 +2019-04-24 17:15:00,25.0,0.695634921,21.506155254312766 +2019-04-24 17:30:00,25.0,0.692592593,21.50487271967785 +2019-04-24 17:45:00,25.0,0.689021164,21.503590634594293 +2019-04-24 18:00:00,25.0,0.682407407,21.502308999226997 +2019-04-24 18:15:00,25.0,0.677777778,21.501027813740812 +2019-04-24 18:30:00,25.0,0.667989418,21.499747078300526 +2019-04-24 18:45:00,25.0,0.637169312,21.498466793070865 +2019-04-24 19:00:00,25.0,0.625529101,21.49718695821651 +2019-04-24 19:15:00,25.0,0.63478836,21.49590757390207 +2019-04-24 19:30:00,25.0,0.646428571,21.494628640292103 +2019-04-24 19:45:00,25.0,0.65515873,21.493350157551113 +2019-04-24 20:00:00,25.0,0.668518519,21.49207212584354 +2019-04-24 20:15:00,25.0,0.680687831,21.490794545333767 +2019-04-24 20:30:00,25.0,0.696957672,21.489517416186114 +2019-04-24 20:45:00,25.0,0.710846561,21.488240738564855 +2019-04-24 21:00:00,25.0,0.721825397,21.4869645126342 +2019-04-24 21:15:00,25.0,0.72962963,21.48568873855829 +2019-04-24 21:30:00,25.0,0.728968254,21.48441341650123 +2019-04-24 21:45:00,25.0,0.728042328,21.483138546627053 +2019-04-24 22:00:00,25.0,0.733068783,21.48186412909973 +2019-04-24 22:15:00,25.0,0.682275132,21.480590164083182 +2019-04-24 22:30:00,25.0,0.643518519,21.479316651741268 +2019-04-24 22:45:00,25.0,0.623941799,21.478043592237793 +2019-04-24 23:00:00,25.0,0.650661376,21.4767709857365 +2019-04-24 23:15:00,25.0,0.688888889,21.475498832401072 +2019-04-24 23:30:00,25.0,0.689153439,21.474227132395143 +2019-04-24 23:45:00,25.0,0.706613757,21.472955885882275 +2019-04-25 00:00:00,25.0,0.680687831,21.471685093025982 +2019-04-25 00:15:00,25.0,0.688492063,21.470414753989715 +2019-04-25 00:30:00,25.0,0.642592593,21.469144868936866 +2019-04-25 00:45:00,25.0,0.610846561,21.467875438030774 +2019-04-25 01:00:00,25.0,0.552910053,21.466606461434715 +2019-04-25 01:15:00,25.0,0.486375661,21.46533793931191 +2019-04-25 01:30:00,25.0,0.426719577,21.46406987182552 +2019-04-25 01:45:00,25.0,0.363756614,21.462802259138638 +2019-04-25 02:00:00,25.0,0.323941799,21.461535101414313 +2019-04-25 02:15:00,25.0,0.313888889,21.460268398815533 +2019-04-25 02:30:00,25.0,0.321296296,21.45900215150522 +2019-04-25 02:45:00,25.0,0.330555556,21.457736359646244 +2019-04-25 03:00:00,25.0,0.389550265,21.456471023401413 +2019-04-25 03:15:00,25.0,0.429761905,21.455206142933477 +2019-04-25 03:30:00,25.0,0.423280423,21.453941718405126 +2019-04-25 03:45:00,25.0,0.391269841,21.452677749978996 +2019-04-25 04:00:00,25.0,0.348148148,21.451414237817662 +2019-04-25 04:15:00,25.0,0.349338624,21.450151182083637 +2019-04-25 04:30:00,25.0,0.371957672,21.448888582939382 +2019-04-25 04:45:00,25.0,0.393518519,21.447626440547293 +2019-04-25 05:00:00,25.0,0.386375661,21.44636475506971 +2019-04-25 05:15:00,25.0,0.301851852,21.445103526668913 +2019-04-25 05:30:00,25.0,0.233068783,21.443842755507124 +2019-04-25 05:45:00,25.0,0.225793651,21.44258244174651 +2019-04-25 06:00:00,25.0,0.252380952,21.441322585549173 +2019-04-25 06:15:00,25.0,0.273544974,21.440063187077158 +2019-04-25 06:30:00,25.0,0.285582011,21.43880424649245 +2019-04-25 06:45:00,25.0,0.272883598,21.43754576395698 +2019-04-25 07:00:00,25.0,0.253174603,21.436287739632615 +2019-04-25 07:15:00,25.0,0.272751323,21.43503017368117 +2019-04-25 07:30:00,25.0,0.287301587,21.433773066264386 +2019-04-25 07:45:00,25.0,0.303174603,21.43251641754397 +2019-04-25 08:00:00,25.0,0.326984127,21.431260227681538 +2019-04-25 08:15:00,25.0,0.347089947,21.430004496838674 +2019-04-25 08:30:00,25.0,0.372089947,21.428749225176894 +2019-04-25 08:45:00,25.0,0.388756614,21.427494412857648 +2019-04-25 09:00:00,25.0,0.367857143,21.426240060042336 +2019-04-25 09:15:00,25.0,0.343386243,21.424986166892296 +2019-04-25 09:30:00,25.0,0.312169312,21.42373273356881 +2019-04-25 09:45:00,25.0,0.296031746,21.42247976023309 +2019-04-25 10:00:00,25.0,0.286904762,21.421227247046303 +2019-04-25 10:15:00,25.0,0.280952381,21.419975194169545 +2019-04-25 10:30:00,25.0,0.278439153,21.418723601763862 +2019-04-25 10:45:00,25.0,0.295238095,21.417472469990233 +2019-04-25 11:00:00,25.0,0.321693122,21.416221799009584 +2019-04-25 11:15:00,25.0,0.313492063,21.41497158898278 +2019-04-25 11:30:00,25.0,0.305026455,21.413721840070625 +2019-04-25 11:45:00,25.0,0.301851852,21.41247255243386 +2019-04-25 12:00:00,25.0,0.285846561,21.41122372623318 +2019-04-25 12:15:00,25.0,0.283994709,21.409975361629208 +2019-04-25 12:30:00,25.0,0.274470899,21.408727458782508 +2019-04-25 12:45:00,25.0,0.268253968,21.407480017853594 +2019-04-25 13:00:00,25.0,0.290873016,21.40623303900291 +2019-04-25 13:15:00,25.0,0.294047619,21.404986522390846 +2019-04-25 13:30:00,25.0,0.285185185,21.40374046817773 +2019-04-25 13:45:00,25.0,0.282671958,21.40249487652384 +2019-04-25 14:00:00,25.0,0.26957672,21.401249747589382 +2019-04-25 14:15:00,25.0,0.269047619,21.400005081534506 +2019-04-25 14:30:00,25.0,0.282804233,21.398760878519308 +2019-04-25 14:45:00,25.0,0.288359788,21.397517138703815 +2019-04-25 15:00:00,25.0,0.307142857,21.396273862248005 +2019-04-25 15:15:00,25.0,0.295502646,21.395031049311786 +2019-04-25 15:30:00,25.0,0.283597884,21.393788700055016 +2019-04-25 15:45:00,25.0,0.268783069,21.392546814637484 +2019-04-25 16:00:00,25.0,0.267460317,21.39130539321893 +2019-04-25 16:15:00,25.0,0.26547619,21.390064435959022 +2019-04-25 16:30:00,25.0,0.265343915,21.388823943017382 +2019-04-25 16:45:00,25.0,0.293386243,21.38758391455356 +2019-04-25 17:00:00,25.0,0.298148148,21.38634435072705 +2019-04-25 17:15:00,25.0,0.282010582,21.385105251697293 +2019-04-25 17:30:00,25.0,0.281613757,21.38386661762366 +2019-04-25 17:45:00,25.0,0.263359788,21.38262844866547 +2019-04-25 18:00:00,25.0,0.256878307,21.38139074498198 +2019-04-25 18:15:00,25.0,0.25026455,21.380153506732384 +2019-04-25 18:30:00,25.0,0.255291005,21.378916734075815 +2019-04-25 18:45:00,25.0,0.298809524,21.377680427171356 +2019-04-25 19:00:00,25.0,0.343121693,21.37644458617802 +2019-04-25 19:15:00,25.0,0.365343915,21.37520921125477 +2019-04-25 19:30:00,25.0,0.353174603,21.37397430256049 +2019-04-25 19:45:00,25.0,0.336243386,21.37273986025403 +2019-04-25 20:00:00,25.0,0.312566138,21.37150588449416 +2019-04-25 20:15:00,25.0,0.270767196,21.370272375439598 +2019-04-25 20:30:00,25.0,0.216005291,21.369039333249 +2019-04-25 20:45:00,25.0,0.183068783,21.367806758080963 +2019-04-25 21:00:00,25.0,0.168518519,21.366574650094027 +2019-04-25 21:15:00,25.0,0.171031746,21.36534300944666 +2019-04-25 21:30:00,25.0,0.142460317,21.36411183629729 +2019-04-25 21:45:00,25.0,0.126719577,21.36288113080427 +2019-04-25 22:00:00,25.0,0.143783069,21.361650893125887 +2019-04-25 22:15:00,25.0,0.161243386,21.360421123420387 +2019-04-25 22:30:00,25.0,0.191402116,21.35919182184594 +2019-04-25 22:45:00,25.0,0.179497354,21.35796298856067 +2019-04-25 23:00:00,25.0,0.165740741,21.356734623722623 +2019-04-25 23:15:00,25.0,0.135449735,21.355506727489797 +2019-04-25 23:30:00,25.0,0.099338624,21.354279300020128 +2019-04-25 23:45:00,25.0,0.083730159,21.35305234147149 +2019-04-26 00:00:00,25.0,0.07962963,21.3518258520017 +2019-04-26 00:15:00,25.0,0.075396825,21.350599831768506 +2019-04-26 00:30:00,25.0,0.083730159,21.34937428092961 +2019-04-26 00:45:00,25.0,0.092989418,21.348149199642634 +2019-04-26 01:00:00,25.0,0.085582011,21.34692458806516 +2019-04-26 01:15:00,25.0,0.071693122,21.345700446354698 +2019-04-26 01:30:00,25.0,0.070767196,21.344476774668696 +2019-04-26 01:45:00,25.0,0.072883598,21.343253573164553 +2019-04-26 02:00:00,25.0,0.073280423,21.342030841999595 +2019-04-26 02:15:00,25.0,0.072354497,21.34080858133109 +2019-04-26 02:30:00,25.0,0.072089947,21.339586791316254 +2019-04-26 02:45:00,25.0,0.067460317,21.33836547211223 +2019-04-26 03:00:00,25.0,0.066931217,21.337144623876114 +2019-04-26 03:15:00,25.0,0.072222222,21.33592424676493 +2019-04-26 03:30:00,25.0,0.06547619,21.334704340935648 +2019-04-26 03:45:00,25.0,0.062169312,21.333484906545173 +2019-04-26 04:00:00,25.0,0.068650794,21.33226594375035 +2019-04-26 04:15:00,25.0,0.076322751,21.33104745270797 +2019-04-26 04:30:00,25.0,0.084259259,21.329829433574755 +2019-04-26 04:45:00,25.0,0.093386243,21.328611886507368 +2019-04-26 05:00:00,25.0,0.084259259,21.327394811662415 +2019-04-26 05:15:00,25.0,0.085449735,21.32617820919644 +2019-04-26 05:30:00,25.0,0.080555556,21.32496207926592 +2019-04-26 05:45:00,25.0,0.076455026,21.32374642202728 +2019-04-26 06:00:00,25.0,0.086772487,21.322531237636884 +2019-04-26 06:15:00,25.0,0.085714286,21.321316526251024 +2019-04-26 06:30:00,25.0,0.090608466,21.320102288025947 +2019-04-26 06:45:00,25.0,0.10489418,21.318888523117828 +2019-04-26 07:00:00,25.0,0.101587302,21.317675231682784 +2019-04-26 07:15:00,25.0,0.113492063,21.31646241387687 +2019-04-26 07:30:00,25.0,0.122619048,21.31525006985608 +2019-04-26 07:45:00,25.0,0.137698413,21.314038199776355 +2019-04-26 08:00:00,25.0,0.165079365,21.312826803793563 +2019-04-26 08:15:00,25.0,0.172089947,21.311615882063517 +2019-04-26 08:30:00,25.0,0.174206349,21.31040543474197 +2019-04-26 08:45:00,25.0,0.167592593,21.309195461984615 +2019-04-26 09:00:00,25.0,0.157671958,21.307985963947075 +2019-04-26 09:15:00,25.0,0.158068783,21.306776940784925 +2019-04-26 09:30:00,25.0,0.146693122,21.30556839265367 +2019-04-26 09:45:00,25.0,0.148809524,21.304360319708753 +2019-04-26 10:00:00,25.0,0.153571429,21.303152722105565 +2019-04-26 10:15:00,25.0,0.152513228,21.301945599999428 +2019-04-26 10:30:00,25.0,0.153306878,21.300738953545597 +2019-04-26 10:45:00,25.0,0.144444444,21.299532782899288 +2019-04-26 11:00:00,25.0,0.137301587,21.29832708821563 +2019-04-26 11:15:00,25.0,0.12962963,21.297121869649708 +2019-04-26 11:30:00,25.0,0.134259259,21.295917127356535 +2019-04-26 11:45:00,25.0,0.131878307,21.29471286149107 +2019-04-26 12:00:00,25.0,0.129232804,21.293509072208217 +2019-04-26 12:15:00,25.0,0.118253968,21.292305759662796 +2019-04-26 12:30:00,25.0,0.112962963,21.29110292400959 +2019-04-26 12:45:00,25.0,0.103439153,21.2899005654033 +2019-04-26 13:00:00,25.0,0.107010582,21.28869868399859 +2019-04-26 13:15:00,25.0,0.098941799,21.28749727995004 +2019-04-26 13:30:00,25.0,0.101455026,21.28629635341218 +2019-04-26 13:45:00,25.0,0.103439153,21.285095904539475 +2019-04-26 14:00:00,25.0,0.101455026,21.283895933486328 +2019-04-26 14:15:00,25.0,0.103835979,21.282696440407083 +2019-04-26 14:30:00,25.0,0.116137566,21.281497425456024 +2019-04-26 14:45:00,25.0,0.112566138,21.280298888787367 +2019-04-26 15:00:00,25.0,0.105291005,21.279100830555276 +2019-04-26 15:15:00,25.0,0.108068783,21.277903250913845 +2019-04-26 15:30:00,25.0,0.111772487,21.276706150017105 +2019-04-26 15:45:00,25.0,0.121164021,21.27550952801904 +2019-04-26 16:00:00,25.0,0.126190476,21.27431338507355 +2019-04-26 16:15:00,25.0,0.11984127,21.273117721334497 +2019-04-26 16:30:00,25.0,0.131613757,21.271922536955664 +2019-04-26 16:45:00,25.0,0.143518519,21.270727832090778 +2019-04-26 17:00:00,25.0,0.15026455,21.26953360689351 +2019-04-26 17:15:00,25.0,0.155820106,21.26833986151746 +2019-04-26 17:30:00,25.0,0.151058201,21.26714659611617 +2019-04-26 17:45:00,25.0,0.135714286,21.26595381084312 +2019-04-26 18:00:00,25.0,0.086375661,21.264761505851727 +2019-04-26 18:15:00,25.0,0.08505291,21.263569681295355 +2019-04-26 18:30:00,25.0,0.086243386,21.262378337327295 +2019-04-26 18:45:00,25.0,0.082539683,21.26118747410078 +2019-04-26 19:00:00,25.0,0.078439153,21.259997091768984 +2019-04-26 19:15:00,25.0,0.08015873,21.25880719048501 +2019-04-26 19:30:00,25.0,0.08015873,21.257617770401914 +2019-04-26 19:45:00,25.0,0.085449735,21.25642883167268 +2019-04-26 20:00:00,25.0,0.087301587,21.255240374450228 +2019-04-26 20:15:00,25.0,0.089417989,21.254052398887428 +2019-04-26 20:30:00,25.0,0.09457672,21.25286490513707 +2019-04-26 20:45:00,25.0,0.108730159,21.2516778933519 +2019-04-26 21:00:00,25.0,0.121957672,21.25049136368459 +2019-04-26 21:15:00,25.0,0.128042328,21.249305316287757 +2019-04-26 21:30:00,25.0,0.137433862,21.24811975131395 +2019-04-26 21:45:00,25.0,0.121164021,21.246934668915664 +2019-04-26 22:00:00,25.0,0.100793651,21.24575006924532 +2019-04-26 22:15:00,25.0,0.103042328,21.244565952455293 +2019-04-26 22:30:00,25.0,0.103306878,21.243382318697876 +2019-04-26 22:45:00,25.0,0.110185185,21.24219916812532 +2019-04-26 23:00:00,25.0,0.115740741,21.2410165008898 +2019-04-26 23:15:00,25.0,0.113756614,21.239834317143437 +2019-04-26 23:30:00,25.0,0.116666667,21.238652617038284 +2019-04-26 23:45:00,25.0,0.12473545,21.237471400726328 +2019-04-27 00:00:00,25.0,0.139814815,21.23629066835951 +2019-04-27 00:15:00,25.0,0.163359788,21.235110420089693 +2019-04-27 00:30:00,25.0,0.189417989,21.233930656068683 +2019-04-27 00:45:00,25.0,0.210714286,21.232751376448228 +2019-04-27 01:00:00,25.0,0.238756614,21.231572581380004 +2019-04-27 01:15:00,25.0,0.248941799,21.230394271015633 +2019-04-27 01:30:00,25.0,0.252645503,21.229216445506676 +2019-04-27 01:45:00,25.0,0.272883598,21.228039105004623 +2019-04-27 02:00:00,25.0,0.291402116,21.226862249660904 +2019-04-27 02:15:00,25.0,0.317195767,21.225685879626894 +2019-04-27 02:30:00,25.0,0.340740741,21.2245099950539 +2019-04-27 02:45:00,25.0,0.376851852,21.22333459609316 +2019-04-27 03:00:00,25.0,0.380555556,21.22215968289587 +2019-04-27 03:15:00,25.0,0.387698413,21.220985255613137 +2019-04-27 03:30:00,25.0,0.386111111,21.219811314396026 +2019-04-27 03:45:00,25.0,0.383201058,21.218637859395525 +2019-04-27 04:00:00,25.0,0.373809524,21.217464890762574 +2019-04-27 04:15:00,25.0,0.387962963,21.21629240864804 +2019-04-27 04:30:00,25.0,0.388095238,21.215120413202733 +2019-04-27 04:45:00,25.0,0.384259259,21.213948904577393 +2019-04-27 05:00:00,25.0,0.388492063,21.212777882922705 +2019-04-27 05:15:00,25.0,0.387301587,21.211607348389286 +2019-04-27 05:30:00,25.0,0.38994709,21.210437301127694 +2019-04-27 05:45:00,25.0,0.38994709,21.20926774128843 +2019-04-27 06:00:00,25.0,0.380820106,21.20809866902191 +2019-04-27 06:15:00,25.0,0.36031746,21.206930084478522 +2019-04-27 06:30:00,25.0,0.359656085,21.205761987808554 +2019-04-27 06:45:00,25.0,0.353439153,21.204594379162263 +2019-04-27 07:00:00,25.0,0.366534392,21.20342725868982 +2019-04-27 07:15:00,25.0,0.378042328,21.20226062654135 +2019-04-27 07:30:00,25.0,0.380291005,21.201094482866907 +2019-04-27 07:45:00,25.0,0.369179894,21.199928827816475 +2019-04-27 08:00:00,25.0,0.366005291,21.198763661539992 +2019-04-27 08:15:00,25.0,0.386375661,21.19759898418732 +2019-04-27 08:30:00,25.0,0.403174603,21.196434795908264 +2019-04-27 08:45:00,25.0,0.402777778,21.19527109685257 +2019-04-27 09:00:00,25.0,0.406481481,21.194107887169903 +2019-04-27 09:15:00,25.0,0.427116402,21.19294516700989 +2019-04-27 09:30:00,25.0,0.446560847,21.19178293652207 +2019-04-27 09:45:00,25.0,0.444708995,21.190621195855947 +2019-04-27 10:00:00,25.0,0.421428571,21.189459945160934 +2019-04-27 10:15:00,25.0,0.406878307,21.188299184586402 +2019-04-27 10:30:00,25.0,0.392328042,21.18713891428165 +2019-04-27 10:45:00,25.0,0.375925926,21.185979134395907 +2019-04-27 11:00:00,25.0,0.355687831,21.18481984507836 +2019-04-27 11:15:00,25.0,0.331084656,21.1836610464781 +2019-04-27 11:30:00,25.0,0.308333333,21.182502738744194 +2019-04-27 11:45:00,25.0,0.283465608,21.181344922025616 +2019-04-27 12:00:00,25.0,0.262301587,21.18018759647129 +2019-04-27 12:15:00,25.0,0.252777778,21.17903076223007 +2019-04-27 12:30:00,25.0,0.249867725,21.177874419450756 +2019-04-27 12:45:00,25.0,0.233333333,21.176718568282077 +2019-04-27 13:00:00,25.0,0.205555556,21.1755632088727 +2019-04-27 13:15:00,25.0,0.190343915,21.174408341371233 +2019-04-27 13:30:00,25.0,0.190079365,21.17325396592621 +2019-04-27 13:45:00,25.0,0.182275132,21.17210008268612 +2019-04-27 14:00:00,25.0,0.168253968,21.17094669179938 +2019-04-27 14:15:00,25.0,0.153968254,21.16979379341433 +2019-04-27 14:30:00,25.0,0.138359788,21.168641387679262 +2019-04-27 14:45:00,25.0,0.128306878,21.167489474742403 +2019-04-27 15:00:00,25.0,0.127248677,21.166338054751918 +2019-04-27 15:15:00,25.0,0.138492063,21.1651871278559 +2019-04-27 15:30:00,25.0,0.135978836,21.164036694202384 +2019-04-27 15:45:00,25.0,0.132671958,21.162886753939347 +2019-04-27 16:00:00,25.0,0.120899471,21.16173730721469 +2019-04-27 16:15:00,25.0,0.110185185,21.160588354176262 +2019-04-27 16:30:00,25.0,0.113624339,21.159439894971843 +2019-04-27 16:45:00,25.0,0.110714286,21.158291929749154 +2019-04-27 17:00:00,25.0,0.103703704,21.157144458655843 +2019-04-27 17:15:00,25.0,0.114285714,21.1559974818395 +2019-04-27 17:30:00,25.0,0.121428571,21.154850999447653 +2019-04-27 17:45:00,25.0,0.132539683,21.15370501162777 +2019-04-27 18:00:00,25.0,0.12037037,21.152559518527248 +2019-04-27 18:15:00,25.0,0.123941799,21.151414520293418 +2019-04-27 18:30:00,25.0,0.128968254,21.150270017073563 +2019-04-27 18:45:00,25.0,0.127910053,21.149126009014882 +2019-04-27 19:00:00,25.0,0.117989418,21.14798249626452 +2019-04-27 19:15:00,25.0,0.11494709,21.146839478969568 +2019-04-27 19:30:00,25.0,0.11005291,21.14569695727703 +2019-04-27 19:45:00,25.0,0.10978836,21.14455493133387 +2019-04-27 20:00:00,25.0,0.107671958,21.143413401286974 +2019-04-27 20:15:00,25.0,0.105952381,21.14227236728317 +2019-04-27 20:30:00,25.0,0.106878307,21.14113182946922 +2019-04-27 20:45:00,25.0,0.106746032,21.139991787991818 +2019-04-27 21:00:00,25.0,0.100925926,21.138852242997608 +2019-04-27 21:15:00,25.0,0.09047619,21.13771319463315 +2019-04-27 21:30:00,25.0,0.080952381,21.136574643044963 +2019-04-27 21:45:00,25.0,0.086111111,21.13543658837948 +2019-04-27 22:00:00,25.0,0.091269841,21.134299030783087 +2019-04-27 22:15:00,25.0,0.081746032,21.133161970402096 +2019-04-27 22:30:00,25.0,0.069973545,21.132025407382756 +2019-04-27 22:45:00,25.0,0.062169312,21.13088934187126 +2019-04-27 23:00:00,25.0,0.056878307,21.12975377401372 +2019-04-27 23:15:00,25.0,0.055026455,21.128618703956214 +2019-04-27 23:30:00,25.0,0.052910053,21.127484131844724 +2019-04-27 23:45:00,25.0,0.056746032,21.126350057825185 +2019-04-28 00:00:00,25.0,0.063095238,21.125216482043463 +2019-04-28 00:15:00,25.0,0.068783069,21.12408340464536 +2019-04-28 00:30:00,25.0,0.061111111,21.12295082577662 +2019-04-28 00:45:00,25.0,0.058465608,21.121818745582914 +2019-04-28 01:00:00,25.0,0.062698413,21.120687164209855 +2019-04-28 01:15:00,25.0,0.068386243,21.119556081802987 +2019-04-28 01:30:00,25.0,0.070238095,21.11842549850779 +2019-04-28 01:45:00,25.0,0.068253968,21.117295414469687 +2019-04-28 02:00:00,25.0,0.067460317,21.11616582983403 +2019-04-28 02:15:00,25.0,0.063624339,21.115036744746117 +2019-04-28 02:30:00,25.0,0.062301587,21.11390815935116 +2019-04-28 02:45:00,25.0,0.061243386,21.112780073794326 +2019-04-28 03:00:00,25.0,0.056746032,21.111652488220717 +2019-04-28 03:15:00,25.0,0.068386243,21.110525402775355 +2019-04-28 03:30:00,25.0,0.071693122,21.10939881760322 +2019-04-28 03:45:00,25.0,0.068386243,21.10827273284921 +2019-04-28 04:00:00,25.0,0.060449735,21.10714714865816 +2019-04-28 04:15:00,25.0,0.049074074,21.106022065174855 +2019-04-28 04:30:00,25.0,0.043121693,21.104897482543997 +2019-04-28 04:45:00,25.0,0.046957672,21.103773400910242 +2019-04-28 05:00:00,25.0,0.046560847,21.10264982041816 +2019-04-28 05:15:00,25.0,0.038624339,21.101526741212282 +2019-04-28 05:30:00,25.0,0.03478836,21.100404163437048 +2019-04-28 05:45:00,25.0,0.029365079,21.09928208723686 +2019-04-28 06:00:00,25.0,0.024206349,21.098160512756024 +2019-04-28 06:15:00,25.0,0.022354497,21.09703944013882 +2019-04-28 06:30:00,25.0,0.02010582,21.09591886952943 +2019-04-28 06:45:00,25.0,0.017989418,21.094798801071985 +2019-04-28 07:00:00,25.0,0.017063492,21.093679234910557 +2019-04-28 07:15:00,25.0,0.017724868,21.09256017118914 +2019-04-28 07:30:00,25.0,0.018783069,21.091441610051678 +2019-04-28 07:45:00,25.0,0.019973545,21.090323551642033 +2019-04-28 08:00:00,25.0,0.01957672,21.089205996104024 +2019-04-28 08:15:00,25.0,0.019312169,21.08808894358139 +2019-04-28 08:30:00,25.0,0.019708995,21.0869723942178 +2019-04-28 08:45:00,25.0,0.021031746,21.085856348156877 +2019-04-28 09:00:00,25.0,0.020899471,21.084740805542165 +2019-04-28 09:15:00,25.0,0.02010582,21.08362576651715 +2019-04-28 09:30:00,25.0,0.020899471,21.08251123122525 +2019-04-28 09:45:00,25.0,0.022089947,21.081397199809818 +2019-04-28 10:00:00,25.0,0.023544974,21.080283672414147 +2019-04-28 10:15:00,25.0,0.023544974,21.079170649181457 +2019-04-28 10:30:00,25.0,0.027248677,21.07805813025491 +2019-04-28 10:45:00,25.0,0.031481481,21.076946115777595 +2019-04-28 11:00:00,25.0,0.030026455,21.075834605892553 +2019-04-28 11:15:00,25.0,0.03015873,21.074723600742743 +2019-04-28 11:30:00,25.0,0.03452381,21.07361310047106 +2019-04-28 11:45:00,25.0,0.034391534,21.07250310522035 +2019-04-28 12:00:00,25.0,0.036507937,21.071393615133374 +2019-04-28 12:15:00,25.0,0.040079365,21.07028463035284 +2019-04-28 12:30:00,25.0,0.041666667,21.069176151021388 +2019-04-28 12:45:00,25.0,0.040343915,21.0680681772816 +2019-04-28 13:00:00,25.0,0.038359788,21.066960709275975 +2019-04-28 13:15:00,25.0,0.038624339,21.065853747146964 +2019-04-28 13:30:00,25.0,0.042592593,21.064747291036948 +2019-04-28 13:45:00,25.0,0.047486772,21.063641341088235 +2019-04-28 14:00:00,25.0,0.047883598,21.062535897443084 +2019-04-28 14:15:00,25.0,0.04510582,21.061430960243673 +2019-04-28 14:30:00,25.0,0.049470899,21.06032652963213 +2019-04-28 14:45:00,25.0,0.05462963,21.0592226057505 +2019-04-28 15:00:00,25.0,0.057804233,21.058119188740772 +2019-04-28 15:15:00,25.0,0.062301587,21.05701627874488 +2019-04-28 15:30:00,25.0,0.067328042,21.055913875904672 +2019-04-28 15:45:00,25.0,0.079365079,21.054811980361947 +2019-04-28 16:00:00,25.0,0.085582011,21.053710592258433 +2019-04-28 16:15:00,25.0,0.088624339,21.052609711735798 +2019-04-28 16:30:00,25.0,0.089153439,21.05150933893563 +2019-04-28 16:45:00,25.0,0.093650794,21.050409473999466 +2019-04-28 17:00:00,25.0,0.101058201,21.049310117068774 +2019-04-28 17:15:00,25.0,0.103968254,21.048211268284952 +2019-04-28 17:30:00,25.0,0.103042328,21.047112927789346 +2019-04-28 17:45:00,25.0,0.103174603,21.046015095723217 +2019-04-28 18:00:00,25.0,0.102645503,21.044917772227773 +2019-04-28 18:15:00,25.0,0.101851852,21.043820957444158 +2019-04-28 18:30:00,25.0,0.102910053,21.042724651513442 +2019-04-28 18:45:00,25.0,0.100793651,21.04162885457664 +2019-04-28 19:00:00,25.0,0.10026455,21.04053356677469 +2019-04-28 19:15:00,25.0,0.093253968,21.03943878824848 +2019-04-28 19:30:00,25.0,0.074338624,21.03834451913881 +2019-04-28 19:45:00,25.0,0.069047619,21.03725075958643 +2019-04-28 20:00:00,25.0,0.063227513,21.036157509732035 +2019-04-28 20:15:00,25.0,0.066798942,21.035064769716225 +2019-04-28 20:30:00,25.0,0.059126984,21.03397253967956 +2019-04-28 20:45:00,25.0,0.053835979,21.03288081976252 +2019-04-28 21:00:00,25.0,0.057671958,21.031789610105534 +2019-04-28 21:15:00,25.0,0.058068783,21.030698910848947 +2019-04-28 21:30:00,25.0,0.056746032,21.029608722133045 +2019-04-28 21:45:00,25.0,0.046957672,21.028519044098058 +2019-04-28 22:00:00,25.0,0.047751323,21.02742987688414 +2019-04-28 22:15:00,25.0,0.051322751,21.026341220631384 +2019-04-28 22:30:00,25.0,0.054365079,21.02525307547981 +2019-04-28 22:45:00,25.0,0.064550265,21.024165441569384 +2019-04-28 23:00:00,25.0,0.076587302,21.023078319039996 +2019-04-28 23:15:00,25.0,0.074074074,21.02199170803148 +2019-04-28 23:30:00,25.0,0.076984127,21.020905608683588 +2019-04-28 23:45:00,25.0,0.083465608,21.019820021136024 +2019-04-29 00:00:00,25.0,0.092592593,21.01873494552842 +2019-04-29 00:15:00,25.0,0.101984127,21.017650382000333 +2019-04-29 00:30:00,25.0,0.098809524,21.016566330691276 +2019-04-29 00:45:00,25.0,0.085185185,21.01548279174067 +2019-04-29 01:00:00,25.0,0.080952381,21.014399765287884 +2019-04-29 01:15:00,25.0,0.081349206,21.013317251472223 +2019-04-29 01:30:00,25.0,0.083068783,21.01223525043292 +2019-04-29 01:45:00,25.0,0.081613757,21.011153762309146 +2019-04-29 02:00:00,25.0,0.073015873,21.01007278724 +2019-04-29 02:15:00,25.0,0.070767196,21.008992325364527 +2019-04-29 02:30:00,25.0,0.077248677,21.007912376821697 +2019-04-29 02:45:00,25.0,0.082010582,21.006832941750407 +2019-04-29 03:00:00,25.0,0.085714286,21.00575402028951 +2019-04-29 03:15:00,25.0,0.093915344,21.004675612577763 +2019-04-29 03:30:00,25.0,0.10026455,21.00359771875389 +2019-04-29 03:45:00,25.0,0.105952381,21.002520338956522 +2019-04-29 04:00:00,25.0,0.115740741,21.001443473324237 +2019-04-29 04:15:00,25.0,0.12962963,21.000367121995545 +2019-04-29 04:30:00,25.0,0.14510582,20.99929128510888 +2019-04-29 04:45:00,25.0,0.154761905,20.998215962802636 +2019-04-29 05:00:00,25.0,0.157010582,20.997141155215107 +2019-04-29 05:15:00,25.0,0.162037037,20.996066862484547 +2019-04-29 05:30:00,25.0,0.171428571,20.99499308474913 +2019-04-29 05:45:00,25.0,0.167195767,20.993919822146967 +2019-04-29 06:00:00,25.0,0.17473545,20.992847074816105 +2019-04-29 06:15:00,25.0,0.181613757,20.99177484289452 +2019-04-29 06:30:00,25.0,0.18015873,20.99070312652014 +2019-04-29 06:45:00,25.0,0.190740741,20.98963192583079 +2019-04-29 07:00:00,25.0,0.193915344,20.988561240964263 +2019-04-29 07:15:00,25.0,0.196957672,20.98749107205827 +2019-04-29 07:30:00,25.0,0.189153439,20.986421419250455 +2019-04-29 07:45:00,25.0,0.186375661,20.985352282678406 +2019-04-29 08:00:00,25.0,0.184656085,20.984283662479633 +2019-04-29 08:15:00,25.0,0.178439153,20.983215558791592 +2019-04-29 08:30:00,25.0,0.176984127,20.98214797175165 +2019-04-29 08:45:00,25.0,0.177116402,20.981080901497137 +2019-04-29 09:00:00,25.0,0.173280423,20.980014348165298 +2019-04-29 09:15:00,25.0,0.183862434,20.978948311893312 +2019-04-29 09:30:00,25.0,0.180820106,20.9778827928183 +2019-04-29 09:45:00,25.0,0.173677249,20.976817791077302 +2019-04-29 10:00:00,25.0,0.173412698,20.975753306807317 +2019-04-29 10:15:00,25.0,0.181746032,20.974689340145243 +2019-04-29 10:30:00,25.0,0.182936508,20.973625891227947 +2019-04-29 10:45:00,25.0,0.186111111,20.9725629601922 +2019-04-29 11:00:00,25.0,0.190343915,20.971500547174724 +2019-04-29 11:15:00,25.0,0.189417989,20.97043865231217 +2019-04-29 11:30:00,25.0,0.196957672,20.969377275741117 +2019-04-29 11:45:00,25.0,0.206216931,20.968316417598082 +2019-04-29 12:00:00,25.0,0.214153439,20.96725607801952 +2019-04-29 12:15:00,25.0,0.226322751,20.96619625714181 +2019-04-29 12:30:00,25.0,0.236772487,20.965136955101272 +2019-04-29 12:45:00,25.0,0.238888889,20.964078172034153 +2019-04-29 13:00:00,25.0,0.238095238,20.96301990807664 +2019-04-29 13:15:00,25.0,0.246825397,20.961962163364838 +2019-04-29 13:30:00,25.0,0.259259259,20.960904938034812 +2019-04-29 13:45:00,25.0,0.271164021,20.959848232222537 +2019-04-29 14:00:00,25.0,0.282275132,20.958792046063927 +2019-04-29 14:15:00,25.0,0.280026455,20.95773637969484 +2019-04-29 14:30:00,25.0,0.282936508,20.956681233251047 +2019-04-29 14:45:00,25.0,0.290740741,20.955626606868268 +2019-04-29 15:00:00,25.0,0.299074074,20.95457250068215 +2019-04-29 15:15:00,25.0,0.292195767,20.953518914828283 +2019-04-29 15:30:00,25.0,0.285582011,20.95246584944217 +2019-04-29 15:45:00,25.0,0.285714286,20.951413304659265 +2019-04-29 16:00:00,25.0,0.306349206,20.95036128061495 +2019-04-29 16:15:00,25.0,0.31957672,20.949309777444533 +2019-04-29 16:30:00,25.0,0.322751323,20.94825879528327 +2019-04-29 16:45:00,25.0,0.324074074,20.947208334266328 +2019-04-29 17:00:00,25.0,0.324867725,20.94615839452883 +2019-04-29 17:15:00,25.0,0.328306878,20.94510897620582 +2019-04-29 17:30:00,25.0,0.32989418,20.94406007943227 +2019-04-29 17:45:00,25.0,0.330291005,20.9430117043431 +2019-04-29 18:00:00,25.0,0.317724868,20.941963851073147 +2019-04-29 18:15:00,25.0,0.312433862,20.9409165197572 +2019-04-29 18:30:00,25.0,0.307275132,20.939869710529955 +2019-04-29 18:45:00,25.0,0.294444444,20.93882342352606 +2019-04-29 19:00:00,25.0,0.291269841,20.937777658880098 +2019-04-29 19:15:00,25.0,0.284391534,20.936732416726567 +2019-04-29 19:30:00,25.0,0.272751323,20.935687697199917 +2019-04-29 19:45:00,25.0,0.257539683,20.934643500434518 +2019-04-29 20:00:00,25.0,0.244047619,20.933599826564674 +2019-04-29 20:15:00,25.0,0.235582011,20.93255667572463 +2019-04-29 20:30:00,25.0,0.224603175,20.931514048048562 +2019-04-29 20:45:00,25.0,0.222751323,20.930471943670565 +2019-04-29 21:00:00,25.0,0.209656085,20.92943036272468 +2019-04-29 21:15:00,25.0,0.196825397,20.928389305344886 +2019-04-29 21:30:00,25.0,0.185449735,20.927348771665073 +2019-04-29 21:45:00,25.0,0.181084656,20.926308761819087 +2019-04-29 22:00:00,25.0,0.180555556,20.925269275940696 +2019-04-29 22:15:00,25.0,0.182671958,20.924230314163594 +2019-04-29 22:30:00,25.0,0.176058201,20.923191876621416 +2019-04-29 22:45:00,25.0,0.169708995,20.922153963447734 +2019-04-29 23:00:00,25.0,0.161375661,20.921116574776047 +2019-04-29 23:15:00,25.0,0.16031746,20.920079710739778 +2019-04-29 23:30:00,25.0,0.153439153,20.9190433714723 +2019-04-29 23:45:00,25.0,0.145634921,20.918007557106904 +2019-04-30 00:00:00,25.0,0.14047619,20.91697226777682 +2019-04-30 00:15:00,25.0,0.133597884,20.915937503615208 +2019-04-30 00:30:00,25.0,0.130555556,20.914903264755164 +2019-04-30 00:45:00,25.0,0.131746032,20.913869551329714 +2019-04-30 01:00:00,25.0,0.130291005,20.912836363471815 +2019-04-30 01:15:00,25.0,0.128968254,20.911803701314362 +2019-04-30 01:30:00,25.0,0.128174603,20.910771564990174 +2019-04-30 01:45:00,25.0,0.122486772,20.909739954632006 +2019-04-30 02:00:00,25.0,0.112566138,20.90870887037255 +2019-04-30 02:15:00,25.0,0.104100529,20.907678312344423 +2019-04-30 02:30:00,25.0,0.102645503,20.90664828068018 +2019-04-30 02:45:00,25.0,0.103306878,20.90561877551231 +2019-04-30 03:00:00,25.0,0.110582011,20.90458979697322 +2019-04-30 03:15:00,25.0,0.114285714,20.90356134519527 +2019-04-30 03:30:00,25.0,0.116534392,20.902533420310732 +2019-04-30 03:45:00,25.0,0.111772487,20.90150602245183 +2019-04-30 04:00:00,25.0,0.114550265,20.900479151750705 +2019-04-30 04:15:00,25.0,0.118253968,20.899452808339436 +2019-04-30 04:30:00,25.0,0.115873016,20.898426992350032 +2019-04-30 04:45:00,25.0,0.112433862,20.89740170391444 +2019-04-30 05:00:00,25.0,0.107275132,20.896376943164533 +2019-04-30 05:15:00,25.0,0.102513228,20.895352710232117 +2019-04-30 05:30:00,25.0,0.102645503,20.89432900524893 +2019-04-30 05:45:00,25.0,0.097751323,20.893305828346648 +2019-04-30 06:00:00,25.0,0.09537037,20.89228317965687 +2019-04-30 06:15:00,25.0,0.091666667,20.891261059311134 +2019-04-30 06:30:00,25.0,0.09021164,20.890239467440907 +2019-04-30 06:45:00,25.0,0.085449735,20.889218404177587 +2019-04-30 07:00:00,25.0,0.077380952,20.888197869652505 +2019-04-30 07:15:00,25.0,0.072883598,20.88717786399693 +2019-04-30 07:30:00,25.0,0.065740741,20.88615838734205 +2019-04-30 07:45:00,25.0,0.060978836,20.885139439819 +2019-04-30 08:00:00,25.0,0.06031746,20.884121021558833 +2019-04-30 08:15:00,25.0,0.06031746,20.88310313269254 +2019-04-30 08:30:00,25.0,0.062301587,20.88208577335105 +2019-04-30 08:45:00,25.0,0.067460317,20.881068943665216 +2019-04-30 09:00:00,25.0,0.069312169,20.880052643765822 +2019-04-30 09:15:00,25.0,0.070634921,20.87903687378359 +2019-04-30 09:30:00,25.0,0.070502646,20.878021633849173 +2019-04-30 09:45:00,25.0,0.071825397,20.877006924093145 +2019-04-30 10:00:00,25.0,0.075661376,20.875992744646027 +2019-04-30 10:15:00,25.0,0.08015873,20.874979095638263 +2019-04-30 10:30:00,25.0,0.085714286,20.873965977200232 +2019-04-30 10:45:00,25.0,0.091137566,20.872953389462243 +2019-04-30 11:00:00,25.0,0.096296296,20.871941332554535 +2019-04-30 11:15:00,25.0,0.103968254,20.87092980660729 +2019-04-30 11:30:00,25.0,0.109126984,20.8699188117506 +2019-04-30 11:45:00,25.0,0.112037037,20.86890834811451 +2019-04-30 12:00:00,25.0,0.11521164,20.86789841582899 +2019-04-30 12:15:00,25.0,0.11494709,20.86688901502393 +2019-04-30 12:30:00,25.0,0.113359788,20.86588014582917 +2019-04-30 12:45:00,25.0,0.115079365,20.864871808374467 +2019-04-30 13:00:00,25.0,0.118915344,20.863864002789523 +2019-04-30 13:15:00,25.0,0.123148148,20.862856729203962 +2019-04-30 13:30:00,25.0,0.128174603,20.861849987747334 +2019-04-30 13:45:00,25.0,0.131216931,20.86084377854914 +2019-04-30 14:00:00,25.0,0.133201058,20.85983810173879 +2019-04-30 14:15:00,25.0,0.139021164,20.85883295744565 +2019-04-30 14:30:00,25.0,0.143783069,20.85782834579899 +2019-04-30 14:45:00,25.0,0.142989418,20.856824266928033 +2019-04-30 15:00:00,25.0,0.142989418,20.855820720961926 +2019-04-30 15:15:00,25.0,0.144973545,20.854817708029742 +2019-04-30 15:30:00,25.0,0.145767196,20.8538152282605 +2019-04-30 15:45:00,25.0,0.148015873,20.85281328178313 +2019-04-30 16:00:00,25.0,0.151322751,20.851811868726518 +2019-04-30 16:15:00,25.0,0.152910053,20.850810989219458 +2019-04-30 16:30:00,25.0,0.15489418,20.849810643390683 +2019-04-30 16:45:00,25.0,0.15542328,20.848810831368873 +2019-04-30 17:00:00,25.0,0.158862434,20.84781155328261 +2019-04-30 17:15:00,25.0,0.161904762,20.846812809260438 +2019-04-30 17:30:00,25.0,0.16468254,20.84581459943081 +2019-04-30 17:45:00,25.0,0.163095238,20.844816923922117 +2019-04-30 18:00:00,25.0,0.162698413,20.84381978286269 +2019-04-30 18:15:00,25.0,0.162830688,20.84282317638077 +2019-04-30 18:30:00,25.0,0.160582011,20.841827104604555 +2019-04-30 18:45:00,25.0,0.158201058,20.840831567662157 +2019-04-30 19:00:00,25.0,0.158465608,20.83983656568163 +2019-04-30 19:15:00,25.0,0.162566138,20.838842098790945 +2019-04-30 19:30:00,25.0,0.166402116,20.83784816711802 +2019-04-30 19:45:00,25.0,0.170238095,20.83685477079069 +2019-04-30 20:00:00,25.0,0.171428571,20.83586190993673 +2019-04-30 20:15:00,25.0,0.171693122,20.83486958468385 +2019-04-30 20:30:00,25.0,0.167989418,20.83387779515968 +2019-04-30 20:45:00,25.0,0.165343915,20.832886541491785 +2019-04-30 21:00:00,25.0,0.162433862,20.831895823807663 +2019-04-30 21:15:00,25.0,0.164021164,20.830905642234743 +2019-04-30 21:30:00,25.0,0.166931217,20.82991599690039 +2019-04-30 21:45:00,25.0,0.173809524,20.828926887931885 +2019-04-30 22:00:00,25.0,0.178968254,20.827938315456453 +2019-04-30 22:15:00,25.0,0.175,20.82695027960125 +2019-04-30 22:30:00,25.0,0.170767196,20.825962780493356 +2019-04-30 22:45:00,25.0,0.167592593,20.824975818259787 +2019-04-30 23:00:00,25.0,0.172089947,20.82398939302749 +2019-04-30 23:15:00,25.0,0.169708995,20.823003504923335 +2019-04-30 23:30:00,25.0,0.161904762,20.822018154074133 +2019-04-30 23:45:00,25.0,0.156878307,20.821033340606625 +2019-05-01 00:00:00,25.0,0.158201058,20.820049064647474 +2019-05-01 00:15:00,25.0,0.154761905,20.819065326323283 +2019-05-01 00:30:00,25.0,0.159391534,20.818082125760586 +2019-05-01 00:45:00,25.0,0.163756614,20.81709946308584 +2019-05-01 01:00:00,25.0,0.173677249,20.81611733842544 +2019-05-01 01:15:00,25.0,0.182539683,20.815135751905704 +2019-05-01 01:30:00,25.0,0.191402116,20.814154703652893 +2019-05-01 01:45:00,25.0,0.200661376,20.813174193793188 +2019-05-01 02:00:00,25.0,0.203439153,20.812194222452703 +2019-05-01 02:15:00,25.0,0.196825397,20.81121478975749 +2019-05-01 02:30:00,25.0,0.202513228,20.810235895833518 +2019-05-01 02:45:00,25.0,0.205820106,20.8092575408067 +2019-05-01 03:00:00,25.0,0.212566138,20.808279724802873 +2019-05-01 03:15:00,25.0,0.221031746,20.807302447947805 +2019-05-01 03:30:00,25.0,0.22962963,20.806325710367197 +2019-05-01 03:45:00,25.0,0.230555556,20.80534951218668 +2019-05-01 04:00:00,25.0,0.235582011,20.804373853531814 +2019-05-01 04:15:00,25.0,0.245238095,20.803398734528088 +2019-05-01 04:30:00,25.0,0.25489418,20.802424155300926 +2019-05-01 04:45:00,25.0,0.254497354,20.80145011597568 +2019-05-01 05:00:00,25.0,0.26494709,20.800476616677635 +2019-05-01 05:15:00,25.0,0.272751323,20.799503657532 +2019-05-01 05:30:00,25.0,0.277248677,20.79853123866393 +2019-05-01 05:45:00,25.0,0.291402116,20.79755936019849 +2019-05-01 06:00:00,25.0,0.315873016,20.796588022260686 +2019-05-01 06:15:00,25.0,0.317460317,20.79561722497546 +2019-05-01 06:30:00,25.0,0.317592593,20.794646968467667 +2019-05-01 06:45:00,25.0,0.31547619,20.793677252862114 +2019-05-01 07:00:00,25.0,0.312566138,20.792708078283525 +2019-05-01 07:15:00,25.0,0.30952381,20.791739444856557 +2019-05-01 07:30:00,25.0,0.311640212,20.790771352705796 +2019-05-01 07:45:00,25.0,0.306481481,20.789803801955763 +2019-05-01 08:00:00,25.0,0.303703704,20.78883679273091 +2019-05-01 08:15:00,25.0,0.306481481,20.787870325155602 +2019-05-01 08:30:00,25.0,0.312962963,20.786904399354167 +2019-05-01 08:45:00,25.0,0.314285714,20.785939015450833 +2019-05-01 09:00:00,25.0,0.323148148,20.784974173569772 +2019-05-01 09:15:00,25.0,0.319973545,20.784009873835085 +2019-05-01 09:30:00,25.0,0.329100529,20.7830461163708 +2019-05-01 09:45:00,25.0,0.316137566,20.782082901300885 +2019-05-01 10:00:00,25.0,0.310449735,20.78112022874922 +2019-05-01 10:15:00,25.0,0.310714286,20.780158098839635 +2019-05-01 10:30:00,25.0,0.320767196,20.77919651169588 +2019-05-01 10:45:00,25.0,0.32989418,20.778235467441633 +2019-05-01 11:00:00,25.0,0.323677249,20.77727496620051 +2019-05-01 11:15:00,25.0,0.334391534,20.776315008096045 +2019-05-01 11:30:00,25.0,0.34047619,20.77535559325172 +2019-05-01 11:45:00,25.0,0.34973545,20.774396721790932 +2019-05-01 12:00:00,25.0,0.354365079,20.773438393837015 +2019-05-01 12:15:00,25.0,0.357936508,20.77248060951323 +2019-05-01 12:30:00,25.0,0.363492063,20.771523368942766 +2019-05-01 12:45:00,25.0,0.37037037,20.770566672248755 +2019-05-01 13:00:00,25.0,0.380555556,20.76961051955424 +2019-05-01 13:15:00,25.0,0.386640212,20.76865491098221 +2019-05-01 13:30:00,25.0,0.397089947,20.767699846655574 +2019-05-01 13:45:00,25.0,0.399867725,20.766745326697176 +2019-05-01 14:00:00,25.0,0.398941799,20.765791351229787 +2019-05-01 14:15:00,25.0,0.406746032,20.764837920376113 +2019-05-01 14:30:00,25.0,0.41984127,20.763885034258784 +2019-05-01 14:45:00,25.0,0.426719577,20.76293269300036 +2019-05-01 15:00:00,25.0,0.429100529,20.761980896723337 +2019-05-01 15:15:00,25.0,0.453439153,20.761029645550135 +2019-05-01 15:30:00,25.0,0.459391534,20.76007893960311 +2019-05-01 15:45:00,25.0,0.458730159,20.75912877900454 +2019-05-01 16:00:00,25.0,0.461243386,20.758179163876637 +2019-05-01 16:15:00,25.0,0.466534392,20.757230094341548 +2019-05-01 16:30:00,25.0,0.47037037,20.756281570521335 +2019-05-01 16:45:00,25.0,0.474206349,20.75533359253801 +2019-05-01 17:00:00,25.0,0.474867725,20.75438616051349 +2019-05-01 17:15:00,25.0,0.482407407,20.753439274569654 +2019-05-01 17:30:00,25.0,0.473148148,20.752492934828283 +2019-05-01 17:45:00,25.0,0.477910053,20.75154714141109 +2019-05-01 18:00:00,25.0,0.481216931,20.75060189443974 +2019-05-01 18:15:00,25.0,0.482407407,20.749657194035805 +2019-05-01 18:30:00,25.0,0.471164021,20.748713040320794 +2019-05-01 18:45:00,25.0,0.464417989,20.74776943341615 +2019-05-01 19:00:00,25.0,0.465343915,20.746826373443234 +2019-05-01 19:15:00,25.0,0.47473545,20.745883860523357 +2019-05-01 19:30:00,25.0,0.476322751,20.74494189477773 +2019-05-01 19:45:00,25.0,0.473148148,20.744000476327532 +2019-05-01 20:00:00,25.0,0.469973545,20.743059605293833 +2019-05-01 20:15:00,25.0,0.471693122,20.74211928179766 +2019-05-01 20:30:00,25.0,0.456613757,20.741179505959956 +2019-05-01 20:45:00,25.0,0.440608466,20.74024027790159 +2019-05-01 21:00:00,25.0,0.453968254,20.739301597743385 +2019-05-01 21:15:00,25.0,0.457671958,20.73836346560606 +2019-05-01 21:30:00,25.0,0.463756614,20.73742588161029 +2019-05-01 21:45:00,25.0,0.475132275,20.736488845876657 +2019-05-01 22:00:00,25.0,0.486772487,20.735552358525702 +2019-05-01 22:15:00,25.0,0.499867725,20.734616419677867 +2019-05-01 22:30:00,25.0,0.498412698,20.733681029453532 +2019-05-01 22:45:00,25.0,0.496428571,20.732746187973017 +2019-05-01 23:00:00,25.0,0.490740741,20.731811895356557 +2019-05-01 23:15:00,25.0,0.489550265,20.73087815172433 +2019-05-01 23:30:00,25.0,0.485846561,20.72994495719643 +2019-05-01 23:45:00,25.0,0.49484127,20.72901231189289 +2019-05-02 00:00:00,25.0,0.517592593,20.72808021593367 +2019-05-02 00:15:00,25.0,0.530026455,20.72714866943865 +2019-05-02 00:30:00,25.0,0.535582011,20.72621767252766 +2019-05-02 00:45:00,25.0,0.548412698,20.725287225320436 +2019-05-02 01:00:00,25.0,0.553042328,20.724357327936662 +2019-05-02 01:15:00,25.0,0.551719577,20.723427980495938 +2019-05-02 01:30:00,25.0,0.551851852,20.722499183117804 +2019-05-02 01:45:00,25.0,0.547751323,20.721570935921722 +2019-05-02 02:00:00,25.0,0.551719577,20.720643239027083 +2019-05-02 02:15:00,25.0,0.561243386,20.719716092553213 +2019-05-02 02:30:00,25.0,0.551719577,20.718789496619358 +2019-05-02 02:45:00,25.0,0.540873016,20.71786345134471 +2019-05-02 03:00:00,25.0,0.541269841,20.71693795684837 +2019-05-02 03:15:00,25.0,0.524470899,20.716013013249373 +2019-05-02 03:30:00,25.0,0.504100529,20.7150886206667 +2019-05-02 03:45:00,25.0,0.493518519,20.71416477921924 +2019-05-02 04:00:00,25.0,0.49457672,20.713241489025826 +2019-05-02 04:15:00,25.0,0.502116402,20.712318750205203 +2019-05-02 04:30:00,25.0,0.491005291,20.711396562876068 +2019-05-02 04:45:00,25.0,0.483730159,20.710474927157026 +2019-05-02 05:00:00,25.0,0.487301587,20.709553843166624 +2019-05-02 05:15:00,25.0,0.50489418,20.708633311023334 +2019-05-02 05:30:00,25.0,0.506746032,20.70771333084555 +2019-05-02 05:45:00,25.0,0.513756614,20.706793902751617 +2019-05-02 06:00:00,25.0,0.511111111,20.70587502685978 +2019-05-02 06:15:00,25.0,0.516137566,20.704956703288232 +2019-05-02 06:30:00,25.0,0.522751323,20.704038932155093 +2019-05-02 06:45:00,25.0,0.520502646,20.7031217135784 +2019-05-02 07:00:00,25.0,0.516534392,20.70220504767614 +2019-05-02 07:15:00,25.0,0.50462963,20.701288934566207 +2019-05-02 07:30:00,25.0,0.479232804,20.70037337436644 +2019-05-02 07:45:00,25.0,0.468121693,20.69945836719459 +2019-05-02 08:00:00,25.0,0.458465608,20.69854391316836 +2019-05-02 08:15:00,25.0,0.470502646,20.697630012405366 +2019-05-02 08:30:00,25.0,0.486507937,20.696716665023146 +2019-05-02 08:45:00,25.0,0.492460317,20.69580387113919 +2019-05-02 09:00:00,25.0,0.508068783,20.6948916308709 +2019-05-02 09:15:00,25.0,0.499338624,20.693979944335606 +2019-05-02 09:30:00,25.0,0.51031746,20.693068811650573 +2019-05-02 09:45:00,25.0,0.524603175,20.692158232932996 +2019-05-02 10:00:00,25.0,0.527645503,20.691248208299996 +2019-05-02 10:15:00,25.0,0.535582011,20.690338737868615 +2019-05-02 10:30:00,25.0,0.522354497,20.68942982175584 +2019-05-02 10:45:00,25.0,0.508994709,20.688521460078572 +2019-05-02 11:00:00,25.0,0.526058201,20.68761365295365 +2019-05-02 11:15:00,25.0,0.546560847,20.686706400497837 +2019-05-02 11:30:00,25.0,0.552116402,20.68579970282783 +2019-05-02 11:45:00,25.0,0.55489418,20.684893560060242 +2019-05-02 12:00:00,25.0,0.546031746,20.683987972311627 +2019-05-02 12:15:00,25.0,0.552248677,20.683082939698465 +2019-05-02 12:30:00,25.0,0.562037037,20.682178462337163 +2019-05-02 12:45:00,25.0,0.576851852,20.68127454034406 +2019-05-02 13:00:00,25.0,0.577777778,20.680371173835418 +2019-05-02 13:15:00,25.0,0.571164021,20.679468362927423 +2019-05-02 13:30:00,25.0,0.542592593,20.67856610773621 +2019-05-02 13:45:00,25.0,0.538359788,20.67766440837782 +2019-05-02 14:00:00,25.0,0.526587302,20.676763264968233 +2019-05-02 14:15:00,25.0,0.511640212,20.675862677623357 +2019-05-02 14:30:00,25.0,0.50542328,20.67496264645903 +2019-05-02 14:45:00,25.0,0.520634921,20.674063171591015 +2019-05-02 15:00:00,25.0,0.522089947,20.673164253135 +2019-05-02 15:15:00,25.0,0.548280423,20.67226589120661 +2019-05-02 15:30:00,25.0,0.553306878,20.671368085921394 +2019-05-02 15:45:00,25.0,0.554365079,20.67047083739483 +2019-05-02 16:00:00,25.0,0.557671958,20.66957414574232 +2019-05-02 16:15:00,25.0,0.557142857,20.66867801107921 +2019-05-02 16:30:00,25.0,0.568783069,20.66778243352075 +2019-05-02 16:45:00,25.0,0.572619048,20.666887413182135 +2019-05-02 17:00:00,25.0,0.589021164,20.66599295017849 +2019-05-02 17:15:00,25.0,0.586243386,20.665099044624856 +2019-05-02 17:30:00,25.0,0.592063492,20.664205696636216 +2019-05-02 17:45:00,25.0,0.586507937,20.663312906327466 +2019-05-02 18:00:00,25.0,0.59047619,20.662420673813447 +2019-05-02 18:15:00,25.0,0.623280423,20.661528999208915 +2019-05-02 18:30:00,25.0,0.631746032,20.660637882628556 +2019-05-02 18:45:00,25.0,0.628439153,20.659747324187002 +2019-05-02 19:00:00,25.0,0.616402116,20.65885732399878 +2019-05-02 19:15:00,25.0,0.633597884,20.657967882178376 +2019-05-02 19:30:00,25.0,0.639021164,20.65707899884019 +2019-05-02 19:45:00,25.0,0.637698413,20.65619067409855 +2019-05-02 20:00:00,25.0,0.638624339,20.655302908067718 +2019-05-02 20:15:00,25.0,0.641534392,20.654415700861875 +2019-05-02 20:30:00,25.0,0.644047619,20.65352905259514 +2019-05-02 20:45:00,25.0,0.647619048,20.65264296338155 +2019-05-02 21:00:00,25.0,0.657671958,20.651757433335085 +2019-05-02 21:15:00,25.0,0.66984127,20.650872462569637 +2019-05-02 21:30:00,25.0,0.666798942,20.649988051199035 +2019-05-02 21:45:00,25.0,0.671693122,20.649104199337035 +2019-05-02 22:00:00,25.0,0.663095238,20.64822090709732 +2019-05-02 22:15:00,25.0,0.661904762,20.6473381745935 +2019-05-02 22:30:00,25.0,0.648015873,20.64645600193911 +2019-05-02 22:45:00,25.0,0.666005291,20.645574389247628 +2019-05-02 23:00:00,25.0,0.667857143,20.644693336632436 +2019-05-02 23:15:00,25.0,0.662698413,20.643812844206867 +2019-05-02 23:30:00,25.0,0.676587302,20.64293291208417 +2019-05-02 23:45:00,25.0,0.682407407,20.642053540377518 +2019-05-03 00:00:00,25.0,0.66984127,20.641174729200028 +2019-05-03 00:15:00,25.0,0.672883598,20.640296478664723 +2019-05-03 00:30:00,25.0,0.685846561,20.639418788884576 +2019-05-03 00:45:00,25.0,0.692063492,20.63854165997247 +2019-05-03 01:00:00,25.0,0.648412698,20.637665092041228 +2019-05-03 01:15:00,25.0,0.63968254,20.636789085203596 +2019-05-03 01:30:00,25.0,0.652513228,20.635913639572244 +2019-05-03 01:45:00,25.0,0.646296296,20.635038755259778 +2019-05-03 02:00:00,25.0,0.613227513,20.634164432378725 +2019-05-03 02:15:00,25.0,0.649206349,20.633290671041546 +2019-05-03 02:30:00,25.0,0.620899471,20.632417471360625 +2019-05-03 02:45:00,25.0,0.613492063,20.631544833448267 +2019-05-03 03:00:00,25.0,0.582804233,20.630672757416725 +2019-05-03 03:15:00,25.0,0.571560847,20.62980124337816 +2019-05-03 03:30:00,25.0,0.570767196,20.628930291444668 +2019-05-03 03:45:00,25.0,0.616798942,20.628059901728278 +2019-05-03 04:00:00,25.0,0.610846561,20.627190074340938 +2019-05-03 04:15:00,25.0,0.589814815,20.626320809394528 +2019-05-03 04:30:00,25.0,0.613227513,20.625452107000854 +2019-05-03 04:45:00,25.0,0.615740741,20.62458396727165 +2019-05-03 05:00:00,25.0,0.605026455,20.623716390318577 +2019-05-03 05:15:00,25.0,0.583068783,20.62284937625323 +2019-05-03 05:30:00,25.0,0.539417989,20.621982925187126 +2019-05-03 05:45:00,25.0,0.56031746,20.621117037231702 +2019-05-03 06:00:00,25.0,0.552513228,20.620251712498337 +2019-05-03 06:15:00,25.0,0.514153439,20.61938695109833 +2019-05-03 06:30:00,25.0,0.46957672,20.618522753142912 +2019-05-03 06:45:00,25.0,0.430291005,20.61765911874323 +2019-05-03 07:00:00,25.0,0.45515873,20.61679604801037 +2019-05-03 07:15:00,25.0,0.45515873,20.615933541055348 +2019-05-03 07:30:00,25.0,0.453703704,20.615071597989097 +2019-05-03 07:45:00,25.0,0.421296296,20.61421021892248 +2019-05-03 08:00:00,25.0,0.442328042,20.61334940396629 +2019-05-03 08:15:00,25.0,0.434920635,20.61248915323125 +2019-05-03 08:30:00,25.0,0.416666667,20.611629466828006 +2019-05-03 08:45:00,25.0,0.377777778,20.610770344867134 +2019-05-03 09:00:00,25.0,0.396825397,20.609911787459136 +2019-05-03 09:15:00,25.0,0.366402116,20.609053794714438 +2019-05-03 09:30:00,25.0,0.360449735,20.608196366743403 +2019-05-03 09:45:00,25.0,0.367195767,20.60733950365631 +2019-05-03 10:00:00,25.0,0.376455026,20.606483205563375 +2019-05-03 10:15:00,25.0,0.427513228,20.60562747257473 +2019-05-03 10:30:00,25.0,0.413095238,20.604772304800452 +2019-05-03 10:45:00,25.0,0.374867725,20.60391770235053 +2019-05-03 11:00:00,25.0,0.357142857,20.60306366533488 +2019-05-03 11:15:00,25.0,0.376322751,20.602210193863353 +2019-05-03 11:30:00,25.0,0.397883598,20.601357288045726 +2019-05-03 11:45:00,25.0,0.399603175,20.600504947991706 +2019-05-03 12:00:00,25.0,0.383862434,20.599653173810914 +2019-05-03 12:15:00,25.0,0.413756614,20.598801965612914 +2019-05-03 12:30:00,25.0,0.46494709,20.597951323507186 +2019-05-03 12:45:00,25.0,0.504365079,20.597101247603142 +2019-05-03 13:00:00,25.0,0.481084656,20.596251738010125 +2019-05-03 13:15:00,25.0,0.493650794,20.595402794837398 +2019-05-03 13:30:00,25.0,0.458862434,20.594554418194154 +2019-05-03 13:45:00,25.0,0.465608466,20.59370660818951 +2019-05-03 14:00:00,25.0,0.519973545,20.592859364932522 +2019-05-03 14:15:00,25.0,0.577513228,20.592012688532154 +2019-05-03 14:30:00,25.0,0.606084656,20.591166579097315 +2019-05-03 14:45:00,25.0,0.621825397,20.59032103673683 +2019-05-03 15:00:00,25.0,0.614814815,20.589476061559456 +2019-05-03 15:15:00,25.0,0.635846561,20.588631653673875 +2019-05-03 15:30:00,25.0,0.661375661,20.587787813188697 +2019-05-03 15:45:00,25.0,0.636375661,20.586944540212457 +2019-05-03 16:00:00,25.0,0.597222222,20.586101834853622 +2019-05-03 16:15:00,25.0,0.620238095,20.58525969722058 +2019-05-03 16:30:00,25.0,0.674470899,20.584418127421653 +2019-05-03 16:45:00,25.0,0.569179894,20.58357712556508 +2019-05-03 17:00:00,25.0,0.562566138,20.58273669175903 +2019-05-03 17:15:00,25.0,0.545634921,20.581896826111617 +2019-05-03 17:30:00,25.0,0.547619048,20.58105752873085 +2019-05-03 17:45:00,25.0,0.580555556,20.580218799724687 +2019-05-03 18:00:00,25.0,0.581084656,20.579380639201005 +2019-05-03 18:15:00,25.0,0.568253968,20.57854304726762 +2019-05-03 18:30:00,25.0,0.525925926,20.577706024032253 +2019-05-03 18:45:00,25.0,0.551058201,20.57686956960257 +2019-05-03 19:00:00,25.0,0.565343915,20.576033684086156 +2019-05-03 19:15:00,25.0,0.57037037,20.575198367590524 +2019-05-03 19:30:00,25.0,0.576719577,20.574363620223117 +2019-05-03 19:45:00,25.0,0.578703704,20.5735294420913 +2019-05-03 20:00:00,25.0,0.584656085,20.572695833302365 +2019-05-03 20:15:00,25.0,0.630026455,20.571862793963536 +2019-05-03 20:30:00,25.0,0.64484127,20.57103032418196 +2019-05-03 20:45:00,25.0,0.637830688,20.570198424064714 +2019-05-03 21:00:00,25.0,0.637698413,20.56936709371879 +2019-05-03 21:15:00,25.0,0.643518519,20.568536333251124 +2019-05-03 21:30:00,25.0,0.64973545,20.567706142768568 +2019-05-03 21:45:00,25.0,0.640740741,20.566876522377903 +2019-05-03 22:00:00,25.0,0.637566138,20.566047472185833 +2019-05-03 22:15:00,25.0,0.574074074,20.565218992299 +2019-05-03 22:30:00,25.0,0.51005291,20.564391082823956 +2019-05-03 22:45:00,25.0,0.479232804,20.563563743867196 +2019-05-03 23:00:00,25.0,0.473015873,20.56273697553513 +2019-05-03 23:15:00,25.0,0.480555556,20.561910777934102 +2019-05-03 23:30:00,25.0,0.476322751,20.561085151170374 +2019-05-03 23:45:00,25.0,0.488888889,20.560260095350145 +2019-05-04 00:00:00,25.0,0.533862434,20.559435610579538 +2019-05-04 00:15:00,25.0,0.53478836,20.558611696964597 +2019-05-04 00:30:00,25.0,0.536772487,20.55778835461129 +2019-05-04 00:45:00,25.0,0.546693122,20.556965583625527 +2019-05-04 01:00:00,25.0,0.543783069,20.556143384113128 +2019-05-04 01:15:00,25.0,0.538756614,20.555321756179847 +2019-05-04 01:30:00,25.0,0.543650794,20.554500699931367 +2019-05-04 01:45:00,25.0,0.535582011,20.553680215473292 +2019-05-04 02:00:00,25.0,0.546957672,20.552860302911153 +2019-05-04 02:15:00,25.0,0.596031746,20.55204096235041 +2019-05-04 02:30:00,25.0,0.603571429,20.551222193896454 +2019-05-04 02:45:00,25.0,0.603042328,20.550403997654588 +2019-05-04 03:00:00,25.0,0.646693122,20.549586373730058 +2019-05-04 03:15:00,25.0,0.681084656,20.548769322228022 +2019-05-04 03:30:00,25.0,0.660185185,20.547952843253576 +2019-05-04 03:45:00,25.0,0.651058201,20.547136936911734 +2019-05-04 04:00:00,25.0,0.689153439,20.54632160330744 +2019-05-04 04:15:00,25.0,0.688624339,20.54550684254557 +2019-05-04 04:30:00,25.0,0.656481481,20.544692654730913 +2019-05-04 04:45:00,25.0,0.636507937,20.543879039968196 +2019-05-04 05:00:00,25.0,0.59457672,20.543065998362067 +2019-05-04 05:15:00,25.0,0.584391534,20.5422535300171 +2019-05-04 05:30:00,25.0,0.601322751,20.541441635037796 +2019-05-04 05:45:00,25.0,0.559656085,20.54063031352858 +2019-05-04 06:00:00,25.0,0.598544974,20.53981956559382 +2019-05-04 06:15:00,25.0,0.628835979,20.539009391337782 +2019-05-04 06:30:00,25.0,0.62962963,20.538199790864677 +2019-05-04 06:45:00,25.0,0.602777778,20.53739076427864 +2019-05-04 07:00:00,25.0,0.610714286,20.536582311683723 +2019-05-04 07:15:00,25.0,0.598148148,20.53577443318392 +2019-05-04 07:30:00,25.0,0.519444444,20.534967128883135 +2019-05-04 07:45:00,25.0,0.472354497,20.534160398885213 +2019-05-04 08:00:00,25.0,0.477116402,20.533354243293907 +2019-05-04 08:15:00,25.0,0.459391534,20.532548662212914 +2019-05-04 08:30:00,25.0,0.423148148,20.53174365574585 +2019-05-04 08:45:00,25.0,0.393121693,20.530939223996253 +2019-05-04 09:00:00,25.0,0.400925926,20.530135367067594 +2019-05-04 09:15:00,25.0,0.448280423,20.529332085063263 +2019-05-04 09:30:00,25.0,0.415343915,20.528529378086585 +2019-05-04 09:45:00,25.0,0.365079365,20.527727246240804 +2019-05-04 10:00:00,25.0,0.378439153,20.52692568962909 +2019-05-04 10:15:00,25.0,0.348544974,20.526124708354544 +2019-05-04 10:30:00,25.0,0.328306878,20.525324302520186 +2019-05-04 10:45:00,25.0,0.342989418,20.524524472228972 +2019-05-04 11:00:00,25.0,0.329761905,20.523725217583774 +2019-05-04 11:15:00,25.0,0.316269841,20.522926538687393 +2019-05-04 11:30:00,25.0,0.31547619,20.522128435642564 +2019-05-04 11:45:00,25.0,0.323941799,20.52133090855193 +2019-05-04 12:00:00,25.0,0.330952381,20.52053395751808 +2019-05-04 12:15:00,25.0,0.357539683,20.519737582643515 +2019-05-04 12:30:00,25.0,0.393253968,20.518941784030666 +2019-05-04 12:45:00,25.0,0.431746032,20.518146561781894 +2019-05-04 13:00:00,25.0,0.434656085,20.51735191599948 +2019-05-04 13:15:00,25.0,0.449603175,20.516557846785638 +2019-05-04 13:30:00,25.0,0.471031746,20.515764354242492 +2019-05-04 13:45:00,25.0,0.491931217,20.514971438472113 +2019-05-04 14:00:00,25.0,0.498148148,20.51417909957648 +2019-05-04 14:15:00,25.0,0.488888889,20.513387337657516 +2019-05-04 14:30:00,25.0,0.493783069,20.512596152817046 +2019-05-04 14:45:00,25.0,0.483994709,20.511805545156847 +2019-05-04 15:00:00,25.0,0.485978836,20.511015514778602 +2019-05-04 15:15:00,25.0,0.499867725,20.510226061783925 +2019-05-04 15:30:00,25.0,0.490740741,20.50943718627436 +2019-05-04 15:45:00,25.0,0.477116402,20.508648888351374 +2019-05-04 16:00:00,25.0,0.469179894,20.50786116811636 +2019-05-04 16:15:00,25.0,0.489285714,20.507074025670633 +2019-05-04 16:30:00,25.0,0.536243386,20.50628746111544 +2019-05-04 16:45:00,25.0,0.542857143,20.505501474551956 +2019-05-04 17:00:00,25.0,0.502513228,20.504716066081265 +2019-05-04 17:15:00,25.0,0.479100529,20.503931235804398 +2019-05-04 17:30:00,25.0,0.475396825,20.503146983822294 +2019-05-04 17:45:00,25.0,0.465343915,20.50236331023583 +2019-05-04 18:00:00,25.0,0.429232804,20.5015802151458 +2019-05-04 18:15:00,25.0,0.393915344,20.50079769865294 +2019-05-04 18:30:00,25.0,0.393121693,20.50001576085788 +2019-05-04 18:45:00,25.0,0.362037037,20.499234401861205 +2019-05-04 19:00:00,25.0,0.352777778,20.498453621763417 +2019-05-04 19:15:00,25.0,0.337566138,20.49767342066494 +2019-05-04 19:30:00,25.0,0.330291005,20.49689379866612 +2019-05-04 19:45:00,25.0,0.332275132,20.496114755867243 +2019-05-04 20:00:00,25.0,0.357407407,20.495336292368503 +2019-05-04 20:15:00,25.0,0.382275132,20.49455840827003 +2019-05-04 20:30:00,25.0,0.420502646,20.49378110367188 +2019-05-04 20:45:00,25.0,0.42010582,20.49300437867403 +2019-05-04 21:00:00,25.0,0.375925926,20.492228233376384 +2019-05-04 21:15:00,25.0,0.360978836,20.491452667878775 +2019-05-04 21:30:00,25.0,0.374470899,20.490677682280953 +2019-05-04 21:45:00,25.0,0.383730159,20.489903276682597 +2019-05-04 22:00:00,25.0,0.443253968,20.48912945118332 +2019-05-04 22:15:00,25.0,0.480952381,20.488356205882646 +2019-05-04 22:30:00,25.0,0.482407407,20.48758354088004 +2019-05-04 22:45:00,25.0,0.471693122,20.486811456274875 +2019-05-04 23:00:00,25.0,0.462566138,20.486039952166465 +2019-05-04 23:15:00,25.0,0.453968254,20.485269028654038 +2019-05-04 23:30:00,25.0,0.491005291,20.484498685836755 +2019-05-04 23:45:00,25.0,0.536243386,20.483728923813697 +2019-05-05 00:00:00,25.0,0.534391534,20.48295974268387 +2019-05-05 00:15:00,25.0,0.550529101,20.48219114254622 +2019-05-05 00:30:00,25.0,0.570238095,20.48142312349959 +2019-05-05 00:45:00,25.0,0.58505291,20.480655685642777 +2019-05-05 01:00:00,25.0,0.595502646,20.479888829074483 +2019-05-05 01:15:00,25.0,0.594973545,20.479122553893347 +2019-05-05 01:30:00,25.0,0.588095238,20.478356860197927 +2019-05-05 01:45:00,25.0,0.576322751,20.47759174808671 +2019-05-05 02:00:00,25.0,0.567857143,20.476827217658105 +2019-05-05 02:15:00,25.0,0.565608466,20.476063269010446 +2019-05-05 02:30:00,25.0,0.555555556,20.475299902242 +2019-05-05 02:45:00,25.0,0.531084656,20.474537117450947 +2019-05-05 03:00:00,25.0,0.507804233,20.4737749147354 +2019-05-05 03:15:00,25.0,0.484656085,20.473013294193397 +2019-05-05 03:30:00,25.0,0.49537037,20.472252255922893 +2019-05-05 03:45:00,25.0,0.525529101,20.471491800021784 +2019-05-05 04:00:00,25.0,0.537830688,20.470731926587874 +2019-05-05 04:15:00,25.0,0.513624339,20.469972635718904 +2019-05-05 04:30:00,25.0,0.533597884,20.469213927512534 +2019-05-05 04:45:00,25.0,0.547354497,20.46845580206635 +2019-05-05 05:00:00,25.0,0.525132275,20.46769825947787 +2019-05-05 05:15:00,25.0,0.538756614,20.46694129984452 +2019-05-05 05:30:00,25.0,0.563888889,20.466184923263672 +2019-05-05 05:45:00,25.0,0.566137566,20.465429129832607 +2019-05-05 06:00:00,25.0,0.580026455,20.464673919648536 +2019-05-05 06:15:00,25.0,0.55952381,20.4639192928086 +2019-05-05 06:30:00,25.0,0.525661376,20.46316524940986 +2019-05-05 06:45:00,25.0,0.521693122,20.462411789549304 +2019-05-05 07:00:00,25.0,0.53452381,20.461658913323838 +2019-05-05 07:15:00,25.0,0.516534392,20.460906620830304 +2019-05-05 07:30:00,25.0,0.521957672,20.460154912165464 +2019-05-05 07:45:00,25.0,0.532407407,20.459403787425998 +2019-05-05 08:00:00,25.0,0.50542328,20.45865324670853 +2019-05-05 08:15:00,25.0,0.533068783,20.45790329010958 +2019-05-05 08:30:00,25.0,0.552513228,20.457153917725623 +2019-05-05 08:45:00,25.0,0.534259259,20.456405129653035 +2019-05-05 09:00:00,25.0,0.510582011,20.455656925988137 +2019-05-05 09:15:00,25.0,0.506216931,20.454909306827155 +2019-05-05 09:30:00,25.0,0.456216931,20.454162272266252 +2019-05-05 09:45:00,25.0,0.431481481,20.453415822401517 +2019-05-05 10:00:00,25.0,0.374603175,20.452669957328958 +2019-05-05 10:15:00,25.0,0.355291005,20.45192467714451 +2019-05-05 10:30:00,25.0,0.348412698,20.451179981944033 +2019-05-05 10:45:00,25.0,0.397089947,20.45043587182331 +2019-05-05 11:00:00,25.0,0.413492063,20.449692346878052 +2019-05-05 11:15:00,25.0,0.392328042,20.44894940720389 +2019-05-05 11:30:00,25.0,0.422619048,20.44820705289639 +2019-05-05 11:45:00,25.0,0.439285714,20.447465284051024 +2019-05-05 12:00:00,25.0,0.400661376,20.44672410076321 +2019-05-05 12:15:00,25.0,0.36494709,20.44598350312827 +2019-05-05 12:30:00,25.0,0.368518519,20.445243491241474 +2019-05-05 12:45:00,25.0,0.367724868,20.444504065197997 +2019-05-05 13:00:00,25.0,0.365873016,20.443765225092946 +2019-05-05 13:15:00,25.0,0.359259259,20.443026971021354 +2019-05-05 13:30:00,25.0,0.380820106,20.442289303078176 +2019-05-05 13:45:00,25.0,0.357275132,20.441552221358293 +2019-05-05 14:00:00,25.0,0.344708995,20.44081572595651 +2019-05-05 14:15:00,25.0,0.325661376,20.440079816967554 +2019-05-05 14:30:00,25.0,0.322486772,20.439344494486086 +2019-05-05 14:45:00,25.0,0.325661376,20.438609758606674 +2019-05-05 15:00:00,25.0,0.330952381,20.437875609423834 +2019-05-05 15:15:00,25.0,0.343518519,20.437142047031987 +2019-05-05 15:30:00,25.0,0.34973545,20.436409071525485 +2019-05-05 15:45:00,25.0,0.373015873,20.43567668299861 +2019-05-05 16:00:00,25.0,0.405026455,20.434944881545555 +2019-05-05 16:15:00,25.0,0.416269841,20.434213667260455 +2019-05-05 16:30:00,25.0,0.392063492,20.433483040237356 +2019-05-05 16:45:00,25.0,0.371428571,20.432753000570234 +2019-05-05 17:00:00,25.0,0.411640212,20.432023548352984 +2019-05-05 17:15:00,25.0,0.435185185,20.43129468367944 +2019-05-05 17:30:00,25.0,0.411507937,20.430566406643337 +2019-05-05 17:45:00,25.0,0.408201058,20.42983871733836 +2019-05-05 18:00:00,25.0,0.415873016,20.429111615858098 +2019-05-05 18:15:00,25.0,0.447222222,20.428385102296076 +2019-05-05 18:30:00,25.0,0.477777778,20.42765917674574 +2019-05-05 18:45:00,25.0,0.518915344,20.426933839300457 +2019-05-05 19:00:00,25.0,0.51494709,20.426209090053526 +2019-05-05 19:15:00,25.0,0.542857143,20.425484929098165 +2019-05-05 19:30:00,25.0,0.586111111,20.42476135652751 +2019-05-05 19:45:00,25.0,0.555820106,20.42403837243464 +2019-05-05 20:00:00,25.0,0.567063492,20.42331597691254 +2019-05-05 20:15:00,25.0,0.593121693,20.42259417005413 +2019-05-05 20:30:00,25.0,0.570899471,20.421872951952246 +2019-05-05 20:45:00,25.0,0.554365079,20.421152322699655 +2019-05-05 21:00:00,25.0,0.562037037,20.420432282389047 +2019-05-05 21:15:00,25.0,0.571031746,20.41971283111303 +2019-05-05 21:30:00,25.0,0.572619048,20.418993968964152 +2019-05-05 21:45:00,25.0,0.582010582,20.418275696034865 +2019-05-05 22:00:00,25.0,0.569179894,20.417558012417558 +2019-05-05 22:15:00,25.0,0.569047619,20.416840918204546 +2019-05-05 22:30:00,25.0,0.51547619,20.416124413488053 +2019-05-05 22:45:00,25.0,0.518650794,20.415408498360243 +2019-05-05 23:00:00,25.0,0.556084656,20.414693172913204 +2019-05-05 23:15:00,25.0,0.576587302,20.413978437238935 +2019-05-05 23:30:00,25.0,0.588227513,20.413264291429368 +2019-05-05 23:45:00,25.0,0.603174603,20.41255073557636 +2019-05-06 00:00:00,25.0,0.627777778,20.411837769771694 +2019-05-06 00:15:00,25.0,0.633465608,20.411125394107064 +2019-05-06 00:30:00,25.0,0.640343915,20.410413608674105 +2019-05-06 00:45:00,25.0,0.654761905,20.409702413564368 +2019-05-06 01:00:00,25.0,0.662962963,20.408991808869324 +2019-05-06 01:15:00,25.0,0.677777778,20.408281794680377 +2019-05-06 01:30:00,25.0,0.67962963,20.407572371088847 +2019-05-06 01:45:00,25.0,0.67526455,20.406863538185988 +2019-05-06 02:00:00,25.0,0.67473545,20.406155296062963 +2019-05-06 02:15:00,25.0,0.679761905,20.405447644810874 +2019-05-06 02:30:00,25.0,0.698412698,20.404740584520738 +2019-05-06 02:45:00,25.0,0.711904762,20.4040341152835 +2019-05-06 03:00:00,25.0,0.712566138,20.403328237190028 +2019-05-06 03:15:00,25.0,0.702380952,20.402622950331114 +2019-05-06 03:30:00,25.0,0.70978836,20.401918254797472 +2019-05-06 03:45:00,25.0,0.705952381,20.401214150679742 +2019-05-06 04:00:00,25.0,0.692195767,20.400510638068486 +2019-05-06 04:15:00,25.0,0.683333333,20.399807717054195 +2019-05-06 04:30:00,25.0,0.666666667,20.39910538772728 +2019-05-06 04:45:00,25.0,0.667460317,20.39840365017807 +2019-05-06 05:00:00,25.0,0.647222222,20.397702504496834 +2019-05-06 05:15:00,25.0,0.578439153,20.39700195077375 +2019-05-06 05:30:00,25.0,0.596957672,20.396301989098916 +2019-05-06 05:45:00,25.0,0.603968254,20.395602619562382 +2019-05-06 06:00:00,25.0,0.604761905,20.394903842254084 +2019-05-06 06:15:00,25.0,0.593915344,20.394205657263914 +2019-05-06 06:30:00,25.0,0.597751323,20.393508064681665 +2019-05-06 06:45:00,25.0,0.596957672,20.392811064597065 +2019-05-06 07:00:00,25.0,0.593518519,20.392114657099768 +2019-05-06 07:15:00,25.0,0.582671958,20.391418842279343 +2019-05-06 07:30:00,25.0,0.554232804,20.39072362022529 +2019-05-06 07:45:00,25.0,0.549074074,20.39002899102703 +2019-05-06 08:00:00,25.0,0.552910053,20.389334954773908 +2019-05-06 08:15:00,25.0,0.57526455,20.38864151155519 +2019-05-06 08:30:00,25.0,0.607142857,20.38794866146007 +2019-05-06 08:45:00,25.0,0.604761905,20.387256404577663 +2019-05-06 09:00:00,25.0,0.582010582,20.386564740997006 +2019-05-06 09:15:00,25.0,0.563492063,20.38587367080707 +2019-05-06 09:30:00,25.0,0.562698413,20.385183194096733 +2019-05-06 09:45:00,25.0,0.573809524,20.384493310954817 +2019-05-06 10:00:00,25.0,0.578174603,20.38380402147005 +2019-05-06 10:15:00,25.0,0.575396825,20.383115325731083 +2019-05-06 10:30:00,25.0,0.576719577,20.382427223826507 +2019-05-06 10:45:00,25.0,0.561640212,20.381739715844827 +2019-05-06 11:00:00,25.0,0.568121693,20.381052801874468 +2019-05-06 11:15:00,25.0,0.549206349,20.380366482003783 +2019-05-06 11:30:00,25.0,0.542724868,20.37968075632105 +2019-05-06 11:45:00,25.0,0.528835979,20.37899562491447 +2019-05-06 12:00:00,25.0,0.511640212,20.378311087872163 +2019-05-06 12:15:00,25.0,0.463227513,20.377627145282176 +2019-05-06 12:30:00,25.0,0.465740741,20.376943797232478 +2019-05-06 12:45:00,25.0,0.480555556,20.37626104381097 +2019-05-06 13:00:00,25.0,0.440873016,20.37557888510546 +2019-05-06 13:15:00,25.0,0.422751323,20.37489732120369 +2019-05-06 13:30:00,25.0,0.466534392,20.374216352193333 +2019-05-06 13:45:00,25.0,0.488492063,20.373535978161968 +2019-05-06 14:00:00,25.0,0.526190476,20.372856199197113 +2019-05-06 14:15:00,25.0,0.521296296,20.372177015386193 +2019-05-06 14:30:00,25.0,0.518650794,20.37149842681658 +2019-05-06 14:45:00,25.0,0.531084656,20.37082043357554 +2019-05-06 15:00:00,25.0,0.522354497,20.37014303575029 +2019-05-06 15:15:00,25.0,0.49484127,20.369466233427957 +2019-05-06 15:30:00,25.0,0.472222222,20.368790026695585 +2019-05-06 15:45:00,25.0,0.471428571,20.368114415640157 +2019-05-06 16:00:00,25.0,0.478439153,20.367439400348566 +2019-05-06 16:15:00,25.0,0.512698413,20.366764980907643 +2019-05-06 16:30:00,25.0,0.489550265,20.366091157404124 +2019-05-06 16:45:00,25.0,0.459391534,20.365417929924682 +2019-05-06 17:00:00,25.0,0.472089947,20.36474529855591 +2019-05-06 17:15:00,25.0,0.444179894,20.36407326338432 +2019-05-06 17:30:00,25.0,0.423544974,20.363401824496353 +2019-05-06 17:45:00,25.0,0.43452381,20.362730981978373 +2019-05-06 18:00:00,25.0,0.454232804,20.36206073591666 +2019-05-06 18:15:00,25.0,0.473148148,20.361391086397425 +2019-05-06 18:30:00,25.0,0.474470899,20.360722033506804 +2019-05-06 18:45:00,25.0,0.479100529,20.360053577330845 +2019-05-06 19:00:00,25.0,0.463359788,20.359385717955533 +2019-05-06 19:15:00,25.0,0.457407407,20.358718455466764 +2019-05-06 19:30:00,25.0,0.461507937,20.358051789950366 +2019-05-06 19:45:00,25.0,0.473015873,20.357385721492086 +2019-05-06 20:00:00,25.0,0.468518519,20.356720250177595 +2019-05-06 20:15:00,25.0,0.455952381,20.356055376092492 +2019-05-06 20:30:00,25.0,0.437566138,20.35539109932229 +2019-05-06 20:45:00,25.0,0.457804233,20.354727419952425 +2019-05-06 21:00:00,25.0,0.465608466,20.354064338068273 +2019-05-06 21:15:00,25.0,0.449603175,20.35340185375511 +2019-05-06 21:30:00,25.0,0.434656085,20.352739967098152 +2019-05-06 21:45:00,25.0,0.426587302,20.352078678182536 +2019-05-06 22:00:00,25.0,0.419973545,20.35141798709331 +2019-05-06 22:15:00,25.0,0.425661376,20.350757893915457 +2019-05-06 22:30:00,25.0,0.413095238,20.35009839873388 +2019-05-06 22:45:00,25.0,0.393783069,20.34943950163341 +2019-05-06 23:00:00,25.0,0.378703704,20.348781202698785 +2019-05-06 23:15:00,25.0,0.389285714,20.348123502014687 +2019-05-06 23:30:00,25.0,0.395767196,20.347466399665706 +2019-05-06 23:45:00,25.0,0.38478836,20.346809895736357 +2019-05-07 00:00:00,25.0,0.388888889,20.346153990311088 +2019-05-07 00:15:00,25.0,0.389021164,20.34549868347426 +2019-05-07 00:30:00,25.0,0.370238095,20.34484397531016 +2019-05-07 00:45:00,25.0,0.379100529,20.344189865902997 +2019-05-07 01:00:00,25.0,0.356349206,20.343536355336905 +2019-05-07 01:15:00,25.0,0.33968254,20.342883443695943 +2019-05-07 01:30:00,25.0,0.360185185,20.342231131064082 +2019-05-07 01:45:00,25.0,0.373412698,20.341579417525235 +2019-05-07 02:00:00,25.0,0.371825397,20.340928303163217 +2019-05-07 02:15:00,25.0,0.364550265,20.340277788061783 +2019-05-07 02:30:00,25.0,0.358465608,20.3396278723046 +2019-05-07 02:45:00,25.0,0.37962963,20.33897855597526 +2019-05-07 03:00:00,25.0,0.378439153,20.338329839157282 +2019-05-07 03:15:00,25.0,0.361640212,20.337681721934107 +2019-05-07 03:30:00,25.0,0.358201058,20.3370342043891 +2019-05-07 03:45:00,25.0,0.361640212,20.336387286605536 +2019-05-07 04:00:00,25.0,0.35978836,20.33574096866663 +2019-05-07 04:15:00,25.0,0.348412698,20.335095250655513 +2019-05-07 04:30:00,25.0,0.34973545,20.334450132655235 +2019-05-07 04:45:00,25.0,0.358597884,20.333805614748776 +2019-05-07 05:00:00,25.0,0.344708995,20.333161697019037 +2019-05-07 05:15:00,25.0,0.318783069,20.332518379548837 +2019-05-07 05:30:00,25.0,0.317989418,20.33187566242092 +2019-05-07 05:45:00,25.0,0.321031746,20.331233545717957 +2019-05-07 06:00:00,25.0,0.306746032,20.33059202952254 +2019-05-07 06:15:00,25.0,0.306216931,20.329951113917176 +2019-05-07 06:30:00,25.0,0.303835979,20.329310798984302 +2019-05-07 06:45:00,25.0,0.288624339,20.32867108480628 +2019-05-07 07:00:00,25.0,0.27962963,20.328031971465396 +2019-05-07 07:15:00,25.0,0.284259259,20.327393459043844 +2019-05-07 07:30:00,25.0,0.249206349,20.32675554762376 +2019-05-07 07:45:00,25.0,0.238095238,20.326118237287186 +2019-05-07 08:00:00,25.0,0.222222222,20.3254815281161 +2019-05-07 08:15:00,25.0,0.203571429,20.324845420192393 +2019-05-07 08:30:00,25.0,0.211111111,20.324209913597883 +2019-05-07 08:45:00,25.0,0.217063492,20.323575008414316 +2019-05-07 09:00:00,25.0,0.194973545,20.322940704723347 +2019-05-07 09:15:00,25.0,0.192592593,20.32230700260657 +2019-05-07 09:30:00,25.0,0.195238095,20.321673902145488 +2019-05-07 09:45:00,25.0,0.198809524,20.32104140342153 +2019-05-07 10:00:00,25.0,0.184259259,20.32040950651605 +2019-05-07 10:15:00,25.0,0.176587302,20.31977821151033 +2019-05-07 10:30:00,25.0,0.181613757,20.319147518485565 +2019-05-07 10:45:00,25.0,0.18452381,20.318517427522874 +2019-05-07 11:00:00,25.0,0.178571429,20.3178879387033 +2019-05-07 11:15:00,25.0,0.171164021,20.317259052107815 +2019-05-07 11:30:00,25.0,0.167857143,20.316630767817305 +2019-05-07 11:45:00,25.0,0.172883598,20.316003085912584 +2019-05-07 12:00:00,25.0,0.176322751,20.315376006474377 +2019-05-07 12:15:00,25.0,0.167328042,20.31474952958335 +2019-05-07 12:30:00,25.0,0.161904762,20.314123655320078 +2019-05-07 12:45:00,25.0,0.165740741,20.31349838376506 +2019-05-07 13:00:00,25.0,0.17037037,20.312873714998727 +2019-05-07 13:15:00,25.0,0.164814815,20.312249649101418 +2019-05-07 13:30:00,25.0,0.159259259,20.311626186153404 +2019-05-07 13:45:00,25.0,0.161507937,20.31100332623488 +2019-05-07 14:00:00,25.0,0.159656085,20.310381069425954 +2019-05-07 14:15:00,25.0,0.149867725,20.309759415806667 +2019-05-07 14:30:00,25.0,0.140343915,20.309138365456974 +2019-05-07 14:45:00,25.0,0.136507937,20.308517918456758 +2019-05-07 15:00:00,25.0,0.142592593,20.30789807488582 +2019-05-07 15:15:00,25.0,0.136375661,20.30727883482389 +2019-05-07 15:30:00,25.0,0.11957672,20.306660198350613 +2019-05-07 15:45:00,25.0,0.110582011,20.30604216554556 +2019-05-07 16:00:00,25.0,0.106613757,20.30542473648822 +2019-05-07 16:15:00,25.0,0.108597884,20.304807911258013 +2019-05-07 16:30:00,25.0,0.098544974,20.304191689934278 +2019-05-07 16:45:00,25.0,0.098544974,20.30357607259627 +2019-05-07 17:00:00,25.0,0.094444444,20.302961059323174 +2019-05-07 17:15:00,25.0,0.091137566,20.302346650194096 +2019-05-07 17:30:00,25.0,0.075529101,20.301732845288058 +2019-05-07 17:45:00,25.0,0.075793651,20.30111964468401 +2019-05-07 18:00:00,25.0,0.071693122,20.300507048460826 +2019-05-07 18:15:00,25.0,0.06957672,20.2998950566973 +2019-05-07 18:30:00,25.0,0.081746032,20.299283669472143 +2019-05-07 18:45:00,25.0,0.073941799,20.298672886863997 +2019-05-07 19:00:00,25.0,0.066666667,20.298062708951424 +2019-05-07 19:15:00,25.0,0.074603175,20.2974531358129 +2019-05-07 19:30:00,25.0,0.082407407,20.296844167526835 +2019-05-07 19:45:00,25.0,0.086772487,20.296235804171555 +2019-05-07 20:00:00,25.0,0.088359788,20.29562804582531 +2019-05-07 20:15:00,25.0,0.071957672,20.295020892566264 +2019-05-07 20:30:00,25.0,0.059259259,20.29441434447252 +2019-05-07 20:45:00,25.0,0.05,20.293808401622094 +2019-05-07 21:00:00,25.0,0.04484127,20.293203064092914 +2019-05-07 21:15:00,25.0,0.043386243,20.29259833196285 +2019-05-07 21:30:00,25.0,0.046560847,20.291994205309674 +2019-05-07 21:45:00,25.0,0.049206349,20.291390684211102 +2019-05-07 22:00:00,25.0,0.045502646,20.29078776874475 +2019-05-07 22:15:00,25.0,0.044708995,20.29018545898817 +2019-05-07 22:30:00,25.0,0.047222222,20.289583755018835 +2019-05-07 22:45:00,25.0,0.041269841,20.288982656914136 +2019-05-07 23:00:00,25.0,0.039550265,20.288382164751386 +2019-05-07 23:15:00,25.0,0.040608466,20.28778227860782 +2019-05-07 23:30:00,25.0,0.041931217,20.287182998560603 +2019-05-07 23:45:00,25.0,0.03968254,20.286584324686814 +2019-05-08 00:00:00,25.0,0.037433862,20.285986257063453 +2019-05-08 00:15:00,25.0,0.035582011,20.285388795767446 +2019-05-08 00:30:00,25.0,0.039285714,20.284791940875635 +2019-05-08 00:45:00,25.0,0.041137566,20.2841956924648 +2019-05-08 01:00:00,25.0,0.040608466,20.28360005061162 +2019-05-08 01:15:00,25.0,0.042328042,20.283005015392717 +2019-05-08 01:30:00,25.0,0.037698413,20.282410586884623 +2019-05-08 01:45:00,25.0,0.032275132,20.281816765163793 +2019-05-08 02:00:00,25.0,0.028174603,20.281223550306606 +2019-05-08 02:15:00,25.0,0.024074074,20.280630942389365 +2019-05-08 02:30:00,25.0,0.025,20.28003894148829 +2019-05-08 02:45:00,25.0,0.024470899,20.279447547679524 +2019-05-08 03:00:00,25.0,0.028571429,20.27885676103914 +2019-05-08 03:15:00,25.0,0.031746032,20.27826658164312 +2019-05-08 03:30:00,25.0,0.031746032,20.277677009567377 +2019-05-08 03:45:00,25.0,0.038227513,20.277088044887744 +2019-05-08 04:00:00,25.0,0.042195767,20.276499687679973 +2019-05-08 04:15:00,25.0,0.047883598,20.27591193801974 +2019-05-08 04:30:00,25.0,0.052777778,20.27532479598264 +2019-05-08 04:45:00,25.0,0.062037037,20.274738261644202 +2019-05-08 05:00:00,25.0,0.069973545,20.274152335079858 +2019-05-08 05:15:00,25.0,0.076190476,20.27356701636497 +2019-05-08 05:30:00,25.0,0.085185185,20.272982305574835 +2019-05-08 05:45:00,25.0,0.097486772,20.27239820278465 +2019-05-08 06:00:00,25.0,0.110978836,20.271814708069545 +2019-05-08 06:15:00,25.0,0.126322751,20.27123182150457 +2019-05-08 06:30:00,25.0,0.137037037,20.2706495431647 +2019-05-08 06:45:00,25.0,0.147222222,20.27006787312483 +2019-05-08 07:00:00,25.0,0.156084656,20.26948681145977 +2019-05-08 07:15:00,25.0,0.161772487,20.268906358244266 +2019-05-08 07:30:00,25.0,0.163359788,20.268326513552967 +2019-05-08 07:45:00,25.0,0.166269841,20.26774727746046 +2019-05-08 08:00:00,25.0,0.172751323,20.26716865004125 +2019-05-08 08:15:00,25.0,0.179100529,20.266590631369752 +2019-05-08 08:30:00,25.0,0.188095238,20.266013221520325 +2019-05-08 08:45:00,25.0,0.19484127,20.265436420567227 +2019-05-08 09:00:00,25.0,0.193915344,20.26486022858465 +2019-05-08 09:15:00,25.0,0.190608466,20.264284645646704 +2019-05-08 09:30:00,25.0,0.186507937,20.263709671827428 +2019-05-08 09:45:00,25.0,0.18015873,20.263135307200766 +2019-05-08 10:00:00,25.0,0.192592593,20.262561551840605 +2019-05-08 10:15:00,25.0,0.216005291,20.261988405820738 +2019-05-08 10:30:00,25.0,0.236375661,20.26141586921488 +2019-05-08 10:45:00,25.0,0.254365079,20.26084394209668 +2019-05-08 11:00:00,25.0,0.273809524,20.260272624539695 +2019-05-08 11:15:00,25.0,0.29021164,20.259701916617413 +2019-05-08 11:30:00,25.0,0.307407407,20.259131818403233 +2019-05-08 11:45:00,25.0,0.327116402,20.25856232997049 +2019-05-08 12:00:00,25.0,0.35026455,20.25799345139243 +2019-05-08 12:15:00,25.0,0.371957672,20.257425182742224 +2019-05-08 12:30:00,25.0,0.384920635,20.256857524092965 +2019-05-08 12:45:00,25.0,0.399338624,20.256290475517662 +2019-05-08 13:00:00,25.0,0.438227513,20.255724037089255 +2019-05-08 13:15:00,25.0,0.487698413,20.255158208880598 +2019-05-08 13:30:00,25.0,0.525661376,20.25459299096447 +2019-05-08 13:45:00,25.0,0.538227513,20.25402838341357 +2019-05-08 14:00:00,25.0,0.54457672,20.253464386300518 +2019-05-08 14:15:00,25.0,0.584259259,20.25290099969786 +2019-05-08 14:30:00,25.0,0.603571429,20.25233822367806 +2019-05-08 14:45:00,25.0,0.623544974,20.2517760583135 +2019-05-08 15:00:00,25.0,0.636111111,20.25121450367649 +2019-05-08 15:15:00,25.0,0.668518519,20.250653559839257 +2019-05-08 15:30:00,25.0,0.699867725,20.25009322687395 +2019-05-08 15:45:00,25.0,0.722486772,20.249533504852643 +2019-05-08 16:00:00,25.0,0.728835979,20.248974393847327 +2019-05-08 16:15:00,25.0,0.738492063,20.248415893929916 +2019-05-08 16:30:00,25.0,0.733862434,20.247858005172247 +2019-05-08 16:45:00,25.0,0.734656085,20.247300727646078 +2019-05-08 17:00:00,25.0,0.735582011,20.24674406142308 +2019-05-08 17:15:00,25.0,0.724470899,20.24618800657486 +2019-05-08 17:30:00,25.0,0.717989418,20.24563256317294 +2019-05-08 17:45:00,25.0,0.708068783,20.245077731288756 +2019-05-08 18:00:00,25.0,0.697486772,20.244523510993677 +2019-05-08 18:15:00,25.0,0.693650794,20.243969902358984 +2019-05-08 18:30:00,25.0,0.672883598,20.243416905455888 +2019-05-08 18:45:00,25.0,0.640343915,20.242864520355518 +2019-05-08 19:00:00,25.0,0.618253968,20.242312747128913 +2019-05-08 19:15:00,25.0,0.599867725,20.24176158584705 +2019-05-08 19:30:00,25.0,0.601190476,20.24121103658083 +2019-05-08 19:45:00,25.0,0.603703704,20.240661099401045 +2019-05-08 20:00:00,25.0,0.606746032,20.240111774378448 +2019-05-08 20:15:00,25.0,0.585714286,20.239563061583684 +2019-05-08 20:30:00,25.0,0.588359788,20.23901496108733 +2019-05-08 20:45:00,25.0,0.572089947,20.238467472959893 +2019-05-08 21:00:00,25.0,0.540873016,20.23792059727178 +2019-05-08 21:15:00,25.0,0.512566138,20.237374334093342 +2019-05-08 21:30:00,25.0,0.505952381,20.236828683494835 +2019-05-08 21:45:00,25.0,0.532010582,20.236283645546443 +2019-05-08 22:00:00,25.0,0.509391534,20.23573922031827 +2019-05-08 22:15:00,25.0,0.469708995,20.23519540788034 +2019-05-08 22:30:00,25.0,0.43505291,20.2346522083026 +2019-05-08 22:45:00,25.0,0.409391534,20.23410962165492 +2019-05-08 23:00:00,25.0,0.382010582,20.233567648007085 +2019-05-08 23:15:00,25.0,0.359920635,20.233026287428807 +2019-05-08 23:30:00,25.0,0.359259259,20.232485539989717 +2019-05-08 23:45:00,25.0,0.375396825,20.23194540575937 +2019-05-09 00:00:00,25.0,0.388359788,20.23140588480723 +2019-05-09 00:15:00,25.0,0.383862434,20.230866977202705 +2019-05-09 00:30:00,25.0,0.371957672,20.2303286830151 +2019-05-09 00:45:00,25.0,0.366269841,20.229791002313654 +2019-05-09 01:00:00,25.0,0.369708995,20.229253935167527 +2019-05-09 01:15:00,25.0,0.375,20.228717481645795 +2019-05-09 01:30:00,25.0,0.356481481,20.22818164181746 +2019-05-09 01:45:00,25.0,0.342724868,20.227646415751444 +2019-05-09 02:00:00,25.0,0.351322751,20.227111803516586 +2019-05-09 02:15:00,25.0,0.364550265,20.22657780518165 +2019-05-09 02:30:00,25.0,0.401322751,20.22604442081532 +2019-05-09 02:45:00,25.0,0.416005291,20.225511650486204 +2019-05-09 03:00:00,25.0,0.412830688,20.224979494262826 +2019-05-09 03:15:00,25.0,0.401058201,20.22444795221363 +2019-05-09 03:30:00,25.0,0.394708995,20.22391702440699 +2019-05-09 03:45:00,25.0,0.396693122,20.223386710911193 +2019-05-09 04:00:00,25.0,0.405952381,20.222857011794446 +2019-05-09 04:15:00,25.0,0.419179894,20.222327927124883 +2019-05-09 04:30:00,25.0,0.416402116,20.221799456970558 +2019-05-09 04:45:00,25.0,0.428042328,20.221271601399437 +2019-05-09 05:00:00,25.0,0.429761905,20.220744360479422 +2019-05-09 05:15:00,25.0,0.426851852,20.22021773427832 +2019-05-09 05:30:00,25.0,0.419179894,20.219691722863878 +2019-05-09 05:45:00,25.0,0.40978836,20.219166326303746 +2019-05-09 06:00:00,25.0,0.402910053,20.218641544665502 +2019-05-09 06:15:00,25.0,0.403835979,20.218117378016643 +2019-05-09 06:30:00,25.0,0.415608466,20.21759382642459 +2019-05-09 06:45:00,25.0,0.409259259,20.21707088995668 +2019-05-09 07:00:00,25.0,0.392857143,20.21654856868018 +2019-05-09 07:15:00,25.0,0.394047619,20.216026862662275 +2019-05-09 07:30:00,25.0,0.396693122,20.21550577197006 +2019-05-09 07:45:00,25.0,0.402380952,20.214985296670562 +2019-05-09 08:00:00,25.0,0.408465608,20.21446543683073 +2019-05-09 08:15:00,25.0,0.407275132,20.21394619251742 +2019-05-09 08:30:00,25.0,0.393650794,20.213427563797424 +2019-05-09 08:45:00,25.0,0.379761905,20.21290955073745 +2019-05-09 09:00:00,25.0,0.379365079,20.212392153404124 +2019-05-09 09:15:00,25.0,0.356084656,20.211875371864 +2019-05-09 09:30:00,25.0,0.332010582,20.211359206183538 +2019-05-09 09:45:00,25.0,0.312433862,20.21084365642914 +2019-05-09 10:00:00,25.0,0.303174603,20.210328722667107 +2019-05-09 10:15:00,25.0,0.301190476,20.209814404963673 +2019-05-09 10:30:00,25.0,0.290873016,20.209300703384997 +2019-05-09 10:45:00,25.0,0.285185185,20.208787617997146 +2019-05-09 11:00:00,25.0,0.269973545,20.20827514886612 +2019-05-09 11:15:00,25.0,0.251587302,20.207763296057827 +2019-05-09 11:30:00,25.0,0.241798942,20.207252059638108 +2019-05-09 11:45:00,25.0,0.227645503,20.20674143967272 +2019-05-09 12:00:00,25.0,0.212037037,20.206231436227334 +2019-05-09 12:15:00,25.0,0.199206349,20.20572204936755 +2019-05-09 12:30:00,25.0,0.195634921,20.20521327915889 +2019-05-09 12:45:00,25.0,0.188492063,20.204705125666795 +2019-05-09 13:00:00,25.0,0.18505291,20.204197588956617 +2019-05-09 13:15:00,25.0,0.180820106,20.203690669093643 +2019-05-09 13:30:00,25.0,0.176322751,20.20318436614307 +2019-05-09 13:45:00,25.0,0.166269841,20.202678680170024 +2019-05-09 14:00:00,25.0,0.153439153,20.20217361123954 +2019-05-09 14:15:00,25.0,0.143915344,20.201669159416593 +2019-05-09 14:30:00,25.0,0.145238095,20.20116532476606 +2019-05-09 14:45:00,25.0,0.144973545,20.20066210735274 +2019-05-09 15:00:00,25.0,0.137698413,20.200159507241366 +2019-05-09 15:15:00,25.0,0.132275132,20.199657524496583 +2019-05-09 15:30:00,25.0,0.131481481,20.199156159182955 +2019-05-09 15:45:00,25.0,0.136111111,20.198655411364967 +2019-05-09 16:00:00,25.0,0.140343915,20.198155281107027 +2019-05-09 16:15:00,25.0,0.14457672,20.19765576847347 +2019-05-09 16:30:00,25.0,0.146560847,20.197156873528535 +2019-05-09 16:45:00,25.0,0.152380952,20.196658596336395 +2019-05-09 17:00:00,25.0,0.155026455,20.196160936961142 +2019-05-09 17:15:00,25.0,0.16547619,20.19566389546678 +2019-05-09 17:30:00,25.0,0.178703704,20.195167471917244 +2019-05-09 17:45:00,25.0,0.18015873,20.194671666376387 +2019-05-09 18:00:00,25.0,0.193121693,20.194176478907977 +2019-05-09 18:15:00,25.0,0.196428571,20.1936819095757 +2019-05-09 18:30:00,25.0,0.201058201,20.193187958443186 +2019-05-09 18:45:00,25.0,0.202910053,20.192694625573953 +2019-05-09 19:00:00,25.0,0.206349206,20.19220191103146 +2019-05-09 19:15:00,25.0,0.222619048,20.191709814879083 +2019-05-09 19:30:00,25.0,0.233994709,20.19121833718011 +2019-05-09 19:45:00,25.0,0.233730159,20.19072747799776 +2019-05-09 20:00:00,25.0,0.215873016,20.190237237395174 +2019-05-09 20:15:00,25.0,0.21031746,20.189747615435397 +2019-05-09 20:30:00,25.0,0.20542328,20.189258612181412 +2019-05-09 20:45:00,25.0,0.197751323,20.188770227696118 +2019-05-09 21:00:00,25.0,0.191931217,20.188282462042324 +2019-05-09 21:15:00,25.0,0.196428571,20.187795315282774 +2019-05-09 21:30:00,25.0,0.196296296,20.187308787480124 +2019-05-09 21:45:00,25.0,0.193386243,20.18682287869695 +2019-05-09 22:00:00,25.0,0.191005291,20.18633758899576 +2019-05-09 22:15:00,25.0,0.187698413,20.18585291843896 +2019-05-09 22:30:00,25.0,0.171825397,20.185368867088897 +2019-05-09 22:45:00,25.0,0.167989418,20.184885435007832 +2019-05-09 23:00:00,25.0,0.162698413,20.18440262225794 +2019-05-09 23:15:00,25.0,0.167724868,20.183920428901324 +2019-05-09 23:30:00,25.0,0.172354497,20.183438855000006 +2019-05-09 23:45:00,25.0,0.172883598,20.182957900615925 +2019-05-10 00:00:00,25.0,0.175793651,20.182477565810945 +2019-05-10 00:15:00,25.0,0.184920635,20.181997850646848 +2019-05-10 00:30:00,25.0,0.18452381,20.181518755185333 +2019-05-10 00:45:00,25.0,0.185714286,20.181040279488023 +2019-05-10 01:00:00,25.0,0.170502646,20.18056242361646 +2019-05-10 01:15:00,25.0,0.148412698,20.180085187632113 +2019-05-10 01:30:00,25.0,0.136640212,20.179608571596354 +2019-05-10 01:45:00,25.0,0.132539683,20.1791325755705 +2019-05-10 02:00:00,25.0,0.138227513,20.178657199615763 +2019-05-10 02:15:00,25.0,0.149074074,20.178182443793293 +2019-05-10 02:30:00,25.0,0.149470899,20.177708308164153 +2019-05-10 02:45:00,25.0,0.161772487,20.177234792789328 +2019-05-10 03:00:00,25.0,0.176058201,20.17676189772972 +2019-05-10 03:15:00,25.0,0.18531746,20.17628962304616 +2019-05-10 03:30:00,25.0,0.207010582,20.175817968799386 +2019-05-10 03:45:00,25.0,0.212962963,20.175346935050065 +2019-05-10 04:00:00,25.0,0.217460317,20.174876521858785 +2019-05-10 04:15:00,25.0,0.228306878,20.174406729286048 +2019-05-10 04:30:00,25.0,0.231084656,20.173937557392286 +2019-05-10 04:45:00,25.0,0.232275132,20.173469006237838 +2019-05-10 05:00:00,25.0,0.233465608,20.173001075882972 +2019-05-10 05:15:00,25.0,0.226190476,20.17253376638788 +2019-05-10 05:30:00,25.0,0.222619048,20.172067077812663 +2019-05-10 05:45:00,25.0,0.22526455,20.171601010217344 +2019-05-10 06:00:00,25.0,0.214550265,20.171135563661878 +2019-05-10 06:15:00,25.0,0.23505291,20.170670738206127 +2019-05-10 06:30:00,25.0,0.250793651,20.170206533909877 +2019-05-10 06:45:00,25.0,0.252513228,20.16974295083284 +2019-05-10 07:00:00,25.0,0.236507937,20.16927998903464 +2019-05-10 07:15:00,25.0,0.224867725,20.168817648574823 +2019-05-10 07:30:00,25.0,0.228306878,20.168355929512856 +2019-05-10 07:45:00,25.0,0.214417989,20.16789483190813 +2019-05-10 08:00:00,25.0,0.213624339,20.16743435581995 +2019-05-10 08:15:00,25.0,0.225661376,20.166974501307543 +2019-05-10 08:30:00,25.0,0.220502646,20.166515268430057 +2019-05-10 08:45:00,25.0,0.226984127,20.16605665724656 +2019-05-10 09:00:00,25.0,0.238888889,20.16559866781604 +2019-05-10 09:15:00,25.0,0.24510582,20.165141300197405 +2019-05-10 09:30:00,25.0,0.24047619,20.16468455444948 +2019-05-10 09:45:00,25.0,0.248148148,20.164228430631017 +2019-05-10 10:00:00,25.0,0.267857143,20.163772928800682 +2019-05-10 10:15:00,25.0,0.266137566,20.16331804901706 +2019-05-10 10:30:00,25.0,0.251719577,20.162863791338662 +2019-05-10 10:45:00,25.0,0.253703704,20.162410155823913 +2019-05-10 11:00:00,25.0,0.268386243,20.161957142531165 +2019-05-10 11:15:00,25.0,0.258730159,20.161504751518677 +2019-05-10 11:30:00,25.0,0.250661376,20.161052982844648 +2019-05-10 11:45:00,25.0,0.247883598,20.160601836567178 +2019-05-10 12:00:00,25.0,0.242592593,20.160151312744294 +2019-05-10 12:15:00,25.0,0.240343915,20.15970141143395 +2019-05-10 12:30:00,25.0,0.238624339,20.159252132694004 +2019-05-10 12:45:00,25.0,0.230291005,20.15880347658225 +2019-05-10 13:00:00,25.0,0.22473545,20.158355443156395 +2019-05-10 13:15:00,25.0,0.217989418,20.157908032474065 +2019-05-10 13:30:00,25.0,0.211375661,20.157461244592806 +2019-05-10 13:45:00,25.0,0.198148148,20.157015079570083 +2019-05-10 14:00:00,25.0,0.189021164,20.156569537463287 +2019-05-10 14:15:00,25.0,0.180952381,20.156124618329724 +2019-05-10 14:30:00,25.0,0.174470899,20.15568032222662 +2019-05-10 14:45:00,25.0,0.173941799,20.15523664921112 +2019-05-10 15:00:00,25.0,0.163095238,20.154793599340287 +2019-05-10 15:15:00,25.0,0.154100529,20.154351172671117 +2019-05-10 15:30:00,25.0,0.144708995,20.153909369260507 +2019-05-10 15:45:00,25.0,0.141005291,20.153468189165288 +2019-05-10 16:00:00,25.0,0.132671958,20.1530276324422 +2019-05-10 16:15:00,25.0,0.126455026,20.152587699147915 +2019-05-10 16:30:00,25.0,0.125925926,20.152148389339015 +2019-05-10 16:45:00,25.0,0.121164021,20.151709703072004 +2019-05-10 17:00:00,25.0,0.122222222,20.15127164040331 +2019-05-10 17:15:00,25.0,0.123148148,20.150834201389273 +2019-05-10 17:30:00,25.0,0.126587302,20.150397386086162 +2019-05-10 17:45:00,25.0,0.133597884,20.14996119455016 +2019-05-10 18:00:00,25.0,0.133333333,20.149525626837367 +2019-05-10 18:15:00,25.0,0.129365079,20.14909068300381 +2019-05-10 18:30:00,25.0,0.119444444,20.148656363105435 +2019-05-10 18:45:00,25.0,0.10489418,20.1482226671981 +2019-05-10 19:00:00,25.0,0.094312169,20.147789595337596 +2019-05-10 19:15:00,25.0,0.086111111,20.147357147579616 +2019-05-10 19:30:00,25.0,0.083862434,20.146925323979787 +2019-05-10 19:45:00,25.0,0.073544974,20.14649412459365 +2019-05-10 20:00:00,25.0,0.067063492,20.146063549476672 +2019-05-10 20:15:00,25.0,0.056746032,20.145633598684228 +2019-05-10 20:30:00,25.0,0.050396825,20.145204272271624 +2019-05-10 20:45:00,25.0,0.057407407,20.144775570294073 +2019-05-10 21:00:00,25.0,0.063095238,20.144347492806727 +2019-05-10 21:15:00,25.0,0.061772487,20.143920039864636 +2019-05-10 21:30:00,25.0,0.060978836,20.143493211522788 +2019-05-10 21:45:00,25.0,0.060846561,20.143067007836077 +2019-05-10 22:00:00,25.0,0.054232804,20.142641428859328 +2019-05-10 22:15:00,25.0,0.051719577,20.14221647464727 +2019-05-10 22:30:00,25.0,0.050132275,20.141792145254573 +2019-05-10 22:45:00,25.0,0.045502646,20.14136844073581 +2019-05-10 23:00:00,25.0,0.045899471,20.140945361145477 +2019-05-10 23:15:00,25.0,0.049206349,20.140522906537996 +2019-05-10 23:30:00,25.0,0.053174603,20.140101076967703 +2019-05-10 23:45:00,25.0,0.058862434,20.13967987248885 +2019-05-11 00:00:00,25.0,0.057936508,20.139259293155618 +2019-05-11 00:15:00,25.0,0.056878307,20.1388393390221 +2019-05-11 00:30:00,25.0,0.053703704,20.138420010142315 +2019-05-11 00:45:00,25.0,0.049338624,20.138001306570196 +2019-05-11 01:00:00,25.0,0.049074074,20.137583228359595 +2019-05-11 01:15:00,25.0,0.048544974,20.13716577556429 +2019-05-11 01:30:00,25.0,0.046957672,20.136748948237976 +2019-05-11 01:45:00,25.0,0.045502646,20.136332746434263 +2019-05-11 02:00:00,25.0,0.04510582,20.135917170206685 +2019-05-11 02:15:00,25.0,0.044444444,20.135502219608696 +2019-05-11 02:30:00,25.0,0.041534392,20.135087894693662 +2019-05-11 02:45:00,25.0,0.032142857,20.13467419551488 +2019-05-11 03:00:00,25.0,0.030555556,20.134261122125558 +2019-05-11 03:15:00,25.0,0.030026455,20.133848674578832 +2019-05-11 03:30:00,25.0,0.03042328,20.133436852927744 +2019-05-11 03:45:00,25.0,0.028835979,20.133025657225268 +2019-05-11 04:00:00,25.0,0.030026455,20.132615087524293 +2019-05-11 04:15:00,25.0,0.030687831,20.132205143877627 +2019-05-11 04:30:00,25.0,0.032539683,20.131795826338 +2019-05-11 04:45:00,25.0,0.031613757,20.131387134958054 +2019-05-11 05:00:00,25.0,0.032142857,20.130979069790357 +2019-05-11 05:15:00,25.0,0.032407407,20.130571630887403 +2019-05-11 05:30:00,25.0,0.030687831,20.130164818301584 +2019-05-11 05:45:00,25.0,0.027248677,20.129758632085238 +2019-05-11 06:00:00,25.0,0.027777778,20.129353072290606 +2019-05-11 06:15:00,25.0,0.032671958,20.128948138969847 +2019-05-11 06:30:00,25.0,0.038492063,20.128543832175048 +2019-05-11 06:45:00,25.0,0.040079365,20.128140151958213 +2019-05-11 07:00:00,25.0,0.036772487,20.127737098371263 +2019-05-11 07:15:00,25.0,0.038095238,20.12733467146604 +2019-05-11 07:30:00,25.0,0.042989418,20.126932871294308 +2019-05-11 07:45:00,25.0,0.045899471,20.12653169790774 +2019-05-11 08:00:00,25.0,0.047883598,20.126131151357942 +2019-05-11 08:15:00,25.0,0.048941799,20.12573123169643 +2019-05-11 08:30:00,25.0,0.04510582,20.125331938974647 +2019-05-11 08:45:00,25.0,0.043121693,20.124933273243947 +2019-05-11 09:00:00,25.0,0.048280423,20.12453523455561 +2019-05-11 09:15:00,25.0,0.056746032,20.124137822960826 +2019-05-11 09:30:00,25.0,0.06031746,20.123741038510722 +2019-05-11 09:45:00,25.0,0.069973545,20.123344881256322 +2019-05-11 10:00:00,25.0,0.077645503,20.122949351248593 +2019-05-11 10:15:00,25.0,0.083597884,20.122554448538395 +2019-05-11 10:30:00,25.0,0.092195767,20.122160173176532 +2019-05-11 10:45:00,25.0,0.096957672,20.12176652521371 +2019-05-11 11:00:00,25.0,0.101587302,20.121373504700568 +2019-05-11 11:15:00,25.0,0.103968254,20.12098111168765 +2019-05-11 11:30:00,25.0,0.102910053,20.120589346225433 +2019-05-11 11:45:00,25.0,0.101984127,20.1201982083643 +2019-05-11 12:00:00,25.0,0.10515873,20.119807698154567 +2019-05-11 12:15:00,25.0,0.11494709,20.119417815646454 +2019-05-11 12:30:00,25.0,0.122089947,20.119028560890115 +2019-05-11 12:45:00,25.0,0.134391534,20.11863993393562 +2019-05-11 13:00:00,25.0,0.148677249,20.118251934832944 +2019-05-11 13:15:00,25.0,0.154232804,20.117864563631997 +2019-05-11 13:30:00,25.0,0.164417989,20.11747782038261 +2019-05-11 13:45:00,25.0,0.170767196,20.11709170513452 +2019-05-11 14:00:00,25.0,0.178439153,20.116706217937395 +2019-05-11 14:15:00,25.0,0.19537037,20.116321358840814 +2019-05-11 14:30:00,25.0,0.208994709,20.115937127894277 +2019-05-11 14:45:00,25.0,0.21984127,20.115553525147206 +2019-05-11 15:00:00,25.0,0.235978836,20.11517055064894 +2019-05-11 15:15:00,25.0,0.248148148,20.114788204448743 +2019-05-11 15:30:00,25.0,0.258862434,20.114406486595787 +2019-05-11 15:45:00,25.0,0.274338624,20.114025397139173 +2019-05-11 16:00:00,25.0,0.29021164,20.113644936127915 +2019-05-11 16:15:00,25.0,0.298015873,20.113265103610953 +2019-05-11 16:30:00,25.0,0.312301587,20.11288589963714 +2019-05-11 16:45:00,25.0,0.327645503,20.112507324255244 +2019-05-11 17:00:00,25.0,0.344179894,20.112129377513966 +2019-05-11 17:15:00,25.0,0.357539683,20.11175205946192 +2019-05-11 17:30:00,25.0,0.364814815,20.11137537014763 +2019-05-11 17:45:00,25.0,0.364021164,20.11099930961955 +2019-05-11 18:00:00,25.0,0.367592593,20.110623877926052 +2019-05-11 18:15:00,25.0,0.365740741,20.110249075115423 +2019-05-11 18:30:00,25.0,0.366005291,20.10987490123587 +2019-05-11 18:45:00,25.0,0.371825397,20.10950135633552 +2019-05-11 19:00:00,25.0,0.372354497,20.109128440462424 +2019-05-11 19:15:00,25.0,0.377380952,20.10875615366454 +2019-05-11 19:30:00,25.0,0.378968254,20.10838449598976 +2019-05-11 19:45:00,25.0,0.378174603,20.10801346748588 +2019-05-11 20:00:00,25.0,0.380952381,20.107643068200623 +2019-05-11 20:15:00,25.0,0.373015873,20.10727329818164 +2019-05-11 20:30:00,25.0,0.362433862,20.10690415747648 +2019-05-11 20:45:00,25.0,0.357539683,20.10653564613263 +2019-05-11 21:00:00,25.0,0.36494709,20.106167764197487 +2019-05-11 21:15:00,25.0,0.361772487,20.10580051171837 +2019-05-11 21:30:00,25.0,0.350132275,20.105433888742514 +2019-05-11 21:45:00,25.0,0.333730159,20.105067895317074 +2019-05-11 22:00:00,25.0,0.319444444,20.104702531489128 +2019-05-11 22:15:00,25.0,0.317063492,20.104337797305668 +2019-05-11 22:30:00,25.0,0.32010582,20.103973692813604 +2019-05-11 22:45:00,25.0,0.324603175,20.103610218059774 +2019-05-11 23:00:00,25.0,0.326058201,20.103247373090927 +2019-05-11 23:15:00,25.0,0.337566138,20.10288515795373 +2019-05-11 23:30:00,25.0,0.346825397,20.10252357269477 +2019-05-11 23:45:00,25.0,0.366534392,20.102162617360566 +2019-05-12 00:00:00,25.0,0.361375661,20.101802291997537 +2019-05-12 00:15:00,25.0,0.361904762,20.101442596652028 +2019-05-12 00:30:00,25.0,0.373412698,20.101083531370303 +2019-05-12 00:45:00,25.0,0.378306878,20.100725096198552 +2019-05-12 01:00:00,25.0,0.396957672,20.100367291182874 +2019-05-12 01:15:00,25.0,0.399206349,20.10001011636929 +2019-05-12 01:30:00,25.0,0.393386243,20.099653571803742 +2019-05-12 01:45:00,25.0,0.396031746,20.099297657532087 +2019-05-12 02:00:00,25.0,0.416666667,20.09894237360011 +2019-05-12 02:15:00,25.0,0.418253968,20.098587720053498 +2019-05-12 02:30:00,25.0,0.423941799,20.09823369693788 +2019-05-12 02:45:00,25.0,0.426851852,20.097880304298776 +2019-05-12 03:00:00,25.0,0.427513228,20.09752754218166 +2019-05-12 03:15:00,25.0,0.425529101,20.097175410631884 +2019-05-12 03:30:00,25.0,0.426984127,20.096823909694756 +2019-05-12 03:45:00,25.0,0.408465608,20.09647303941548 +2019-05-12 04:00:00,25.0,0.40515873,20.096122799839183 +2019-05-12 04:15:00,25.0,0.402910053,20.09577319101092 +2019-05-12 04:30:00,25.0,0.412169312,20.095424212975654 +2019-05-12 04:45:00,25.0,0.416931217,20.095075865778277 +2019-05-12 05:00:00,25.0,0.408862434,20.094728149463585 +2019-05-12 05:15:00,25.0,0.415079365,20.09438106407631 +2019-05-12 05:30:00,25.0,0.446428571,20.094034609661094 +2019-05-12 05:45:00,25.0,0.41521164,20.093688786262494 +2019-05-12 06:00:00,25.0,0.387301587,20.093343593924992 +2019-05-12 06:15:00,25.0,0.398015873,20.092999032692994 +2019-05-12 06:30:00,25.0,0.389814815,20.09265510261081 +2019-05-12 06:45:00,25.0,0.391402116,20.09231180372268 +2019-05-12 07:00:00,25.0,0.399074074,20.091969136072763 +2019-05-12 07:15:00,25.0,0.395238095,20.09162709970513 +2019-05-12 07:30:00,25.0,0.378306878,20.091285694663775 +2019-05-12 07:45:00,25.0,0.369973545,20.090944920992612 +2019-05-12 08:00:00,25.0,0.369047619,20.090604778735468 +2019-05-12 08:15:00,25.0,0.372619048,20.090265267936097 +2019-05-12 08:30:00,25.0,0.373677249,20.08992638863817 +2019-05-12 08:45:00,25.0,0.383068783,20.089588140885265 +2019-05-12 09:00:00,25.0,0.38968254,20.089250524720896 +2019-05-12 09:15:00,25.0,0.404761905,20.08891354018849 +2019-05-12 09:30:00,25.0,0.408465608,20.08857718733138 +2019-05-12 09:45:00,25.0,0.40489418,20.08824146619284 +2019-05-12 10:00:00,25.0,0.392195767,20.087906376816047 +2019-05-12 10:15:00,25.0,0.389285714,20.0875719192441 +2019-05-12 10:30:00,25.0,0.392989418,20.087238093520018 +2019-05-12 10:45:00,25.0,0.398544974,20.086904899686736 +2019-05-12 11:00:00,25.0,0.39510582,20.086572337787118 +2019-05-12 11:15:00,25.0,0.383068783,20.08624040786393 +2019-05-12 11:30:00,25.0,0.378042328,20.085909109959868 +2019-05-12 11:45:00,25.0,0.373015873,20.085578444117548 +2019-05-12 12:00:00,25.0,0.362037037,20.0852484103795 +2019-05-12 12:15:00,25.0,0.356613757,20.08491900878817 +2019-05-12 12:30:00,25.0,0.361243386,20.08459023938593 +2019-05-12 12:45:00,25.0,0.366798942,20.08426210221506 +2019-05-12 13:00:00,25.0,0.36521164,20.08393459731778 +2019-05-12 13:15:00,25.0,0.377777778,20.0836077247362 +2019-05-12 13:30:00,25.0,0.382804233,20.08328148451237 +2019-05-12 13:45:00,25.0,0.387830688,20.082955876688253 +2019-05-12 14:00:00,25.0,0.397883598,20.082630901305727 +2019-05-12 14:15:00,25.0,0.407804233,20.082306558406593 +2019-05-12 14:30:00,25.0,0.412169312,20.08198284803256 +2019-05-12 14:45:00,25.0,0.401719577,20.08165977022528 +2019-05-12 15:00:00,25.0,0.393915344,20.081337325026293 +2019-05-12 15:15:00,25.0,0.391931217,20.081015512477084 +2019-05-12 15:30:00,25.0,0.391534392,20.08069433261904 +2019-05-12 15:45:00,25.0,0.395767196,20.080373785493467 +2019-05-12 16:00:00,25.0,0.391402116,20.080053871141605 +2019-05-12 16:15:00,25.0,0.392063492,20.079734589604595 +2019-05-12 16:30:00,25.0,0.393783069,20.079415940923504 +2019-05-12 16:45:00,25.0,0.400529101,20.079097925139322 +2019-05-12 17:00:00,25.0,0.396031746,20.07878054229295 +2019-05-12 17:15:00,25.0,0.396428571,20.07846379242521 +2019-05-12 17:30:00,25.0,0.396957672,20.07814767557684 +2019-05-12 17:45:00,25.0,0.394047619,20.07783219178851 +2019-05-12 18:00:00,25.0,0.389153439,20.077517341100787 +2019-05-12 18:15:00,25.0,0.378968254,20.07720312355417 +2019-05-12 18:30:00,25.0,0.375132275,20.076889539189082 +2019-05-12 18:45:00,25.0,0.368650794,20.076576588045846 +2019-05-12 19:00:00,25.0,0.355291005,20.076264270164724 +2019-05-12 19:15:00,25.0,0.345899471,20.07595258558588 +2019-05-12 19:30:00,25.0,0.339153439,20.075641534349415 +2019-05-12 19:45:00,25.0,0.346560847,20.07533111649532 +2019-05-12 20:00:00,25.0,0.347619048,20.075021332063535 +2019-05-12 20:15:00,25.0,0.319047619,20.0747121810939 +2019-05-12 20:30:00,25.0,0.286904762,20.07440366362618 +2019-05-12 20:45:00,25.0,0.278703704,20.074095779700055 +2019-05-12 21:00:00,25.0,0.271031746,20.073788529355127 +2019-05-12 21:15:00,25.0,0.257539683,20.073481912630918 +2019-05-12 21:30:00,25.0,0.245899471,20.07317592956686 +2019-05-12 21:45:00,25.0,0.246560847,20.072870580202316 +2019-05-12 22:00:00,25.0,0.246693122,20.072565864576557 +2019-05-12 22:15:00,25.0,0.24484127,20.072261782728777 +2019-05-12 22:30:00,25.0,0.238359788,20.071958334698085 +2019-05-12 22:45:00,25.0,0.220634921,20.071655520523514 +2019-05-12 23:00:00,25.0,0.212962963,20.071353340244016 +2019-05-12 23:15:00,25.0,0.20952381,20.071051793898448 +2019-05-12 23:30:00,25.0,0.203306878,20.07075088152561 +2019-05-12 23:45:00,25.0,0.198544974,20.07045060316419 +2019-05-13 00:00:00,25.0,0.187962963,20.07015095885282 +2019-05-13 00:15:00,25.0,0.183333333,20.069851948630046 +2019-05-13 00:30:00,25.0,0.181613757,20.069553572534314 +2019-05-13 00:45:00,25.0,0.182275132,20.069255830604014 +2019-05-13 01:00:00,25.0,0.18531746,20.068958722877433 +2019-05-13 01:15:00,25.0,0.181746032,20.068662249392787 +2019-05-13 01:30:00,25.0,0.180952381,20.06836641018822 +2019-05-13 01:45:00,25.0,0.180687831,20.068071205301766 +2019-05-13 02:00:00,25.0,0.183730159,20.06777663477141 +2019-05-13 02:15:00,25.0,0.18505291,20.067482698635033 +2019-05-13 02:30:00,25.0,0.175661376,20.067189396930445 +2019-05-13 02:45:00,25.0,0.173015873,20.066896729695365 +2019-05-13 03:00:00,25.0,0.167328042,20.066604696967445 +2019-05-13 03:15:00,25.0,0.157142857,20.06631329878424 +2019-05-13 03:30:00,25.0,0.152645503,20.066022535183233 +2019-05-13 03:45:00,25.0,0.149867725,20.065732406201825 +2019-05-13 04:00:00,25.0,0.148148148,20.06544291187733 +2019-05-13 04:15:00,25.0,0.149074074,20.065154052246985 +2019-05-13 04:30:00,25.0,0.149074074,20.064865827347944 +2019-05-13 04:45:00,25.0,0.149206349,20.064578237217276 +2019-05-13 05:00:00,25.0,0.150661376,20.064291281891975 +2019-05-13 05:15:00,25.0,0.151455026,20.064004961408948 +2019-05-13 05:30:00,25.0,0.152116402,20.06371927580502 +2019-05-13 05:45:00,25.0,0.156613757,20.063434225116943 +2019-05-13 06:00:00,25.0,0.157936508,20.06314980938138 +2019-05-13 06:15:00,25.0,0.159656085,20.062866028634907 +2019-05-13 06:30:00,25.0,0.15978836,20.06258288291403 +2019-05-13 06:45:00,25.0,0.156349206,20.06230037225516 +2019-05-13 07:00:00,25.0,0.156878307,20.062018496694645 +2019-05-13 07:15:00,25.0,0.158333333,20.061737256268735 +2019-05-13 07:30:00,25.0,0.156746032,20.061456651013604 +2019-05-13 07:45:00,25.0,0.158994709,20.061176680965342 +2019-05-13 08:00:00,25.0,0.156746032,20.060897346159965 +2019-05-13 08:15:00,25.0,0.146031746,20.060618646633397 +2019-05-13 08:30:00,25.0,0.135846561,20.06034058242149 +2019-05-13 08:45:00,25.0,0.12989418,20.06006315356 +2019-05-13 09:00:00,25.0,0.121825397,20.059786360084622 +2019-05-13 09:15:00,25.0,0.113227513,20.05951020203095 +2019-05-13 09:30:00,25.0,0.108465608,20.059234679434503 +2019-05-13 09:45:00,25.0,0.106746032,20.058959792330725 +2019-05-13 10:00:00,25.0,0.103835979,20.058685540754972 +2019-05-13 10:15:00,25.0,0.095899471,20.058411924742515 +2019-05-13 10:30:00,25.0,0.083201058,20.058138944328547 +2019-05-13 10:45:00,25.0,0.082539683,20.057866599548184 +2019-05-13 11:00:00,25.0,0.079761905,20.057594890436455 +2019-05-13 11:15:00,25.0,0.073280423,20.057323817028305 +2019-05-13 11:30:00,25.0,0.074603175,20.0570533793586 +2019-05-13 11:45:00,25.0,0.076851852,20.056783577462124 +2019-05-13 12:00:00,25.0,0.091798942,20.056514411373584 +2019-05-13 12:15:00,25.0,0.09457672,20.056245881127595 +2019-05-13 12:30:00,25.0,0.094444444,20.0559779867587 +2019-05-13 12:45:00,25.0,0.111111111,20.055710728301353 +2019-05-13 13:00:00,25.0,0.133730159,20.055444105789935 +2019-05-13 13:15:00,25.0,0.149206349,20.055178119258734 +2019-05-13 13:30:00,25.0,0.152116402,20.054912768741964 +2019-05-13 13:45:00,25.0,0.171031746,20.054648054273752 +2019-05-13 14:00:00,25.0,0.186111111,20.05438397588815 +2019-05-13 14:15:00,25.0,0.181084656,20.054120533619127 +2019-05-13 14:30:00,25.0,0.173280423,20.053857727500564 +2019-05-13 14:45:00,25.0,0.174338624,20.053595557566258 +2019-05-13 15:00:00,25.0,0.183862434,20.05333402384994 +2019-05-13 15:15:00,25.0,0.186375661,20.05307312638524 +2019-05-13 15:30:00,25.0,0.186640212,20.052812865205723 +2019-05-13 15:45:00,25.0,0.168386243,20.05255324034486 +2019-05-13 16:00:00,25.0,0.176455026,20.05229425183605 +2019-05-13 16:15:00,25.0,0.188624339,20.052035899712592 +2019-05-13 16:30:00,25.0,0.175793651,20.05177818400773 +2019-05-13 16:45:00,25.0,0.158730159,20.051521104754606 +2019-05-13 17:00:00,25.0,0.15,20.051264661986288 +2019-05-13 17:15:00,25.0,0.148677249,20.051008855735752 +2019-05-13 17:30:00,25.0,0.150925926,20.05075368603591 +2019-05-13 17:45:00,25.0,0.151455026,20.050499152919585 +2019-05-13 18:00:00,25.0,0.153306878,20.050245256419505 +2019-05-13 18:15:00,25.0,0.157142857,20.049991996568334 +2019-05-13 18:30:00,25.0,0.162433862,20.049739373398644 +2019-05-13 18:45:00,25.0,0.161507937,20.04948738694293 +2019-05-13 19:00:00,25.0,0.163492063,20.049236037233598 +2019-05-13 19:15:00,25.0,0.163756614,20.048985324302983 +2019-05-13 19:30:00,25.0,0.157407407,20.04873524818333 +2019-05-13 19:45:00,25.0,0.162433862,20.048485808906804 +2019-05-13 20:00:00,25.0,0.164814815,20.04823700650549 +2019-05-13 20:15:00,25.0,0.184920635,20.047988841011392 +2019-05-13 20:30:00,25.0,0.195899471,20.047741312456424 +2019-05-13 20:45:00,25.0,0.178439153,20.047494420872425 +2019-05-13 21:00:00,25.0,0.161243386,20.04724816629115 +2019-05-13 21:15:00,25.0,0.134126984,20.047002548744278 +2019-05-13 21:30:00,25.0,0.119708995,20.0467575682634 +2019-05-13 21:45:00,25.0,0.123412698,20.046513224880016 +2019-05-13 22:00:00,25.0,0.125529101,20.046269518625564 +2019-05-13 22:15:00,25.0,0.129100529,20.04602644953139 +2019-05-13 22:30:00,25.0,0.132142857,20.045784017628755 +2019-05-13 22:45:00,25.0,0.130026455,20.045542222948843 +2019-05-13 23:00:00,25.0,0.135185185,20.04530106552275 +2019-05-13 23:15:00,25.0,0.140740741,20.045060545381496 +2019-05-13 23:30:00,25.0,0.148941799,20.044820662556024 +2019-05-13 23:45:00,25.0,0.153174603,20.04458141707718 +2019-05-14 00:00:00,25.0,0.154761905,20.044342808975735 +2019-05-14 00:15:00,25.0,0.150529101,20.04410483828239 +2019-05-14 00:30:00,25.0,0.150529101,20.04386750502774 +2019-05-14 00:45:00,25.0,0.144312169,20.043630809242323 +2019-05-14 01:00:00,25.0,0.140343915,20.04339475095658 +2019-05-14 01:15:00,25.0,0.133333333,20.043159330200865 +2019-05-14 01:30:00,25.0,0.124206349,20.04292454700547 +2019-05-14 01:45:00,25.0,0.12473545,20.04269040140059 +2019-05-14 02:00:00,25.0,0.123015873,20.042456893416336 +2019-05-14 02:15:00,25.0,0.124074074,20.04222402308275 +2019-05-14 02:30:00,25.0,0.123677249,20.041991790429776 +2019-05-14 02:45:00,25.0,0.117857143,20.041760195487292 +2019-05-14 03:00:00,25.0,0.116005291,20.04152923828508 +2019-05-14 03:15:00,25.0,0.11521164,20.041298918852853 +2019-05-14 03:30:00,25.0,0.104497354,20.041069237220228 +2019-05-14 03:45:00,25.0,0.098412698,20.040840193416756 +2019-05-14 04:00:00,25.0,0.096957672,20.04061178747189 +2019-05-14 04:15:00,25.0,0.09484127,20.040384019415008 +2019-05-14 04:30:00,25.0,0.089417989,20.04015688927541 +2019-05-14 04:45:00,25.0,0.079497354,20.0399303970823 +2019-05-14 05:00:00,25.0,0.073148148,20.03970454286483 +2019-05-14 05:15:00,25.0,0.065740741,20.03947932665203 +2019-05-14 05:30:00,25.0,0.060714286,20.039254748472878 +2019-05-14 05:45:00,25.0,0.053571429,20.03903080835626 +2019-05-14 06:00:00,25.0,0.05,20.038807506330976 +2019-05-14 06:15:00,25.0,0.045502646,20.03858484242575 +2019-05-14 06:30:00,25.0,0.042857143,20.038362816669213 +2019-05-14 06:45:00,25.0,0.040343915,20.038141429089936 +2019-05-14 07:00:00,25.0,0.037433862,20.03792067971639 +2019-05-14 07:15:00,25.0,0.03478836,20.037700568576962 +2019-05-14 07:30:00,25.0,0.034126984,20.03748109569997 +2019-05-14 07:45:00,25.0,0.029497354,20.03726226111364 +2019-05-14 08:00:00,25.0,0.023941799,20.03704406484612 +2019-05-14 08:15:00,25.0,0.019312169,20.036826506925475 +2019-05-14 08:30:00,25.0,0.015343915,20.036609587379687 +2019-05-14 08:45:00,25.0,0.012566138,20.036393306236658 +2019-05-14 09:00:00,25.0,0.011772487,20.036177663524207 +2019-05-14 09:15:00,25.0,0.006878307,20.035962659270066 +2019-05-14 09:30:00,25.0,0.003439153,20.035748293501893 +2019-05-14 09:45:00,25.0,0.002777778,20.03553456624726 +2019-05-14 10:00:00,25.0,0.001719577,20.03532147753366 +2019-05-14 10:15:00,25.0,0.001587302,20.035109027388494 +2019-05-14 10:30:00,25.0,0.000925926,20.034897215839095 +2019-05-14 10:45:00,25.0,0.000925926,20.034686042912703 +2019-05-14 11:00:00,25.0,0.001190476,20.03447550863648 +2019-05-14 11:15:00,25.0,0.011375661,20.034265613037505 +2019-05-14 11:30:00,25.0,0.012433862,20.034056356142774 +2019-05-14 11:45:00,25.0,0.001719577,20.033847737979205 +2019-05-14 12:00:00,25.0,0.001190476,20.033639758573628 +2019-05-14 12:15:00,25.0,0.001984127,20.0334324179528 +2019-05-14 12:30:00,25.0,0.005555556,20.03322571614338 +2019-05-14 12:45:00,25.0,0.006878307,20.033019653171962 +2019-05-14 13:00:00,25.0,0.007804233,20.032814229065046 +2019-05-14 13:15:00,25.0,0.010582011,20.032609443849058 +2019-05-14 13:30:00,25.0,0.011243386,20.032405297550337 +2019-05-14 13:45:00,25.0,0.012037037,20.03220179019514 +2019-05-14 14:00:00,25.0,0.012566138,20.031998921809638 +2019-05-14 14:15:00,25.0,0.015873016,20.03179669241993 +2019-05-14 14:30:00,25.0,0.018518519,20.031595102052027 +2019-05-14 14:45:00,25.0,0.017063492,20.031394150731856 +2019-05-14 15:00:00,25.0,0.017195767,20.03119383848527 +2019-05-14 15:15:00,25.0,0.02037037,20.030994165338022 +2019-05-14 15:30:00,25.0,0.016269841,20.030795131315802 +2019-05-14 15:45:00,25.0,0.016005291,20.03059673644421 +2019-05-14 16:00:00,25.0,0.02037037,20.030398980748764 +2019-05-14 16:15:00,25.0,0.02526455,20.0302018642549 +2019-05-14 16:30:00,25.0,0.027380952,20.030005386987966 +2019-05-14 16:45:00,25.0,0.028703704,20.02980954897324 +2019-05-14 17:00:00,25.0,0.030952381,20.02961435023591 +2019-05-14 17:15:00,25.0,0.033597884,20.02941979080108 +2019-05-14 17:30:00,25.0,0.034259259,20.02922587069378 +2019-05-14 17:45:00,25.0,0.035582011,20.029032589938943 +2019-05-14 18:00:00,25.0,0.037037037,20.02883994856144 +2019-05-14 18:15:00,25.0,0.039550265,20.02864794658604 +2019-05-14 18:30:00,25.0,0.042460317,20.028456584037446 +2019-05-14 18:45:00,25.0,0.046164021,20.028265860940266 +2019-05-14 19:00:00,25.0,0.053703704,20.02807577731904 +2019-05-14 19:15:00,25.0,0.05462963,20.027886333198204 +2019-05-14 19:30:00,25.0,0.055952381,20.027697528602133 +2019-05-14 19:45:00,25.0,0.057142857,20.02750936355511 +2019-05-14 20:00:00,25.0,0.056613757,20.02732183808134 +2019-05-14 20:15:00,25.0,0.063227513,20.027134952204936 +2019-05-14 20:30:00,25.0,0.068253968,20.02694870594994 +2019-05-14 20:45:00,25.0,0.066534392,20.026763099340307 +2019-05-14 21:00:00,25.0,0.067195767,20.026578132399912 +2019-05-14 21:15:00,25.0,0.065079365,20.026393805152544 +2019-05-14 21:30:00,25.0,0.061772487,20.02621011762191 +2019-05-14 21:45:00,25.0,0.062830688,20.026027069831642 +2019-05-14 22:00:00,25.0,0.065079365,20.025844661805277 +2019-05-14 22:15:00,25.0,0.058465608,20.02566289356628 +2019-05-14 22:30:00,25.0,0.055687831,20.025481765138032 +2019-05-14 22:45:00,25.0,0.053306878,20.02530127654383 +2019-05-14 23:00:00,25.0,0.053306878,20.02512142780688 +2019-05-14 23:15:00,25.0,0.053968254,20.02494221895033 +2019-05-14 23:30:00,25.0,0.050793651,20.024763649997215 +2019-05-14 23:45:00,25.0,0.043386243,20.024585720970514 +2019-05-15 00:00:00,25.0,0.039153439,20.02440843189311 +2019-05-15 00:15:00,25.0,0.031613757,20.024231782787805 +2019-05-15 00:30:00,25.0,0.024074074,20.02405577367732 +2019-05-15 00:45:00,25.0,0.01957672,20.02388040458429 +2019-05-15 01:00:00,25.0,0.017328042,20.02370567553128 +2019-05-15 01:15:00,25.0,0.013624339,20.023531586540756 +2019-05-15 01:30:00,25.0,0.011507937,20.023358137635114 +2019-05-15 01:45:00,25.0,0.010978836,20.02318532883666 +2019-05-15 02:00:00,25.0,0.008862434,20.023013160167626 +2019-05-15 02:15:00,25.0,0.007936508,20.022841631650152 +2019-05-15 02:30:00,25.0,0.007142857,20.022670743306307 +2019-05-15 02:45:00,25.0,0.007142857,20.022500495158063 +2019-05-15 03:00:00,25.0,0.007275132,20.022330887227323 +2019-05-15 03:15:00,25.0,0.008465608,20.022161919535897 +2019-05-15 03:30:00,25.0,0.008201058,20.021993592105527 +2019-05-15 03:45:00,25.0,0.00978836,20.021825904957858 +2019-05-15 04:00:00,25.0,0.011111111,20.021658858114456 +2019-05-15 04:15:00,25.0,0.013624339,20.021492451596806 +2019-05-15 04:30:00,25.0,0.017328042,20.021326685426324 +2019-05-15 04:45:00,25.0,0.020634921,20.021161559624318 +2019-05-15 05:00:00,25.0,0.022222222,20.02099707421203 +2019-05-15 05:15:00,25.0,0.021031746,20.020833229210616 +2019-05-15 05:30:00,25.0,0.02010582,20.020670024641156 +2019-05-15 05:45:00,25.0,0.021560847,20.020507460524637 +2019-05-15 06:00:00,25.0,0.023809524,20.02034553688197 +2019-05-15 06:15:00,25.0,0.025,20.02018425373398 +2019-05-15 06:30:00,25.0,0.026719577,20.02002361110141 +2019-05-15 06:45:00,25.0,0.028703704,20.01986360900493 +2019-05-15 07:00:00,25.0,0.024470899,20.01970424746511 +2019-05-15 07:15:00,25.0,0.02037037,20.019545526502455 +2019-05-15 07:30:00,25.0,0.019708995,20.019387446137376 +2019-05-15 07:45:00,25.0,0.019047619,20.019230006390206 +2019-05-15 08:00:00,25.0,0.01547619,20.0190732072812 +2019-05-15 08:15:00,25.0,0.013492063,20.018917048830517 +2019-05-15 08:30:00,25.0,0.012830688,20.01876153105825 +2019-05-15 08:45:00,25.0,0.013227513,20.0186066539844 +2019-05-15 09:00:00,25.0,0.014021164,20.018452417628886 +2019-05-15 09:15:00,25.0,0.015343915,20.01829882201155 +2019-05-15 09:30:00,25.0,0.016137566,20.018145867152143 +2019-05-15 09:45:00,25.0,0.016402116,20.017993553070337 +2019-05-15 10:00:00,25.0,0.018915344,20.01784187978573 +2019-05-15 10:15:00,25.0,0.023412698,20.01769084731783 +2019-05-15 10:30:00,25.0,0.027380952,20.017540455686056 +2019-05-15 10:45:00,25.0,0.032142857,20.017390704909758 +2019-05-15 11:00:00,25.0,0.033068783,20.017241595008194 +2019-05-15 11:15:00,25.0,0.035449735,20.017093126000546 +2019-05-15 11:30:00,25.0,0.039021164,20.01694529790591 +2019-05-15 11:45:00,25.0,0.041534392,20.016798110743295 +2019-05-15 12:00:00,25.0,0.04537037,20.01665156453164 +2019-05-15 12:15:00,25.0,0.045238095,20.016505659289788 +2019-05-15 12:30:00,25.0,0.045238095,20.016360395036507 +2019-05-15 12:45:00,25.0,0.044179894,20.016215771790485 +2019-05-15 13:00:00,25.0,0.043386243,20.01607178957032 +2019-05-15 13:15:00,25.0,0.04457672,20.015928448394533 +2019-05-15 13:30:00,25.0,0.041402116,20.01578574828156 +2019-05-15 13:45:00,25.0,0.041534392,20.01564368924975 +2019-05-15 14:00:00,25.0,0.038624339,20.015502271317388 +2019-05-15 14:15:00,25.0,0.041931217,20.015361494502653 +2019-05-15 14:30:00,25.0,0.04484127,20.015221358823652 +2019-05-15 14:45:00,25.0,0.051851852,20.015081864298416 +2019-05-15 15:00:00,25.0,0.056746032,20.014943010944886 +2019-05-15 15:15:00,25.0,0.059391534,20.014804798780915 +2019-05-15 15:30:00,25.0,0.058862434,20.01466722782429 +2019-05-15 15:45:00,25.0,0.065740741,20.014530298092694 +2019-05-15 16:00:00,25.0,0.069708995,20.01439400960375 +2019-05-15 16:15:00,25.0,0.072486772,20.01425836237498 +2019-05-15 16:30:00,25.0,0.076984127,20.014123356423838 +2019-05-15 16:45:00,25.0,0.077645503,20.013988991767683 +2019-05-15 17:00:00,25.0,0.078042328,20.0138552684238 +2019-05-15 17:15:00,25.0,0.088492063,20.01372218640939 +2019-05-15 17:30:00,25.0,0.098015873,20.013589745741566 +2019-05-15 17:45:00,25.0,0.102248677,20.013457946437367 +2019-05-15 18:00:00,25.0,0.113227513,20.013326788513744 +2019-05-15 18:15:00,25.0,0.115079365,20.013196271987564 +2019-05-15 18:30:00,25.0,0.116534392,20.01306639687562 +2019-05-15 18:45:00,25.0,0.123148148,20.012937163194614 +2019-05-15 19:00:00,25.0,0.131084656,20.012808570961166 +2019-05-15 19:15:00,25.0,0.142857143,20.01268062019182 +2019-05-15 19:30:00,25.0,0.15489418,20.01255331090303 +2019-05-15 19:45:00,25.0,0.170767196,20.012426643111173 +2019-05-15 20:00:00,25.0,0.175793651,20.01230061683254 +2019-05-15 20:15:00,25.0,0.185846561,20.012175232083344 +2019-05-15 20:30:00,25.0,0.191402116,20.012050488879705 +2019-05-15 20:45:00,25.0,0.202248677,20.011926387237676 +2019-05-15 21:00:00,25.0,0.217460317,20.011802927173214 +2019-05-15 21:15:00,25.0,0.227116402,20.0116801087022 +2019-05-15 21:30:00,25.0,0.248148148,20.01155793184043 +2019-05-15 21:45:00,25.0,0.261375661,20.01143639660362 +2019-05-15 22:00:00,25.0,0.256216931,20.011315503007406 +2019-05-15 22:15:00,25.0,0.256613757,20.01119525106733 +2019-05-15 22:30:00,25.0,0.262433862,20.011075640798865 +2019-05-15 22:45:00,25.0,0.261772487,20.010956672217397 +2019-05-15 23:00:00,25.0,0.257142857,20.010838345338218 +2019-05-15 23:15:00,25.0,0.252910053,20.01072066017656 +2019-05-15 23:30:00,25.0,0.254497354,20.01060361674755 +2019-05-15 23:45:00,25.0,0.253042328,20.010487215066245 +2019-05-16 00:00:00,25.0,0.249338624,20.01037145514762 +2019-05-16 00:15:00,25.0,0.248809524,20.010256337006563 +2019-05-16 00:30:00,25.0,0.248544974,20.010141860657882 +2019-05-16 00:45:00,25.0,0.254497354,20.010028026116295 +2019-05-16 01:00:00,25.0,0.259656085,20.00991483339645 +2019-05-16 01:15:00,25.0,0.258994709,20.009802282512908 +2019-05-16 01:30:00,25.0,0.253703704,20.00969037348014 +2019-05-16 01:45:00,25.0,0.24973545,20.00957910631254 +2019-05-16 02:00:00,25.0,0.248544974,20.00946848102442 +2019-05-16 02:15:00,25.0,0.242592593,20.00935849763001 +2019-05-16 02:30:00,25.0,0.223412698,20.00924915614346 +2019-05-16 02:45:00,25.0,0.214550265,20.00914045657883 +2019-05-16 03:00:00,25.0,0.20952381,20.0090323989501 +2019-05-16 03:15:00,25.0,0.198544974,20.00892498327117 +2019-05-16 03:30:00,25.0,0.190740741,20.008818209555855 +2019-05-16 03:45:00,25.0,0.186507937,20.00871207781789 +2019-05-16 04:00:00,25.0,0.186111111,20.008606588070926 +2019-05-16 04:15:00,25.0,0.185185185,20.008501740328533 +2019-05-16 04:30:00,25.0,0.186507937,20.008397534604192 +2019-05-16 04:45:00,25.0,0.194312169,20.00829397091131 +2019-05-16 05:00:00,25.0,0.203968254,20.008191049263203 +2019-05-16 05:15:00,25.0,0.212566138,20.008088769673115 +2019-05-16 05:30:00,25.0,0.221825397,20.0079871321542 +2019-05-16 05:45:00,25.0,0.228306878,20.007886136719527 +2019-05-16 06:00:00,25.0,0.235714286,20.00778578338209 +2019-05-16 06:15:00,25.0,0.237169312,20.007686072154797 +2019-05-16 06:30:00,25.0,0.240740741,20.00758700305047 +2019-05-16 06:45:00,25.0,0.24484127,20.007488576081855 +2019-05-16 07:00:00,25.0,0.26521164,20.007390791261606 +2019-05-16 07:15:00,25.0,0.281349206,20.007293648602307 +2019-05-16 07:30:00,25.0,0.288359788,20.00719714811645 +2019-05-16 07:45:00,25.0,0.29484127,20.007101289816447 +2019-05-16 08:00:00,25.0,0.302777778,20.007006073714628 +2019-05-16 08:15:00,25.0,0.301984127,20.006911499823243 +2019-05-16 08:30:00,25.0,0.300132275,20.006817568154446 +2019-05-16 08:45:00,25.0,0.303571429,20.00672427872033 +2019-05-16 09:00:00,25.0,0.300793651,20.00663163153289 +2019-05-16 09:15:00,25.0,0.299867725,20.00653962660404 +2019-05-16 09:30:00,25.0,0.293915344,20.00644826394562 +2019-05-16 09:45:00,25.0,0.297486772,20.006357543569376 +2019-05-16 10:00:00,25.0,0.310846561,20.006267465486978 +2019-05-16 10:15:00,25.0,0.316534392,20.006178029710007 +2019-05-16 10:30:00,25.0,0.320502646,20.006089236249977 +2019-05-16 10:45:00,25.0,0.328968254,20.006001085118303 +2019-05-16 11:00:00,25.0,0.335714286,20.00591357632632 +2019-05-16 11:15:00,25.0,0.333333333,20.00582670988529 +2019-05-16 11:30:00,25.0,0.33015873,20.005740485806385 +2019-05-16 11:45:00,25.0,0.339153439,20.005654904100695 +2019-05-16 12:00:00,25.0,0.344312169,20.00556996477922 +2019-05-16 12:15:00,25.0,0.339021164,20.005485667852895 +2019-05-16 12:30:00,25.0,0.33478836,20.005402013332557 +2019-05-16 12:45:00,25.0,0.337962963,20.00531900122897 +2019-05-16 13:00:00,25.0,0.348809524,20.005236631552805 +2019-05-16 13:15:00,25.0,0.352380952,20.005154904314665 +2019-05-16 13:30:00,25.0,0.365343915,20.00507381952505 +2019-05-16 13:45:00,25.0,0.368121693,20.004993377194406 +2019-05-16 14:00:00,25.0,0.37989418,20.004913577333063 +2019-05-16 14:15:00,25.0,0.392592593,20.004834419951298 +2019-05-16 14:30:00,25.0,0.399074074,20.004755905059284 +2019-05-16 14:45:00,25.0,0.412830688,20.004678032667123 +2019-05-16 15:00:00,25.0,0.424206349,20.00460080278483 +2019-05-16 15:15:00,25.0,0.427910053,20.00452421542234 +2019-05-16 15:30:00,25.0,0.433068783,20.004448270589503 +2019-05-16 15:45:00,25.0,0.439021164,20.004372968296085 +2019-05-16 16:00:00,25.0,0.433730159,20.004298308551775 +2019-05-16 16:15:00,25.0,0.418386243,20.004224291366178 +2019-05-16 16:30:00,25.0,0.400925926,20.004150916748806 +2019-05-16 16:45:00,25.0,0.411243386,20.004078184709105 +2019-05-16 17:00:00,25.0,0.425396825,20.004006095256425 +2019-05-16 17:15:00,25.0,0.463888889,20.00393464840004 +2019-05-16 17:30:00,25.0,0.49510582,20.00386384414914 +2019-05-16 17:45:00,25.0,0.511640212,20.00379368251283 +2019-05-16 18:00:00,25.0,0.523677249,20.003724163500138 +2019-05-16 18:15:00,25.0,0.546031746,20.00365528712 +2019-05-16 18:30:00,25.0,0.568253968,20.00358705338128 +2019-05-16 18:45:00,25.0,0.585714286,20.003519462292758 +2019-05-16 19:00:00,25.0,0.592857143,20.003452513863117 +2019-05-16 19:15:00,25.0,0.603174603,20.003386208100977 +2019-05-16 19:30:00,25.0,0.619047619,20.00332054501486 +2019-05-16 19:45:00,25.0,0.627910053,20.003255524613216 +2019-05-16 20:00:00,25.0,0.642724868,20.003191146904406 +2019-05-16 20:15:00,25.0,0.647089947,20.003127411896713 +2019-05-16 20:30:00,25.0,0.641666667,20.003064319598334 +2019-05-16 20:45:00,25.0,0.635714286,20.003001870017382 +2019-05-16 21:00:00,25.0,0.642063492,20.00294006316189 +2019-05-16 21:15:00,25.0,0.648677249,20.002878899039807 +2019-05-16 21:30:00,25.0,0.652380952,20.002818377659004 +2019-05-16 21:45:00,25.0,0.666005291,20.002758499027262 +2019-05-16 22:00:00,25.0,0.672486772,20.002699263152284 +2019-05-16 22:15:00,25.0,0.669047619,20.00264067004169 +2019-05-16 22:30:00,25.0,0.657142857,20.00258271970301 +2019-05-16 22:45:00,25.0,0.653042328,20.002525412143708 +2019-05-16 23:00:00,25.0,0.658201058,20.002468747371147 +2019-05-16 23:15:00,25.0,0.658201058,20.002412725392617 +2019-05-16 23:30:00,25.0,0.647486772,20.002357346215327 +2019-05-16 23:45:00,25.0,0.641534392,20.002302609846396 +2019-05-17 00:00:00,25.0,0.630687831,20.002248516292866 +2019-05-17 00:15:00,25.0,0.621164021,20.002195065561697 +2019-05-17 00:30:00,25.0,0.608862434,20.002142257659763 +2019-05-17 00:45:00,25.0,0.594047619,20.00209009259385 +2019-05-17 01:00:00,25.0,0.587830688,20.002038570370676 +2019-05-17 01:15:00,25.0,0.579100529,20.001987690996863 +2019-05-17 01:30:00,25.0,0.576455026,20.001937454478956 +2019-05-17 01:45:00,25.0,0.577513228,20.00188786082342 +2019-05-17 02:00:00,25.0,0.582539683,20.00183891003663 +2019-05-17 02:15:00,25.0,0.582142857,20.001790602124878 +2019-05-17 02:30:00,25.0,0.577380952,20.001742937094388 +2019-05-17 02:45:00,25.0,0.566137566,20.001695914951284 +2019-05-17 03:00:00,25.0,0.554761905,20.001649535701617 +2019-05-17 03:15:00,25.0,0.555820106,20.00160379935135 +2019-05-17 03:30:00,25.0,0.585714286,20.001558705906366 +2019-05-17 03:45:00,25.0,0.598809524,20.001514255372467 +2019-05-17 04:00:00,25.0,0.592724868,20.001470447755366 +2019-05-17 04:15:00,25.0,0.585185185,20.001427283060707 +2019-05-17 04:30:00,25.0,0.572486772,20.00138476129403 +2019-05-17 04:45:00,25.0,0.580687831,20.00134288246081 +2019-05-17 05:00:00,25.0,0.584126984,20.001301646566436 +2019-05-17 05:15:00,25.0,0.592724868,20.001261053616208 +2019-05-17 05:30:00,25.0,0.596164021,20.00122110361535 +2019-05-17 05:45:00,25.0,0.59537037,20.001181796568996 +2019-05-17 06:00:00,25.0,0.577910053,20.001143132482206 +2019-05-17 06:15:00,25.0,0.547619048,20.00110511135995 +2019-05-17 06:30:00,25.0,0.531878307,20.001067733207123 +2019-05-17 06:45:00,25.0,0.515873016,20.00103099802853 +2019-05-17 07:00:00,25.0,0.495238095,20.000994905828893 +2019-05-17 07:15:00,25.0,0.467592593,20.00095945661286 +2019-05-17 07:30:00,25.0,0.449206349,20.000924650384984 +2019-05-17 07:45:00,25.0,0.444179894,20.000890487149746 +2019-05-17 08:00:00,25.0,0.42010582,20.00085696691154 +2019-05-17 08:15:00,25.0,0.406216931,20.00082408967468 +2019-05-17 08:30:00,25.0,0.374603175,20.00079185544339 +2019-05-17 08:45:00,25.0,0.35,20.000760264221817 +2019-05-17 09:00:00,25.0,0.330026455,20.000729316014027 +2019-05-17 09:15:00,25.0,0.31957672,20.000699010823997 +2019-05-17 09:30:00,25.0,0.331746032,20.000669348655627 +2019-05-17 09:45:00,25.0,0.341931217,20.00064032951273 +2019-05-17 10:00:00,25.0,0.360582011,20.000611953399044 +2019-05-17 10:15:00,25.0,0.358201058,20.00058422031821 +2019-05-17 10:30:00,25.0,0.353306878,20.000557130273805 +2019-05-17 10:45:00,25.0,0.34021164,20.000530683269307 +2019-05-17 11:00:00,25.0,0.328439153,20.00050487930812 +2019-05-17 11:15:00,25.0,0.322883598,20.000479718393564 +2019-05-17 11:30:00,25.0,0.304100529,20.00045520052887 +2019-05-17 11:45:00,25.0,0.297619048,20.000431325717194 +2019-05-17 12:00:00,25.0,0.290740741,20.00040809396161 +2019-05-17 12:15:00,25.0,0.275925926,20.000385505265108 +2019-05-17 12:30:00,25.0,0.257539683,20.000363559630586 +2019-05-17 12:45:00,25.0,0.262301587,20.00034225706087 +2019-05-17 13:00:00,25.0,0.26005291,20.0003215975587 +2019-05-17 13:15:00,25.0,0.255291005,20.000301581126735 +2019-05-17 13:30:00,25.0,0.252777778,20.000282207767544 +2019-05-17 13:45:00,25.0,0.26005291,20.000263477483628 +2019-05-17 14:00:00,25.0,0.265079365,20.000245390277385 +2019-05-17 14:15:00,25.0,0.267857143,20.000227946151153 +2019-05-17 14:30:00,25.0,0.275132275,20.00021114510717 +2019-05-17 14:45:00,25.0,0.276322751,20.000194987147594 +2019-05-17 15:00:00,25.0,0.282539683,20.000179472274507 +2019-05-17 15:15:00,25.0,0.293253968,20.000164600489903 +2019-05-17 15:30:00,25.0,0.28968254,20.000150371795698 +2019-05-17 15:45:00,25.0,0.28505291,20.00013678619372 +2019-05-17 16:00:00,25.0,0.284920635,20.000123843685714 +2019-05-17 16:15:00,25.0,0.290873016,20.00011154427335 +2019-05-17 16:30:00,25.0,0.285846561,20.000099887958207 +2019-05-17 16:45:00,25.0,0.283597884,20.00008887474178 +2019-05-17 17:00:00,25.0,0.29457672,20.000078504625492 +2019-05-17 17:15:00,25.0,0.295634921,20.000068777610675 +2019-05-17 17:30:00,25.0,0.29537037,20.00005969369858 +2019-05-17 17:45:00,25.0,0.301587302,20.000051252890376 +2019-05-17 18:00:00,25.0,0.31468254,20.000043455187146 +2019-05-17 18:15:00,25.0,0.317592593,20.000036300589898 +2019-05-17 18:30:00,25.0,0.326984127,20.000029789099543 +2019-05-17 18:45:00,25.0,0.347222222,20.000023920716927 +2019-05-17 19:00:00,25.0,0.343915344,20.000018695442805 +2019-05-17 19:15:00,25.0,0.349603175,20.000014113277846 +2019-05-17 19:30:00,25.0,0.351058201,20.000010174222638 +2019-05-17 19:45:00,25.0,0.340740741,20.000006878277688 +2019-05-17 20:00:00,25.0,0.327910053,20.000004225443426 +2019-05-17 20:15:00,25.0,0.316666667,20.000002215720183 +2019-05-17 20:30:00,25.0,0.315608466,20.000000849108226 +2019-05-17 20:45:00,25.0,0.305820106,20.00000012560773 +2019-05-17 21:00:00,25.0,0.287962963,20.000000045218783 +2019-05-17 21:15:00,25.0,0.276984127,20.0000006079414 +2019-05-17 21:30:00,25.0,0.273148148,20.000001813775505 +2019-05-17 21:45:00,25.0,0.26494709,20.000003662720943 +2019-05-17 22:00:00,25.0,0.262037037,20.00000615477748 +2019-05-17 22:15:00,25.0,0.249867725,20.000009289944796 +2019-05-17 22:30:00,25.0,0.250396825,20.000013068222483 +2019-05-17 22:45:00,25.0,0.257407407,20.00001748961006 +2019-05-17 23:00:00,25.0,0.255555556,20.00002255410695 +2019-05-17 23:15:00,25.0,0.256613757,20.000028261712508 +2019-05-17 23:30:00,25.0,0.258201058,20.000034612426003 +2019-05-17 23:45:00,25.0,0.243518519,20.00004160624661 +2019-05-18 00:00:00,25.0,0.231084656,20.000049243173436 +2019-05-18 00:15:00,25.0,0.220899471,20.000057523205495 +2019-05-18 00:30:00,25.0,0.217063492,20.000066446341727 +2019-05-18 00:45:00,25.0,0.220502646,20.000076012580976 +2019-05-18 01:00:00,25.0,0.21468254,20.000086221922018 +2019-05-18 01:15:00,25.0,0.219179894,20.000097074363538 +2019-05-18 01:30:00,25.0,0.226984127,20.00010856990414 +2019-05-18 01:45:00,25.0,0.228306878,20.000120708542344 +2019-05-18 02:00:00,25.0,0.240740741,20.000133490276593 +2019-05-18 02:15:00,25.0,0.258068783,20.000146915105237 +2019-05-18 02:30:00,25.0,0.271825397,20.000160983026554 +2019-05-18 02:45:00,25.0,0.272354497,20.000175694038735 +2019-05-18 03:00:00,25.0,0.272619048,20.000191048139882 +2019-05-18 03:15:00,25.0,0.272751323,20.00020704532803 +2019-05-18 03:30:00,25.0,0.282010582,20.00022368560111 +2019-05-18 03:45:00,25.0,0.292195767,20.000240968956987 +2019-05-18 04:00:00,25.0,0.296164021,20.000258895393443 +2019-05-18 04:15:00,25.0,0.307275132,20.000277464908162 +2019-05-18 04:30:00,25.0,0.303571429,20.000296677498763 +2019-05-18 04:45:00,25.0,0.293386243,20.000316533162774 +2019-05-18 05:00:00,25.0,0.282010582,20.000337031897637 +2019-05-18 05:15:00,25.0,0.276719577,20.00035817370072 +2019-05-18 05:30:00,25.0,0.26494709,20.000379958569305 +2019-05-18 05:45:00,25.0,0.258333333,20.000402386500582 +2019-05-18 06:00:00,25.0,0.250661376,20.000425457491673 +2019-05-18 06:15:00,25.0,0.237169312,20.000449171539607 +2019-05-18 06:30:00,25.0,0.218386243,20.00047352864134 +2019-05-18 06:45:00,25.0,0.200529101,20.00049852879373 +2019-05-18 07:00:00,25.0,0.193121693,20.00052417199357 +2019-05-18 07:15:00,25.0,0.192989418,20.000550458237555 +2019-05-18 07:30:00,25.0,0.188624339,20.000577387522306 +2019-05-18 07:45:00,25.0,0.181349206,20.000604959844363 +2019-05-18 08:00:00,25.0,0.178174603,20.000633175200175 +2019-05-18 08:15:00,25.0,0.166666667,20.000662033586117 +2019-05-18 08:30:00,25.0,0.151058201,20.000691534998474 +2019-05-18 08:45:00,25.0,0.14457672,20.00072167943345 +2019-05-18 09:00:00,25.0,0.149867725,20.00075246688717 +2019-05-18 09:15:00,25.0,0.153042328,20.000783897355674 +2019-05-18 09:30:00,25.0,0.15,20.00081597083492 +2019-05-18 09:45:00,25.0,0.149074074,20.000848687320783 +2019-05-18 10:00:00,25.0,0.147089947,20.000882046809053 +2019-05-18 10:15:00,25.0,0.156349206,20.00091604929544 +2019-05-18 10:30:00,25.0,0.167857143,20.000950694775575 +2019-05-18 10:45:00,25.0,0.180555556,20.000985983244995 +2019-05-18 11:00:00,25.0,0.179365079,20.00102191469916 +2019-05-18 11:15:00,25.0,0.186772487,20.001058489133456 +2019-05-18 11:30:00,25.0,0.188756614,20.001095706543172 +2019-05-18 11:45:00,25.0,0.194973545,20.001133566923524 +2019-05-18 12:00:00,25.0,0.184391534,20.001172070269643 +2019-05-18 12:15:00,25.0,0.190343915,20.00121121657658 +2019-05-18 12:30:00,25.0,0.186243386,20.001251005839286 +2019-05-18 12:45:00,25.0,0.19537037,20.00129143805266 +2019-05-18 13:00:00,25.0,0.212433862,20.001332513211494 +2019-05-18 13:15:00,25.0,0.20952381,20.0013742313105 +2019-05-18 13:30:00,25.0,0.208597884,20.001416592344324 +2019-05-18 13:45:00,25.0,0.199603175,20.001459596307505 +2019-05-18 14:00:00,25.0,0.205820106,20.00150324319452 +2019-05-18 14:15:00,25.0,0.207407407,20.00154753299975 +2019-05-18 14:30:00,25.0,0.203174603,20.001592465717508 +2019-05-18 14:45:00,25.0,0.208333333,20.001638041341998 +2019-05-18 15:00:00,25.0,0.220767196,20.001684259867375 +2019-05-18 15:15:00,25.0,0.217063492,20.001731121287683 +2019-05-18 15:30:00,25.0,0.222619048,20.0017786255969 +2019-05-18 15:45:00,25.0,0.221693122,20.00182677278891 +2019-05-18 16:00:00,25.0,0.213756614,20.001875562857528 +2019-05-18 16:15:00,25.0,0.216137566,20.001924995796475 +2019-05-18 16:30:00,25.0,0.209391534,20.00197507159939 +2019-05-18 16:45:00,25.0,0.2,20.002025790259836 +2019-05-18 17:00:00,25.0,0.191402116,20.00207715177129 +2019-05-18 17:15:00,25.0,0.176587302,20.002129156127143 +2019-05-18 17:30:00,25.0,0.168518519,20.002181803320706 +2019-05-18 17:45:00,25.0,0.176322751,20.00223509334521 +2019-05-18 18:00:00,25.0,0.182804233,20.0022890261938 +2019-05-18 18:15:00,25.0,0.196164021,20.002343601859536 +2019-05-18 18:30:00,25.0,0.213095238,20.0023988203354 +2019-05-18 18:45:00,25.0,0.221825397,20.00245468161429 +2019-05-18 19:00:00,25.0,0.24021164,20.002511185689023 +2019-05-18 19:15:00,25.0,0.250529101,20.00256833255233 +2019-05-18 19:30:00,25.0,0.253571429,20.002626122196858 +2019-05-18 19:45:00,25.0,0.263756614,20.00268455461518 +2019-05-18 20:00:00,25.0,0.267195767,20.002743629799774 +2019-05-18 20:15:00,25.0,0.261640212,20.002803347743043 +2019-05-18 20:30:00,25.0,0.258730159,20.002863708437307 +2019-05-18 20:45:00,25.0,0.236507937,20.002924711874805 +2019-05-18 21:00:00,25.0,0.233333333,20.002986358047686 +2019-05-18 21:15:00,25.0,0.232804233,20.00304864694802 +2019-05-18 21:30:00,25.0,0.231084656,20.003111578567804 +2019-05-18 21:45:00,25.0,0.228968254,20.003175152898933 +2019-05-18 22:00:00,25.0,0.224338624,20.003239369933233 +2019-05-18 22:15:00,25.0,0.225529101,20.00330422966245 +2019-05-18 22:30:00,25.0,0.226984127,20.003369732078237 +2019-05-18 22:45:00,25.0,0.21468254,20.00343587717217 +2019-05-18 23:00:00,25.0,0.204761905,20.003502664935738 +2019-05-18 23:15:00,25.0,0.193915344,20.003570095360352 +2019-05-18 23:30:00,25.0,0.18452381,20.003638168437345 +2019-05-18 23:45:00,25.0,0.172883598,20.003706884157953 +2019-05-19 00:00:00,25.0,0.163888889,20.003776242513343 +2019-05-19 00:15:00,25.0,0.166402116,20.00384624349459 +2019-05-19 00:30:00,25.0,0.167195767,20.003916887092693 +2019-05-19 00:45:00,25.0,0.15462963,20.003988173298566 +2019-05-19 01:00:00,25.0,0.145767196,20.00406010210304 +2019-05-19 01:15:00,25.0,0.142063492,20.00413267349686 +2019-05-19 01:30:00,25.0,0.136111111,20.004205887470693 +2019-05-19 01:45:00,25.0,0.124867725,20.004279744015125 +2019-05-19 02:00:00,25.0,0.119973545,20.004354243120652 +2019-05-19 02:15:00,25.0,0.124338624,20.004429384777698 +2019-05-19 02:30:00,25.0,0.118650794,20.004505168976593 +2019-05-19 02:45:00,25.0,0.113756614,20.00458159570759 +2019-05-19 03:00:00,25.0,0.11031746,20.00465866496086 +2019-05-19 03:15:00,25.0,0.107142857,20.00473637672649 +2019-05-19 03:30:00,25.0,0.102248677,20.004814730994482 +2019-05-19 03:45:00,25.0,0.107936508,20.004893727754762 +2019-05-19 04:00:00,25.0,0.106613757,20.00497336699717 +2019-05-19 04:15:00,25.0,0.104232804,20.00505364871146 +2019-05-19 04:30:00,25.0,0.098544974,20.005134572887304 +2019-05-19 04:45:00,25.0,0.102380952,20.005216139514296 +2019-05-19 05:00:00,25.0,0.101190476,20.005298348581942 +2019-05-19 05:15:00,25.0,0.10542328,20.005381200079672 +2019-05-19 05:30:00,25.0,0.101058201,20.005464693996828 +2019-05-19 05:45:00,25.0,0.100132275,20.005548830322667 +2019-05-19 06:00:00,25.0,0.09510582,20.005633609046377 +2019-05-19 06:15:00,25.0,0.08968254,20.005719030157042 +2019-05-19 06:30:00,25.0,0.092195767,20.00580509364368 +2019-05-19 06:45:00,25.0,0.088095238,20.005891799495224 +2019-05-19 07:00:00,25.0,0.085449735,20.005979147700522 +2019-05-19 07:15:00,25.0,0.086375661,20.006067138248333 +2019-05-19 07:30:00,25.0,0.088095238,20.00615577112734 +2019-05-19 07:45:00,25.0,0.087962963,20.00624504632615 +2019-05-19 08:00:00,25.0,0.088624339,20.00633496383327 +2019-05-19 08:15:00,25.0,0.090608466,20.006425523637148 +2019-05-19 08:30:00,25.0,0.088756614,20.006516725726122 +2019-05-19 08:45:00,25.0,0.087433862,20.00660857008847 +2019-05-19 09:00:00,25.0,0.084656085,20.00670105671238 +2019-05-19 09:15:00,25.0,0.086375661,20.006794185585946 +2019-05-19 09:30:00,25.0,0.083994709,20.006887956697202 +2019-05-19 09:45:00,25.0,0.083730159,20.006982370034077 +2019-05-19 10:00:00,25.0,0.089153439,20.007077425584434 +2019-05-19 10:15:00,25.0,0.091005291,20.007173123336045 +2019-05-19 10:30:00,25.0,0.097354497,20.007269463276597 +2019-05-19 10:45:00,25.0,0.104232804,20.007366445393703 +2019-05-19 11:00:00,25.0,0.101719577,20.00746406967489 +2019-05-19 11:15:00,25.0,0.111640212,20.007562336107597 +2019-05-19 11:30:00,25.0,0.118650794,20.007661244679188 +2019-05-19 11:45:00,25.0,0.119444444,20.00776079537694 +2019-05-19 12:00:00,25.0,0.123280423,20.007860988188046 +2019-05-19 12:15:00,25.0,0.12989418,20.007961823099624 +2019-05-19 12:30:00,25.0,0.130820106,20.0080633000987 +2019-05-19 12:45:00,25.0,0.137698413,20.00816541917223 +2019-05-19 13:00:00,25.0,0.148544974,20.008268180307066 +2019-05-19 13:15:00,25.0,0.15489418,20.00837158349 +2019-05-19 13:30:00,25.0,0.168783069,20.00847562870773 +2019-05-19 13:45:00,25.0,0.178306878,20.008580315946872 +2019-05-19 14:00:00,25.0,0.178703704,20.008685645193964 +2019-05-19 14:15:00,25.0,0.172354497,20.008791616435452 +2019-05-19 14:30:00,25.0,0.172354497,20.008898229657714 +2019-05-19 14:45:00,25.0,0.172486772,20.00900548484703 +2019-05-19 15:00:00,25.0,0.17989418,20.009113381989614 +2019-05-19 15:15:00,25.0,0.191269841,20.009221921071575 +2019-05-19 15:30:00,25.0,0.194047619,20.009331102078963 +2019-05-19 15:45:00,25.0,0.200661376,20.00944092499773 +2019-05-19 16:00:00,25.0,0.207936508,20.00955138981375 +2019-05-19 16:15:00,25.0,0.216798942,20.009662496512817 +2019-05-19 16:30:00,25.0,0.222883598,20.009774245080642 +2019-05-19 16:45:00,25.0,0.228571429,20.009886635502845 +2019-05-19 17:00:00,25.0,0.239417989,20.009999667764976 +2019-05-19 17:15:00,25.0,0.252777778,20.010113341852495 +2019-05-19 17:30:00,25.0,0.258730159,20.010227657750782 +2019-05-19 17:45:00,25.0,0.257539683,20.01034261544513 +2019-05-19 18:00:00,25.0,0.265873016,20.010458214920757 +2019-05-19 18:15:00,25.0,0.287698413,20.01057445616279 +2019-05-19 18:30:00,25.0,0.298544974,20.01069133915628 +2019-05-19 18:45:00,25.0,0.292724868,20.010808863886194 +2019-05-19 19:00:00,25.0,0.276587302,20.010927030337413 +2019-05-19 19:15:00,25.0,0.253703704,20.011045838494745 +2019-05-19 19:30:00,25.0,0.23994709,20.0111652883429 +2019-05-19 19:45:00,25.0,0.227248677,20.011285379866518 +2019-05-19 20:00:00,25.0,0.226058201,20.011406113050153 +2019-05-19 20:15:00,25.0,0.223677249,20.011527487878276 +2019-05-19 20:30:00,25.0,0.225793651,20.011649504335274 +2019-05-19 20:45:00,25.0,0.228306878,20.011772162405457 +2019-05-19 21:00:00,25.0,0.248148148,20.011895462073042 +2019-05-19 21:15:00,25.0,0.266269841,20.01201940332217 +2019-05-19 21:30:00,25.0,0.261111111,20.01214398613691 +2019-05-19 21:45:00,25.0,0.232671958,20.012269210501223 +2019-05-19 22:00:00,25.0,0.214417989,20.012395076399017 +2019-05-19 22:15:00,25.0,0.204365079,20.01252158381409 +2019-05-19 22:30:00,25.0,0.183994709,20.012648732730177 +2019-05-19 22:45:00,25.0,0.168121693,20.012776523130924 +2019-05-19 23:00:00,25.0,0.15952381,20.012904954999897 +2019-05-19 23:15:00,25.0,0.151587302,20.01303402832057 +2019-05-19 23:30:00,25.0,0.133862434,20.01316374307634 +2019-05-19 23:45:00,25.0,0.128835979,20.01329409925053 +2019-05-20 00:00:00,25.0,0.132142857,20.01342509682637 +2019-05-20 00:15:00,25.0,0.130026455,20.013556735787013 +2019-05-20 00:30:00,25.0,0.112830688,20.01368901611552 +2019-05-20 00:45:00,25.0,0.119708995,20.013821937794887 +2019-05-20 01:00:00,25.0,0.125661376,20.013955500808013 +2019-05-20 01:15:00,25.0,0.130687831,20.014089705137717 +2019-05-20 01:30:00,25.0,0.153968254,20.014224550766738 +2019-05-20 01:45:00,25.0,0.156481481,20.014360037677733 +2019-05-20 02:00:00,25.0,0.167328042,20.014496165853274 +2019-05-20 02:15:00,25.0,0.175925926,20.014632935275856 +2019-05-20 02:30:00,25.0,0.185846561,20.01477034592788 +2019-05-20 02:45:00,25.0,0.188359788,20.014908397791675 +2019-05-20 03:00:00,25.0,0.191269841,20.01504709084949 +2019-05-20 03:15:00,25.0,0.186111111,20.015186425083478 +2019-05-20 03:30:00,25.0,0.186375661,20.015326400475722 +2019-05-20 03:45:00,25.0,0.180291005,20.015467017008216 +2019-05-20 04:00:00,25.0,0.167592593,20.015608274662874 +2019-05-20 04:15:00,25.0,0.171428571,20.01575017342153 +2019-05-20 04:30:00,25.0,0.178042328,20.01589271326593 +2019-05-20 04:45:00,25.0,0.174074074,20.01603589417774 +2019-05-20 05:00:00,25.0,0.162962963,20.016179716138545 +2019-05-20 05:15:00,25.0,0.14973545,20.016324179129846 +2019-05-20 05:30:00,25.0,0.148544974,20.016469283133056 +2019-05-20 05:45:00,25.0,0.141137566,20.01661502812952 +2019-05-20 06:00:00,25.0,0.131216931,20.016761414100493 +2019-05-20 06:15:00,25.0,0.115873016,20.016908441027137 +2019-05-20 06:30:00,25.0,0.097883598,20.01705610889055 +2019-05-20 06:45:00,25.0,0.09047619,20.01720441767173 +2019-05-20 07:00:00,25.0,0.073280423,20.01735336735161 +2019-05-20 07:15:00,25.0,0.061507937,20.017502957911027 +2019-05-20 07:30:00,25.0,0.057804233,20.01765318933074 +2019-05-20 07:45:00,25.0,0.04973545,20.01780406159143 +2019-05-20 08:00:00,25.0,0.033465608,20.017955574673685 +2019-05-20 08:15:00,25.0,0.028703704,20.01810772855802 +2019-05-20 08:30:00,25.0,0.028174603,20.018260523224868 +2019-05-20 08:45:00,25.0,0.028306878,20.018413958654573 +2019-05-20 09:00:00,25.0,0.033333333,20.0185680348274 +2019-05-20 09:15:00,25.0,0.036375661,20.01872275172353 +2019-05-20 09:30:00,25.0,0.036375661,20.018878109323065 +2019-05-20 09:45:00,25.0,0.040079365,20.019034107606025 +2019-05-20 10:00:00,25.0,0.038359788,20.019190746552336 +2019-05-20 10:15:00,25.0,0.038624339,20.019348026141863 +2019-05-20 10:30:00,25.0,0.039021164,20.019505946354364 +2019-05-20 10:45:00,25.0,0.039021164,20.019664507169537 +2019-05-20 11:00:00,25.0,0.041666667,20.01982370856698 +2019-05-20 11:15:00,25.0,0.047222222,20.019983550526227 +2019-05-20 11:30:00,25.0,0.061111111,20.020144033026707 +2019-05-20 11:45:00,25.0,0.063359788,20.020305156047783 +2019-05-20 12:00:00,25.0,0.05952381,20.020466919568733 +2019-05-20 12:15:00,25.0,0.056878307,20.020629323568745 +2019-05-20 12:30:00,25.0,0.04537037,20.020792368026935 +2019-05-20 12:45:00,25.0,0.035714286,20.02095605292233 +2019-05-20 13:00:00,25.0,0.032804233,20.02112037823388 +2019-05-20 13:15:00,25.0,0.032407407,20.021285343940445 +2019-05-20 13:30:00,25.0,0.033994709,20.021450950020807 +2019-05-20 13:45:00,25.0,0.031349206,20.021617196453665 +2019-05-20 14:00:00,25.0,0.023941799,20.02178408321764 +2019-05-20 14:15:00,25.0,0.025529101,20.02195161029126 +2019-05-20 14:30:00,25.0,0.032804233,20.022119777652986 +2019-05-20 14:45:00,25.0,0.037301587,20.02228858528118 +2019-05-20 15:00:00,25.0,0.04457672,20.022458033154134 +2019-05-20 15:15:00,25.0,0.053306878,20.02262812125005 +2019-05-20 15:30:00,25.0,0.062169312,20.022798849547055 +2019-05-20 15:45:00,25.0,0.073677249,20.022970218023186 +2019-05-20 16:00:00,25.0,0.080555556,20.023142226656404 +2019-05-20 16:15:00,25.0,0.086640212,20.02331487542458 +2019-05-20 16:30:00,25.0,0.100529101,20.023488164305512 +2019-05-20 16:45:00,25.0,0.123941799,20.02366209327691 +2019-05-20 17:00:00,25.0,0.140873016,20.023836662316405 +2019-05-20 17:15:00,25.0,0.152910053,20.02401187140154 +2019-05-20 17:30:00,25.0,0.165079365,20.02418772050978 +2019-05-20 17:45:00,25.0,0.180820106,20.02436420961851 +2019-05-20 18:00:00,25.0,0.193121693,20.024541338705024 +2019-05-20 18:15:00,25.0,0.202248677,20.024719107746545 +2019-05-20 18:30:00,25.0,0.207142857,20.024897516720202 +2019-05-20 18:45:00,25.0,0.202910053,20.025076565603054 +2019-05-20 19:00:00,25.0,0.197486772,20.025256254372067 +2019-05-20 19:15:00,25.0,0.195899471,20.02543658300413 +2019-05-20 19:30:00,25.0,0.195634921,20.02561755147605 +2019-05-20 19:45:00,25.0,0.201719577,20.025799159764546 +2019-05-20 20:00:00,25.0,0.214417989,20.025981407846267 +2019-05-20 20:15:00,25.0,0.224338624,20.026164295697765 +2019-05-20 20:30:00,25.0,0.239814815,20.026347823295517 +2019-05-20 20:45:00,25.0,0.24510582,20.026531990615922 +2019-05-20 21:00:00,25.0,0.234391534,20.026716797635288 +2019-05-20 21:15:00,25.0,0.223148148,20.026902244329843 +2019-05-20 21:30:00,25.0,0.221693122,20.027088330675742 +2019-05-20 21:45:00,25.0,0.231878307,20.027275056649042 +2019-05-20 22:00:00,25.0,0.24047619,20.02746242222573 +2019-05-20 22:15:00,25.0,0.255291005,20.027650427381708 +2019-05-20 22:30:00,25.0,0.269047619,20.02783907209279 +2019-05-20 22:45:00,25.0,0.269444444,20.028028356334715 +2019-05-20 23:00:00,25.0,0.271428571,20.028218280083134 +2019-05-20 23:15:00,25.0,0.27010582,20.02840884331362 +2019-05-20 23:30:00,25.0,0.271296296,20.028600046001667 +2019-05-20 23:45:00,25.0,0.270767196,20.028791888122676 +2019-05-21 00:00:00,25.0,0.26494709,20.028984369651972 +2019-05-21 00:15:00,25.0,0.251322751,20.029177490564802 +2019-05-21 00:30:00,25.0,0.241534392,20.029371250836324 +2019-05-21 00:45:00,25.0,0.242328042,20.02956565044161 +2019-05-21 01:00:00,25.0,0.250396825,20.02976068935567 +2019-05-21 01:15:00,25.0,0.240873016,20.029956367553403 +2019-05-21 01:30:00,25.0,0.229232804,20.03015268500965 +2019-05-21 01:45:00,25.0,0.226984127,20.030349641699157 +2019-05-21 02:00:00,25.0,0.220634921,20.03054723759659 +2019-05-21 02:15:00,25.0,0.212037037,20.030745472676536 +2019-05-21 02:30:00,25.0,0.213227513,20.030944346913493 +2019-05-21 02:45:00,25.0,0.201719577,20.031143860281887 +2019-05-21 03:00:00,25.0,0.196693122,20.031344012756055 +2019-05-21 03:15:00,25.0,0.19457672,20.03154480431025 +2019-05-21 03:30:00,25.0,0.19484127,20.031746234918646 +2019-05-21 03:45:00,25.0,0.195899471,20.031948304555335 +2019-05-21 04:00:00,25.0,0.194444444,20.03215101319433 +2019-05-21 04:15:00,25.0,0.191534392,20.032354360809556 +2019-05-21 04:30:00,25.0,0.212169312,20.032558347374856 +2019-05-21 04:45:00,25.0,0.229232804,20.032762972863996 +2019-05-21 05:00:00,25.0,0.252645503,20.03296823725065 +2019-05-21 05:15:00,25.0,0.274074074,20.033174140508425 +2019-05-21 05:30:00,25.0,0.288624339,20.033380682610833 +2019-05-21 05:45:00,25.0,0.294444444,20.03358786353131 +2019-05-21 06:00:00,25.0,0.307671958,20.033795683243202 +2019-05-21 06:15:00,25.0,0.323280423,20.034004141719784 +2019-05-21 06:30:00,25.0,0.324603175,20.034213238934242 +2019-05-21 06:45:00,25.0,0.319179894,20.034422974859687 +2019-05-21 07:00:00,25.0,0.317195767,20.034633349469132 +2019-05-21 07:15:00,25.0,0.31005291,20.034844362735527 +2019-05-21 07:30:00,25.0,0.317460317,20.035056014631728 +2019-05-21 07:45:00,25.0,0.31547619,20.035268305130508 +2019-05-21 08:00:00,25.0,0.308465608,20.035481234204568 +2019-05-21 08:15:00,25.0,0.30462963,20.035694801826516 +2019-05-21 08:30:00,25.0,0.29457672,20.035909007968883 +2019-05-21 08:45:00,25.0,0.283333333,20.03612385260412 +2019-05-21 09:00:00,25.0,0.297089947,20.036339335704593 +2019-05-21 09:15:00,25.0,0.297486772,20.03655545724258 +2019-05-21 09:30:00,25.0,0.285978836,20.036772217190293 +2019-05-21 09:45:00,25.0,0.285582011,20.036989615519843 +2019-05-21 10:00:00,25.0,0.283465608,20.03720765220327 +2019-05-21 10:15:00,25.0,0.287169312,20.037426327212536 +2019-05-21 10:30:00,25.0,0.308068783,20.037645640519507 +2019-05-21 10:45:00,25.0,0.331349206,20.037865592095976 +2019-05-21 11:00:00,25.0,0.340608466,20.038086181913652 +2019-05-21 11:15:00,25.0,0.339814815,20.038307409944164 +2019-05-21 11:30:00,25.0,0.350132275,20.038529276159053 +2019-05-21 11:45:00,25.0,0.360978836,20.038751780529793 +2019-05-21 12:00:00,25.0,0.362566138,20.03897492302775 +2019-05-21 12:15:00,25.0,0.355820106,20.039198703624237 +2019-05-21 12:30:00,25.0,0.362830688,20.039423122290458 +2019-05-21 12:45:00,25.0,0.374603175,20.039648178997556 +2019-05-21 13:00:00,25.0,0.382010582,20.039873873716584 +2019-05-21 13:15:00,25.0,0.392989418,20.040100206418508 +2019-05-21 13:30:00,25.0,0.398412698,20.040327177074218 +2019-05-21 13:45:00,25.0,0.40515873,20.04055478565452 +2019-05-21 14:00:00,25.0,0.410714286,20.040783032130143 +2019-05-21 14:15:00,25.0,0.407407407,20.041011916471724 +2019-05-21 14:30:00,25.0,0.412962963,20.041241438649827 +2019-05-21 14:45:00,25.0,0.411772487,20.041471598634928 +2019-05-21 15:00:00,25.0,0.413756614,20.041702396397426 +2019-05-21 15:15:00,25.0,0.432275132,20.04193383190763 +2019-05-21 15:30:00,25.0,0.442460317,20.04216590513578 +2019-05-21 15:45:00,25.0,0.437698413,20.04239861605202 +2019-05-21 16:00:00,25.0,0.426058201,20.042631964626416 +2019-05-21 16:15:00,25.0,0.417857143,20.04286595082896 +2019-05-21 16:30:00,25.0,0.417724868,20.043100574629555 +2019-05-21 16:45:00,25.0,0.412433862,20.043335835998025 +2019-05-21 17:00:00,25.0,0.413227513,20.043571734904106 +2019-05-21 17:15:00,25.0,0.404365079,20.043808271317456 +2019-05-21 17:30:00,25.0,0.407671958,20.044045445207654 +2019-05-21 17:45:00,25.0,0.420502646,20.044283256544194 +2019-05-21 18:00:00,25.0,0.43015873,20.044521705296486 +2019-05-21 18:15:00,25.0,0.450793651,20.04476079143386 +2019-05-21 18:30:00,25.0,0.471428571,20.04500051492557 +2019-05-21 18:45:00,25.0,0.488624339,20.045240875740774 +2019-05-21 19:00:00,25.0,0.489021164,20.04548187384856 +2019-05-21 19:15:00,25.0,0.507671958,20.04572350921793 +2019-05-21 19:30:00,25.0,0.52037037,20.045965781817806 +2019-05-21 19:45:00,25.0,0.535449735,20.046208691617025 +2019-05-21 20:00:00,25.0,0.53505291,20.04645223858434 +2019-05-21 20:15:00,25.0,0.539417989,20.04669642268843 +2019-05-21 20:30:00,25.0,0.546031746,20.04694124389789 +2019-05-21 20:45:00,25.0,0.547222222,20.04718670218122 +2019-05-21 21:00:00,25.0,0.552248677,20.04743279750686 +2019-05-21 21:15:00,25.0,0.548148148,20.04767952984315 +2019-05-21 21:30:00,25.0,0.552910053,20.047926899158362 +2019-05-21 21:45:00,25.0,0.551719577,20.048174905420666 +2019-05-21 22:00:00,25.0,0.549603175,20.048423548598173 +2019-05-21 22:15:00,25.0,0.541534392,20.0486728286589 +2019-05-21 22:30:00,25.0,0.537433862,20.048922745570785 +2019-05-21 22:45:00,25.0,0.532142857,20.04917329930168 +2019-05-21 23:00:00,25.0,0.528703704,20.04942448981936 +2019-05-21 23:15:00,25.0,0.519179894,20.04967631709151 +2019-05-21 23:30:00,25.0,0.508068783,20.04992878108575 +2019-05-21 23:45:00,25.0,0.50952381,20.050181881769603 +2019-05-22 00:00:00,25.0,0.512962963,20.050435619110516 +2019-05-22 00:15:00,25.0,0.499470899,20.050689993075846 +2019-05-22 00:30:00,25.0,0.496031746,20.050945003632883 +2019-05-22 00:45:00,25.0,0.503835979,20.051200650748825 +2019-05-22 01:00:00,25.0,0.504100529,20.051456934390785 +2019-05-22 01:15:00,25.0,0.506746032,20.051713854525808 +2019-05-22 01:30:00,25.0,0.511772487,20.05197141112084 +2019-05-22 01:45:00,25.0,0.503968254,20.052229604142756 +2019-05-22 02:00:00,25.0,0.526190476,20.05248843355835 +2019-05-22 02:15:00,25.0,0.524206349,20.052747899334328 +2019-05-22 02:30:00,25.0,0.528306878,20.053008001437316 +2019-05-22 02:45:00,25.0,0.527645503,20.05326873983386 +2019-05-22 03:00:00,25.0,0.528306878,20.053530114490428 +2019-05-22 03:15:00,25.0,0.535449735,20.05379212537339 +2019-05-22 03:30:00,25.0,0.544179894,20.054054772449057 +2019-05-22 03:45:00,25.0,0.537962963,20.05431805568364 +2019-05-22 04:00:00,25.0,0.548148148,20.054581975043277 +2019-05-22 04:15:00,25.0,0.536904762,20.054846530494025 +2019-05-22 04:30:00,25.0,0.529497354,20.055111722001854 +2019-05-22 04:45:00,25.0,0.518253968,20.05537754953265 +2019-05-22 05:00:00,25.0,0.511904762,20.055644013052227 +2019-05-22 05:15:00,25.0,0.506084656,20.05591111252631 +2019-05-22 05:30:00,25.0,0.495767196,20.056178847920545 +2019-05-22 05:45:00,25.0,0.502645503,20.056447219200493 +2019-05-22 06:00:00,25.0,0.497883598,20.05671622633164 +2019-05-22 06:15:00,25.0,0.489021164,20.05698586927938 +2019-05-22 06:30:00,25.0,0.469047619,20.05725614800904 +2019-05-22 06:45:00,25.0,0.450793651,20.057527062485843 +2019-05-22 07:00:00,25.0,0.437566138,20.05779861267495 +2019-05-22 07:15:00,25.0,0.418386243,20.058070798541436 +2019-05-22 07:30:00,25.0,0.405555556,20.05834362005029 +2019-05-22 07:45:00,25.0,0.388095238,20.05861707716642 +2019-05-22 08:00:00,25.0,0.373412698,20.058891169854654 +2019-05-22 08:15:00,25.0,0.380026455,20.05916589807974 +2019-05-22 08:30:00,25.0,0.377116402,20.059441261806334 +2019-05-22 08:45:00,25.0,0.349603175,20.05971726099903 +2019-05-22 09:00:00,25.0,0.34457672,20.059993895622316 +2019-05-22 09:15:00,25.0,0.34047619,20.060271165640618 +2019-05-22 09:30:00,25.0,0.323280423,20.060549071018272 +2019-05-22 09:45:00,25.0,0.299867725,20.06082761171953 +2019-05-22 10:00:00,25.0,0.290608466,20.061106787708574 +2019-05-22 10:15:00,25.0,0.288624339,20.061386598949486 +2019-05-22 10:30:00,25.0,0.266798942,20.06166704540628 +2019-05-22 10:45:00,25.0,0.24973545,20.061948127042882 +2019-05-22 11:00:00,25.0,0.232804233,20.062229843823143 +2019-05-22 11:15:00,25.0,0.225793651,20.062512195710823 +2019-05-22 11:30:00,25.0,0.228042328,20.06279518266961 +2019-05-22 11:45:00,25.0,0.230820106,20.063078804663107 +2019-05-22 12:00:00,25.0,0.228835979,20.063363061654826 +2019-05-22 12:15:00,25.0,0.214814815,20.063647953608207 +2019-05-22 12:30:00,25.0,0.204761905,20.06393348048661 +2019-05-22 12:45:00,25.0,0.194047619,20.064219642253313 +2019-05-22 13:00:00,25.0,0.189814815,20.064506438871504 +2019-05-22 13:15:00,25.0,0.191666667,20.064793870304293 +2019-05-22 13:30:00,25.0,0.192724868,20.065081936514716 +2019-05-22 13:45:00,25.0,0.197354497,20.065370637465715 +2019-05-22 14:00:00,25.0,0.19021164,20.06565997312016 +2019-05-22 14:15:00,25.0,0.188359788,20.065949943440835 +2019-05-22 14:30:00,25.0,0.185582011,20.066240548390446 +2019-05-22 14:45:00,25.0,0.190343915,20.06653178793161 +2019-05-22 15:00:00,25.0,0.199206349,20.06682366202687 +2019-05-22 15:15:00,25.0,0.197751323,20.067116170638684 +2019-05-22 15:30:00,25.0,0.190873016,20.067409313729428 +2019-05-22 15:45:00,25.0,0.182804233,20.0677030912614 +2019-05-22 16:00:00,25.0,0.182804233,20.067997503196814 +2019-05-22 16:15:00,25.0,0.184391534,20.068292549497794 +2019-05-22 16:30:00,25.0,0.180952381,20.0685882301264 +2019-05-22 16:45:00,25.0,0.186640212,20.068884545044597 +2019-05-22 17:00:00,25.0,0.195767196,20.069181494214273 +2019-05-22 17:15:00,25.0,0.203306878,20.069479077597233 +2019-05-22 17:30:00,25.0,0.20515873,20.0697772951552 +2019-05-22 17:45:00,25.0,0.210846561,20.070076146849818 +2019-05-22 18:00:00,25.0,0.217063492,20.07037563264265 +2019-05-22 18:15:00,25.0,0.224867725,20.07067575249517 +2019-05-22 18:30:00,25.0,0.218783069,20.070976506368783 +2019-05-22 18:45:00,25.0,0.217592593,20.0712778942248 +2019-05-22 19:00:00,25.0,0.216931217,20.071579916024458 +2019-05-22 19:15:00,25.0,0.21494709,20.071882571728906 +2019-05-22 19:30:00,25.0,0.205291005,20.072185861299225 +2019-05-22 19:45:00,25.0,0.207804233,20.072489784696394 +2019-05-22 20:00:00,25.0,0.218650794,20.072794341881334 +2019-05-22 20:15:00,25.0,0.215873016,20.073099532814858 +2019-05-22 20:30:00,25.0,0.21521164,20.073405357457723 +2019-05-22 20:45:00,25.0,0.206613757,20.07371181577059 +2019-05-22 21:00:00,25.0,0.201587302,20.074018907714038 +2019-05-22 21:15:00,25.0,0.183068783,20.074326633248575 +2019-05-22 21:30:00,25.0,0.178571429,20.074634992334612 +2019-05-22 21:45:00,25.0,0.176719577,20.074943984932496 +2019-05-22 22:00:00,25.0,0.175661376,20.075253611002474 +2019-05-22 22:15:00,25.0,0.17473545,20.07556387050473 +2019-05-22 22:30:00,25.0,0.176058201,20.075874763399355 +2019-05-22 22:45:00,25.0,0.178703704,20.07618628964636 +2019-05-22 23:00:00,25.0,0.185846561,20.076498449205673 +2019-05-22 23:15:00,25.0,0.191931217,20.07681124203715 +2019-05-22 23:30:00,25.0,0.203042328,20.077124668100552 +2019-05-22 23:45:00,25.0,0.210714286,20.07743872735557 +2019-05-23 00:00:00,25.0,0.223941799,20.077753419761812 +2019-05-23 00:15:00,25.0,0.228968254,20.07806874527879 +2019-05-23 00:30:00,25.0,0.233068783,20.07838470386596 +2019-05-23 00:45:00,25.0,0.233465608,20.078701295482674 +2019-05-23 01:00:00,25.0,0.243915344,20.079018520088212 +2019-05-23 01:15:00,25.0,0.261772487,20.079336377641773 +2019-05-23 01:30:00,25.0,0.272751323,20.079654868102477 +2019-05-23 01:45:00,25.0,0.290343915,20.079973991429352 +2019-05-23 02:00:00,25.0,0.308730159,20.080293747581358 +2019-05-23 02:15:00,25.0,0.314285714,20.08061413651736 +2019-05-23 02:30:00,25.0,0.321825397,20.08093515819616 +2019-05-23 02:45:00,25.0,0.331349206,20.081256812576456 +2019-05-23 03:00:00,25.0,0.325396825,20.08157909961688 +2019-05-23 03:15:00,25.0,0.333333333,20.081902019275983 +2019-05-23 03:30:00,25.0,0.348412698,20.082225571512225 +2019-05-23 03:45:00,25.0,0.360582011,20.082549756283992 +2019-05-23 04:00:00,25.0,0.375132275,20.08287457354959 +2019-05-23 04:15:00,25.0,0.384920635,20.08320002326723 +2019-05-23 04:30:00,25.0,0.396031746,20.083526105395062 +2019-05-23 04:45:00,25.0,0.416798942,20.083852819891142 +2019-05-23 05:00:00,25.0,0.438492063,20.084180166713445 +2019-05-23 05:15:00,25.0,0.458201058,20.084508145819868 +2019-05-23 05:30:00,25.0,0.473280423,20.084836757168226 +2019-05-23 05:45:00,25.0,0.488227513,20.085166000716253 +2019-05-23 06:00:00,25.0,0.49973545,20.0854958764216 +2019-05-23 06:15:00,25.0,0.51468254,20.085826384241837 +2019-05-23 06:30:00,25.0,0.518783069,20.086157524134453 +2019-05-23 06:45:00,25.0,0.517724868,20.08648929605686 +2019-05-23 07:00:00,25.0,0.519444444,20.08682169996638 +2019-05-23 07:15:00,25.0,0.508597884,20.087154735820256 +2019-05-23 07:30:00,25.0,0.505952381,20.087488403575662 +2019-05-23 07:45:00,25.0,0.509259259,20.087822703189673 +2019-05-23 08:00:00,25.0,0.516137566,20.088157634619293 +2019-05-23 08:15:00,25.0,0.513624339,20.088493197821442 +2019-05-23 08:30:00,25.0,0.506613757,20.08882939275296 +2019-05-23 08:45:00,25.0,0.493783069,20.089166219370604 +2019-05-23 09:00:00,25.0,0.481481481,20.08950367763105 +2019-05-23 09:15:00,25.0,0.467063492,20.089841767490896 +2019-05-23 09:30:00,25.0,0.453174603,20.09018048890665 +2019-05-23 09:45:00,25.0,0.445634921,20.09051984183475 +2019-05-23 10:00:00,25.0,0.442195767,20.09085982623155 +2019-05-23 10:15:00,25.0,0.428703704,20.091200442053314 +2019-05-23 10:30:00,25.0,0.411375661,20.091541689256236 +2019-05-23 10:45:00,25.0,0.38478836,20.09188356779642 +2019-05-23 11:00:00,25.0,0.372089947,20.092226077629896 +2019-05-23 11:15:00,25.0,0.362037037,20.092569218712608 +2019-05-23 11:30:00,25.0,0.354100529,20.09291299100042 +2019-05-23 11:45:00,25.0,0.346560847,20.093257394449118 +2019-05-23 12:00:00,25.0,0.33994709,20.093602429014403 +2019-05-23 12:15:00,25.0,0.31468254,20.093948094651893 +2019-05-23 12:30:00,25.0,0.282539683,20.09429439131713 +2019-05-23 12:45:00,25.0,0.259259259,20.094641318965575 +2019-05-23 13:00:00,25.0,0.243121693,20.094988877552602 +2019-05-23 13:15:00,25.0,0.229761905,20.095337067033505 +2019-05-23 13:30:00,25.0,0.213624339,20.095685887363505 +2019-05-23 13:45:00,25.0,0.207010582,20.09603533849773 +2019-05-23 14:00:00,25.0,0.202116402,20.096385420391236 +2019-05-23 14:15:00,25.0,0.20026455,20.096736132999 +2019-05-23 14:30:00,25.0,0.202380952,20.0970874762759 +2019-05-23 14:45:00,25.0,0.198148148,20.09743945017675 +2019-05-23 15:00:00,25.0,0.199867725,20.09779205465629 +2019-05-23 15:15:00,25.0,0.193518519,20.09814528966915 +2019-05-23 15:30:00,25.0,0.179497354,20.098499155169907 +2019-05-23 15:45:00,25.0,0.172751323,20.098853651113043 +2019-05-23 16:00:00,25.0,0.177116402,20.09920877745296 +2019-05-23 16:15:00,25.0,0.176984127,20.099564534143983 +2019-05-23 16:30:00,25.0,0.171296296,20.099920921140356 +2019-05-23 16:45:00,25.0,0.166666667,20.100277938396236 +2019-05-23 17:00:00,25.0,0.164550265,20.1006355858657 +2019-05-23 17:15:00,25.0,0.16494709,20.100993863502755 +2019-05-23 17:30:00,25.0,0.164285714,20.10135277126131 +2019-05-23 17:45:00,25.0,0.162433862,20.101712309095205 +2019-05-23 18:00:00,25.0,0.165079365,20.1020724769582 +2019-05-23 18:15:00,25.0,0.169973545,20.10243327480396 +2019-05-23 18:30:00,25.0,0.168915344,20.102794702586085 +2019-05-23 18:45:00,25.0,0.155291005,20.103156760258088 +2019-05-23 19:00:00,25.0,0.138359788,20.103519447773394 +2019-05-23 19:15:00,25.0,0.126984127,20.10388276508536 +2019-05-23 19:30:00,25.0,0.119047619,20.10424671214725 +2019-05-23 19:45:00,25.0,0.117857143,20.104611288912256 +2019-05-23 20:00:00,25.0,0.114285714,20.104976495333485 +2019-05-23 20:15:00,25.0,0.108333333,20.10534233136396 +2019-05-23 20:30:00,25.0,0.101984127,20.10570879695663 +2019-05-23 20:45:00,25.0,0.09510582,20.10607589206436 +2019-05-23 21:00:00,25.0,0.086772487,20.10644361663993 +2019-05-23 21:15:00,25.0,0.081746032,20.106811970636045 +2019-05-23 21:30:00,25.0,0.082804233,20.107180954005322 +2019-05-23 21:45:00,25.0,0.083068783,20.107550566700304 +2019-05-23 22:00:00,25.0,0.080026455,20.107920808673455 +2019-05-23 22:15:00,25.0,0.080291005,20.108291679877148 +2019-05-23 22:30:00,25.0,0.085582011,20.108663180263687 +2019-05-23 22:45:00,25.0,0.094179894,20.109035309785277 +2019-05-23 23:00:00,25.0,0.10542328,20.109408068394067 +2019-05-23 23:15:00,25.0,0.118650794,20.109781456042104 +2019-05-23 23:30:00,25.0,0.130555556,20.110155472681363 +2019-05-23 23:45:00,25.0,0.143253968,20.110530118263743 +2019-05-24 00:00:00,25.0,0.159656085,20.110905392741046 +2019-05-24 00:15:00,25.0,0.169312169,20.111281296065012 +2019-05-24 00:30:00,25.0,0.176984127,20.111657828187287 +2019-05-24 00:45:00,25.0,0.191402116,20.112034989059442 +2019-05-24 01:00:00,25.0,0.209126984,20.112412778632965 +2019-05-24 01:15:00,25.0,0.228439153,20.112791196859266 +2019-05-24 01:30:00,25.0,0.253703704,20.11317024368967 +2019-05-24 01:45:00,25.0,0.273809524,20.113549919075425 +2019-05-24 02:00:00,25.0,0.286507937,20.113930222967692 +2019-05-24 02:15:00,25.0,0.298148148,20.11431115531756 +2019-05-24 02:30:00,25.0,0.314021164,20.11469271607603 +2019-05-24 02:45:00,25.0,0.327513228,20.115074905194025 +2019-05-24 03:00:00,25.0,0.341005291,20.115457722622388 +2019-05-24 03:15:00,25.0,0.356613757,20.115841168311878 +2019-05-24 03:30:00,25.0,0.360185185,20.11622524221318 +2019-05-24 03:45:00,25.0,0.377248677,20.116609944276888 +2019-05-24 04:00:00,25.0,0.38994709,20.116995274453522 +2019-05-24 04:15:00,25.0,0.393518519,20.117381232693525 +2019-05-24 04:30:00,25.0,0.401455026,20.11776781894725 +2019-05-24 04:45:00,25.0,0.402116402,20.11815503316497 +2019-05-24 05:00:00,25.0,0.396164021,20.11854287529689 +2019-05-24 05:15:00,25.0,0.389153439,20.118931345293113 +2019-05-24 05:30:00,25.0,0.37989418,20.119320443103682 +2019-05-24 05:45:00,25.0,0.377777778,20.11971016867855 +2019-05-24 06:00:00,25.0,0.369179894,20.120100521967583 +2019-05-24 06:15:00,25.0,0.362037037,20.12049150292058 +2019-05-24 06:30:00,25.0,0.336507937,20.12088311148725 +2019-05-24 06:45:00,25.0,0.313095238,20.12127534761722 +2019-05-24 07:00:00,25.0,0.299470899,20.121668211260044 +2019-05-24 07:15:00,25.0,0.29047619,20.122061702365187 +2019-05-24 07:30:00,25.0,0.264285714,20.122455820882042 +2019-05-24 07:45:00,25.0,0.257275132,20.12285056675991 +2019-05-24 08:00:00,25.0,0.247751323,20.123245939948028 +2019-05-24 08:15:00,25.0,0.22526455,20.12364194039553 +2019-05-24 08:30:00,25.0,0.214814815,20.124038568051493 +2019-05-24 08:45:00,25.0,0.206084656,20.124435822864893 +2019-05-24 09:00:00,25.0,0.198412698,20.12483370478464 +2019-05-24 09:15:00,25.0,0.201984127,20.125232213759553 +2019-05-24 09:30:00,25.0,0.212962963,20.125631349738377 +2019-05-24 09:45:00,25.0,0.210714286,20.126031112669775 +2019-05-24 10:00:00,25.0,0.20515873,20.126431502502328 +2019-05-24 10:15:00,25.0,0.205687831,20.12683251918454 +2019-05-24 10:30:00,25.0,0.205952381,20.12723416266482 +2019-05-24 10:45:00,25.0,0.21005291,20.12763643289152 +2019-05-24 11:00:00,25.0,0.216534392,20.128039329812896 +2019-05-24 11:15:00,25.0,0.227116402,20.128442853377123 +2019-05-24 11:30:00,25.0,0.232936508,20.128847003532304 +2019-05-24 11:45:00,25.0,0.234259259,20.12925178022645 +2019-05-24 12:00:00,25.0,0.244973545,20.129657183407502 +2019-05-24 12:15:00,25.0,0.252380952,20.13006321302332 +2019-05-24 12:30:00,25.0,0.265343915,20.130469869021667 +2019-05-24 12:45:00,25.0,0.272486772,20.13087715135025 +2019-05-24 13:00:00,25.0,0.292857143,20.131285059956678 +2019-05-24 13:15:00,25.0,0.314417989,20.131693594788487 +2019-05-24 13:30:00,25.0,0.330555556,20.132102755793127 +2019-05-24 13:45:00,25.0,0.344179894,20.132512542917976 +2019-05-24 14:00:00,25.0,0.336507937,20.13292295611032 +2019-05-24 14:15:00,25.0,0.336507937,20.133333995317376 +2019-05-24 14:30:00,25.0,0.355687831,20.133745660486273 +2019-05-24 14:45:00,25.0,0.35978836,20.13415795156406 +2019-05-24 15:00:00,25.0,0.349338624,20.13457086849771 +2019-05-24 15:15:00,25.0,0.347486772,20.13498441123411 +2019-05-24 15:30:00,25.0,0.348941799,20.135398579720075 +2019-05-24 15:45:00,25.0,0.354232804,20.135813373902327 +2019-05-24 16:00:00,25.0,0.336375661,20.136228793727515 +2019-05-24 16:15:00,25.0,0.344179894,20.13664483914221 +2019-05-24 16:30:00,25.0,0.339285714,20.1370615100929 +2019-05-24 16:45:00,25.0,0.341269841,20.137478806525987 +2019-05-24 17:00:00,25.0,0.366534392,20.1378967283878 +2019-05-24 17:15:00,25.0,0.390343915,20.138315275624585 +2019-05-24 17:30:00,25.0,0.390740741,20.138734448182507 +2019-05-24 17:45:00,25.0,0.396957672,20.139154246007653 +2019-05-24 18:00:00,25.0,0.388492063,20.139574669046024 +2019-05-24 18:15:00,25.0,0.382804233,20.139995717243547 +2019-05-24 18:30:00,25.0,0.388492063,20.140417390546066 +2019-05-24 18:45:00,25.0,0.383862434,20.14083968889934 +2019-05-24 19:00:00,25.0,0.377910053,20.141262612249058 +2019-05-24 19:15:00,25.0,0.361772487,20.14168616054082 +2019-05-24 19:30:00,25.0,0.327248677,20.142110333720147 +2019-05-24 19:45:00,25.0,0.313756614,20.142535131732487 +2019-05-24 20:00:00,25.0,0.307275132,20.142960554523192 +2019-05-24 20:15:00,25.0,0.301984127,20.14338660203755 +2019-05-24 20:30:00,25.0,0.286507937,20.143813274220754 +2019-05-24 20:45:00,25.0,0.278174603,20.144240571017935 +2019-05-24 21:00:00,25.0,0.27962963,20.14466849237413 +2019-05-24 21:15:00,25.0,0.278439153,20.14509703823429 +2019-05-24 21:30:00,25.0,0.286111111,20.14552620854331 +2019-05-24 21:45:00,25.0,0.276587302,20.145956003245974 +2019-05-24 22:00:00,25.0,0.268386243,20.14638642228701 +2019-05-24 22:15:00,25.0,0.267989418,20.14681746561105 +2019-05-24 22:30:00,25.0,0.265343915,20.14724913316266 +2019-05-24 22:45:00,25.0,0.252777778,20.147681424886315 +2019-05-24 23:00:00,25.0,0.253571429,20.14811434072641 +2019-05-24 23:15:00,25.0,0.265343915,20.148547880627262 +2019-05-24 23:30:00,25.0,0.263756614,20.14898204453311 +2019-05-24 23:45:00,25.0,0.259126984,20.149416832388113 +2019-05-25 00:00:00,25.0,0.261640212,20.14985224413634 +2019-05-25 00:15:00,25.0,0.265740741,20.1502882797218 +2019-05-25 00:30:00,25.0,0.264417989,20.1507249390884 +2019-05-25 00:45:00,25.0,0.261772487,20.151162222179973 +2019-05-25 01:00:00,25.0,0.255687831,20.151600128940284 +2019-05-25 01:15:00,25.0,0.263359788,20.152038659313003 +2019-05-25 01:30:00,25.0,0.281084656,20.152477813241724 +2019-05-25 01:45:00,25.0,0.291798942,20.152917590669965 +2019-05-25 02:00:00,25.0,0.28478836,20.153357991541164 +2019-05-25 02:15:00,25.0,0.277116402,20.153799015798665 +2019-05-25 02:30:00,25.0,0.263227513,20.15424066338575 +2019-05-25 02:45:00,25.0,0.253703704,20.154682934245614 +2019-05-25 03:00:00,25.0,0.259656085,20.155125828321367 +2019-05-25 03:15:00,25.0,0.269312169,20.15556934555605 +2019-05-25 03:30:00,25.0,0.262037037,20.156013485892608 +2019-05-25 03:45:00,25.0,0.258730159,20.156458249273918 +2019-05-25 04:00:00,25.0,0.244179894,20.156903635642777 +2019-05-25 04:15:00,25.0,0.241269841,20.157349644941892 +2019-05-25 04:30:00,25.0,0.237169312,20.157796277113903 +2019-05-25 04:45:00,25.0,0.250661376,20.15824353210136 +2019-05-25 05:00:00,25.0,0.258201058,20.158691409846732 +2019-05-25 05:15:00,25.0,0.241931217,20.159139910292417 +2019-05-25 05:30:00,25.0,0.23531746,20.159589033380726 +2019-05-25 05:45:00,25.0,0.23015873,20.160038779053895 +2019-05-25 06:00:00,25.0,0.225529101,20.160489147254072 +2019-05-25 06:15:00,25.0,0.228042328,20.160940137923333 +2019-05-25 06:30:00,25.0,0.219047619,20.16139175100367 +2019-05-25 06:45:00,25.0,0.190079365,20.161843986436992 +2019-05-25 07:00:00,25.0,0.183068783,20.162296844165134 +2019-05-25 07:15:00,25.0,0.17989418,20.16275032412985 +2019-05-25 07:30:00,25.0,0.176190476,20.163204426272813 +2019-05-25 07:45:00,25.0,0.179365079,20.163659150535608 +2019-05-25 08:00:00,25.0,0.183862434,20.164114496859757 +2019-05-25 08:15:00,25.0,0.190740741,20.164570465186685 +2019-05-25 08:30:00,25.0,0.193518519,20.16502705545775 +2019-05-25 08:45:00,25.0,0.196560847,20.165484267614218 +2019-05-25 09:00:00,25.0,0.191534392,20.165942101597285 +2019-05-25 09:15:00,25.0,0.19457672,20.166400557348066 +2019-05-25 09:30:00,25.0,0.204761905,20.166859634807587 +2019-05-25 09:45:00,25.0,0.197222222,20.167319333916804 +2019-05-25 10:00:00,25.0,0.185185185,20.16777965461659 +2019-05-25 10:15:00,25.0,0.18505291,20.16824059684774 +2019-05-25 10:30:00,25.0,0.188624339,20.168702160550957 +2019-05-25 10:45:00,25.0,0.186772487,20.169164345666886 +2019-05-25 11:00:00,25.0,0.174074074,20.16962715213607 +2019-05-25 11:15:00,25.0,0.148148148,20.170090579898986 +2019-05-25 11:30:00,25.0,0.155820106,20.170554628896028 +2019-05-25 11:45:00,25.0,0.154761905,20.171019299067503 +2019-05-25 12:00:00,25.0,0.154232804,20.17148459035365 +2019-05-25 12:15:00,25.0,0.154365079,20.17195050269462 +2019-05-25 12:30:00,25.0,0.164153439,20.172417036030488 +2019-05-25 12:45:00,25.0,0.166798942,20.172884190301247 +2019-05-25 13:00:00,25.0,0.161111111,20.17335196544681 +2019-05-25 13:15:00,25.0,0.156878307,20.173820361407007 +2019-05-25 13:30:00,25.0,0.160185185,20.174289378121593 +2019-05-25 13:45:00,25.0,0.172354497,20.17475901553025 +2019-05-25 14:00:00,25.0,0.173941799,20.175229273572562 +2019-05-25 14:15:00,25.0,0.174470899,20.17570015218805 +2019-05-25 14:30:00,25.0,0.187433862,20.176171651316146 +2019-05-25 14:45:00,25.0,0.200661376,20.1766437708962 +2019-05-25 15:00:00,25.0,0.200396825,20.177116510867496 +2019-05-25 15:15:00,25.0,0.193650794,20.177589871169225 +2019-05-25 15:30:00,25.0,0.20489418,20.178063851740497 +2019-05-25 15:45:00,25.0,0.224338624,20.178538452520357 +2019-05-25 16:00:00,25.0,0.229232804,20.179013673447756 +2019-05-25 16:15:00,25.0,0.22962963,20.179489514461572 +2019-05-25 16:30:00,25.0,0.225793651,20.179965975500593 +2019-05-25 16:45:00,25.0,0.225132275,20.18044305650355 +2019-05-25 17:00:00,25.0,0.222089947,20.180920757409066 +2019-05-25 17:15:00,25.0,0.223412698,20.181399078155703 +2019-05-25 17:30:00,25.0,0.230687831,20.181878018681942 +2019-05-25 17:45:00,25.0,0.233730159,20.182357578926176 +2019-05-25 18:00:00,25.0,0.22010582,20.182837758826725 +2019-05-25 18:15:00,25.0,0.21031746,20.183318558321826 +2019-05-25 18:30:00,25.0,0.208994709,20.18379997734964 +2019-05-25 18:45:00,25.0,0.206481481,20.18428201584824 +2019-05-25 19:00:00,25.0,0.204232804,20.18476467375563 +2019-05-25 19:15:00,25.0,0.19537037,20.185247951009732 +2019-05-25 19:30:00,25.0,0.186640212,20.18573184754838 +2019-05-25 19:45:00,25.0,0.20952381,20.186216363309335 +2019-05-25 20:00:00,25.0,0.202645503,20.186701498230278 +2019-05-25 20:15:00,25.0,0.207142857,20.187187252248812 +2019-05-25 20:30:00,25.0,0.212433862,20.187673625302455 +2019-05-25 20:45:00,25.0,0.210978836,20.188160617328652 +2019-05-25 21:00:00,25.0,0.21521164,20.18864822826476 +2019-05-25 21:15:00,25.0,0.21521164,20.18913645804807 +2019-05-25 21:30:00,25.0,0.216269841,20.189625306615774 +2019-05-25 21:45:00,25.0,0.219708995,20.190114773905 +2019-05-25 22:00:00,25.0,0.227777778,20.190604859852797 +2019-05-25 22:15:00,25.0,0.237566138,20.19109556439612 +2019-05-25 22:30:00,25.0,0.244047619,20.191586887471857 +2019-05-25 22:45:00,25.0,0.241402116,20.19207882901682 +2019-05-25 23:00:00,25.0,0.255291005,20.19257138896772 +2019-05-25 23:15:00,25.0,0.258730159,20.193064567261214 +2019-05-25 23:30:00,25.0,0.265343915,20.193558363833866 +2019-05-25 23:45:00,25.0,0.305820106,20.194052778622158 +2019-05-26 00:00:00,25.0,0.337962963,20.1945478115625 +2019-05-26 00:15:00,25.0,0.370899471,20.195043462591222 +2019-05-26 00:30:00,25.0,0.388888889,20.195539731644573 +2019-05-26 00:45:00,25.0,0.406084656,20.196036618658717 +2019-05-26 01:00:00,25.0,0.428835979,20.196534123569748 +2019-05-26 01:15:00,25.0,0.467592593,20.19703224631367 +2019-05-26 01:30:00,25.0,0.510846561,20.19753098682642 +2019-05-26 01:45:00,25.0,0.522354497,20.19803034504384 +2019-05-26 02:00:00,25.0,0.542195767,20.19853032090171 +2019-05-26 02:15:00,25.0,0.558862434,20.199030914335722 +2019-05-26 02:30:00,25.0,0.562169312,20.199532125281483 +2019-05-26 02:45:00,25.0,0.579100529,20.200033953674527 +2019-05-26 03:00:00,25.0,0.595502646,20.20053639945031 +2019-05-26 03:15:00,25.0,0.578571429,20.20103946254421 +2019-05-26 03:30:00,25.0,0.604497354,20.20154314289151 +2019-05-26 03:45:00,25.0,0.630026455,20.202047440427435 +2019-05-26 04:00:00,25.0,0.637962963,20.20255235508712 +2019-05-26 04:15:00,25.0,0.638624339,20.20305788680562 +2019-05-26 04:30:00,25.0,0.636111111,20.203564035517914 +2019-05-26 04:45:00,25.0,0.642063492,20.2040708011589 +2019-05-26 05:00:00,25.0,0.638888889,20.204578183663394 +2019-05-26 05:15:00,25.0,0.642328042,20.205086182966134 +2019-05-26 05:30:00,25.0,0.646825397,20.205594799001787 +2019-05-26 05:45:00,25.0,0.653439153,20.206104031704925 +2019-05-26 06:00:00,25.0,0.653703704,20.206613881010057 +2019-05-26 06:15:00,25.0,0.649603175,20.2071243468516 +2019-05-26 06:30:00,25.0,0.64457672,20.2076354291639 +2019-05-26 06:45:00,25.0,0.637566138,20.208147127881215 +2019-05-26 07:00:00,25.0,0.618915344,20.208659442937737 +2019-05-26 07:15:00,25.0,0.600661376,20.209172374267567 +2019-05-26 07:30:00,25.0,0.597486772,20.209685921804727 +2019-05-26 07:45:00,25.0,0.596164021,20.21020008548317 +2019-05-26 08:00:00,25.0,0.581878307,20.210714865236756 +2019-05-26 08:15:00,25.0,0.571164021,20.21123026099928 +2019-05-26 08:30:00,25.0,0.563227513,20.211746272704445 +2019-05-26 08:45:00,25.0,0.551190476,20.212262900285882 +2019-05-26 09:00:00,25.0,0.543121693,20.212780143677143 +2019-05-26 09:15:00,25.0,0.528174603,20.213298002811698 +2019-05-26 09:30:00,25.0,0.513888889,20.213816477622938 +2019-05-26 09:45:00,25.0,0.500661376,20.214335568044177 +2019-05-26 10:00:00,25.0,0.496693122,20.21485527400865 +2019-05-26 10:15:00,25.0,0.496428571,20.2153755954495 +2019-05-26 10:30:00,25.0,0.490079365,20.21589653229982 +2019-05-26 10:45:00,25.0,0.480291005,20.21641808449259 +2019-05-26 11:00:00,25.0,0.48531746,20.216940251960736 +2019-05-26 11:15:00,25.0,0.477777778,20.217463034637092 +2019-05-26 11:30:00,25.0,0.471560847,20.217986432454417 +2019-05-26 11:45:00,25.0,0.491005291,20.218510445345395 +2019-05-26 12:00:00,25.0,0.496560847,20.21903507324262 +2019-05-26 12:15:00,25.0,0.496957672,20.219560316078613 +2019-05-26 12:30:00,25.0,0.504232804,20.22008617378582 +2019-05-26 12:45:00,25.0,0.508862434,20.2206126462966 +2019-05-26 13:00:00,25.0,0.485185185,20.22113973354324 +2019-05-26 13:15:00,25.0,0.459259259,20.221667435457945 +2019-05-26 13:30:00,25.0,0.46468254,20.22219575197284 +2019-05-26 13:45:00,25.0,0.522222222,20.22272468301997 +2019-05-26 14:00:00,25.0,0.542460317,20.223254228531307 +2019-05-26 14:15:00,25.0,0.549470899,20.22378438843873 +2019-05-26 14:30:00,25.0,0.552380952,20.22431516267406 +2019-05-26 14:45:00,25.0,0.55462963,20.224846551169023 +2019-05-26 15:00:00,25.0,0.567063492,20.225378553855272 +2019-05-26 15:15:00,25.0,0.565873016,20.225911170664375 +2019-05-26 15:30:00,25.0,0.591666667,20.22644440152783 +2019-05-26 15:45:00,25.0,0.612830688,20.226978246377048 +2019-05-26 16:00:00,25.0,0.611243386,20.22751270514337 +2019-05-26 16:15:00,25.0,0.613095238,20.228047777758047 +2019-05-26 16:30:00,25.0,0.620502646,20.228583464152262 +2019-05-26 16:45:00,25.0,0.638888889,20.229119764257106 +2019-05-26 17:00:00,25.0,0.653439153,20.22965667800361 +2019-05-26 17:15:00,25.0,0.664153439,20.230194205322707 +2019-05-26 17:30:00,25.0,0.664814815,20.23073234614526 +2019-05-26 17:45:00,25.0,0.669444444,20.231271100402054 +2019-05-26 18:00:00,25.0,0.673148148,20.231810468023788 +2019-05-26 18:15:00,25.0,0.670899471,20.232350448941094 +2019-05-26 18:30:00,25.0,0.660714286,20.232891043084518 +2019-05-26 18:45:00,25.0,0.655555556,20.233432250384524 +2019-05-26 19:00:00,25.0,0.648280423,20.2339740707715 +2019-05-26 19:15:00,25.0,0.638359788,20.234516504175758 +2019-05-26 19:30:00,25.0,0.639814815,20.23505955052753 +2019-05-26 19:45:00,25.0,0.639417989,20.235603209756967 +2019-05-26 20:00:00,25.0,0.632142857,20.23614748179414 +2019-05-26 20:15:00,25.0,0.622883598,20.23669236656905 +2019-05-26 20:30:00,25.0,0.618386243,20.237237864011604 +2019-05-26 20:45:00,25.0,0.601058201,20.237783974051645 +2019-05-26 21:00:00,25.0,0.58968254,20.238330696618927 +2019-05-26 21:15:00,25.0,0.58015873,20.238878031643132 +2019-05-26 21:30:00,25.0,0.573677249,20.239425979053863 +2019-05-26 21:45:00,25.0,0.568518519,20.239974538780636 +2019-05-26 22:00:00,25.0,0.568121693,20.240523710752896 +2019-05-26 22:15:00,25.0,0.557275132,20.24107349490001 +2019-05-26 22:30:00,25.0,0.556613757,20.241623891151264 +2019-05-26 22:45:00,25.0,0.56031746,20.242174899435856 +2019-05-26 23:00:00,25.0,0.562830688,20.242726519682925 +2019-05-26 23:15:00,25.0,0.565740741,20.243278751821514 +2019-05-26 23:30:00,25.0,0.587962963,20.243831595780595 +2019-05-26 23:45:00,25.0,0.600925926,20.244385051489058 +2019-05-27 00:00:00,25.0,0.605952381,20.24493911887572 +2019-05-27 00:15:00,25.0,0.600925926,20.245493797869315 +2019-05-27 00:30:00,25.0,0.585449735,20.246049088398497 +2019-05-27 00:45:00,25.0,0.599603175,20.246604990391845 +2019-05-27 01:00:00,25.0,0.583994709,20.247161503777853 +2019-05-27 01:15:00,25.0,0.583201058,20.24771862848495 +2019-05-27 01:30:00,25.0,0.585449735,20.248276364441466 +2019-05-27 01:45:00,25.0,0.596693122,20.248834711575675 +2019-05-27 02:00:00,25.0,0.602380952,20.249393669815753 +2019-05-27 02:15:00,25.0,0.601455026,20.24995323908981 +2019-05-27 02:30:00,25.0,0.614814815,20.25051341932587 +2019-05-27 02:45:00,25.0,0.612301587,20.251074210451883 +2019-05-27 03:00:00,25.0,0.612433862,20.251635612395717 +2019-05-27 03:15:00,25.0,0.576851852,20.252197625085163 +2019-05-27 03:30:00,25.0,0.575,20.252760248447938 +2019-05-27 03:45:00,25.0,0.564153439,20.253323482411673 +2019-05-27 04:00:00,25.0,0.54973545,20.25388732690392 +2019-05-27 04:15:00,25.0,0.55515873,20.254451781852165 +2019-05-27 04:30:00,25.0,0.55026455,20.255016847183796 +2019-05-27 04:45:00,25.0,0.537037037,20.255582522826145 +2019-05-27 05:00:00,25.0,0.542460317,20.256148808706442 +2019-05-27 05:15:00,25.0,0.533201058,20.25671570475185 +2019-05-27 05:30:00,25.0,0.523412698,20.257283210889465 +2019-05-27 05:45:00,25.0,0.514153439,20.257851327046286 +2019-05-27 06:00:00,25.0,0.508730159,20.25842005314924 +2019-05-27 06:15:00,25.0,0.514021164,20.258989389125176 +2019-05-27 06:30:00,25.0,0.512962963,20.259559334900864 +2019-05-27 06:45:00,25.0,0.521825397,20.260129890403 +2019-05-27 07:00:00,25.0,0.530291005,20.260701055558197 +2019-05-27 07:15:00,25.0,0.528042328,20.261272830292988 +2019-05-27 07:30:00,25.0,0.533201058,20.261845214533828 +2019-05-27 07:45:00,25.0,0.540079365,20.262418208207105 +2019-05-27 08:00:00,25.0,0.516137566,20.262991811239107 +2019-05-27 08:15:00,25.0,0.512037037,20.263566023556066 +2019-05-27 08:30:00,25.0,0.507671958,20.264140845084118 +2019-05-27 08:45:00,25.0,0.518783069,20.264716275749333 +2019-05-27 09:00:00,25.0,0.524074074,20.265292315477698 +2019-05-27 09:15:00,25.0,0.538624339,20.265868964195118 +2019-05-27 09:30:00,25.0,0.550925926,20.266446221827422 +2019-05-27 09:45:00,25.0,0.556878307,20.267024088300367 +2019-05-27 10:00:00,25.0,0.49510582,20.267602563539626 +2019-05-27 10:15:00,25.0,0.491798942,20.26818164747079 +2019-05-27 10:30:00,25.0,0.502910053,20.26876134001938 +2019-05-27 10:45:00,25.0,0.500793651,20.26934164111083 +2019-05-27 11:00:00,25.0,0.50489418,20.269922550670504 +2019-05-27 11:15:00,25.0,0.497222222,20.270504068623687 +2019-05-27 11:30:00,25.0,0.538359788,20.271086194895574 +2019-05-27 11:45:00,25.0,0.55026455,20.271668929411295 +2019-05-27 12:00:00,25.0,0.603439153,20.2722522720959 +2019-05-27 12:15:00,25.0,0.618915344,20.272836222874357 +2019-05-27 12:30:00,25.0,0.607275132,20.273420781671554 +2019-05-27 12:45:00,25.0,0.60952381,20.274005948412306 +2019-05-27 13:00:00,25.0,0.500661376,20.27459172302135 +2019-05-27 13:15:00,25.0,0.615740741,20.275178105423333 +2019-05-27 13:30:00,25.0,0.490740741,20.27576509554284 +2019-05-27 13:45:00,25.0,0.490608466,20.276352693304375 +2019-05-27 14:00:00,25.0,0.545634921,20.276940898632354 +2019-05-27 14:15:00,25.0,0.538227513,20.277529711451123 +2019-05-27 14:30:00,25.0,0.55,20.278119131684942 +2019-05-27 14:45:00,25.0,0.559259259,20.278709159258007 +2019-05-27 15:00:00,25.0,0.596825397,20.279299794094424 +2019-05-27 15:15:00,25.0,0.568783069,20.27989103611822 +2019-05-27 15:30:00,25.0,0.564021164,20.280482885253353 +2019-05-27 15:45:00,25.0,0.614814815,20.281075341423694 +2019-05-27 16:00:00,25.0,0.618650794,20.281668404553045 +2019-05-27 16:15:00,25.0,0.619973545,20.282262074565125 +2019-05-27 16:30:00,25.0,0.613359788,20.28285635138357 +2019-05-27 16:45:00,25.0,0.615873016,20.283451234931942 +2019-05-27 17:00:00,25.0,0.611507937,20.284046725133727 +2019-05-27 17:15:00,25.0,0.617328042,20.284642821912335 +2019-05-27 17:30:00,25.0,0.616666667,20.285239525191095 +2019-05-27 17:45:00,25.0,0.61031746,20.285836834893257 +2019-05-27 18:00:00,25.0,0.610449735,20.286434750941986 +2019-05-27 18:15:00,25.0,0.616005291,20.287033273260384 +2019-05-27 18:30:00,25.0,0.615740741,20.28763240177147 +2019-05-27 18:45:00,25.0,0.613756614,20.28823213639818 +2019-05-27 19:00:00,25.0,0.614153439,20.28883247706337 +2019-05-27 19:15:00,25.0,0.612830688,20.28943342368983 +2019-05-27 19:30:00,25.0,0.609391534,20.290034976200257 +2019-05-27 19:45:00,25.0,0.611507937,20.290637134517283 +2019-05-27 20:00:00,25.0,0.609126984,20.291239898563457 +2019-05-27 20:15:00,25.0,0.605026455,20.291843268261253 +2019-05-27 20:30:00,25.0,0.604232804,20.292447243533058 +2019-05-27 20:45:00,25.0,0.584126984,20.29305182430119 +2019-05-27 21:00:00,25.0,0.585185185,20.293657010487888 +2019-05-27 21:15:00,25.0,0.561904762,20.294262802015307 +2019-05-27 21:30:00,25.0,0.550793651,20.294869198805532 +2019-05-27 21:45:00,25.0,0.537433862,20.29547620078057 +2019-05-27 22:00:00,25.0,0.482539683,20.29608380786234 +2019-05-27 22:15:00,25.0,0.441798942,20.296692019972696 +2019-05-27 22:30:00,25.0,0.41521164,20.297300837033404 +2019-05-27 22:45:00,25.0,0.374206349,20.29791025896616 +2019-05-27 23:00:00,25.0,0.318650794,20.298520285692575 +2019-05-27 23:15:00,25.0,0.300661376,20.299130917134192 +2019-05-27 23:30:00,25.0,0.297486772,20.299742153212463 +2019-05-27 23:45:00,25.0,0.283333333,20.300353993848773 +2019-05-28 00:00:00,25.0,0.235846561,20.300966438964426 +2019-05-28 00:15:00,25.0,0.188492063,20.30157948848065 +2019-05-28 00:30:00,25.0,0.171693122,20.302193142318586 +2019-05-28 00:45:00,25.0,0.148015873,20.302807400399317 +2019-05-28 01:00:00,25.0,0.138227513,20.30342226264382 +2019-05-28 01:15:00,25.0,0.124074074,20.304037728973018 +2019-05-28 01:30:00,25.0,0.119047619,20.30465379930775 +2019-05-28 01:45:00,25.0,0.12989418,20.305270473568775 +2019-05-28 02:00:00,25.0,0.132010582,20.30588775167677 +2019-05-28 02:15:00,25.0,0.127248677,20.306505633552344 +2019-05-28 02:30:00,25.0,0.124338624,20.307124119116025 +2019-05-28 02:45:00,25.0,0.120767196,20.307743208288255 +2019-05-28 03:00:00,25.0,0.11468254,20.30836290098941 +2019-05-28 03:15:00,25.0,0.114153439,20.30898319713979 +2019-05-28 03:30:00,25.0,0.113359788,20.309604096659598 +2019-05-28 03:45:00,25.0,0.115079365,20.31022559946898 +2019-05-28 04:00:00,25.0,0.109656085,20.310847705487994 +2019-05-28 04:15:00,25.0,0.10542328,20.311470414636627 +2019-05-28 04:30:00,25.0,0.103439153,20.31209372683478 +2019-05-28 04:45:00,25.0,0.103439153,20.31271764200229 +2019-05-28 05:00:00,25.0,0.100925926,20.313342160058898 +2019-05-28 05:15:00,25.0,0.095502646,20.31396728092428 +2019-05-28 05:30:00,25.0,0.090873016,20.31459300451803 +2019-05-28 05:45:00,25.0,0.090343915,20.31521933075967 +2019-05-28 06:00:00,25.0,0.085185185,20.31584625956864 +2019-05-28 06:15:00,25.0,0.065343915,20.3164737908643 +2019-05-28 06:30:00,25.0,0.053439153,20.31710192456594 +2019-05-28 06:45:00,25.0,0.050661376,20.31773066059276 +2019-05-28 07:00:00,25.0,0.046296296,20.318359998863897 +2019-05-28 07:15:00,25.0,0.056084656,20.318989939298405 +2019-05-28 07:30:00,25.0,0.042328042,20.319620481815253 +2019-05-28 07:45:00,25.0,0.038624339,20.320251626333345 +2019-05-28 08:00:00,25.0,0.045899471,20.320883372771497 +2019-05-28 08:15:00,25.0,0.055687831,20.32151572104846 +2019-05-28 08:30:00,25.0,0.059920635,20.322148671082893 +2019-05-28 08:45:00,25.0,0.06031746,20.322782222793386 +2019-05-28 09:00:00,25.0,0.063359788,20.323416376098454 +2019-05-28 09:15:00,25.0,0.064021164,20.324051130916523 +2019-05-28 09:30:00,25.0,0.068783069,20.324686487165955 +2019-05-28 09:45:00,25.0,0.063227513,20.325322444765032 +2019-05-28 10:00:00,25.0,0.062698413,20.325959003631947 +2019-05-28 10:15:00,25.0,0.071164021,20.326596163684833 +2019-05-28 10:30:00,25.0,0.070767196,20.327233924841728 +2019-05-28 10:45:00,25.0,0.069444444,20.32787228702061 +2019-05-28 11:00:00,25.0,0.066137566,20.328511250139368 +2019-05-28 11:15:00,25.0,0.066931217,20.329150814115813 +2019-05-28 11:30:00,25.0,0.074603175,20.329790978867692 +2019-05-28 11:45:00,25.0,0.074338624,20.330431744312655 +2019-05-28 12:00:00,25.0,0.07010582,20.331073110368294 +2019-05-28 12:15:00,25.0,0.071693122,20.331715076952115 +2019-05-28 12:30:00,25.0,0.077248677,20.33235764398154 +2019-05-28 12:45:00,25.0,0.084259259,20.33300081137392 +2019-05-28 13:00:00,25.0,0.094047619,20.333644579046535 +2019-05-28 13:15:00,25.0,0.109391534,20.334288946916587 +2019-05-28 13:30:00,25.0,0.127116402,20.334933914901182 +2019-05-28 13:45:00,25.0,0.136640212,20.335579482917375 +2019-05-28 14:00:00,25.0,0.144179894,20.33622565088212 +2019-05-28 14:15:00,25.0,0.153703704,20.336872418712318 +2019-05-28 14:30:00,25.0,0.163359788,20.337519786324773 +2019-05-28 14:45:00,25.0,0.163756614,20.338167753636217 +2019-05-28 15:00:00,25.0,0.16468254,20.338816320563314 +2019-05-28 15:15:00,25.0,0.170502646,20.339465487022636 +2019-05-28 15:30:00,25.0,0.183333333,20.340115252930694 +2019-05-28 15:45:00,25.0,0.202513228,20.34076561820391 +2019-05-28 16:00:00,25.0,0.215079365,20.341416582758626 +2019-05-28 16:15:00,25.0,0.22989418,20.342068146511124 +2019-05-28 16:30:00,25.0,0.253042328,20.342720309377594 +2019-05-28 16:45:00,25.0,0.275529101,20.34337307127415 +2019-05-28 17:00:00,25.0,0.298015873,20.344026432116838 +2019-05-28 17:15:00,25.0,0.308465608,20.34468039182162 +2019-05-28 17:30:00,25.0,0.308465608,20.345334950304373 +2019-05-28 17:45:00,25.0,0.317063492,20.34599010748092 +2019-05-28 18:00:00,25.0,0.325,20.346645863266986 +2019-05-28 18:15:00,25.0,0.325396825,20.347302217578225 +2019-05-28 18:30:00,25.0,0.313095238,20.34795917033022 +2019-05-28 18:45:00,25.0,0.303968254,20.348616721438468 +2019-05-28 19:00:00,25.0,0.299603175,20.349274870818395 +2019-05-28 19:15:00,25.0,0.311904762,20.349933618385347 +2019-05-28 19:30:00,25.0,0.30978836,20.350592964054595 +2019-05-28 19:45:00,25.0,0.296957672,20.351252907741337 +2019-05-28 20:00:00,25.0,0.291798942,20.35191344936068 +2019-05-28 20:15:00,25.0,0.28478836,20.352574588827675 +2019-05-28 20:30:00,25.0,0.273677249,20.353236326057274 +2019-05-28 20:45:00,25.0,0.270502646,20.35389866096437 +2019-05-28 21:00:00,25.0,0.253968254,20.354561593463767 +2019-05-28 21:15:00,25.0,0.248809524,20.355225123470202 +2019-05-28 21:30:00,25.0,0.240079365,20.35588925089833 +2019-05-28 21:45:00,25.0,0.219312169,20.35655397566272 +2019-05-28 22:00:00,25.0,0.196957672,20.357219297677887 +2019-05-28 22:15:00,25.0,0.193783069,20.35788521685825 +2019-05-28 22:30:00,25.0,0.196164021,20.35855173311815 +2019-05-28 22:45:00,25.0,0.19537037,20.35921884637187 +2019-05-28 23:00:00,25.0,0.213095238,20.3598865565336 +2019-05-28 23:15:00,25.0,0.217063492,20.360554863517454 +2019-05-28 23:30:00,25.0,0.21547619,20.361223767237473 +2019-05-28 23:45:00,25.0,0.220238095,20.361893267607627 +2019-05-29 00:00:00,25.0,0.220767196,20.3625633645418 +2019-05-29 00:15:00,25.0,0.209391534,20.363234057953797 +2019-05-29 00:30:00,25.0,0.189417989,20.363905347757363 +2019-05-29 00:45:00,25.0,0.199206349,20.364577233866147 +2019-05-29 01:00:00,25.0,0.20978836,20.365249716193734 +2019-05-29 01:15:00,25.0,0.229497354,20.36592279465362 +2019-05-29 01:30:00,25.0,0.241534392,20.366596469159244 +2019-05-29 01:45:00,25.0,0.255687831,20.367270739623947 +2019-05-29 02:00:00,25.0,0.236375661,20.367945605961005 +2019-05-29 02:15:00,25.0,0.213359788,20.368621068083616 +2019-05-29 02:30:00,25.0,0.209259259,20.3692971259049 +2019-05-29 02:45:00,25.0,0.208465608,20.369973779337904 +2019-05-29 03:00:00,25.0,0.217857143,20.37065102829559 +2019-05-29 03:15:00,25.0,0.212037037,20.371328872690857 +2019-05-29 03:30:00,25.0,0.199603175,20.37200731243651 +2019-05-29 03:45:00,25.0,0.18505291,20.372686347445285 +2019-05-29 04:00:00,25.0,0.179232804,20.373365977629852 +2019-05-29 04:15:00,25.0,0.174867725,20.37404620290279 +2019-05-29 04:30:00,25.0,0.171164021,20.37472702317661 +2019-05-29 04:45:00,25.0,0.16957672,20.37540843836374 +2019-05-29 05:00:00,25.0,0.15978836,20.376090448376537 +2019-05-29 05:15:00,25.0,0.147222222,20.376773053127277 +2019-05-29 05:30:00,25.0,0.14484127,20.377456252528162 +2019-05-29 05:45:00,25.0,0.142857143,20.37814004649132 +2019-05-29 06:00:00,25.0,0.141534392,20.378824434928802 +2019-05-29 06:15:00,25.0,0.14047619,20.379509417752573 +2019-05-29 06:30:00,25.0,0.133597884,20.380194994874532 +2019-05-29 06:45:00,25.0,0.117063492,20.3808811662065 +2019-05-29 07:00:00,25.0,0.101587302,20.38156793166022 +2019-05-29 07:15:00,25.0,0.101851852,20.38225529114736 +2019-05-29 07:30:00,25.0,0.092857143,20.382943244579504 +2019-05-29 07:45:00,25.0,0.086640212,20.383631791868172 +2019-05-29 08:00:00,25.0,0.086507937,20.3843209329248 +2019-05-29 08:15:00,25.0,0.083994709,20.385010667660747 +2019-05-29 08:30:00,25.0,0.066798942,20.3857009959873 +2019-05-29 08:45:00,25.0,0.060714286,20.386391917815665 +2019-05-29 09:00:00,25.0,0.056481481,20.38708343305698 +2019-05-29 09:15:00,25.0,0.054497354,20.387775541622293 +2019-05-29 09:30:00,25.0,0.053174603,20.388468243422587 +2019-05-29 09:45:00,25.0,0.052116402,20.389161538368768 +2019-05-29 10:00:00,25.0,0.049603175,20.389855426371653 +2019-05-29 10:15:00,25.0,0.048148148,20.390549907342002 +2019-05-29 10:30:00,25.0,0.049074074,20.39124498119049 +2019-05-29 10:45:00,25.0,0.047486772,20.391940647827706 +2019-05-29 11:00:00,25.0,0.046693122,20.39263690716418 +2019-05-29 11:15:00,25.0,0.049470899,20.393333759110355 +2019-05-29 11:30:00,25.0,0.05026455,20.394031203576603 +2019-05-29 11:45:00,25.0,0.051322751,20.394729240473207 +2019-05-29 12:00:00,25.0,0.046957672,20.395427869710392 +2019-05-29 12:15:00,25.0,0.046164021,20.396127091198302 +2019-05-29 12:30:00,25.0,0.046296296,20.396826904846996 +2019-05-29 12:45:00,25.0,0.046428571,20.397527310566463 +2019-05-29 13:00:00,25.0,0.048015873,20.398228308266614 +2019-05-29 13:15:00,25.0,0.046164021,20.39892989785729 +2019-05-29 13:30:00,25.0,0.046296296,20.399632079248242 +2019-05-29 13:45:00,25.0,0.048280423,20.40033485234916 +2019-05-29 14:00:00,25.0,0.050925926,20.401038217069658 +2019-05-29 14:15:00,25.0,0.052513228,20.401742173319256 +2019-05-29 14:30:00,25.0,0.056746032,20.402446721007415 +2019-05-29 14:45:00,25.0,0.064814815,20.403151860043515 +2019-05-29 15:00:00,25.0,0.069708995,20.403857590336855 +2019-05-29 15:15:00,25.0,0.078174603,20.404563911796668 +2019-05-29 15:30:00,25.0,0.07989418,20.4052708243321 +2019-05-29 15:45:00,25.0,0.081746032,20.40597832785223 +2019-05-29 16:00:00,25.0,0.08531746,20.40668642226606 +2019-05-29 16:15:00,25.0,0.08994709,20.407395107482508 +2019-05-29 16:30:00,25.0,0.091798942,20.408104383410418 +2019-05-29 16:45:00,25.0,0.098015873,20.40881424995857 +2019-05-29 17:00:00,25.0,0.107804233,20.409524707035658 +2019-05-29 17:15:00,25.0,0.116402116,20.410235754550293 +2019-05-29 17:30:00,25.0,0.129232804,20.41094739241103 +2019-05-29 17:45:00,25.0,0.146031746,20.411659620526326 +2019-05-29 18:00:00,25.0,0.157407407,20.412372438804578 +2019-05-29 18:15:00,25.0,0.169708995,20.4130858471541 +2019-05-29 18:30:00,25.0,0.185582011,20.413799845483133 +2019-05-29 18:45:00,25.0,0.204232804,20.414514433699843 +2019-05-29 19:00:00,25.0,0.215873016,20.415229611712313 +2019-05-29 19:15:00,25.0,0.222883598,20.415945379428564 +2019-05-29 19:30:00,25.0,0.238888889,20.416661736756517 +2019-05-29 19:45:00,25.0,0.267328042,20.41737868360405 +2019-05-29 20:00:00,25.0,0.292328042,20.418096219878933 +2019-05-29 20:15:00,25.0,0.300925926,20.418814345488883 +2019-05-29 20:30:00,25.0,0.298544974,20.41953306034153 +2019-05-29 20:45:00,25.0,0.291005291,20.42025236434443 +2019-05-29 21:00:00,25.0,0.294312169,20.420972257405072 +2019-05-29 21:15:00,25.0,0.307407407,20.421692739430853 +2019-05-29 21:30:00,25.0,0.320502646,20.422413810329108 +2019-05-29 21:45:00,25.0,0.334259259,20.42313547000709 +2019-05-29 22:00:00,25.0,0.362566138,20.423857718371973 +2019-05-29 22:15:00,25.0,0.394312169,20.424580555330866 +2019-05-29 22:30:00,25.0,0.418121693,20.425303980790794 +2019-05-29 22:45:00,25.0,0.435714286,20.42602799465871 +2019-05-29 23:00:00,25.0,0.462962963,20.426752596841485 +2019-05-29 23:15:00,25.0,0.505291005,20.427477787245923 +2019-05-29 23:30:00,25.0,0.547222222,20.428203565778745 +2019-05-29 23:45:00,25.0,0.570634921,20.428929932346605 +2019-05-30 00:00:00,25.0,0.58531746,20.42965688685607 +2019-05-30 00:15:00,25.0,0.58994709,20.43038442921364 +2019-05-30 00:30:00,25.0,0.589550265,20.43111255932574 +2019-05-30 00:45:00,25.0,0.58505291,20.431841277098712 +2019-05-30 01:00:00,25.0,0.569312169,20.432570582438824 +2019-05-30 01:15:00,25.0,0.556613757,20.43330047525228 +2019-05-30 01:30:00,25.0,0.556084656,20.434030955445195 +2019-05-30 01:45:00,25.0,0.559391534,20.434762022923607 +2019-05-30 02:00:00,25.0,0.561640212,20.435493677593495 +2019-05-30 02:15:00,25.0,0.562433862,20.436225919360744 +2019-05-30 02:30:00,25.0,0.572354497,20.436958748131175 +2019-05-30 02:45:00,25.0,0.579761905,20.437692163810528 +2019-05-30 03:00:00,25.0,0.588227513,20.43842616630447 +2019-05-30 03:15:00,25.0,0.590079365,20.439160755518593 +2019-05-30 03:30:00,25.0,0.591137566,20.439895931358414 +2019-05-30 03:45:00,25.0,0.59973545,20.440631693729365 +2019-05-30 04:00:00,25.0,0.624206349,20.441368042536823 +2019-05-30 04:15:00,25.0,0.632407407,20.442104977686064 +2019-05-30 04:30:00,25.0,0.634126984,20.44284249908231 +2019-05-30 04:45:00,25.0,0.641666667,20.4435806066307 +2019-05-30 05:00:00,25.0,0.644179894,20.44431930023629 +2019-05-30 05:15:00,25.0,0.648941799,20.445058579804076 +2019-05-30 05:30:00,25.0,0.660714286,20.445798445238964 +2019-05-30 05:45:00,25.0,0.663359788,20.446538896445794 +2019-05-30 06:00:00,25.0,0.66005291,20.447279933329323 +2019-05-30 06:15:00,25.0,0.665079365,20.44802155579424 +2019-05-30 06:30:00,25.0,0.668783069,20.44876376374516 +2019-05-30 06:45:00,25.0,0.669312169,20.44950655708661 +2019-05-30 07:00:00,25.0,0.666137566,20.450249935723058 +2019-05-30 07:15:00,25.0,0.666666667,20.450993899558885 +2019-05-30 07:30:00,25.0,0.669973545,20.4517384484984 +2019-05-30 07:45:00,25.0,0.669708995,20.45248358244584 +2019-05-30 08:00:00,25.0,0.670502646,20.45322930130536 +2019-05-30 08:15:00,25.0,0.67010582,20.45397560498105 +2019-05-30 08:30:00,25.0,0.668121693,20.454722493376913 +2019-05-30 08:45:00,25.0,0.666931217,20.45546996639689 +2019-05-30 09:00:00,25.0,0.663888889,20.456218023944828 +2019-05-30 09:15:00,25.0,0.660185185,20.45696666592452 +2019-05-30 09:30:00,25.0,0.657407407,20.45771589223967 +2019-05-30 09:45:00,25.0,0.659920635,20.45846570279391 +2019-05-30 10:00:00,25.0,0.661772487,20.459216097490796 +2019-05-30 10:15:00,25.0,0.665608466,20.459967076233816 +2019-05-30 10:30:00,25.0,0.667328042,20.460718638926377 +2019-05-30 10:45:00,25.0,0.667460317,20.461470785471803 +2019-05-30 11:00:00,25.0,0.674603175,20.46222351577336 +2019-05-30 11:15:00,25.0,0.679100529,20.462976829734227 +2019-05-30 11:30:00,25.0,0.676190476,20.463730727257513 +2019-05-30 11:45:00,25.0,0.672089947,20.464485208246245 +2019-05-30 12:00:00,25.0,0.670899471,20.465240272603385 +2019-05-30 12:15:00,25.0,0.668253968,20.465995920231812 +2019-05-30 12:30:00,25.0,0.667328042,20.466752151034335 +2019-05-30 12:45:00,25.0,0.664021164,20.46750896491368 +2019-05-30 13:00:00,25.0,0.668518519,20.468266361772514 +2019-05-30 13:15:00,25.0,0.670238095,20.46902434151341 +2019-05-30 13:30:00,25.0,0.673280423,20.46978290403888 +2019-05-30 13:45:00,25.0,0.673148148,20.47054204925135 +2019-05-30 14:00:00,25.0,0.669708995,20.471301777053185 +2019-05-30 14:15:00,25.0,0.667063492,20.472062087346664 +2019-05-30 14:30:00,25.0,0.66468254,20.47282298003399 +2019-05-30 14:45:00,25.0,0.666666667,20.4735844550173 +2019-05-30 15:00:00,25.0,0.662830688,20.47434651219865 +2019-05-30 15:15:00,25.0,0.662301587,20.47510915148002 +2019-05-30 15:30:00,25.0,0.657275132,20.47587237276332 +2019-05-30 15:45:00,25.0,0.638359788,20.476636175950386 +2019-05-30 16:00:00,25.0,0.615079365,20.477400560942968 +2019-05-30 16:15:00,25.0,0.607010582,20.47816552764276 +2019-05-30 16:30:00,25.0,0.614814815,20.47893107595136 +2019-05-30 16:45:00,25.0,0.635185185,20.4796972057703 +2019-05-30 17:00:00,25.0,0.644312169,20.48046391700105 +2019-05-30 17:15:00,25.0,0.65,20.481231209544983 +2019-05-30 17:30:00,25.0,0.636640212,20.481999083303418 +2019-05-30 17:45:00,25.0,0.624867725,20.48276753817758 +2019-05-30 18:00:00,25.0,0.633465608,20.48353657406863 +2019-05-30 18:15:00,25.0,0.635714286,20.48430619087766 +2019-05-30 18:30:00,25.0,0.626587302,20.48507638850567 +2019-05-30 18:45:00,25.0,0.610978836,20.48584716685361 +2019-05-30 19:00:00,25.0,0.607407407,20.486618525822323 +2019-05-30 19:15:00,25.0,0.596296296,20.487390465312604 +2019-05-30 19:30:00,25.0,0.588888889,20.488162985225166 +2019-05-30 19:45:00,25.0,0.583994709,20.488936085460644 +2019-05-30 20:00:00,25.0,0.578703704,20.4897097659196 +2019-05-30 20:15:00,25.0,0.564021164,20.490484026502518 +2019-05-30 20:30:00,25.0,0.543253968,20.491258867109817 +2019-05-30 20:45:00,25.0,0.536375661,20.49203428764183 +2019-05-30 21:00:00,25.0,0.546296296,20.49281028799882 +2019-05-30 21:15:00,25.0,0.558994709,20.493586868080985 +2019-05-30 21:30:00,25.0,0.575132275,20.49436402778843 +2019-05-30 21:45:00,25.0,0.576719577,20.4951417670212 +2019-05-30 22:00:00,25.0,0.575,20.495920085679252 +2019-05-30 22:15:00,25.0,0.580555556,20.49669898366249 +2019-05-30 22:30:00,25.0,0.587962963,20.49747846087072 +2019-05-30 22:45:00,25.0,0.588888889,20.498258517203688 +2019-05-30 23:00:00,25.0,0.597222222,20.499039152561064 +2019-05-30 23:15:00,25.0,0.595238095,20.499820366842435 +2019-05-30 23:30:00,25.0,0.598412698,20.50060215994732 +2019-05-30 23:45:00,25.0,0.598280423,20.501384531775166 +2019-05-31 00:00:00,25.0,0.590740741,20.502167482225346 +2019-05-31 00:15:00,25.0,0.593253968,20.502951011197148 +2019-05-31 00:30:00,25.0,0.583862434,20.503735118589795 +2019-05-31 00:45:00,25.0,0.576587302,20.504519804302433 +2019-05-31 01:00:00,25.0,0.569047619,20.505305068234133 +2019-05-31 01:15:00,25.0,0.566666667,20.5060909102839 +2019-05-31 01:30:00,25.0,0.557804233,20.506877330350644 +2019-05-31 01:45:00,25.0,0.544179894,20.507664328333227 +2019-05-31 02:00:00,25.0,0.528571429,20.508451904130414 +2019-05-31 02:15:00,25.0,0.506878307,20.50924005764091 +2019-05-31 02:30:00,25.0,0.471164021,20.51002878876334 +2019-05-31 02:45:00,25.0,0.433597884,20.510818097396253 +2019-05-31 03:00:00,25.0,0.423148148,20.511607983438132 +2019-05-31 03:15:00,25.0,0.411375661,20.512398446787373 +2019-05-31 03:30:00,25.0,0.398015873,20.51318948734231 +2019-05-31 03:45:00,25.0,0.37526455,20.5139811050012 +2019-05-31 04:00:00,25.0,0.357275132,20.514773299662213 +2019-05-31 04:15:00,25.0,0.338888889,20.515566071223464 +2019-05-31 04:30:00,25.0,0.323148148,20.51635941958298 +2019-05-31 04:45:00,25.0,0.292328042,20.517153344638725 +2019-05-31 05:00:00,25.0,0.26547619,20.517947846288575 +2019-05-31 05:15:00,25.0,0.260846561,20.51874292443034 +2019-05-31 05:30:00,25.0,0.256349206,20.519538578961765 +2019-05-31 05:45:00,25.0,0.24021164,20.5203348097805 +2019-05-31 06:00:00,25.0,0.223148148,20.52113161678414 +2019-05-31 06:15:00,25.0,0.203042328,20.521928999870187 +2019-05-31 06:30:00,25.0,0.187566138,20.52272695893609 +2019-05-31 06:45:00,25.0,0.186640212,20.523525493879212 +2019-05-31 07:00:00,25.0,0.184391534,20.52432460459684 +2019-05-31 07:15:00,25.0,0.201587302,20.52512429098619 +2019-05-31 07:30:00,25.0,0.208730159,20.52592455294441 +2019-05-31 07:45:00,25.0,0.213227513,20.52672539036857 +2019-05-31 08:00:00,25.0,0.204761905,20.52752680315565 +2019-05-31 08:15:00,25.0,0.18042328,20.528328791202586 +2019-05-31 08:30:00,25.0,0.168386243,20.529131354406214 +2019-05-31 08:45:00,25.0,0.163227513,20.529934492663315 +2019-05-31 09:00:00,25.0,0.153703704,20.530738205870584 +2019-05-31 09:15:00,25.0,0.150661376,20.53154249392464 +2019-05-31 09:30:00,25.0,0.157936508,20.532347356722045 +2019-05-31 09:45:00,25.0,0.166402116,20.533152794159264 +2019-05-31 10:00:00,25.0,0.155952381,20.53395880613271 +2019-05-31 10:15:00,25.0,0.155687831,20.534765392538706 +2019-05-31 10:30:00,25.0,0.146560847,20.535572553273504 +2019-05-31 10:45:00,25.0,0.146560847,20.536380288233296 +2019-05-31 11:00:00,25.0,0.150661376,20.537188597314177 +2019-05-31 11:15:00,25.0,0.157407407,20.537997480412187 +2019-05-31 11:30:00,25.0,0.157407407,20.538806937423285 +2019-05-31 11:45:00,25.0,0.152248677,20.539616968243358 +2019-05-31 12:00:00,25.0,0.147222222,20.540427572768213 +2019-05-31 12:15:00,25.0,0.142195767,20.54123875089359 +2019-05-31 12:30:00,25.0,0.141798942,20.54205050251516 +2019-05-31 12:45:00,25.0,0.150793651,20.542862827528502 +2019-05-31 13:00:00,25.0,0.146957672,20.543675725829146 +2019-05-31 13:15:00,25.0,0.151058201,20.544489197312522 +2019-05-31 13:30:00,25.0,0.144973545,20.54530324187401 +2019-05-31 13:45:00,25.0,0.131349206,20.546117859408902 +2019-05-31 14:00:00,25.0,0.122089947,20.546933049812417 +2019-05-31 14:15:00,25.0,0.120767196,20.547748812979705 +2019-05-31 14:30:00,25.0,0.126322751,20.548565148805842 +2019-05-31 14:45:00,25.0,0.125396825,20.54938205718583 +2019-05-31 15:00:00,25.0,0.11547619,20.550199538014596 +2019-05-31 15:15:00,25.0,0.108730159,20.55101759118699 +2019-05-31 15:30:00,25.0,0.114550265,20.551836216597795 +2019-05-31 15:45:00,25.0,0.112037037,20.552655414141718 +2019-05-31 16:00:00,25.0,0.113756614,20.553475183713388 +2019-05-31 16:15:00,25.0,0.126851852,20.554295525207372 +2019-05-31 16:30:00,25.0,0.140079365,20.555116438518148 +2019-05-31 16:45:00,25.0,0.149867725,20.555937923540135 +2019-05-31 17:00:00,25.0,0.156216931,20.556759980167662 +2019-05-31 17:15:00,25.0,0.161640212,20.557582608295007 +2019-05-31 17:30:00,25.0,0.175132275,20.55840580781635 +2019-05-31 17:45:00,25.0,0.186375661,20.559229578625818 +2019-05-31 18:00:00,25.0,0.204100529,20.56005392061745 +2019-05-31 18:15:00,25.0,0.209656085,20.56087883368522 +2019-05-31 18:30:00,25.0,0.222222222,20.56170431772302 +2019-05-31 18:45:00,25.0,0.25026455,20.562530372624686 +2019-05-31 19:00:00,25.0,0.253174603,20.563356998283957 +2019-05-31 19:15:00,25.0,0.258597884,20.564184194594517 +2019-05-31 19:30:00,25.0,0.284259259,20.56501196144997 +2019-05-31 19:45:00,25.0,0.314021164,20.565840298743844 +2019-05-31 20:00:00,25.0,0.355291005,20.5666692063696 +2019-05-31 20:15:00,25.0,0.379365079,20.567498684220617 +2019-05-31 20:30:00,25.0,0.369179894,20.568328732190206 +2019-05-31 20:45:00,25.0,0.363095238,20.56915935017161 +2019-05-31 21:00:00,25.0,0.357275132,20.56999053805799 +2019-05-31 21:15:00,25.0,0.368518519,20.57082229574244 +2019-05-31 21:30:00,25.0,0.386772487,20.571654623117965 +2019-05-31 21:45:00,25.0,0.401058201,20.572487520077523 +2019-05-31 22:00:00,25.0,0.417063492,20.57332098651398 +2019-05-31 22:15:00,25.0,0.431084656,20.57415502232013 +2019-05-31 22:30:00,25.0,0.452248677,20.574989627388703 +2019-05-31 22:45:00,25.0,0.470502646,20.57582480161235 +2019-05-31 23:00:00,25.0,0.475529101,20.576660544883644 +2019-05-31 23:15:00,25.0,0.464417989,20.577496857095092 +2019-05-31 23:30:00,25.0,0.442724868,20.57833373813913 +2019-05-31 23:45:00,25.0,0.431878307,20.57917118790811 +2019-06-01 00:00:00,25.0,0.422222222,20.58000920629432 +2019-06-01 00:15:00,25.0,0.42526455,20.58084779318997 +2019-06-01 00:30:00,25.0,0.428439153,20.581686948487203 +2019-06-01 00:45:00,25.0,0.421560847,20.582526672078085 +2019-06-01 01:00:00,25.0,0.426190476,20.583366963854605 +2019-06-01 01:15:00,25.0,0.428306878,20.58420782370868 +2019-06-01 01:30:00,25.0,0.431878307,20.58504925153217 +2019-06-01 01:45:00,25.0,0.433730159,20.585891247216836 +2019-06-01 02:00:00,25.0,0.450925926,20.58673381065438 +2019-06-01 02:15:00,25.0,0.465608466,20.587576941736433 +2019-06-01 02:30:00,25.0,0.479497354,20.58842064035455 +2019-06-01 02:45:00,25.0,0.487698413,20.58926490640021 +2019-06-01 03:00:00,25.0,0.47962963,20.59010973976482 +2019-06-01 03:15:00,25.0,0.483465608,20.590955140339723 +2019-06-01 03:30:00,25.0,0.498412698,20.59180110801617 +2019-06-01 03:45:00,25.0,0.51494709,20.592647642685364 +2019-06-01 04:00:00,25.0,0.498015873,20.593494744238413 +2019-06-01 04:15:00,25.0,0.486772487,20.594342412566363 +2019-06-01 04:30:00,25.0,0.491005291,20.59519064756018 +2019-06-01 04:45:00,25.0,0.517063492,20.596039449110773 +2019-06-01 05:00:00,25.0,0.525132275,20.596888817108958 +2019-06-01 05:15:00,25.0,0.514285714,20.59773875144549 +2019-06-01 05:30:00,25.0,0.534391534,20.598589252011053 +2019-06-01 05:45:00,25.0,0.536243386,20.599440318696246 +2019-06-01 06:00:00,25.0,0.545899471,20.60029195139161 +2019-06-01 06:15:00,25.0,0.533862434,20.601144149987597 +2019-06-01 06:30:00,25.0,0.52962963,20.601996914374602 +2019-06-01 06:45:00,25.0,0.519973545,20.602850244442944 +2019-06-01 07:00:00,25.0,0.497222222,20.603704140082854 +2019-06-01 07:15:00,25.0,0.471164021,20.604558601184515 +2019-06-01 07:30:00,25.0,0.45489418,20.605413627638015 +2019-06-01 07:45:00,25.0,0.436375661,20.60626921933338 +2019-06-01 08:00:00,25.0,0.42037037,20.607125376160567 +2019-06-01 08:15:00,25.0,0.410582011,20.60798209800945 +2019-06-01 08:30:00,25.0,0.400529101,20.608839384769837 +2019-06-01 08:45:00,25.0,0.396957672,20.609697236331463 +2019-06-01 09:00:00,25.0,0.38994709,20.610555652583987 +2019-06-01 09:15:00,25.0,0.379365079,20.611414633417 +2019-06-01 09:30:00,25.0,0.360846561,20.61227417872001 +2019-06-01 09:45:00,25.0,0.33531746,20.613134288382472 +2019-06-01 10:00:00,25.0,0.303439153,20.613994962293752 +2019-06-01 10:15:00,25.0,0.292195767,20.614856200343144 +2019-06-01 10:30:00,25.0,0.286904762,20.61571800241988 +2019-06-01 10:45:00,25.0,0.284126984,20.61658036841311 +2019-06-01 11:00:00,25.0,0.264285714,20.61744329821191 +2019-06-01 11:15:00,25.0,0.247751323,20.618306791705297 +2019-06-01 11:30:00,25.0,0.240608466,20.6191708487822 +2019-06-01 11:45:00,25.0,0.237698413,20.620035469331484 +2019-06-01 12:00:00,25.0,0.223677249,20.620900653241943 +2019-06-01 12:15:00,25.0,0.210185185,20.621766400402286 +2019-06-01 12:30:00,25.0,0.203703704,20.622632710701172 +2019-06-01 12:45:00,25.0,0.19484127,20.623499584027158 +2019-06-01 13:00:00,25.0,0.191931217,20.624367020268757 +2019-06-01 13:15:00,25.0,0.181216931,20.625235019314395 +2019-06-01 13:30:00,25.0,0.161243386,20.62610358105242 +2019-06-01 13:45:00,25.0,0.145767196,20.626972705371127 +2019-06-01 14:00:00,25.0,0.137830688,20.627842392158723 +2019-06-01 14:15:00,25.0,0.131746032,20.628712641303345 +2019-06-01 14:30:00,25.0,0.123148148,20.62958345269306 +2019-06-01 14:45:00,25.0,0.120238095,20.63045482621586 +2019-06-01 15:00:00,25.0,0.117592593,20.631326761759674 +2019-06-01 15:15:00,25.0,0.111243386,20.632199259212342 +2019-06-01 15:30:00,25.0,0.102380952,20.63307231846165 +2019-06-01 15:45:00,25.0,0.097354497,20.6339459393953 +2019-06-01 16:00:00,25.0,0.091269841,20.634820121900923 +2019-06-01 16:15:00,25.0,0.097619048,20.635694865866085 +2019-06-01 16:30:00,25.0,0.099603175,20.636570171178267 +2019-06-01 16:45:00,25.0,0.09973545,20.637446037724892 +2019-06-01 17:00:00,25.0,0.096560847,20.638322465393298 +2019-06-01 17:15:00,25.0,0.098544974,20.639199454070763 +2019-06-01 17:30:00,25.0,0.100925926,20.64007700364448 +2019-06-01 17:45:00,25.0,0.095634921,20.640955114001578 +2019-06-01 18:00:00,25.0,0.087433862,20.64183378502912 +2019-06-01 18:15:00,25.0,0.091798942,20.64271301661408 +2019-06-01 18:30:00,25.0,0.095238095,20.643592808643376 +2019-06-01 18:45:00,25.0,0.092460317,20.64447316100384 +2019-06-01 19:00:00,25.0,0.089417989,20.645354073582247 +2019-06-01 19:15:00,25.0,0.082936508,20.646235546265284 +2019-06-01 19:30:00,25.0,0.085846561,20.64711757893958 +2019-06-01 19:45:00,25.0,0.086904762,20.648000171491685 +2019-06-01 20:00:00,25.0,0.095767196,20.648883323808075 +2019-06-01 20:15:00,25.0,0.094708995,20.64976703577516 +2019-06-01 20:30:00,25.0,0.091269841,20.650651307279272 +2019-06-01 20:45:00,25.0,0.090079365,20.65153613820668 +2019-06-01 21:00:00,25.0,0.090740741,20.652421528443565 +2019-06-01 21:15:00,25.0,0.096164021,20.65330747787605 +2019-06-01 21:30:00,25.0,0.089550265,20.65419398639019 +2019-06-01 21:45:00,25.0,0.067195767,20.655081053871953 +2019-06-01 22:00:00,25.0,0.053835979,20.65596868020724 +2019-06-01 22:15:00,25.0,0.044047619,20.65685686528189 +2019-06-01 22:30:00,25.0,0.045767196,20.657745608981656 +2019-06-01 22:45:00,25.0,0.046825397,20.658634911192227 +2019-06-01 23:00:00,25.0,0.053439153,20.65952477179922 +2019-06-01 23:15:00,25.0,0.062037037,20.66041519068818 +2019-06-01 23:30:00,25.0,0.062830688,20.661306167744577 +2019-06-01 23:45:00,25.0,0.06984127,20.662197702853817 +2019-06-02 00:00:00,25.0,0.074338624,20.663089795901218 +2019-06-02 00:15:00,25.0,0.078306878,20.66398244677205 +2019-06-02 00:30:00,25.0,0.076984127,20.664875655351487 +2019-06-02 00:45:00,25.0,0.07037037,20.665769421524647 +2019-06-02 01:00:00,25.0,0.07010582,20.666663745176574 +2019-06-02 01:15:00,25.0,0.073280423,20.667558626192232 +2019-06-02 01:30:00,25.0,0.077645503,20.66845406445653 +2019-06-02 01:45:00,25.0,0.083465608,20.66935005985428 +2019-06-02 02:00:00,25.0,0.097883598,20.670246612270248 +2019-06-02 02:15:00,25.0,0.110582011,20.671143721589118 +2019-06-02 02:30:00,25.0,0.118650794,20.672041387695494 +2019-06-02 02:45:00,25.0,0.123941799,20.672939610473918 +2019-06-02 03:00:00,25.0,0.12989418,20.673838389808864 +2019-06-02 03:15:00,25.0,0.141798942,20.674737725584727 +2019-06-02 03:30:00,25.0,0.151190476,20.675637617685823 +2019-06-02 03:45:00,25.0,0.171296296,20.676538065996418 +2019-06-02 04:00:00,25.0,0.180555556,20.67743907040069 +2019-06-02 04:15:00,25.0,0.198148148,20.67834063078275 +2019-06-02 04:30:00,25.0,0.212962963,20.67924274702664 +2019-06-02 04:45:00,25.0,0.223015873,20.680145419016316 +2019-06-02 05:00:00,25.0,0.227777778,20.68104864663569 +2019-06-02 05:15:00,25.0,0.225132275,20.681952429768575 +2019-06-02 05:30:00,25.0,0.228571429,20.68285676829873 +2019-06-02 05:45:00,25.0,0.242328042,20.683761662109838 +2019-06-02 06:00:00,25.0,0.260582011,20.684667111085503 +2019-06-02 06:15:00,25.0,0.273015873,20.68557311510927 +2019-06-02 06:30:00,25.0,0.277380952,20.686479674064607 +2019-06-02 06:45:00,25.0,0.28042328,20.68738678783491 +2019-06-02 07:00:00,25.0,0.281349206,20.688294456303495 +2019-06-02 07:15:00,25.0,0.281613757,20.689202679353627 +2019-06-02 07:30:00,25.0,0.281216931,20.690111456868483 +2019-06-02 07:45:00,25.0,0.27526455,20.691020788731173 +2019-06-02 08:00:00,25.0,0.277777778,20.691930674824743 +2019-06-02 08:15:00,25.0,0.281878307,20.692841115032152 +2019-06-02 08:30:00,25.0,0.278042328,20.693752109236307 +2019-06-02 08:45:00,25.0,0.281349206,20.694663657320024 +2019-06-02 09:00:00,25.0,0.288227513,20.69557575916606 +2019-06-02 09:15:00,25.0,0.29021164,20.69648841465711 +2019-06-02 09:30:00,25.0,0.285978836,20.69740162367577 +2019-06-02 09:45:00,25.0,0.28478836,20.69831538610459 +2019-06-02 10:00:00,25.0,0.282804233,20.699229701826034 +2019-06-02 10:15:00,25.0,0.275,20.700144570722507 +2019-06-02 10:30:00,25.0,0.26957672,20.701059992676335 +2019-06-02 10:45:00,25.0,0.271031746,20.70197596756977 +2019-06-02 11:00:00,25.0,0.267989418,20.702892495285 +2019-06-02 11:15:00,25.0,0.256746032,20.703809575704142 +2019-06-02 11:30:00,25.0,0.254232804,20.704727208709233 +2019-06-02 11:45:00,25.0,0.25978836,20.70564539418225 +2019-06-02 12:00:00,25.0,0.258068783,20.706564132005088 +2019-06-02 12:15:00,25.0,0.258465608,20.707483422059585 +2019-06-02 12:30:00,25.0,0.254365079,20.708403264227492 +2019-06-02 12:45:00,25.0,0.257936508,20.709323658390506 +2019-06-02 13:00:00,25.0,0.255291005,20.710244604430233 +2019-06-02 13:15:00,25.0,0.247354497,20.711166102228226 +2019-06-02 13:30:00,25.0,0.236375661,20.712088151665956 +2019-06-02 13:45:00,25.0,0.222619048,20.71301075262483 +2019-06-02 14:00:00,25.0,0.215608466,20.713933904986177 +2019-06-02 14:15:00,25.0,0.207936508,20.714857608631263 +2019-06-02 14:30:00,25.0,0.20026455,20.71578186344128 +2019-06-02 14:45:00,25.0,0.191402116,20.71670666929734 +2019-06-02 15:00:00,25.0,0.185185185,20.717632026080505 +2019-06-02 15:15:00,25.0,0.175793651,20.718557933671743 +2019-06-02 15:30:00,25.0,0.16547619,20.719484391951966 +2019-06-02 15:45:00,25.0,0.16468254,20.720411400802007 +2019-06-02 16:00:00,25.0,0.161243386,20.721338960102635 +2019-06-02 16:15:00,25.0,0.166402116,20.72226706973455 +2019-06-02 16:30:00,25.0,0.168518519,20.723195729578368 +2019-06-02 16:45:00,25.0,0.167195767,20.72412493951465 +2019-06-02 17:00:00,25.0,0.170502646,20.72505469942387 +2019-06-02 17:15:00,25.0,0.176322751,20.725985009186445 +2019-06-02 17:30:00,25.0,0.178306878,20.72691586868272 +2019-06-02 17:45:00,25.0,0.181613757,20.72784727779296 +2019-06-02 18:00:00,25.0,0.184656085,20.72877923639737 +2019-06-02 18:15:00,25.0,0.19537037,20.729711744376072 +2019-06-02 18:30:00,25.0,0.209126984,20.730644801609134 +2019-06-02 18:45:00,25.0,0.211904762,20.731578407976535 +2019-06-02 19:00:00,25.0,0.213756614,20.7325125633582 +2019-06-02 19:15:00,25.0,0.22526455,20.73344726763397 +2019-06-02 19:30:00,25.0,0.233068783,20.734382520683624 +2019-06-02 19:45:00,25.0,0.231613757,20.73531832238687 +2019-06-02 20:00:00,25.0,0.244708995,20.736254672623335 +2019-06-02 20:15:00,25.0,0.257804233,20.737191571272593 +2019-06-02 20:30:00,25.0,0.268386243,20.73812901821413 +2019-06-02 20:45:00,25.0,0.26005291,20.73906701332738 +2019-06-02 21:00:00,25.0,0.258068783,20.74000555649168 +2019-06-02 21:15:00,25.0,0.279497354,20.740944647586325 +2019-06-02 21:30:00,25.0,0.324867725,20.741884286490528 +2019-06-02 21:45:00,25.0,0.329232804,20.74282447308342 +2019-06-02 22:00:00,25.0,0.421428571,20.743765207244078 +2019-06-02 22:15:00,25.0,0.483994709,20.744706488851506 +2019-06-02 22:30:00,25.0,0.538888889,20.745648317784624 +2019-06-02 22:45:00,25.0,0.553703704,20.746590693922304 +2019-06-02 23:00:00,25.0,0.573544974,20.747533617143326 +2019-06-02 23:15:00,25.0,0.568650794,20.748477087326417 +2019-06-02 23:30:00,25.0,0.592989418,20.74942110435022 +2019-06-02 23:45:00,25.0,0.560846561,20.75036566809331 +2019-06-03 00:00:00,25.0,0.567063492,20.751310778434206 +2019-06-03 00:15:00,25.0,0.581613757,20.752256435251336 +2019-06-03 00:30:00,25.0,0.623544974,20.753202638423073 +2019-06-03 00:45:00,25.0,0.606746032,20.75414938782771 +2019-06-03 01:00:00,25.0,0.615079365,20.755096683343478 +2019-06-03 01:15:00,25.0,0.600132275,20.75604452484853 +2019-06-03 01:30:00,25.0,0.572751323,20.75699291222095 +2019-06-03 01:45:00,25.0,0.562169312,20.757941845338767 +2019-06-03 02:00:00,25.0,0.511640212,20.758891324079915 +2019-06-03 02:15:00,25.0,0.436243386,20.759841348322272 +2019-06-03 02:30:00,25.0,0.385185185,20.760791917943646 +2019-06-03 02:45:00,25.0,0.366137566,20.761743032821773 +2019-06-03 03:00:00,25.0,0.364153439,20.762694692834312 +2019-06-03 03:15:00,25.0,0.375396825,20.763646897858862 +2019-06-03 03:30:00,25.0,0.440873016,20.764599647772958 +2019-06-03 03:45:00,25.0,0.443650794,20.76555294245404 +2019-06-03 04:00:00,25.0,0.44021164,20.7665067817795 +2019-06-03 04:15:00,25.0,0.460978836,20.767461165626653 +2019-06-03 04:30:00,25.0,0.451851852,20.768416093872744 +2019-06-03 04:45:00,25.0,0.46957672,20.769371566394945 +2019-06-03 05:00:00,25.0,0.470502646,20.770327583070365 +2019-06-03 05:15:00,25.0,0.437566138,20.77128414377604 +2019-06-03 05:30:00,25.0,0.394708995,20.772241248388926 +2019-06-03 05:45:00,25.0,0.376719577,20.773198896785928 +2019-06-03 06:00:00,25.0,0.368650794,20.774157088843864 +2019-06-03 06:15:00,25.0,0.336507937,20.775115824439496 +2019-06-03 06:30:00,25.0,0.310582011,20.776075103449504 +2019-06-03 06:45:00,25.0,0.285978836,20.777034925750502 +2019-06-03 07:00:00,25.0,0.257275132,20.777995291219042 +2019-06-03 07:15:00,25.0,0.231878307,20.778956199731596 +2019-06-03 07:30:00,25.0,0.217460317,20.779917651164567 +2019-06-03 07:45:00,25.0,0.200793651,20.780879645394293 +2019-06-03 08:00:00,25.0,0.179761905,20.78184218229704 +2019-06-03 08:15:00,25.0,0.162037037,20.782805261749008 +2019-06-03 08:30:00,25.0,0.156216931,20.783768883626315 +2019-06-03 08:45:00,25.0,0.147089947,20.78473304780503 +2019-06-03 09:00:00,25.0,0.146428571,20.785697754161127 +2019-06-03 09:15:00,25.0,0.151719577,20.786663002570535 +2019-06-03 09:30:00,25.0,0.148809524,20.78762879290909 +2019-06-03 09:45:00,25.0,0.153306878,20.788595125052574 +2019-06-03 10:00:00,25.0,0.147619048,20.789561998876703 +2019-06-03 10:15:00,25.0,0.155820106,20.790529414257104 +2019-06-03 10:30:00,25.0,0.158994709,20.791497371069354 +2019-06-03 10:45:00,25.0,0.166798942,20.79246586918895 +2019-06-03 11:00:00,25.0,0.171296296,20.793434908491317 +2019-06-03 11:15:00,25.0,0.158862434,20.794404488851818 +2019-06-03 11:30:00,25.0,0.156878307,20.795374610145743 +2019-06-03 11:45:00,25.0,0.154100529,20.796345272248317 +2019-06-03 12:00:00,25.0,0.169973545,20.797316475034687 +2019-06-03 12:15:00,25.0,0.166931217,20.798288218379938 +2019-06-03 12:30:00,25.0,0.166798942,20.799260502159076 +2019-06-03 12:45:00,25.0,0.155291005,20.800233326247046 +2019-06-03 13:00:00,25.0,0.154761905,20.801206690518725 +2019-06-03 13:15:00,25.0,0.158730159,20.80218059484891 +2019-06-03 13:30:00,25.0,0.162962963,20.803155039112344 +2019-06-03 13:45:00,25.0,0.154100529,20.80413002318368 +2019-06-03 14:00:00,25.0,0.136904762,20.80510554693753 +2019-06-03 14:15:00,25.0,0.132936508,20.806081610248402 +2019-06-03 14:30:00,25.0,0.136904762,20.80705821299076 +2019-06-03 14:45:00,25.0,0.132275132,20.808035355038996 +2019-06-03 15:00:00,25.0,0.130820106,20.809013036267423 +2019-06-03 15:15:00,25.0,0.124470899,20.809991256550287 +2019-06-03 15:30:00,25.0,0.111111111,20.810970015761768 +2019-06-03 15:45:00,25.0,0.101322751,20.811949313775983 +2019-06-03 16:00:00,25.0,0.08994709,20.812929150466964 +2019-06-03 16:15:00,25.0,0.082010582,20.81390952570868 +2019-06-03 16:30:00,25.0,0.076984127,20.814890439375045 +2019-06-03 16:45:00,25.0,0.078042328,20.81587189133988 +2019-06-03 17:00:00,25.0,0.077777778,20.81685388147696 +2019-06-03 17:15:00,25.0,0.075,20.817836409659964 +2019-06-03 17:30:00,25.0,0.075925926,20.818819475762528 +2019-06-03 17:45:00,25.0,0.079365079,20.819803079658204 +2019-06-03 18:00:00,25.0,0.083465608,20.820787221220478 +2019-06-03 18:15:00,25.0,0.09021164,20.821771900322773 +2019-06-03 18:30:00,25.0,0.10542328,20.822757116838428 +2019-06-03 18:45:00,25.0,0.115608466,20.82374287064073 +2019-06-03 19:00:00,25.0,0.108862434,20.824729161602882 +2019-06-03 19:15:00,25.0,0.103571429,20.825715989598034 +2019-06-03 19:30:00,25.0,0.10542328,20.82670335449925 +2019-06-03 19:45:00,25.0,0.091137566,20.827691256179538 +2019-06-03 20:00:00,25.0,0.075132275,20.82867969451183 +2019-06-03 20:15:00,25.0,0.06468254,20.82966866936899 +2019-06-03 20:30:00,25.0,0.053306878,20.830658180623814 +2019-06-03 20:45:00,25.0,0.048015873,20.831648228149028 +2019-06-03 21:00:00,25.0,0.045767196,20.832638811817297 +2019-06-03 21:15:00,25.0,0.039417989,20.833629931501196 +2019-06-03 21:30:00,25.0,0.038227513,20.834621587073254 +2019-06-03 21:45:00,25.0,0.035846561,20.83561377840592 +2019-06-03 22:00:00,25.0,0.037301587,20.83660650537158 +2019-06-03 22:15:00,25.0,0.052116402,20.837599767842544 +2019-06-03 22:30:00,25.0,0.052777778,20.838593565691053 +2019-06-03 22:45:00,25.0,0.050793651,20.839587898789286 +2019-06-03 23:00:00,25.0,0.047883598,20.84058276700935 +2019-06-03 23:15:00,25.0,0.047089947,20.84157817022328 +2019-06-03 23:30:00,25.0,0.042063492,20.84257410830305 +2019-06-03 23:45:00,25.0,0.039153439,20.843570581120552 +2019-06-04 00:00:00,25.0,0.03478836,20.84456758854763 +2019-06-04 00:15:00,25.0,0.032407407,20.84556513045603 +2019-06-04 00:30:00,25.0,0.026455026,20.84656320671746 +2019-06-04 00:45:00,25.0,0.023809524,20.84756181720354 +2019-06-04 01:00:00,25.0,0.022089947,20.84856096178582 +2019-06-04 01:15:00,25.0,0.020767196,20.849560640335802 +2019-06-04 01:30:00,25.0,0.022222222,20.850560852724893 +2019-06-04 01:45:00,25.0,0.020899471,20.85156159882445 +2019-06-04 02:00:00,25.0,0.019973545,20.852562878505747 +2019-06-04 02:15:00,25.0,0.029100529,20.853564691640006 +2019-06-04 02:30:00,25.0,0.040343915,20.854567038098367 +2019-06-04 02:45:00,25.0,0.047883598,20.855569917751907 +2019-06-04 03:00:00,25.0,0.051190476,20.856573330471633 +2019-06-04 03:15:00,25.0,0.054100529,20.85757727612848 +2019-06-04 03:30:00,25.0,0.064153439,20.858581754593324 +2019-06-04 03:45:00,25.0,0.079232804,20.859586765736964 +2019-06-04 04:00:00,25.0,0.093915344,20.86059230943013 +2019-06-04 04:15:00,25.0,0.108994709,20.8615983855435 +2019-06-04 04:30:00,25.0,0.134920635,20.862604993947652 +2019-06-04 04:45:00,25.0,0.143386243,20.863612134513126 +2019-06-04 05:00:00,25.0,0.153306878,20.864619807110376 +2019-06-04 05:15:00,25.0,0.152248677,20.865628011609793 +2019-06-04 05:30:00,25.0,0.151058201,20.8666367478817 +2019-06-04 05:45:00,25.0,0.147222222,20.867646015796353 +2019-06-04 06:00:00,25.0,0.163624339,20.86865581522394 +2019-06-04 06:15:00,25.0,0.171957672,20.869666146034568 +2019-06-04 06:30:00,25.0,0.170899471,20.870677008098294 +2019-06-04 06:45:00,25.0,0.163756614,20.8716884012851 +2019-06-04 07:00:00,25.0,0.160449735,20.872700325464887 +2019-06-04 07:15:00,25.0,0.143915344,20.873712780507514 +2019-06-04 07:30:00,25.0,0.126058201,20.874725766282747 +2019-06-04 07:45:00,25.0,0.112962963,20.875739282660298 +2019-06-04 08:00:00,25.0,0.100793651,20.876753329509803 +2019-06-04 08:15:00,25.0,0.089285714,20.87776790670084 +2019-06-04 08:30:00,25.0,0.083333333,20.8787830141029 +2019-06-04 08:45:00,25.0,0.072486772,20.879798651585425 +2019-06-04 09:00:00,25.0,0.059656085,20.88081481901778 +2019-06-04 09:15:00,25.0,0.055820106,20.881831516269262 +2019-06-04 09:30:00,25.0,0.055687831,20.882848743209102 +2019-06-04 09:45:00,25.0,0.051058201,20.883866499706464 +2019-06-04 10:00:00,25.0,0.048677249,20.88488478563044 +2019-06-04 10:15:00,25.0,0.044973545,20.885903600850057 +2019-06-04 10:30:00,25.0,0.036375661,20.886922945234268 +2019-06-04 10:45:00,25.0,0.03452381,20.88794281865197 +2019-06-04 11:00:00,25.0,0.030952381,20.888963220971974 +2019-06-04 11:15:00,25.0,0.032142857,20.889984152063043 +2019-06-04 11:30:00,25.0,0.032936508,20.89100561179386 +2019-06-04 11:45:00,25.0,0.031481481,20.892027600033046 +2019-06-04 12:00:00,25.0,0.037433862,20.89305011664914 +2019-06-04 12:15:00,25.0,0.041005291,20.89407316151063 +2019-06-04 12:30:00,25.0,0.043121693,20.895096734485932 +2019-06-04 12:45:00,25.0,0.050661376,20.896120835443387 +2019-06-04 13:00:00,25.0,0.058201058,20.89714546425128 +2019-06-04 13:15:00,25.0,0.069444444,20.89817062077781 +2019-06-04 13:30:00,25.0,0.079365079,20.899196304891127 +2019-06-04 13:45:00,25.0,0.087169312,20.9002225164593 +2019-06-04 14:00:00,25.0,0.091402116,20.901249255350344 +2019-06-04 14:15:00,25.0,0.098677249,20.902276521432192 +2019-06-04 14:30:00,25.0,0.104232804,20.903304314572708 +2019-06-04 14:45:00,25.0,0.108333333,20.904332634639708 +2019-06-04 15:00:00,25.0,0.128571429,20.905361481500915 +2019-06-04 15:15:00,25.0,0.148280423,20.906390855024004 +2019-06-04 15:30:00,25.0,0.171957672,20.907420755076572 +2019-06-04 15:45:00,25.0,0.197883598,20.908451181526146 +2019-06-04 16:00:00,25.0,0.218783069,20.909482134240204 +2019-06-04 16:15:00,25.0,0.240873016,20.910513613086128 +2019-06-04 16:30:00,25.0,0.253968254,20.911545617931257 +2019-06-04 16:45:00,25.0,0.262301587,20.912578148642844 +2019-06-04 17:00:00,25.0,0.277910053,20.913611205088085 +2019-06-04 17:15:00,25.0,0.285978836,20.91464478713411 +2019-06-04 17:30:00,25.0,0.298809524,20.915678894647975 +2019-06-04 17:45:00,25.0,0.330687831,20.91671352749667 +2019-06-04 18:00:00,25.0,0.371031746,20.917748685547117 +2019-06-04 18:15:00,25.0,0.411904762,20.918784368666174 +2019-06-04 18:30:00,25.0,0.443518519,20.919820576720625 +2019-06-04 18:45:00,25.0,0.493650794,20.920857309577194 +2019-06-04 19:00:00,25.0,0.535978836,20.921894567102537 +2019-06-04 19:15:00,25.0,0.573677249,20.922932349163233 +2019-06-04 19:30:00,25.0,0.595502646,20.923970655625805 +2019-06-04 19:45:00,25.0,0.609126984,20.9250094863567 +2019-06-04 20:00:00,25.0,0.613888889,20.926048841222304 +2019-06-04 20:15:00,25.0,0.617857143,20.92708872008893 +2019-06-04 20:30:00,25.0,0.621825397,20.928129122822824 +2019-06-04 20:45:00,25.0,0.622486772,20.929170049290178 +2019-06-04 21:00:00,25.0,0.626190476,20.930211499357096 +2019-06-04 21:15:00,25.0,0.630026455,20.93125347288963 +2019-06-04 21:30:00,25.0,0.635846561,20.93229596975375 +2019-06-04 21:45:00,25.0,0.641402116,20.933338989815375 +2019-06-04 22:00:00,25.0,0.636375661,20.93438253294035 +2019-06-04 22:15:00,25.0,0.607671958,20.935426598994447 +2019-06-04 22:30:00,25.0,0.608597884,20.936471187843384 +2019-06-04 22:45:00,25.0,0.61005291,20.937516299352794 +2019-06-04 23:00:00,25.0,0.61521164,20.938561933388257 +2019-06-04 23:15:00,25.0,0.585978836,20.93960808981528 +2019-06-04 23:30:00,25.0,0.59021164,20.940654768499307 +2019-06-04 23:45:00,25.0,0.584126984,20.941701969305708 +2019-06-05 00:00:00,25.0,0.560582011,20.94274969209979 +2019-06-05 00:15:00,25.0,0.574074074,20.943797936746797 +2019-06-05 00:30:00,25.0,0.537830688,20.944846703111892 +2019-06-05 00:45:00,25.0,0.548015873,20.945895991060194 +2019-06-05 01:00:00,25.0,0.546693122,20.946945800456728 +2019-06-05 01:15:00,25.0,0.58452381,20.94799613116647 +2019-06-05 01:30:00,25.0,0.603174603,20.949046983054327 +2019-06-05 01:45:00,25.0,0.603439153,20.95009835598513 +2019-06-05 02:00:00,25.0,0.628968254,20.951150249823655 +2019-06-05 02:15:00,25.0,0.629365079,20.9522026644346 +2019-06-05 02:30:00,25.0,0.615079365,20.95325559968261 +2019-06-05 02:45:00,25.0,0.629761905,20.95430905543224 +2019-06-05 03:00:00,25.0,0.632275132,20.955363031548 +2019-06-05 03:15:00,25.0,0.640873016,20.95641752789433 +2019-06-05 03:30:00,25.0,0.647222222,20.957472544335587 +2019-06-05 03:45:00,25.0,0.649074074,20.95852808073608 +2019-06-05 04:00:00,25.0,0.650132275,20.959584136960043 +2019-06-05 04:15:00,25.0,0.653703704,20.960640712871644 +2019-06-05 04:30:00,25.0,0.654365079,20.961697808334975 +2019-06-05 04:45:00,25.0,0.65489418,20.962755423214084 +2019-06-05 05:00:00,25.0,0.647883598,20.96381355737293 +2019-06-05 05:15:00,25.0,0.619047619,20.96487221067541 +2019-06-05 05:30:00,25.0,0.61494709,20.965931382985367 +2019-06-05 05:45:00,25.0,0.598148148,20.966991074166557 +2019-06-05 06:00:00,25.0,0.573544974,20.968051284082694 +2019-06-05 06:15:00,25.0,0.54510582,20.969112012597396 +2019-06-05 06:30:00,25.0,0.523544974,20.97017325957424 +2019-06-05 06:45:00,25.0,0.521560847,20.971235024876723 +2019-06-05 07:00:00,25.0,0.491931217,20.972297308368276 +2019-06-05 07:15:00,25.0,0.450132275,20.97336010991227 +2019-06-05 07:30:00,25.0,0.400793651,20.974423429372003 +2019-06-05 07:45:00,25.0,0.346957672,20.975487266610706 +2019-06-05 08:00:00,25.0,0.333597884,20.97655162149155 +2019-06-05 08:15:00,25.0,0.298941799,20.97761649387763 +2019-06-05 08:30:00,25.0,0.26547619,20.978681883631985 +2019-06-05 08:45:00,25.0,0.220634921,20.97974779061758 +2019-06-05 09:00:00,25.0,0.200661376,20.980814214697318 +2019-06-05 09:15:00,25.0,0.18042328,20.981881155734026 +2019-06-05 09:30:00,25.0,0.153042328,20.98294861359048 +2019-06-05 09:45:00,25.0,0.126984127,20.98401658812937 +2019-06-05 10:00:00,25.0,0.117989418,20.985085079213345 +2019-06-05 10:15:00,25.0,0.109391534,20.986154086704964 +2019-06-05 10:30:00,25.0,0.110978836,20.98722361046673 +2019-06-05 10:45:00,25.0,0.097222222,20.988293650361083 +2019-06-05 11:00:00,25.0,0.063756614,20.989364206250386 +2019-06-05 11:15:00,25.0,0.047222222,20.99043527799694 +2019-06-05 11:30:00,25.0,0.044312169,20.99150686546299 +2019-06-05 11:45:00,25.0,0.041005291,20.9925789685107 +2019-06-05 12:00:00,25.0,0.041137566,20.993651587002176 +2019-06-05 12:15:00,25.0,0.038888889,20.99472472079945 +2019-06-05 12:30:00,25.0,0.035582011,20.9957983697645 +2019-06-05 12:45:00,25.0,0.032539683,20.996872533759227 +2019-06-05 13:00:00,25.0,0.032539683,20.997947212645467 +2019-06-05 13:15:00,25.0,0.032275132,20.999022406285 +2019-06-05 13:30:00,25.0,0.034656085,21.000098114539526 +2019-06-05 13:45:00,25.0,0.038095238,21.00117433727069 +2019-06-05 14:00:00,25.0,0.044973545,21.00225107434006 +2019-06-05 14:15:00,25.0,0.051455026,21.003328325609147 +2019-06-05 14:30:00,25.0,0.06031746,21.00440609093939 +2019-06-05 14:45:00,25.0,0.068121693,21.005484370192164 +2019-06-05 15:00:00,25.0,0.065873016,21.006563163228787 +2019-06-05 15:15:00,25.0,0.069312169,21.007642469910486 +2019-06-05 15:30:00,25.0,0.077513228,21.008722290098454 +2019-06-05 15:45:00,25.0,0.083068783,21.009802623653794 +2019-06-05 16:00:00,25.0,0.08505291,21.010883470437552 +2019-06-05 16:15:00,25.0,0.097751323,21.011964830310706 +2019-06-05 16:30:00,25.0,0.10542328,21.013046703134172 +2019-06-05 16:45:00,25.0,0.116402116,21.014129088768797 +2019-06-05 17:00:00,25.0,0.124074074,21.015211987075354 +2019-06-05 17:15:00,25.0,0.133068783,21.016295397914572 +2019-06-05 17:30:00,25.0,0.140740741,21.017379321147086 +2019-06-05 17:45:00,25.0,0.15,21.01846375663349 +2019-06-05 18:00:00,25.0,0.162037037,21.019548704234296 +2019-06-05 18:15:00,25.0,0.169312169,21.02063416380996 +2019-06-05 18:30:00,25.0,0.176851852,21.02172013522086 +2019-06-05 18:45:00,25.0,0.181746032,21.022806618327323 +2019-06-05 19:00:00,25.0,0.183465608,21.0238936129896 +2019-06-05 19:15:00,25.0,0.183730159,21.024981119067878 +2019-06-05 19:30:00,25.0,0.17962963,21.02606913642228 +2019-06-05 19:45:00,25.0,0.188756614,21.02715766491287 +2019-06-05 20:00:00,25.0,0.192460317,21.028246704399628 +2019-06-05 20:15:00,25.0,0.195899471,21.029336254742486 +2019-06-05 20:30:00,25.0,0.201984127,21.0304263158013 +2019-06-05 20:45:00,25.0,0.216931217,21.031516887435867 +2019-06-05 21:00:00,25.0,0.253306878,21.03260796950591 +2019-06-05 21:15:00,25.0,0.30026455,21.033699561871096 +2019-06-05 21:30:00,25.0,0.335449735,21.034791664391022 +2019-06-05 21:45:00,25.0,0.368386243,21.03588427692522 +2019-06-05 22:00:00,25.0,0.416931217,21.036977399333153 +2019-06-05 22:15:00,25.0,0.469444444,21.038071031474217 +2019-06-05 22:30:00,25.0,0.511640212,21.039165173207756 +2019-06-05 22:45:00,25.0,0.550925926,21.040259824393033 +2019-06-05 23:00:00,25.0,0.596825397,21.041354984889253 +2019-06-05 23:15:00,25.0,0.636904762,21.042450654555555 +2019-06-05 23:30:00,25.0,0.652116402,21.043546833251007 +2019-06-05 23:45:00,25.0,0.669179894,21.044643520834622 +2019-06-06 00:00:00,25.0,0.687433862,21.045740717165337 +2019-06-06 00:15:00,25.0,0.693253968,21.04683842210203 +2019-06-06 00:30:00,25.0,0.703042328,21.04793663550351 +2019-06-06 00:45:00,25.0,0.712433862,21.049035357228522 +2019-06-06 01:00:00,25.0,0.721296296,21.05013458713575 +2019-06-06 01:15:00,25.0,0.725793651,21.051234325083808 +2019-06-06 01:30:00,25.0,0.729100529,21.05233457093124 +2019-06-06 01:45:00,25.0,0.691534392,21.053435324536533 +2019-06-06 02:00:00,25.0,0.686507937,21.054536585758107 +2019-06-06 02:15:00,25.0,0.682407407,21.055638354454313 +2019-06-06 02:30:00,25.0,0.683862434,21.056740630483436 +2019-06-06 02:45:00,25.0,0.607804233,21.057843413703708 +2019-06-06 03:00:00,25.0,0.641402116,21.058946703973277 +2019-06-06 03:15:00,25.0,0.631613757,21.06005050115024 +2019-06-06 03:30:00,25.0,0.59457672,21.061154805092624 +2019-06-06 03:45:00,25.0,0.589417989,21.06225961565839 +2019-06-06 04:00:00,25.0,0.579365079,21.063364932705433 +2019-06-06 04:15:00,25.0,0.559920635,21.064470756091584 +2019-06-06 04:30:00,25.0,0.505820106,21.065577085674615 +2019-06-06 04:45:00,25.0,0.437433862,21.066683921312222 +2019-06-06 05:00:00,25.0,0.404232804,21.06779126286205 +2019-06-06 05:15:00,25.0,0.339814815,21.068899110181654 +2019-06-06 05:30:00,25.0,0.274338624,21.070007463128555 +2019-06-06 05:45:00,25.0,0.223677249,21.071116321560186 +2019-06-06 06:00:00,25.0,0.187698413,21.072225685333926 +2019-06-06 06:15:00,25.0,0.16547619,21.073335554307086 +2019-06-06 06:30:00,25.0,0.141666667,21.074445928336914 +2019-06-06 06:45:00,25.0,0.138624339,21.075556807280588 +2019-06-06 07:00:00,25.0,0.135449735,21.07666819099522 +2019-06-06 07:15:00,25.0,0.117328042,21.07778007933787 +2019-06-06 07:30:00,25.0,0.113095238,21.078892472165524 +2019-06-06 07:45:00,25.0,0.119444444,21.080005369335097 +2019-06-06 08:00:00,25.0,0.155952381,21.08111877070345 +2019-06-06 08:15:00,25.0,0.196957672,21.082232676127372 +2019-06-06 08:30:00,25.0,0.22962963,21.083347085463593 +2019-06-06 08:45:00,25.0,0.284259259,21.08446199856877 +2019-06-06 09:00:00,25.0,0.326190476,21.085577415299507 +2019-06-06 09:15:00,25.0,0.372354497,21.086693335512333 +2019-06-06 09:30:00,25.0,0.409656085,21.087809759063717 +2019-06-06 09:45:00,25.0,0.442063492,21.08892668581006 +2019-06-06 10:00:00,25.0,0.442460317,21.0900441156077 +2019-06-06 10:15:00,25.0,0.431746032,21.091162048312913 +2019-06-06 10:30:00,25.0,0.469179894,21.092280483781906 +2019-06-06 10:45:00,25.0,0.52010582,21.093399421870824 +2019-06-06 11:00:00,25.0,0.587830688,21.09451886243575 +2019-06-06 11:15:00,25.0,0.626322751,21.09563880533269 +2019-06-06 11:30:00,25.0,0.626058201,21.096759250417605 +2019-06-06 11:45:00,25.0,0.623809524,21.097880197546374 +2019-06-06 12:00:00,25.0,0.630555556,21.099001646574823 +2019-06-06 12:15:00,25.0,0.618253968,21.100123597358703 +2019-06-06 12:30:00,25.0,0.602513228,21.101246049753705 +2019-06-06 12:45:00,25.0,0.578306878,21.102369003615465 +2019-06-06 13:00:00,25.0,0.532804233,21.10349245879954 +2019-06-06 13:15:00,25.0,0.47962963,21.10461641516143 +2019-06-06 13:30:00,25.0,0.458201058,21.10574087255657 +2019-06-06 13:45:00,25.0,0.467328042,21.106865830840327 +2019-06-06 14:00:00,25.0,0.462830688,21.10799128986801 +2019-06-06 14:15:00,25.0,0.459259259,21.109117249494854 +2019-06-06 14:30:00,25.0,0.456349206,21.110243709576046 +2019-06-06 14:45:00,25.0,0.436375661,21.111370669966686 +2019-06-06 15:00:00,25.0,0.409259259,21.11249813052183 +2019-06-06 15:15:00,25.0,0.386640212,21.113626091096457 +2019-06-06 15:30:00,25.0,0.368650794,21.114754551545488 +2019-06-06 15:45:00,25.0,0.35515873,21.115883511723776 +2019-06-06 16:00:00,25.0,0.341005291,21.117012971486115 +2019-06-06 16:15:00,25.0,0.323148148,21.11814293068723 +2019-06-06 16:30:00,25.0,0.296164021,21.11927338918178 +2019-06-06 16:45:00,25.0,0.271825397,21.12040434682437 +2019-06-06 17:00:00,25.0,0.267989418,21.121535803469524 +2019-06-06 17:15:00,25.0,0.243386243,21.122667758971716 +2019-06-06 17:30:00,25.0,0.210846561,21.123800213185355 +2019-06-06 17:45:00,25.0,0.192328042,21.124933165964777 +2019-06-06 18:00:00,25.0,0.178835979,21.126066617164263 +2019-06-06 18:15:00,25.0,0.171428571,21.127200566638017 +2019-06-06 18:30:00,25.0,0.160846561,21.1283350142402 +2019-06-06 18:45:00,25.0,0.140343915,21.12946995982489 +2019-06-06 19:00:00,25.0,0.098148148,21.130605403246104 +2019-06-06 19:15:00,25.0,0.07010582,21.13174134435781 +2019-06-06 19:30:00,25.0,0.062698413,21.13287778301389 +2019-06-06 19:45:00,25.0,0.097486772,21.13401471906818 +2019-06-06 20:00:00,25.0,0.117460317,21.135152152374438 +2019-06-06 20:15:00,25.0,0.121693122,21.136290082786367 +2019-06-06 20:30:00,25.0,0.113227513,21.13742851015761 +2019-06-06 20:45:00,25.0,0.082671958,21.138567434341727 +2019-06-06 21:00:00,25.0,0.063624339,21.13970685519224 +2019-06-06 21:15:00,25.0,0.064417989,21.140846772562586 +2019-06-06 21:30:00,25.0,0.060978836,21.14198718630615 +2019-06-06 21:45:00,25.0,0.06468254,21.143128096276246 +2019-06-06 22:00:00,25.0,0.072486772,21.144269502326132 +2019-06-06 22:15:00,25.0,0.081349206,21.145411404308994 +2019-06-06 22:30:00,25.0,0.093386243,21.14655380207796 +2019-06-06 22:45:00,25.0,0.09457672,21.147696695486093 +2019-06-06 23:00:00,25.0,0.098148148,21.148840084386386 +2019-06-06 23:15:00,25.0,0.100132275,21.14998396863178 +2019-06-06 23:30:00,25.0,0.09510582,21.15112834807514 +2019-06-06 23:45:00,25.0,0.086507937,21.15227322256928 +2019-06-07 00:00:00,25.0,0.083201058,21.15341859196694 +2019-06-07 00:15:00,25.0,0.085582011,21.1545644561208 +2019-06-07 00:30:00,25.0,0.085714286,21.155710814883477 +2019-06-07 00:45:00,25.0,0.077777778,21.156857668107524 +2019-06-07 01:00:00,25.0,0.080952381,21.158005015645426 +2019-06-07 01:15:00,25.0,0.084259259,21.159152857349614 +2019-06-07 01:30:00,25.0,0.082804233,21.160301193072446 +2019-06-07 01:45:00,25.0,0.069047619,21.161450022666223 +2019-06-07 02:00:00,25.0,0.056349206,21.16259934598318 +2019-06-07 02:15:00,25.0,0.050396825,21.163749162875487 +2019-06-07 02:30:00,25.0,0.055687831,21.164899473195252 +2019-06-07 02:45:00,25.0,0.058730159,21.166050276794522 +2019-06-07 03:00:00,25.0,0.053571429,21.16720157352527 +2019-06-07 03:15:00,25.0,0.052248677,21.168353363239422 +2019-06-07 03:30:00,25.0,0.052645503,21.16950564578883 +2019-06-07 03:45:00,25.0,0.058994709,21.170658421025284 +2019-06-07 04:00:00,25.0,0.052910053,21.171811688800513 +2019-06-07 04:15:00,25.0,0.045899471,21.172965448966178 +2019-06-07 04:30:00,25.0,0.042063492,21.174119701373883 +2019-06-07 04:45:00,25.0,0.041534392,21.17527444587516 +2019-06-07 05:00:00,25.0,0.047222222,21.176429682321487 +2019-06-07 05:15:00,25.0,0.044444444,21.177585410564276 +2019-06-07 05:30:00,25.0,0.042989418,21.178741630454873 +2019-06-07 05:45:00,25.0,0.040608466,21.179898341844563 +2019-06-07 06:00:00,25.0,0.043121693,21.181055544584567 +2019-06-07 06:15:00,25.0,0.042328042,21.182213238526042 +2019-06-07 06:30:00,25.0,0.041798942,21.183371423520082 +2019-06-07 06:45:00,25.0,0.045767196,21.18453009941772 +2019-06-07 07:00:00,25.0,0.050793651,21.185689266069925 +2019-06-07 07:15:00,25.0,0.057275132,21.1868489233276 +2019-06-07 07:30:00,25.0,0.060714286,21.18800907104159 +2019-06-07 07:45:00,25.0,0.067328042,21.18916970906267 +2019-06-07 08:00:00,25.0,0.066269841,21.19033083724156 +2019-06-07 08:15:00,25.0,0.066534392,21.191492455428914 +2019-06-07 08:30:00,25.0,0.073015873,21.19265456347532 +2019-06-07 08:45:00,25.0,0.07526455,21.193817161231305 +2019-06-07 09:00:00,25.0,0.079761905,21.19498024854733 +2019-06-07 09:15:00,25.0,0.093518519,21.1961438252738 +2019-06-07 09:30:00,25.0,0.107142857,21.19730789126105 +2019-06-07 09:45:00,25.0,0.117989418,21.19847244635936 +2019-06-07 10:00:00,25.0,0.119708995,21.199637490418937 +2019-06-07 10:15:00,25.0,0.127777778,21.200803023289932 +2019-06-07 10:30:00,25.0,0.139285714,21.201969044822437 +2019-06-07 10:45:00,25.0,0.152380952,21.203135554866467 +2019-06-07 11:00:00,25.0,0.160449735,21.204302553271987 +2019-06-07 11:15:00,25.0,0.158862434,21.205470039888894 +2019-06-07 11:30:00,25.0,0.160582011,21.20663801456702 +2019-06-07 11:45:00,25.0,0.174074074,21.207806477156147 +2019-06-07 12:00:00,25.0,0.188359788,21.208975427505976 +2019-06-07 12:15:00,25.0,0.198412698,21.210144865466155 +2019-06-07 12:30:00,25.0,0.205026455,21.21131479088627 +2019-06-07 12:45:00,25.0,0.213624339,21.212485203615845 +2019-06-07 13:00:00,25.0,0.23478836,21.213656103504334 +2019-06-07 13:15:00,25.0,0.253703704,21.214827490401134 +2019-06-07 13:30:00,25.0,0.270502646,21.215999364155582 +2019-06-07 13:45:00,25.0,0.291666667,21.217171724616946 +2019-06-07 14:00:00,25.0,0.304100529,21.218344571634432 +2019-06-07 14:15:00,25.0,0.310449735,21.21951790505719 +2019-06-07 14:30:00,25.0,0.32010582,21.220691724734305 +2019-06-07 14:45:00,25.0,0.33452381,21.22186603051479 +2019-06-07 15:00:00,25.0,0.339814815,21.223040822247608 +2019-06-07 15:15:00,25.0,0.353439153,21.224216099781657 +2019-06-07 15:30:00,25.0,0.365343915,21.225391862965765 +2019-06-07 15:45:00,25.0,0.368386243,21.226568111648703 +2019-06-07 16:00:00,25.0,0.375661376,21.227744845679183 +2019-06-07 16:15:00,25.0,0.387566138,21.228922064905845 +2019-06-07 16:30:00,25.0,0.401984127,21.23009976917728 +2019-06-07 16:45:00,25.0,0.411904762,21.231277958342 +2019-06-07 17:00:00,25.0,0.420899471,21.232456632248475 +2019-06-07 17:15:00,25.0,0.432275132,21.233635790745087 +2019-06-07 17:30:00,25.0,0.448148148,21.234815433680183 +2019-06-07 17:45:00,25.0,0.462698413,21.235995560902026 +2019-06-07 18:00:00,25.0,0.478703704,21.23717617225883 +2019-06-07 18:15:00,25.0,0.506878307,21.23835726759874 +2019-06-07 18:30:00,25.0,0.523809524,21.239538846769843 +2019-06-07 18:45:00,25.0,0.534259259,21.24072090962016 +2019-06-07 19:00:00,25.0,0.558465608,21.241903455997647 +2019-06-07 19:15:00,25.0,0.580291005,21.24308648575021 +2019-06-07 19:30:00,25.0,0.593386243,21.244269998725677 +2019-06-07 19:45:00,25.0,0.604497354,21.24545399477183 +2019-06-07 20:00:00,25.0,0.60542328,21.246638473736375 +2019-06-07 20:15:00,25.0,0.601455026,21.247823435466966 +2019-06-07 20:30:00,25.0,0.551851852,21.249008879811186 +2019-06-07 20:45:00,25.0,0.557142857,21.250194806616562 +2019-06-07 21:00:00,25.0,0.552380952,21.251381215730557 +2019-06-07 21:15:00,25.0,0.58452381,21.252568107000574 +2019-06-07 21:30:00,25.0,0.543915344,21.25375548027395 +2019-06-07 21:45:00,25.0,0.454365079,21.254943335397964 +2019-06-07 22:00:00,25.0,0.375396825,21.25613167221983 +2019-06-07 22:15:00,25.0,0.364814815,21.257320490586707 +2019-06-07 22:30:00,25.0,0.401190476,21.258509790345673 +2019-06-07 22:45:00,25.0,0.41957672,21.259699571343774 +2019-06-07 23:00:00,25.0,0.37037037,21.260889833427967 +2019-06-07 23:15:00,25.0,0.343386243,21.262080576445157 +2019-06-07 23:30:00,25.0,0.363359788,21.263271800242197 +2019-06-07 23:45:00,25.0,0.397089947,21.26446350466586 +2019-06-08 00:00:00,25.0,0.437698413,21.26565568956287 +2019-06-08 00:15:00,25.0,0.473015873,21.266848354779885 +2019-06-08 00:30:00,25.0,0.483597884,21.268041500163505 +2019-06-08 00:45:00,25.0,0.474470899,21.269235125560257 +2019-06-08 01:00:00,25.0,0.485582011,21.270429230816617 +2019-06-08 01:15:00,25.0,0.502380952,21.271623815779005 +2019-06-08 01:30:00,25.0,0.524206349,21.27281888029376 +2019-06-08 01:45:00,25.0,0.537433862,21.274014424207174 +2019-06-08 02:00:00,25.0,0.572619048,21.275210447365474 +2019-06-08 02:15:00,25.0,0.580952381,21.27640694961482 +2019-06-08 02:30:00,25.0,0.586111111,21.277603930801327 +2019-06-08 02:45:00,25.0,0.587566138,21.278801390771022 +2019-06-08 03:00:00,25.0,0.588359788,21.279999329369893 +2019-06-08 03:15:00,25.0,0.586507937,21.28119774644386 +2019-06-08 03:30:00,25.0,0.578306878,21.282396641838773 +2019-06-08 03:45:00,25.0,0.570634921,21.28359601540043 +2019-06-08 04:00:00,25.0,0.56957672,21.28479586697457 +2019-06-08 04:15:00,25.0,0.569179894,21.28599619640686 +2019-06-08 04:30:00,25.0,0.567989418,21.287197003542907 +2019-06-08 04:45:00,25.0,0.55952381,21.288398288228272 +2019-06-08 05:00:00,25.0,0.556878307,21.289600050308433 +2019-06-08 05:15:00,25.0,0.556349206,21.290802289628825 +2019-06-08 05:30:00,25.0,0.555026455,21.292005006034803 +2019-06-08 05:45:00,25.0,0.553571429,21.293208199371673 +2019-06-08 06:00:00,25.0,0.558994709,21.294411869484687 +2019-06-08 06:15:00,25.0,0.55462963,21.295616016219014 +2019-06-08 06:30:00,25.0,0.541798942,21.296820639419785 +2019-06-08 06:45:00,25.0,0.539550265,21.29802573893205 +2019-06-08 07:00:00,25.0,0.541666667,21.299231314600814 +2019-06-08 07:15:00,25.0,0.540740741,21.300437366271 +2019-06-08 07:30:00,25.0,0.542989418,21.301643893787496 +2019-06-08 07:45:00,25.0,0.538359788,21.302850896995114 +2019-06-08 08:00:00,25.0,0.503042328,21.3040583757386 +2019-06-08 08:15:00,25.0,0.495767196,21.305266329862647 +2019-06-08 08:30:00,25.0,0.514285714,21.306474759211888 +2019-06-08 08:45:00,25.0,0.538756614,21.307683663630893 +2019-06-08 09:00:00,25.0,0.529100529,21.308893042964165 +2019-06-08 09:15:00,25.0,0.518650794,21.310102897056154 +2019-06-08 09:30:00,25.0,0.512433862,21.31131322575125 +2019-06-08 09:45:00,25.0,0.526719577,21.31252402889377 +2019-06-08 10:00:00,25.0,0.494179894,21.313735306327978 +2019-06-08 10:15:00,25.0,0.470899471,21.31494705789808 +2019-06-08 10:30:00,25.0,0.466402116,21.31615928344822 +2019-06-08 10:45:00,25.0,0.45952381,21.317371982822475 +2019-06-08 11:00:00,25.0,0.471428571,21.318585155864866 +2019-06-08 11:15:00,25.0,0.468386243,21.319798802419353 +2019-06-08 11:30:00,25.0,0.435714286,21.321012922329828 +2019-06-08 11:45:00,25.0,0.448280423,21.322227515440137 +2019-06-08 12:00:00,25.0,0.448015873,21.32344258159405 +2019-06-08 12:15:00,25.0,0.447751323,21.324658120635284 +2019-06-08 12:30:00,25.0,0.450925926,21.325874132407495 +2019-06-08 12:45:00,25.0,0.43478836,21.327090616754273 +2019-06-08 13:00:00,25.0,0.425396825,21.328307573519158 +2019-06-08 13:15:00,25.0,0.40515873,21.329525002545616 +2019-06-08 13:30:00,25.0,0.403835979,21.33074290367706 +2019-06-08 13:45:00,25.0,0.42962963,21.33196127675684 +2019-06-08 14:00:00,25.0,0.451190476,21.333180121628246 +2019-06-08 14:15:00,25.0,0.448677249,21.33439943813451 +2019-06-08 14:30:00,25.0,0.452380952,21.335619226118798 +2019-06-08 14:45:00,25.0,0.447751323,21.33683948542422 +2019-06-08 15:00:00,25.0,0.441534392,21.338060215893822 +2019-06-08 15:15:00,25.0,0.440079365,21.339281417370593 +2019-06-08 15:30:00,25.0,0.441402116,21.340503089697457 +2019-06-08 15:45:00,25.0,0.451190476,21.341725232717277 +2019-06-08 16:00:00,25.0,0.449603175,21.342947846272867 +2019-06-08 16:15:00,25.0,0.459391534,21.34417093020696 +2019-06-08 16:30:00,25.0,0.479497354,21.345394484362252 +2019-06-08 16:45:00,25.0,0.530687831,21.346618508581358 +2019-06-08 17:00:00,25.0,0.52037037,21.347843002706846 +2019-06-08 17:15:00,25.0,0.509391534,21.349067966581213 +2019-06-08 17:30:00,25.0,0.516534392,21.350293400046905 +2019-06-08 17:45:00,25.0,0.510846561,21.351519302946308 +2019-06-08 18:00:00,25.0,0.523148148,21.352745675121735 +2019-06-08 18:15:00,25.0,0.598280423,21.353972516415453 +2019-06-08 18:30:00,25.0,0.628174603,21.35519982666966 +2019-06-08 18:45:00,25.0,0.627248677,21.356427605726505 +2019-06-08 19:00:00,25.0,0.625529101,21.357655853428053 +2019-06-08 19:15:00,25.0,0.624470899,21.358884569616336 +2019-06-08 19:30:00,25.0,0.623148148,21.36011375413331 +2019-06-08 19:45:00,25.0,0.621428571,21.361343406820872 +2019-06-08 20:00:00,25.0,0.622354497,21.362573527520865 +2019-06-08 20:15:00,25.0,0.62526455,21.363804116075066 +2019-06-08 20:30:00,25.0,0.630820106,21.365035172325193 +2019-06-08 20:45:00,25.0,0.643650794,21.36626669611291 +2019-06-08 21:00:00,25.0,0.658597884,21.367498687279806 +2019-06-08 21:15:00,25.0,0.669312169,21.36873114566743 +2019-06-08 21:30:00,25.0,0.675,21.369964071117252 +2019-06-08 21:45:00,25.0,0.682804233,21.371197463470697 +2019-06-08 22:00:00,25.0,0.680687831,21.372431322569117 +2019-06-08 22:15:00,25.0,0.687037037,21.373665648253812 +2019-06-08 22:30:00,25.0,0.69047619,21.374900440366027 +2019-06-08 22:45:00,25.0,0.701455026,21.37613569874693 +2019-06-08 23:00:00,25.0,0.711375661,21.377371423237644 +2019-06-08 23:15:00,25.0,0.713492063,21.378607613679225 +2019-06-08 23:30:00,25.0,0.720767196,21.379844269912677 +2019-06-08 23:45:00,25.0,0.723015873,21.381081391778935 +2019-06-09 00:00:00,25.0,0.726322751,21.38231897911887 +2019-06-09 00:15:00,25.0,0.725529101,21.383557031773318 +2019-06-09 00:30:00,25.0,0.725,21.38479554958302 +2019-06-09 00:45:00,25.0,0.713756614,21.38603453238869 +2019-06-09 01:00:00,25.0,0.715079365,21.38727398003095 +2019-06-09 01:15:00,25.0,0.711507937,21.388513892350396 +2019-06-09 01:30:00,25.0,0.709656085,21.389754269187538 +2019-06-09 01:45:00,25.0,0.714153439,21.39099511038284 +2019-06-09 02:00:00,25.0,0.719179894,21.3922364157767 +2019-06-09 02:15:00,25.0,0.71494709,21.39347818520946 +2019-06-09 02:30:00,25.0,0.707936508,21.394720418521402 +2019-06-09 02:45:00,25.0,0.707539683,21.39596311555274 +2019-06-09 03:00:00,25.0,0.716269841,21.397206276143642 +2019-06-09 03:15:00,25.0,0.715079365,21.39844990013421 +2019-06-09 03:30:00,25.0,0.704761905,21.399693987364483 +2019-06-09 03:45:00,25.0,0.691402116,21.400938537674445 +2019-06-09 04:00:00,25.0,0.68968254,21.40218355090402 +2019-06-09 04:15:00,25.0,0.669179894,21.403429026893072 +2019-06-09 04:30:00,25.0,0.644312169,21.4046749654814 +2019-06-09 04:45:00,25.0,0.615608466,21.405921366508753 +2019-06-09 05:00:00,25.0,0.591402116,21.40716822981482 +2019-06-09 05:15:00,25.0,0.570634921,21.408415555239216 +2019-06-09 05:30:00,25.0,0.529761905,21.409663342621513 +2019-06-09 05:45:00,25.0,0.486243386,21.41091159180122 +2019-06-09 06:00:00,25.0,0.453306878,21.41216030261778 +2019-06-09 06:15:00,25.0,0.426455026,21.413409474910583 +2019-06-09 06:30:00,25.0,0.407010582,21.414659108518958 +2019-06-09 06:45:00,25.0,0.404232804,21.415909203282176 +2019-06-09 07:00:00,25.0,0.40489418,21.417159759039443 +2019-06-09 07:15:00,25.0,0.388492063,21.41841077562991 +2019-06-09 07:30:00,25.0,0.369312169,21.419662252892667 +2019-06-09 07:45:00,25.0,0.359391534,21.420914190666753 +2019-06-09 08:00:00,25.0,0.367989418,21.422166588791136 +2019-06-09 08:15:00,25.0,0.370502646,21.423419447104727 +2019-06-09 08:30:00,25.0,0.371164021,21.424672765446385 +2019-06-09 08:45:00,25.0,0.353835979,21.425926543654903 +2019-06-09 09:00:00,25.0,0.338095238,21.42718078156902 +2019-06-09 09:15:00,25.0,0.334656085,21.42843547902741 +2019-06-09 09:30:00,25.0,0.329497354,21.429690635868695 +2019-06-09 09:45:00,25.0,0.326322751,21.430946251931424 +2019-06-09 10:00:00,25.0,0.315608466,21.432202327054107 +2019-06-09 10:15:00,25.0,0.305026455,21.43345886107518 +2019-06-09 10:30:00,25.0,0.291137566,21.434715853833026 +2019-06-09 10:45:00,25.0,0.275529101,21.435973305165973 +2019-06-09 11:00:00,25.0,0.263888889,21.437231214912273 +2019-06-09 11:15:00,25.0,0.26494709,21.43848958291014 +2019-06-09 11:30:00,25.0,0.262566138,21.439748408997716 +2019-06-09 11:45:00,25.0,0.258068783,21.441007693013088 +2019-06-09 12:00:00,25.0,0.24537037,21.442267434794285 +2019-06-09 12:15:00,25.0,0.231746032,21.443527634179276 +2019-06-09 12:30:00,25.0,0.207275132,21.44478829100597 +2019-06-09 12:45:00,25.0,0.185978836,21.44604940511222 +2019-06-09 13:00:00,25.0,0.16494709,21.44731097633582 +2019-06-09 13:15:00,25.0,0.146560847,21.4485730045145 +2019-06-09 13:30:00,25.0,0.131878307,21.449835489485935 +2019-06-09 13:45:00,25.0,0.122354497,21.451098431087747 +2019-06-09 14:00:00,25.0,0.115873016,21.452361829157486 +2019-06-09 14:15:00,25.0,0.100925926,21.453625683532657 +2019-06-09 14:30:00,25.0,0.087830688,21.454889994050696 +2019-06-09 14:45:00,25.0,0.078968254,21.456154760548984 +2019-06-09 15:00:00,25.0,0.071693122,21.45741998286485 +2019-06-09 15:15:00,25.0,0.061904762,21.45868566083555 +2019-06-09 15:30:00,25.0,0.054100529,21.4599517942983 +2019-06-09 15:45:00,25.0,0.044973545,21.46121838309023 +2019-06-09 16:00:00,25.0,0.037037037,21.46248542704845 +2019-06-09 16:15:00,25.0,0.031613757,21.46375292600997 +2019-06-09 16:30:00,25.0,0.027777778,21.465020879811775 +2019-06-09 16:45:00,25.0,0.022354497,21.46628928829077 +2019-06-09 17:00:00,25.0,0.019179894,21.467558151283814 +2019-06-09 17:15:00,25.0,0.014285714,21.468827468627705 +2019-06-09 17:30:00,25.0,0.010714286,21.47009724015917 +2019-06-09 17:45:00,25.0,0.008068783,21.471367465714902 +2019-06-09 18:00:00,25.0,0.007010582,21.47263814513151 +2019-06-09 18:15:00,25.0,0.004497354,21.473909278245557 +2019-06-09 18:30:00,25.0,0.003835979,21.47518086489356 +2019-06-09 18:45:00,25.0,0.004100529,21.476452904911948 +2019-06-09 19:00:00,25.0,0.004761905,21.477725398137117 +2019-06-09 19:15:00,25.0,0.005026455,21.478998344405394 +2019-06-09 19:30:00,25.0,0.005555556,21.480271743553054 +2019-06-09 19:45:00,25.0,0.005952381,21.4815455954163 +2019-06-09 20:00:00,25.0,0.00542328,21.482819899831295 +2019-06-09 20:15:00,25.0,0.003968254,21.484094656634134 +2019-06-09 20:30:00,25.0,0.003835979,21.48536986566085 +2019-06-09 20:45:00,25.0,0.004497354,21.486645526747427 +2019-06-09 21:00:00,25.0,0.005026455,21.48792163972978 +2019-06-09 21:15:00,25.0,0.006084656,21.489198204443785 +2019-06-09 21:30:00,25.0,0.009259259,21.490475220725234 +2019-06-09 21:45:00,25.0,0.011904762,21.49175268840988 +2019-06-09 22:00:00,25.0,0.01521164,21.493030607333413 +2019-06-09 22:15:00,25.0,0.018386243,21.494308977331464 +2019-06-09 22:30:00,25.0,0.023941799,21.495587798239605 +2019-06-09 22:45:00,25.0,0.026322751,21.496867069893348 +2019-06-09 23:00:00,25.0,0.029365079,21.498146792128153 +2019-06-09 23:15:00,25.0,0.032671958,21.499426964779428 +2019-06-09 23:30:00,25.0,0.037169312,21.5007075876825 +2019-06-09 23:45:00,25.0,0.045502646,21.50198866067266 +2019-06-10 00:00:00,25.0,0.054365079,21.503270183585126 +2019-06-10 00:15:00,25.0,0.061375661,21.504552156255077 +2019-06-10 00:30:00,25.0,0.064814815,21.505834578517614 +2019-06-10 00:45:00,25.0,0.069312169,21.50711745020779 +2019-06-10 01:00:00,25.0,0.076058201,21.508400771160606 +2019-06-10 01:15:00,25.0,0.083068783,21.509684541210987 +2019-06-10 01:30:00,25.0,0.098544974,21.510968760193823 +2019-06-10 01:45:00,25.0,0.112698413,21.512253427943925 +2019-06-10 02:00:00,25.0,0.123412698,21.513538544296065 +2019-06-10 02:15:00,25.0,0.132142857,21.51482410908494 +2019-06-10 02:30:00,25.0,0.136772487,21.5161101221452 +2019-06-10 02:45:00,25.0,0.146560847,21.51739658331144 +2019-06-10 03:00:00,25.0,0.159656085,21.518683492418187 +2019-06-10 03:15:00,25.0,0.169312169,21.51997084929992 +2019-06-10 03:30:00,25.0,0.183862434,21.52125865379105 +2019-06-10 03:45:00,25.0,0.21031746,21.522546905725946 +2019-06-10 04:00:00,25.0,0.231216931,21.5238356049389 +2019-06-10 04:15:00,25.0,0.242592593,21.52512475126416 +2019-06-10 04:30:00,25.0,0.259126984,21.52641434453592 +2019-06-10 04:45:00,25.0,0.286375661,21.527704384588297 +2019-06-10 05:00:00,25.0,0.311640212,21.528994871255374 +2019-06-10 05:15:00,25.0,0.330291005,21.530285804371157 +2019-06-10 05:30:00,25.0,0.345899471,21.531577183769613 +2019-06-10 05:45:00,25.0,0.363756614,21.53286900928463 +2019-06-10 06:00:00,25.0,0.375793651,21.53416128075006 +2019-06-10 06:15:00,25.0,0.393386243,21.535453997999685 +2019-06-10 06:30:00,25.0,0.399206349,21.53674716086723 +2019-06-10 06:45:00,25.0,0.408333333,21.538040769186374 +2019-06-10 07:00:00,25.0,0.398677249,21.539334822790718 +2019-06-10 07:15:00,25.0,0.375925926,21.540629321513826 +2019-06-10 07:30:00,25.0,0.362962963,21.54192426518919 +2019-06-10 07:45:00,25.0,0.355952381,21.543219653650258 +2019-06-10 08:00:00,25.0,0.382142857,21.544515486730415 +2019-06-10 08:15:00,25.0,0.407010582,21.545811764262982 +2019-06-10 08:30:00,25.0,0.429497354,21.547108486081235 +2019-06-10 08:45:00,25.0,0.44457672,21.548405652018378 +2019-06-10 09:00:00,25.0,0.455952381,21.549703261907574 +2019-06-10 09:15:00,25.0,0.476587302,21.55100131558192 +2019-06-10 09:30:00,25.0,0.499338624,21.552299812874452 +2019-06-10 09:45:00,25.0,0.503306878,21.553598753618164 +2019-06-10 10:00:00,25.0,0.504100529,21.554898137645978 +2019-06-10 10:15:00,25.0,0.501455026,21.556197964790762 +2019-06-10 10:30:00,25.0,0.50952381,21.55749823488533 +2019-06-10 10:45:00,25.0,0.526322751,21.55879894776244 +2019-06-10 11:00:00,25.0,0.541798942,21.560100103254797 +2019-06-10 11:15:00,25.0,0.550793651,21.56140170119503 +2019-06-10 11:30:00,25.0,0.567195767,21.562703741415735 +2019-06-10 11:45:00,25.0,0.566137566,21.564006223749438 +2019-06-10 12:00:00,25.0,0.56494709,21.565309148028607 +2019-06-10 12:15:00,25.0,0.557804233,21.566612514085662 +2019-06-10 12:30:00,25.0,0.556746032,21.567916321752957 +2019-06-10 12:45:00,25.0,0.567724868,21.5692205708628 +2019-06-10 13:00:00,25.0,0.562698413,21.570525261247425 +2019-06-10 13:15:00,25.0,0.55952381,21.57183039273903 +2019-06-10 13:30:00,25.0,0.556878307,21.573135965169737 +2019-06-10 13:45:00,25.0,0.554232804,21.57444197837163 +2019-06-10 14:00:00,25.0,0.563888889,21.575748432176717 +2019-06-10 14:15:00,25.0,0.588492063,21.57705532641696 +2019-06-10 14:30:00,25.0,0.598015873,21.578362660924274 +2019-06-10 14:45:00,25.0,0.604761905,21.579670435530495 +2019-06-10 15:00:00,25.0,0.608597884,21.58097865006742 +2019-06-10 15:15:00,25.0,0.621560847,21.582287304366776 +2019-06-10 15:30:00,25.0,0.638492063,21.58359639826025 +2019-06-10 15:45:00,25.0,0.649470899,21.58490593157946 +2019-06-10 16:00:00,25.0,0.644179894,21.58621590415597 +2019-06-10 16:15:00,25.0,0.658201058,21.58752631582129 +2019-06-10 16:30:00,25.0,0.673148148,21.588837166406865 +2019-06-10 16:45:00,25.0,0.676058201,21.5901484557441 +2019-06-10 17:00:00,25.0,0.67473545,21.591460183664328 +2019-06-10 17:15:00,25.0,0.678968254,21.59277234999883 +2019-06-10 17:30:00,25.0,0.680026455,21.594084954578843 +2019-06-10 17:45:00,25.0,0.675,21.595397997235526 +2019-06-10 18:00:00,25.0,0.676455026,21.596711477799996 +2019-06-10 18:15:00,25.0,0.684126984,21.598025396103306 +2019-06-10 18:30:00,25.0,0.696428571,21.599339751976466 +2019-06-10 18:45:00,25.0,0.706216931,21.60065454525041 +2019-06-10 19:00:00,25.0,0.708333333,21.601969775756032 +2019-06-10 19:15:00,25.0,0.705820106,21.603285443324168 +2019-06-10 19:30:00,25.0,0.697222222,21.604601547785585 +2019-06-10 19:45:00,25.0,0.700661376,21.605918088971006 +2019-06-10 20:00:00,25.0,0.703042328,21.607235066711095 +2019-06-10 20:15:00,25.0,0.703835979,21.60855248083646 +2019-06-10 20:30:00,25.0,0.712037037,21.609870331177653 +2019-06-10 20:45:00,25.0,0.713227513,21.611188617565162 +2019-06-10 21:00:00,25.0,0.709656085,21.61250733982944 +2019-06-10 21:15:00,25.0,0.706878307,21.613826497800854 +2019-06-10 21:30:00,25.0,0.694444444,21.615146091309743 +2019-06-10 21:45:00,25.0,0.677248677,21.616466120186367 +2019-06-10 22:00:00,25.0,0.678703704,21.617786584260955 +2019-06-10 22:15:00,25.0,0.664153439,21.61910748336365 +2019-06-10 22:30:00,25.0,0.664417989,21.620428817324566 +2019-06-10 22:45:00,25.0,0.669708995,21.621750585973746 +2019-06-10 23:00:00,25.0,0.662301587,21.623072789141183 +2019-06-10 23:15:00,25.0,0.661507937,21.62439542665681 +2019-06-10 23:30:00,25.0,0.662169312,21.625718498350505 +2019-06-10 23:45:00,25.0,0.658201058,21.627042004052097 +2019-06-11 00:00:00,25.0,0.657936508,21.628365943591348 +2019-06-11 00:15:00,25.0,0.657010582,21.62969031679797 +2019-06-11 00:30:00,25.0,0.637962963,21.631015123501626 +2019-06-11 00:45:00,25.0,0.636375661,21.632340363531906 +2019-06-11 01:00:00,25.0,0.637962963,21.633666036718363 +2019-06-11 01:15:00,25.0,0.644312169,21.634992142890482 +2019-06-11 01:30:00,25.0,0.654761905,21.636318681877697 +2019-06-11 01:45:00,25.0,0.646031746,21.637645653509388 +2019-06-11 02:00:00,25.0,0.633994709,21.63897305761487 +2019-06-11 02:15:00,25.0,0.642989418,21.640300894023415 +2019-06-11 02:30:00,25.0,0.643783069,21.641629162564232 +2019-06-11 02:45:00,25.0,0.629761905,21.642957863066478 +2019-06-11 03:00:00,25.0,0.608862434,21.64428699535925 +2019-06-11 03:15:00,25.0,0.587433862,21.645616559271588 +2019-06-11 03:30:00,25.0,0.574338624,21.64694655463249 +2019-06-11 03:45:00,25.0,0.562169312,21.648276981270882 +2019-06-11 04:00:00,25.0,0.553439153,21.649607839015644 +2019-06-11 04:15:00,25.0,0.546296296,21.650939127695594 +2019-06-11 04:30:00,25.0,0.543915344,21.65227084713951 +2019-06-11 04:45:00,25.0,0.533465608,21.653602997176087 +2019-06-11 05:00:00,25.0,0.53452381,21.65493557763399 +2019-06-11 05:15:00,25.0,0.521164021,21.65626858834182 +2019-06-11 05:30:00,25.0,0.497619048,21.657602029128117 +2019-06-11 05:45:00,25.0,0.511904762,21.65893589982138 +2019-06-11 06:00:00,25.0,0.489285714,21.660270200250032 +2019-06-11 06:15:00,25.0,0.442195767,21.66160493024246 +2019-06-11 06:30:00,25.0,0.40952381,21.662940089626986 +2019-06-11 06:45:00,25.0,0.388095238,21.664275678231878 +2019-06-11 07:00:00,25.0,0.372883598,21.66561169588535 +2019-06-11 07:15:00,25.0,0.349867725,21.66694814241556 +2019-06-11 07:30:00,25.0,0.333201058,21.66828501765061 +2019-06-11 07:45:00,25.0,0.32037037,21.66962232141855 +2019-06-11 08:00:00,25.0,0.297222222,21.670960053547375 +2019-06-11 08:15:00,25.0,0.291931217,21.672298213865016 +2019-06-11 08:30:00,25.0,0.287037037,21.67363680219936 +2019-06-11 08:45:00,25.0,0.280820106,21.674975818378236 +2019-06-11 09:00:00,25.0,0.274206349,21.676315262229416 +2019-06-11 09:15:00,25.0,0.271296296,21.677655133580615 +2019-06-11 09:30:00,25.0,0.262830688,21.678995432259498 +2019-06-11 09:45:00,25.0,0.250529101,21.680336158093674 +2019-06-11 10:00:00,25.0,0.238756614,21.68167731091069 +2019-06-11 10:15:00,25.0,0.230952381,21.683018890538047 +2019-06-11 10:30:00,25.0,0.230026455,21.684360896803195 +2019-06-11 10:45:00,25.0,0.205687831,21.68570332953351 +2019-06-11 11:00:00,25.0,0.183730159,21.687046188556334 +2019-06-11 11:15:00,25.0,0.186904762,21.688389473698937 +2019-06-11 11:30:00,25.0,0.171164021,21.68973318478855 +2019-06-11 11:45:00,25.0,0.150132275,21.69107732165234 +2019-06-11 12:00:00,25.0,0.150396825,21.692421884117422 +2019-06-11 12:15:00,25.0,0.15026455,21.693766872010855 +2019-06-11 12:30:00,25.0,0.166534392,21.695112285159638 +2019-06-11 12:45:00,25.0,0.16521164,21.696458123390727 +2019-06-11 13:00:00,25.0,0.165343915,21.697804386531015 +2019-06-11 13:15:00,25.0,0.16547619,21.69915107440734 +2019-06-11 13:30:00,25.0,0.156216931,21.700498186846495 +2019-06-11 13:45:00,25.0,0.152777778,21.701845723675206 +2019-06-11 14:00:00,25.0,0.15026455,21.70319368472015 +2019-06-11 14:15:00,25.0,0.147619048,21.70454206980795 +2019-06-11 14:30:00,25.0,0.151190476,21.705890878765175 +2019-06-11 14:45:00,25.0,0.17037037,21.707240111418333 +2019-06-11 15:00:00,25.0,0.202513228,21.708589767593885 +2019-06-11 15:15:00,25.0,0.215740741,21.709939847118243 +2019-06-11 15:30:00,25.0,0.174867725,21.711290349817745 +2019-06-11 15:45:00,25.0,0.145634921,21.712641275518692 +2019-06-11 16:00:00,25.0,0.130687831,21.71399262404732 +2019-06-11 16:15:00,25.0,0.151322751,21.715344395229828 +2019-06-11 16:30:00,25.0,0.186111111,21.716696588892333 +2019-06-11 16:45:00,25.0,0.210978836,21.718049204860918 +2019-06-11 17:00:00,25.0,0.266269841,21.719402242961614 +2019-06-11 17:15:00,25.0,0.293518519,21.720755703020377 +2019-06-11 17:30:00,25.0,0.296693122,21.722109584863134 +2019-06-11 17:45:00,25.0,0.302645503,21.723463888315734 +2019-06-11 18:00:00,25.0,0.325529101,21.724818613203993 +2019-06-11 18:15:00,25.0,0.342989418,21.726173759353657 +2019-06-11 18:30:00,25.0,0.323677249,21.727529326590428 +2019-06-11 18:45:00,25.0,0.29484127,21.728885314739948 +2019-06-11 19:00:00,25.0,0.252910053,21.730241723627806 +2019-06-11 19:15:00,25.0,0.226719577,21.73159855307954 +2019-06-11 19:30:00,25.0,0.221693122,21.73295580292063 +2019-06-11 19:45:00,25.0,0.225396825,21.7343134729765 +2019-06-11 20:00:00,25.0,0.220502646,21.73567156307253 +2019-06-11 20:15:00,25.0,0.20542328,21.737030073034035 +2019-06-11 20:30:00,25.0,0.182142857,21.738389002686283 +2019-06-11 20:45:00,25.0,0.163227513,21.73974835185448 +2019-06-11 21:00:00,25.0,0.15489418,21.74110812036379 +2019-06-11 21:15:00,25.0,0.155952381,21.742468308039314 +2019-06-11 21:30:00,25.0,0.157407407,21.743828914706096 +2019-06-11 21:45:00,25.0,0.149074074,21.745189940189142 +2019-06-11 22:00:00,25.0,0.136111111,21.746551384313385 +2019-06-11 22:15:00,25.0,0.126984127,21.747913246903718 +2019-06-11 22:30:00,25.0,0.126455026,21.74927552778497 +2019-06-11 22:45:00,25.0,0.128703704,21.75063822678193 +2019-06-11 23:00:00,25.0,0.123677249,21.752001343719314 +2019-06-11 23:15:00,25.0,0.124074074,21.7533648784218 +2019-06-11 23:30:00,25.0,0.125925926,21.75472883071401 +2019-06-11 23:45:00,25.0,0.130026455,21.756093200420505 +2019-06-12 00:00:00,25.0,0.131216931,21.757457987365797 +2019-06-12 00:15:00,25.0,0.134656085,21.758823191374344 +2019-06-12 00:30:00,25.0,0.125925926,21.760188812270556 +2019-06-12 00:45:00,25.0,0.107539683,21.76155484987877 +2019-06-12 01:00:00,25.0,0.117592593,21.762921304023294 +2019-06-12 01:15:00,25.0,0.119973545,21.764288174528374 +2019-06-12 01:30:00,25.0,0.126984127,21.765655461218195 +2019-06-12 01:45:00,25.0,0.127248677,21.76702316391689 +2019-06-12 02:00:00,25.0,0.130291005,21.768391282448547 +2019-06-12 02:15:00,25.0,0.131349206,21.769759816637194 +2019-06-12 02:30:00,25.0,0.078968254,21.771128766306806 +2019-06-12 02:45:00,25.0,0.017989418,21.772498131281306 +2019-06-12 03:00:00,25.0,0.016269841,21.773867911384567 +2019-06-12 03:15:00,25.0,0.007936508,21.775238106440398 +2019-06-12 03:30:00,25.0,0.008597884,21.776608716272566 +2019-06-12 03:45:00,25.0,0.022486772,21.777979740704776 +2019-06-12 04:00:00,25.0,0.028968254,21.77935117956069 +2019-06-12 04:15:00,25.0,0.058994709,21.780723032663904 +2019-06-12 04:30:00,25.0,0.110978836,21.78209529983797 +2019-06-12 04:45:00,25.0,0.119312169,21.783467980906384 +2019-06-12 05:00:00,25.0,0.127777778,21.784841075692587 +2019-06-12 05:15:00,25.0,0.130952381,21.786214584019973 +2019-06-12 05:30:00,25.0,0.133465608,21.78758850571187 +2019-06-12 05:45:00,25.0,0.134391534,21.788962840591566 +2019-06-12 06:00:00,25.0,0.136375661,21.790337588482295 +2019-06-12 06:15:00,25.0,0.143253968,21.791712749207225 +2019-06-12 06:30:00,25.0,0.153703704,21.79308832258949 +2019-06-12 06:45:00,25.0,0.154761905,21.79446430845215 +2019-06-12 07:00:00,25.0,0.158730159,21.795840706618225 +2019-06-12 07:15:00,25.0,0.161904762,21.797217516910685 +2019-06-12 07:30:00,25.0,0.163492063,21.798594739152435 +2019-06-12 07:45:00,25.0,0.155952381,21.799972373166337 +2019-06-12 08:00:00,25.0,0.152248677,21.801350418775197 +2019-06-12 08:15:00,25.0,0.165873016,21.80272887580177 +2019-06-12 08:30:00,25.0,0.19021164,21.804107744068745 +2019-06-12 08:45:00,25.0,0.190873016,21.805487023398783 +2019-06-12 09:00:00,25.0,0.187830688,21.80686671361447 +2019-06-12 09:15:00,25.0,0.193121693,21.808246814538343 +2019-06-12 09:30:00,25.0,0.201719577,21.8096273259929 +2019-06-12 09:45:00,25.0,0.161507937,21.811008247800565 +2019-06-12 10:00:00,25.0,0.128571429,21.812389579783733 +2019-06-12 10:15:00,25.0,0.125661376,21.813771321764726 +2019-06-12 10:30:00,25.0,0.137169312,21.81515347356583 +2019-06-12 10:45:00,25.0,0.14973545,21.816536035009253 +2019-06-12 11:00:00,25.0,0.158597884,21.81791900591718 +2019-06-12 11:15:00,25.0,0.161375661,21.81930238611173 +2019-06-12 11:30:00,25.0,0.171560847,21.82068617541496 +2019-06-12 11:45:00,25.0,0.182804233,21.822070373648895 +2019-06-12 12:00:00,25.0,0.199470899,21.82345498063549 +2019-06-12 12:15:00,25.0,0.191666667,21.82483999619665 +2019-06-12 12:30:00,25.0,0.189153439,21.82622542015424 +2019-06-12 12:45:00,25.0,0.198677249,21.82761125233006 +2019-06-12 13:00:00,25.0,0.204365079,21.82899749254586 +2019-06-12 13:15:00,25.0,0.179100529,21.830384140623337 +2019-06-12 13:30:00,25.0,0.152910053,21.83177119638414 +2019-06-12 13:45:00,25.0,0.155291005,21.83315865964986 +2019-06-12 14:00:00,25.0,0.147619048,21.834546530242044 +2019-06-12 14:15:00,25.0,0.148280423,21.835934807982174 +2019-06-12 14:30:00,25.0,0.154497354,21.837323492691688 +2019-06-12 14:45:00,25.0,0.165079365,21.838712584191978 +2019-06-12 15:00:00,25.0,0.167724868,21.840102082304362 +2019-06-12 15:15:00,25.0,0.15,21.841491986850134 +2019-06-12 15:30:00,25.0,0.141666667,21.842882297650508 +2019-06-12 15:45:00,25.0,0.149603175,21.844273014526667 +2019-06-12 16:00:00,25.0,0.158068783,21.845664137299735 +2019-06-12 16:15:00,25.0,0.200793651,21.847055665790776 +2019-06-12 16:30:00,25.0,0.180952381,21.848447599820815 +2019-06-12 16:45:00,25.0,0.149206349,21.84983993921081 +2019-06-12 17:00:00,25.0,0.156216931,21.851232683781685 +2019-06-12 17:15:00,25.0,0.128306878,21.852625833354296 +2019-06-12 17:30:00,25.0,0.125529101,21.854019387749453 +2019-06-12 17:45:00,25.0,0.123677249,21.855413346787916 +2019-06-12 18:00:00,25.0,0.10978836,21.85680771029039 +2019-06-12 18:15:00,25.0,0.114285714,21.85820247807753 +2019-06-12 18:30:00,25.0,0.152380952,21.85959764996993 +2019-06-12 18:45:00,25.0,0.194179894,21.860993225788153 +2019-06-12 19:00:00,25.0,0.183201058,21.862389205352684 +2019-06-12 19:15:00,25.0,0.183068783,21.863785588483978 +2019-06-12 19:30:00,25.0,0.192063492,21.865182375002426 +2019-06-12 19:45:00,25.0,0.229232804,21.86657956472837 +2019-06-12 20:00:00,25.0,0.288359788,21.8679771574821 +2019-06-12 20:15:00,25.0,0.317857143,21.86937515308385 +2019-06-12 20:30:00,25.0,0.385978836,21.870773551353818 +2019-06-12 20:45:00,25.0,0.467857143,21.872172352112123 +2019-06-12 21:00:00,25.0,0.522619048,21.873571555178863 +2019-06-12 21:15:00,25.0,0.524470899,21.874971160374063 +2019-06-12 21:30:00,25.0,0.517724868,21.876371167517696 +2019-06-12 21:45:00,25.0,0.532804233,21.877771576429705 +2019-06-12 22:00:00,25.0,0.539021164,21.87917238692995 +2019-06-12 22:15:00,25.0,0.558465608,21.880573598838268 +2019-06-12 22:30:00,25.0,0.594973545,21.881975211974424 +2019-06-12 22:45:00,25.0,0.638492063,21.883377226158142 +2019-06-12 23:00:00,25.0,0.586375661,21.884779641209096 +2019-06-12 23:15:00,25.0,0.558597884,21.886182456946894 +2019-06-12 23:30:00,25.0,0.54484127,21.887585673191115 +2019-06-12 23:45:00,25.0,0.53452381,21.888989289761263 +2019-06-13 00:00:00,25.0,0.522883598,21.890393306476806 +2019-06-13 00:15:00,25.0,0.531613757,21.891797723157158 +2019-06-13 00:30:00,25.0,0.507407407,21.893202539621676 +2019-06-13 00:45:00,25.0,0.487698413,21.894607755689677 +2019-06-13 01:00:00,25.0,0.489285714,21.896013371180405 +2019-06-13 01:15:00,25.0,0.470634921,21.897419385913082 +2019-06-13 01:30:00,25.0,0.455026455,21.898825799706852 +2019-06-13 01:45:00,25.0,0.426058201,21.900232612380822 +2019-06-13 02:00:00,25.0,0.420238095,21.901639823754046 +2019-06-13 02:15:00,25.0,0.418386243,21.903047433645526 +2019-06-13 02:30:00,25.0,0.393518519,21.90445544187421 +2019-06-13 02:45:00,25.0,0.383201058,21.905863848258992 +2019-06-13 03:00:00,25.0,0.373015873,21.90727265261873 +2019-06-13 03:15:00,25.0,0.361243386,21.90868185477221 +2019-06-13 03:30:00,25.0,0.325925926,21.910091454538186 +2019-06-13 03:45:00,25.0,0.315608466,21.911501451735347 +2019-06-13 04:00:00,25.0,0.320238095,21.912911846182336 +2019-06-13 04:15:00,25.0,0.314285714,21.914322637697747 +2019-06-13 04:30:00,25.0,0.299074074,21.91573382610012 +2019-06-13 04:45:00,25.0,0.300132275,21.917145411207944 +2019-06-13 05:00:00,25.0,0.305291005,21.918557392839656 +2019-06-13 05:15:00,25.0,0.310978836,21.919969770813644 +2019-06-13 05:30:00,25.0,0.331878307,21.921382544948248 +2019-06-13 05:45:00,25.0,0.342460317,21.922795715061753 +2019-06-13 06:00:00,25.0,0.362037037,21.92420928097239 +2019-06-13 06:15:00,25.0,0.367063492,21.925623242498347 +2019-06-13 06:30:00,25.0,0.382671958,21.92703759945776 +2019-06-13 06:45:00,25.0,0.38042328,21.928452351668696 +2019-06-13 07:00:00,25.0,0.382671958,21.929867498949204 +2019-06-13 07:15:00,25.0,0.390608466,21.931283041117258 +2019-06-13 07:30:00,25.0,0.38968254,21.932698977990782 +2019-06-13 07:45:00,25.0,0.383597884,21.934115309387664 +2019-06-13 08:00:00,25.0,0.378968254,21.93553203512573 +2019-06-13 08:15:00,25.0,0.38015873,21.93694915502275 +2019-06-13 08:30:00,25.0,0.413359788,21.93836666889646 +2019-06-13 08:45:00,25.0,0.433994709,21.93978457656453 +2019-06-13 09:00:00,25.0,0.448677249,21.941202877844592 +2019-06-13 09:15:00,25.0,0.467328042,21.942621572554213 +2019-06-13 09:30:00,25.0,0.448809524,21.944040660510925 +2019-06-13 09:45:00,25.0,0.445767196,21.945460141532195 +2019-06-13 10:00:00,25.0,0.445767196,21.946880015435447 +2019-06-13 10:15:00,25.0,0.451587302,21.94830028203806 +2019-06-13 10:30:00,25.0,0.468915344,21.949720941157345 +2019-06-13 10:45:00,25.0,0.476322751,21.951141992610584 +2019-06-13 11:00:00,25.0,0.477513228,21.95256343621499 +2019-06-13 11:15:00,25.0,0.493650794,21.953985271787744 +2019-06-13 11:30:00,25.0,0.500132275,21.955407499145952 +2019-06-13 11:45:00,25.0,0.48042328,21.956830118106694 +2019-06-13 12:00:00,25.0,0.467724868,21.95825312848699 +2019-06-13 12:15:00,25.0,0.467195767,21.959676530103803 +2019-06-13 12:30:00,25.0,0.468121693,21.961100322774058 +2019-06-13 12:45:00,25.0,0.456746032,21.962524506314615 +2019-06-13 13:00:00,25.0,0.446296296,21.963949080542303 +2019-06-13 13:15:00,25.0,0.438227513,21.96537404527388 +2019-06-13 13:30:00,25.0,0.403835979,21.966799400326067 +2019-06-13 13:45:00,25.0,0.350396825,21.96822514551554 +2019-06-13 14:00:00,25.0,0.303571429,21.969651280658905 +2019-06-13 14:15:00,25.0,0.28478836,21.971077805572733 +2019-06-13 14:30:00,25.0,0.299470899,21.97250472007354 +2019-06-13 14:45:00,25.0,0.323015873,21.9739320239778 +2019-06-13 15:00:00,25.0,0.314021164,21.97535971710192 +2019-06-13 15:15:00,25.0,0.302248677,21.97678779926227 +2019-06-13 15:30:00,25.0,0.281746032,21.97821627027517 +2019-06-13 15:45:00,25.0,0.251984127,21.979645129956882 +2019-06-13 16:00:00,25.0,0.211243386,21.98107437812363 +2019-06-13 16:15:00,25.0,0.179365079,21.982504014591573 +2019-06-13 16:30:00,25.0,0.164021164,21.983934039176834 +2019-06-13 16:45:00,25.0,0.149206349,21.98536445169547 +2019-06-13 17:00:00,25.0,0.14484127,21.98679525196351 +2019-06-13 17:15:00,25.0,0.150661376,21.988226439796918 +2019-06-13 17:30:00,25.0,0.175661376,21.989658015011603 +2019-06-13 17:45:00,25.0,0.22473545,21.991089977423446 +2019-06-13 18:00:00,25.0,0.21005291,21.992522326848253 +2019-06-13 18:15:00,25.0,0.189550265,21.993955063101794 +2019-06-13 18:30:00,25.0,0.166534392,21.995388185999794 +2019-06-13 18:45:00,25.0,0.144312169,21.996821695357916 +2019-06-13 19:00:00,25.0,0.14457672,21.998255590991782 +2019-06-13 19:15:00,25.0,0.161772487,21.999689872716953 +2019-06-13 19:30:00,25.0,0.156878307,22.00112454034896 +2019-06-13 19:45:00,25.0,0.168121693,22.002559593703264 +2019-06-13 20:00:00,25.0,0.191931217,22.003995032595288 +2019-06-13 20:15:00,25.0,0.259920635,22.005430856840405 +2019-06-13 20:30:00,25.0,0.27526455,22.00686706625393 +2019-06-13 20:45:00,25.0,0.277645503,22.00830366065114 +2019-06-13 21:00:00,25.0,0.301984127,22.00974063984725 +2019-06-13 21:15:00,25.0,0.327513228,22.01117800365745 +2019-06-13 21:30:00,25.0,0.345502646,22.012615751896835 +2019-06-13 21:45:00,25.0,0.374603175,22.014053884380502 +2019-06-13 22:00:00,25.0,0.39537037,22.015492400923463 +2019-06-13 22:15:00,25.0,0.399603175,22.016931301340698 +2019-06-13 22:30:00,25.0,0.421560847,22.018370585447133 +2019-06-13 22:45:00,25.0,0.436375661,22.01981025305764 +2019-06-13 23:00:00,25.0,0.451455026,22.021250303987046 +2019-06-13 23:15:00,25.0,0.476190476,22.02269073805013 +2019-06-13 23:30:00,25.0,0.476984127,22.02413155506162 +2019-06-13 23:45:00,25.0,0.487962963,22.025572754836194 +2019-06-14 00:00:00,25.0,0.498148148,22.027014337188483 +2019-06-14 00:15:00,25.0,0.519179894,22.028456301933065 +2019-06-14 00:30:00,25.0,0.523809524,22.029898648884473 +2019-06-14 00:45:00,25.0,0.553174603,22.03134137785719 +2019-06-14 01:00:00,25.0,0.554232804,22.032784488665644 +2019-06-14 01:15:00,25.0,0.507275132,22.034227981124225 +2019-06-14 01:30:00,25.0,0.48452381,22.035671855047262 +2019-06-14 01:45:00,25.0,0.460846561,22.037116110249045 +2019-06-14 02:00:00,25.0,0.453174603,22.03856074654381 +2019-06-14 02:15:00,25.0,0.444179894,22.04000576374574 +2019-06-14 02:30:00,25.0,0.433201058,22.041451161668977 +2019-06-14 02:45:00,25.0,0.433068783,22.042896940127616 +2019-06-14 03:00:00,25.0,0.416666667,22.044343098935688 +2019-06-14 03:15:00,25.0,0.385846561,22.04578963790719 +2019-06-14 03:30:00,25.0,0.373544974,22.047236556856063 +2019-06-14 03:45:00,25.0,0.350661376,22.048683855596202 +2019-06-14 04:00:00,25.0,0.326190476,22.050131533941453 +2019-06-14 04:15:00,25.0,0.292195767,22.051579591705607 +2019-06-14 04:30:00,25.0,0.291402116,22.05302802870242 +2019-06-14 04:45:00,25.0,0.282275132,22.054476844745583 +2019-06-14 05:00:00,25.0,0.278968254,22.055926039648753 +2019-06-14 05:15:00,25.0,0.285714286,22.05737561322552 +2019-06-14 05:30:00,25.0,0.267195767,22.05882556528945 +2019-06-14 05:45:00,25.0,0.276587302,22.060275895654037 +2019-06-14 06:00:00,25.0,0.297619048,22.06172660413274 +2019-06-14 06:15:00,25.0,0.302910053,22.063177690538968 +2019-06-14 06:30:00,25.0,0.327777778,22.064629154686074 +2019-06-14 06:45:00,25.0,0.312830688,22.06608099638737 +2019-06-14 07:00:00,25.0,0.288095238,22.067533215456116 +2019-06-14 07:15:00,25.0,0.274867725,22.068985811705527 +2019-06-14 07:30:00,25.0,0.256481481,22.07043878494876 +2019-06-14 07:45:00,25.0,0.239550265,22.071892134998933 +2019-06-14 08:00:00,25.0,0.221825397,22.07334586166912 +2019-06-14 08:15:00,25.0,0.218650794,22.07479996477233 +2019-06-14 08:30:00,25.0,0.216402116,22.07625444412154 +2019-06-14 08:45:00,25.0,0.20026455,22.077709299529662 +2019-06-14 09:00:00,25.0,0.192460317,22.079164530809578 +2019-06-14 09:15:00,25.0,0.193121693,22.08062013777411 +2019-06-14 09:30:00,25.0,0.17962963,22.08207612023603 +2019-06-14 09:45:00,25.0,0.170767196,22.083532478008078 +2019-06-14 10:00:00,25.0,0.170767196,22.08498921090292 +2019-06-14 10:15:00,25.0,0.15978836,22.0864463187332 +2019-06-14 10:30:00,25.0,0.148412698,22.087903801311487 +2019-06-14 10:45:00,25.0,0.13478836,22.08936165845033 +2019-06-14 11:00:00,25.0,0.119312169,22.09081988996221 +2019-06-14 11:15:00,25.0,0.121693122,22.092278495659563 +2019-06-14 11:30:00,25.0,0.120634921,22.09373747535479 +2019-06-14 11:45:00,25.0,0.116269841,22.09519682886022 +2019-06-14 12:00:00,25.0,0.108730159,22.096656555988158 +2019-06-14 12:15:00,25.0,0.094444444,22.098116656550847 +2019-06-14 12:30:00,25.0,0.085978836,22.099577130360483 +2019-06-14 12:45:00,25.0,0.089021164,22.101037977229222 +2019-06-14 13:00:00,25.0,0.103968254,22.102499196969163 +2019-06-14 13:15:00,25.0,0.113624339,22.10396078939236 +2019-06-14 13:30:00,25.0,0.098809524,22.10542275431082 +2019-06-14 13:45:00,25.0,0.104365079,22.106885091536505 +2019-06-14 14:00:00,25.0,0.102645503,22.10834780088132 +2019-06-14 14:15:00,25.0,0.102645503,22.10981088215713 +2019-06-14 14:30:00,25.0,0.11547619,22.111274335175757 +2019-06-14 14:45:00,25.0,0.116931217,22.112738159748957 +2019-06-14 15:00:00,25.0,0.113756614,22.114202355688455 +2019-06-14 15:15:00,25.0,0.105291005,22.115666922805925 +2019-06-14 15:30:00,25.0,0.11005291,22.11713186091299 +2019-06-14 15:45:00,25.0,0.113492063,22.11859716982122 +2019-06-14 16:00:00,25.0,0.109920635,22.12006284934215 +2019-06-14 16:15:00,25.0,0.101058201,22.121528899287263 +2019-06-14 16:30:00,25.0,0.094312169,22.122995319467986 +2019-06-14 16:45:00,25.0,0.095634921,22.12446210969571 +2019-06-14 17:00:00,25.0,0.102513228,22.125929269781764 +2019-06-14 17:15:00,25.0,0.111111111,22.12739679953745 +2019-06-14 17:30:00,25.0,0.118783069,22.128864698774002 +2019-06-14 17:45:00,25.0,0.126058201,22.13033296730262 +2019-06-14 18:00:00,25.0,0.13015873,22.131801604934456 +2019-06-14 18:15:00,25.0,0.128968254,22.1332706114806 +2019-06-14 18:30:00,25.0,0.133730159,22.134739986752116 +2019-06-14 18:45:00,25.0,0.139153439,22.136209730559997 +2019-06-14 19:00:00,25.0,0.142460317,22.137679842715215 +2019-06-14 19:15:00,25.0,0.149470899,22.13915032302867 +2019-06-14 19:30:00,25.0,0.157936508,22.140621171311228 +2019-06-14 19:45:00,25.0,0.169444444,22.142092387373708 +2019-06-14 20:00:00,25.0,0.173015873,22.14356397102688 +2019-06-14 20:15:00,25.0,0.179365079,22.14503592208146 +2019-06-14 20:30:00,25.0,0.196031746,22.146508240348123 +2019-06-14 20:45:00,25.0,0.20515873,22.147980925637498 +2019-06-14 21:00:00,25.0,0.210185185,22.14945397776017 +2019-06-14 21:15:00,25.0,0.223809524,22.15092739652666 +2019-06-14 21:30:00,25.0,0.239153439,22.152401181747468 +2019-06-14 21:45:00,25.0,0.237433862,22.153875333233017 +2019-06-14 22:00:00,25.0,0.242063492,22.155349850793712 +2019-06-14 22:15:00,25.0,0.239417989,22.156824734239883 +2019-06-14 22:30:00,25.0,0.22989418,22.158299983381838 +2019-06-14 22:45:00,25.0,0.229497354,22.159775598029825 +2019-06-14 23:00:00,25.0,0.232142857,22.161251577994044 +2019-06-14 23:15:00,25.0,0.227513228,22.162727923084656 +2019-06-14 23:30:00,25.0,0.228968254,22.164204633111762 +2019-06-14 23:45:00,25.0,0.233333333,22.165681707885433 +2019-06-15 00:00:00,25.0,0.24021164,22.167159147215678 +2019-06-15 00:15:00,25.0,0.252380952,22.168636950912468 +2019-06-15 00:30:00,25.0,0.26547619,22.170115118785727 +2019-06-15 00:45:00,25.0,0.268386243,22.17159365064532 +2019-06-15 01:00:00,25.0,0.269444444,22.17307254630109 +2019-06-15 01:15:00,25.0,0.269312169,22.174551805562803 +2019-06-15 01:30:00,25.0,0.275793651,22.176031428240204 +2019-06-15 01:45:00,25.0,0.290343915,22.177511414142973 +2019-06-15 02:00:00,25.0,0.29510582,22.178991763080752 +2019-06-15 02:15:00,25.0,0.291137566,22.180472474863144 +2019-06-15 02:30:00,25.0,0.303703704,22.181953549299685 +2019-06-15 02:45:00,25.0,0.308333333,22.183434986199885 +2019-06-15 03:00:00,25.0,0.308201058,22.184916785373186 +2019-06-15 03:15:00,25.0,0.303439153,22.18639894662901 +2019-06-15 03:30:00,25.0,0.303439153,22.187881469776706 +2019-06-15 03:45:00,25.0,0.296164021,22.189364354625592 +2019-06-15 04:00:00,25.0,0.28452381,22.190847600984945 +2019-06-15 04:15:00,25.0,0.286111111,22.192331208663973 +2019-06-15 04:30:00,25.0,0.298412698,22.19381517747186 +2019-06-15 04:45:00,25.0,0.306878307,22.195299507217726 +2019-06-15 05:00:00,25.0,0.304100529,22.196784197710663 +2019-06-15 05:15:00,25.0,0.308730159,22.1982692487597 +2019-06-15 05:30:00,25.0,0.298015873,22.19975466017383 +2019-06-15 05:45:00,25.0,0.300132275,22.201240431761995 +2019-06-15 06:00:00,25.0,0.299074074,22.20272656333309 +2019-06-15 06:15:00,25.0,0.285449735,22.204213054695966 +2019-06-15 06:30:00,25.0,0.279100529,22.20569990565943 +2019-06-15 06:45:00,25.0,0.293650794,22.20718711603223 +2019-06-15 07:00:00,25.0,0.302116402,22.20867468562309 +2019-06-15 07:15:00,25.0,0.306746032,22.21016261424067 +2019-06-15 07:30:00,25.0,0.282671958,22.211650901693588 +2019-06-15 07:45:00,25.0,0.25515873,22.213139547790416 +2019-06-15 08:00:00,25.0,0.251587302,22.21462855233969 +2019-06-15 08:15:00,25.0,0.251851852,22.216117915149876 +2019-06-15 08:30:00,25.0,0.259126984,22.21760763602942 +2019-06-15 08:45:00,25.0,0.251455026,22.219097714786706 +2019-06-15 09:00:00,25.0,0.234126984,22.22058815123008 +2019-06-15 09:15:00,25.0,0.243915344,22.222078945167837 +2019-06-15 09:30:00,25.0,0.241005291,22.223570096408224 +2019-06-15 09:45:00,25.0,0.258201058,22.22506160475945 +2019-06-15 10:00:00,25.0,0.244444444,22.22655347002967 +2019-06-15 10:15:00,25.0,0.245634921,22.228045692027003 +2019-06-15 10:30:00,25.0,0.247751323,22.229538270559512 +2019-06-15 10:45:00,25.0,0.262037037,22.231031205435215 +2019-06-15 11:00:00,25.0,0.270238095,22.232524496462098 +2019-06-15 11:15:00,25.0,0.250396825,22.234018143448075 +2019-06-15 11:30:00,25.0,0.232539683,22.235512146201046 +2019-06-15 11:45:00,25.0,0.225925926,22.237006504528836 +2019-06-15 12:00:00,25.0,0.21494709,22.23850121823924 +2019-06-15 12:15:00,25.0,0.199338624,22.23999628714001 +2019-06-15 12:30:00,25.0,0.193783069,22.24149171103884 +2019-06-15 12:45:00,25.0,0.192592593,22.242987489743392 +2019-06-15 13:00:00,25.0,0.214550265,22.244483623061267 +2019-06-15 13:15:00,25.0,0.232936508,22.245980110800037 +2019-06-15 13:30:00,25.0,0.239285714,22.247476952767215 +2019-06-15 13:45:00,25.0,0.202645503,22.248974148770273 +2019-06-15 14:00:00,25.0,0.219973545,22.250471698616646 +2019-06-15 14:15:00,25.0,0.250793651,22.25196960211371 +2019-06-15 14:30:00,25.0,0.311772487,22.253467859068802 +2019-06-15 14:45:00,25.0,0.352910053,22.254966469289208 +2019-06-15 15:00:00,25.0,0.387698413,22.25646543258218 +2019-06-15 15:15:00,25.0,0.411111111,22.25796474875492 +2019-06-15 15:30:00,25.0,0.43531746,22.25946441761457 +2019-06-15 15:45:00,25.0,0.442195767,22.26096443896825 +2019-06-15 16:00:00,25.0,0.413095238,22.262464812623023 +2019-06-15 16:15:00,25.0,0.397486772,22.263965538385907 +2019-06-15 16:30:00,25.0,0.382010582,22.26546661606387 +2019-06-15 16:45:00,25.0,0.406084656,22.26696804546384 +2019-06-15 17:00:00,25.0,0.431746032,22.268469826392714 +2019-06-15 17:15:00,25.0,0.454497354,22.269971958657308 +2019-06-15 17:30:00,25.0,0.462830688,22.27147444206443 +2019-06-15 17:45:00,25.0,0.50026455,22.27297727642082 +2019-06-15 18:00:00,25.0,0.51547619,22.274480461533187 +2019-06-15 18:15:00,25.0,0.494708995,22.27598399720818 +2019-06-15 18:30:00,25.0,0.468121693,22.27748788325241 +2019-06-15 18:45:00,25.0,0.424338624,22.278992119472452 +2019-06-15 19:00:00,25.0,0.381349206,22.280496705674818 +2019-06-15 19:15:00,25.0,0.34973545,22.282001641665996 +2019-06-15 19:30:00,25.0,0.333068783,22.283506927252404 +2019-06-15 19:45:00,25.0,0.318783069,22.285012562240443 +2019-06-15 20:00:00,25.0,0.307936508,22.286518546436444 +2019-06-15 20:15:00,25.0,0.30515873,22.288024879646706 +2019-06-15 20:30:00,25.0,0.28531746,22.289531561677485 +2019-06-15 20:45:00,25.0,0.268518519,22.291038592334985 +2019-06-15 21:00:00,25.0,0.249206349,22.29254597142537 +2019-06-15 21:15:00,25.0,0.248544974,22.29405369875475 +2019-06-15 21:30:00,25.0,0.237169312,22.29556177412921 +2019-06-15 21:45:00,25.0,0.214417989,22.29707019735477 +2019-06-15 22:00:00,25.0,0.173015873,22.298578968237415 +2019-06-15 22:15:00,25.0,0.16547619,22.300088086583084 +2019-06-15 22:30:00,25.0,0.15978836,22.301597552197666 +2019-06-15 22:45:00,25.0,0.152513228,22.30310736488702 +2019-06-15 23:00:00,25.0,0.127380952,22.30461752445694 +2019-06-15 23:15:00,25.0,0.106878307,22.30612803071319 +2019-06-15 23:30:00,25.0,0.092592593,22.307638883461486 +2019-06-15 23:45:00,25.0,0.088888889,22.309150082507497 +2019-06-16 00:00:00,25.0,0.088227513,22.310661627656856 +2019-06-16 00:15:00,25.0,0.092195767,22.31217351871513 +2019-06-16 00:30:00,25.0,0.082804233,22.31368575548787 +2019-06-16 00:45:00,25.0,0.080291005,22.31519833778056 +2019-06-16 01:00:00,25.0,0.082671958,22.316711265398652 +2019-06-16 01:15:00,25.0,0.091137566,22.318224538147554 +2019-06-16 01:30:00,25.0,0.099470899,22.319738155832614 +2019-06-16 01:45:00,25.0,0.116137566,22.321252118259157 +2019-06-16 02:00:00,25.0,0.14484127,22.322766425232448 +2019-06-16 02:15:00,25.0,0.183597884,22.324281076557718 +2019-06-16 02:30:00,25.0,0.219444444,22.325796072040145 +2019-06-16 02:45:00,25.0,0.248015873,22.327311411484864 +2019-06-16 03:00:00,25.0,0.262962963,22.32882709469698 +2019-06-16 03:15:00,25.0,0.284259259,22.330343121481533 +2019-06-16 03:30:00,25.0,0.302910053,22.33185949164353 +2019-06-16 03:45:00,25.0,0.322354497,22.333376204987932 +2019-06-16 04:00:00,25.0,0.348148148,22.334893261319657 +2019-06-16 04:15:00,25.0,0.367328042,22.336410660443573 +2019-06-16 04:30:00,25.0,0.378174603,22.337928402164515 +2019-06-16 04:45:00,25.0,0.397222222,22.339446486287265 +2019-06-16 05:00:00,25.0,0.408068783,22.340964912616563 +2019-06-16 05:15:00,25.0,0.401587302,22.34248368095711 +2019-06-16 05:30:00,25.0,0.403306878,22.344002791113546 +2019-06-16 05:45:00,25.0,0.401719577,22.345522242890496 +2019-06-16 06:00:00,25.0,0.380026455,22.34704203609251 +2019-06-16 06:15:00,25.0,0.361111111,22.34856217052412 +2019-06-16 06:30:00,25.0,0.356878307,22.350082645989797 +2019-06-16 06:45:00,25.0,0.351455026,22.351603462293973 +2019-06-16 07:00:00,25.0,0.345767196,22.353124619241044 +2019-06-16 07:15:00,25.0,0.351587302,22.354646116635344 +2019-06-16 07:30:00,25.0,0.348015873,22.356167954281183 +2019-06-16 07:45:00,25.0,0.339285714,22.357690131982817 +2019-06-16 08:00:00,25.0,0.330291005,22.359212649544457 +2019-06-16 08:15:00,25.0,0.328835979,22.360735506770283 +2019-06-16 08:30:00,25.0,0.329100529,22.362258703464406 +2019-06-16 08:45:00,25.0,0.321031746,22.363782239430925 +2019-06-16 09:00:00,25.0,0.312169312,22.365306114473864 +2019-06-16 09:15:00,25.0,0.304761905,22.366830328397228 +2019-06-16 09:30:00,25.0,0.295634921,22.368354881004972 +2019-06-16 09:45:00,25.0,0.295238095,22.369879772100994 +2019-06-16 10:00:00,25.0,0.300529101,22.371405001489173 +2019-06-16 10:15:00,25.0,0.287037037,22.372930568973313 +2019-06-16 10:30:00,25.0,0.282275132,22.374456474357206 +2019-06-16 10:45:00,25.0,0.265873016,22.37598271744458 +2019-06-16 11:00:00,25.0,0.248148148,22.37750929803913 +2019-06-16 11:15:00,25.0,0.243121693,22.3790362159445 +2019-06-16 11:30:00,25.0,0.238888889,22.380563470964294 +2019-06-16 11:45:00,25.0,0.233597884,22.382091062902077 +2019-06-16 12:00:00,25.0,0.224603175,22.383618991561363 +2019-06-16 12:15:00,25.0,0.21984127,22.385147256745633 +2019-06-16 12:30:00,25.0,0.20978836,22.386675858258307 +2019-06-16 12:45:00,25.0,0.181349206,22.388204795902777 +2019-06-16 13:00:00,25.0,0.169312169,22.389734069482394 +2019-06-16 13:15:00,25.0,0.161507937,22.39126367880045 +2019-06-16 13:30:00,25.0,0.162301587,22.39279362366021 +2019-06-16 13:45:00,25.0,0.147619048,22.394323903864883 +2019-06-16 14:00:00,25.0,0.138095238,22.39585451921765 +2019-06-16 14:15:00,25.0,0.138888889,22.397385469521627 +2019-06-16 14:30:00,25.0,0.132671958,22.398916754579908 +2019-06-16 14:45:00,25.0,0.132010582,22.400448374195538 +2019-06-16 15:00:00,25.0,0.141005291,22.401980328171504 +2019-06-16 15:15:00,25.0,0.143253968,22.40351261631078 +2019-06-16 15:30:00,25.0,0.139417989,22.405045238416264 +2019-06-16 15:45:00,25.0,0.135714286,22.40657819429084 +2019-06-16 16:00:00,25.0,0.137698413,22.408111483737322 +2019-06-16 16:15:00,25.0,0.138227513,22.409645106558504 +2019-06-16 16:30:00,25.0,0.127116402,22.411179062557128 +2019-06-16 16:45:00,25.0,0.114814815,22.41271335153589 +2019-06-16 17:00:00,25.0,0.109920635,22.414247973297442 +2019-06-16 17:15:00,25.0,0.107936508,22.415782927644408 +2019-06-16 17:30:00,25.0,0.113359788,22.417318214379346 +2019-06-16 17:45:00,25.0,0.102248677,22.418853833304798 +2019-06-16 18:00:00,25.0,0.089814815,22.420389784223236 +2019-06-16 18:15:00,25.0,0.090343915,22.42192606693711 +2019-06-16 18:30:00,25.0,0.099206349,22.423462681248818 +2019-06-16 18:45:00,25.0,0.105820106,22.42499962696072 +2019-06-16 19:00:00,25.0,0.107275132,22.426536903875125 +2019-06-16 19:15:00,25.0,0.102777778,22.428074511794303 +2019-06-16 19:30:00,25.0,0.09537037,22.429612450520494 +2019-06-16 19:45:00,25.0,0.092857143,22.43115071985588 +2019-06-16 20:00:00,25.0,0.099338624,22.4326893196026 +2019-06-16 20:15:00,25.0,0.098941799,22.434228249562757 +2019-06-16 20:30:00,25.0,0.094973545,22.43576750953842 +2019-06-16 20:45:00,25.0,0.096031746,22.43730709933159 +2019-06-16 21:00:00,25.0,0.098677249,22.438847018744255 +2019-06-16 21:15:00,25.0,0.102248677,22.44038726757834 +2019-06-16 21:30:00,25.0,0.120899471,22.44192784563574 +2019-06-16 21:45:00,25.0,0.154100529,22.443468752718296 +2019-06-16 22:00:00,25.0,0.173412698,22.445009988627817 +2019-06-16 22:15:00,25.0,0.182804233,22.446551553166064 +2019-06-16 22:30:00,25.0,0.183597884,22.448093446134756 +2019-06-16 22:45:00,25.0,0.190079365,22.449635667335574 +2019-06-16 23:00:00,25.0,0.211243386,22.451178216570156 +2019-06-16 23:15:00,25.0,0.239021164,22.45272109364009 +2019-06-16 23:30:00,25.0,0.252777778,22.45426429834693 +2019-06-16 23:45:00,25.0,0.262301587,22.455807830492187 +2019-06-17 00:00:00,25.0,0.283465608,22.457351689877328 +2019-06-17 00:15:00,25.0,0.29973545,22.458895876303778 +2019-06-17 00:30:00,25.0,0.311375661,22.460440389572913 +2019-06-17 00:45:00,25.0,0.318915344,22.46198522948609 +2019-06-17 01:00:00,25.0,0.332539683,22.46353039584459 +2019-06-17 01:15:00,25.0,0.331084656,22.465075888449686 +2019-06-17 01:30:00,25.0,0.339417989,22.466621707102583 +2019-06-17 01:45:00,25.0,0.34510582,22.46816785160446 +2019-06-17 02:00:00,25.0,0.348148148,22.46971432175644 +2019-06-17 02:15:00,25.0,0.350396825,22.47126111735962 +2019-06-17 02:30:00,25.0,0.360846561,22.47280823821505 +2019-06-17 02:45:00,25.0,0.365740741,22.474355684123726 +2019-06-17 03:00:00,25.0,0.372222222,22.47590345488662 +2019-06-17 03:15:00,25.0,0.375396825,22.47745155030465 +2019-06-17 03:30:00,25.0,0.363624339,22.478999970178695 +2019-06-17 03:45:00,25.0,0.344312169,22.480548714309602 +2019-06-17 04:00:00,25.0,0.348412698,22.48209778249816 +2019-06-17 04:15:00,25.0,0.35462963,22.48364717454513 +2019-06-17 04:30:00,25.0,0.352380952,22.485196890251217 +2019-06-17 04:45:00,25.0,0.34510582,22.4867469294171 +2019-06-17 05:00:00,25.0,0.340873016,22.48829729184341 +2019-06-17 05:15:00,25.0,0.345502646,22.48984797733073 +2019-06-17 05:30:00,25.0,0.345767196,22.491398985679613 +2019-06-17 05:45:00,25.0,0.339021164,22.49295031669056 +2019-06-17 06:00:00,25.0,0.335846561,22.49450197016404 +2019-06-17 06:15:00,25.0,0.330820106,22.49605394590047 +2019-06-17 06:30:00,25.0,0.312037037,22.497606243700243 +2019-06-17 06:45:00,25.0,0.296164021,22.499158863363682 +2019-06-17 07:00:00,25.0,0.294708995,22.500711804691093 +2019-06-17 07:15:00,25.0,0.298015873,22.502265067482742 +2019-06-17 07:30:00,25.0,0.297089947,22.503818651538833 +2019-06-17 07:45:00,25.0,0.29021164,22.505372556659545 +2019-06-17 08:00:00,25.0,0.275,22.506926782645007 +2019-06-17 08:15:00,25.0,0.261111111,22.508481329295318 +2019-06-17 08:30:00,25.0,0.252910053,22.51003619641052 +2019-06-17 08:45:00,25.0,0.237962963,22.51159138379063 +2019-06-17 09:00:00,25.0,0.227380952,22.513146891235618 +2019-06-17 09:15:00,25.0,0.210714286,22.5147027185454 +2019-06-17 09:30:00,25.0,0.193783069,22.516258865519873 +2019-06-17 09:45:00,25.0,0.184920635,22.51781533195887 +2019-06-17 10:00:00,25.0,0.172222222,22.51937211766221 +2019-06-17 10:15:00,25.0,0.156216931,22.520929222429643 +2019-06-17 10:30:00,25.0,0.138359788,22.522486646060894 +2019-06-17 10:45:00,25.0,0.121957672,22.524044388355648 +2019-06-17 11:00:00,25.0,0.111772487,22.525602449113542 +2019-06-17 11:15:00,25.0,0.103439153,22.52716082813417 +2019-06-17 11:30:00,25.0,0.089417989,22.528719525217095 +2019-06-17 11:45:00,25.0,0.077380952,22.53027854016183 +2019-06-17 12:00:00,25.0,0.066931217,22.53183787276786 +2019-06-17 12:15:00,25.0,0.052116402,22.533397522834605 +2019-06-17 12:30:00,25.0,0.042195767,22.534957490161474 +2019-06-17 12:45:00,25.0,0.036507937,22.53651777454781 +2019-06-17 13:00:00,25.0,0.031216931,22.53807837579293 +2019-06-17 13:15:00,25.0,0.030555556,22.539639293696105 +2019-06-17 13:30:00,25.0,0.030291005,22.541200528056564 +2019-06-17 13:45:00,25.0,0.027777778,22.542762078673505 +2019-06-17 14:00:00,25.0,0.025925926,22.54432394534607 +2019-06-17 14:15:00,25.0,0.028306878,22.545886127873374 +2019-06-17 14:30:00,25.0,0.031349206,22.547448626054475 +2019-06-17 14:45:00,25.0,0.038624339,22.549011439688414 +2019-06-17 15:00:00,25.0,0.046957672,22.55057456857417 +2019-06-17 15:15:00,25.0,0.051455026,22.55213801251069 +2019-06-17 15:30:00,25.0,0.059391534,22.553701771296886 +2019-06-17 15:45:00,25.0,0.067460317,22.555265844731615 +2019-06-17 16:00:00,25.0,0.079100529,22.556830232613713 +2019-06-17 16:15:00,25.0,0.087169312,22.558394934741955 +2019-06-17 16:30:00,25.0,0.097222222,22.559959950915093 +2019-06-17 16:45:00,25.0,0.100793651,22.561525280931825 +2019-06-17 17:00:00,25.0,0.102116402,22.563090924590817 +2019-06-17 17:15:00,25.0,0.10978836,22.564656881690695 +2019-06-17 17:30:00,25.0,0.113227513,22.566223152030034 +2019-06-17 17:45:00,25.0,0.12037037,22.567789735407388 +2019-06-17 18:00:00,25.0,0.127248677,22.569356631621247 +2019-06-17 18:15:00,25.0,0.124206349,22.570923840470087 +2019-06-17 18:30:00,25.0,0.112169312,22.572491361752316 +2019-06-17 18:45:00,25.0,0.095767196,22.574059195266322 +2019-06-17 19:00:00,25.0,0.086640212,22.575627340810453 +2019-06-17 19:15:00,25.0,0.080687831,22.577195798183002 +2019-06-17 19:30:00,25.0,0.073941799,22.578764567182233 +2019-06-17 19:45:00,25.0,0.067989418,22.580333647606366 +2019-06-17 20:00:00,25.0,0.06468254,22.581903039253586 +2019-06-17 20:15:00,25.0,0.062566138,22.583472741922026 +2019-06-17 20:30:00,25.0,0.061507937,22.585042755409795 +2019-06-17 20:45:00,25.0,0.059656085,22.586613079514958 +2019-06-17 21:00:00,25.0,0.053703704,22.588183714035523 +2019-06-17 21:15:00,25.0,0.049074074,22.589754658769483 +2019-06-17 21:30:00,25.0,0.044708995,22.591325913514773 +2019-06-17 21:45:00,25.0,0.043518519,22.592897478069297 +2019-06-17 22:00:00,25.0,0.041269841,22.594469352230917 +2019-06-17 22:15:00,25.0,0.04047619,22.596041535797454 +2019-06-17 22:30:00,25.0,0.044047619,22.597614028566692 +2019-06-17 22:45:00,25.0,0.047089947,22.599186830336368 +2019-06-17 23:00:00,25.0,0.046164021,22.600759940904194 +2019-06-17 23:15:00,25.0,0.046031746,22.602333360067824 +2019-06-17 23:30:00,25.0,0.048015873,22.603907087624883 +2019-06-17 23:45:00,25.0,0.048015873,22.60548112337296 +2019-06-18 00:00:00,25.0,0.049867725,22.60705546710959 +2019-06-18 00:15:00,25.0,0.051455026,22.608630118632288 +2019-06-18 00:30:00,25.0,0.055026455,22.61020507773851 +2019-06-18 00:45:00,25.0,0.058994709,22.611780344225686 +2019-06-18 01:00:00,25.0,0.06494709,22.613355917891194 +2019-06-18 01:15:00,25.0,0.066534392,22.614931798532385 +2019-06-18 01:30:00,25.0,0.061772487,22.616507985946573 +2019-06-18 01:45:00,25.0,0.061772487,22.618084479931014 +2019-06-18 02:00:00,25.0,0.062830688,22.619661280282944 +2019-06-18 02:15:00,25.0,0.057804233,22.621238386799543 +2019-06-18 02:30:00,25.0,0.055952381,22.62281579927797 +2019-06-18 02:45:00,25.0,0.051455026,22.624393517515323 +2019-06-18 03:00:00,25.0,0.04484127,22.625971541308676 +2019-06-18 03:15:00,25.0,0.041666667,22.62754987045507 +2019-06-18 03:30:00,25.0,0.04021164,22.62912850475148 +2019-06-18 03:45:00,25.0,0.038095238,22.630707443994876 +2019-06-18 04:00:00,25.0,0.039153439,22.632286687982155 +2019-06-18 04:15:00,25.0,0.038492063,22.6338662365102 +2019-06-18 04:30:00,25.0,0.038095238,22.635446089375847 +2019-06-18 04:45:00,25.0,0.038359788,22.637026246375882 +2019-06-18 05:00:00,25.0,0.039417989,22.638606707307076 +2019-06-18 05:15:00,25.0,0.039417989,22.640187471966133 +2019-06-18 05:30:00,25.0,0.041534392,22.64176854014974 +2019-06-18 05:45:00,25.0,0.047354497,22.643349911654532 +2019-06-18 06:00:00,25.0,0.050793651,22.64493158627711 +2019-06-18 06:15:00,25.0,0.053042328,22.64651356381404 +2019-06-18 06:30:00,25.0,0.054365079,22.648095844061835 +2019-06-18 06:45:00,25.0,0.06005291,22.64967842681699 +2019-06-18 07:00:00,25.0,0.05978836,22.65126131187594 +2019-06-18 07:15:00,25.0,0.060582011,22.652844499035094 +2019-06-18 07:30:00,25.0,0.064153439,22.654427988090816 +2019-06-18 07:45:00,25.0,0.061772487,22.656011778839442 +2019-06-18 08:00:00,25.0,0.061772487,22.657595871077255 +2019-06-18 08:15:00,25.0,0.064814815,22.659180264600504 +2019-06-18 08:30:00,25.0,0.065343915,22.66076495920541 +2019-06-18 08:45:00,25.0,0.063492063,22.66234995468813 +2019-06-18 09:00:00,25.0,0.063492063,22.663935250844812 +2019-06-18 09:15:00,25.0,0.062037037,22.665520847471544 +2019-06-18 09:30:00,25.0,0.059391534,22.667106744364386 +2019-06-18 09:45:00,25.0,0.057804233,22.66869294131936 +2019-06-18 10:00:00,25.0,0.05489418,22.67027943813244 +2019-06-18 10:15:00,25.0,0.050925926,22.67186623459957 +2019-06-18 10:30:00,25.0,0.050661376,22.673453330516647 +2019-06-18 10:45:00,25.0,0.050529101,22.675040725679544 +2019-06-18 11:00:00,25.0,0.049470899,22.676628419884075 +2019-06-18 11:15:00,25.0,0.046296296,22.678216412926037 +2019-06-18 11:30:00,25.0,0.043650794,22.67980470460118 +2019-06-18 11:45:00,25.0,0.039814815,22.681393294705206 +2019-06-18 12:00:00,25.0,0.036904762,22.682982183033793 +2019-06-18 12:15:00,25.0,0.034656085,22.68457136938257 +2019-06-18 12:30:00,25.0,0.033730159,22.68616085354714 +2019-06-18 12:45:00,25.0,0.033730159,22.68775063532305 +2019-06-18 13:00:00,25.0,0.033597884,22.689340714505818 +2019-06-18 13:15:00,25.0,0.035846561,22.690931090890935 +2019-06-18 13:30:00,25.0,0.037962963,22.692521764273835 +2019-06-18 13:45:00,25.0,0.034920635,22.69411273444993 +2019-06-18 14:00:00,25.0,0.035449735,22.695704001214573 +2019-06-18 14:15:00,25.0,0.036772487,22.697295564363102 +2019-06-18 14:30:00,25.0,0.039153439,22.698887423690802 +2019-06-18 14:45:00,25.0,0.041269841,22.700479578992926 +2019-06-18 15:00:00,25.0,0.048677249,22.702072030064688 +2019-06-18 15:15:00,25.0,0.055952381,22.70366477670126 +2019-06-18 15:30:00,25.0,0.058730159,22.705257818697785 +2019-06-18 15:45:00,25.0,0.062433862,22.706851155849353 +2019-06-18 16:00:00,25.0,0.067063492,22.70844478795103 +2019-06-18 16:15:00,25.0,0.073015873,22.710038714797847 +2019-06-18 16:30:00,25.0,0.080952381,22.711632936184778 +2019-06-18 16:45:00,25.0,0.080952381,22.71322745190678 +2019-06-18 17:00:00,25.0,0.07962963,22.71482226175875 +2019-06-18 17:15:00,25.0,0.087169312,22.716417365535573 +2019-06-18 17:30:00,25.0,0.091402116,22.718012763032075 +2019-06-18 17:45:00,25.0,0.090873016,22.719608454043055 +2019-06-18 18:00:00,25.0,0.090740741,22.721204438363277 +2019-06-18 18:15:00,25.0,0.094444444,22.72280071578745 +2019-06-18 18:30:00,25.0,0.099338624,22.724397286110268 +2019-06-18 18:45:00,25.0,0.101058201,22.725994149126368 +2019-06-18 19:00:00,25.0,0.103306878,22.727591304630366 +2019-06-18 19:15:00,25.0,0.104100529,22.729188752416825 +2019-06-18 19:30:00,25.0,0.101190476,22.730786492280277 +2019-06-18 19:45:00,25.0,0.096428571,22.732384524015227 +2019-06-18 20:00:00,25.0,0.097486772,22.733982847416122 +2019-06-18 20:15:00,25.0,0.097619048,22.735581462277388 +2019-06-18 20:30:00,25.0,0.097619048,22.737180368393403 +2019-06-18 20:45:00,25.0,0.096693122,22.73877956555852 +2019-06-18 21:00:00,25.0,0.097619048,22.740379053567032 +2019-06-18 21:15:00,25.0,0.099470899,22.741978832213224 +2019-06-18 21:30:00,25.0,0.100132275,22.743578901291322 +2019-06-18 21:45:00,25.0,0.1,22.74517926059552 +2019-06-18 22:00:00,25.0,0.097883598,22.746779909919983 +2019-06-18 22:15:00,25.0,0.098148148,22.748380849058822 +2019-06-18 22:30:00,25.0,0.099206349,22.74998207780613 +2019-06-18 22:45:00,25.0,0.100661376,22.751583595955946 +2019-06-18 23:00:00,25.0,0.101190476,22.75318540330228 +2019-06-18 23:15:00,25.0,0.103439153,22.754787499639107 +2019-06-18 23:30:00,25.0,0.101984127,22.75638988476036 +2019-06-18 23:45:00,25.0,0.100925926,22.757992558459943 +2019-06-19 00:00:00,25.0,0.1,22.759595520531704 +2019-06-19 00:15:00,25.0,0.100132275,22.76119877076947 +2019-06-19 00:30:00,25.0,0.101455026,22.762802308967036 +2019-06-19 00:45:00,25.0,0.101455026,22.76440613491814 +2019-06-19 01:00:00,25.0,0.10542328,22.766010248416507 +2019-06-19 01:15:00,25.0,0.105555556,22.767614649255798 +2019-06-19 01:30:00,25.0,0.101455026,22.76921933722966 +2019-06-19 01:45:00,25.0,0.101058201,22.77082431213169 +2019-06-19 02:00:00,25.0,0.091269841,22.772429573755453 +2019-06-19 02:15:00,25.0,0.083333333,22.77403512189448 +2019-06-19 02:30:00,25.0,0.085449735,22.77564095634226 +2019-06-19 02:45:00,25.0,0.085978836,22.77724707689225 +2019-06-19 03:00:00,25.0,0.087962963,22.77885348333786 +2019-06-19 03:15:00,25.0,0.095634921,22.780460175472474 +2019-06-19 03:30:00,25.0,0.100661376,22.782067153089436 +2019-06-19 03:45:00,25.0,0.121428571,22.78367441598205 +2019-06-19 04:00:00,25.0,0.138095238,22.78528196394359 +2019-06-19 04:15:00,25.0,0.153835979,22.786889796767287 +2019-06-19 04:30:00,25.0,0.155952381,22.788497914246342 +2019-06-19 04:45:00,25.0,0.159920635,22.790106316173908 +2019-06-19 05:00:00,25.0,0.162433862,22.791715002343114 +2019-06-19 05:15:00,25.0,0.16494709,22.793323972547043 +2019-06-19 05:30:00,25.0,0.18505291,22.79493322657875 +2019-06-19 05:45:00,25.0,0.198544974,22.796542764231248 +2019-06-19 06:00:00,25.0,0.200132275,22.79815258529751 +2019-06-19 06:15:00,25.0,0.213492063,22.79976268957049 +2019-06-19 06:30:00,25.0,0.228968254,22.801373076843074 +2019-06-19 06:45:00,25.0,0.23452381,22.802983746908144 +2019-06-19 07:00:00,25.0,0.228174603,22.804594699558525 +2019-06-19 07:15:00,25.0,0.22526455,22.806205934587013 +2019-06-19 07:30:00,25.0,0.210449735,22.807817451786377 +2019-06-19 07:45:00,25.0,0.212301587,22.809429250949325 +2019-06-19 08:00:00,25.0,0.233333333,22.811041331868555 +2019-06-19 08:15:00,25.0,0.240740741,22.81265369433671 +2019-06-19 08:30:00,25.0,0.232010582,22.814266338146407 +2019-06-19 08:45:00,25.0,0.233201058,22.81587926309023 +2019-06-19 09:00:00,25.0,0.242989418,22.81749246896071 +2019-06-19 09:15:00,25.0,0.246164021,22.819105955550363 +2019-06-19 09:30:00,25.0,0.248677249,22.82071972265165 +2019-06-19 09:45:00,25.0,0.246428571,22.82233377005701 +2019-06-19 10:00:00,25.0,0.235714286,22.823948097558837 +2019-06-19 10:15:00,25.0,0.228174603,22.825562704949494 +2019-06-19 10:30:00,25.0,0.221031746,22.82717759202131 +2019-06-19 10:45:00,25.0,0.204761905,22.828792758566568 +2019-06-19 11:00:00,25.0,0.188359788,22.830408204377527 +2019-06-19 11:15:00,25.0,0.175529101,22.8320239292464 +2019-06-19 11:30:00,25.0,0.146693122,22.833639932965376 +2019-06-19 11:45:00,25.0,0.127777778,22.835256215326588 +2019-06-19 12:00:00,25.0,0.131613757,22.836872776122156 +2019-06-19 12:15:00,25.0,0.117592593,22.83848961514416 +2019-06-19 12:30:00,25.0,0.094312169,22.840106732184623 +2019-06-19 12:45:00,25.0,0.089550265,22.841724127035558 +2019-06-19 13:00:00,25.0,0.093253968,22.843341799488925 +2019-06-19 13:15:00,25.0,0.09457672,22.844959749336667 +2019-06-19 13:30:00,25.0,0.091137566,22.846577976370668 +2019-06-19 13:45:00,25.0,0.074470899,22.84819648038279 +2019-06-19 14:00:00,25.0,0.057010582,22.849815261164864 +2019-06-19 14:15:00,25.0,0.064417989,22.851434318508666 +2019-06-19 14:30:00,25.0,0.072089947,22.853053652205965 +2019-06-19 14:45:00,25.0,0.084259259,22.854673262048465 +2019-06-19 15:00:00,25.0,0.102777778,22.856293147827856 +2019-06-19 15:15:00,25.0,0.115343915,22.857913309335782 +2019-06-19 15:30:00,25.0,0.133730159,22.85953374636385 +2019-06-19 15:45:00,25.0,0.167592593,22.861154458703645 +2019-06-19 16:00:00,25.0,0.181084656,22.8627754461467 +2019-06-19 16:15:00,25.0,0.17962963,22.864396708484524 +2019-06-19 16:30:00,25.0,0.186243386,22.86601824550858 +2019-06-19 16:45:00,25.0,0.170238095,22.867640057010313 +2019-06-19 17:00:00,25.0,0.147354497,22.86926214278111 +2019-06-19 17:15:00,25.0,0.134391534,22.870884502612338 +2019-06-19 17:30:00,25.0,0.115608466,22.872507136295333 +2019-06-19 17:45:00,25.0,0.10462963,22.874130043621378 +2019-06-19 18:00:00,25.0,0.106878307,22.87575322438174 +2019-06-19 18:15:00,25.0,0.110846561,22.877376678367632 +2019-06-19 18:30:00,25.0,0.118650794,22.879000405370245 +2019-06-19 18:45:00,25.0,0.140079365,22.88062440518074 +2019-06-19 19:00:00,25.0,0.141534392,22.882248677590223 +2019-06-19 19:15:00,25.0,0.133068783,22.883873222389784 +2019-06-19 19:30:00,25.0,0.124603175,22.88549803937046 +2019-06-19 19:45:00,25.0,0.119312169,22.887123128323278 +2019-06-19 20:00:00,25.0,0.119444444,22.888748489039205 +2019-06-19 20:15:00,25.0,0.121296296,22.890374121309183 +2019-06-19 20:30:00,25.0,0.120238095,22.892000024924126 +2019-06-19 20:45:00,25.0,0.119179894,22.8936261996749 +2019-06-19 21:00:00,25.0,0.121693122,22.89525264535235 +2019-06-19 21:15:00,25.0,0.115079365,22.89687936174727 +2019-06-19 21:30:00,25.0,0.10489418,22.898506348650436 +2019-06-19 21:45:00,25.0,0.101984127,22.900133605852574 +2019-06-19 22:00:00,25.0,0.087433862,22.901761133144387 +2019-06-19 22:15:00,25.0,0.073809524,22.903388930316538 +2019-06-19 22:30:00,25.0,0.071031746,22.905016997159656 +2019-06-19 22:45:00,25.0,0.051719577,22.906645333464336 +2019-06-19 23:00:00,25.0,0.055026455,22.908273939021132 +2019-06-19 23:15:00,25.0,0.049206349,22.90990281362058 +2019-06-19 23:30:00,25.0,0.058994709,22.911531957053157 +2019-06-19 23:45:00,25.0,0.057010582,22.91316136910933 +2019-06-20 00:00:00,25.0,0.058068783,22.914791049579513 +2019-06-20 00:15:00,25.0,0.058597884,22.916420998254097 +2019-06-20 00:30:00,25.0,0.050132275,22.918051214923434 +2019-06-20 00:45:00,25.0,0.03968254,22.919681699377836 +2019-06-20 01:00:00,25.0,0.049074074,22.921312451407598 +2019-06-20 01:15:00,25.0,0.048544974,22.922943470802956 +2019-06-20 01:30:00,25.0,0.05489418,22.92457475735413 +2019-06-20 01:45:00,25.0,0.059656085,22.926206310851306 +2019-06-20 02:00:00,25.0,0.073809524,22.927838131084616 +2019-06-20 02:15:00,25.0,0.07989418,22.929470217844187 +2019-06-20 02:30:00,25.0,0.085978836,22.931102570920086 +2019-06-20 02:45:00,25.0,0.091534392,22.93273519010236 +2019-06-20 03:00:00,25.0,0.107936508,22.934368075181016 +2019-06-20 03:15:00,25.0,0.12473545,22.93600122594603 +2019-06-20 03:30:00,25.0,0.128174603,22.93763464218734 +2019-06-20 03:45:00,25.0,0.13015873,22.939268323694854 +2019-06-20 04:00:00,25.0,0.125529101,22.940902270258448 +2019-06-20 04:15:00,25.0,0.121164021,22.94253648166795 +2019-06-20 04:30:00,25.0,0.128968254,22.944170957713172 +2019-06-20 04:45:00,25.0,0.127248677,22.945805698183886 +2019-06-20 05:00:00,25.0,0.125,22.947440702869816 +2019-06-20 05:15:00,25.0,0.137962963,22.949075971560678 +2019-06-20 05:30:00,25.0,0.137433862,22.950711504046133 +2019-06-20 05:45:00,25.0,0.128439153,22.952347300115814 +2019-06-20 06:00:00,25.0,0.133730159,22.95398335955932 +2019-06-20 06:15:00,25.0,0.147089947,22.955619682166223 +2019-06-20 06:30:00,25.0,0.129365079,22.957256267726052 +2019-06-20 06:45:00,25.0,0.123015873,22.958893116028307 +2019-06-20 07:00:00,25.0,0.133333333,22.960530226862453 +2019-06-20 07:15:00,25.0,0.137698413,22.962167600017914 +2019-06-20 07:30:00,25.0,0.135714286,22.9638052352841 +2019-06-20 07:45:00,25.0,0.131084656,22.96544313245036 +2019-06-20 08:00:00,25.0,0.120767196,22.967081291306037 +2019-06-20 08:15:00,25.0,0.118915344,22.96871971164042 +2019-06-20 08:30:00,25.0,0.11521164,22.970358393242773 +2019-06-20 08:45:00,25.0,0.11521164,22.97199733590233 +2019-06-20 09:00:00,25.0,0.11957672,22.973636539408275 +2019-06-20 09:15:00,25.0,0.113095238,22.97527600354978 +2019-06-20 09:30:00,25.0,0.106349206,22.97691572811597 +2019-06-20 09:45:00,25.0,0.106481481,22.978555712895936 +2019-06-20 10:00:00,25.0,0.109126984,22.980195957678745 +2019-06-20 10:15:00,25.0,0.101455026,22.981836462253423 +2019-06-20 10:30:00,25.0,0.089814815,22.98347722640897 +2019-06-20 10:45:00,25.0,0.088756614,22.985118249934335 +2019-06-20 11:00:00,25.0,0.097354497,22.986759532618454 +2019-06-20 11:15:00,25.0,0.095767196,22.98840107425022 +2019-06-20 11:30:00,25.0,0.090740741,22.990042874618492 +2019-06-20 11:45:00,25.0,0.086772487,22.991684933512104 +2019-06-20 12:00:00,25.0,0.087566138,22.99332725071984 +2019-06-20 12:15:00,25.0,0.082671958,22.994969826030474 +2019-06-20 12:30:00,25.0,0.072751323,22.996612659232724 +2019-06-20 12:45:00,25.0,0.065343915,22.998255750115288 +2019-06-20 13:00:00,25.0,0.055820106,22.999899098466834 +2019-06-20 13:15:00,25.0,0.061640212,23.00154270407598 +2019-06-20 13:30:00,25.0,0.057539683,23.00318656673133 +2019-06-20 13:45:00,25.0,0.059126984,23.004830686221442 +2019-06-20 14:00:00,25.0,0.068253968,23.00647506233485 +2019-06-20 14:15:00,25.0,0.077777778,23.008119694860046 +2019-06-20 14:30:00,25.0,0.078174603,23.009764583585493 +2019-06-20 14:45:00,25.0,0.080687831,23.011409728299625 +2019-06-20 15:00:00,25.0,0.082936508,23.01305512879084 +2019-06-20 15:15:00,25.0,0.094708995,23.014700784847502 +2019-06-20 15:30:00,25.0,0.104761905,23.01634669625794 +2019-06-20 15:45:00,25.0,0.10952381,23.01799286281046 +2019-06-20 16:00:00,25.0,0.104761905,23.01963928429332 +2019-06-20 16:15:00,25.0,0.100661376,23.02128596049475 +2019-06-20 16:30:00,25.0,0.093253968,23.02293289120297 +2019-06-20 16:45:00,25.0,0.093783069,23.024580076206128 +2019-06-20 17:00:00,25.0,0.09047619,23.026227515292373 +2019-06-20 17:15:00,25.0,0.082539683,23.027875208249796 +2019-06-20 17:30:00,25.0,0.096031746,23.029523154866478 +2019-06-20 17:45:00,25.0,0.09457672,23.031171354930443 +2019-06-20 18:00:00,25.0,0.08994709,23.032819808229707 +2019-06-20 18:15:00,25.0,0.093253968,23.03446851455224 +2019-06-20 18:30:00,25.0,0.096296296,23.03611747368598 +2019-06-20 18:45:00,25.0,0.093518519,23.037766685418834 +2019-06-20 19:00:00,25.0,0.091137566,23.039416149538674 +2019-06-20 19:15:00,25.0,0.089814815,23.04106586583335 +2019-06-20 19:30:00,25.0,0.098015873,23.042715834090664 +2019-06-20 19:45:00,25.0,0.097486772,23.044366054098393 +2019-06-20 20:00:00,25.0,0.093915344,23.04601652564429 +2019-06-20 20:15:00,25.0,0.098941799,23.047667248516056 +2019-06-20 20:30:00,25.0,0.087830688,23.049318222501384 +2019-06-20 20:45:00,25.0,0.087698413,23.05096944738791 +2019-06-20 21:00:00,25.0,0.090740741,23.052620922963257 +2019-06-20 21:15:00,25.0,0.090343915,23.054272649015008 +2019-06-20 21:30:00,25.0,0.084259259,23.05592462533071 +2019-06-20 21:45:00,25.0,0.06957672,23.05757685169789 +2019-06-20 22:00:00,25.0,0.06468254,23.05922932790402 +2019-06-20 22:15:00,25.0,0.05952381,23.06088205373657 +2019-06-20 22:30:00,25.0,0.057010582,23.062535028982957 +2019-06-20 22:45:00,25.0,0.048677249,23.064188253430565 +2019-06-20 23:00:00,25.0,0.047089947,23.06584172686677 +2019-06-20 23:15:00,25.0,0.046693122,23.067495449078876 +2019-06-20 23:30:00,25.0,0.044444444,23.069149419854195 +2019-06-20 23:45:00,25.0,0.042857143,23.070803638979978 +2019-06-21 00:00:00,25.0,0.043253968,23.072458106243467 +2019-06-21 00:15:00,25.0,0.046428571,23.074112821431846 +2019-06-21 00:30:00,25.0,0.044708995,23.075767784332292 +2019-06-21 00:45:00,25.0,0.038095238,23.077422994731943 +2019-06-21 01:00:00,25.0,0.035846561,23.07907845241789 +2019-06-21 01:15:00,25.0,0.033333333,23.080734157177215 +2019-06-21 01:30:00,25.0,0.035846561,23.08239010879695 +2019-06-21 01:45:00,25.0,0.03968254,23.08404630706411 +2019-06-21 02:00:00,25.0,0.045634921,23.085702751765663 +2019-06-21 02:15:00,25.0,0.052380952,23.087359442688555 +2019-06-21 02:30:00,25.0,0.052910053,23.089016379619707 +2019-06-21 02:45:00,25.0,0.05515873,23.090673562345987 +2019-06-21 03:00:00,25.0,0.055026455,23.092330990654258 +2019-06-21 03:15:00,25.0,0.06031746,23.093988664331324 +2019-06-21 03:30:00,25.0,0.071296296,23.095646583163983 +2019-06-21 03:45:00,25.0,0.083068783,23.097304746938978 +2019-06-21 04:00:00,25.0,0.09484127,23.09896315544304 +2019-06-21 04:15:00,25.0,0.105952381,23.100621808462865 +2019-06-21 04:30:00,25.0,0.111111111,23.102280705785102 +2019-06-21 04:45:00,25.0,0.111904762,23.10393984719639 +2019-06-21 05:00:00,25.0,0.11547619,23.105599232483318 +2019-06-21 05:15:00,25.0,0.118650794,23.107258861432456 +2019-06-21 05:30:00,25.0,0.11957672,23.108918733830336 +2019-06-21 05:45:00,25.0,0.112433862,23.110578849463465 +2019-06-21 06:00:00,25.0,0.095767196,23.112239208118318 +2019-06-21 06:15:00,25.0,0.088359788,23.113899809581326 +2019-06-21 06:30:00,25.0,0.072354497,23.115560653638912 +2019-06-21 06:45:00,25.0,0.055026455,23.11722174007744 +2019-06-21 07:00:00,25.0,0.048015873,23.118883068683264 +2019-06-21 07:15:00,25.0,0.050529101,23.120544639242702 +2019-06-21 07:30:00,25.0,0.052248677,23.122206451542034 +2019-06-21 07:45:00,25.0,0.059656085,23.123868505367522 +2019-06-21 08:00:00,25.0,0.062037037,23.125530800505377 +2019-06-21 08:15:00,25.0,0.060714286,23.127193336741804 +2019-06-21 08:30:00,25.0,0.063095238,23.128856113862952 +2019-06-21 08:45:00,25.0,0.066798942,23.130519131654953 +2019-06-21 09:00:00,25.0,0.061375661,23.132182389903917 +2019-06-21 09:15:00,25.0,0.061904762,23.133845888395896 +2019-06-21 09:30:00,25.0,0.067857143,23.13550962691694 +2019-06-21 09:45:00,25.0,0.068518519,23.137173605253047 +2019-06-21 10:00:00,25.0,0.078042328,23.138837823190194 +2019-06-21 10:15:00,25.0,0.090079365,23.140502280514326 +2019-06-21 10:30:00,25.0,0.091931217,23.142166977011357 +2019-06-21 10:45:00,25.0,0.092724868,23.14383191246717 +2019-06-21 11:00:00,25.0,0.09510582,23.145497086667618 +2019-06-21 11:15:00,25.0,0.104761905,23.147162499398522 +2019-06-21 11:30:00,25.0,0.113624339,23.14882815044567 +2019-06-21 11:45:00,25.0,0.116798942,23.150494039594825 +2019-06-21 12:00:00,25.0,0.11468254,23.152160166631717 +2019-06-21 12:15:00,25.0,0.117989418,23.153826531342037 +2019-06-21 12:30:00,25.0,0.11957672,23.15549313351147 +2019-06-21 12:45:00,25.0,0.11957672,23.157159972925633 +2019-06-21 13:00:00,25.0,0.121957672,23.158827049370153 +2019-06-21 13:15:00,25.0,0.124867725,23.160494362630594 +2019-06-21 13:30:00,25.0,0.133862434,23.162161912492508 +2019-06-21 13:45:00,25.0,0.13042328,23.163829698741406 +2019-06-21 14:00:00,25.0,0.131878307,23.165497721162776 +2019-06-21 14:15:00,25.0,0.142063492,23.167165979542077 +2019-06-21 14:30:00,25.0,0.142857143,23.168834473664724 +2019-06-21 14:45:00,25.0,0.141534392,23.170503203316123 +2019-06-21 15:00:00,25.0,0.143915344,23.17217216828163 +2019-06-21 15:15:00,25.0,0.138359788,23.173841368346583 +2019-06-21 15:30:00,25.0,0.132671958,23.175510803296287 +2019-06-21 15:45:00,25.0,0.131746032,23.177180472916007 +2019-06-21 16:00:00,25.0,0.132407407,23.178850376990997 +2019-06-21 16:15:00,25.0,0.14047619,23.180520515306462 +2019-06-21 16:30:00,25.0,0.144312169,23.18219088764759 +2019-06-21 16:45:00,25.0,0.143518519,23.183861493799526 +2019-06-21 17:00:00,25.0,0.140608466,23.185532333547403 +2019-06-21 17:15:00,25.0,0.137698413,23.18720340667631 +2019-06-21 17:30:00,25.0,0.14047619,23.188874712971305 +2019-06-21 17:45:00,25.0,0.141666667,23.19054625221743 +2019-06-21 18:00:00,25.0,0.143915344,23.19221802419968 +2019-06-21 18:15:00,25.0,0.141534392,23.19389002870303 +2019-06-21 18:30:00,25.0,0.141137566,23.195562265512425 +2019-06-21 18:45:00,25.0,0.145634921,23.19723473441277 +2019-06-21 19:00:00,25.0,0.152513228,23.198907435188964 +2019-06-21 19:15:00,25.0,0.152380952,23.200580367625843 +2019-06-21 19:30:00,25.0,0.152513228,23.20225353150824 +2019-06-21 19:45:00,25.0,0.156084656,23.203926926620948 +2019-06-21 20:00:00,25.0,0.161507937,23.205600552748734 +2019-06-21 20:15:00,25.0,0.167460317,23.207274409676323 +2019-06-21 20:30:00,25.0,0.168253968,23.208948497188423 +2019-06-21 20:45:00,25.0,0.155820106,23.21062281506972 +2019-06-21 21:00:00,25.0,0.152645503,23.21229736310484 +2019-06-21 21:15:00,25.0,0.13968254,23.21397214107842 +2019-06-21 21:30:00,25.0,0.127910053,23.215647148775027 +2019-06-21 21:45:00,25.0,0.120899471,23.21732238597923 +2019-06-21 22:00:00,25.0,0.113756614,23.21899785247555 +2019-06-21 22:15:00,25.0,0.100661376,23.220673548048484 +2019-06-21 22:30:00,25.0,0.091269841,23.22234947248251 +2019-06-21 22:45:00,25.0,0.087698413,23.224025625562053 +2019-06-21 23:00:00,25.0,0.084391534,23.225702007071536 +2019-06-21 23:15:00,25.0,0.073941799,23.227378616795324 +2019-06-21 23:30:00,25.0,0.061243386,23.229055454517784 +2019-06-21 23:45:00,25.0,0.053835979,23.23073252002322 +2019-06-22 00:00:00,25.0,0.051190476,23.232409813095938 +2019-06-22 00:15:00,25.0,0.054100529,23.234087333520193 +2019-06-22 00:30:00,25.0,0.053571429,23.23576508108022 +2019-06-22 00:45:00,25.0,0.052248677,23.23744305556023 +2019-06-22 01:00:00,25.0,0.050925926,23.239121256744387 +2019-06-22 01:15:00,25.0,0.049603175,23.240799684416842 +2019-06-22 01:30:00,25.0,0.04510582,23.242478338361714 +2019-06-22 01:45:00,25.0,0.042857143,23.244157218363085 +2019-06-22 02:00:00,25.0,0.039814815,23.245836324205023 +2019-06-22 02:15:00,25.0,0.03994709,23.247515655671545 +2019-06-22 02:30:00,25.0,0.042592593,23.249195212546663 +2019-06-22 02:45:00,25.0,0.042724868,23.25087499461434 +2019-06-22 03:00:00,25.0,0.042063492,23.252555001658518 +2019-06-22 03:15:00,25.0,0.038624339,23.254235233463124 +2019-06-22 03:30:00,25.0,0.033597884,23.255915689812024 +2019-06-22 03:45:00,25.0,0.032407407,23.257596370489093 +2019-06-22 04:00:00,25.0,0.031084656,23.25927727527814 +2019-06-22 04:15:00,25.0,0.029232804,23.260958403962977 +2019-06-22 04:30:00,25.0,0.027380952,23.262639756327363 +2019-06-22 04:45:00,25.0,0.023280423,23.264321332155042 +2019-06-22 05:00:00,25.0,0.019708995,23.26600313122973 +2019-06-22 05:15:00,25.0,0.018650794,23.26768515333511 +2019-06-22 05:30:00,25.0,0.017460317,23.26936739825483 +2019-06-22 05:45:00,25.0,0.016137566,23.271049865772518 +2019-06-22 06:00:00,25.0,0.01521164,23.272732555671777 +2019-06-22 06:15:00,25.0,0.013227513,23.274415467736166 +2019-06-22 06:30:00,25.0,0.012037037,23.27609860174923 +2019-06-22 06:45:00,25.0,0.010978836,23.277781957494483 +2019-06-22 07:00:00,25.0,0.009126984,23.279465534755403 +2019-06-22 07:15:00,25.0,0.007142857,23.28114933331545 +2019-06-22 07:30:00,25.0,0.005687831,23.282833352958043 +2019-06-22 07:45:00,25.0,0.004232804,23.284517593466585 +2019-06-22 08:00:00,25.0,0.003174603,23.28620205462444 +2019-06-22 08:15:00,25.0,0.002777778,23.287886736214954 +2019-06-22 08:30:00,25.0,0.002380952,23.28957163802144 +2019-06-22 08:45:00,25.0,0.002116402,23.291256759827174 +2019-06-22 09:00:00,25.0,0.001851852,23.29294210141542 +2019-06-22 09:15:00,25.0,0.001322751,23.2946276625694 +2019-06-22 09:30:00,25.0,0.001190476,23.296313443072318 +2019-06-22 09:45:00,25.0,0.000925926,23.297999442707344 +2019-06-22 10:00:00,25.0,0.001058201,23.299685661257616 +2019-06-22 10:15:00,25.0,0.001719577,23.301372098506253 +2019-06-22 10:30:00,25.0,0.001984127,23.30305875423634 +2019-06-22 10:45:00,25.0,0.001851852,23.30474562823094 +2019-06-22 11:00:00,25.0,0.002380952,23.306432720273076 +2019-06-22 11:15:00,25.0,0.002777778,23.30812003014575 +2019-06-22 11:30:00,25.0,0.002513228,23.30980755763195 +2019-06-22 11:45:00,25.0,0.001984127,23.311495302514604 +2019-06-22 12:00:00,25.0,0.003306878,23.313183264576644 +2019-06-22 12:15:00,25.0,0.003968254,23.31487144360095 +2019-06-22 12:30:00,25.0,0.004232804,23.316559839370395 +2019-06-22 12:45:00,25.0,0.005291005,23.318248451667806 +2019-06-22 13:00:00,25.0,0.006613757,23.31993728027599 +2019-06-22 13:15:00,25.0,0.007407407,23.321626324977732 +2019-06-22 13:30:00,25.0,0.009126984,23.323315585555775 +2019-06-22 13:45:00,25.0,0.010714286,23.32500506179285 +2019-06-22 14:00:00,25.0,0.013227513,23.326694753471646 +2019-06-22 14:15:00,25.0,0.016931217,23.328384660374837 +2019-06-22 14:30:00,25.0,0.02037037,23.33007478228506 +2019-06-22 14:45:00,25.0,0.024338624,23.331765118984926 +2019-06-22 15:00:00,25.0,0.027248677,23.333455670257024 +2019-06-22 15:15:00,25.0,0.030555556,23.335146435883907 +2019-06-22 15:30:00,25.0,0.032407407,23.336837415648112 +2019-06-22 15:45:00,25.0,0.036772487,23.338528609332133 +2019-06-22 16:00:00,25.0,0.041137566,23.34022001671845 +2019-06-22 16:15:00,25.0,0.042195767,23.341911637589508 +2019-06-22 16:30:00,25.0,0.043915344,23.343603471727725 +2019-06-22 16:45:00,25.0,0.049603175,23.3452955189155 +2019-06-22 17:00:00,25.0,0.055820106,23.34698777893519 +2019-06-22 17:15:00,25.0,0.064417989,23.34868025156914 +2019-06-22 17:30:00,25.0,0.071825397,23.35037293659965 +2019-06-22 17:45:00,25.0,0.077380952,23.352065833809014 +2019-06-22 18:00:00,25.0,0.082936508,23.353758942979486 +2019-06-22 18:15:00,25.0,0.092328042,23.355452263893284 +2019-06-22 18:30:00,25.0,0.098941799,23.357145796332624 +2019-06-22 18:45:00,25.0,0.103174603,23.358839540079668 +2019-06-22 19:00:00,25.0,0.106216931,23.36053349491657 +2019-06-22 19:15:00,25.0,0.107407407,23.362227660625447 +2019-06-22 19:30:00,25.0,0.110714286,23.363922036988388 +2019-06-22 19:45:00,25.0,0.111772487,23.365616623787467 +2019-06-22 20:00:00,25.0,0.108730159,23.36731142080471 +2019-06-22 20:15:00,25.0,0.108068783,23.369006427822143 +2019-06-22 20:30:00,25.0,0.107804233,23.37070164462174 +2019-06-22 20:45:00,25.0,0.108862434,23.37239707098546 +2019-06-22 21:00:00,25.0,0.108333333,23.374092706695237 +2019-06-22 21:15:00,25.0,0.111375661,23.375788551532967 +2019-06-22 21:30:00,25.0,0.115079365,23.377484605280536 +2019-06-22 21:45:00,25.0,0.117328042,23.379180867719786 +2019-06-22 22:00:00,25.0,0.122222222,23.380877338632544 +2019-06-22 22:15:00,25.0,0.127513228,23.382574017800604 +2019-06-22 22:30:00,25.0,0.133068783,23.38427090500574 +2019-06-22 22:45:00,25.0,0.140740741,23.385968000029685 +2019-06-22 23:00:00,25.0,0.146164021,23.38766530265416 +2019-06-22 23:15:00,25.0,0.145899471,23.389362812660856 +2019-06-22 23:30:00,25.0,0.14484127,23.39106052983143 +2019-06-22 23:45:00,25.0,0.13452381,23.39275845394753 +2019-06-23 00:00:00,25.0,0.127645503,23.39445658479075 +2019-06-23 00:15:00,25.0,0.125132275,23.39615492214268 +2019-06-23 00:30:00,25.0,0.128042328,23.397853465784873 +2019-06-23 00:45:00,25.0,0.12989418,23.399552215498858 +2019-06-23 01:00:00,25.0,0.132407407,23.401251171066146 +2019-06-23 01:15:00,25.0,0.137566138,23.4029503322682 +2019-06-23 01:30:00,25.0,0.142989418,23.404649698886487 +2019-06-23 01:45:00,25.0,0.149470899,23.406349270702414 +2019-06-23 02:00:00,25.0,0.15489418,23.408049047497386 +2019-06-23 02:15:00,25.0,0.158201058,23.409749029052772 +2019-06-23 02:30:00,25.0,0.158994709,23.411449215149915 +2019-06-23 02:45:00,25.0,0.158730159,23.41314960557014 +2019-06-23 03:00:00,25.0,0.150132275,23.41485020009473 +2019-06-23 03:15:00,25.0,0.148015873,23.41655099850496 +2019-06-23 03:30:00,25.0,0.147619048,23.418252000582058 +2019-06-23 03:45:00,25.0,0.152513228,23.419953206107245 +2019-06-23 04:00:00,25.0,0.161375661,23.42165461486171 +2019-06-23 04:15:00,25.0,0.163227513,23.423356226626606 +2019-06-23 04:30:00,25.0,0.167328042,23.425058041183075 +2019-06-23 04:45:00,25.0,0.171296296,23.42676005831222 +2019-06-23 05:00:00,25.0,0.182936508,23.428462277795127 +2019-06-23 05:15:00,25.0,0.194973545,23.43016469941285 +2019-06-23 05:30:00,25.0,0.215079365,23.431867322946424 +2019-06-23 05:45:00,25.0,0.234656085,23.43357014817685 +2019-06-23 06:00:00,25.0,0.250396825,23.435273174885108 +2019-06-23 06:15:00,25.0,0.255687831,23.43697640285215 +2019-06-23 06:30:00,25.0,0.244444444,23.438679831858902 +2019-06-23 06:45:00,25.0,0.243783069,23.44038346168627 +2019-06-23 07:00:00,25.0,0.246693122,23.442087292115122 +2019-06-23 07:15:00,25.0,0.246693122,23.44379132292631 +2019-06-23 07:30:00,25.0,0.245502646,23.445495553900663 +2019-06-23 07:45:00,25.0,0.229232804,23.44719998481897 +2019-06-23 08:00:00,25.0,0.22037037,23.448904615462013 +2019-06-23 08:15:00,25.0,0.214153439,23.450609445610528 +2019-06-23 08:30:00,25.0,0.222222222,23.452314475045245 +2019-06-23 08:45:00,25.0,0.211772487,23.454019703546848 +2019-06-23 09:00:00,25.0,0.208465608,23.455725130896017 +2019-06-23 09:15:00,25.0,0.213756614,23.457430756873396 +2019-06-23 09:30:00,25.0,0.217592593,23.459136581259596 +2019-06-23 09:45:00,25.0,0.215608466,23.460842603835218 +2019-06-23 10:00:00,25.0,0.218650794,23.462548824380818 +2019-06-23 10:15:00,25.0,0.220634921,23.464255242676952 +2019-06-23 10:30:00,25.0,0.234920635,23.465961858504127 +2019-06-23 10:45:00,25.0,0.241534392,23.467668671642837 +2019-06-23 11:00:00,25.0,0.252513228,23.46937568187355 +2019-06-23 11:15:00,25.0,0.269444444,23.4710828889767 +2019-06-23 11:30:00,25.0,0.292063492,23.47279029273271 +2019-06-23 11:45:00,25.0,0.306349206,23.474497892921963 +2019-06-23 12:00:00,25.0,0.316666667,23.476205689324825 +2019-06-23 12:15:00,25.0,0.325793651,23.477913681721642 +2019-06-23 12:30:00,25.0,0.335714286,23.479621869892718 +2019-06-23 12:45:00,25.0,0.340740741,23.481330253618353 +2019-06-23 13:00:00,25.0,0.341005291,23.483038832678798 +2019-06-23 13:15:00,25.0,0.338888889,23.484747606854302 +2019-06-23 13:30:00,25.0,0.343915344,23.48645657592507 +2019-06-23 13:45:00,25.0,0.348148148,23.488165739671295 +2019-06-23 14:00:00,25.0,0.353439153,23.489875097873146 +2019-06-23 14:15:00,25.0,0.361640212,23.491584650310752 +2019-06-23 14:30:00,25.0,0.367063492,23.493294396764234 +2019-06-23 14:45:00,25.0,0.366137566,23.495004337013672 +2019-06-23 15:00:00,25.0,0.369179894,23.496714470839137 +2019-06-23 15:15:00,25.0,0.372354497,23.49842479802066 +2019-06-23 15:30:00,25.0,0.383597884,23.500135318338263 +2019-06-23 15:45:00,25.0,0.403042328,23.501846031571933 +2019-06-23 16:00:00,25.0,0.420238095,23.50355693750163 +2019-06-23 16:15:00,25.0,0.438624339,23.5052680359073 +2019-06-23 16:30:00,25.0,0.456084656,23.50697932656885 +2019-06-23 16:45:00,25.0,0.476719577,23.508690809266174 +2019-06-23 17:00:00,25.0,0.493783069,23.510402483779135 +2019-06-23 17:15:00,25.0,0.492063492,23.512114349887575 +2019-06-23 17:30:00,25.0,0.496164021,23.51382640737131 +2019-06-23 17:45:00,25.0,0.501851852,23.515538656010133 +2019-06-23 18:00:00,25.0,0.505555556,23.51725109558381 +2019-06-23 18:15:00,25.0,0.509259259,23.518963725872077 +2019-06-23 18:30:00,25.0,0.523941799,23.52067654665466 +2019-06-23 18:45:00,25.0,0.533201058,23.522389557711243 +2019-06-23 19:00:00,25.0,0.541269841,23.5241027588215 +2019-06-23 19:15:00,25.0,0.546693122,23.52581614976508 +2019-06-23 19:30:00,25.0,0.547089947,23.527529730321593 +2019-06-23 19:45:00,25.0,0.549338624,23.529243500270645 +2019-06-23 20:00:00,25.0,0.548677249,23.530957459391793 +2019-06-23 20:15:00,25.0,0.547354497,23.5326716074646 +2019-06-23 20:30:00,25.0,0.547354497,23.53438594426857 +2019-06-23 20:45:00,25.0,0.548280423,23.536100469583214 +2019-06-23 21:00:00,25.0,0.548809524,23.537815183188005 +2019-06-23 21:15:00,25.0,0.556481481,23.53953008486239 +2019-06-23 21:30:00,25.0,0.564417989,23.541245174385793 +2019-06-23 21:45:00,25.0,0.573015873,23.542960451537617 +2019-06-23 22:00:00,25.0,0.576984127,23.544675916097237 +2019-06-23 22:15:00,25.0,0.582804233,23.54639156784401 +2019-06-23 22:30:00,25.0,0.583597884,23.548107406557264 +2019-06-23 22:45:00,25.0,0.582936508,23.5498234320163 +2019-06-23 23:00:00,25.0,0.582010582,23.5515396440004 +2019-06-23 23:15:00,25.0,0.57989418,23.55325604228883 +2019-06-23 23:30:00,25.0,0.577248677,23.554972626660806 +2019-06-23 23:45:00,25.0,0.57037037,23.556689396895546 +2019-06-24 00:00:00,25.0,0.562962963,23.55840635277224 +2019-06-24 00:15:00,25.0,0.558201058,23.56012349407004 +2019-06-24 00:30:00,25.0,0.551851852,23.561840820568094 +2019-06-24 00:45:00,25.0,0.552910053,23.563558332045503 +2019-06-24 01:00:00,25.0,0.547619048,23.565276028281367 +2019-06-24 01:15:00,25.0,0.544973545,23.566993909054744 +2019-06-24 01:30:00,25.0,0.543915344,23.56871197414468 +2019-06-24 01:45:00,25.0,0.539153439,23.570430223330195 +2019-06-24 02:00:00,25.0,0.534391534,23.57214865639028 +2019-06-24 02:15:00,25.0,0.536507937,23.57386727310391 +2019-06-24 02:30:00,25.0,0.539153439,23.57558607325003 +2019-06-24 02:45:00,25.0,0.538624339,23.577305056607567 +2019-06-24 03:00:00,25.0,0.538095238,23.579024222955418 +2019-06-24 03:15:00,25.0,0.539153439,23.580743572072457 +2019-06-24 03:30:00,25.0,0.539153439,23.58246310373755 +2019-06-24 03:45:00,25.0,0.544444444,23.58418281772951 +2019-06-24 04:00:00,25.0,0.547619048,23.585902713827156 +2019-06-24 04:15:00,25.0,0.54973545,23.587622791809267 +2019-06-24 04:30:00,25.0,0.555026455,23.589343051454602 +2019-06-24 04:45:00,25.0,0.559259259,23.591063492541895 +2019-06-24 05:00:00,25.0,0.564021164,23.59278411484986 +2019-06-24 05:15:00,25.0,0.570899471,23.59450491815719 +2019-06-24 05:30:00,25.0,0.578835979,23.59622590224255 +2019-06-24 05:45:00,25.0,0.584126984,23.597947066884586 +2019-06-24 06:00:00,25.0,0.584656085,23.599668411861906 +2019-06-24 06:15:00,25.0,0.588359788,23.60138993695312 +2019-06-24 06:30:00,25.0,0.592063492,23.603111641936795 +2019-06-24 06:45:00,25.0,0.592063492,23.60483352659148 +2019-06-24 07:00:00,25.0,0.58994709,23.60655559069571 +2019-06-24 07:15:00,25.0,0.585714286,23.608277834027977 +2019-06-24 07:30:00,25.0,0.582010582,23.610000256366774 +2019-06-24 07:45:00,25.0,0.583068783,23.61172285749055 +2019-06-24 08:00:00,25.0,0.582539683,23.613445637177747 +2019-06-24 08:15:00,25.0,0.577248677,23.615168595206775 +2019-06-24 08:30:00,25.0,0.576719577,23.61689173135602 +2019-06-24 08:45:00,25.0,0.576719577,23.618615045403853 +2019-06-24 09:00:00,25.0,0.577248677,23.620338537128614 +2019-06-24 09:15:00,25.0,0.573544974,23.622062206308623 +2019-06-24 09:30:00,25.0,0.576719577,23.62378605272218 +2019-06-24 09:45:00,25.0,0.580952381,23.625510076147556 +2019-06-24 10:00:00,25.0,0.579365079,23.627234276363012 +2019-06-24 10:15:00,25.0,0.579365079,23.628958653146764 +2019-06-24 10:30:00,25.0,0.577248677,23.630683206277034 +2019-06-24 10:45:00,25.0,0.576719577,23.632407935531994 +2019-06-24 11:00:00,25.0,0.572486772,23.63413284068981 +2019-06-24 11:15:00,25.0,0.571957672,23.63585792152862 +2019-06-24 11:30:00,25.0,0.565079365,23.637583177826535 +2019-06-24 11:45:00,25.0,0.568783069,23.639308609361663 +2019-06-24 12:00:00,25.0,0.564550265,23.641034215912057 +2019-06-24 12:15:00,25.0,0.566137566,23.642759997255784 +2019-06-24 12:30:00,25.0,0.567195767,23.64448595317085 +2019-06-24 12:45:00,25.0,0.567724868,23.64621208343528 +2019-06-24 13:00:00,25.0,0.574603175,23.647938387827033 +2019-06-24 13:15:00,25.0,0.577248677,23.649664866124084 +2019-06-24 13:30:00,25.0,0.584126984,23.651391518104365 +2019-06-24 13:45:00,25.0,0.581481481,23.653118343545785 +2019-06-24 14:00:00,25.0,0.578835979,23.654845342226245 +2019-06-24 14:15:00,25.0,0.579365079,23.656572513923606 +2019-06-24 14:30:00,25.0,0.582010582,23.65829985841572 +2019-06-24 14:45:00,25.0,0.582010582,23.66002737548041 +2019-06-24 15:00:00,25.0,0.591005291,23.661755064895477 +2019-06-24 15:15:00,25.0,0.598412698,23.663482926438707 +2019-06-24 15:30:00,25.0,0.601587302,23.66521095988785 +2019-06-24 15:45:00,25.0,0.600529101,23.666939165020654 +2019-06-24 16:00:00,25.0,0.607407407,23.668667541614823 +2019-06-24 16:15:00,25.0,0.616402116,23.67039608944805 +2019-06-24 16:30:00,25.0,0.62010582,23.672124808298015 +2019-06-24 16:45:00,25.0,0.628042328,23.673853697942356 +2019-06-24 17:00:00,25.0,0.634391534,23.675582758158704 +2019-06-24 17:15:00,25.0,0.634391534,23.67731198872466 +2019-06-24 17:30:00,25.0,0.631746032,23.67904138941781 +2019-06-24 17:45:00,25.0,0.62962963,23.680770960015714 +2019-06-24 18:00:00,25.0,0.635978836,23.682500700295904 +2019-06-24 18:15:00,25.0,0.63968254,23.684230610035907 +2019-06-24 18:30:00,25.0,0.642857143,23.68596068901321 +2019-06-24 18:45:00,25.0,0.643915344,23.687690937005293 +2019-06-24 19:00:00,25.0,0.640740741,23.689421353789598 +2019-06-24 19:15:00,25.0,0.642328042,23.691151939143566 +2019-06-24 19:30:00,25.0,0.650793651,23.6928826928446 +2019-06-24 19:45:00,25.0,0.65026455,23.69461361467008 +2019-06-24 20:00:00,25.0,0.647089947,23.696344704397383 +2019-06-24 20:15:00,25.0,0.643915344,23.69807596180384 +2019-06-24 20:30:00,25.0,0.64021164,23.699807386666787 +2019-06-24 20:45:00,25.0,0.635978836,23.701538978763512 +2019-06-24 21:00:00,25.0,0.628042328,23.7032707378713 +2019-06-24 21:15:00,25.0,0.62962963,23.705002663767402 +2019-06-24 21:30:00,25.0,0.632275132,23.706734756229057 +2019-06-24 21:45:00,25.0,0.631216931,23.708467015033484 +2019-06-24 22:00:00,25.0,0.626984127,23.71019943995787 +2019-06-24 22:15:00,25.0,0.628571429,23.71193203077939 +2019-06-24 22:30:00,25.0,0.628571429,23.71366478727519 +2019-06-24 22:45:00,25.0,0.622222222,23.7153977092224 +2019-06-24 23:00:00,25.0,0.613756614,23.71713079639813 +2019-06-24 23:15:00,25.0,0.611111111,23.718864048579462 +2019-06-24 23:30:00,25.0,0.606349206,23.72059746554347 +2019-06-24 23:45:00,25.0,0.593650794,23.722331047067186 +2019-06-25 00:00:00,25.0,0.588888889,23.724064792927646 +2019-06-25 00:15:00,25.0,0.575132275,23.725798702901837 +2019-06-25 00:30:00,25.0,0.565608466,23.72753277676675 +2019-06-25 00:45:00,25.0,0.55978836,23.729267014299342 +2019-06-25 01:00:00,25.0,0.557671958,23.73100141527655 +2019-06-25 01:15:00,25.0,0.553439153,23.732735979475294 +2019-06-25 01:30:00,25.0,0.541269841,23.734470706672465 +2019-06-25 01:45:00,25.0,0.524867725,23.736205596644943 +2019-06-25 02:00:00,25.0,0.506349206,23.73794064916958 +2019-06-25 02:15:00,25.0,0.47989418,23.739675864023212 +2019-06-25 02:30:00,25.0,0.469312169,23.74141124098265 +2019-06-25 02:45:00,25.0,0.464550265,23.743146779824684 +2019-06-25 03:00:00,25.0,0.454497354,23.744882480326094 +2019-06-25 03:15:00,25.0,0.441269841,23.746618342263616 +2019-06-25 03:30:00,25.0,0.432275132,23.74835436541399 +2019-06-25 03:45:00,25.0,0.422222222,23.750090549553917 +2019-06-25 04:00:00,25.0,0.41005291,23.75182689446009 +2019-06-25 04:15:00,25.0,0.398412698,23.753563399909183 +2019-06-25 04:30:00,25.0,0.396296296,23.75530006567783 +2019-06-25 04:45:00,25.0,0.385714286,23.757036891542665 +2019-06-25 05:00:00,25.0,0.378306878,23.758773877280284 +2019-06-25 05:15:00,25.0,0.378306878,23.760511022667288 +2019-06-25 05:30:00,25.0,0.375132275,23.762248327480222 +2019-06-25 05:45:00,25.0,0.366137566,23.763985791495646 +2019-06-25 06:00:00,25.0,0.355026455,23.765723414490076 +2019-06-25 06:15:00,25.0,0.338624339,23.767461196240014 +2019-06-25 06:30:00,25.0,0.317989418,23.76919913652195 +2019-06-25 06:45:00,25.0,0.297883598,23.770937235112335 +2019-06-25 07:00:00,25.0,0.274074074,23.772675491787624 +2019-06-25 07:15:00,25.0,0.248677249,23.77441390632422 +2019-06-25 07:30:00,25.0,0.235449735,23.77615247849854 +2019-06-25 07:45:00,25.0,0.225925926,23.777891208086963 +2019-06-25 08:00:00,25.0,0.208465608,23.77963009486584 +2019-06-25 08:15:00,25.0,0.194708995,23.781369138611524 +2019-06-25 08:30:00,25.0,0.186243386,23.783108339100323 +2019-06-25 08:45:00,25.0,0.173544974,23.78484769610855 +2019-06-25 09:00:00,25.0,0.164550265,23.78658720941247 +2019-06-25 09:15:00,25.0,0.16031746,23.788326878788354 +2019-06-25 09:30:00,25.0,0.149206349,23.79006670401244 +2019-06-25 09:45:00,25.0,0.135978836,23.79180668486094 +2019-06-25 10:00:00,25.0,0.125925926,23.793546821110066 +2019-06-25 10:15:00,25.0,0.127513228,23.795287112535988 +2019-06-25 10:30:00,25.0,0.138624339,23.79702755891487 +2019-06-25 10:45:00,25.0,0.148148148,23.79876816002285 +2019-06-25 11:00:00,25.0,0.143915344,23.800508915636048 +2019-06-25 11:15:00,25.0,0.135978836,23.802249825530566 +2019-06-25 11:30:00,25.0,0.142328042,23.80399088948248 +2019-06-25 11:45:00,25.0,0.167724868,23.805732107267858 +2019-06-25 12:00:00,25.0,0.18994709,23.80747347866273 +2019-06-25 12:15:00,25.0,0.192592593,23.80921500344312 +2019-06-25 12:30:00,25.0,0.191005291,23.81095668138504 +2019-06-25 12:45:00,25.0,0.211640212,23.812698512264454 +2019-06-25 13:00:00,25.0,0.231216931,23.81444049585734 +2019-06-25 13:15:00,25.0,0.237566138,23.816182631939625 +2019-06-25 13:30:00,25.0,0.241798942,23.817924920287247 +2019-06-25 13:45:00,25.0,0.242857143,23.819667360676092 +2019-06-25 14:00:00,25.0,0.247089947,23.821409952882053 +2019-06-25 14:15:00,25.0,0.255555556,23.823152696681 +2019-06-25 14:30:00,25.0,0.260846561,23.82489559184876 +2019-06-25 14:45:00,25.0,0.262962963,23.826638638161178 +2019-06-25 15:00:00,25.0,0.264021164,23.828381835394044 +2019-06-25 15:15:00,25.0,0.266666667,23.83012518332315 +2019-06-25 15:30:00,25.0,0.257671958,23.83186868172426 +2019-06-25 15:45:00,25.0,0.242328042,23.83361233037312 +2019-06-25 16:00:00,25.0,0.224338624,23.83535612904547 +2019-06-25 16:15:00,25.0,0.206878307,23.837100077517 +2019-06-25 16:30:00,25.0,0.194708995,23.838844175563413 +2019-06-25 16:45:00,25.0,0.179365079,23.840588422960373 +2019-06-25 17:00:00,25.0,0.167195767,23.842332819483534 +2019-06-25 17:15:00,25.0,0.152380952,23.84407736490852 +2019-06-25 17:30:00,25.0,0.137566138,23.845822059010956 +2019-06-25 17:45:00,25.0,0.127513228,23.84756690156643 +2019-06-25 18:00:00,25.0,0.123809524,23.849311892350514 +2019-06-25 18:15:00,25.0,0.124338624,23.851057031138765 +2019-06-25 18:30:00,25.0,0.125396825,23.852802317706715 +2019-06-25 18:45:00,25.0,0.130687831,23.854547751829887 +2019-06-25 19:00:00,25.0,0.14021164,23.85629333328378 +2019-06-25 19:15:00,25.0,0.146560847,23.858039061843865 +2019-06-25 19:30:00,25.0,0.161375661,23.859784937285614 +2019-06-25 19:45:00,25.0,0.176190476,23.86153095938446 +2019-06-25 20:00:00,25.0,0.183597884,23.86327712791583 +2019-06-25 20:15:00,25.0,0.191534392,23.865023442655122 +2019-06-25 20:30:00,25.0,0.195767196,23.866769903377726 +2019-06-25 20:45:00,25.0,0.202645503,23.86851650985901 +2019-06-25 21:00:00,25.0,0.202116402,23.870263261874314 +2019-06-25 21:15:00,25.0,0.197354497,23.87201015919897 +2019-06-25 21:30:00,25.0,0.202116402,23.873757201608292 +2019-06-25 21:45:00,25.0,0.205820106,23.875504388877573 +2019-06-25 22:00:00,25.0,0.204761905,23.877251720782073 +2019-06-25 22:15:00,25.0,0.186243386,23.878999197097055 +2019-06-25 22:30:00,25.0,0.167195767,23.88074681759776 +2019-06-25 22:45:00,25.0,0.146560847,23.882494582059394 +2019-06-25 23:00:00,25.0,0.134391534,23.88424249025716 +2019-06-25 23:15:00,25.0,0.123280423,23.88599054196624 +2019-06-25 23:30:00,25.0,0.108994709,23.887738736961797 +2019-06-25 23:45:00,25.0,0.095767196,23.889487075018966 +2019-06-26 00:00:00,25.0,0.087301587,23.891235555912875 +2019-06-26 00:15:00,25.0,0.087301587,23.89298417941864 +2019-06-26 00:30:00,25.0,0.094708995,23.894732945311333 +2019-06-26 00:45:00,25.0,0.097883598,23.896481853366037 +2019-06-26 01:00:00,25.0,0.124867725,23.898230903357796 +2019-06-26 01:15:00,25.0,0.14973545,23.899980095061647 +2019-06-26 01:30:00,25.0,0.184656085,23.9017294282526 +2019-06-26 01:45:00,25.0,0.207936508,23.903478902705658 +2019-06-26 02:00:00,25.0,0.257142857,23.905228518195795 +2019-06-26 02:15:00,25.0,0.287830688,23.906978274497973 +2019-06-26 02:30:00,25.0,0.324338624,23.908728171387136 +2019-06-26 02:45:00,25.0,0.369312169,23.910478208638203 +2019-06-26 03:00:00,25.0,0.376719577,23.912228386026086 +2019-06-26 03:15:00,25.0,0.378306878,23.913978703325668 +2019-06-26 03:30:00,25.0,0.368253968,23.915729160311823 +2019-06-26 03:45:00,25.0,0.36984127,23.917479756759406 +2019-06-26 04:00:00,25.0,0.35026455,23.91923049244324 +2019-06-26 04:15:00,25.0,0.34973545,23.920981367138157 +2019-06-26 04:30:00,25.0,0.34021164,23.92273238061894 +2019-06-26 04:45:00,25.0,0.331216931,23.924483532660375 +2019-06-26 05:00:00,25.0,0.32010582,23.926234823037234 +2019-06-26 05:15:00,25.0,0.32010582,23.92798625152425 +2019-06-26 05:30:00,25.0,0.34021164,23.929737817896157 +2019-06-26 05:45:00,25.0,0.339153439,23.93148952192766 +2019-06-26 06:00:00,25.0,0.323280423,23.933241363393453 +2019-06-26 06:15:00,25.0,0.328571429,23.93499334206821 +2019-06-26 06:30:00,25.0,0.353968254,23.936745457726584 +2019-06-26 06:45:00,25.0,0.394179894,23.938497710143224 +2019-06-26 07:00:00,25.0,0.433333333,23.940250099092736 +2019-06-26 07:15:00,25.0,0.451322751,23.94200262434974 +2019-06-26 07:30:00,25.0,0.438095238,23.943755285688813 +2019-06-26 07:45:00,25.0,0.441798942,23.945508082884523 +2019-06-26 08:00:00,25.0,0.461375661,23.947261015711423 +2019-06-26 08:15:00,25.0,0.457142857,23.949014083944043 +2019-06-26 08:30:00,25.0,0.456613757,23.95076728735691 +2019-06-26 08:45:00,25.0,0.472486772,23.95252062572451 +2019-06-26 09:00:00,25.0,0.484126984,23.954274098821337 +2019-06-26 09:15:00,25.0,0.488359788,23.956027706421846 +2019-06-26 09:30:00,25.0,0.487301587,23.957781448300487 +2019-06-26 09:45:00,25.0,0.489417989,23.959535324231688 +2019-06-26 10:00:00,25.0,0.482539683,23.96128933398986 +2019-06-26 10:15:00,25.0,0.473015873,23.96304347734941 +2019-06-26 10:30:00,25.0,0.471957672,23.9647977540847 +2019-06-26 10:45:00,25.0,0.471957672,23.9665521639701 +2019-06-26 11:00:00,25.0,0.453968254,23.96830670677995 +2019-06-26 11:15:00,25.0,0.443386243,23.97006138228858 +2019-06-26 11:30:00,25.0,0.440740741,23.971816190270296 +2019-06-26 11:45:00,25.0,0.430687831,23.973571130499394 +2019-06-26 12:00:00,25.0,0.407407407,23.97532620275015 +2019-06-26 12:15:00,25.0,0.403703704,23.977081406796817 +2019-06-26 12:30:00,25.0,0.401587302,23.97883674241364 +2019-06-26 12:45:00,25.0,0.402116402,23.980592209374844 +2019-06-26 13:00:00,25.0,0.4,23.982347807454637 +2019-06-26 13:15:00,25.0,0.430687831,23.984103536427213 +2019-06-26 13:30:00,25.0,0.482539683,23.985859396066736 +2019-06-26 13:45:00,25.0,0.516931217,23.98761538614738 +2019-06-26 14:00:00,25.0,0.535449735,23.989371506443263 +2019-06-26 14:15:00,25.0,0.536507937,23.99112775672853 +2019-06-26 14:30:00,25.0,0.539153439,23.992884136777274 +2019-06-26 14:45:00,25.0,0.528042328,23.994640646363592 +2019-06-26 15:00:00,25.0,0.515873016,23.99639728526156 +2019-06-26 15:15:00,25.0,0.51005291,23.998154053245223 +2019-06-26 15:30:00,25.0,0.516931217,23.999910950088637 +2019-06-26 15:45:00,25.0,0.51957672,24.001667975565812 +2019-06-26 16:00:00,25.0,0.521164021,24.00342512945077 +2019-06-26 16:15:00,25.0,0.523809524,24.005182411517485 +2019-06-26 16:30:00,25.0,0.52010582,24.006939821539945 +2019-06-26 16:45:00,25.0,0.527513228,24.0086973592921 +2019-06-26 17:00:00,25.0,0.533333333,24.010455024547895 +2019-06-26 17:15:00,25.0,0.546031746,24.012212817081256 +2019-06-26 17:30:00,25.0,0.553968254,24.01397073666609 +2019-06-26 17:45:00,25.0,0.558730159,24.015728783076288 +2019-06-26 18:00:00,25.0,0.555026455,24.017486956085726 +2019-06-26 18:15:00,25.0,0.549206349,24.019245255468263 +2019-06-26 18:30:00,25.0,0.554497354,24.021003680997747 +2019-06-26 18:45:00,25.0,0.547089947,24.022762232448002 +2019-06-26 19:00:00,25.0,0.543915344,24.024520909592844 +2019-06-26 19:15:00,25.0,0.535449735,24.026279712206055 +2019-06-26 19:30:00,25.0,0.522751323,24.028038640061432 +2019-06-26 19:45:00,25.0,0.514285714,24.029797692932718 +2019-06-26 20:00:00,25.0,0.503174603,24.031556870593672 +2019-06-26 20:15:00,25.0,0.507936508,24.03331617281803 +2019-06-26 20:30:00,25.0,0.506878307,24.03507559937949 +2019-06-26 20:45:00,25.0,0.506878307,24.03683515005176 +2019-06-26 21:00:00,25.0,0.518518519,24.038594824608523 +2019-06-26 21:15:00,25.0,0.535449735,24.040354622823443 +2019-06-26 21:30:00,25.0,0.536507937,24.042114544470174 +2019-06-26 21:45:00,25.0,0.544444444,24.043874589322343 +2019-06-26 22:00:00,25.0,0.543915344,24.045634757153582 +2019-06-26 22:15:00,25.0,0.545502646,24.04739504773748 +2019-06-26 22:30:00,25.0,0.544973545,24.049155460847636 +2019-06-26 22:45:00,25.0,0.544973545,24.05091599625761 +2019-06-26 23:00:00,25.0,0.547089947,24.05267665374097 +2019-06-26 23:15:00,25.0,0.549206349,24.05443743307125 +2019-06-26 23:30:00,25.0,0.561904762,24.05619833402197 +2019-06-26 23:45:00,25.0,0.55978836,24.057959356366652 +2019-06-27 00:00:00,25.0,0.555555556,24.059720499878775 +2019-06-27 00:15:00,25.0,0.562433862,24.06148176433183 +2019-06-27 00:30:00,25.0,0.564550265,24.063243149499264 +2019-06-27 00:45:00,25.0,0.561375661,24.06500465515453 +2019-06-27 01:00:00,25.0,0.565608466,24.066766281071068 +2019-06-27 01:15:00,25.0,0.565079365,24.068528027022282 +2019-06-27 01:30:00,25.0,0.574603175,24.070289892781577 +2019-06-27 01:45:00,25.0,0.576719577,24.072051878122338 +2019-06-27 02:00:00,25.0,0.577777778,24.07381398281793 +2019-06-27 02:15:00,25.0,0.577248677,24.075576206641713 +2019-06-27 02:30:00,25.0,0.578306878,24.07733854936702 +2019-06-27 02:45:00,25.0,0.577248677,24.079101010767182 +2019-06-27 03:00:00,25.0,0.578306878,24.0808635906155 +2019-06-27 03:15:00,25.0,0.577777778,24.082626288685272 +2019-06-27 03:30:00,25.0,0.584126984,24.08438910474977 +2019-06-27 03:45:00,25.0,0.573544974,24.086152038582263 +2019-06-27 04:00:00,25.0,0.573544974,24.08791508995599 +2019-06-27 04:15:00,25.0,0.567724868,24.08967825864419 +2019-06-27 04:30:00,25.0,0.568253968,24.091441544420082 +2019-06-27 04:45:00,25.0,0.554497354,24.09320494705686 +2019-06-27 05:00:00,25.0,0.563492063,24.09496846632772 +2019-06-27 05:15:00,25.0,0.555555556,24.096732102005827 +2019-06-27 05:30:00,25.0,0.557142857,24.098495853864346 +2019-06-27 05:45:00,25.0,0.548148148,24.10025972167641 +2019-06-27 06:00:00,25.0,0.542857143,24.102023705215146 +2019-06-27 06:15:00,25.0,0.538095238,24.103787804253678 +2019-06-27 06:30:00,25.0,0.531216931,24.10555201856509 +2019-06-27 06:45:00,25.0,0.518518519,24.107316347922477 +2019-06-27 07:00:00,25.0,0.508994709,24.109080792098894 +2019-06-27 07:15:00,25.0,0.492592593,24.110845350867404 +2019-06-27 07:30:00,25.0,0.501587302,24.112610024001043 +2019-06-27 07:45:00,25.0,0.496825397,24.114374811272832 +2019-06-27 08:00:00,25.0,0.512698413,24.116139712455784 +2019-06-27 08:15:00,25.0,0.507936508,24.117904727322887 +2019-06-27 08:30:00,25.0,0.480952381,24.119669855647132 +2019-06-27 08:45:00,25.0,0.478835979,24.12143509720147 +2019-06-27 09:00:00,25.0,0.495767196,24.12320045175886 +2019-06-27 09:15:00,25.0,0.519047619,24.12496591909224 +2019-06-27 09:30:00,25.0,0.49047619,24.12673149897452 +2019-06-27 09:45:00,25.0,0.477248677,24.128497191178624 +2019-06-27 10:00:00,25.0,0.46984127,24.13026299547743 +2019-06-27 10:15:00,25.0,0.447089947,24.132028911643825 +2019-06-27 10:30:00,25.0,0.445502646,24.133794939450667 +2019-06-27 10:45:00,25.0,0.444973545,24.135561078670808 +2019-06-27 11:00:00,25.0,0.460846561,24.137327329077088 +2019-06-27 11:15:00,25.0,0.478306878,24.139093690442316 +2019-06-27 11:30:00,25.0,0.480952381,24.14086016253931 +2019-06-27 11:45:00,25.0,0.481481481,24.142626745140856 +2019-06-27 12:00:00,25.0,0.469312169,24.144393438019737 +2019-06-27 12:15:00,25.0,0.447089947,24.146160240948706 +2019-06-27 12:30:00,25.0,0.433862434,24.147927153700522 +2019-06-27 12:45:00,25.0,0.420634921,24.149694176047927 +2019-06-27 13:00:00,25.0,0.410582011,24.151461307763626 +2019-06-27 13:15:00,25.0,0.407407407,24.15322854862034 +2019-06-27 13:30:00,25.0,0.424867725,24.15499589839075 +2019-06-27 13:45:00,25.0,0.427513228,24.156763356847552 +2019-06-27 14:00:00,25.0,0.433862434,24.158530923763394 +2019-06-27 14:15:00,25.0,0.429100529,24.160298598910938 +2019-06-27 14:30:00,25.0,0.41957672,24.16206638206282 +2019-06-27 14:45:00,25.0,0.421693122,24.16383427299166 +2019-06-27 15:00:00,25.0,0.40952381,24.165602271470075 +2019-06-27 15:15:00,25.0,0.402116402,24.167370377270654 +2019-06-27 15:30:00,25.0,0.394708995,24.16913859016598 +2019-06-27 15:45:00,25.0,0.380952381,24.170906909928625 +2019-06-27 16:00:00,25.0,0.382010582,24.17267533633114 +2019-06-27 16:15:00,25.0,0.392063492,24.17444386914607 +2019-06-27 16:30:00,25.0,0.389417989,24.176212508145934 +2019-06-27 16:45:00,25.0,0.387830688,24.17798125310326 +2019-06-27 17:00:00,25.0,0.385714286,24.17975010379053 +2019-06-27 17:15:00,25.0,0.38042328,24.18151905998024 +2019-06-27 17:30:00,25.0,0.368783069,24.183288121444868 +2019-06-27 17:45:00,25.0,0.369312169,24.185057287956862 +2019-06-27 18:00:00,25.0,0.365608466,24.18682655928868 +2019-06-27 18:15:00,25.0,0.34973545,24.18859593521274 +2019-06-27 18:30:00,25.0,0.337037037,24.190365415501475 +2019-06-27 18:45:00,25.0,0.317460317,24.192134999927276 +2019-06-27 19:00:00,25.0,0.30952381,24.193904688262545 +2019-06-27 19:15:00,25.0,0.306349206,24.19567448027966 +2019-06-27 19:30:00,25.0,0.3,24.197444375750983 +2019-06-27 19:45:00,25.0,0.301058201,24.199214374448868 +2019-06-27 20:00:00,25.0,0.296825397,24.20098447614565 +2019-06-27 20:15:00,25.0,0.287301587,24.202754680613662 +2019-06-27 20:30:00,25.0,0.281481481,24.20452498762521 +2019-06-27 20:45:00,25.0,0.266666667,24.20629539695259 +2019-06-27 21:00:00,25.0,0.249206349,24.2080659083681 +2019-06-27 21:15:00,25.0,0.242857143,24.209836521643997 +2019-06-27 21:30:00,25.0,0.246560847,24.211607236552556 +2019-06-27 21:45:00,25.0,0.241269841,24.21337805286601 +2019-06-27 22:00:00,25.0,0.234391534,24.215148970356605 +2019-06-27 22:15:00,25.0,0.241798942,24.216919988796548 +2019-06-27 22:30:00,25.0,0.240740741,24.21869110795806 +2019-06-27 22:45:00,25.0,0.235978836,24.220462327613326 +2019-06-27 23:00:00,25.0,0.228042328,24.22223364753453 +2019-06-27 23:15:00,25.0,0.221164021,24.224005067493845 +2019-06-27 23:30:00,25.0,0.218518519,24.22577658726342 +2019-06-27 23:45:00,25.0,0.225396825,24.22754820661541 +2019-06-28 00:00:00,25.0,0.221693122,24.229319925321928 +2019-06-28 00:15:00,25.0,0.213227513,24.2310917431551 +2019-06-28 00:30:00,25.0,0.216931217,24.232863659887037 +2019-06-28 00:45:00,25.0,0.222222222,24.23463567528982 +2019-06-28 01:00:00,25.0,0.21957672,24.236407789135537 +2019-06-28 01:15:00,25.0,0.212169312,24.23818000119625 +2019-06-28 01:30:00,25.0,0.214814815,24.239952311244007 +2019-06-28 01:45:00,25.0,0.213227513,24.241724719050865 +2019-06-28 02:00:00,25.0,0.206349206,24.24349722438884 +2019-06-28 02:15:00,25.0,0.205820106,24.245269827029954 +2019-06-28 02:30:00,25.0,0.198412698,24.247042526746206 +2019-06-28 02:45:00,25.0,0.193650794,24.248815323309596 +2019-06-28 03:00:00,25.0,0.184656085,24.25058821649209 +2019-06-28 03:15:00,25.0,0.167724868,24.252361206065665 +2019-06-28 03:30:00,25.0,0.173544974,24.254134291802274 +2019-06-28 03:45:00,25.0,0.175661376,24.25590747347385 +2019-06-28 04:00:00,25.0,0.167724868,24.257680750852334 +2019-06-28 04:15:00,25.0,0.155555556,24.259454123709634 +2019-06-28 04:30:00,25.0,0.146560847,24.26122759181766 +2019-06-28 04:45:00,25.0,0.138624339,24.2630011549483 +2019-06-28 05:00:00,25.0,0.139153439,24.264774812873437 +2019-06-28 05:15:00,25.0,0.132275132,24.266548565364943 +2019-06-28 05:30:00,25.0,0.122751323,24.26832241219466 +2019-06-28 05:45:00,25.0,0.114285714,24.270096353134452 +2019-06-28 06:00:00,25.0,0.111111111,24.27187038795613 +2019-06-28 06:15:00,25.0,0.107936508,24.27364451643153 +2019-06-28 06:30:00,25.0,0.096296296,24.27541873833245 +2019-06-28 06:45:00,25.0,0.093650794,24.27719305343069 +2019-06-28 07:00:00,25.0,0.088888889,24.27896746149803 +2019-06-28 07:15:00,25.0,0.083597884,24.280741962306244 +2019-06-28 07:30:00,25.0,0.074603175,24.282516555627094 +2019-06-28 07:45:00,25.0,0.067195767,24.28429124123232 +2019-06-28 08:00:00,25.0,0.060846561,24.286066018893667 +2019-06-28 08:15:00,25.0,0.057671958,24.28784088838285 +2019-06-28 08:30:00,25.0,0.049206349,24.289615849471584 +2019-06-28 08:45:00,25.0,0.043386243,24.291390901931578 +2019-06-28 09:00:00,25.0,0.03968254,24.293166045534505 +2019-06-28 09:15:00,25.0,0.033333333,24.29494128005206 +2019-06-28 09:30:00,25.0,0.031216931,24.29671660525589 +2019-06-28 09:45:00,25.0,0.02962963,24.29849202091766 +2019-06-28 10:00:00,25.0,0.02962963,24.300267526809016 +2019-06-28 10:15:00,25.0,0.031216931,24.302043122701573 +2019-06-28 10:30:00,25.0,0.032804233,24.303818808366966 +2019-06-28 10:45:00,25.0,0.034391534,24.305594583576788 +2019-06-28 11:00:00,25.0,0.034920635,24.307370448102645 +2019-06-28 11:15:00,25.0,0.038624339,24.309146401716113 +2019-06-28 11:30:00,25.0,0.038095238,24.310922444188773 +2019-06-28 11:45:00,25.0,0.041798942,24.31269857529218 +2019-06-28 12:00:00,25.0,0.041798942,24.31447479479789 +2019-06-28 12:15:00,25.0,0.039153439,24.316251102477437 +2019-06-28 12:30:00,25.0,0.033862434,24.318027498102346 +2019-06-28 12:45:00,25.0,0.038095238,24.319803981444142 +2019-06-28 13:00:00,25.0,0.04021164,24.321580552274316 +2019-06-28 13:15:00,25.0,0.03968254,24.32335721036437 +2019-06-28 13:30:00,25.0,0.034920635,24.325133955485793 +2019-06-28 13:45:00,25.0,0.031216931,24.32691078741004 +2019-06-28 14:00:00,25.0,0.028042328,24.328687705908585 +2019-06-28 14:15:00,25.0,0.03015873,24.330464710752864 +2019-06-28 14:30:00,25.0,0.03015873,24.332241801714325 +2019-06-28 14:45:00,25.0,0.028571429,24.334018978564387 +2019-06-28 15:00:00,25.0,0.03015873,24.33579624107447 +2019-06-28 15:15:00,25.0,0.036507937,24.33757358901598 +2019-06-28 15:30:00,25.0,0.043915344,24.339351022160304 +2019-06-28 15:45:00,25.0,0.047619048,24.341128540278834 +2019-06-28 16:00:00,25.0,0.048148148,24.34290614314293 +2019-06-28 16:15:00,25.0,0.047089947,24.344683830523962 +2019-06-28 16:30:00,25.0,0.045502646,24.346461602193273 +2019-06-28 16:45:00,25.0,0.044973545,24.3482394579222 +2019-06-28 17:00:00,25.0,0.043915344,24.350017397482084 +2019-06-28 17:15:00,25.0,0.044444444,24.35179542064423 +2019-06-28 17:30:00,25.0,0.047619048,24.353573527179954 +2019-06-28 17:45:00,25.0,0.050793651,24.35535171686054 +2019-06-28 18:00:00,25.0,0.048677249,24.357129989457285 +2019-06-28 18:15:00,25.0,0.047619048,24.35890834474145 +2019-06-28 18:30:00,25.0,0.047619048,24.36068678248431 +2019-06-28 18:45:00,25.0,0.04973545,24.36246530245712 +2019-06-28 19:00:00,25.0,0.049206349,24.364243904431113 +2019-06-28 19:15:00,25.0,0.050793651,24.366022588177533 +2019-06-28 19:30:00,25.0,0.048148148,24.367801353467588 +2019-06-28 19:45:00,25.0,0.04973545,24.369580200072495 +2019-06-28 20:00:00,25.0,0.047619048,24.37135912776346 +2019-06-28 20:15:00,25.0,0.043386243,24.373138136311663 +2019-06-28 20:30:00,25.0,0.042857143,24.374917225488293 +2019-06-28 20:45:00,25.0,0.041269841,24.376696395064513 +2019-06-28 21:00:00,25.0,0.038095238,24.378475644811488 +2019-06-28 21:15:00,25.0,0.037566138,24.38025497450036 +2019-06-28 21:30:00,25.0,0.040740741,24.382034383902273 +2019-06-28 21:45:00,25.0,0.041269841,24.383813872788355 +2019-06-28 22:00:00,25.0,0.037566138,24.385593440929718 +2019-06-28 22:15:00,25.0,0.033862434,24.38737308809748 +2019-06-28 22:30:00,25.0,0.03015873,24.389152814062726 +2019-06-28 22:45:00,25.0,0.025925926,24.39093261859656 +2019-06-28 23:00:00,25.0,0.023280423,24.392712501470037 +2019-06-28 23:15:00,25.0,0.022222222,24.39449246245424 +2019-06-28 23:30:00,25.0,0.02010582,24.396272501320233 +2019-06-28 23:45:00,25.0,0.017989418,24.398052617839046 +2019-06-29 00:00:00,25.0,0.017989418,24.399832811781728 +2019-06-29 00:15:00,25.0,0.018518519,24.401613082919297 +2019-06-29 00:30:00,25.0,0.020634921,24.40339343102278 +2019-06-29 00:45:00,25.0,0.022751323,24.40517385586318 +2019-06-29 01:00:00,25.0,0.023280423,24.40695435721149 +2019-06-29 01:15:00,25.0,0.023280423,24.40873493483871 +2019-06-29 01:30:00,25.0,0.022751323,24.410515588515803 +2019-06-29 01:45:00,25.0,0.022222222,24.41229631801375 +2019-06-29 02:00:00,25.0,0.021693122,24.414077123103503 +2019-06-29 02:15:00,25.0,0.021164021,24.415858003556014 +2019-06-29 02:30:00,25.0,0.021693122,24.417638959142216 +2019-06-29 02:45:00,25.0,0.022751323,24.41941998963304 +2019-06-29 03:00:00,25.0,0.024867725,24.421201094799418 +2019-06-29 03:15:00,25.0,0.026455026,24.42298227441224 +2019-06-29 03:30:00,25.0,0.024338624,24.424763528242426 +2019-06-29 03:45:00,25.0,0.025396825,24.426544856060854 +2019-06-29 04:00:00,25.0,0.025396825,24.428326257638407 +2019-06-29 04:15:00,25.0,0.024867725,24.430107732745963 +2019-06-29 04:30:00,25.0,0.021164021,24.431889281154376 +2019-06-29 04:45:00,25.0,0.02010582,24.43367090263451 +2019-06-29 05:00:00,25.0,0.017989418,24.435452596957198 +2019-06-29 05:15:00,25.0,0.017989418,24.437234363893285 +2019-06-29 05:30:00,25.0,0.02010582,24.439016203213583 +2019-06-29 05:45:00,25.0,0.021164021,24.440798114688917 +2019-06-29 06:00:00,25.0,0.024338624,24.442580098090097 +2019-06-29 06:15:00,25.0,0.02962963,24.444362153187907 +2019-06-29 06:30:00,25.0,0.033333333,24.44614427975315 +2019-06-29 06:45:00,25.0,0.038624339,24.44792647755659 +2019-06-29 07:00:00,25.0,0.044973545,24.44970874636901 +2019-06-29 07:15:00,25.0,0.050793651,24.451491085961155 +2019-06-29 07:30:00,25.0,0.05026455,24.45327349610379 +2019-06-29 07:45:00,25.0,0.052380952,24.455055976567657 +2019-06-29 08:00:00,25.0,0.057671958,24.45683852712348 +2019-06-29 08:15:00,25.0,0.057671958,24.458621147541994 +2019-06-29 08:30:00,25.0,0.066137566,24.4604038375939 +2019-06-29 08:45:00,25.0,0.068253968,24.46218659704992 +2019-06-29 09:00:00,25.0,0.068253968,24.46396942568074 +2019-06-29 09:15:00,25.0,0.069312169,24.465752323257053 +2019-06-29 09:30:00,25.0,0.076719577,24.467535289549545 +2019-06-29 09:45:00,25.0,0.080952381,24.46931832432887 +2019-06-29 10:00:00,25.0,0.083597884,24.47110142736571 +2019-06-29 10:15:00,25.0,0.087830688,24.4728845984307 +2019-06-29 10:30:00,25.0,0.083597884,24.474667837294497 +2019-06-29 10:45:00,25.0,0.073015873,24.47645114372773 +2019-06-29 11:00:00,25.0,0.069312169,24.478234517501026 +2019-06-29 11:15:00,25.0,0.073544974,24.48001795838501 +2019-06-29 11:30:00,25.0,0.076190476,24.481801466150284 +2019-06-29 11:45:00,25.0,0.083597884,24.483585040567455 +2019-06-29 12:00:00,25.0,0.092063492,24.48536868140711 +2019-06-29 12:15:00,25.0,0.093650794,24.48715238843984 +2019-06-29 12:30:00,25.0,0.091534392,24.48893616143621 +2019-06-29 12:45:00,25.0,0.093650794,24.490720000166796 +2019-06-29 13:00:00,25.0,0.094708995,24.492503904402156 +2019-06-29 13:15:00,25.0,0.092592593,24.494287873912835 +2019-06-29 13:30:00,25.0,0.087830688,24.496071908469382 +2019-06-29 13:45:00,25.0,0.085185185,24.497856007842323 +2019-06-29 14:00:00,25.0,0.087301587,24.499640171802184 +2019-06-29 14:15:00,25.0,0.091534392,24.50142440011949 +2019-06-29 14:30:00,25.0,0.08994709,24.503208692564737 +2019-06-29 14:45:00,25.0,0.089417989,24.504993048908435 +2019-06-29 15:00:00,25.0,0.083068783,24.50677746892107 +2019-06-29 15:15:00,25.0,0.084656085,24.50856195237313 +2019-06-29 15:30:00,25.0,0.084656085,24.510346499035087 +2019-06-29 15:45:00,25.0,0.084656085,24.51213110867741 +2019-06-29 16:00:00,25.0,0.085185185,24.513915781070562 +2019-06-29 16:15:00,25.0,0.084126984,24.515700515984985 +2019-06-29 16:30:00,25.0,0.081481481,24.517485313191134 +2019-06-29 16:45:00,25.0,0.083068783,24.519270172459436 +2019-06-29 17:00:00,25.0,0.086243386,24.52105509356032 +2019-06-29 17:15:00,25.0,0.088359788,24.522840076264206 +2019-06-29 17:30:00,25.0,0.088359788,24.524625120341504 +2019-06-29 17:45:00,25.0,0.087830688,24.526410225562625 +2019-06-29 18:00:00,25.0,0.088359788,24.528195391697952 +2019-06-29 18:15:00,25.0,0.081481481,24.529980618517882 +2019-06-29 18:30:00,25.0,0.074603175,24.531765905792792 +2019-06-29 18:45:00,25.0,0.068253968,24.533551253293055 +2019-06-29 19:00:00,25.0,0.073544974,24.53533666078903 +2019-06-29 19:15:00,25.0,0.07989418,24.537122128051085 +2019-06-29 19:30:00,25.0,0.083068783,24.538907654849563 +2019-06-29 19:45:00,25.0,0.089417989,24.540693240954802 +2019-06-29 20:00:00,25.0,0.097883598,24.54247888613714 +2019-06-29 20:15:00,25.0,0.111640212,24.5442645901669 +2019-06-29 20:30:00,25.0,0.117989418,24.546050352814408 +2019-06-29 20:45:00,25.0,0.121693122,24.547836173849966 +2019-06-29 21:00:00,25.0,0.13015873,24.54962205304388 +2019-06-29 21:15:00,25.0,0.142857143,24.551407990166453 +2019-06-29 21:30:00,25.0,0.152910053,24.553193984987963 +2019-06-29 21:45:00,25.0,0.160846561,24.5549800372787 +2019-06-29 22:00:00,25.0,0.172486772,24.556766146808933 +2019-06-29 22:15:00,25.0,0.179365079,24.558552313348926 +2019-06-29 22:30:00,25.0,0.175661376,24.560338536668947 +2019-06-29 22:45:00,25.0,0.184126984,24.56212481653924 +2019-06-29 23:00:00,25.0,0.195767196,24.563911152730054 +2019-06-29 23:15:00,25.0,0.203174603,24.565697545011624 +2019-06-29 23:30:00,25.0,0.211640212,24.56748399315418 +2019-06-29 23:45:00,25.0,0.218518519,24.569270496927945 +2019-06-30 00:00:00,25.0,0.226984127,24.571057056103133 +2019-06-30 00:15:00,25.0,0.249206349,24.57284367044996 +2019-06-30 00:30:00,25.0,0.26031746,24.57463033973862 +2019-06-30 00:45:00,25.0,0.270899471,24.57641706373931 +2019-06-30 01:00:00,25.0,0.27989418,24.578203842222216 +2019-06-30 01:15:00,25.0,0.288888889,24.57999067495752 +2019-06-30 01:30:00,25.0,0.304232804,24.581777561715395 +2019-06-30 01:45:00,25.0,0.311640212,24.583564502266007 +2019-06-30 02:00:00,25.0,0.315343915,24.58535149637952 +2019-06-30 02:15:00,25.0,0.314814815,24.58713854382608 +2019-06-30 02:30:00,25.0,0.318518519,24.588925644375838 +2019-06-30 02:45:00,25.0,0.32962963,24.590712797798925 +2019-06-30 03:00:00,25.0,0.345502646,24.59250000386549 +2019-06-30 03:15:00,25.0,0.369312169,24.594287262345635 +2019-06-30 03:30:00,25.0,0.396825397,24.596074573009496 +2019-06-30 03:45:00,25.0,0.415343915,24.59786193562718 +2019-06-30 04:00:00,25.0,0.430687831,24.599649349968793 +2019-06-30 04:15:00,25.0,0.447089947,24.601436815804433 +2019-06-30 04:30:00,25.0,0.457671958,24.60322433290419 +2019-06-30 04:45:00,25.0,0.468253968,24.605011901038154 +2019-06-30 05:00:00,25.0,0.475132275,24.6067995199764 +2019-06-30 05:15:00,25.0,0.478835979,24.608587189488997 +2019-06-30 05:30:00,25.0,0.493650794,24.61037490934602 +2019-06-30 05:45:00,25.0,0.518518519,24.61216267931752 +2019-06-30 06:00:00,25.0,0.535449735,24.61395049917356 +2019-06-30 06:15:00,25.0,0.551851852,24.615738368684173 +2019-06-30 06:30:00,25.0,0.557142857,24.617526287619413 +2019-06-30 06:45:00,25.0,0.565079365,24.619314255749302 +2019-06-30 07:00:00,25.0,0.567724868,24.62110227284387 +2019-06-30 07:15:00,25.0,0.569312169,24.622890338673145 +2019-06-30 07:30:00,25.0,0.57037037,24.624678453007135 +2019-06-30 07:45:00,25.0,0.58042328,24.626466615615854 +2019-06-30 08:00:00,25.0,0.577777778,24.628254826269295 +2019-06-30 08:15:00,25.0,0.589417989,24.630043084737462 +2019-06-30 08:30:00,25.0,0.588359788,24.63183139079035 +2019-06-30 08:45:00,25.0,0.592063492,24.63361974419793 +2019-06-30 09:00:00,25.0,0.579365079,24.63540814473019 +2019-06-30 09:15:00,25.0,0.577248677,24.637196592157093 +2019-06-30 09:30:00,25.0,0.58042328,24.638985086248613 +2019-06-30 09:45:00,25.0,0.576190476,24.640773626774703 +2019-06-30 10:00:00,25.0,0.58042328,24.64256221350532 +2019-06-30 10:15:00,25.0,0.571428571,24.64435084621042 +2019-06-30 10:30:00,25.0,0.568253968,24.64613952465993 +2019-06-30 10:45:00,25.0,0.546031746,24.647928248623796 +2019-06-30 11:00:00,25.0,0.556084656,24.649717017871943 +2019-06-30 11:15:00,25.0,0.56984127,24.6515058321743 +2019-06-30 11:30:00,25.0,0.551322751,24.653294691300783 +2019-06-30 11:45:00,25.0,0.506878307,24.6550835950213 +2019-06-30 12:00:00,25.0,0.492592593,24.65687254310577 +2019-06-30 12:15:00,25.0,0.491534392,24.658661535324082 +2019-06-30 12:30:00,25.0,0.486772487,24.66045057144614 +2019-06-30 12:45:00,25.0,0.477777778,24.66223965124183 +2019-06-30 13:00:00,25.0,0.464021164,24.664028774481043 +2019-06-30 13:15:00,25.0,0.446031746,24.665817940933643 +2019-06-30 13:30:00,25.0,0.436507937,24.667607150369516 +2019-06-30 13:45:00,25.0,0.418518519,24.66939640255853 +2019-06-30 14:00:00,25.0,0.400529101,24.671185697270538 +2019-06-30 14:15:00,25.0,0.406349206,24.672975034275407 +2019-06-30 14:30:00,25.0,0.394179894,24.67476441334298 +2019-06-30 14:45:00,25.0,0.35978836,24.676553834243112 +2019-06-30 15:00:00,25.0,0.344444444,24.678343296745634 +2019-06-30 15:15:00,25.0,0.351322751,24.68013280062038 +2019-06-30 15:30:00,25.0,0.352380952,24.681922345637197 +2019-06-30 15:45:00,25.0,0.354497354,24.683711931565888 +2019-06-30 16:00:00,25.0,0.358201058,24.68550155817629 +2019-06-30 16:15:00,25.0,0.364021164,24.687291225238205 +2019-06-30 16:30:00,25.0,0.364021164,24.689080932521442 +2019-06-30 16:45:00,25.0,0.371957672,24.690870679795818 +2019-06-30 17:00:00,25.0,0.398941799,24.692660466831114 +2019-06-30 17:15:00,25.0,0.422222222,24.69445029339714 +2019-06-30 17:30:00,25.0,0.430687831,24.69624015926367 +2019-06-30 17:45:00,25.0,0.433862434,24.698030064200495 +2019-06-30 18:00:00,25.0,0.43968254,24.69982000797739 +2019-06-30 18:15:00,25.0,0.440740741,24.701609990364133 +2019-06-30 18:30:00,25.0,0.444973545,24.70340001113049 +2019-06-30 18:45:00,25.0,0.45978836,24.70519007004622 +2019-06-30 19:00:00,25.0,0.464021164,24.706980166881088 +2019-06-30 19:15:00,25.0,0.45978836,24.708770301404844 +2019-06-30 19:30:00,25.0,0.462433862,24.71056047338724 +2019-06-30 19:45:00,25.0,0.470899471,24.712350682598014 +2019-06-30 20:00:00,25.0,0.472486772,24.71414092880691 +2019-06-30 20:15:00,25.0,0.473015873,24.715931211783662 +2019-06-30 20:30:00,25.0,0.485714286,24.717721531297997 +2019-06-30 20:45:00,25.0,0.487830688,24.719511887119644 +2019-06-30 21:00:00,25.0,0.479365079,24.721302279018317 +2019-06-30 21:15:00,25.0,0.478306878,24.723092706763744 +2019-06-30 21:30:00,25.0,0.478835979,24.72488317012562 +2019-06-30 21:45:00,25.0,0.482010582,24.72667366887366 +2019-06-30 22:00:00,25.0,0.493121693,24.72846420277757 +2019-06-30 22:15:00,25.0,0.504761905,24.730254771607036 +2019-06-30 22:30:00,25.0,0.513756614,24.73204537513176 +2019-06-30 22:45:00,25.0,0.526455026,24.73383601312143 +2019-06-30 23:00:00,25.0,0.536507937,24.73562668534573 +2019-06-30 23:15:00,25.0,0.544444444,24.73741739157433 +2019-06-30 23:30:00,25.0,0.55026455,24.739208131576913 +2019-06-30 23:45:00,25.0,0.563492063,24.740998905123153 +2019-07-01 00:00:00,25.0,0.571957672,24.742789711982713 +2019-07-01 00:15:00,25.0,0.562433862,24.744580551925257 +2019-07-01 00:30:00,25.0,0.551851852,24.746371424720436 +2019-07-01 00:45:00,25.0,0.55978836,24.74816233013791 +2019-07-01 01:00:00,25.0,0.56984127,24.749953267947333 +2019-07-01 01:15:00,25.0,0.591005291,24.75174423791834 +2019-07-01 01:30:00,25.0,0.605820106,24.753535239820582 +2019-07-01 01:45:00,25.0,0.603174603,24.755326273423687 +2019-07-01 02:00:00,25.0,0.591534392,24.7571173384973 +2019-07-01 02:15:00,25.0,0.57037037,24.758908434811033 +2019-07-01 02:30:00,25.0,0.546031746,24.760699562134526 +2019-07-01 02:45:00,25.0,0.529100529,24.7624907202374 +2019-07-01 03:00:00,25.0,0.505820106,24.764281908889256 +2019-07-01 03:15:00,25.0,0.478835979,24.766073127859727 +2019-07-01 03:30:00,25.0,0.461375661,24.76786437691841 +2019-07-01 03:45:00,25.0,0.438624339,24.769655655834917 +2019-07-01 04:00:00,25.0,0.421164021,24.771446964378843 +2019-07-01 04:15:00,25.0,0.423809524,24.77323830231979 +2019-07-01 04:30:00,25.0,0.413756614,24.77502966942735 +2019-07-01 04:45:00,25.0,0.420634921,24.776821065471115 +2019-07-01 05:00:00,25.0,0.414285714,24.778612490220674 +2019-07-01 05:15:00,25.0,0.42010582,24.780403943445606 +2019-07-01 05:30:00,25.0,0.424338624,24.78219542491549 +2019-07-01 05:45:00,25.0,0.429100529,24.7839869343999 +2019-07-01 06:00:00,25.0,0.434391534,24.78577847166841 +2019-07-01 06:15:00,25.0,0.439153439,24.787570036490592 +2019-07-01 06:30:00,25.0,0.464550265,24.789361628636005 +2019-07-01 06:45:00,25.0,0.488359788,24.791153247874217 +2019-07-01 07:00:00,25.0,0.466666667,24.792944893974777 +2019-07-01 07:15:00,25.0,0.461904762,24.794736566707247 +2019-07-01 07:30:00,25.0,0.467195767,24.79652826584117 +2019-07-01 07:45:00,25.0,0.484126984,24.798319991146098 +2019-07-01 08:00:00,25.0,0.503174603,24.800111742391582 +2019-07-01 08:15:00,25.0,0.528042328,24.80190351934715 +2019-07-01 08:30:00,25.0,0.547089947,24.80369532178235 +2019-07-01 08:45:00,25.0,0.552380952,24.805487149466707 +2019-07-01 09:00:00,25.0,0.56031746,24.807279002169764 +2019-07-01 09:15:00,25.0,0.575132275,24.809070879661036 +2019-07-01 09:30:00,25.0,0.59047619,24.810862781710053 +2019-07-01 09:45:00,25.0,0.603174603,24.812654708086338 +2019-07-01 10:00:00,25.0,0.619047619,24.814446658559408 +2019-07-01 10:15:00,25.0,0.631746032,24.81623863289878 +2019-07-01 10:30:00,25.0,0.639153439,24.81803063087396 +2019-07-01 10:45:00,25.0,0.643386243,24.819822652254462 +2019-07-01 11:00:00,25.0,0.656084656,24.821614696809796 +2019-07-01 11:15:00,25.0,0.631746032,24.823406764309457 +2019-07-01 11:30:00,25.0,0.637037037,24.82519885452295 +2019-07-01 11:45:00,25.0,0.643386243,24.826990967219768 +2019-07-01 12:00:00,25.0,0.648677249,24.82878310216941 +2019-07-01 12:15:00,25.0,0.631216931,24.830575259141366 +2019-07-01 12:30:00,25.0,0.61005291,24.83236743790512 +2019-07-01 12:45:00,25.0,0.61005291,24.83415963823017 +2019-07-01 13:00:00,25.0,0.603703704,24.835951859885984 +2019-07-01 13:15:00,25.0,0.599470899,24.837744102642052 +2019-07-01 13:30:00,25.0,0.606349206,24.839536366267847 +2019-07-01 13:45:00,25.0,0.607407407,24.84132865053285 +2019-07-01 14:00:00,25.0,0.611111111,24.843120955206526 +2019-07-01 14:15:00,25.0,0.615343915,24.844913280058346 +2019-07-01 14:30:00,25.0,0.622751323,24.846705624857783 +2019-07-01 14:45:00,25.0,0.625396825,24.848497989374295 +2019-07-01 15:00:00,25.0,0.60952381,24.850290373377348 +2019-07-01 15:15:00,25.0,0.605291005,24.852082776636394 +2019-07-01 15:30:00,25.0,0.612698413,24.853875198920903 +2019-07-01 15:45:00,25.0,0.628571429,24.855667640000316 +2019-07-01 16:00:00,25.0,0.624338624,24.85746009964409 +2019-07-01 16:15:00,25.0,0.598412698,24.85925257762168 +2019-07-01 16:30:00,25.0,0.593121693,24.861045073702527 +2019-07-01 16:45:00,25.0,0.596296296,24.862837587656085 +2019-07-01 17:00:00,25.0,0.599470899,24.864630119251782 +2019-07-01 17:15:00,25.0,0.603174603,24.86642266825907 +2019-07-01 17:30:00,25.0,0.605820106,24.86821523444738 +2019-07-01 17:45:00,25.0,0.612169312,24.870007817586153 +2019-07-01 18:00:00,25.0,0.616931217,24.871800417444824 +2019-07-01 18:15:00,25.0,0.613756614,24.873593033792815 +2019-07-01 18:30:00,25.0,0.614285714,24.87538566639957 +2019-07-01 18:45:00,25.0,0.606878307,24.877178315034506 +2019-07-01 19:00:00,25.0,0.611111111,24.87897097946705 +2019-07-01 19:15:00,25.0,0.616402116,24.880763659466627 +2019-07-01 19:30:00,25.0,0.617989418,24.88255635480266 +2019-07-01 19:45:00,25.0,0.615873016,24.884349065244564 +2019-07-01 20:00:00,25.0,0.619047619,24.88614179056176 +2019-07-01 20:15:00,25.0,0.615873016,24.887934530523665 +2019-07-01 20:30:00,25.0,0.60952381,24.889727284899685 +2019-07-01 20:45:00,25.0,0.605820106,24.891520053459235 +2019-07-01 21:00:00,25.0,0.601587302,24.893312835971734 +2019-07-01 21:15:00,25.0,0.592063492,24.895105632206576 +2019-07-01 21:30:00,25.0,0.586772487,24.896898441933182 +2019-07-01 21:45:00,25.0,0.581481481,24.89869126492094 +2019-07-01 22:00:00,25.0,0.605291005,24.900484100939273 +2019-07-01 22:15:00,25.0,0.623280423,24.90227694975756 +2019-07-01 22:30:00,25.0,0.615873016,24.904069811145217 +2019-07-01 22:45:00,25.0,0.629100529,24.90586268487164 +2019-07-01 23:00:00,25.0,0.655555556,24.907655570706215 +2019-07-01 23:15:00,25.0,0.656084656,24.90944846841835 +2019-07-01 23:30:00,25.0,0.653439153,24.91124137777743 +2019-07-01 23:45:00,25.0,0.662962963,24.91303429855285 +2019-07-02 00:00:00,25.0,0.668253968,24.914827230514 +2019-07-02 00:15:00,25.0,0.674603175,24.916620173430264 +2019-07-02 00:30:00,25.0,0.673015873,24.91841312707104 +2019-07-02 00:45:00,25.0,0.678835979,24.920206091205706 +2019-07-02 01:00:00,25.0,0.692063492,24.921999065603654 +2019-07-02 01:15:00,25.0,0.705291005,24.923792050034255 +2019-07-02 01:30:00,25.0,0.708465608,24.925585044266903 +2019-07-02 01:45:00,25.0,0.712169312,24.927378048070974 +2019-07-02 02:00:00,25.0,0.714814815,24.929171061215847 +2019-07-02 02:15:00,25.0,0.716931217,24.930964083470904 +2019-07-02 02:30:00,25.0,0.713227513,24.93275711460552 +2019-07-02 02:45:00,25.0,0.725396825,24.934550154389072 +2019-07-02 03:00:00,25.0,0.726984127,24.936343202590933 +2019-07-02 03:15:00,25.0,0.73015873,24.93813625898048 +2019-07-02 03:30:00,25.0,0.733333333,24.939929323327085 +2019-07-02 03:45:00,25.0,0.728042328,24.941722395400117 +2019-07-02 04:00:00,25.0,0.72962963,24.94351547496895 +2019-07-02 04:15:00,25.0,0.734391534,24.945308561802953 +2019-07-02 04:30:00,25.0,0.733862434,24.9471016556715 +2019-07-02 04:45:00,25.0,0.733333333,24.948894756343947 +2019-07-02 05:00:00,25.0,0.732275132,24.95068786358967 +2019-07-02 05:15:00,25.0,0.741269841,24.95248097717804 +2019-07-02 05:30:00,25.0,0.741269841,24.95427409687841 +2019-07-02 05:45:00,25.0,0.742857143,24.95606722246016 +2019-07-02 06:00:00,25.0,0.743915344,24.957860353692638 +2019-07-02 06:15:00,25.0,0.740740741,24.959653490345218 +2019-07-02 06:30:00,25.0,0.717989418,24.961446632187258 +2019-07-02 06:45:00,25.0,0.71005291,24.963239778988118 +2019-07-02 07:00:00,25.0,0.704761905,24.965032930517168 +2019-07-02 07:15:00,25.0,0.703703704,24.96682608654376 +2019-07-02 07:30:00,25.0,0.683597884,24.968619246837264 +2019-07-02 07:45:00,25.0,0.650793651,24.970412411167025 +2019-07-02 08:00:00,25.0,0.643386243,24.972205579302415 +2019-07-02 08:15:00,25.0,0.642328042,24.973998751012786 +2019-07-02 08:30:00,25.0,0.643386243,24.975791926067494 +2019-07-02 08:45:00,25.0,0.633862434,24.977585104235906 +2019-07-02 09:00:00,25.0,0.637037037,24.97937828528737 +2019-07-02 09:15:00,25.0,0.625396825,24.981171468991253 +2019-07-02 09:30:00,25.0,0.621693122,24.9829646551169 +2019-07-02 09:45:00,25.0,0.608994709,24.984757843433677 +2019-07-02 10:00:00,25.0,0.578835979,24.986551033710928 +2019-07-02 10:15:00,25.0,0.566137566,24.98834422571802 +2019-07-02 10:30:00,25.0,0.551322751,24.990137419224304 +2019-07-02 10:45:00,25.0,0.498412698,24.991930613999138 +2019-07-02 11:00:00,25.0,0.487830688,24.993723809811875 +2019-07-02 11:15:00,25.0,0.486243386,24.995517006431868 +2019-07-02 11:30:00,25.0,0.492063492,24.997310203628476 +2019-07-02 11:45:00,25.0,0.49047619,24.99910340117105 +2019-07-02 12:00:00,25.0,0.467724868,25.000896598828945 +2019-07-02 12:15:00,25.0,0.453439153,25.00268979637152 +2019-07-02 12:30:00,25.0,0.448677249,25.004482993568125 +2019-07-02 12:45:00,25.0,0.438624339,25.006276190188125 +2019-07-02 13:00:00,25.0,0.437037037,25.008069386000855 +2019-07-02 13:15:00,25.0,0.426984127,25.00986258077569 +2019-07-02 13:30:00,25.0,0.415343915,25.011655774281973 +2019-07-02 13:45:00,25.0,0.408994709,25.013448966289065 +2019-07-02 14:00:00,25.0,0.407407407,25.015242156566323 +2019-07-02 14:15:00,25.0,0.404761905,25.017035344883094 +2019-07-02 14:30:00,25.0,0.406878307,25.018828531008744 +2019-07-02 14:45:00,25.0,0.405820106,25.02062171471262 +2019-07-02 15:00:00,25.0,0.403174603,25.022414895764086 +2019-07-02 15:15:00,25.0,0.402116402,25.0242080739325 +2019-07-02 15:30:00,25.0,0.395238095,25.026001248987207 +2019-07-02 15:45:00,25.0,0.39047619,25.02779442069758 +2019-07-02 16:00:00,25.0,0.387301587,25.029587588832968 +2019-07-02 16:15:00,25.0,0.381481481,25.031380753162736 +2019-07-02 16:30:00,25.0,0.375661376,25.03317391345623 +2019-07-02 16:45:00,25.0,0.370899471,25.034967069482825 +2019-07-02 17:00:00,25.0,0.366666667,25.036760221011875 +2019-07-02 17:15:00,25.0,0.358730159,25.038553367812735 +2019-07-02 17:30:00,25.0,0.350793651,25.04034650965478 +2019-07-02 17:45:00,25.0,0.343915344,25.042139646307355 +2019-07-02 18:00:00,25.0,0.329100529,25.04393277753984 +2019-07-02 18:15:00,25.0,0.320634921,25.045725903121582 +2019-07-02 18:30:00,25.0,0.307936508,25.04751902282195 +2019-07-02 18:45:00,25.0,0.294708995,25.04931213641032 +2019-07-02 19:00:00,25.0,0.297883598,25.051105243656046 +2019-07-02 19:15:00,25.0,0.286772487,25.052898344328497 +2019-07-02 19:30:00,25.0,0.268253968,25.05469143819704 +2019-07-02 19:45:00,25.0,0.26031746,25.056484525031046 +2019-07-02 20:00:00,25.0,0.273015873,25.058277604599876 +2019-07-02 20:15:00,25.0,0.274603175,25.06007067667291 +2019-07-02 20:30:00,25.0,0.276190476,25.061863741019515 +2019-07-02 20:45:00,25.0,0.28994709,25.06365679740906 +2019-07-02 21:00:00,25.0,0.287301587,25.065449845610924 +2019-07-02 21:15:00,25.0,0.285185185,25.067242885394474 +2019-07-02 21:30:00,25.0,0.295767196,25.069035916529092 +2019-07-02 21:45:00,25.0,0.297883598,25.070828938784146 +2019-07-02 22:00:00,25.0,0.303703704,25.07262195192902 +2019-07-02 22:15:00,25.0,0.315343915,25.074414955733094 +2019-07-02 22:30:00,25.0,0.335449735,25.076207949965738 +2019-07-02 22:45:00,25.0,0.354497354,25.078000934396346 +2019-07-02 23:00:00,25.0,0.369312169,25.079793908794286 +2019-07-02 23:15:00,25.0,0.393650794,25.081586872928952 +2019-07-02 23:30:00,25.0,0.412169312,25.08337982656973 +2019-07-02 23:45:00,25.0,0.431216931,25.085172769485993 +2019-07-03 00:00:00,25.0,0.460846561,25.086965701447145 +2019-07-03 00:15:00,25.0,0.501587302,25.088758622222564 +2019-07-03 00:30:00,25.0,0.512698413,25.090551531581646 +2019-07-03 00:45:00,25.0,0.524338624,25.092344429293778 +2019-07-03 01:00:00,25.0,0.534920635,25.094137315128354 +2019-07-03 01:15:00,25.0,0.538624339,25.095930188854776 +2019-07-03 01:30:00,25.0,0.551322751,25.097723050242433 +2019-07-03 01:45:00,25.0,0.554497354,25.099515899060727 +2019-07-03 02:00:00,25.0,0.55026455,25.10130873507905 +2019-07-03 02:15:00,25.0,0.528042328,25.103101558066815 +2019-07-03 02:30:00,25.0,0.517460317,25.104894367793417 +2019-07-03 02:45:00,25.0,0.525925926,25.10668716402826 +2019-07-03 03:00:00,25.0,0.518518519,25.108479946540758 +2019-07-03 03:15:00,25.0,0.494708995,25.110272715100308 +2019-07-03 03:30:00,25.0,0.473544974,25.112065469476335 +2019-07-03 03:45:00,25.0,0.470899471,25.113858209438234 +2019-07-03 04:00:00,25.0,0.494179894,25.115650934755433 +2019-07-03 04:15:00,25.0,0.486243386,25.117443645197337 +2019-07-03 04:30:00,25.0,0.482539683,25.119236340533366 +2019-07-03 04:45:00,25.0,0.497883598,25.121029020532944 +2019-07-03 05:00:00,25.0,0.497354497,25.122821684965487 +2019-07-03 05:15:00,25.0,0.499470899,25.124614333600427 +2019-07-03 05:30:00,25.0,0.492063492,25.126406966207178 +2019-07-03 05:45:00,25.0,0.494708995,25.128199582555176 +2019-07-03 06:00:00,25.0,0.476190476,25.12999218241384 +2019-07-03 06:15:00,25.0,0.477248677,25.131784765552613 +2019-07-03 06:30:00,25.0,0.481481481,25.133577331740927 +2019-07-03 06:45:00,25.0,0.498412698,25.13536988074821 +2019-07-03 07:00:00,25.0,0.511111111,25.137162412343912 +2019-07-03 07:15:00,25.0,0.510582011,25.138954926297465 +2019-07-03 07:30:00,25.0,0.543386243,25.14074742237831 +2019-07-03 07:45:00,25.0,0.518518519,25.142539900355903 +2019-07-03 08:00:00,25.0,0.532804233,25.144332359999677 +2019-07-03 08:15:00,25.0,0.530687831,25.146124801079097 +2019-07-03 08:30:00,25.0,0.520634921,25.1479172233636 +2019-07-03 08:45:00,25.0,0.548148148,25.149709626622652 +2019-07-03 09:00:00,25.0,0.544973545,25.1515020106257 +2019-07-03 09:15:00,25.0,0.566666667,25.15329437514221 +2019-07-03 09:30:00,25.0,0.554497354,25.155086719941647 +2019-07-03 09:45:00,25.0,0.548148148,25.156879044793467 +2019-07-03 10:00:00,25.0,0.562962963,25.15867134946715 +2019-07-03 10:15:00,25.0,0.569312169,25.160463633732146 +2019-07-03 10:30:00,25.0,0.556084656,25.162255897357944 +2019-07-03 10:45:00,25.0,0.52962963,25.164048140114012 +2019-07-03 11:00:00,25.0,0.524867725,25.165840361769824 +2019-07-03 11:15:00,25.0,0.53015873,25.167632562094873 +2019-07-03 11:30:00,25.0,0.512698413,25.169424740858627 +2019-07-03 11:45:00,25.0,0.493121693,25.171216897830586 +2019-07-03 12:00:00,25.0,0.475132275,25.173009032780225 +2019-07-03 12:15:00,25.0,0.452380952,25.174801145477048 +2019-07-03 12:30:00,25.0,0.440740741,25.17659323569054 +2019-07-03 12:45:00,25.0,0.439153439,25.178385303190197 +2019-07-03 13:00:00,25.0,0.444973545,25.18017734774553 +2019-07-03 13:15:00,25.0,0.443386243,25.181969369126033 +2019-07-03 13:30:00,25.0,0.449206349,25.183761367101216 +2019-07-03 13:45:00,25.0,0.451851852,25.185553341440585 +2019-07-03 14:00:00,25.0,0.457142857,25.18734529191366 +2019-07-03 14:15:00,25.0,0.446560847,25.18913721828994 +2019-07-03 14:30:00,25.0,0.441798942,25.190929120338957 +2019-07-03 14:45:00,25.0,0.440740741,25.192720997830232 +2019-07-03 15:00:00,25.0,0.430687831,25.194512850533286 +2019-07-03 15:15:00,25.0,0.429100529,25.196304678217647 +2019-07-03 15:30:00,25.0,0.413227513,25.198096480652843 +2019-07-03 15:45:00,25.0,0.402116402,25.199888257608414 +2019-07-03 16:00:00,25.0,0.396296296,25.201680008853895 +2019-07-03 16:15:00,25.0,0.384656085,25.203471734158825 +2019-07-03 16:30:00,25.0,0.382010582,25.20526343329275 +2019-07-03 16:45:00,25.0,0.389417989,25.207055106025216 +2019-07-03 17:00:00,25.0,0.394179894,25.20884675212578 +2019-07-03 17:15:00,25.0,0.398941799,25.210638371363988 +2019-07-03 17:30:00,25.0,0.403174603,25.2124299635094 +2019-07-03 17:45:00,25.0,0.388888889,25.21422152833158 +2019-07-03 18:00:00,25.0,0.384126984,25.216013065600094 +2019-07-03 18:15:00,25.0,0.371428571,25.217804575084507 +2019-07-03 18:30:00,25.0,0.371957672,25.21959605655439 +2019-07-03 18:45:00,25.0,0.375661376,25.221387509779323 +2019-07-03 19:00:00,25.0,0.388359788,25.223178934528878 +2019-07-03 19:15:00,25.0,0.395238095,25.224970330572642 +2019-07-03 19:30:00,25.0,0.396296296,25.226761697680207 +2019-07-03 19:45:00,25.0,0.392063492,25.22855303562115 +2019-07-03 20:00:00,25.0,0.391534392,25.23034434416508 +2019-07-03 20:15:00,25.0,0.378306878,25.232135623081582 +2019-07-03 20:30:00,25.0,0.357671958,25.23392687214027 +2019-07-03 20:45:00,25.0,0.351322751,25.235718091110737 +2019-07-03 21:00:00,25.0,0.346031746,25.237509279762595 +2019-07-03 21:15:00,25.0,0.336507937,25.239300437865467 +2019-07-03 21:30:00,25.0,0.329100529,25.24109156518896 +2019-07-03 21:45:00,25.0,0.321164021,25.242882661502698 +2019-07-03 22:00:00,25.0,0.323280423,25.244673726576305 +2019-07-03 22:15:00,25.0,0.325396825,25.246464760179414 +2019-07-03 22:30:00,25.0,0.328571429,25.24825576208165 +2019-07-03 22:45:00,25.0,0.332275132,25.25004673205266 +2019-07-03 23:00:00,25.0,0.331216931,25.251837669862084 +2019-07-03 23:15:00,25.0,0.331216931,25.253628575279556 +2019-07-03 23:30:00,25.0,0.33015873,25.25541944807474 +2019-07-03 23:45:00,25.0,0.333333333,25.25721028801728 +2019-07-04 00:00:00,25.0,0.33015873,25.259001094876844 +2019-07-04 00:15:00,25.0,0.327513228,25.26079186842308 +2019-07-04 00:30:00,25.0,0.328571429,25.262582608425664 +2019-07-04 00:45:00,25.0,0.320634921,25.26437331465427 +2019-07-04 01:00:00,25.0,0.317989418,25.266163986878563 +2019-07-04 01:15:00,25.0,0.322751323,25.267954624868235 +2019-07-04 01:30:00,25.0,0.334920635,25.269745228392956 +2019-07-04 01:45:00,25.0,0.337037037,25.271535797222423 +2019-07-04 02:00:00,25.0,0.335449735,25.273326331126334 +2019-07-04 02:15:00,25.0,0.335978836,25.275116829874374 +2019-07-04 02:30:00,25.0,0.344973545,25.276907293236253 +2019-07-04 02:45:00,25.0,0.346560847,25.278697720981675 +2019-07-04 03:00:00,25.0,0.346031746,25.280488112880352 +2019-07-04 03:15:00,25.0,0.351322751,25.282278468701996 +2019-07-04 03:30:00,25.0,0.361904762,25.28406878821633 +2019-07-04 03:45:00,25.0,0.37037037,25.285859071193084 +2019-07-04 04:00:00,25.0,0.385185185,25.28764931740198 +2019-07-04 04:15:00,25.0,0.401587302,25.289439526612757 +2019-07-04 04:30:00,25.0,0.424338624,25.29122969859515 +2019-07-04 04:45:00,25.0,0.456084656,25.29301983311891 +2019-07-04 05:00:00,25.0,0.464021164,25.29480992995377 +2019-07-04 05:15:00,25.0,0.488359788,25.296599988869502 +2019-07-04 05:30:00,25.0,0.513756614,25.298390009635863 +2019-07-04 05:45:00,25.0,0.54021164,25.300179992022603 +2019-07-04 06:00:00,25.0,0.556613757,25.3019699357995 +2019-07-04 06:15:00,25.0,0.569312169,25.303759840736326 +2019-07-04 06:30:00,25.0,0.57989418,25.305549706602857 +2019-07-04 06:45:00,25.0,0.580952381,25.30733953316888 +2019-07-04 07:00:00,25.0,0.587830688,25.309129320204175 +2019-07-04 07:15:00,25.0,0.586243386,25.31091906747855 +2019-07-04 07:30:00,25.0,0.589417989,25.312708774761788 +2019-07-04 07:45:00,25.0,0.595767196,25.31449844182371 +2019-07-04 08:00:00,25.0,0.592063492,25.316288068434105 +2019-07-04 08:15:00,25.0,0.597354497,25.318077654362803 +2019-07-04 08:30:00,25.0,0.582539683,25.319867199379612 +2019-07-04 08:45:00,25.0,0.565608466,25.321656703254362 +2019-07-04 09:00:00,25.0,0.55978836,25.323446165756884 +2019-07-04 09:15:00,25.0,0.555555556,25.325235586657012 +2019-07-04 09:30:00,25.0,0.557671958,25.32702496572459 +2019-07-04 09:45:00,25.0,0.564021164,25.328814302729455 +2019-07-04 10:00:00,25.0,0.564021164,25.330603597441467 +2019-07-04 10:15:00,25.0,0.566137566,25.332392849630477 +2019-07-04 10:30:00,25.0,0.565608466,25.33418205906635 +2019-07-04 10:45:00,25.0,0.577248677,25.335971225518957 +2019-07-04 11:00:00,25.0,0.57989418,25.337760348758163 +2019-07-04 11:15:00,25.0,0.587301587,25.339549428553855 +2019-07-04 11:30:00,25.0,0.595238095,25.34133846467591 +2019-07-04 11:45:00,25.0,0.607407407,25.343127456894223 +2019-07-04 12:00:00,25.0,0.622222222,25.344916404978694 +2019-07-04 12:15:00,25.0,0.638624339,25.34670530869921 +2019-07-04 12:30:00,25.0,0.655555556,25.348494167825695 +2019-07-04 12:45:00,25.0,0.662962963,25.35028298212805 +2019-07-04 13:00:00,25.0,0.673015873,25.3520717513762 +2019-07-04 13:15:00,25.0,0.681481481,25.353860475340063 +2019-07-04 13:30:00,25.0,0.692063492,25.355649153789575 +2019-07-04 13:45:00,25.0,0.7,25.35743778649467 +2019-07-04 14:00:00,25.0,0.703703704,25.35922637322529 +2019-07-04 14:15:00,25.0,0.708994709,25.361014913751383 +2019-07-04 14:30:00,25.0,0.711111111,25.3628034078429 +2019-07-04 14:45:00,25.0,0.710582011,25.36459185526981 +2019-07-04 15:00:00,25.0,0.706349206,25.366380255802067 +2019-07-04 15:15:00,25.0,0.701058201,25.368168609209643 +2019-07-04 15:30:00,25.0,0.695767196,25.36995691526253 +2019-07-04 15:45:00,25.0,0.695238095,25.371745173730698 +2019-07-04 16:00:00,25.0,0.695238095,25.373533384384146 +2019-07-04 16:15:00,25.0,0.702116402,25.375321546992858 +2019-07-04 16:30:00,25.0,0.702645503,25.377109661326852 +2019-07-04 16:45:00,25.0,0.703174603,25.378897727156122 +2019-07-04 17:00:00,25.0,0.703174603,25.38068574425069 +2019-07-04 17:15:00,25.0,0.7,25.382473712380584 +2019-07-04 17:30:00,25.0,0.692592593,25.38426163131582 +2019-07-04 17:45:00,25.0,0.68994709,25.386049500826438 +2019-07-04 18:00:00,25.0,0.695238095,25.387837320682472 +2019-07-04 18:15:00,25.0,0.694708995,25.389625090653976 +2019-07-04 18:30:00,25.0,0.697354497,25.391412810510996 +2019-07-04 18:45:00,25.0,0.691005291,25.393200480023594 +2019-07-04 19:00:00,25.0,0.685185185,25.394988098961843 +2019-07-04 19:15:00,25.0,0.68042328,25.396775667095806 +2019-07-04 19:30:00,25.0,0.695238095,25.398563184195567 +2019-07-04 19:45:00,25.0,0.7,25.400350650031204 +2019-07-04 20:00:00,25.0,0.692592593,25.402138064372814 +2019-07-04 20:15:00,25.0,0.678835979,25.403925426990497 +2019-07-04 20:30:00,25.0,0.66984127,25.40571273765436 +2019-07-04 20:45:00,25.0,0.674603175,25.40749999613451 +2019-07-04 21:00:00,25.0,0.694179894,25.409287202201067 +2019-07-04 21:15:00,25.0,0.685185185,25.41107435562416 +2019-07-04 21:30:00,25.0,0.676190476,25.412861456173914 +2019-07-04 21:45:00,25.0,0.675661376,25.414648503620473 +2019-07-04 22:00:00,25.0,0.666137566,25.416435497733985 +2019-07-04 22:15:00,25.0,0.662433862,25.418222438284598 +2019-07-04 22:30:00,25.0,0.656084656,25.420009325042475 +2019-07-04 22:45:00,25.0,0.63015873,25.421796157777777 +2019-07-04 23:00:00,25.0,0.63015873,25.423582936260686 +2019-07-04 23:15:00,25.0,0.625396825,25.425369660261374 +2019-07-04 23:30:00,25.0,0.631216931,25.427156329550034 +2019-07-04 23:45:00,25.0,0.62962963,25.42894294389686 +2019-07-05 00:00:00,25.0,0.622751323,25.430729503072047 +2019-07-05 00:15:00,25.0,0.62010582,25.432516006845816 +2019-07-05 00:30:00,25.0,0.608994709,25.43430245498837 +2019-07-05 00:45:00,25.0,0.603174603,25.436088847269943 +2019-07-05 01:00:00,25.0,0.60952381,25.437875183460754 +2019-07-05 01:15:00,25.0,0.608994709,25.439661463331046 +2019-07-05 01:30:00,25.0,0.621693122,25.441447686651067 +2019-07-05 01:45:00,25.0,0.623280423,25.44323385319106 +2019-07-05 02:00:00,25.0,0.602645503,25.445019962721297 +2019-07-05 02:15:00,25.0,0.591534392,25.44680601501203 +2019-07-05 02:30:00,25.0,0.588359788,25.448592009833543 +2019-07-05 02:45:00,25.0,0.588888889,25.450377946956113 +2019-07-05 03:00:00,25.0,0.574074074,25.452163826150027 +2019-07-05 03:15:00,25.0,0.564021164,25.45394964718559 +2019-07-05 03:30:00,25.0,0.566666667,25.455735409833093 +2019-07-05 03:45:00,25.0,0.573015873,25.457521113862857 +2019-07-05 04:00:00,25.0,0.542857143,25.459306759045194 +2019-07-05 04:15:00,25.0,0.512698413,25.46109234515043 +2019-07-05 04:30:00,25.0,0.513756614,25.46287787194891 +2019-07-05 04:45:00,25.0,0.512698413,25.46466333921096 +2019-07-05 05:00:00,25.0,0.498412698,25.46644874670694 +2019-07-05 05:15:00,25.0,0.489417989,25.4682340942072 +2019-07-05 05:30:00,25.0,0.473015873,25.470019381482114 +2019-07-05 05:45:00,25.0,0.488888889,25.47180460830204 +2019-07-05 06:00:00,25.0,0.505820106,25.473589774437368 +2019-07-05 06:15:00,25.0,0.512169312,25.47537487965849 +2019-07-05 06:30:00,25.0,0.486772487,25.477159923735787 +2019-07-05 06:45:00,25.0,0.46984127,25.478944906439676 +2019-07-05 07:00:00,25.0,0.480952381,25.480729827540557 +2019-07-05 07:15:00,25.0,0.455555556,25.482514686808862 +2019-07-05 07:30:00,25.0,0.442857143,25.484299484015008 +2019-07-05 07:45:00,25.0,0.421164021,25.48608421892943 +2019-07-05 08:00:00,25.0,0.404232804,25.487868891322584 +2019-07-05 08:15:00,25.0,0.383068783,25.489653500964906 +2019-07-05 08:30:00,25.0,0.361375661,25.491438047626865 +2019-07-05 08:45:00,25.0,0.355555556,25.493222531078924 +2019-07-05 09:00:00,25.0,0.366666667,25.49500695109156 +2019-07-05 09:15:00,25.0,0.351322751,25.496791307435256 +2019-07-05 09:30:00,25.0,0.333862434,25.498575599880503 +2019-07-05 09:45:00,25.0,0.321693122,25.50035982819781 +2019-07-05 10:00:00,25.0,0.313227513,25.50214399215767 +2019-07-05 10:15:00,25.0,0.305820106,25.503928091530614 +2019-07-05 10:30:00,25.0,0.312698413,25.505712126087158 +2019-07-05 10:45:00,25.0,0.322222222,25.50749609559784 +2019-07-05 11:00:00,25.0,0.332275132,25.509279999833197 +2019-07-05 11:15:00,25.0,0.337566138,25.511063838563782 +2019-07-05 11:30:00,25.0,0.339153439,25.512847611560158 +2019-07-05 11:45:00,25.0,0.342328042,25.514631318592883 +2019-07-05 12:00:00,25.0,0.347619048,25.51641495943254 +2019-07-05 12:15:00,25.0,0.338624339,25.51819853384971 +2019-07-05 12:30:00,25.0,0.328042328,25.519982041614988 +2019-07-05 12:45:00,25.0,0.334920635,25.521765482498967 +2019-07-05 13:00:00,25.0,0.337566138,25.523548856272264 +2019-07-05 13:15:00,25.0,0.337037037,25.5253321627055 +2019-07-05 13:30:00,25.0,0.324338624,25.527115401569294 +2019-07-05 13:45:00,25.0,0.316402116,25.52889857263429 +2019-07-05 14:00:00,25.0,0.307936508,25.530681675671122 +2019-07-05 14:15:00,25.0,0.308994709,25.532464710450448 +2019-07-05 14:30:00,25.0,0.301058201,25.53424767674294 +2019-07-05 14:45:00,25.0,0.29047619,25.536030574319252 +2019-07-05 15:00:00,25.0,0.287830688,25.537813402950075 +2019-07-05 15:15:00,25.0,0.27989418,25.53959616240609 +2019-07-05 15:30:00,25.0,0.271428571,25.541378852458003 +2019-07-05 15:45:00,25.0,0.25978836,25.543161472876513 +2019-07-05 16:00:00,25.0,0.252910053,25.544944023432336 +2019-07-05 16:15:00,25.0,0.231216931,25.546726503896203 +2019-07-05 16:30:00,25.0,0.220634921,25.548508914038838 +2019-07-05 16:45:00,25.0,0.213756614,25.550291253630988 +2019-07-05 17:00:00,25.0,0.207936508,25.552073522443404 +2019-07-05 17:15:00,25.0,0.205291005,25.553855720246847 +2019-07-05 17:30:00,25.0,0.198412698,25.555637846812086 +2019-07-05 17:45:00,25.0,0.192063492,25.557419901909896 +2019-07-05 18:00:00,25.0,0.199470899,25.559201885311076 +2019-07-05 18:15:00,25.0,0.191534392,25.56098379678641 +2019-07-05 18:30:00,25.0,0.183597884,25.56276563610671 +2019-07-05 18:45:00,25.0,0.177248677,25.564547403042795 +2019-07-05 19:00:00,25.0,0.172486772,25.566329097365486 +2019-07-05 19:15:00,25.0,0.17989418,25.568110718845617 +2019-07-05 19:30:00,25.0,0.171957672,25.56989226725403 +2019-07-05 19:45:00,25.0,0.17037037,25.571673742361586 +2019-07-05 20:00:00,25.0,0.164550265,25.57345514393914 +2019-07-05 20:15:00,25.0,0.158730159,25.57523647175757 +2019-07-05 20:30:00,25.0,0.169312169,25.57701772558775 +2019-07-05 20:45:00,25.0,0.16031746,25.57879890520058 +2019-07-05 21:00:00,25.0,0.155026455,25.58058001036695 +2019-07-05 21:15:00,25.0,0.151851852,25.582361040857776 +2019-07-05 21:30:00,25.0,0.154497354,25.584141996443982 +2019-07-05 21:45:00,25.0,0.151851852,25.58592287689649 +2019-07-05 22:00:00,25.0,0.161375661,25.58770368198625 +2019-07-05 22:15:00,25.0,0.171428571,25.58948441148419 +2019-07-05 22:30:00,25.0,0.179365079,25.591265065161284 +2019-07-05 22:45:00,25.0,0.182539683,25.593045642788503 +2019-07-05 23:00:00,25.0,0.196825397,25.594826144136817 +2019-07-05 23:15:00,25.0,0.220634921,25.59660656897722 +2019-07-05 23:30:00,25.0,0.211640212,25.598386917080695 +2019-07-05 23:45:00,25.0,0.2,25.600167188218272 +2019-07-06 00:00:00,25.0,0.195767196,25.601947382160947 +2019-07-06 00:15:00,25.0,0.199470899,25.60372749867976 +2019-07-06 00:30:00,25.0,0.182539683,25.60550753754575 +2019-07-06 00:45:00,25.0,0.178835979,25.607287498529956 +2019-07-06 01:00:00,25.0,0.183068783,25.60906738140344 +2019-07-06 01:15:00,25.0,0.193121693,25.610847185937267 +2019-07-06 01:30:00,25.0,0.189417989,25.612626911902517 +2019-07-06 01:45:00,25.0,0.188359788,25.614406559070275 +2019-07-06 02:00:00,25.0,0.184126984,25.616186127211638 +2019-07-06 02:15:00,25.0,0.191534392,25.61796561609772 +2019-07-06 02:30:00,25.0,0.205291005,25.619745025499633 +2019-07-06 02:45:00,25.0,0.236507937,25.62152435518851 +2019-07-06 03:00:00,25.0,0.26031746,25.62330360493548 +2019-07-06 03:15:00,25.0,0.302645503,25.625082774511704 +2019-07-06 03:30:00,25.0,0.319047619,25.62686186368833 +2019-07-06 03:45:00,25.0,0.343386243,25.628640872236534 +2019-07-06 04:00:00,25.0,0.367195767,25.6304197999275 +2019-07-06 04:15:00,25.0,0.388888889,25.632198646532405 +2019-07-06 04:30:00,25.0,0.402116402,25.633977411822464 +2019-07-06 04:45:00,25.0,0.432804233,25.63575609556888 +2019-07-06 05:00:00,25.0,0.44973545,25.637534697542876 +2019-07-06 05:15:00,25.0,0.437566138,25.63931321751568 +2019-07-06 05:30:00,25.0,0.412169312,25.641091655258542 +2019-07-06 05:45:00,25.0,0.426984127,25.642870010542715 +2019-07-06 06:00:00,25.0,0.421164021,25.644648283139453 +2019-07-06 06:15:00,25.0,0.411640212,25.646426472820046 +2019-07-06 06:30:00,25.0,0.427513228,25.648204579355763 +2019-07-06 06:45:00,25.0,0.435978836,25.649982602517913 +2019-07-06 07:00:00,25.0,0.455026455,25.651760542077792 +2019-07-06 07:15:00,25.0,0.453439153,25.653538397806724 +2019-07-06 07:30:00,25.0,0.426455026,25.655316169476038 +2019-07-06 07:45:00,25.0,0.414285714,25.657093856857063 +2019-07-06 08:00:00,25.0,0.416931217,25.658871459721162 +2019-07-06 08:15:00,25.0,0.416931217,25.66064897783969 +2019-07-06 08:30:00,25.0,0.436507937,25.66242641098401 +2019-07-06 08:45:00,25.0,0.471957672,25.664203758925524 +2019-07-06 09:00:00,25.0,0.494179894,25.665981021435606 +2019-07-06 09:15:00,25.0,0.513227513,25.66775819828567 +2019-07-06 09:30:00,25.0,0.507936508,25.66953528924713 +2019-07-06 09:45:00,25.0,0.456084656,25.671312294091415 +2019-07-06 10:00:00,25.0,0.415873016,25.673089212589954 +2019-07-06 10:15:00,25.0,0.458201058,25.6748660445142 +2019-07-06 10:30:00,25.0,0.492592593,25.676642789635622 +2019-07-06 10:45:00,25.0,0.482010582,25.678419447725677 +2019-07-06 11:00:00,25.0,0.438624339,25.680196018555858 +2019-07-06 11:15:00,25.0,0.392063492,25.681972501897647 +2019-07-06 11:30:00,25.0,0.42962963,25.683748897522563 +2019-07-06 11:45:00,25.0,0.473015873,25.685525205202104 +2019-07-06 12:00:00,25.0,0.49047619,25.68730142470781 +2019-07-06 12:15:00,25.0,0.513756614,25.689077555811224 +2019-07-06 12:30:00,25.0,0.534391534,25.69085359828388 +2019-07-06 12:45:00,25.0,0.548148148,25.69262955189735 +2019-07-06 13:00:00,25.0,0.571957672,25.694405416423205 +2019-07-06 13:15:00,25.0,0.603174603,25.696181191633034 +2019-07-06 13:30:00,25.0,0.620634921,25.69795687729842 +2019-07-06 13:45:00,25.0,0.643386243,25.699732473190977 +2019-07-06 14:00:00,25.0,0.656084656,25.701507979082333 +2019-07-06 14:15:00,25.0,0.678835979,25.7032833947441 +2019-07-06 14:30:00,25.0,0.69047619,25.70505871994794 +2019-07-06 14:45:00,25.0,0.694708995,25.706833954465488 +2019-07-06 15:00:00,25.0,0.700529101,25.708609098068422 +2019-07-06 15:15:00,25.0,0.712169312,25.71038415052841 +2019-07-06 15:30:00,25.0,0.717460317,25.712159111617144 +2019-07-06 15:45:00,25.0,0.724867725,25.71393398110633 +2019-07-06 16:00:00,25.0,0.726455026,25.715708758767672 +2019-07-06 16:15:00,25.0,0.722751323,25.717483444372903 +2019-07-06 16:30:00,25.0,0.715873016,25.71925803769375 +2019-07-06 16:45:00,25.0,0.716402116,25.721032538501962 +2019-07-06 17:00:00,25.0,0.720634921,25.722806946569303 +2019-07-06 17:15:00,25.0,0.724338624,25.72458126166754 +2019-07-06 17:30:00,25.0,0.729100529,25.726355483568465 +2019-07-06 17:45:00,25.0,0.734920635,25.728129612043862 +2019-07-06 18:00:00,25.0,0.735978836,25.729903646865544 +2019-07-06 18:15:00,25.0,0.723280423,25.731677587805333 +2019-07-06 18:30:00,25.0,0.72010582,25.733451434635054 +2019-07-06 18:45:00,25.0,0.726984127,25.735225187126556 +2019-07-06 19:00:00,25.0,0.728571429,25.736998845051694 +2019-07-06 19:15:00,25.0,0.718518519,25.738772408182335 +2019-07-06 19:30:00,25.0,0.712169312,25.74054587629036 +2019-07-06 19:45:00,25.0,0.713756614,25.742319249147663 +2019-07-06 20:00:00,25.0,0.705820106,25.744092526526142 +2019-07-06 20:15:00,25.0,0.700529101,25.74586570819772 +2019-07-06 20:30:00,25.0,0.703703704,25.74763879393433 +2019-07-06 20:45:00,25.0,0.705820106,25.749411783507902 +2019-07-06 21:00:00,25.0,0.708465608,25.7511846766904 +2019-07-06 21:15:00,25.0,0.708465608,25.752957473253787 +2019-07-06 21:30:00,25.0,0.701587302,25.754730172970042 +2019-07-06 21:45:00,25.0,0.699470899,25.756502775611153 +2019-07-06 22:00:00,25.0,0.695238095,25.758275280949128 +2019-07-06 22:15:00,25.0,0.699470899,25.760047688755986 +2019-07-06 22:30:00,25.0,0.702645503,25.761819998803745 +2019-07-06 22:45:00,25.0,0.694708995,25.76359221086446 +2019-07-06 23:00:00,25.0,0.695767196,25.765364324710173 +2019-07-06 23:15:00,25.0,0.694179894,25.767136340112963 +2019-07-06 23:30:00,25.0,0.697354497,25.76890825684489 +2019-07-06 23:45:00,25.0,0.694708995,25.770680074678065 +2019-07-07 00:00:00,25.0,0.705291005,25.77245179338459 +2019-07-07 00:15:00,25.0,0.700529101,25.77422341273657 +2019-07-07 00:30:00,25.0,0.699470899,25.77599493250615 +2019-07-07 00:45:00,25.0,0.686772487,25.777766352465463 +2019-07-07 01:00:00,25.0,0.68042328,25.77953767238667 +2019-07-07 01:15:00,25.0,0.688359788,25.781308892041938 +2019-07-07 01:30:00,25.0,0.695767196,25.783080011203445 +2019-07-07 01:45:00,25.0,0.698941799,25.784851029643395 +2019-07-07 02:00:00,25.0,0.700529101,25.786621947133984 +2019-07-07 02:15:00,25.0,0.695238095,25.788392763447444 +2019-07-07 02:30:00,25.0,0.692592593,25.790163478355996 +2019-07-07 02:45:00,25.0,0.675132275,25.791934091631894 +2019-07-07 03:00:00,25.0,0.680952381,25.793704603047402 +2019-07-07 03:15:00,25.0,0.667724868,25.795475012374787 +2019-07-07 03:30:00,25.0,0.663492063,25.797245319386334 +2019-07-07 03:45:00,25.0,0.679365079,25.799015523854344 +2019-07-07 04:00:00,25.0,0.683597884,25.80078562555113 +2019-07-07 04:15:00,25.0,0.65978836,25.802555624249013 +2019-07-07 04:30:00,25.0,0.648148148,25.804325519720333 +2019-07-07 04:45:00,25.0,0.661375661,25.806095311737447 +2019-07-07 05:00:00,25.0,0.643386243,25.807865000072717 +2019-07-07 05:15:00,25.0,0.646031746,25.809634584498525 +2019-07-07 05:30:00,25.0,0.669312169,25.811404064787254 +2019-07-07 05:45:00,25.0,0.679365079,25.813173440711317 +2019-07-07 06:00:00,25.0,0.663492063,25.81494271204313 +2019-07-07 06:15:00,25.0,0.646560847,25.816711878555125 +2019-07-07 06:30:00,25.0,0.652380952,25.818480940019754 +2019-07-07 06:45:00,25.0,0.648677249,25.820249896209464 +2019-07-07 07:00:00,25.0,0.657671958,25.822018746896738 +2019-07-07 07:15:00,25.0,0.668253968,25.82378749185406 +2019-07-07 07:30:00,25.0,0.633333333,25.82555613085393 +2019-07-07 07:45:00,25.0,0.589417989,25.827324663668854 +2019-07-07 08:00:00,25.0,0.576190476,25.829093090071368 +2019-07-07 08:15:00,25.0,0.571957672,25.830861409834014 +2019-07-07 08:30:00,25.0,0.57037037,25.83262962272934 +2019-07-07 08:45:00,25.0,0.575661376,25.834397728529922 +2019-07-07 09:00:00,25.0,0.558201058,25.836165727008332 +2019-07-07 09:15:00,25.0,0.491534392,25.837933617937175 +2019-07-07 09:30:00,25.0,0.452910053,25.839701401089055 +2019-07-07 09:45:00,25.0,0.475661376,25.8414690762366 +2019-07-07 10:00:00,25.0,0.494179894,25.843236643152448 +2019-07-07 10:15:00,25.0,0.507936508,25.84500410160924 +2019-07-07 10:30:00,25.0,0.511640212,25.84677145137966 +2019-07-07 10:45:00,25.0,0.503174603,25.848538692236367 +2019-07-07 11:00:00,25.0,0.52010582,25.85030582395207 +2019-07-07 11:15:00,25.0,0.560846561,25.85207284629947 +2019-07-07 11:30:00,25.0,0.586243386,25.853839759051287 +2019-07-07 11:45:00,25.0,0.545502646,25.855606561980263 +2019-07-07 12:00:00,25.0,0.53015873,25.857373254859137 +2019-07-07 12:15:00,25.0,0.560846561,25.859139837460685 +2019-07-07 12:30:00,25.0,0.574603175,25.860906309557677 +2019-07-07 12:45:00,25.0,0.585185185,25.862672670922905 +2019-07-07 13:00:00,25.0,0.583068783,25.864438921329185 +2019-07-07 13:15:00,25.0,0.588359788,25.866205060549326 +2019-07-07 13:30:00,25.0,0.593650794,25.86797108835617 +2019-07-07 13:45:00,25.0,0.594179894,25.869737004522563 +2019-07-07 14:00:00,25.0,0.593650794,25.871502808821372 +2019-07-07 14:15:00,25.0,0.583068783,25.87326850102547 +2019-07-07 14:30:00,25.0,0.571957672,25.875034080907756 +2019-07-07 14:45:00,25.0,0.576190476,25.876799548241134 +2019-07-07 15:00:00,25.0,0.578306878,25.878564902798523 +2019-07-07 15:15:00,25.0,0.586243386,25.880330144352868 +2019-07-07 15:30:00,25.0,0.568253968,25.882095272677105 +2019-07-07 15:45:00,25.0,0.555026455,25.883860287544213 +2019-07-07 16:00:00,25.0,0.547089947,25.88562518872716 +2019-07-07 16:15:00,25.0,0.53015873,25.88738997599895 +2019-07-07 16:30:00,25.0,0.533333333,25.88915464913259 +2019-07-07 16:45:00,25.0,0.54021164,25.8909192079011 +2019-07-07 17:00:00,25.0,0.515873016,25.892683652077523 +2019-07-07 17:15:00,25.0,0.5,25.894447981434904 +2019-07-07 17:30:00,25.0,0.508994709,25.89621219574632 +2019-07-07 17:45:00,25.0,0.491005291,25.897976294784847 +2019-07-07 18:00:00,25.0,0.511640212,25.899740278323584 +2019-07-07 18:15:00,25.0,0.519047619,25.90150414613565 +2019-07-07 18:30:00,25.0,0.482539683,25.903267897994166 +2019-07-07 18:45:00,25.0,0.443915344,25.905031533672275 +2019-07-07 19:00:00,25.0,0.446031746,25.90679505294313 +2019-07-07 19:15:00,25.0,0.453968254,25.908558455579914 +2019-07-07 19:30:00,25.0,0.470899471,25.9103217413558 +2019-07-07 19:45:00,25.0,0.46984127,25.912084910044 +2019-07-07 20:00:00,25.0,0.46984127,25.913847961417734 +2019-07-07 20:15:00,25.0,0.440740741,25.915610895250225 +2019-07-07 20:30:00,25.0,0.432804233,25.917373711314724 +2019-07-07 20:45:00,25.0,0.412169312,25.919136409384492 +2019-07-07 21:00:00,25.0,0.393650794,25.92089898923281 +2019-07-07 21:15:00,25.0,0.401587302,25.922661450632972 +2019-07-07 21:30:00,25.0,0.406349206,25.92442379335828 +2019-07-07 21:45:00,25.0,0.394179894,25.926186017182065 +2019-07-07 22:00:00,25.0,0.371957672,25.927948121877655 +2019-07-07 22:15:00,25.0,0.38042328,25.92971010721842 +2019-07-07 22:30:00,25.0,0.356084656,25.93147197297771 +2019-07-07 22:45:00,25.0,0.35978836,25.933233718928925 +2019-07-07 23:00:00,25.0,0.387301587,25.93499534484546 +2019-07-07 23:15:00,25.0,0.38042328,25.93675685050073 +2019-07-07 23:30:00,25.0,0.385714286,25.93851823566817 +2019-07-07 23:45:00,25.0,0.413756614,25.940279500121218 +2019-07-08 00:00:00,25.0,0.428042328,25.942040643633344 +2019-07-08 00:15:00,25.0,0.422751323,25.94380166597802 +2019-07-08 00:30:00,25.0,0.430687831,25.945562566928743 +2019-07-08 00:45:00,25.0,0.424338624,25.947323346259026 +2019-07-08 01:00:00,25.0,0.392592593,25.94908400374238 +2019-07-08 01:15:00,25.0,0.379365079,25.95084453915236 +2019-07-08 01:30:00,25.0,0.401587302,25.95260495226251 +2019-07-08 01:45:00,25.0,0.391534392,25.954365242846414 +2019-07-08 02:00:00,25.0,0.374603175,25.95612541067765 +2019-07-08 02:15:00,25.0,0.365608466,25.95788545552982 +2019-07-08 02:30:00,25.0,0.339153439,25.959645377176553 +2019-07-08 02:45:00,25.0,0.355026455,25.96140517539147 +2019-07-08 03:00:00,25.0,0.371957672,25.963164849948235 +2019-07-08 03:15:00,25.0,0.364550265,25.964924400620504 +2019-07-08 03:30:00,25.0,0.359259259,25.96668382718197 +2019-07-08 03:45:00,25.0,0.357671958,25.96844312940632 +2019-07-08 04:00:00,25.0,0.342857143,25.970202307067275 +2019-07-08 04:15:00,25.0,0.317989418,25.971961359938568 +2019-07-08 04:30:00,25.0,0.340740741,25.973720287793938 +2019-07-08 04:45:00,25.0,0.361375661,25.975479090407156 +2019-07-08 05:00:00,25.0,0.35026455,25.97723776755199 +2019-07-08 05:15:00,25.0,0.336507937,25.978996319002245 +2019-07-08 05:30:00,25.0,0.342857143,25.98075474453173 +2019-07-08 05:45:00,25.0,0.34021164,25.982513043914267 +2019-07-08 06:00:00,25.0,0.35978836,25.98427121692371 +2019-07-08 06:15:00,25.0,0.348677249,25.986029263333904 +2019-07-08 06:30:00,25.0,0.335449735,25.98778718291874 +2019-07-08 06:45:00,25.0,0.327513228,25.989544975452098 +2019-07-08 07:00:00,25.0,0.338095238,25.991302640707893 +2019-07-08 07:15:00,25.0,0.314285714,25.993060178460052 +2019-07-08 07:30:00,25.0,0.291534392,25.99481758848251 +2019-07-08 07:45:00,25.0,0.282010582,25.996574870549228 +2019-07-08 08:00:00,25.0,0.302645503,25.99833202443418 +2019-07-08 08:15:00,25.0,0.295238095,26.00008904991136 +2019-07-08 08:30:00,25.0,0.289417989,26.00184594675477 +2019-07-08 08:45:00,25.0,0.282539683,26.003602714738435 +2019-07-08 09:00:00,25.0,0.266666667,26.0053593536364 +2019-07-08 09:15:00,25.0,0.25978836,26.00711586322272 +2019-07-08 09:30:00,25.0,0.276190476,26.008872243271465 +2019-07-08 09:45:00,25.0,0.286772487,26.01062849355673 +2019-07-08 10:00:00,25.0,0.267195767,26.01238461385262 +2019-07-08 10:15:00,25.0,0.249206349,26.014140603933257 +2019-07-08 10:30:00,25.0,0.27989418,26.01589646357278 +2019-07-08 10:45:00,25.0,0.288359788,26.017652192545356 +2019-07-08 11:00:00,25.0,0.282010582,26.01940779062515 +2019-07-08 11:15:00,25.0,0.276190476,26.021163257586355 +2019-07-08 11:30:00,25.0,0.265079365,26.02291859320318 +2019-07-08 11:45:00,25.0,0.285185185,26.02467379724985 +2019-07-08 12:00:00,25.0,0.296296296,26.0264288695006 +2019-07-08 12:15:00,25.0,0.282539683,26.028183809729697 +2019-07-08 12:30:00,25.0,0.27989418,26.029938617711416 +2019-07-08 12:45:00,25.0,0.272486772,26.031693293220044 +2019-07-08 13:00:00,25.0,0.274603175,26.033447836029897 +2019-07-08 13:15:00,25.0,0.281481481,26.035202245915297 +2019-07-08 13:30:00,25.0,0.277248677,26.036956522650584 +2019-07-08 13:45:00,25.0,0.28042328,26.038710666010132 +2019-07-08 14:00:00,25.0,0.281481481,26.040464675768305 +2019-07-08 14:15:00,25.0,0.271428571,26.04221855169951 +2019-07-08 14:30:00,25.0,0.259259259,26.043972293578147 +2019-07-08 14:45:00,25.0,0.285185185,26.04572590117866 +2019-07-08 15:00:00,25.0,0.317460317,26.047479374275483 +2019-07-08 15:15:00,25.0,0.315873016,26.049232712643082 +2019-07-08 15:30:00,25.0,0.321693122,26.05098591605595 +2019-07-08 15:45:00,25.0,0.282539683,26.05273898428857 +2019-07-08 16:00:00,25.0,0.264021164,26.054491917115474 +2019-07-08 16:15:00,25.0,0.27037037,26.056244714311184 +2019-07-08 16:30:00,25.0,0.292063492,26.057997375650256 +2019-07-08 16:45:00,25.0,0.298412698,26.059749900907256 +2019-07-08 17:00:00,25.0,0.305291005,26.06150228985677 +2019-07-08 17:15:00,25.0,0.322751323,26.06325454227341 +2019-07-08 17:30:00,25.0,0.337566138,26.065006657931786 +2019-07-08 17:45:00,25.0,0.376719577,26.066758636606544 +2019-07-08 18:00:00,25.0,0.362433862,26.068510478072334 +2019-07-08 18:15:00,25.0,0.335449735,26.07026218210384 +2019-07-08 18:30:00,25.0,0.322751323,26.072013748475744 +2019-07-08 18:45:00,25.0,0.353968254,26.07376517696276 +2019-07-08 19:00:00,25.0,0.34021164,26.075516467339618 +2019-07-08 19:15:00,25.0,0.327513228,26.077267619381054 +2019-07-08 19:30:00,25.0,0.376190476,26.079018632861843 +2019-07-08 19:45:00,25.0,0.400529101,26.080769507556752 +2019-07-08 20:00:00,25.0,0.39047619,26.08252024324059 +2019-07-08 20:15:00,25.0,0.373544974,26.08427083968817 +2019-07-08 20:30:00,25.0,0.395238095,26.086021296674325 +2019-07-08 20:45:00,25.0,0.386772487,26.08777161397391 +2019-07-08 21:00:00,25.0,0.375661376,26.08952179136179 +2019-07-08 21:15:00,25.0,0.415343915,26.09127182861286 +2019-07-08 21:30:00,25.0,0.443386243,26.09302172550202 +2019-07-08 21:45:00,25.0,0.457671958,26.0947714818042 +2019-07-08 22:00:00,25.0,0.470899471,26.096521097294335 +2019-07-08 22:15:00,25.0,0.462962963,26.098270571747392 +2019-07-08 22:30:00,25.0,0.433862434,26.10001990493835 +2019-07-08 22:45:00,25.0,0.447089947,26.101769096642197 +2019-07-08 23:00:00,25.0,0.451322751,26.10351814663396 +2019-07-08 23:15:00,25.0,0.46984127,26.10526705468866 +2019-07-08 23:30:00,25.0,0.495767196,26.107015820581353 +2019-07-08 23:45:00,25.0,0.491534392,26.108764444087118 +2019-07-09 00:00:00,25.0,0.483597884,26.110512924981027 +2019-07-09 00:15:00,25.0,0.472486772,26.1122612630382 +2019-07-09 00:30:00,25.0,0.446031746,26.114009458033753 +2019-07-09 00:45:00,25.0,0.438624339,26.115757509742835 +2019-07-09 01:00:00,25.0,0.463492063,26.1175054179406 +2019-07-09 01:15:00,25.0,0.475661376,26.119253182402232 +2019-07-09 01:30:00,25.0,0.453439153,26.121000802902937 +2019-07-09 01:45:00,25.0,0.429100529,26.12274827921792 +2019-07-09 02:00:00,25.0,0.449206349,26.124495611122427 +2019-07-09 02:15:00,25.0,0.453439153,26.1262427983917 +2019-07-09 02:30:00,25.0,0.465079365,26.127989840801025 +2019-07-09 02:45:00,25.0,0.431746032,26.129736738125683 +2019-07-09 03:00:00,25.0,0.392063492,26.131483490140987 +2019-07-09 03:15:00,25.0,0.365079365,26.13323009662227 +2019-07-09 03:30:00,25.0,0.373015873,26.13497655734487 +2019-07-09 03:45:00,25.0,0.375661376,26.136722872084167 +2019-07-09 04:00:00,25.0,0.381481481,26.138469040615533 +2019-07-09 04:15:00,25.0,0.403174603,26.140215062714383 +2019-07-09 04:30:00,25.0,0.411640212,26.141960938156128 +2019-07-09 04:45:00,25.0,0.377777778,26.143706666716213 +2019-07-09 05:00:00,25.0,0.385714286,26.14545224817011 +2019-07-09 05:15:00,25.0,0.394179894,26.147197682293278 +2019-07-09 05:30:00,25.0,0.397883598,26.148942968861235 +2019-07-09 05:45:00,25.0,0.38994709,26.150688107649483 +2019-07-09 06:00:00,25.0,0.411640212,26.152433098433566 +2019-07-09 06:15:00,25.0,0.426984127,26.154177940989037 +2019-07-09 06:30:00,25.0,0.433333333,26.15592263509147 +2019-07-09 06:45:00,25.0,0.423809524,26.157667180516462 +2019-07-09 07:00:00,25.0,0.440740741,26.15941157703962 +2019-07-09 07:15:00,25.0,0.451322751,26.161155824436584 +2019-07-09 07:30:00,25.0,0.443386243,26.162899922482993 +2019-07-09 07:45:00,25.0,0.445502646,26.164643870954524 +2019-07-09 08:00:00,25.0,0.435449735,26.16638766962687 +2019-07-09 08:15:00,25.0,0.426455026,26.168131318275734 +2019-07-09 08:30:00,25.0,0.423809524,26.16987481667685 +2019-07-09 08:45:00,25.0,0.416931217,26.171618164605952 +2019-07-09 09:00:00,25.0,0.407407407,26.17336136183882 +2019-07-09 09:15:00,25.0,0.392592593,26.17510440815123 +2019-07-09 09:30:00,25.0,0.413227513,26.176847303318993 +2019-07-09 09:45:00,25.0,0.41005291,26.17859004711794 +2019-07-09 10:00:00,25.0,0.406349206,26.1803326393239 +2019-07-09 10:15:00,25.0,0.392063492,26.182075079712753 +2019-07-09 10:30:00,25.0,0.400529101,26.183817368060367 +2019-07-09 10:45:00,25.0,0.382010582,26.18555950414266 +2019-07-09 11:00:00,25.0,0.366666667,26.18730148773554 +2019-07-09 11:15:00,25.0,0.375661376,26.189043318614956 +2019-07-09 11:30:00,25.0,0.364021164,26.19078499655687 +2019-07-09 11:45:00,25.0,0.364021164,26.192526521337264 +2019-07-09 12:00:00,25.0,0.347619048,26.194267892732142 +2019-07-09 12:15:00,25.0,0.333862434,26.19600911051751 +2019-07-09 12:30:00,25.0,0.341269841,26.19775017446943 +2019-07-09 12:45:00,25.0,0.355555556,26.199491084363945 +2019-07-09 13:00:00,25.0,0.353439153,26.201231839977144 +2019-07-09 13:15:00,25.0,0.351322751,26.202972441085127 +2019-07-09 13:30:00,25.0,0.342857143,26.204712887464005 +2019-07-09 13:45:00,25.0,0.333333333,26.20645317888993 +2019-07-09 14:00:00,25.0,0.34021164,26.208193315139052 +2019-07-09 14:15:00,25.0,0.352910053,26.209933295987557 +2019-07-09 14:30:00,25.0,0.370899471,26.21167312121164 +2019-07-09 14:45:00,25.0,0.382539683,26.213412790587522 +2019-07-09 15:00:00,25.0,0.388359788,26.215152303891447 +2019-07-09 15:15:00,25.0,0.385185185,26.21689166089967 +2019-07-09 15:30:00,25.0,0.387830688,26.218630861388473 +2019-07-09 15:45:00,25.0,0.384126984,26.220369905134152 +2019-07-09 16:00:00,25.0,0.388359788,26.222108791913037 +2019-07-09 16:15:00,25.0,0.391005291,26.223847521501455 +2019-07-09 16:30:00,25.0,0.361375661,26.225586093675773 +2019-07-09 16:45:00,25.0,0.346560847,26.227324508212376 +2019-07-09 17:00:00,25.0,0.341798942,26.229062764887658 +2019-07-09 17:15:00,25.0,0.335449735,26.23080086347805 +2019-07-09 17:30:00,25.0,0.327513228,26.23253880375998 +2019-07-09 17:45:00,25.0,0.322222222,26.234276585509917 +2019-07-09 18:00:00,25.0,0.308465608,26.236014208504347 +2019-07-09 18:15:00,25.0,0.296825397,26.23775167251977 +2019-07-09 18:30:00,25.0,0.295767196,26.239488977332712 +2019-07-09 18:45:00,25.0,0.282010582,26.24122612271971 +2019-07-09 19:00:00,25.0,0.275661376,26.242963108457335 +2019-07-09 19:15:00,25.0,0.268253968,26.244699934322163 +2019-07-09 19:30:00,25.0,0.261904762,26.24643660009081 +2019-07-09 19:45:00,25.0,0.252380952,26.2481731055399 +2019-07-09 20:00:00,25.0,0.238624339,26.249909450446076 +2019-07-09 20:15:00,25.0,0.224867725,26.25164563458601 +2019-07-09 20:30:00,25.0,0.218518519,26.25338165773638 +2019-07-09 20:45:00,25.0,0.205291005,26.255117519673906 +2019-07-09 21:00:00,25.0,0.182010582,26.25685322017531 +2019-07-09 21:15:00,25.0,0.171428571,26.258588759017343 +2019-07-09 21:30:00,25.0,0.163492063,26.260324135976784 +2019-07-09 21:45:00,25.0,0.162962963,26.262059350830413 +2019-07-09 22:00:00,25.0,0.165608466,26.263794403355053 +2019-07-09 22:15:00,25.0,0.16984127,26.26552929332753 +2019-07-09 22:30:00,25.0,0.167724868,26.267264020524703 +2019-07-09 22:45:00,25.0,0.159259259,26.268998584723445 +2019-07-09 23:00:00,25.0,0.150793651,26.27073298570065 +2019-07-09 23:15:00,25.0,0.142857143,26.272467223233242 +2019-07-09 23:30:00,25.0,0.135449735,26.274201297098156 +2019-07-09 23:45:00,25.0,0.136507937,26.27593520707235 +2019-07-10 00:00:00,25.0,0.129100529,26.277668952932807 +2019-07-10 00:15:00,25.0,0.120634921,26.279402534456526 +2019-07-10 00:30:00,25.0,0.113227513,26.28113595142053 +2019-07-10 00:45:00,25.0,0.101058201,26.282869203601862 +2019-07-10 01:00:00,25.0,0.097883598,26.284602290777595 +2019-07-10 01:15:00,25.0,0.093650794,26.286335212724804 +2019-07-10 01:30:00,25.0,0.093121693,26.28806796922061 +2019-07-10 01:45:00,25.0,0.09047619,26.289800560042124 +2019-07-10 02:00:00,25.0,0.091005291,26.29153298496651 +2019-07-10 02:15:00,25.0,0.09047619,26.293265243770936 +2019-07-10 02:30:00,25.0,0.089417989,26.29499733623259 +2019-07-10 02:45:00,25.0,0.083068783,26.296729262128697 +2019-07-10 03:00:00,25.0,0.07989418,26.29846102123648 +2019-07-10 03:15:00,25.0,0.083068783,26.30019261333321 +2019-07-10 03:30:00,25.0,0.075661376,26.30192403819615 +2019-07-10 03:45:00,25.0,0.074603175,26.30365529560261 +2019-07-10 04:00:00,25.0,0.068783069,26.305386385329914 +2019-07-10 04:15:00,25.0,0.065079365,26.307117307155398 +2019-07-10 04:30:00,25.0,0.066137566,26.30884806085643 +2019-07-10 04:45:00,25.0,0.062962963,26.310578646210395 +2019-07-10 05:00:00,25.0,0.058201058,26.312309062994707 +2019-07-10 05:15:00,25.0,0.050793651,26.314039310986786 +2019-07-10 05:30:00,25.0,0.046560847,26.315769389964085 +2019-07-10 05:45:00,25.0,0.042857143,26.31749929970409 +2019-07-10 06:00:00,25.0,0.044973545,26.319229039984283 +2019-07-10 06:15:00,25.0,0.040740741,26.320958610582185 +2019-07-10 06:30:00,25.0,0.036507937,26.322688011275332 +2019-07-10 06:45:00,25.0,0.037037037,26.324417241841292 +2019-07-10 07:00:00,25.0,0.039153439,26.326146302057637 +2019-07-10 07:15:00,25.0,0.039153439,26.327875191701978 +2019-07-10 07:30:00,25.0,0.036507937,26.329603910551942 +2019-07-10 07:45:00,25.0,0.047619048,26.33133245838517 +2019-07-10 08:00:00,25.0,0.053439153,26.333060834979342 +2019-07-10 08:15:00,25.0,0.05026455,26.334789040112142 +2019-07-10 08:30:00,25.0,0.048148148,26.33651707356129 +2019-07-10 08:45:00,25.0,0.05026455,26.338244935104516 +2019-07-10 09:00:00,25.0,0.054497354,26.339972624519586 +2019-07-10 09:15:00,25.0,0.065608466,26.341700141584276 +2019-07-10 09:30:00,25.0,0.069312169,26.343427486076386 +2019-07-10 09:45:00,25.0,0.080952381,26.34515465777375 +2019-07-10 10:00:00,25.0,0.095767196,26.346881656454208 +2019-07-10 10:15:00,25.0,0.101587302,26.34860848189563 +2019-07-10 10:30:00,25.0,0.106878307,26.35033513387591 +2019-07-10 10:45:00,25.0,0.116402116,26.35206161217296 +2019-07-10 11:00:00,25.0,0.125925926,26.35378791656472 +2019-07-10 11:15:00,25.0,0.142857143,26.355514046829143 +2019-07-10 11:30:00,25.0,0.160846561,26.357240002744213 +2019-07-10 11:45:00,25.0,0.167724868,26.358965784087935 +2019-07-10 12:00:00,25.0,0.176190476,26.36069139063833 +2019-07-10 12:15:00,25.0,0.200529101,26.362416822173458 +2019-07-10 12:30:00,25.0,0.213227513,26.364142078471374 +2019-07-10 12:45:00,25.0,0.217460317,26.365867159310188 +2019-07-10 13:00:00,25.0,0.21957672,26.367592064468003 +2019-07-10 13:15:00,25.0,0.23015873,26.369316793722962 +2019-07-10 13:30:00,25.0,0.233862434,26.37104134685323 +2019-07-10 13:45:00,25.0,0.231216931,26.37276572363698 +2019-07-10 14:00:00,25.0,0.232804233,26.374489923852437 +2019-07-10 14:15:00,25.0,0.247089947,26.376213947277815 +2019-07-10 14:30:00,25.0,0.274603175,26.377937793691373 +2019-07-10 14:45:00,25.0,0.284126984,26.379661462871383 +2019-07-10 15:00:00,25.0,0.289417989,26.381384954596143 +2019-07-10 15:15:00,25.0,0.294179894,26.383108268643973 +2019-07-10 15:30:00,25.0,0.323280423,26.384831404793218 +2019-07-10 15:45:00,25.0,0.34021164,26.386554362822245 +2019-07-10 16:00:00,25.0,0.341798942,26.38827714250944 +2019-07-10 16:15:00,25.0,0.337566138,26.389999743633222 +2019-07-10 16:30:00,25.0,0.337037037,26.391722165972016 +2019-07-10 16:45:00,25.0,0.326455026,26.393444409304287 +2019-07-10 17:00:00,25.0,0.331746032,26.395166473408512 +2019-07-10 17:15:00,25.0,0.338095238,26.396888358063197 +2019-07-10 17:30:00,25.0,0.335449735,26.398610063046878 +2019-07-10 17:45:00,25.0,0.332804233,26.400331588138087 +2019-07-10 18:00:00,25.0,0.329100529,26.402052933115414 +2019-07-10 18:15:00,25.0,0.31957672,26.40377409775744 +2019-07-10 18:30:00,25.0,0.316402116,26.405495081842805 +2019-07-10 18:45:00,25.0,0.31005291,26.407215885150134 +2019-07-10 19:00:00,25.0,0.289417989,26.4089365074581 +2019-07-10 19:15:00,25.0,0.27989418,26.410656948545395 +2019-07-10 19:30:00,25.0,0.257142857,26.412377208190726 +2019-07-10 19:45:00,25.0,0.24021164,26.41409728617284 +2019-07-10 20:00:00,25.0,0.22010582,26.415817182270484 +2019-07-10 20:15:00,25.0,0.201587302,26.417536896262444 +2019-07-10 20:30:00,25.0,0.179365079,26.419256427927536 +2019-07-10 20:45:00,25.0,0.160846561,26.420975777044575 +2019-07-10 21:00:00,25.0,0.144973545,26.42269494339243 +2019-07-10 21:15:00,25.0,0.132275132,26.424413926749963 +2019-07-10 21:30:00,25.0,0.121164021,26.426132726896086 +2019-07-10 21:45:00,25.0,0.108994709,26.427851343609714 +2019-07-10 22:00:00,25.0,0.104761905,26.429569776669798 +2019-07-10 22:15:00,25.0,0.101587302,26.431288025855316 +2019-07-10 22:30:00,25.0,0.098941799,26.43300609094525 +2019-07-10 22:45:00,25.0,0.099470899,26.434723971718633 +2019-07-10 23:00:00,25.0,0.104232804,26.43644166795449 +2019-07-10 23:15:00,25.0,0.110582011,26.438159179431903 +2019-07-10 23:30:00,25.0,0.108994709,26.439876505929952 +2019-07-10 23:45:00,25.0,0.101058201,26.44159364722775 +2019-07-11 00:00:00,25.0,0.094179894,26.443310603104447 +2019-07-11 00:15:00,25.0,0.094179894,26.445027373339187 +2019-07-11 00:30:00,25.0,0.098412698,26.44674395771117 +2019-07-11 00:45:00,25.0,0.104232804,26.448460355999593 +2019-07-11 01:00:00,25.0,0.101058201,26.450176567983696 +2019-07-11 01:15:00,25.0,0.094179894,26.451892593442732 +2019-07-11 01:30:00,25.0,0.091005291,26.45360843215598 +2019-07-11 01:45:00,25.0,0.087830688,26.455324083902756 +2019-07-11 02:00:00,25.0,0.085714286,26.457039548462376 +2019-07-11 02:15:00,25.0,0.085714286,26.458754825614204 +2019-07-11 02:30:00,25.0,0.086772487,26.460469915137605 +2019-07-11 02:45:00,25.0,0.084126984,26.46218481681199 +2019-07-11 03:00:00,25.0,0.080952381,26.46389953041678 +2019-07-11 03:15:00,25.0,0.07989418,26.46561405573142 +2019-07-11 03:30:00,25.0,0.081481481,26.4673283925354 +2019-07-11 03:45:00,25.0,0.076719577,26.4690425406082 +2019-07-11 04:00:00,25.0,0.072486772,26.470756499729355 +2019-07-11 04:15:00,25.0,0.065079365,26.4724702696784 +2019-07-11 04:30:00,25.0,0.057671958,26.474183850234915 +2019-07-11 04:45:00,25.0,0.051851852,26.475897241178494 +2019-07-11 05:00:00,25.0,0.048677249,26.47761044228875 +2019-07-11 05:15:00,25.0,0.042857143,26.479323453345337 +2019-07-11 05:30:00,25.0,0.037037037,26.481036274127916 +2019-07-11 05:45:00,25.0,0.036507937,26.48274890441619 +2019-07-11 06:00:00,25.0,0.036507937,26.48446134398986 +2019-07-11 06:15:00,25.0,0.036507937,26.48617359262868 +2019-07-11 06:30:00,25.0,0.033862434,26.487885650112418 +2019-07-11 06:45:00,25.0,0.031746032,26.489597516220858 +2019-07-11 07:00:00,25.0,0.033333333,26.491309190733823 +2019-07-11 07:15:00,25.0,0.033333333,26.493020673431143 +2019-07-11 07:30:00,25.0,0.032804233,26.494731964092697 +2019-07-11 07:45:00,25.0,0.033862434,26.49644306249836 +2019-07-11 08:00:00,25.0,0.034391534,26.49815396842806 +2019-07-11 08:15:00,25.0,0.035978836,26.49986468166173 +2019-07-11 08:30:00,25.0,0.039153439,26.501575201979332 +2019-07-11 08:45:00,25.0,0.044973545,26.50328552916086 +2019-07-11 09:00:00,25.0,0.042328042,26.50499566298632 +2019-07-11 09:15:00,25.0,0.037566138,26.506705603235766 +2019-07-11 09:30:00,25.0,0.037566138,26.50841534968924 +2019-07-11 09:45:00,25.0,0.042328042,26.510124902126847 +2019-07-11 10:00:00,25.0,0.048148148,26.511834260328698 +2019-07-11 10:15:00,25.0,0.052380952,26.51354342407492 +2019-07-11 10:30:00,25.0,0.056613757,26.515252393145694 +2019-07-11 10:45:00,25.0,0.058201058,26.516961167321195 +2019-07-11 11:00:00,25.0,0.059259259,26.518669746381647 +2019-07-11 11:15:00,25.0,0.061904762,26.520378130107275 +2019-07-11 11:30:00,25.0,0.066666667,26.52208631827835 +2019-07-11 11:45:00,25.0,0.070899471,26.523794310675168 +2019-07-11 12:00:00,25.0,0.073015873,26.52550210707803 +2019-07-11 12:15:00,25.0,0.079365079,26.527209707267286 +2019-07-11 12:30:00,25.0,0.086772487,26.528917111023294 +2019-07-11 12:45:00,25.0,0.096296296,26.53062431812645 +2019-07-11 13:00:00,25.0,0.098941799,26.53233132835716 +2019-07-11 13:15:00,25.0,0.096296296,26.534038141495866 +2019-07-11 13:30:00,25.0,0.095238095,26.535744757323044 +2019-07-11 13:45:00,25.0,0.088359788,26.537451175619175 +2019-07-11 14:00:00,25.0,0.086772487,26.539157396164782 +2019-07-11 14:15:00,25.0,0.082010582,26.540863418740397 +2019-07-11 14:30:00,25.0,0.080952381,26.542569243126596 +2019-07-11 14:45:00,25.0,0.084656085,26.544274869103976 +2019-07-11 15:00:00,25.0,0.078835979,26.545980296453145 +2019-07-11 15:15:00,25.0,0.073015873,26.547685524954755 +2019-07-11 15:30:00,25.0,0.071957672,26.54939055438947 +2019-07-11 15:45:00,25.0,0.070899471,26.551095384537987 +2019-07-11 16:00:00,25.0,0.069312169,26.552800015181024 +2019-07-11 16:15:00,25.0,0.064021164,26.55450444609933 +2019-07-11 16:30:00,25.0,0.062433862,26.556208677073684 +2019-07-11 16:45:00,25.0,0.054497354,26.55791270788487 +2019-07-11 17:00:00,25.0,0.038624339,26.559616538313726 +2019-07-11 17:15:00,25.0,0.024867725,26.56132016814109 +2019-07-11 17:30:00,25.0,0.02010582,26.563023597147847 +2019-07-11 17:45:00,25.0,0.016931217,26.56472682511489 +2019-07-11 18:00:00,25.0,0.014814815,26.566429851823145 +2019-07-11 18:15:00,25.0,0.013756614,26.568132677053573 +2019-07-11 18:30:00,25.0,0.010582011,26.569835300587144 +2019-07-11 18:45:00,25.0,0.007936508,26.57153772220487 +2019-07-11 19:00:00,25.0,0.006878307,26.573239941687774 +2019-07-11 19:15:00,25.0,0.005291005,26.574941958816922 +2019-07-11 19:30:00,25.0,0.004232804,26.576643773373387 +2019-07-11 19:45:00,25.0,0.002116402,26.578345385138284 +2019-07-11 20:00:00,25.0,0.003174603,26.58004679389275 +2019-07-11 20:15:00,25.0,0.004761905,26.581747999417935 +2019-07-11 20:30:00,25.0,0.006349206,26.583449001495037 +2019-07-11 20:45:00,25.0,0.005820106,26.585149799905263 +2019-07-11 21:00:00,25.0,0.004232804,26.586850394429856 +2019-07-11 21:15:00,25.0,0.003174603,26.588550784850078 +2019-07-11 21:30:00,25.0,0.002645503,26.590250970947224 +2019-07-11 21:45:00,25.0,0.003174603,26.59195095250261 +2019-07-11 22:00:00,25.0,0.004232804,26.593650729297583 +2019-07-11 22:15:00,25.0,0.005820106,26.595350301113513 +2019-07-11 22:30:00,25.0,0.006349206,26.597049667731792 +2019-07-11 22:45:00,25.0,0.008465608,26.59874882893385 +2019-07-11 23:00:00,25.0,0.011111111,26.600447784501135 +2019-07-11 23:15:00,25.0,0.011640212,26.60214653421512 +2019-07-11 23:30:00,25.0,0.013227513,26.60384507785732 +2019-07-11 23:45:00,25.0,0.014814815,26.605543415209244 +2019-07-12 00:00:00,25.0,0.020634921,26.607241546052467 +2019-07-12 00:15:00,25.0,0.024338624,26.60893947016856 +2019-07-12 00:30:00,25.0,0.022751323,26.610637187339137 +2019-07-12 00:45:00,25.0,0.022751323,26.612334697345833 +2019-07-12 01:00:00,25.0,0.024338624,26.614031999970308 +2019-07-12 01:15:00,25.0,0.023280423,26.615729094994258 +2019-07-12 01:30:00,25.0,0.022222222,26.61742598219939 +2019-07-12 01:45:00,25.0,0.024867725,26.619122661367452 +2019-07-12 02:00:00,25.0,0.027513228,26.620819132280207 +2019-07-12 02:15:00,25.0,0.026455026,26.622515394719457 +2019-07-12 02:30:00,25.0,0.023280423,26.624211448467026 +2019-07-12 02:45:00,25.0,0.025396825,26.62590729330476 +2019-07-12 03:00:00,25.0,0.031216931,26.627602929014536 +2019-07-12 03:15:00,25.0,0.031746032,26.629298355378253 +2019-07-12 03:30:00,25.0,0.031746032,26.630993572177854 +2019-07-12 03:45:00,25.0,0.032804233,26.632688579195282 +2019-07-12 04:00:00,25.0,0.033862434,26.634383376212526 +2019-07-12 04:15:00,25.0,0.033333333,26.636077963011605 +2019-07-12 04:30:00,25.0,0.033333333,26.637772339374546 +2019-07-12 04:45:00,25.0,0.035449735,26.639466505083426 +2019-07-12 05:00:00,25.0,0.036507937,26.641160459920325 +2019-07-12 05:15:00,25.0,0.034391534,26.642854203667373 +2019-07-12 05:30:00,25.0,0.030687831,26.64454773610671 +2019-07-12 05:45:00,25.0,0.026984127,26.64624105702051 +2019-07-12 06:00:00,25.0,0.026455026,26.64793416619098 +2019-07-12 06:15:00,25.0,0.026984127,26.64962706340034 +2019-07-12 06:30:00,25.0,0.028042328,26.651319748430858 +2019-07-12 06:45:00,25.0,0.025396825,26.653012221064806 +2019-07-12 07:00:00,25.0,0.022222222,26.654704481084497 +2019-07-12 07:15:00,25.0,0.020634921,26.656396528272268 +2019-07-12 07:30:00,25.0,0.02010582,26.658088362410485 +2019-07-12 07:45:00,25.0,0.019047619,26.659779983281545 +2019-07-12 08:00:00,25.0,0.018518519,26.66147139066786 +2019-07-12 08:15:00,25.0,0.017460317,26.663162584351884 +2019-07-12 08:30:00,25.0,0.016402116,26.664853564116086 +2019-07-12 08:45:00,25.0,0.015873016,26.66654432974297 +2019-07-12 09:00:00,25.0,0.015343915,26.668234881015067 +2019-07-12 09:15:00,25.0,0.014814815,26.669925217714933 +2019-07-12 09:30:00,25.0,0.015873016,26.67161533962516 +2019-07-12 09:45:00,25.0,0.014814815,26.673305246528347 +2019-07-12 10:00:00,25.0,0.012169312,26.67499493820715 +2019-07-12 10:15:00,25.0,0.011640212,26.676684414444217 +2019-07-12 10:30:00,25.0,0.010582011,26.67837367502226 +2019-07-12 10:45:00,25.0,0.010582011,26.680062719724006 +2019-07-12 11:00:00,25.0,0.01005291,26.681751548332187 +2019-07-12 11:15:00,25.0,0.01005291,26.6834401606296 +2019-07-12 11:30:00,25.0,0.01005291,26.685128556399043 +2019-07-12 11:45:00,25.0,0.011111111,26.686816735423353 +2019-07-12 12:00:00,25.0,0.010582011,26.68850469748539 +2019-07-12 12:15:00,25.0,0.012169312,26.690192442368044 +2019-07-12 12:30:00,25.0,0.013227513,26.69187996985424 +2019-07-12 12:45:00,25.0,0.014285714,26.693567279726917 +2019-07-12 13:00:00,25.0,0.015343915,26.695254371769057 +2019-07-12 13:15:00,25.0,0.015873016,26.696941245763654 +2019-07-12 13:30:00,25.0,0.019047619,26.698627901493744 +2019-07-12 13:45:00,25.0,0.023809524,26.70031433874238 +2019-07-12 14:00:00,25.0,0.028571429,26.70200055729265 +2019-07-12 14:15:00,25.0,0.033862434,26.70368655692768 +2019-07-12 14:30:00,25.0,0.045502646,26.705372337430592 +2019-07-12 14:45:00,25.0,0.051851852,26.707057898584576 +2019-07-12 15:00:00,25.0,0.059259259,26.70874324017282 +2019-07-12 15:15:00,25.0,0.069312169,26.710428361978558 +2019-07-12 15:30:00,25.0,0.077248677,26.71211326378504 +2019-07-12 15:45:00,25.0,0.084656085,26.713797945375553 +2019-07-12 16:00:00,25.0,0.084656085,26.71548240653341 +2019-07-12 16:15:00,25.0,0.089417989,26.717166647041953 +2019-07-12 16:30:00,25.0,0.093650794,26.71885066668455 +2019-07-12 16:45:00,25.0,0.101587302,26.72053446524459 +2019-07-12 17:00:00,25.0,0.105291005,26.72221804250551 +2019-07-12 17:15:00,25.0,0.104761905,26.723901398250764 +2019-07-12 17:30:00,25.0,0.106878307,26.725584532263827 +2019-07-12 17:45:00,25.0,0.102116402,26.72726744432822 +2019-07-12 18:00:00,25.0,0.101587302,26.728950134227475 +2019-07-12 18:15:00,25.0,0.107407407,26.730632601745167 +2019-07-12 18:30:00,25.0,0.104232804,26.732314846664885 +2019-07-12 18:45:00,25.0,0.093121693,26.733996868770262 +2019-07-12 19:00:00,25.0,0.092063492,26.73567866784495 +2019-07-12 19:15:00,25.0,0.095767196,26.73736024367263 +2019-07-12 19:30:00,25.0,0.092063492,26.73904159603702 +2019-07-12 19:45:00,25.0,0.087830688,26.740722724721852 +2019-07-12 20:00:00,25.0,0.083597884,26.742403629510907 +2019-07-12 20:15:00,25.0,0.08042328,26.74408431018797 +2019-07-12 20:30:00,25.0,0.086243386,26.74576476653687 +2019-07-12 20:45:00,25.0,0.09047619,26.747444998341475 +2019-07-12 21:00:00,25.0,0.1,26.749125005385654 +2019-07-12 21:15:00,25.0,0.105291005,26.750804787453337 +2019-07-12 21:30:00,25.0,0.103174603,26.752484344328447 +2019-07-12 21:45:00,25.0,0.105820106,26.754163675794977 +2019-07-12 22:00:00,25.0,0.107936508,26.755842781636908 +2019-07-12 22:15:00,25.0,0.113756614,26.75752166163828 +2019-07-12 22:30:00,25.0,0.12962963,26.75920031558315 +2019-07-12 22:45:00,25.0,0.144973545,26.760878743255606 +2019-07-12 23:00:00,25.0,0.156613757,26.762556944439766 +2019-07-12 23:15:00,25.0,0.164021164,26.764234918919772 +2019-07-12 23:30:00,25.0,0.167195767,26.765912666479803 +2019-07-12 23:45:00,25.0,0.166137566,26.76759018690406 +2019-07-13 00:00:00,25.0,0.16984127,26.769267479976772 +2019-07-13 00:15:00,25.0,0.173544974,26.770944545482216 +2019-07-13 00:30:00,25.0,0.174603175,26.77262138320467 +2019-07-13 00:45:00,25.0,0.176190476,26.774297992928464 +2019-07-13 01:00:00,25.0,0.183597884,26.77597437443794 +2019-07-13 01:15:00,25.0,0.18994709,26.777650527517487 +2019-07-13 01:30:00,25.0,0.196825397,26.77932645195151 +2019-07-13 01:45:00,25.0,0.204232804,26.781002147524447 +2019-07-13 02:00:00,25.0,0.206878307,26.78267761402077 +2019-07-13 02:15:00,25.0,0.201058201,26.78435285122497 +2019-07-13 02:30:00,25.0,0.195767196,26.78602785892158 +2019-07-13 02:45:00,25.0,0.197354497,26.787702636895155 +2019-07-13 03:00:00,25.0,0.211111111,26.789377184930277 +2019-07-13 03:15:00,25.0,0.221693122,26.79105150281157 +2019-07-13 03:30:00,25.0,0.234391534,26.792725590323673 +2019-07-13 03:45:00,25.0,0.238095238,26.794399447251266 +2019-07-13 04:00:00,25.0,0.252380952,26.796073073379045 +2019-07-13 04:15:00,25.0,0.265608466,26.797746468491756 +2019-07-13 04:30:00,25.0,0.266137566,26.79941963237415 +2019-07-13 04:45:00,25.0,0.277248677,26.801092564811032 +2019-07-13 05:00:00,25.0,0.282539683,26.802765265587222 +2019-07-13 05:15:00,25.0,0.273015873,26.80443773448757 +2019-07-13 05:30:00,25.0,0.265079365,26.806109971296966 +2019-07-13 05:45:00,25.0,0.253439153,26.807781975800314 +2019-07-13 06:00:00,25.0,0.255555556,26.809453747782566 +2019-07-13 06:15:00,25.0,0.25978836,26.811125287028688 +2019-07-13 06:30:00,25.0,0.267724868,26.812796593323682 +2019-07-13 06:45:00,25.0,0.260846561,26.81446766645259 +2019-07-13 07:00:00,25.0,0.244444444,26.816138506200467 +2019-07-13 07:15:00,25.0,0.233862434,26.817809112352407 +2019-07-13 07:30:00,25.0,0.221693122,26.819479484693534 +2019-07-13 07:45:00,25.0,0.215873016,26.821149623009 +2019-07-13 08:00:00,25.0,0.216402116,26.822819527083986 +2019-07-13 08:15:00,25.0,0.226455026,26.82448919670371 +2019-07-13 08:30:00,25.0,0.219047619,26.82615863165341 +2019-07-13 08:45:00,25.0,0.213227513,26.827827831718363 +2019-07-13 09:00:00,25.0,0.21957672,26.829496796683873 +2019-07-13 09:15:00,25.0,0.20952381,26.83116552633527 +2019-07-13 09:30:00,25.0,0.193650794,26.832834020457923 +2019-07-13 09:45:00,25.0,0.188888889,26.83450227883722 +2019-07-13 10:00:00,25.0,0.194179894,26.836170301258587 +2019-07-13 10:15:00,25.0,0.188359788,26.83783808750749 +2019-07-13 10:30:00,25.0,0.185185185,26.8395056373694 +2019-07-13 10:45:00,25.0,0.182010582,26.841172950629844 +2019-07-13 11:00:00,25.0,0.175132275,26.84284002707436 +2019-07-13 11:15:00,25.0,0.161904762,26.844506866488526 +2019-07-13 11:30:00,25.0,0.138624339,26.846173468657955 +2019-07-13 11:45:00,25.0,0.125925926,26.84783983336828 +2019-07-13 12:00:00,25.0,0.117460317,26.84950596040517 +2019-07-13 12:15:00,25.0,0.111111111,26.851171849554326 +2019-07-13 12:30:00,25.0,0.104232804,26.852837500601474 +2019-07-13 12:45:00,25.0,0.102645503,26.854502913332375 +2019-07-13 13:00:00,25.0,0.103174603,26.856168087532822 +2019-07-13 13:15:00,25.0,0.105820106,26.857833022988636 +2019-07-13 13:30:00,25.0,0.104232804,26.859497719485667 +2019-07-13 13:45:00,25.0,0.11005291,26.861162176809803 +2019-07-13 14:00:00,25.0,0.121693122,26.86282639474695 +2019-07-13 14:15:00,25.0,0.131216931,26.864490373083058 +2019-07-13 14:30:00,25.0,0.15026455,26.866154111604096 +2019-07-13 14:45:00,25.0,0.171957672,26.86781761009608 +2019-07-13 15:00:00,25.0,0.16984127,26.86948086834504 +2019-07-13 15:15:00,25.0,0.176190476,26.871143886137045 +2019-07-13 15:30:00,25.0,0.184656085,26.872806663258196 +2019-07-13 15:45:00,25.0,0.195238095,26.874469199494616 +2019-07-13 16:00:00,25.0,0.208994709,26.876131494632478 +2019-07-13 16:15:00,25.0,0.219047619,26.87779354845796 +2019-07-13 16:30:00,25.0,0.232804233,26.87945536075729 +2019-07-13 16:45:00,25.0,0.236507937,26.881116931316733 +2019-07-13 17:00:00,25.0,0.243386243,26.882778259922556 +2019-07-13 17:15:00,25.0,0.255555556,26.884439346361088 +2019-07-13 17:30:00,25.0,0.257142857,26.886100190418667 +2019-07-13 17:45:00,25.0,0.258730159,26.88776079188168 +2019-07-13 18:00:00,25.0,0.26984127,26.889421150536528 +2019-07-13 18:15:00,25.0,0.299470899,26.891081266169657 +2019-07-13 18:30:00,25.0,0.314814815,26.89274113856754 +2019-07-13 18:45:00,25.0,0.299470899,26.89440076751668 +2019-07-13 19:00:00,25.0,0.314814815,26.896060152803607 +2019-07-13 19:15:00,25.0,0.321164021,26.89771929421489 +2019-07-13 19:30:00,25.0,0.33015873,26.89937819153713 +2019-07-13 19:45:00,25.0,0.310582011,26.901036844556952 +2019-07-13 20:00:00,25.0,0.294179894,26.902695253061015 +2019-07-13 20:15:00,25.0,0.295238095,26.904353416836017 +2019-07-13 20:30:00,25.0,0.294179894,26.90601133566867 +2019-07-13 20:45:00,25.0,0.27989418,26.907669009345742 +2019-07-13 21:00:00,25.0,0.264021164,26.909326437654006 +2019-07-13 21:15:00,25.0,0.284656085,26.91098362038029 +2019-07-13 21:30:00,25.0,0.28042328,26.912640557311438 +2019-07-13 21:45:00,25.0,0.275661376,26.914297248234334 +2019-07-13 22:00:00,25.0,0.278835979,26.915953692935886 +2019-07-13 22:15:00,25.0,0.286772487,26.917609891203043 +2019-07-13 22:30:00,25.0,0.288359788,26.91926584282278 +2019-07-13 22:45:00,25.0,0.273015873,26.920921547582104 +2019-07-13 23:00:00,25.0,0.280952381,26.922577005268053 +2019-07-13 23:15:00,25.0,0.285185185,26.9242322156677 +2019-07-13 23:30:00,25.0,0.277777778,26.925887178568146 +2019-07-13 23:45:00,25.0,0.275132275,26.927541893756533 +2019-07-14 00:00:00,25.0,0.282010582,26.929196361020015 +2019-07-14 00:15:00,25.0,0.283597884,26.930850580145805 +2019-07-14 00:30:00,25.0,0.279365079,26.932504550921117 +2019-07-14 00:45:00,25.0,0.277248677,26.934158273133228 +2019-07-14 01:00:00,25.0,0.281481481,26.935811746569428 +2019-07-14 01:15:00,25.0,0.292592593,26.93746497101704 +2019-07-14 01:30:00,25.0,0.303703704,26.939117946263426 +2019-07-14 01:45:00,25.0,0.301058201,26.940770672095972 +2019-07-14 02:00:00,25.0,0.298412698,26.94242314830211 +2019-07-14 02:15:00,25.0,0.29047619,26.944075374669286 +2019-07-14 02:30:00,25.0,0.29047619,26.945727350984985 +2019-07-14 02:45:00,25.0,0.291005291,26.947379077036736 +2019-07-14 03:00:00,25.0,0.288888889,26.949030552612083 +2019-07-14 03:15:00,25.0,0.294179894,26.950681777498612 +2019-07-14 03:30:00,25.0,0.295767196,26.952332751483937 +2019-07-14 03:45:00,25.0,0.300529101,26.95398347435571 +2019-07-14 04:00:00,25.0,0.296296296,26.955633945901603 +2019-07-14 04:15:00,25.0,0.293650794,26.957284165909332 +2019-07-14 04:30:00,25.0,0.298941799,26.958934134166647 +2019-07-14 04:45:00,25.0,0.286772487,26.96058385046132 +2019-07-14 05:00:00,25.0,0.294179894,26.962233314581162 +2019-07-14 05:15:00,25.0,0.293650794,26.963882526314016 +2019-07-14 05:30:00,25.0,0.277248677,26.96553148544775 +2019-07-14 05:45:00,25.0,0.272486772,26.967180191770286 +2019-07-14 06:00:00,25.0,0.274074074,26.96882864506955 +2019-07-14 06:15:00,25.0,0.270899471,26.970476845133522 +2019-07-14 06:30:00,25.0,0.272486772,26.972124791750197 +2019-07-14 06:45:00,25.0,0.27037037,26.973772484707624 +2019-07-14 07:00:00,25.0,0.249206349,26.975419923793865 +2019-07-14 07:15:00,25.0,0.243915344,26.977067108797023 +2019-07-14 07:30:00,25.0,0.255026455,26.978714039505242 +2019-07-14 07:45:00,25.0,0.253968254,26.980360715706677 +2019-07-14 08:00:00,25.0,0.243915344,26.982007137189537 +2019-07-14 08:15:00,25.0,0.247619048,26.983653303742052 +2019-07-14 08:30:00,25.0,0.244973545,26.985299215152494 +2019-07-14 08:45:00,25.0,0.24021164,26.986944871209154 +2019-07-14 09:00:00,25.0,0.233333333,26.988590271700367 +2019-07-14 09:15:00,25.0,0.216402116,26.990235416414503 +2019-07-14 09:30:00,25.0,0.20952381,26.99188030513995 +2019-07-14 09:45:00,25.0,0.200529101,26.993524937665146 +2019-07-14 10:00:00,25.0,0.187830688,26.99516931377855 +2019-07-14 10:15:00,25.0,0.19047619,26.996813433268667 +2019-07-14 10:30:00,25.0,0.19047619,26.998457295924013 +2019-07-14 10:45:00,25.0,0.19047619,27.00010090153316 +2019-07-14 11:00:00,25.0,0.184656085,27.001744249884705 +2019-07-14 11:15:00,25.0,0.176190476,27.00338734076727 +2019-07-14 11:30:00,25.0,0.174603175,27.005030173969523 +2019-07-14 11:45:00,25.0,0.174074074,27.006672749280153 +2019-07-14 12:00:00,25.0,0.167195767,27.008315066487896 +2019-07-14 12:15:00,25.0,0.163492063,27.009957125381504 +2019-07-14 12:30:00,25.0,0.165079365,27.011598925749773 +2019-07-14 12:45:00,25.0,0.164550265,27.013240467381543 +2019-07-14 13:00:00,25.0,0.168253968,27.014881750065662 +2019-07-14 13:15:00,25.0,0.174603175,27.016522773591028 +2019-07-14 13:30:00,25.0,0.178835979,27.01816353774657 +2019-07-14 13:45:00,25.0,0.183597884,27.01980404232125 +2019-07-14 14:00:00,25.0,0.185185185,27.02144428710406 +2019-07-14 14:15:00,25.0,0.187830688,27.023084271884024 +2019-07-14 14:30:00,25.0,0.194708995,27.024723996450216 +2019-07-14 14:45:00,25.0,0.196825397,27.026363460591718 +2019-07-14 15:00:00,25.0,0.197883598,27.02800266409767 +2019-07-14 15:15:00,25.0,0.195767196,27.02964160675722 +2019-07-14 15:30:00,25.0,0.199470899,27.03128028835957 +2019-07-14 15:45:00,25.0,0.202116402,27.03291870869396 +2019-07-14 16:00:00,25.0,0.21005291,27.034556867549632 +2019-07-14 16:15:00,25.0,0.221164021,27.036194764715898 +2019-07-14 16:30:00,25.0,0.237037037,27.03783239998208 +2019-07-14 16:45:00,25.0,0.242857143,27.039469773137547 +2019-07-14 17:00:00,25.0,0.258201058,27.041106883971686 +2019-07-14 17:15:00,25.0,0.254497354,27.04274373227394 +2019-07-14 17:30:00,25.0,0.257671958,27.04438031783377 +2019-07-14 17:45:00,25.0,0.270899471,27.046016640440673 +2019-07-14 18:00:00,25.0,0.286243386,27.047652699884182 +2019-07-14 18:15:00,25.0,0.288359788,27.049288495953864 +2019-07-14 18:30:00,25.0,0.285185185,27.05092402843932 +2019-07-14 18:45:00,25.0,0.288359788,27.052559297130177 +2019-07-14 19:00:00,25.0,0.294708995,27.05419430181611 +2019-07-14 19:15:00,25.0,0.31005291,27.05582904228682 +2019-07-14 19:30:00,25.0,0.311111111,27.057463518332042 +2019-07-14 19:45:00,25.0,0.296825397,27.05909772974155 +2019-07-14 20:00:00,25.0,0.285714286,27.06073167630514 +2019-07-14 20:15:00,25.0,0.3,27.062365357812656 +2019-07-14 20:30:00,25.0,0.294179894,27.063998774053964 +2019-07-14 20:45:00,25.0,0.288888889,27.065631924818977 +2019-07-14 21:00:00,25.0,0.288359788,27.067264809897637 +2019-07-14 21:15:00,25.0,0.287301587,27.068897429079907 +2019-07-14 21:30:00,25.0,0.285714286,27.07052978215581 +2019-07-14 21:45:00,25.0,0.278835979,27.072161868915376 +2019-07-14 22:00:00,25.0,0.284656085,27.073793689148694 +2019-07-14 22:15:00,25.0,0.266137566,27.075425242645863 +2019-07-14 22:30:00,25.0,0.26031746,27.077056529197037 +2019-07-14 22:45:00,25.0,0.248677249,27.0786875485924 +2019-07-14 23:00:00,25.0,0.234391534,27.080318300622157 +2019-07-14 23:15:00,25.0,0.232804233,27.081948785076563 +2019-07-14 23:30:00,25.0,0.220634921,27.083579001745896 +2019-07-14 23:45:00,25.0,0.222751323,27.08520895042048 +2019-07-15 00:00:00,25.0,0.227513228,27.086838630890668 +2019-07-15 00:15:00,25.0,0.213756614,27.088468042946836 +2019-07-15 00:30:00,25.0,0.204232804,27.090097186379417 +2019-07-15 00:45:00,25.0,0.2,27.09172606097886 +2019-07-15 01:00:00,25.0,0.201058201,27.09335466653566 +2019-07-15 01:15:00,25.0,0.203174603,27.094983002840337 +2019-07-15 01:30:00,25.0,0.201058201,27.096611069683455 +2019-07-15 01:45:00,25.0,0.205291005,27.098238866855606 +2019-07-15 02:00:00,25.0,0.213227513,27.09986639414742 +2019-07-15 02:15:00,25.0,0.226984127,27.10149365134956 +2019-07-15 02:30:00,25.0,0.237037037,27.103120638252722 +2019-07-15 02:45:00,25.0,0.243915344,27.104747354647646 +2019-07-15 03:00:00,25.0,0.257142857,27.10637380032509 +2019-07-15 03:15:00,25.0,0.256613757,27.107999975075867 +2019-07-15 03:30:00,25.0,0.272486772,27.10962587869081 +2019-07-15 03:45:00,25.0,0.272486772,27.11125151096079 +2019-07-15 04:00:00,25.0,0.274074074,27.11287687167672 +2019-07-15 04:15:00,25.0,0.274603175,27.114501960629532 +2019-07-15 04:30:00,25.0,0.26031746,27.116126777610216 +2019-07-15 04:45:00,25.0,0.266137566,27.11775132240977 +2019-07-15 05:00:00,25.0,0.278306878,27.119375594819253 +2019-07-15 05:15:00,25.0,0.285714286,27.120999594629748 +2019-07-15 05:30:00,25.0,0.274603175,27.12262332163236 +2019-07-15 05:45:00,25.0,0.299470899,27.124246775618257 +2019-07-15 06:00:00,25.0,0.28042328,27.125869956378615 +2019-07-15 06:15:00,25.0,0.292063492,27.127492863704664 +2019-07-15 06:30:00,25.0,0.293121693,27.129115497387655 +2019-07-15 06:45:00,25.0,0.301587302,27.130737857218886 +2019-07-15 07:00:00,25.0,0.30952381,27.132359942989684 +2019-07-15 07:15:00,25.0,0.305820106,27.133981754491412 +2019-07-15 07:30:00,25.0,0.321164021,27.135603291515473 +2019-07-15 07:45:00,25.0,0.313756614,27.137224553853294 +2019-07-15 08:00:00,25.0,0.307407407,27.13884554129635 +2019-07-15 08:15:00,25.0,0.314814815,27.14046625363614 +2019-07-15 08:30:00,25.0,0.325925926,27.14208669066421 +2019-07-15 08:45:00,25.0,0.327513228,27.14370685217214 +2019-07-15 09:00:00,25.0,0.311640212,27.145326737951528 +2019-07-15 09:15:00,25.0,0.331746032,27.146946347794035 +2019-07-15 09:30:00,25.0,0.324338624,27.148565681491327 +2019-07-15 09:45:00,25.0,0.313756614,27.150184738835133 +2019-07-15 10:00:00,25.0,0.331746032,27.151803519617204 +2019-07-15 10:15:00,25.0,0.337566138,27.15342202362933 +2019-07-15 10:30:00,25.0,0.305291005,27.15504025066333 +2019-07-15 10:45:00,25.0,0.267724868,27.156658200511067 +2019-07-15 11:00:00,25.0,0.274603175,27.15827587296444 +2019-07-15 11:15:00,25.0,0.28042328,27.15989326781537 +2019-07-15 11:30:00,25.0,0.288888889,27.161510384855834 +2019-07-15 11:45:00,25.0,0.301058201,27.163127223877837 +2019-07-15 12:00:00,25.0,0.305820106,27.164743784673405 +2019-07-15 12:15:00,25.0,0.303174603,27.166360067034624 +2019-07-15 12:30:00,25.0,0.268253968,27.167976070753593 +2019-07-15 12:45:00,25.0,0.271428571,27.16959179562247 +2019-07-15 13:00:00,25.0,0.281481481,27.171207241433425 +2019-07-15 13:15:00,25.0,0.296296296,27.172822407978686 +2019-07-15 13:30:00,25.0,0.306349206,27.1744372950505 +2019-07-15 13:45:00,25.0,0.305291005,27.176051902441156 +2019-07-15 14:00:00,25.0,0.305291005,27.177666229942986 +2019-07-15 14:15:00,25.0,0.305291005,27.179280277348344 +2019-07-15 14:30:00,25.0,0.323280423,27.180894044449634 +2019-07-15 14:45:00,25.0,0.33968254,27.182507531039285 +2019-07-15 15:00:00,25.0,0.350793651,27.184120736909765 +2019-07-15 15:15:00,25.0,0.355555556,27.185733661853586 +2019-07-15 15:30:00,25.0,0.346031746,27.187346305663283 +2019-07-15 15:45:00,25.0,0.354497354,27.18895866813144 +2019-07-15 16:00:00,25.0,0.347619048,27.190570749050668 +2019-07-15 16:15:00,25.0,0.353439153,27.192182548213623 +2019-07-15 16:30:00,25.0,0.348148148,27.19379406541298 +2019-07-15 16:45:00,25.0,0.337566138,27.195405300441468 +2019-07-15 17:00:00,25.0,0.348677249,27.197016253091853 +2019-07-15 17:15:00,25.0,0.362962963,27.198626923156922 +2019-07-15 17:30:00,25.0,0.356613757,27.20023731042951 +2019-07-15 17:45:00,25.0,0.353439153,27.20184741470248 +2019-07-15 18:00:00,25.0,0.373015873,27.203457235768745 +2019-07-15 18:15:00,25.0,0.369312169,27.205066773421244 +2019-07-15 18:30:00,25.0,0.378306878,27.20667602745295 +2019-07-15 18:45:00,25.0,0.392592593,27.208284997656882 +2019-07-15 19:00:00,25.0,0.415343915,27.20989368382609 +2019-07-15 19:15:00,25.0,0.414814815,27.211502085753658 +2019-07-15 19:30:00,25.0,0.413227513,27.213110203232706 +2019-07-15 19:45:00,25.0,0.425396825,27.214718036056404 +2019-07-15 20:00:00,25.0,0.421693122,27.216325584017945 +2019-07-15 20:15:00,25.0,0.402645503,27.21793284691056 +2019-07-15 20:30:00,25.0,0.405291005,27.219539824527523 +2019-07-15 20:45:00,25.0,0.431216931,27.221146516662134 +2019-07-15 21:00:00,25.0,0.46984127,27.22275292310775 +2019-07-15 21:15:00,25.0,0.458201058,27.22435904365773 +2019-07-15 21:30:00,25.0,0.443386243,27.22596487810551 +2019-07-15 21:45:00,25.0,0.432275132,27.22757042624454 +2019-07-15 22:00:00,25.0,0.419047619,27.229175687868306 +2019-07-15 22:15:00,25.0,0.394708995,27.23078066277034 +2019-07-15 22:30:00,25.0,0.384126984,27.232385350744195 +2019-07-15 22:45:00,25.0,0.387830688,27.233989751583493 +2019-07-15 23:00:00,25.0,0.37989418,27.235593865081853 +2019-07-15 23:15:00,25.0,0.367195767,27.237197691032957 +2019-07-15 23:30:00,25.0,0.356084656,27.238801229230525 +2019-07-15 23:45:00,25.0,0.342857143,27.240404479468292 +2019-07-16 00:00:00,25.0,0.366666667,27.242007441540057 +2019-07-16 00:15:00,25.0,0.378835979,27.243610115239633 +2019-07-16 00:30:00,25.0,0.375661376,27.24521250036089 +2019-07-16 00:45:00,25.0,0.387301587,27.246814596697714 +2019-07-16 01:00:00,25.0,0.386772487,27.24841640404405 +2019-07-16 01:15:00,25.0,0.389417989,27.25001792219387 +2019-07-16 01:30:00,25.0,0.396296296,27.25161915094117 +2019-07-16 01:45:00,25.0,0.398941799,27.253220090080013 +2019-07-16 02:00:00,25.0,0.410582011,27.254820739404472 +2019-07-16 02:15:00,25.0,0.414285714,27.256421098708675 +2019-07-16 02:30:00,25.0,0.410582011,27.258021167786772 +2019-07-16 02:45:00,25.0,0.421693122,27.25962094643296 +2019-07-16 03:00:00,25.0,0.435449735,27.261220434441476 +2019-07-16 03:15:00,25.0,0.412698413,27.26281963160659 +2019-07-16 03:30:00,25.0,0.407936508,27.26441853772261 +2019-07-16 03:45:00,25.0,0.414814815,27.26601715258387 +2019-07-16 04:00:00,25.0,0.423809524,27.267615475984766 +2019-07-16 04:15:00,25.0,0.423280423,27.269213507719716 +2019-07-16 04:30:00,25.0,0.423280423,27.27081124758317 +2019-07-16 04:45:00,25.0,0.42010582,27.27240869536963 +2019-07-16 05:00:00,25.0,0.420634921,27.274005850873625 +2019-07-16 05:15:00,25.0,0.394708995,27.27560271388973 +2019-07-16 05:30:00,25.0,0.34973545,27.277199284212543 +2019-07-16 05:45:00,25.0,0.357142857,27.278795561636716 +2019-07-16 06:00:00,25.0,0.355555556,27.280391545956938 +2019-07-16 06:15:00,25.0,0.356084656,27.281987236967918 +2019-07-16 06:30:00,25.0,0.359259259,27.283582634464423 +2019-07-16 06:45:00,25.0,0.367724868,27.285177738241245 +2019-07-16 07:00:00,25.0,0.373544974,27.286772548093218 +2019-07-16 07:15:00,25.0,0.387301587,27.288367063815215 +2019-07-16 07:30:00,25.0,0.387301587,27.289961285202146 +2019-07-16 07:45:00,25.0,0.392063492,27.291555212048962 +2019-07-16 08:00:00,25.0,0.38994709,27.293148844150643 +2019-07-16 08:15:00,25.0,0.378306878,27.294742181302215 +2019-07-16 08:30:00,25.0,0.371428571,27.296335223298733 +2019-07-16 08:45:00,25.0,0.368253968,27.29792796993531 +2019-07-16 09:00:00,25.0,0.353439153,27.299520421007067 +2019-07-16 09:15:00,25.0,0.343386243,27.30111257630919 +2019-07-16 09:30:00,25.0,0.339153439,27.302704435636894 +2019-07-16 09:45:00,25.0,0.320634921,27.30429599878542 +2019-07-16 10:00:00,25.0,0.305291005,27.30588726555007 +2019-07-16 10:15:00,25.0,0.298941799,27.30747823572616 +2019-07-16 10:30:00,25.0,0.292063492,27.30906890910906 +2019-07-16 10:45:00,25.0,0.288888889,27.310659285494175 +2019-07-16 11:00:00,25.0,0.282010582,27.312249364676948 +2019-07-16 11:15:00,25.0,0.269312169,27.31383914645286 +2019-07-16 11:30:00,25.0,0.261904762,27.315428630617422 +2019-07-16 11:45:00,25.0,0.271957672,27.317017816966203 +2019-07-16 12:00:00,25.0,0.271428571,27.318606705294787 +2019-07-16 12:15:00,25.0,0.276190476,27.320195295398815 +2019-07-16 12:30:00,25.0,0.275132275,27.321783587073956 +2019-07-16 12:45:00,25.0,0.267724868,27.323371580115918 +2019-07-16 13:00:00,25.0,0.255026455,27.324959274320456 +2019-07-16 13:15:00,25.0,0.248677249,27.32654666948335 +2019-07-16 13:30:00,25.0,0.241798942,27.32813376540043 +2019-07-16 13:45:00,25.0,0.238095238,27.329720561867557 +2019-07-16 14:00:00,25.0,0.224867725,27.331307058680633 +2019-07-16 14:15:00,25.0,0.217989418,27.332893255635607 +2019-07-16 14:30:00,25.0,0.211111111,27.33447915252845 +2019-07-16 14:45:00,25.0,0.198412698,27.336064749155184 +2019-07-16 15:00:00,25.0,0.198941799,27.337650045311864 +2019-07-16 15:15:00,25.0,0.196825397,27.33923504079459 +2019-07-16 15:30:00,25.0,0.194708995,27.34081973539949 +2019-07-16 15:45:00,25.0,0.196825397,27.342404128922738 +2019-07-16 16:00:00,25.0,0.197883598,27.343988221160554 +2019-07-16 16:15:00,25.0,0.202645503,27.345572011909177 +2019-07-16 16:30:00,25.0,0.2,27.347155500964902 +2019-07-16 16:45:00,25.0,0.18994709,27.348738688124058 +2019-07-16 17:00:00,25.0,0.191534392,27.35032157318301 +2019-07-16 17:15:00,25.0,0.19047619,27.351904155938158 +2019-07-16 17:30:00,25.0,0.182539683,27.353486436185953 +2019-07-16 17:45:00,25.0,0.181481481,27.355068413722883 +2019-07-16 18:00:00,25.0,0.187830688,27.35665008834546 +2019-07-16 18:15:00,25.0,0.19047619,27.358231459850256 +2019-07-16 18:30:00,25.0,0.195238095,27.35981252803386 +2019-07-16 18:45:00,25.0,0.195238095,27.361393292692924 +2019-07-16 19:00:00,25.0,0.179365079,27.36297375362411 +2019-07-16 19:15:00,25.0,0.174074074,27.36455391062415 +2019-07-16 19:30:00,25.0,0.177248677,27.366133763489795 +2019-07-16 19:45:00,25.0,0.179365079,27.36771331201784 +2019-07-16 20:00:00,25.0,0.180952381,27.369292556005124 +2019-07-16 20:15:00,25.0,0.174603175,27.37087149524851 +2019-07-16 20:30:00,25.0,0.16984127,27.372450129544927 +2019-07-16 20:45:00,25.0,0.171428571,27.374028458691317 +2019-07-16 21:00:00,25.0,0.165608466,27.37560648248467 +2019-07-16 21:15:00,25.0,0.165079365,27.377184200722027 +2019-07-16 21:30:00,25.0,0.161904762,27.37876161320045 +2019-07-16 21:45:00,25.0,0.156613757,27.380338719717052 +2019-07-16 22:00:00,25.0,0.153968254,27.38191552006898 +2019-07-16 22:15:00,25.0,0.153439153,27.38349201405342 +2019-07-16 22:30:00,25.0,0.157142857,27.385068201467607 +2019-07-16 22:45:00,25.0,0.154497354,27.386644082108802 +2019-07-16 23:00:00,25.0,0.146560847,27.388219655774314 +2019-07-16 23:15:00,25.0,0.137566138,27.389794922261487 +2019-07-16 23:30:00,25.0,0.127513228,27.39136988136771 +2019-07-16 23:45:00,25.0,0.112698413,27.392944532890404 +2019-07-17 00:00:00,25.0,0.101058201,27.394518876627036 +2019-07-17 00:15:00,25.0,0.085714286,27.39609291237511 +2019-07-17 00:30:00,25.0,0.078835979,27.39766663993217 +2019-07-17 00:45:00,25.0,0.073015873,27.399240059095803 +2019-07-17 01:00:00,25.0,0.067195767,27.400813169663625 +2019-07-17 01:15:00,25.0,0.064550265,27.402385971433304 +2019-07-17 01:30:00,25.0,0.065608466,27.40395846420254 +2019-07-17 01:45:00,25.0,0.068253968,27.405530647769076 +2019-07-17 02:00:00,25.0,0.062962963,27.4071025219307 +2019-07-17 02:15:00,25.0,0.058730159,27.40867408648522 +2019-07-17 02:30:00,25.0,0.052380952,27.410245341230514 +2019-07-17 02:45:00,25.0,0.048677249,27.41181628596447 +2019-07-17 03:00:00,25.0,0.044444444,27.413386920485042 +2019-07-17 03:15:00,25.0,0.04021164,27.414957244590198 +2019-07-17 03:30:00,25.0,0.037037037,27.416527258077966 +2019-07-17 03:45:00,25.0,0.032804233,27.41809696074641 +2019-07-17 04:00:00,25.0,0.026984127,27.419666352393627 +2019-07-17 04:15:00,25.0,0.024867725,27.421235432817763 +2019-07-17 04:30:00,25.0,0.022222222,27.422804201816994 +2019-07-17 04:45:00,25.0,0.015873016,27.424372659189544 +2019-07-17 05:00:00,25.0,0.013756614,27.42594080473367 +2019-07-17 05:15:00,25.0,0.013756614,27.427508638247676 +2019-07-17 05:30:00,25.0,0.012698413,27.429076159529913 +2019-07-17 05:45:00,25.0,0.00952381,27.430643368378746 +2019-07-17 06:00:00,25.0,0.00952381,27.432210264592612 +2019-07-17 06:15:00,25.0,0.007407407,27.43377684796996 +2019-07-17 06:30:00,25.0,0.006878307,27.4353431183093 +2019-07-17 06:45:00,25.0,0.006878307,27.43690907540918 +2019-07-17 07:00:00,25.0,0.006878307,27.438474719068168 +2019-07-17 07:15:00,25.0,0.005820106,27.440040049084903 +2019-07-17 07:30:00,25.0,0.005820106,27.441605065258038 +2019-07-17 07:45:00,25.0,0.004761905,27.443169767386284 +2019-07-17 08:00:00,25.0,0.003174603,27.444734155268378 +2019-07-17 08:15:00,25.0,0.002116402,27.446298228703107 +2019-07-17 08:30:00,25.0,0.001587302,27.447861987489304 +2019-07-17 08:45:00,25.0,0.001587302,27.449425431425826 +2019-07-17 09:00:00,25.0,0.001587302,27.450988560311583 +2019-07-17 09:15:00,25.0,0.002645503,27.452551373945518 +2019-07-17 09:30:00,25.0,0.002116402,27.454113872126626 +2019-07-17 09:45:00,25.0,0.001587302,27.455676054653924 +2019-07-17 10:00:00,25.0,0.001058201,27.457237921326488 +2019-07-17 10:15:00,25.0,0.001587302,27.45879947194343 +2019-07-17 10:30:00,25.0,0.000529101,27.460360706303888 +2019-07-17 10:45:00,25.0,0.0,27.461921624207065 +2019-07-17 11:00:00,25.0,0.0,27.463482225452186 +2019-07-17 11:15:00,25.0,0.000529101,27.465042509838526 +2019-07-17 11:30:00,25.0,0.000529101,27.466602477165388 +2019-07-17 11:45:00,25.0,0.0,27.468162127232134 +2019-07-17 12:00:00,25.0,0.0,27.469721459838162 +2019-07-17 12:15:00,25.0,0.000529101,27.471280474782898 +2019-07-17 12:30:00,25.0,0.0,27.472839171865825 +2019-07-17 12:45:00,25.0,0.000529101,27.474397550886454 +2019-07-17 13:00:00,25.0,0.001587302,27.47595561164435 +2019-07-17 13:15:00,25.0,0.001587302,27.4775133539391 +2019-07-17 13:30:00,25.0,0.001587302,27.47907077757035 +2019-07-17 13:45:00,25.0,0.002645503,27.480627882337785 +2019-07-17 14:00:00,25.0,0.004232804,27.48218466804112 +2019-07-17 14:15:00,25.0,0.005820106,27.483741134480127 +2019-07-17 14:30:00,25.0,0.007936508,27.485297281454596 +2019-07-17 14:45:00,25.0,0.008465608,27.48685310876438 +2019-07-17 15:00:00,25.0,0.008994709,27.488408616209362 +2019-07-17 15:15:00,25.0,0.008465608,27.489963803589472 +2019-07-17 15:30:00,25.0,0.008994709,27.49151867070468 +2019-07-17 15:45:00,25.0,0.008465608,27.493073217354986 +2019-07-17 16:00:00,25.0,0.01005291,27.494627443340455 +2019-07-17 16:15:00,25.0,0.011111111,27.496181348461164 +2019-07-17 16:30:00,25.0,0.011111111,27.497734932517254 +2019-07-17 16:45:00,25.0,0.010582011,27.4992881953089 +2019-07-17 17:00:00,25.0,0.01005291,27.50084113663631 +2019-07-17 17:15:00,25.0,0.008994709,27.502393756299757 +2019-07-17 17:30:00,25.0,0.008994709,27.503946054099522 +2019-07-17 17:45:00,25.0,0.008994709,27.505498029835955 +2019-07-17 18:00:00,25.0,0.008994709,27.507049683309432 +2019-07-17 18:15:00,25.0,0.008465608,27.50860101432038 +2019-07-17 18:30:00,25.0,0.007936508,27.510152022669267 +2019-07-17 18:45:00,25.0,0.006878307,27.511702708156584 +2019-07-17 19:00:00,25.0,0.005820106,27.513253070582895 +2019-07-17 19:15:00,25.0,0.004761905,27.514803109748776 +2019-07-17 19:30:00,25.0,0.005291005,27.51635282545487 +2019-07-17 19:45:00,25.0,0.005820106,27.517902217501835 +2019-07-17 20:00:00,25.0,0.006349206,27.51945128569039 +2019-07-17 20:15:00,25.0,0.006878307,27.5210000298213 +2019-07-17 20:30:00,25.0,0.006349206,27.522548449695346 +2019-07-17 20:45:00,25.0,0.007936508,27.524096545113377 +2019-07-17 21:00:00,25.0,0.008994709,27.52564431587627 +2019-07-17 21:15:00,25.0,0.01005291,27.527191761784948 +2019-07-17 21:30:00,25.0,0.011111111,27.528738882640376 +2019-07-17 21:45:00,25.0,0.014814815,27.530285678243555 +2019-07-17 22:00:00,25.0,0.016402116,27.531832148395537 +2019-07-17 22:15:00,25.0,0.019047619,27.533378292897414 +2019-07-17 22:30:00,25.0,0.021164021,27.53492411155031 +2019-07-17 22:45:00,25.0,0.024338624,27.536469604155403 +2019-07-17 23:00:00,25.0,0.028571429,27.53801477051391 +2019-07-17 23:15:00,25.0,0.031746032,27.53955961042708 +2019-07-17 23:30:00,25.0,0.032804233,27.54110412369622 +2019-07-17 23:45:00,25.0,0.035978836,27.54264831012267 +2019-07-18 00:00:00,25.0,0.037566138,27.544192169507806 +2019-07-18 00:15:00,25.0,0.039153439,27.545735701653065 +2019-07-18 00:30:00,25.0,0.043386243,27.547278906359907 +2019-07-18 00:45:00,25.0,0.046560847,27.548821783429837 +2019-07-18 01:00:00,25.0,0.05026455,27.550364332664422 +2019-07-18 01:15:00,25.0,0.053968254,27.551906553865237 +2019-07-18 01:30:00,25.0,0.05978836,27.553448446833933 +2019-07-18 01:45:00,25.0,0.064550265,27.55499001137218 +2019-07-18 02:00:00,25.0,0.067195767,27.5565312472817 +2019-07-18 02:15:00,25.0,0.071957672,27.558072154364257 +2019-07-18 02:30:00,25.0,0.076719577,27.55961273242165 +2019-07-18 02:45:00,25.0,0.083068783,27.56115298125574 +2019-07-18 03:00:00,25.0,0.089417989,27.562692900668402 +2019-07-18 03:15:00,25.0,0.098412698,27.564232490461578 +2019-07-18 03:30:00,25.0,0.107936508,27.565771750437236 +2019-07-18 03:45:00,25.0,0.116931217,27.567310680397398 +2019-07-18 04:00:00,25.0,0.130687831,27.568849280144118 +2019-07-18 04:15:00,25.0,0.137037037,27.5703875494795 +2019-07-18 04:30:00,25.0,0.143915344,27.57192548820569 +2019-07-18 04:45:00,25.0,0.154497354,27.57346309612487 +2019-07-18 05:00:00,25.0,0.15978836,27.575000373039277 +2019-07-18 05:15:00,25.0,0.168783069,27.576537318751175 +2019-07-18 05:30:00,25.0,0.177248677,27.578073933062885 +2019-07-18 05:45:00,25.0,0.179365079,27.57961021577676 +2019-07-18 06:00:00,25.0,0.172486772,27.5811461666952 +2019-07-18 06:15:00,25.0,0.161375661,27.582681785620647 +2019-07-18 06:30:00,25.0,0.156613757,27.58421707235559 +2019-07-18 06:45:00,25.0,0.155026455,27.585752026702554 +2019-07-18 07:00:00,25.0,0.153968254,27.587286648464108 +2019-07-18 07:15:00,25.0,0.151851852,27.58882093744287 +2019-07-18 07:30:00,25.0,0.151322751,27.59035489344149 +2019-07-18 07:45:00,25.0,0.153439153,27.59188851626267 +2019-07-18 08:00:00,25.0,0.15026455,27.59342180570916 +2019-07-18 08:15:00,25.0,0.148148148,27.59495476158373 +2019-07-18 08:30:00,25.0,0.149206349,27.59648738368922 +2019-07-18 08:45:00,25.0,0.148677249,27.59801967182849 +2019-07-18 09:00:00,25.0,0.147089947,27.59955162580446 +2019-07-18 09:15:00,25.0,0.151851852,27.601083245420085 +2019-07-18 09:30:00,25.0,0.160846561,27.60261453047837 +2019-07-18 09:45:00,25.0,0.15978836,27.60414548078235 +2019-07-18 10:00:00,25.0,0.164021164,27.60567609613511 +2019-07-18 10:15:00,25.0,0.166666667,27.60720637633979 +2019-07-18 10:30:00,25.0,0.167195767,27.608736321199544 +2019-07-18 10:45:00,25.0,0.17037037,27.6102659305176 +2019-07-18 11:00:00,25.0,0.177248677,27.611795204097216 +2019-07-18 11:15:00,25.0,0.184126984,27.61332414174169 +2019-07-18 11:30:00,25.0,0.192592593,27.614852743254367 +2019-07-18 11:45:00,25.0,0.199470899,27.61638100843863 +2019-07-18 12:00:00,25.0,0.204232804,27.61790893709792 +2019-07-18 12:15:00,25.0,0.207407407,27.6194365290357 +2019-07-18 12:30:00,25.0,0.203174603,27.620963784055494 +2019-07-18 12:45:00,25.0,0.193650794,27.622490701960867 +2019-07-18 13:00:00,25.0,0.183068783,27.624017282555414 +2019-07-18 13:15:00,25.0,0.177248677,27.62554352564279 +2019-07-18 13:30:00,25.0,0.175661376,27.62706943102668 +2019-07-18 13:45:00,25.0,0.166137566,27.628594998510827 +2019-07-18 14:00:00,25.0,0.155555556,27.630120227899 +2019-07-18 14:15:00,25.0,0.152380952,27.63164511899502 +2019-07-18 14:30:00,25.0,0.151322751,27.633169671602765 +2019-07-18 14:45:00,25.0,0.148677249,27.63469388552613 +2019-07-18 15:00:00,25.0,0.143915344,27.636217760569075 +2019-07-18 15:15:00,25.0,0.141269841,27.637741296535587 +2019-07-18 15:30:00,25.0,0.134920635,27.639264493229717 +2019-07-18 15:45:00,25.0,0.143386243,27.640787350455536 +2019-07-18 16:00:00,25.0,0.144444444,27.642309868017175 +2019-07-18 16:15:00,25.0,0.147089947,27.643832045718813 +2019-07-18 16:30:00,25.0,0.148677249,27.64535388336465 +2019-07-18 16:45:00,25.0,0.154497354,27.646875380758956 +2019-07-18 17:00:00,25.0,0.158730159,27.64839653770602 +2019-07-18 17:15:00,25.0,0.141798942,27.6499173540102 +2019-07-18 17:30:00,25.0,0.151851852,27.651437829475874 +2019-07-18 17:45:00,25.0,0.165608466,27.652957963907483 +2019-07-18 18:00:00,25.0,0.152380952,27.6544777571095 +2019-07-18 18:15:00,25.0,0.124338624,27.655997208886447 +2019-07-18 18:30:00,25.0,0.091534392,27.65751631904289 +2019-07-18 18:45:00,25.0,0.070899471,27.65903508738343 +2019-07-18 19:00:00,25.0,0.063492063,27.660553513712728 +2019-07-18 19:15:00,25.0,0.065079365,27.66207159783548 +2019-07-18 19:30:00,25.0,0.064550265,27.66358933955642 +2019-07-18 19:45:00,25.0,0.054497354,27.66510673868034 +2019-07-18 20:00:00,25.0,0.050793651,27.666623795012065 +2019-07-18 20:15:00,25.0,0.051851852,27.668140508356466 +2019-07-18 20:30:00,25.0,0.057142857,27.669656878518463 +2019-07-18 20:45:00,25.0,0.04973545,27.671172905303013 +2019-07-18 21:00:00,25.0,0.04021164,27.67268858851513 +2019-07-18 21:15:00,25.0,0.042328042,27.67420392795985 +2019-07-18 21:30:00,25.0,0.048677249,27.67571892344228 +2019-07-18 21:45:00,25.0,0.056084656,27.67723357476755 +2019-07-18 22:00:00,25.0,0.06031746,27.67874788174084 +2019-07-18 22:15:00,25.0,0.066137566,27.680261844167383 +2019-07-18 22:30:00,25.0,0.061375661,27.681775461852443 +2019-07-18 22:45:00,25.0,0.059259259,27.68328873460134 +2019-07-18 23:00:00,25.0,0.063492063,27.684801662219435 +2019-07-18 23:15:00,25.0,0.065079365,27.686314244512126 +2019-07-18 23:30:00,25.0,0.060846561,27.687826481284866 +2019-07-18 23:45:00,25.0,0.055026455,27.689338372343144 +2019-07-19 00:00:00,25.0,0.048677249,27.690849917492496 +2019-07-19 00:15:00,25.0,0.050793651,27.692361116538507 +2019-07-19 00:30:00,25.0,0.051851852,27.693871969286803 +2019-07-19 00:45:00,25.0,0.048148148,27.695382475543056 +2019-07-19 01:00:00,25.0,0.045502646,27.696892635112977 +2019-07-19 01:15:00,25.0,0.041798942,27.698402447802327 +2019-07-19 01:30:00,25.0,0.041798942,27.699911913416912 +2019-07-19 01:45:00,25.0,0.044444444,27.70142103176258 +2019-07-19 02:00:00,25.0,0.045502646,27.702929802645222 +2019-07-19 02:15:00,25.0,0.048677249,27.704438225870785 +2019-07-19 02:30:00,25.0,0.058201058,27.70594630124524 +2019-07-19 02:45:00,25.0,0.067195767,27.70745402857463 +2019-07-19 03:00:00,25.0,0.07037037,27.70896140766501 +2019-07-19 03:15:00,25.0,0.068253968,27.710468438322508 +2019-07-19 03:30:00,25.0,0.063492063,27.71197512035329 +2019-07-19 03:45:00,25.0,0.05978836,27.713481453563553 +2019-07-19 04:00:00,25.0,0.05978836,27.714987437759554 +2019-07-19 04:15:00,25.0,0.057142857,27.71649307274759 +2019-07-19 04:30:00,25.0,0.051851852,27.717998358334004 +2019-07-19 04:45:00,25.0,0.050793651,27.719503294325175 +2019-07-19 05:00:00,25.0,0.04973545,27.721007880527544 +2019-07-19 05:15:00,25.0,0.049206349,27.722512116747584 +2019-07-19 05:30:00,25.0,0.048148148,27.724016002791817 +2019-07-19 05:45:00,25.0,0.043386243,27.72551953846681 +2019-07-19 06:00:00,25.0,0.039153439,27.72702272357917 +2019-07-19 06:15:00,25.0,0.036507937,27.728525557935566 +2019-07-19 06:30:00,25.0,0.037037037,27.730028041342685 +2019-07-19 06:45:00,25.0,0.038624339,27.731530173607283 +2019-07-19 07:00:00,25.0,0.035449735,27.733031954536152 +2019-07-19 07:15:00,25.0,0.033333333,27.734533383936125 +2019-07-19 07:30:00,25.0,0.034920635,27.73603446161409 +2019-07-19 07:45:00,25.0,0.033862434,27.73753518737697 +2019-07-19 08:00:00,25.0,0.032804233,27.739035561031745 +2019-07-19 08:15:00,25.0,0.03015873,27.740535582385423 +2019-07-19 08:30:00,25.0,0.028042328,27.742035251245078 +2019-07-19 08:45:00,25.0,0.026984127,27.743534567417814 +2019-07-19 09:00:00,25.0,0.026984127,27.745033530710785 +2019-07-19 09:15:00,25.0,0.026984127,27.746532140931198 +2019-07-19 09:30:00,25.0,0.026984127,27.748030397886286 +2019-07-19 09:45:00,25.0,0.028042328,27.74952830138335 +2019-07-19 10:00:00,25.0,0.029100529,27.75102585122972 +2019-07-19 10:15:00,25.0,0.031746032,27.75252304723278 +2019-07-19 10:30:00,25.0,0.036507937,27.75401988919996 +2019-07-19 10:45:00,25.0,0.038095238,27.75551637693873 +2019-07-19 11:00:00,25.0,0.04021164,27.757012510256608 +2019-07-19 11:15:00,25.0,0.043386243,27.758508288961156 +2019-07-19 11:30:00,25.0,0.051322751,27.76000371285999 +2019-07-19 11:45:00,25.0,0.056613757,27.761498781760757 +2019-07-19 12:00:00,25.0,0.059259259,27.76299349547116 +2019-07-19 12:15:00,25.0,0.06031746,27.764487853798954 +2019-07-19 12:30:00,25.0,0.058730159,27.765981856551917 +2019-07-19 12:45:00,25.0,0.059259259,27.7674755035379 +2019-07-19 13:00:00,25.0,0.056613757,27.768968794564778 +2019-07-19 13:15:00,25.0,0.052910053,27.77046172944048 +2019-07-19 13:30:00,25.0,0.053439153,27.77195430797299 +2019-07-19 13:45:00,25.0,0.050793651,27.77344652997032 +2019-07-19 14:00:00,25.0,0.051322751,27.774938395240547 +2019-07-19 14:15:00,25.0,0.053968254,27.776429903591772 +2019-07-19 14:30:00,25.0,0.053439153,27.777921054832163 +2019-07-19 14:45:00,25.0,0.04973545,27.779411848769918 +2019-07-19 15:00:00,25.0,0.047089947,27.780902285213287 +2019-07-19 15:15:00,25.0,0.041269841,27.782392363970576 +2019-07-19 15:30:00,25.0,0.036507937,27.78388208485012 +2019-07-19 15:45:00,25.0,0.02962963,27.78537144766031 +2019-07-19 16:00:00,25.0,0.028042328,27.786860452209577 +2019-07-19 16:15:00,25.0,0.025925926,27.78834909830641 +2019-07-19 16:30:00,25.0,0.026455026,27.789837385759327 +2019-07-19 16:45:00,25.0,0.024867725,27.791325314376905 +2019-07-19 17:00:00,25.0,0.022751323,27.792812883967763 +2019-07-19 17:15:00,25.0,0.024338624,27.794300094340567 +2019-07-19 17:30:00,25.0,0.021693122,27.79578694530403 +2019-07-19 17:45:00,25.0,0.022222222,27.797273436666906 +2019-07-19 18:00:00,25.0,0.025396825,27.798759568238 +2019-07-19 18:15:00,25.0,0.031746032,27.800245339826162 +2019-07-19 18:30:00,25.0,0.035449735,27.801730751240292 +2019-07-19 18:45:00,25.0,0.038095238,27.803215802289333 +2019-07-19 19:00:00,25.0,0.046031746,27.804700492782267 +2019-07-19 19:15:00,25.0,0.06031746,27.806184822528138 +2019-07-19 19:30:00,25.0,0.073015873,27.807668791336024 +2019-07-19 19:45:00,25.0,0.082539683,27.809152399015055 +2019-07-19 20:00:00,25.0,0.094179894,27.8106356453744 +2019-07-19 20:15:00,25.0,0.100529101,27.812118530223287 +2019-07-19 20:30:00,25.0,0.106878307,27.813601053370988 +2019-07-19 20:45:00,25.0,0.118518519,27.81508321462681 +2019-07-19 21:00:00,25.0,0.131216931,27.816565013800115 +2019-07-19 21:15:00,25.0,0.142857143,27.81804645070031 +2019-07-19 21:30:00,25.0,0.162433862,27.819527525136852 +2019-07-19 21:45:00,25.0,0.179365079,27.82100823691924 +2019-07-19 22:00:00,25.0,0.202645503,27.822488585857023 +2019-07-19 22:15:00,25.0,0.225396825,27.823968571759792 +2019-07-19 22:30:00,25.0,0.239153439,27.825448194437193 +2019-07-19 22:45:00,25.0,0.244444444,27.826927453698907 +2019-07-19 23:00:00,25.0,0.244444444,27.828406349354672 +2019-07-19 23:15:00,25.0,0.238624339,27.82988488121427 +2019-07-19 23:30:00,25.0,0.244444444,27.83136304908753 +2019-07-19 23:45:00,25.0,0.255555556,27.832840852784315 +2019-07-20 00:00:00,25.0,0.256613757,27.834318292114563 +2019-07-20 00:15:00,25.0,0.258730159,27.83579536688823 +2019-07-20 00:30:00,25.0,0.295767196,27.83727207691534 +2019-07-20 00:45:00,25.0,0.312169312,27.83874842200595 +2019-07-20 01:00:00,25.0,0.30952381,27.84022440197017 +2019-07-20 01:15:00,25.0,0.316931217,27.841700016618155 +2019-07-20 01:30:00,25.0,0.346560847,27.84317526576011 +2019-07-20 01:45:00,25.0,0.366137566,27.844650149206288 +2019-07-20 02:00:00,25.0,0.343915344,27.846124666766976 +2019-07-20 02:15:00,25.0,0.330687831,27.84759881825253 +2019-07-20 02:30:00,25.0,0.336507937,27.84907260347333 +2019-07-20 02:45:00,25.0,0.334920635,27.850546022239826 +2019-07-20 03:00:00,25.0,0.325396825,27.852019074362495 +2019-07-20 03:15:00,25.0,0.337566138,27.85349175965187 +2019-07-20 03:30:00,25.0,0.351322751,27.854964077918538 +2019-07-20 03:45:00,25.0,0.372486772,27.856436028973118 +2019-07-20 04:00:00,25.0,0.406349206,27.85790761262629 +2019-07-20 04:15:00,25.0,0.428042328,27.85937882868877 +2019-07-20 04:30:00,25.0,0.445502646,27.860849676971327 +2019-07-20 04:45:00,25.0,0.442328042,27.862320157284785 +2019-07-20 05:00:00,25.0,0.444973545,27.863790269439995 +2019-07-20 05:15:00,25.0,0.449206349,27.865260013247884 +2019-07-20 05:30:00,25.0,0.455026455,27.866729388519392 +2019-07-20 05:45:00,25.0,0.47989418,27.86819839506554 +2019-07-20 06:00:00,25.0,0.502116402,27.86966703269737 +2019-07-20 06:15:00,25.0,0.504232804,27.87113530122599 +2019-07-20 06:30:00,25.0,0.504232804,27.872603200462546 +2019-07-20 06:45:00,25.0,0.494708995,27.87407073021823 +2019-07-20 07:00:00,25.0,0.493650794,27.87553789030429 +2019-07-20 07:15:00,25.0,0.505820106,27.87700468053201 +2019-07-20 07:30:00,25.0,0.514285714,27.87847110071273 +2019-07-20 07:45:00,25.0,0.511640212,27.879937150657845 +2019-07-20 08:00:00,25.0,0.477248677,27.881402830178775 +2019-07-20 08:15:00,25.0,0.451322751,27.88286813908701 +2019-07-20 08:30:00,25.0,0.449206349,27.88433307719407 +2019-07-20 08:45:00,25.0,0.444973545,27.88579764431154 +2019-07-20 09:00:00,25.0,0.448148148,27.88726184025104 +2019-07-20 09:15:00,25.0,0.438095238,27.88872566482424 +2019-07-20 09:30:00,25.0,0.42010582,27.890189117842866 +2019-07-20 09:45:00,25.0,0.388359788,27.891652199118674 +2019-07-20 10:00:00,25.0,0.368783069,27.893114908463495 +2019-07-20 10:15:00,25.0,0.362433862,27.894577245689174 +2019-07-20 10:30:00,25.0,0.391005291,27.896039210607636 +2019-07-20 10:45:00,25.0,0.396825397,27.897500803030834 +2019-07-20 11:00:00,25.0,0.412698413,27.89896202277077 +2019-07-20 11:15:00,25.0,0.417460317,27.900422869639513 +2019-07-20 11:30:00,25.0,0.42962963,27.90188334344915 +2019-07-20 11:45:00,25.0,0.453439153,27.90334344401184 +2019-07-20 12:00:00,25.0,0.452380952,27.904803171139775 +2019-07-20 12:15:00,25.0,0.429100529,27.90626252464521 +2019-07-20 12:30:00,25.0,0.42962963,27.90772150434043 +2019-07-20 12:45:00,25.0,0.424338624,27.909180110037784 +2019-07-20 13:00:00,25.0,0.37989418,27.910638341549667 +2019-07-20 13:15:00,25.0,0.385714286,27.91209619868851 +2019-07-20 13:30:00,25.0,0.376190476,27.9135536812668 +2019-07-20 13:45:00,25.0,0.391005291,27.915010789097074 +2019-07-20 14:00:00,25.0,0.396825397,27.916467521991922 +2019-07-20 14:15:00,25.0,0.375661376,27.917923879763965 +2019-07-20 14:30:00,25.0,0.349206349,27.919379862225885 +2019-07-20 14:45:00,25.0,0.313227513,27.92083546919042 +2019-07-20 15:00:00,25.0,0.323809524,27.922290700470334 +2019-07-20 15:15:00,25.0,0.312169312,27.92374555587846 +2019-07-20 15:30:00,25.0,0.296825397,27.925200035227665 +2019-07-20 15:45:00,25.0,0.276190476,27.926654138330875 +2019-07-20 16:00:00,25.0,0.273015873,27.92810786500106 +2019-07-20 16:15:00,25.0,0.277248677,27.929561215051233 +2019-07-20 16:30:00,25.0,0.264550265,27.931014188294473 +2019-07-20 16:45:00,25.0,0.259259259,27.932466784543877 +2019-07-20 17:00:00,25.0,0.245502646,27.933919003612626 +2019-07-20 17:15:00,25.0,0.239153439,27.93537084531392 +2019-07-20 17:30:00,25.0,0.239153439,27.936822309461025 +2019-07-20 17:45:00,25.0,0.253968254,27.938273395867256 +2019-07-20 18:00:00,25.0,0.26984127,27.939724104345956 +2019-07-20 18:15:00,25.0,0.274074074,27.941174434710547 +2019-07-20 18:30:00,25.0,0.272486772,27.942624386774476 +2019-07-20 18:45:00,25.0,0.285714286,27.944073960351247 +2019-07-20 19:00:00,25.0,0.297354497,27.945523155254413 +2019-07-20 19:15:00,25.0,0.322751323,27.946971971297575 +2019-07-20 19:30:00,25.0,0.313756614,27.94842040829439 +2019-07-20 19:45:00,25.0,0.308994709,27.949868466058543 +2019-07-20 20:00:00,25.0,0.31005291,27.951316144403794 +2019-07-20 20:15:00,25.0,0.293650794,27.952763443143933 +2019-07-20 20:30:00,25.0,0.291534392,27.95421036209281 +2019-07-20 20:45:00,25.0,0.249206349,27.95565690106431 +2019-07-20 21:00:00,25.0,0.237037037,27.957103059872377 +2019-07-20 21:15:00,25.0,0.281481481,27.958548838331016 +2019-07-20 21:30:00,25.0,0.321164021,27.959994236254254 +2019-07-20 21:45:00,25.0,0.340740741,27.961439253456188 +2019-07-20 22:00:00,25.0,0.338624339,27.962883889750948 +2019-07-20 22:15:00,25.0,0.347089947,27.964328144952734 +2019-07-20 22:30:00,25.0,0.346031746,27.96577201887577 +2019-07-20 22:45:00,25.0,0.347619048,27.967215511334352 +2019-07-20 23:00:00,25.0,0.353968254,27.968658622142808 +2019-07-20 23:15:00,25.0,0.375661376,27.97010135111552 +2019-07-20 23:30:00,25.0,0.394179894,27.97154369806693 +2019-07-20 23:45:00,25.0,0.387830688,27.972985662811514 +2019-07-21 00:00:00,25.0,0.374074074,27.9744272451638 +2019-07-21 00:15:00,25.0,0.386772487,27.975868444938378 +2019-07-21 00:30:00,25.0,0.401587302,27.977309261949863 +2019-07-21 00:45:00,25.0,0.412698413,27.97874969601295 +2019-07-21 01:00:00,25.0,0.427513228,27.980189746942358 +2019-07-21 01:15:00,25.0,0.432804233,27.981629414552863 +2019-07-21 01:30:00,25.0,0.433862434,27.983068698659295 +2019-07-21 01:45:00,25.0,0.427513228,27.98450759907653 +2019-07-21 02:00:00,25.0,0.438095238,27.985946115619495 +2019-07-21 02:15:00,25.0,0.433333333,27.987384248103158 +2019-07-21 02:30:00,25.0,0.443386243,27.98882199634255 +2019-07-21 02:45:00,25.0,0.450793651,27.99025936015274 +2019-07-21 03:00:00,25.0,0.448677249,27.991696339348856 +2019-07-21 03:15:00,25.0,0.451851852,27.993132933746065 +2019-07-21 03:30:00,25.0,0.457671958,27.99456914315959 +2019-07-21 03:45:00,25.0,0.45978836,27.99600496740471 +2019-07-21 04:00:00,25.0,0.465608466,27.99744040629673 +2019-07-21 04:15:00,25.0,0.467195767,27.99887545965104 +2019-07-21 04:30:00,25.0,0.452380952,28.00031012728304 +2019-07-21 04:45:00,25.0,0.445502646,28.001744409008218 +2019-07-21 05:00:00,25.0,0.452380952,28.003178304642077 +2019-07-21 05:15:00,25.0,0.457142857,28.0046118140002 +2019-07-21 05:30:00,25.0,0.461904762,28.0060449368982 +2019-07-21 05:45:00,25.0,0.461375661,28.007477673151744 +2019-07-21 06:00:00,25.0,0.446031746,28.008910022576554 +2019-07-21 06:15:00,25.0,0.43015873,28.01034198498839 +2019-07-21 06:30:00,25.0,0.421693122,28.011773560203082 +2019-07-21 06:45:00,25.0,0.42962963,28.013204748036486 +2019-07-21 07:00:00,25.0,0.448148148,28.014635548304522 +2019-07-21 07:15:00,25.0,0.447619048,28.016065960823166 +2019-07-21 07:30:00,25.0,0.438095238,28.017495985408424 +2019-07-21 07:45:00,25.0,0.428042328,28.018925621876367 +2019-07-21 08:00:00,25.0,0.444973545,28.02035487004311 +2019-07-21 08:15:00,25.0,0.441269841,28.021783729724827 +2019-07-21 08:30:00,25.0,0.425925926,28.023212200737724 +2019-07-21 08:45:00,25.0,0.415873016,28.024640282898076 +2019-07-21 09:00:00,25.0,0.411640212,28.026067976022198 +2019-07-21 09:15:00,25.0,0.419047619,28.027495279926452 +2019-07-21 09:30:00,25.0,0.418518519,28.028922194427263 +2019-07-21 09:45:00,25.0,0.42962963,28.03034871934109 +2019-07-21 10:00:00,25.0,0.456084656,28.031774854484453 +2019-07-21 10:15:00,25.0,0.471957672,28.033200599673926 +2019-07-21 10:30:00,25.0,0.462962963,28.034625954726113 +2019-07-21 10:45:00,25.0,0.447619048,28.036050919457693 +2019-07-21 11:00:00,25.0,0.453968254,28.037475493685378 +2019-07-21 11:15:00,25.0,0.443915344,28.038899677225942 +2019-07-21 11:30:00,25.0,0.428571429,28.040323469896194 +2019-07-21 11:45:00,25.0,0.413227513,28.041746871513006 +2019-07-21 12:00:00,25.0,0.402116402,28.0431698818933 +2019-07-21 12:15:00,25.0,0.397883598,28.04459250085404 +2019-07-21 12:30:00,25.0,0.382539683,28.046014728212256 +2019-07-21 12:45:00,25.0,0.375661376,28.047436563785006 +2019-07-21 13:00:00,25.0,0.362962963,28.048858007389413 +2019-07-21 13:15:00,25.0,0.356084656,28.05027905884265 +2019-07-21 13:30:00,25.0,0.344444444,28.051699717961938 +2019-07-21 13:45:00,25.0,0.325925926,28.05311998456455 +2019-07-21 14:00:00,25.0,0.321164021,28.054539858467802 +2019-07-21 14:15:00,25.0,0.313756614,28.05595933948907 +2019-07-21 14:30:00,25.0,0.293650794,28.05737842744578 +2019-07-21 14:45:00,25.0,0.281481481,28.058797122155404 +2019-07-21 15:00:00,25.0,0.275661376,28.060215423435462 +2019-07-21 15:15:00,25.0,0.265079365,28.061633331103533 +2019-07-21 15:30:00,25.0,0.26031746,28.063050844977244 +2019-07-21 15:45:00,25.0,0.265608466,28.064467964874268 +2019-07-21 16:00:00,25.0,0.265608466,28.065884690612332 +2019-07-21 16:15:00,25.0,0.256084656,28.06730102200921 +2019-07-21 16:30:00,25.0,0.246560847,28.068716958882742 +2019-07-21 16:45:00,25.0,0.233333333,28.070132501050793 +2019-07-21 17:00:00,25.0,0.229100529,28.071547648331297 +2019-07-21 17:15:00,25.0,0.223809524,28.07296240054224 +2019-07-21 17:30:00,25.0,0.22010582,28.074376757501646 +2019-07-21 17:45:00,25.0,0.223809524,28.07579071902761 +2019-07-21 18:00:00,25.0,0.224338624,28.077204284938244 +2019-07-21 18:15:00,25.0,0.230687831,28.078617455051745 +2019-07-21 18:30:00,25.0,0.23968254,28.080030229186352 +2019-07-21 18:45:00,25.0,0.246560847,28.08144260716034 +2019-07-21 19:00:00,25.0,0.241798942,28.082854588792053 +2019-07-21 19:15:00,25.0,0.23968254,28.084266173899877 +2019-07-21 19:30:00,25.0,0.226984127,28.08567736230225 +2019-07-21 19:45:00,25.0,0.216931217,28.08708815381766 +2019-07-21 20:00:00,25.0,0.207407407,28.088498548264646 +2019-07-21 20:15:00,25.0,0.19047619,28.08990854546181 +2019-07-21 20:30:00,25.0,0.171957672,28.09131814522778 +2019-07-21 20:45:00,25.0,0.162433862,28.092727347381267 +2019-07-21 21:00:00,25.0,0.158730159,28.094136151741 +2019-07-21 21:15:00,25.0,0.152380952,28.095544558125788 +2019-07-21 21:30:00,25.0,0.148677249,28.09695256635447 +2019-07-21 21:45:00,25.0,0.142857143,28.098360176245947 +2019-07-21 22:00:00,25.0,0.144973545,28.099767387619174 +2019-07-21 22:15:00,25.0,0.148148148,28.101174200293144 +2019-07-21 22:30:00,25.0,0.151851852,28.102580614086918 +2019-07-21 22:45:00,25.0,0.159259259,28.103986628819587 +2019-07-21 23:00:00,25.0,0.159259259,28.105392244310323 +2019-07-21 23:15:00,25.0,0.156613757,28.106797460378317 +2019-07-21 23:30:00,25.0,0.151322751,28.108202276842835 +2019-07-21 23:45:00,25.0,0.148677249,28.10960669352319 +2019-07-22 00:00:00,25.0,0.139153439,28.111010710238734 +2019-07-22 00:15:00,25.0,0.143915344,28.112414326808885 +2019-07-22 00:30:00,25.0,0.137566138,28.113817543053102 +2019-07-22 00:45:00,25.0,0.13968254,28.115220358790904 +2019-07-22 01:00:00,25.0,0.141269841,28.116622773841854 +2019-07-22 01:15:00,25.0,0.146031746,28.118024788025572 +2019-07-22 01:30:00,25.0,0.145502646,28.11942640116173 +2019-07-22 01:45:00,25.0,0.143386243,28.120827613070045 +2019-07-22 02:00:00,25.0,0.158201058,28.122228423570295 +2019-07-22 02:15:00,25.0,0.174603175,28.123628832482297 +2019-07-22 02:30:00,25.0,0.182010582,28.125028839625937 +2019-07-22 02:45:00,25.0,0.194708995,28.126428444821133 +2019-07-22 03:00:00,25.0,0.20952381,28.12782764788787 +2019-07-22 03:15:00,25.0,0.22010582,28.129226448646182 +2019-07-22 03:30:00,25.0,0.237566138,28.13062484691614 +2019-07-22 03:45:00,25.0,0.252380952,28.132022842517898 +2019-07-22 04:00:00,25.0,0.268253968,28.133420435271624 +2019-07-22 04:15:00,25.0,0.283068783,28.134817624997567 +2019-07-22 04:30:00,25.0,0.304761905,28.136214411516015 +2019-07-22 04:45:00,25.0,0.326984127,28.13761079464731 +2019-07-22 05:00:00,25.0,0.347619048,28.139006774211843 +2019-07-22 05:15:00,25.0,0.36984127,28.14040235003006 +2019-07-22 05:30:00,25.0,0.395767196,28.14179752192247 +2019-07-22 05:45:00,25.0,0.418518519,28.143192289709607 +2019-07-22 06:00:00,25.0,0.437037037,28.144586653212077 +2019-07-22 06:15:00,25.0,0.455026455,28.145980612250543 +2019-07-22 06:30:00,25.0,0.469312169,28.147374166645697 +2019-07-22 06:45:00,25.0,0.478306878,28.14876731621831 +2019-07-22 07:00:00,25.0,0.484656085,28.150160060789183 +2019-07-22 07:15:00,25.0,0.484656085,28.151552400179185 +2019-07-22 07:30:00,25.0,0.483068783,28.15294433420922 +2019-07-22 07:45:00,25.0,0.485185185,28.15433586270026 +2019-07-22 08:00:00,25.0,0.49047619,28.15572698547333 +2019-07-22 08:15:00,25.0,0.488359788,28.15711770234949 +2019-07-22 08:30:00,25.0,0.483068783,28.158508013149866 +2019-07-22 08:45:00,25.0,0.48042328,28.15989791769563 +2019-07-22 09:00:00,25.0,0.485714286,28.161287415808022 +2019-07-22 09:15:00,25.0,0.495767196,28.162676507308305 +2019-07-22 09:30:00,25.0,0.497883598,28.16406519201782 +2019-07-22 09:45:00,25.0,0.498412698,28.165453469757953 +2019-07-22 10:00:00,25.0,0.501058201,28.166841340350132 +2019-07-22 10:15:00,25.0,0.511640212,28.168228803615857 +2019-07-22 10:30:00,25.0,0.51957672,28.16961585937666 +2019-07-22 10:45:00,25.0,0.533862434,28.17100250745414 +2019-07-22 11:00:00,25.0,0.541269841,28.172388747669938 +2019-07-22 11:15:00,25.0,0.532275132,28.173774579845755 +2019-07-22 11:30:00,25.0,0.545502646,28.175160003803345 +2019-07-22 11:45:00,25.0,0.565079365,28.176545019364507 +2019-07-22 12:00:00,25.0,0.579365079,28.1779296263511 +2019-07-22 12:15:00,25.0,0.591534392,28.179313824585034 +2019-07-22 12:30:00,25.0,0.597883598,28.180697613888267 +2019-07-22 12:45:00,25.0,0.598412698,28.182080994082817 +2019-07-22 13:00:00,25.0,0.591005291,28.183463964990743 +2019-07-22 13:15:00,25.0,0.592592593,28.18484652643417 +2019-07-22 13:30:00,25.0,0.595238095,28.186228678235267 +2019-07-22 13:45:00,25.0,0.599470899,28.187610420216263 +2019-07-22 14:00:00,25.0,0.606349206,28.188991752199428 +2019-07-22 14:15:00,25.0,0.61005291,28.190372674007097 +2019-07-22 14:30:00,25.0,0.614285714,28.191753185461653 +2019-07-22 14:45:00,25.0,0.60952381,28.193133286385528 +2019-07-22 15:00:00,25.0,0.613227513,28.194512976601214 +2019-07-22 15:15:00,25.0,0.612169312,28.19589225593125 +2019-07-22 15:30:00,25.0,0.617460317,28.197271124198227 +2019-07-22 15:45:00,25.0,0.60952381,28.198649581224796 +2019-07-22 16:00:00,25.0,0.608465608,28.200027626833656 +2019-07-22 16:15:00,25.0,0.608465608,28.20140526084756 +2019-07-22 16:30:00,25.0,0.601058201,28.20278248308931 +2019-07-22 16:45:00,25.0,0.584126984,28.20415929338177 +2019-07-22 17:00:00,25.0,0.565079365,28.205535691547848 +2019-07-22 17:15:00,25.0,0.521693122,28.20691167741051 +2019-07-22 17:30:00,25.0,0.498412698,28.208287250792768 +2019-07-22 17:45:00,25.0,0.491534392,28.209662411517698 +2019-07-22 18:00:00,25.0,0.495767196,28.211037159408427 +2019-07-22 18:15:00,25.0,0.510582011,28.212411494288126 +2019-07-22 18:30:00,25.0,0.50952381,28.213785415980027 +2019-07-22 18:45:00,25.0,0.491005291,28.215158924307406 +2019-07-22 19:00:00,25.0,0.486243386,28.216532019093613 +2019-07-22 19:15:00,25.0,0.47989418,28.217904700162027 +2019-07-22 19:30:00,25.0,0.472486772,28.219276967336093 +2019-07-22 19:45:00,25.0,0.456613757,28.22064882043931 +2019-07-22 20:00:00,25.0,0.448677249,28.22202025929522 +2019-07-22 20:15:00,25.0,0.439153439,28.223391283727434 +2019-07-22 20:30:00,25.0,0.422751323,28.2247618935596 +2019-07-22 20:45:00,25.0,0.416402116,28.226132088615433 +2019-07-22 21:00:00,25.0,0.415873016,28.22750186871869 +2019-07-22 21:15:00,25.0,0.41005291,28.22887123369319 +2019-07-22 21:30:00,25.0,0.399470899,28.230240183362802 +2019-07-22 21:45:00,25.0,0.375132275,28.23160871755145 +2019-07-22 22:00:00,25.0,0.350793651,28.232976836083107 +2019-07-22 22:15:00,25.0,0.332804233,28.2343445387818 +2019-07-22 22:30:00,25.0,0.312698413,28.23571182547162 +2019-07-22 22:45:00,25.0,0.301058201,28.2370786959767 +2019-07-22 23:00:00,25.0,0.302116402,28.238445150121223 +2019-07-22 23:15:00,25.0,0.288359788,28.239811187729444 +2019-07-22 23:30:00,25.0,0.270899471,28.24117680862565 +2019-07-22 23:45:00,25.0,0.257671958,28.2425420126342 +2019-07-23 00:00:00,25.0,0.246031746,28.24390679957949 +2019-07-23 00:15:00,25.0,0.233333333,28.245271169285985 +2019-07-23 00:30:00,25.0,0.215343915,28.246635121578194 +2019-07-23 00:45:00,25.0,0.205820106,28.24799865628068 +2019-07-23 01:00:00,25.0,0.198941799,28.24936177321807 +2019-07-23 01:15:00,25.0,0.201587302,28.250724472215026 +2019-07-23 01:30:00,25.0,0.202645503,28.25208675309628 +2019-07-23 01:45:00,25.0,0.196296296,28.25344861568661 +2019-07-23 02:00:00,25.0,0.183597884,28.254810059810854 +2019-07-23 02:15:00,25.0,0.177777778,28.2561710852939 +2019-07-23 02:30:00,25.0,0.166137566,28.257531691960683 +2019-07-23 02:45:00,25.0,0.153439153,28.258891879636206 +2019-07-23 03:00:00,25.0,0.143386243,28.260251648145513 +2019-07-23 03:15:00,25.0,0.139153439,28.261610997313717 +2019-07-23 03:30:00,25.0,0.135978836,28.262969926965958 +2019-07-23 03:45:00,25.0,0.131216931,28.264328436927464 +2019-07-23 04:00:00,25.0,0.121693122,28.265686527023494 +2019-07-23 04:15:00,25.0,0.114814815,28.267044197079365 +2019-07-23 04:30:00,25.0,0.106878307,28.268401446920457 +2019-07-23 04:45:00,25.0,0.102645503,28.26975827637219 +2019-07-23 05:00:00,25.0,0.094179894,28.271114685260052 +2019-07-23 05:15:00,25.0,0.086243386,28.27247067340957 +2019-07-23 05:30:00,25.0,0.075661376,28.273826240646336 +2019-07-23 05:45:00,25.0,0.069312169,28.275181386796007 +2019-07-23 06:00:00,25.0,0.066666667,28.276536111684262 +2019-07-23 06:15:00,25.0,0.061904762,28.277890415136866 +2019-07-23 06:30:00,25.0,0.058201058,28.27924429697962 +2019-07-23 06:45:00,25.0,0.057142857,28.280597757038382 +2019-07-23 07:00:00,25.0,0.054497354,28.281950795139075 +2019-07-23 07:15:00,25.0,0.053968254,28.28330341110766 +2019-07-23 07:30:00,25.0,0.05026455,28.28465560477017 +2019-07-23 07:45:00,25.0,0.043386243,28.28600737595267 +2019-07-23 08:00:00,25.0,0.039153439,28.287358724481305 +2019-07-23 08:15:00,25.0,0.039153439,28.28870965018225 +2019-07-23 08:30:00,25.0,0.038624339,28.29006015288175 +2019-07-23 08:45:00,25.0,0.037566138,28.291410232406108 +2019-07-23 09:00:00,25.0,0.035978836,28.29275988858166 +2019-07-23 09:15:00,25.0,0.035449735,28.294109121234822 +2019-07-23 09:30:00,25.0,0.036507937,28.295457930192043 +2019-07-23 09:45:00,25.0,0.036507937,28.296806315279845 +2019-07-23 10:00:00,25.0,0.031746032,28.29815427632479 +2019-07-23 10:15:00,25.0,0.028042328,28.299501813153498 +2019-07-23 10:30:00,25.0,0.025396825,28.300848925592653 +2019-07-23 10:45:00,25.0,0.024338624,28.30219561346898 +2019-07-23 11:00:00,25.0,0.022222222,28.30354187660927 +2019-07-23 11:15:00,25.0,0.022222222,28.30488771484036 +2019-07-23 11:30:00,25.0,0.022751323,28.306233127989145 +2019-07-23 11:45:00,25.0,0.023280423,28.307578115882574 +2019-07-23 12:00:00,25.0,0.023809524,28.308922678347653 +2019-07-23 12:15:00,25.0,0.025925926,28.310266815211445 +2019-07-23 12:30:00,25.0,0.030687831,28.31161052630106 +2019-07-23 12:45:00,25.0,0.033333333,28.312953811443666 +2019-07-23 13:00:00,25.0,0.034920635,28.314296670466486 +2019-07-23 13:15:00,25.0,0.034391534,28.315639103196805 +2019-07-23 13:30:00,25.0,0.037566138,28.316981109461945 +2019-07-23 13:45:00,25.0,0.035449735,28.318322689089307 +2019-07-23 14:00:00,25.0,0.03968254,28.319663841906323 +2019-07-23 14:15:00,25.0,0.038095238,28.321004567740495 +2019-07-23 14:30:00,25.0,0.032804233,28.32234486641938 +2019-07-23 14:45:00,25.0,0.035449735,28.32368473777058 +2019-07-23 15:00:00,25.0,0.037037037,28.32502418162176 +2019-07-23 15:15:00,25.0,0.035978836,28.326363197800635 +2019-07-23 15:30:00,25.0,0.038624339,28.32770178613498 +2019-07-23 15:45:00,25.0,0.038095238,28.329039946452625 +2019-07-23 16:00:00,25.0,0.034920635,28.330377678581446 +2019-07-23 16:15:00,25.0,0.035978836,28.331714982349386 +2019-07-23 16:30:00,25.0,0.038624339,28.333051857584437 +2019-07-23 16:45:00,25.0,0.040740741,28.334388304114647 +2019-07-23 17:00:00,25.0,0.044444444,28.33572432176812 +2019-07-23 17:15:00,25.0,0.041269841,28.337059910373007 +2019-07-23 17:30:00,25.0,0.041798942,28.338395069757535 +2019-07-23 17:45:00,25.0,0.043915344,28.33972979974996 +2019-07-23 18:00:00,25.0,0.041269841,28.34106410017862 +2019-07-23 18:15:00,25.0,0.036507937,28.342397970871875 +2019-07-23 18:30:00,25.0,0.029100529,28.343731411658176 +2019-07-23 18:45:00,25.0,0.023809524,28.345064422366008 +2019-07-23 19:00:00,25.0,0.017989418,28.34639700282391 +2019-07-23 19:15:00,25.0,0.017460317,28.34772915286049 +2019-07-23 19:30:00,25.0,0.016402116,28.3490608723044 +2019-07-23 19:45:00,25.0,0.017460317,28.350392160984356 +2019-07-23 20:00:00,25.0,0.019047619,28.351723018729114 +2019-07-23 20:15:00,25.0,0.018518519,28.353053445367504 +2019-07-23 20:30:00,25.0,0.018518519,28.354383440728405 +2019-07-23 20:45:00,25.0,0.019047619,28.355713004640748 +2019-07-23 21:00:00,25.0,0.017460317,28.35704213693352 +2019-07-23 21:15:00,25.0,0.021164021,28.358370837435764 +2019-07-23 21:30:00,25.0,0.026455026,28.35969910597658 +2019-07-23 21:45:00,25.0,0.030687831,28.361026942385127 +2019-07-23 22:00:00,25.0,0.033333333,28.36235434649061 +2019-07-23 22:15:00,25.0,0.044973545,28.3636813181223 +2019-07-23 22:30:00,25.0,0.048148148,28.36500785710951 +2019-07-23 22:45:00,25.0,0.047089947,28.366333963281633 +2019-07-23 23:00:00,25.0,0.055026455,28.36765963646809 +2019-07-23 23:15:00,25.0,0.064550265,28.368984876498374 +2019-07-23 23:30:00,25.0,0.068783069,28.370309683202024 +2019-07-23 23:45:00,25.0,0.071428571,28.37163405640865 +2019-07-24 00:00:00,25.0,0.078835979,28.3729579959479 +2019-07-24 00:15:00,25.0,0.091005291,28.37428150164949 +2019-07-24 00:30:00,25.0,0.103174603,28.37560457334319 +2019-07-24 00:45:00,25.0,0.10952381,28.376927210858813 +2019-07-24 01:00:00,25.0,0.118518519,28.37824941402625 +2019-07-24 01:15:00,25.0,0.125925926,28.37957118267543 +2019-07-24 01:30:00,25.0,0.132804233,28.380892516636344 +2019-07-24 01:45:00,25.0,0.149206349,28.382213415739045 +2019-07-24 02:00:00,25.0,0.167195767,28.383533879813626 +2019-07-24 02:15:00,25.0,0.197883598,28.384853908690257 +2019-07-24 02:30:00,25.0,0.225925926,28.386173502199142 +2019-07-24 02:45:00,25.0,0.246031746,28.387492660170558 +2019-07-24 03:00:00,25.0,0.265608466,28.38881138243483 +2019-07-24 03:15:00,25.0,0.285185185,28.390129668822343 +2019-07-24 03:30:00,25.0,0.296825397,28.39144751916354 +2019-07-24 03:45:00,25.0,0.307936508,28.392764933288902 +2019-07-24 04:00:00,25.0,0.305820106,28.39408191102899 +2019-07-24 04:15:00,25.0,0.302116402,28.395398452214412 +2019-07-24 04:30:00,25.0,0.303174603,28.39671455667583 +2019-07-24 04:45:00,25.0,0.305820106,28.39803022424396 +2019-07-24 05:00:00,25.0,0.311111111,28.399345454749586 +2019-07-24 05:15:00,25.0,0.301058201,28.40066024802353 +2019-07-24 05:30:00,25.0,0.285714286,28.401974603896686 +2019-07-24 05:45:00,25.0,0.270899471,28.4032885222 +2019-07-24 06:00:00,25.0,0.268253968,28.40460200276447 +2019-07-24 06:15:00,25.0,0.255026455,28.40591504542115 +2019-07-24 06:30:00,25.0,0.246031746,28.40722765000116 +2019-07-24 06:45:00,25.0,0.25026455,28.408539816335665 +2019-07-24 07:00:00,25.0,0.24973545,28.409851544255897 +2019-07-24 07:15:00,25.0,0.243915344,28.41116283359313 +2019-07-24 07:30:00,25.0,0.223280423,28.41247368417871 +2019-07-24 07:45:00,25.0,0.216931217,28.413784095844026 +2019-07-24 08:00:00,25.0,0.212698413,28.415094068420533 +2019-07-24 08:15:00,25.0,0.208465608,28.416403601739745 +2019-07-24 08:30:00,25.0,0.220634921,28.417712695633217 +2019-07-24 08:45:00,25.0,0.202116402,28.419021349932578 +2019-07-24 09:00:00,25.0,0.17989418,28.4203295644695 +2019-07-24 09:15:00,25.0,0.156084656,28.421637339075723 +2019-07-24 09:30:00,25.0,0.145502646,28.422944673583032 +2019-07-24 09:45:00,25.0,0.138095238,28.42425156782328 +2019-07-24 10:00:00,25.0,0.132804233,28.42555802162837 +2019-07-24 10:15:00,25.0,0.14021164,28.426864034830256 +2019-07-24 10:30:00,25.0,0.150793651,28.42816960726097 +2019-07-24 10:45:00,25.0,0.152380952,28.42947473875257 +2019-07-24 11:00:00,25.0,0.158201058,28.430779429137196 +2019-07-24 11:15:00,25.0,0.170899471,28.43208367824704 +2019-07-24 11:30:00,25.0,0.187301587,28.433387485914334 +2019-07-24 11:45:00,25.0,0.210582011,28.43469085197139 +2019-07-24 12:00:00,25.0,0.225925926,28.43599377625056 +2019-07-24 12:15:00,25.0,0.246560847,28.43729625858426 +2019-07-24 12:30:00,25.0,0.262433862,28.438598298804965 +2019-07-24 12:45:00,25.0,0.28994709,28.4398998967452 +2019-07-24 13:00:00,25.0,0.308465608,28.441201052237552 +2019-07-24 13:15:00,25.0,0.323280423,28.442501765114663 +2019-07-24 13:30:00,25.0,0.341798942,28.443802035209234 +2019-07-24 13:45:00,25.0,0.351851852,28.44510186235402 +2019-07-24 14:00:00,25.0,0.355026455,28.446401246381832 +2019-07-24 14:15:00,25.0,0.355026455,28.44770018712554 +2019-07-24 14:30:00,25.0,0.345502646,28.448998684418076 +2019-07-24 14:45:00,25.0,0.338624339,28.450296738092423 +2019-07-24 15:00:00,25.0,0.331216931,28.45159434798162 +2019-07-24 15:15:00,25.0,0.321693122,28.452891513918765 +2019-07-24 15:30:00,25.0,0.317989418,28.454188235737014 +2019-07-24 15:45:00,25.0,0.331746032,28.45548451326958 +2019-07-24 16:00:00,25.0,0.33015873,28.456780346349735 +2019-07-24 16:15:00,25.0,0.318518519,28.458075734810805 +2019-07-24 16:30:00,25.0,0.314814815,28.459370678486174 +2019-07-24 16:45:00,25.0,0.316931217,28.46066517720928 +2019-07-24 17:00:00,25.0,0.307407407,28.461959230813626 +2019-07-24 17:15:00,25.0,0.304761905,28.463252839132764 +2019-07-24 17:30:00,25.0,0.308465608,28.46454600200031 +2019-07-24 17:45:00,25.0,0.31005291,28.465838719249938 +2019-07-24 18:00:00,25.0,0.304761905,28.467130990715365 +2019-07-24 18:15:00,25.0,0.300529101,28.468422816230387 +2019-07-24 18:30:00,25.0,0.298412698,28.46971419562884 +2019-07-24 18:45:00,25.0,0.305820106,28.471005128744626 +2019-07-24 19:00:00,25.0,0.299470899,28.4722956154117 +2019-07-24 19:15:00,25.0,0.3,28.473585655464078 +2019-07-24 19:30:00,25.0,0.294179894,28.474875248735835 +2019-07-24 19:45:00,25.0,0.291005291,28.476164395061097 +2019-07-24 20:00:00,25.0,0.29047619,28.477453094274054 +2019-07-24 20:15:00,25.0,0.292592593,28.478741346208942 +2019-07-24 20:30:00,25.0,0.277777778,28.480029150700076 +2019-07-24 20:45:00,25.0,0.267195767,28.48131650758181 +2019-07-24 21:00:00,25.0,0.262433862,28.482603416688555 +2019-07-24 21:15:00,25.0,0.254497354,28.483889877854793 +2019-07-24 21:30:00,25.0,0.243386243,28.485175890915055 +2019-07-24 21:45:00,25.0,0.23968254,28.48646145570393 +2019-07-24 22:00:00,25.0,0.24021164,28.487746572056068 +2019-07-24 22:15:00,25.0,0.238624339,28.489031239806174 +2019-07-24 22:30:00,25.0,0.238095238,28.490315458789006 +2019-07-24 22:45:00,25.0,0.235449735,28.49159922883939 +2019-07-24 23:00:00,25.0,0.23015873,28.492882549792206 +2019-07-24 23:15:00,25.0,0.205820106,28.494165421482382 +2019-07-24 23:30:00,25.0,0.198412698,28.49544784374492 +2019-07-24 23:45:00,25.0,0.188888889,28.49672981641487 +2019-07-25 00:00:00,25.0,0.183597884,28.49801133932734 +2019-07-25 00:15:00,25.0,0.166666667,28.499292412317498 +2019-07-25 00:30:00,25.0,0.155555556,28.50057303522057 +2019-07-25 00:45:00,25.0,0.153968254,28.50185320787184 +2019-07-25 01:00:00,25.0,0.153968254,28.503132930106645 +2019-07-25 01:15:00,25.0,0.148677249,28.504412201760395 +2019-07-25 01:30:00,25.0,0.143915344,28.505691022668532 +2019-07-25 01:45:00,25.0,0.147089947,28.506969392666583 +2019-07-25 02:00:00,25.0,0.142328042,28.508247311590118 +2019-07-25 02:15:00,25.0,0.133333333,28.509524779274763 +2019-07-25 02:30:00,25.0,0.124338624,28.510801795556215 +2019-07-25 02:45:00,25.0,0.11957672,28.512078360270216 +2019-07-25 03:00:00,25.0,0.117460317,28.513354473252573 +2019-07-25 03:15:00,25.0,0.118518519,28.514630134339146 +2019-07-25 03:30:00,25.0,0.116931217,28.515905343365862 +2019-07-25 03:45:00,25.0,0.11005291,28.5171801001687 +2019-07-25 04:00:00,25.0,0.105291005,28.518454404583693 +2019-07-25 04:15:00,25.0,0.097354497,28.519728256446946 +2019-07-25 04:30:00,25.0,0.091534392,28.5210016555946 +2019-07-25 04:45:00,25.0,0.087301587,28.52227460186288 +2019-07-25 05:00:00,25.0,0.085185185,28.52354709508805 +2019-07-25 05:15:00,25.0,0.08042328,28.524819135106437 +2019-07-25 05:30:00,25.0,0.075132275,28.526090721754436 +2019-07-25 05:45:00,25.0,0.071957672,28.527361854868488 +2019-07-25 06:00:00,25.0,0.068253968,28.528632534285098 +2019-07-25 06:15:00,25.0,0.065079365,28.529902759840823 +2019-07-25 06:30:00,25.0,0.061904762,28.531172531372295 +2019-07-25 06:45:00,25.0,0.056613757,28.532441848716182 +2019-07-25 07:00:00,25.0,0.053968254,28.533710711709222 +2019-07-25 07:15:00,25.0,0.05026455,28.534979120188222 +2019-07-25 07:30:00,25.0,0.044444444,28.536247073990026 +2019-07-25 07:45:00,25.0,0.038624339,28.53751457295155 +2019-07-25 08:00:00,25.0,0.035978836,28.538781616909763 +2019-07-25 08:15:00,25.0,0.034920635,28.5400482057017 +2019-07-25 08:30:00,25.0,0.033333333,28.541314339164444 +2019-07-25 08:45:00,25.0,0.034920635,28.542580017135148 +2019-07-25 09:00:00,25.0,0.033333333,28.543845239451013 +2019-07-25 09:15:00,25.0,0.030687831,28.5451100059493 +2019-07-25 09:30:00,25.0,0.032804233,28.546374316467343 +2019-07-25 09:45:00,25.0,0.033862434,28.54763817084251 +2019-07-25 10:00:00,25.0,0.032804233,28.548901568912253 +2019-07-25 10:15:00,25.0,0.033333333,28.550164510514062 +2019-07-25 10:30:00,25.0,0.032804233,28.551426995485496 +2019-07-25 10:45:00,25.0,0.032275132,28.55268902366418 +2019-07-25 11:00:00,25.0,0.033862434,28.553950594887773 +2019-07-25 11:15:00,25.0,0.035449735,28.555211708994026 +2019-07-25 11:30:00,25.0,0.037566138,28.55647236582072 +2019-07-25 11:45:00,25.0,0.039153439,28.557732565205715 +2019-07-25 12:00:00,25.0,0.042328042,28.55899230698691 +2019-07-25 12:15:00,25.0,0.046031746,28.56025159100228 +2019-07-25 12:30:00,25.0,0.047089947,28.561510417089856 +2019-07-25 12:45:00,25.0,0.046031746,28.562768785087723 +2019-07-25 13:00:00,25.0,0.055555556,28.564026694834027 +2019-07-25 13:15:00,25.0,0.057671958,28.565284146166967 +2019-07-25 13:30:00,25.0,0.058730159,28.566541138924812 +2019-07-25 13:45:00,25.0,0.061904762,28.56779767294589 +2019-07-25 14:00:00,25.0,0.059259259,28.56905374806857 +2019-07-25 14:15:00,25.0,0.057671958,28.570309364131305 +2019-07-25 14:30:00,25.0,0.058201058,28.571564520972586 +2019-07-25 14:45:00,25.0,0.058730159,28.57281921843098 +2019-07-25 15:00:00,25.0,0.058730159,28.574073456345094 +2019-07-25 15:15:00,25.0,0.056613757,28.57532723455361 +2019-07-25 15:30:00,25.0,0.05978836,28.57658055289527 +2019-07-25 15:45:00,25.0,0.067724868,28.57783341120886 +2019-07-25 16:00:00,25.0,0.071428571,28.579085809333243 +2019-07-25 16:15:00,25.0,0.08042328,28.58033774710733 +2019-07-25 16:30:00,25.0,0.097354497,28.581589224370088 +2019-07-25 16:45:00,25.0,0.117460317,28.582840240960554 +2019-07-25 17:00:00,25.0,0.131216931,28.58409079671782 +2019-07-25 17:15:00,25.0,0.142857143,28.58534089148104 +2019-07-25 17:30:00,25.0,0.157142857,28.58659052508941 +2019-07-25 17:45:00,25.0,0.174603175,28.587839697382215 +2019-07-25 18:00:00,25.0,0.196825397,28.589088408198776 +2019-07-25 18:15:00,25.0,0.221693122,28.590336657378483 +2019-07-25 18:30:00,25.0,0.240740741,28.59158444476078 +2019-07-25 18:45:00,25.0,0.266666667,28.592831770185178 +2019-07-25 19:00:00,25.0,0.297354497,28.594078633491243 +2019-07-25 19:15:00,25.0,0.326984127,28.595325034518595 +2019-07-25 19:30:00,25.0,0.356084656,28.596570973106928 +2019-07-25 19:45:00,25.0,0.385714286,28.597816449095976 +2019-07-25 20:00:00,25.0,0.415343915,28.59906146232555 +2019-07-25 20:15:00,25.0,0.435449735,28.600306012635514 +2019-07-25 20:30:00,25.0,0.458201058,28.601550099865786 +2019-07-25 20:45:00,25.0,0.475661376,28.602793723856355 +2019-07-25 21:00:00,25.0,0.482539683,28.604036884447254 +2019-07-25 21:15:00,25.0,0.488888889,28.605279581478598 +2019-07-25 21:30:00,25.0,0.496825397,28.606521814790536 +2019-07-25 21:45:00,25.0,0.501587302,28.607763584223292 +2019-07-25 22:00:00,25.0,0.504761905,28.609004889617157 +2019-07-25 22:15:00,25.0,0.504232804,28.610245730812455 +2019-07-25 22:30:00,25.0,0.498412698,28.6114861076496 +2019-07-25 22:45:00,25.0,0.487830688,28.612726019969045 +2019-07-25 23:00:00,25.0,0.489417989,28.61396546761131 +2019-07-25 23:15:00,25.0,0.493121693,28.615204450416975 +2019-07-25 23:30:00,25.0,0.492063492,28.61644296822668 +2019-07-25 23:45:00,25.0,0.493121693,28.617681020881122 +2019-07-26 00:00:00,25.0,0.488888889,28.618918608221062 +2019-07-26 00:15:00,25.0,0.487301587,28.62015573008732 +2019-07-26 00:30:00,25.0,0.487301587,28.62139238632077 +2019-07-26 00:45:00,25.0,0.478835979,28.622628576762356 +2019-07-26 01:00:00,25.0,0.47989418,28.623864301253068 +2019-07-26 01:15:00,25.0,0.484126984,28.62509955963397 +2019-07-26 01:30:00,25.0,0.482010582,28.626334351746184 +2019-07-26 01:45:00,25.0,0.480952381,28.62756867743088 +2019-07-26 02:00:00,25.0,0.477248677,28.628802536529303 +2019-07-26 02:15:00,25.0,0.477248677,28.630035928882744 +2019-07-26 02:30:00,25.0,0.482539683,28.631268854332568 +2019-07-26 02:45:00,25.0,0.475661376,28.63250131272019 +2019-07-26 03:00:00,25.0,0.476190476,28.633733303887087 +2019-07-26 03:15:00,25.0,0.476719577,28.634964827674803 +2019-07-26 03:30:00,25.0,0.476719577,28.63619588392493 +2019-07-26 03:45:00,25.0,0.464550265,28.637426472479135 +2019-07-26 04:00:00,25.0,0.43968254,28.638656593179125 +2019-07-26 04:15:00,25.0,0.425396825,28.63988624586669 +2019-07-26 04:30:00,25.0,0.388359788,28.64111543038366 +2019-07-26 04:45:00,25.0,0.320634921,28.642344146571943 +2019-07-26 05:00:00,25.0,0.301058201,28.643572394273495 +2019-07-26 05:15:00,25.0,0.276719577,28.64480017333033 +2019-07-26 05:30:00,25.0,0.295767196,28.646027483584543 +2019-07-26 05:45:00,25.0,0.276719577,28.64725432487826 +2019-07-26 06:00:00,25.0,0.280952381,28.648480697053692 +2019-07-26 06:15:00,25.0,0.275661376,28.64970659995309 +2019-07-26 06:30:00,25.0,0.305291005,28.650932033418783 +2019-07-26 06:45:00,25.0,0.334920635,28.652156997293154 +2019-07-26 07:00:00,25.0,0.362433862,28.65338149141864 +2019-07-26 07:15:00,25.0,0.38994709,28.654605515637748 +2019-07-26 07:30:00,25.0,0.410582011,28.655829069793032 +2019-07-26 07:45:00,25.0,0.421164021,28.65705215372713 +2019-07-26 08:00:00,25.0,0.414814815,28.65827476728272 +2019-07-26 08:15:00,25.0,0.417989418,28.65949691030254 +2019-07-26 08:30:00,25.0,0.446560847,28.660718582629404 +2019-07-26 08:45:00,25.0,0.458730159,28.661939784106174 +2019-07-26 09:00:00,25.0,0.466666667,28.663160514575775 +2019-07-26 09:15:00,25.0,0.474603175,28.6643807738812 +2019-07-26 09:30:00,25.0,0.482539683,28.665600561865485 +2019-07-26 09:45:00,25.0,0.49047619,28.66681987837175 +2019-07-26 10:00:00,25.0,0.493121693,28.668038723243157 +2019-07-26 10:15:00,25.0,0.49047619,28.66925709632294 +2019-07-26 10:30:00,25.0,0.494179894,28.67047499745438 +2019-07-26 10:45:00,25.0,0.503174603,28.671692426480842 +2019-07-26 11:00:00,25.0,0.511111111,28.672909383245724 +2019-07-26 11:15:00,25.0,0.511111111,28.6741258675925 +2019-07-26 11:30:00,25.0,0.507407407,28.675341879364712 +2019-07-26 11:45:00,25.0,0.502645503,28.676557418405945 +2019-07-26 12:00:00,25.0,0.504232804,28.67777248455986 +2019-07-26 12:15:00,25.0,0.506878307,28.67898707767017 +2019-07-26 12:30:00,25.0,0.506349206,28.680201197580647 +2019-07-26 12:45:00,25.0,0.50952381,28.68141484413513 +2019-07-26 13:00:00,25.0,0.510582011,28.68262801717752 +2019-07-26 13:15:00,25.0,0.516931217,28.683840716551778 +2019-07-26 13:30:00,25.0,0.520634921,28.685052942101915 +2019-07-26 13:45:00,25.0,0.521693122,28.68626469367202 +2019-07-26 14:00:00,25.0,0.525396825,28.687475971106227 +2019-07-26 14:15:00,25.0,0.525925926,28.68868677424875 +2019-07-26 14:30:00,25.0,0.532275132,28.68989710294384 +2019-07-26 14:45:00,25.0,0.546031746,28.691106957035828 +2019-07-26 15:00:00,25.0,0.546031746,28.692316336369103 +2019-07-26 15:15:00,25.0,0.556084656,28.693525240788105 +2019-07-26 15:30:00,25.0,0.567195767,28.69473367013735 +2019-07-26 15:45:00,25.0,0.580952381,28.695941624261398 +2019-07-26 16:00:00,25.0,0.589417989,28.697149103004882 +2019-07-26 16:15:00,25.0,0.600529101,28.6983561062125 +2019-07-26 16:30:00,25.0,0.598941799,28.699562633728995 +2019-07-26 16:45:00,25.0,0.593121693,28.700768685399186 +2019-07-26 17:00:00,25.0,0.582539683,28.701974261067946 +2019-07-26 17:15:00,25.0,0.588888889,28.70317936058021 +2019-07-26 17:30:00,25.0,0.593121693,28.70438398378098 +2019-07-26 17:45:00,25.0,0.597354497,28.70558813051531 +2019-07-26 18:00:00,25.0,0.604232804,28.70679180062832 +2019-07-26 18:15:00,25.0,0.599470899,28.707994993965194 +2019-07-26 18:30:00,25.0,0.601058201,28.709197710371175 +2019-07-26 18:45:00,25.0,0.598412698,28.71039994969156 +2019-07-26 19:00:00,25.0,0.597883598,28.711601711771724 +2019-07-26 19:15:00,25.0,0.598941799,28.712802996457086 +2019-07-26 19:30:00,25.0,0.603703704,28.714003803593137 +2019-07-26 19:45:00,25.0,0.607936508,28.715204133025427 +2019-07-26 20:00:00,25.0,0.608465608,28.716403984599562 +2019-07-26 20:15:00,25.0,0.607936508,28.717603358161224 +2019-07-26 20:30:00,25.0,0.601587302,28.718802253556138 +2019-07-26 20:45:00,25.0,0.615873016,28.720000670630103 +2019-07-26 21:00:00,25.0,0.622222222,28.721198609228974 +2019-07-26 21:15:00,25.0,0.621164021,28.72239606919867 +2019-07-26 21:30:00,25.0,0.618518519,28.723593050385173 +2019-07-26 21:45:00,25.0,0.608465608,28.724789552634522 +2019-07-26 22:00:00,25.0,0.597354497,28.725985575792823 +2019-07-26 22:15:00,25.0,0.607407407,28.727181119706238 +2019-07-26 22:30:00,25.0,0.601587302,28.728376184220995 +2019-07-26 22:45:00,25.0,0.606349206,28.729570769183375 +2019-07-26 23:00:00,25.0,0.597354497,28.73076487443974 +2019-07-26 23:15:00,25.0,0.606878307,28.731958499836495 +2019-07-26 23:30:00,25.0,0.608465608,28.73315164522011 +2019-07-26 23:45:00,25.0,0.604761905,28.734344310437127 +2019-07-27 00:00:00,25.0,0.603703704,28.735536495334134 +2019-07-27 00:15:00,25.0,0.596296296,28.736728199757803 +2019-07-27 00:30:00,25.0,0.594179894,28.737919423554835 +2019-07-27 00:45:00,25.0,0.595238095,28.73911016657203 +2019-07-27 01:00:00,25.0,0.592063492,28.740300428656223 +2019-07-27 01:15:00,25.0,0.578835979,28.74149020965432 +2019-07-27 01:30:00,25.0,0.571428571,28.742679509413293 +2019-07-27 01:45:00,25.0,0.58042328,28.743868327780163 +2019-07-27 02:00:00,25.0,0.582539683,28.745056664602032 +2019-07-27 02:15:00,25.0,0.584656085,28.746244519726048 +2019-07-27 02:30:00,25.0,0.587301587,28.747431892999423 +2019-07-27 02:45:00,25.0,0.58994709,28.74861878426944 +2019-07-27 03:00:00,25.0,0.596825397,28.749805193383434 +2019-07-27 03:15:00,25.0,0.595767196,28.75099112018881 +2019-07-27 03:30:00,25.0,0.585714286,28.75217656453303 +2019-07-27 03:45:00,25.0,0.577248677,28.753361526263618 +2019-07-27 04:00:00,25.0,0.576190476,28.754546005228164 +2019-07-27 04:15:00,25.0,0.571428571,28.755730001274316 +2019-07-27 04:30:00,25.0,0.575132275,28.75691351424979 +2019-07-27 04:45:00,25.0,0.573015873,28.75809654400235 +2019-07-27 05:00:00,25.0,0.58042328,28.759279090379838 +2019-07-27 05:15:00,25.0,0.584656085,28.760461153230153 +2019-07-27 05:30:00,25.0,0.58042328,28.761642732401253 +2019-07-27 05:45:00,25.0,0.579365079,28.762823827741165 +2019-07-27 06:00:00,25.0,0.578306878,28.764004439097967 +2019-07-27 06:15:00,25.0,0.57989418,28.765184566319814 +2019-07-27 06:30:00,25.0,0.583597884,28.76636420925491 +2019-07-27 06:45:00,25.0,0.584126984,28.767543367751525 +2019-07-27 07:00:00,25.0,0.583068783,28.768722041657995 +2019-07-27 07:15:00,25.0,0.584656085,28.769900230822717 +2019-07-27 07:30:00,25.0,0.583597884,28.77107793509415 +2019-07-27 07:45:00,25.0,0.587301587,28.772255154320813 +2019-07-27 08:00:00,25.0,0.588359788,28.773431888351297 +2019-07-27 08:15:00,25.0,0.583597884,28.77460813703423 +2019-07-27 08:30:00,25.0,0.581481481,28.775783900218343 +2019-07-27 08:45:00,25.0,0.585185185,28.77695917775239 +2019-07-27 09:00:00,25.0,0.588359788,28.778133969485204 +2019-07-27 09:15:00,25.0,0.586772487,28.77930827526569 +2019-07-27 09:30:00,25.0,0.584656085,28.780482094942805 +2019-07-27 09:45:00,25.0,0.587301587,28.781655428365564 +2019-07-27 10:00:00,25.0,0.593650794,28.78282827538305 +2019-07-27 10:15:00,25.0,0.612169312,28.784000635844414 +2019-07-27 10:30:00,25.0,0.625396825,28.785172509598862 +2019-07-27 10:45:00,25.0,0.626984127,28.786343896495662 +2019-07-27 11:00:00,25.0,0.64021164,28.78751479638415 +2019-07-27 11:15:00,25.0,0.641798942,28.788685209113723 +2019-07-27 11:30:00,25.0,0.644444444,28.78985513453384 +2019-07-27 11:45:00,25.0,0.614814815,28.79102457249402 +2019-07-27 12:00:00,25.0,0.613756614,28.79219352284385 +2019-07-27 12:15:00,25.0,0.611640212,28.793361985432973 +2019-07-27 12:30:00,25.0,0.608465608,28.794529960111102 +2019-07-27 12:45:00,25.0,0.612169312,28.795697446728013 +2019-07-27 13:00:00,25.0,0.62010582,28.79686444513353 +2019-07-27 13:15:00,25.0,0.619047619,28.798030955177563 +2019-07-27 13:30:00,25.0,0.618518519,28.79919697671006 +2019-07-27 13:45:00,25.0,0.616931217,28.800362509581056 +2019-07-27 14:00:00,25.0,0.615873016,28.801527553640636 +2019-07-27 14:15:00,25.0,0.615873016,28.802692108738945 +2019-07-27 14:30:00,25.0,0.617460317,28.803856174726196 +2019-07-27 14:45:00,25.0,0.621164021,28.805019751452665 +2019-07-27 15:00:00,25.0,0.624867725,28.806182838768695 +2019-07-27 15:15:00,25.0,0.623809524,28.807345436524677 +2019-07-27 15:30:00,25.0,0.625396825,28.80850754457108 +2019-07-27 15:45:00,25.0,0.62962963,28.809669162758432 +2019-07-27 16:00:00,25.0,0.631746032,28.810830290937325 +2019-07-27 16:15:00,25.0,0.62962963,28.81199092895841 +2019-07-27 16:30:00,25.0,0.63015873,28.813151076672398 +2019-07-27 16:45:00,25.0,0.630687831,28.814310733930075 +2019-07-27 17:00:00,25.0,0.62962963,28.815469900582276 +2019-07-27 17:15:00,25.0,0.628571429,28.816628576479914 +2019-07-27 17:30:00,25.0,0.630687831,28.817786761473954 +2019-07-27 17:45:00,25.0,0.630687831,28.81894445541543 +2019-07-27 18:00:00,25.0,0.628571429,28.820101658155433 +2019-07-27 18:15:00,25.0,0.629100529,28.82125836954512 +2019-07-27 18:30:00,25.0,0.630687831,28.82241458943572 +2019-07-27 18:45:00,25.0,0.632804233,28.82357031767851 +2019-07-27 19:00:00,25.0,0.63015873,28.824725554124836 +2019-07-27 19:15:00,25.0,0.628042328,28.825880298626117 +2019-07-27 19:30:00,25.0,0.628571429,28.82703455103382 +2019-07-27 19:45:00,25.0,0.626455026,28.828188311199487 +2019-07-27 20:00:00,25.0,0.62962963,28.829341578974713 +2019-07-27 20:15:00,25.0,0.633333333,28.830494354211165 +2019-07-27 20:30:00,25.0,0.636507937,28.831646636760574 +2019-07-27 20:45:00,25.0,0.647619048,28.832798426474724 +2019-07-27 21:00:00,25.0,0.647089947,28.833949723205478 +2019-07-27 21:15:00,25.0,0.644444444,28.835100526804744 +2019-07-27 21:30:00,25.0,0.644444444,28.83625083712451 +2019-07-27 21:45:00,25.0,0.653968254,28.837400654016815 +2019-07-27 22:00:00,25.0,0.656613757,28.83854997733377 +2019-07-27 22:15:00,25.0,0.656084656,28.83969880692755 +2019-07-27 22:30:00,25.0,0.659259259,28.840847142650382 +2019-07-27 22:45:00,25.0,0.658201058,28.84199498435457 +2019-07-27 23:00:00,25.0,0.652380952,28.843142331892473 +2019-07-27 23:15:00,25.0,0.649206349,28.84428918511652 +2019-07-27 23:30:00,25.0,0.646031746,28.845435543879198 +2019-07-27 23:45:00,25.0,0.646031746,28.846581408033053 +2019-07-28 00:00:00,25.0,0.639153439,28.847726777430715 +2019-07-28 00:15:00,25.0,0.621164021,28.848871651924853 +2019-07-28 00:30:00,25.0,0.611640212,28.850016031368217 +2019-07-28 00:45:00,25.0,0.60952381,28.85115991561361 +2019-07-28 01:00:00,25.0,0.60952381,28.852303304513907 +2019-07-28 01:15:00,25.0,0.605820106,28.853446197922036 +2019-07-28 01:30:00,25.0,0.602645503,28.854588595691 +2019-07-28 01:45:00,25.0,0.596296296,28.855730497673864 +2019-07-28 02:00:00,25.0,0.593121693,28.85687190372375 +2019-07-28 02:15:00,25.0,0.595767196,28.858012813693847 +2019-07-28 02:30:00,25.0,0.597354497,28.85915322743741 +2019-07-28 02:45:00,25.0,0.586772487,28.86029314480776 +2019-07-28 03:00:00,25.0,0.588359788,28.86143256565827 +2019-07-28 03:15:00,25.0,0.584656085,28.862571489842388 +2019-07-28 03:30:00,25.0,0.585185185,28.86370991721363 +2019-07-28 03:45:00,25.0,0.587301587,28.86484784762556 +2019-07-28 04:00:00,25.0,0.587830688,28.86598528093182 +2019-07-28 04:15:00,25.0,0.576719577,28.867122216986107 +2019-07-28 04:30:00,25.0,0.568253968,28.868258655642187 +2019-07-28 04:45:00,25.0,0.57037037,28.869394596753892 +2019-07-28 05:00:00,25.0,0.582539683,28.870530040175108 +2019-07-28 05:15:00,25.0,0.592063492,28.871664985759796 +2019-07-28 05:30:00,25.0,0.578835979,28.872799433361976 +2019-07-28 05:45:00,25.0,0.561904762,28.873933382835737 +2019-07-28 06:00:00,25.0,0.541269841,28.87506683403522 +2019-07-28 06:15:00,25.0,0.523280423,28.87619978681464 +2019-07-28 06:30:00,25.0,0.505820106,28.877332241028277 +2019-07-28 06:45:00,25.0,0.484126984,28.878464196530473 +2019-07-28 07:00:00,25.0,0.467195767,28.879595653175627 +2019-07-28 07:15:00,25.0,0.478306878,28.880726610818215 +2019-07-28 07:30:00,25.0,0.461375661,28.881857069312765 +2019-07-28 07:45:00,25.0,0.461375661,28.88298702851388 +2019-07-28 08:00:00,25.0,0.452910053,28.88411648827622 +2019-07-28 08:15:00,25.0,0.42962963,28.88524544845451 +2019-07-28 08:30:00,25.0,0.416931217,28.88637390890354 +2019-07-28 08:45:00,25.0,0.41005291,28.887501869478168 +2019-07-28 09:00:00,25.0,0.413227513,28.88862933003331 +2019-07-28 09:15:00,25.0,0.422222222,28.889756290423954 +2019-07-28 09:30:00,25.0,0.395767196,28.890882750505142 +2019-07-28 09:45:00,25.0,0.39047619,28.892008710131986 +2019-07-28 10:00:00,25.0,0.405820106,28.89313416915967 +2019-07-28 10:15:00,25.0,0.404761905,28.894259127443426 +2019-07-28 10:30:00,25.0,0.412698413,28.89538358483857 +2019-07-28 10:45:00,25.0,0.416931217,28.896507541200457 +2019-07-28 11:00:00,25.0,0.408465608,28.89763099638453 +2019-07-28 11:15:00,25.0,0.425925926,28.89875395024629 +2019-07-28 11:30:00,25.0,0.421693122,28.899876402641297 +2019-07-28 11:45:00,25.0,0.394708995,28.900998353425177 +2019-07-28 12:00:00,25.0,0.387830688,28.902119802453623 +2019-07-28 12:15:00,25.0,0.37037037,28.90324074958239 +2019-07-28 12:30:00,25.0,0.35978836,28.904361194667306 +2019-07-28 12:45:00,25.0,0.351851852,28.905481137564248 +2019-07-28 13:00:00,25.0,0.35026455,28.906600578129172 +2019-07-28 13:15:00,25.0,0.335978836,28.90771951621809 +2019-07-28 13:30:00,25.0,0.322222222,28.908837951687087 +2019-07-28 13:45:00,25.0,0.319047619,28.909955884392296 +2019-07-28 14:00:00,25.0,0.314285714,28.911073314189938 +2019-07-28 14:15:00,25.0,0.305820106,28.91219024093628 +2019-07-28 14:30:00,25.0,0.306878307,28.913306664487664 +2019-07-28 14:45:00,25.0,0.294708995,28.91442258470049 +2019-07-28 15:00:00,25.0,0.266137566,28.915538001431223 +2019-07-28 15:15:00,25.0,0.247089947,28.916652914536407 +2019-07-28 15:30:00,25.0,0.239153439,28.917767323872624 +2019-07-28 15:45:00,25.0,0.232804233,28.91888122929655 +2019-07-28 16:00:00,25.0,0.224867725,28.9199946306649 +2019-07-28 16:15:00,25.0,0.217460317,28.921107527834472 +2019-07-28 16:30:00,25.0,0.212698413,28.922219920662123 +2019-07-28 16:45:00,25.0,0.207407407,28.92333180900477 +2019-07-28 17:00:00,25.0,0.202645503,28.924443192719412 +2019-07-28 17:15:00,25.0,0.205291005,28.925554071663083 +2019-07-28 17:30:00,25.0,0.207936508,28.92666444569291 +2019-07-28 17:45:00,25.0,0.195238095,28.92777431466607 +2019-07-28 18:00:00,25.0,0.184126984,28.92888367843981 +2019-07-28 18:15:00,25.0,0.186243386,28.929992536871442 +2019-07-28 18:30:00,25.0,0.188888889,28.931100889818342 +2019-07-28 18:45:00,25.0,0.195767196,28.93220873713795 +2019-07-28 19:00:00,25.0,0.198941799,28.933316078687774 +2019-07-28 19:15:00,25.0,0.201058201,28.93442291432538 +2019-07-28 19:30:00,25.0,0.203174603,28.935529243908412 +2019-07-28 19:45:00,25.0,0.205291005,28.936635067294564 +2019-07-28 20:00:00,25.0,0.21005291,28.93774038434161 +2019-07-28 20:15:00,25.0,0.207936508,28.938845194907373 +2019-07-28 20:30:00,25.0,0.200529101,28.939949498849757 +2019-07-28 20:45:00,25.0,0.193650794,28.94105329602672 +2019-07-28 21:00:00,25.0,0.186243386,28.942156586296292 +2019-07-28 21:15:00,25.0,0.182539683,28.94325936951656 +2019-07-28 21:30:00,25.0,0.185185185,28.944361645545683 +2019-07-28 21:45:00,25.0,0.175661376,28.945463414241893 +2019-07-28 22:00:00,25.0,0.164550265,28.946564675463463 +2019-07-28 22:15:00,25.0,0.156084656,28.947665429068756 +2019-07-28 22:30:00,25.0,0.148148148,28.94876567491619 +2019-07-28 22:45:00,25.0,0.134920635,28.949865412864245 +2019-07-28 23:00:00,25.0,0.120634921,28.950964642771474 +2019-07-28 23:15:00,25.0,0.107407407,28.952063364496485 +2019-07-28 23:30:00,25.0,0.099470899,28.95316157789797 +2019-07-28 23:45:00,25.0,0.096825397,28.95425928283466 +2019-07-29 00:00:00,25.0,0.091534392,28.955356479165374 +2019-07-29 00:15:00,25.0,0.098412698,28.95645316674899 +2019-07-29 00:30:00,25.0,0.101587302,28.95754934544444 +2019-07-29 00:45:00,25.0,0.110582011,28.958645015110744 +2019-07-29 01:00:00,25.0,0.111640212,28.95974017560696 +2019-07-29 01:15:00,25.0,0.112169312,28.96083482679224 +2019-07-29 01:30:00,25.0,0.112169312,28.961928968525775 +2019-07-29 01:45:00,25.0,0.10952381,28.963022600666847 +2019-07-29 02:00:00,25.0,0.12010582,28.964115723074777 +2019-07-29 02:15:00,25.0,0.132275132,28.96520833560897 +2019-07-29 02:30:00,25.0,0.134920635,28.9663004381289 +2019-07-29 02:45:00,25.0,0.129100529,28.967392030494086 +2019-07-29 03:00:00,25.0,0.118518519,28.968483112564133 +2019-07-29 03:15:00,25.0,0.122751323,28.969573684198696 +2019-07-29 03:30:00,25.0,0.122751323,28.970663745257514 +2019-07-29 03:45:00,25.0,0.112169312,28.97175329560037 +2019-07-29 04:00:00,25.0,0.10952381,28.972842335087126 +2019-07-29 04:15:00,25.0,0.105820106,28.973930863577714 +2019-07-29 04:30:00,25.0,0.096296296,28.97501888093212 +2019-07-29 04:45:00,25.0,0.083068783,28.976106387010397 +2019-07-29 05:00:00,25.0,0.079365079,28.977193381672674 +2019-07-29 05:15:00,25.0,0.07989418,28.97827986477914 +2019-07-29 05:30:00,25.0,0.082539683,28.979365836190038 +2019-07-29 05:45:00,25.0,0.084656085,28.9804512957657 +2019-07-29 06:00:00,25.0,0.089417989,28.981536243366506 +2019-07-29 06:15:00,25.0,0.092063492,28.98262067885291 +2019-07-29 06:30:00,25.0,0.091534392,28.983704602085428 +2019-07-29 06:45:00,25.0,0.087830688,28.98478801292464 +2019-07-29 07:00:00,25.0,0.092592593,28.985870911231203 +2019-07-29 07:15:00,25.0,0.1,28.986953296865824 +2019-07-29 07:30:00,25.0,0.102116402,28.98803516968929 +2019-07-29 07:45:00,25.0,0.09047619,28.989116529562445 +2019-07-29 08:00:00,25.0,0.077248677,28.990197376346202 +2019-07-29 08:15:00,25.0,0.073544974,28.991277709901542 +2019-07-29 08:30:00,25.0,0.069312169,28.992357530089507 +2019-07-29 08:45:00,25.0,0.067195767,28.99343683677121 +2019-07-29 09:00:00,25.0,0.067724868,28.99451562980783 +2019-07-29 09:15:00,25.0,0.066666667,28.995593909060606 +2019-07-29 09:30:00,25.0,0.061375661,28.99667167439085 +2019-07-29 09:45:00,25.0,0.063492063,28.997748925659934 +2019-07-29 10:00:00,25.0,0.063492063,28.99882566272931 +2019-07-29 10:15:00,25.0,0.057671958,28.999901885460467 +2019-07-29 10:30:00,25.0,0.052910053,29.000977593714993 +2019-07-29 10:45:00,25.0,0.047089947,29.00205278735453 +2019-07-29 11:00:00,25.0,0.046031746,29.00312746624077 +2019-07-29 11:15:00,25.0,0.04021164,29.0042016302355 +2019-07-29 11:30:00,25.0,0.032275132,29.005275279200546 +2019-07-29 11:45:00,25.0,0.02962963,29.006348412997824 +2019-07-29 12:00:00,25.0,0.028571429,29.007421031489297 +2019-07-29 12:15:00,25.0,0.029100529,29.008493134537005 +2019-07-29 12:30:00,25.0,0.031216931,29.009564722003056 +2019-07-29 12:45:00,25.0,0.034920635,29.01063579374961 +2019-07-29 13:00:00,25.0,0.034920635,29.011706349638914 +2019-07-29 13:15:00,25.0,0.034920635,29.012776389533265 +2019-07-29 13:30:00,25.0,0.036507937,29.013845913295032 +2019-07-29 13:45:00,25.0,0.038095238,29.01491492078665 +2019-07-29 14:00:00,25.0,0.037566138,29.01598341187062 +2019-07-29 14:15:00,25.0,0.032275132,29.01705138640952 +2019-07-29 14:30:00,25.0,0.03015873,29.01811884426597 +2019-07-29 14:45:00,25.0,0.028571429,29.019185785302682 +2019-07-29 15:00:00,25.0,0.024338624,29.020252209382416 +2019-07-29 15:15:00,25.0,0.023809524,29.02131811636801 +2019-07-29 15:30:00,25.0,0.020634921,29.022383506122367 +2019-07-29 15:45:00,25.0,0.017989418,29.023448378508448 +2019-07-29 16:00:00,25.0,0.02010582,29.024512733389294 +2019-07-29 16:15:00,25.0,0.022222222,29.025576570627994 +2019-07-29 16:30:00,25.0,0.022751323,29.02663989008773 +2019-07-29 16:45:00,25.0,0.022222222,29.02770269163172 +2019-07-29 17:00:00,25.0,0.021693122,29.028764975123273 +2019-07-29 17:15:00,25.0,0.024338624,29.029826740425758 +2019-07-29 17:30:00,25.0,0.02010582,29.0308879874026 +2019-07-29 17:45:00,25.0,0.017460317,29.031948715917306 +2019-07-29 18:00:00,25.0,0.016931217,29.033008925833435 +2019-07-29 18:15:00,25.0,0.019047619,29.034068617014633 +2019-07-29 18:30:00,25.0,0.018518519,29.035127789324584 +2019-07-29 18:45:00,25.0,0.017460317,29.03618644262707 +2019-07-29 19:00:00,25.0,0.016931217,29.037244576785913 +2019-07-29 19:15:00,25.0,0.018518519,29.038302191665018 +2019-07-29 19:30:00,25.0,0.019047619,29.039359287128356 +2019-07-29 19:45:00,25.0,0.018518519,29.040415863039954 +2019-07-29 20:00:00,25.0,0.018518519,29.041471919263916 +2019-07-29 20:15:00,25.0,0.018518519,29.04252745566441 +2019-07-29 20:30:00,25.0,0.017460317,29.04358247210567 +2019-07-29 20:45:00,25.0,0.017460317,29.044636968451996 +2019-07-29 21:00:00,25.0,0.013227513,29.045690944567756 +2019-07-29 21:15:00,25.0,0.008994709,29.04674440031739 +2019-07-29 21:30:00,25.0,0.007407407,29.047797335565395 +2019-07-29 21:45:00,25.0,0.006878307,29.04884975017634 +2019-07-29 22:00:00,25.0,0.004761905,29.049901644014867 +2019-07-29 22:15:00,25.0,0.003703704,29.05095301694567 +2019-07-29 22:30:00,25.0,0.002645503,29.052003868833527 +2019-07-29 22:45:00,25.0,0.002116402,29.05305419954327 +2019-07-29 23:00:00,25.0,0.000529101,29.054104008939806 +2019-07-29 23:15:00,25.0,0.000529101,29.0551532968881 +2019-07-29 23:30:00,25.0,0.001058201,29.056202063253203 +2019-07-29 23:45:00,25.0,0.0,29.057250307900205 +2019-07-30 00:00:00,25.0,0.0,29.05829803069429 +2019-07-30 00:15:00,25.0,0.000529101,29.05934523150069 +2019-07-30 00:30:00,25.0,0.001058201,29.060391910184713 +2019-07-30 00:45:00,25.0,0.002116402,29.061438066611743 +2019-07-30 01:00:00,25.0,0.003174603,29.062483700647203 +2019-07-30 01:15:00,25.0,0.002645503,29.063528812156612 +2019-07-30 01:30:00,25.0,0.004232804,29.064573401005546 +2019-07-30 01:45:00,25.0,0.005820106,29.065617467059646 +2019-07-30 02:00:00,25.0,0.006878307,29.06666101018462 +2019-07-30 02:15:00,25.0,0.007936508,29.067704030246247 +2019-07-30 02:30:00,25.0,0.006878307,29.06874652711037 +2019-07-30 02:45:00,25.0,0.005820106,29.0697885006429 +2019-07-30 03:00:00,25.0,0.004761905,29.07082995070982 +2019-07-30 03:15:00,25.0,0.005291005,29.07187087717717 +2019-07-30 03:30:00,25.0,0.005291005,29.072911279911068 +2019-07-30 03:45:00,25.0,0.006878307,29.073951158777696 +2019-07-30 04:00:00,25.0,0.007936508,29.074990513643296 +2019-07-30 04:15:00,25.0,0.008994709,29.076029344374195 +2019-07-30 04:30:00,25.0,0.01005291,29.077067650836764 +2019-07-30 04:45:00,25.0,0.010582011,29.07810543289746 +2019-07-30 05:00:00,25.0,0.011640212,29.0791426904228 +2019-07-30 05:15:00,25.0,0.013756614,29.080179423279368 +2019-07-30 05:30:00,25.0,0.012698413,29.081215631333826 +2019-07-30 05:45:00,25.0,0.011111111,29.08225131445288 +2019-07-30 06:00:00,25.0,0.011111111,29.083286472503328 +2019-07-30 06:15:00,25.0,0.00952381,29.08432110535202 +2019-07-30 06:30:00,25.0,0.006349206,29.085355212865885 +2019-07-30 06:45:00,25.0,0.004761905,29.08638879491191 +2019-07-30 07:00:00,25.0,0.003174603,29.087421851357153 +2019-07-30 07:15:00,25.0,0.003174603,29.08845438206874 +2019-07-30 07:30:00,25.0,0.003174603,29.08948638691387 +2019-07-30 07:45:00,25.0,0.003703704,29.090517865759793 +2019-07-30 08:00:00,25.0,0.004232804,29.091548818473846 +2019-07-30 08:15:00,25.0,0.004232804,29.092579244923424 +2019-07-30 08:30:00,25.0,0.004232804,29.093609144975993 +2019-07-30 08:45:00,25.0,0.005291005,29.09463851849908 +2019-07-30 09:00:00,25.0,0.005291005,29.095667365360292 +2019-07-30 09:15:00,25.0,0.003703704,29.096695685427285 +2019-07-30 09:30:00,25.0,0.003703704,29.097723478567808 +2019-07-30 09:45:00,25.0,0.003174603,29.098750744649653 +2019-07-30 10:00:00,25.0,0.002645503,29.09977748354069 +2019-07-30 10:15:00,25.0,0.003174603,29.10080369510887 +2019-07-30 10:30:00,25.0,0.004761905,29.101829379222185 +2019-07-30 10:45:00,25.0,0.006878307,29.10285453574872 +2019-07-30 11:00:00,25.0,0.008465608,29.10387916455661 +2019-07-30 11:15:00,25.0,0.010582011,29.104903265514064 +2019-07-30 11:30:00,25.0,0.011111111,29.105926838489367 +2019-07-30 11:45:00,25.0,0.013756614,29.106949883350858 +2019-07-30 12:00:00,25.0,0.021164021,29.107972399966954 +2019-07-30 12:15:00,25.0,0.026455026,29.108994388206135 +2019-07-30 12:30:00,25.0,0.037037037,29.110015847936953 +2019-07-30 12:45:00,25.0,0.051851852,29.111036779028023 +2019-07-30 13:00:00,25.0,0.060846561,29.112057181348028 +2019-07-30 13:15:00,25.0,0.076190476,29.11307705476573 +2019-07-30 13:30:00,25.0,0.086243386,29.11409639914994 +2019-07-30 13:45:00,25.0,0.094179894,29.115115214369556 +2019-07-30 14:00:00,25.0,0.099470899,29.116133500293532 +2019-07-30 14:15:00,25.0,0.107936508,29.117151256790894 +2019-07-30 14:30:00,25.0,0.117460317,29.118168483730734 +2019-07-30 14:45:00,25.0,0.124867725,29.119185180982218 +2019-07-30 15:00:00,25.0,0.129100529,29.12020134841457 +2019-07-30 15:15:00,25.0,0.137566138,29.121216985897096 +2019-07-30 15:30:00,25.0,0.138624339,29.12223209329916 +2019-07-30 15:45:00,25.0,0.137566138,29.12324667049019 +2019-07-30 16:00:00,25.0,0.142328042,29.1242607173397 +2019-07-30 16:15:00,25.0,0.142328042,29.12527423371725 +2019-07-30 16:30:00,25.0,0.138095238,29.126287219492482 +2019-07-30 16:45:00,25.0,0.13968254,29.12729967453511 +2019-07-30 17:00:00,25.0,0.141798942,29.1283115987149 +2019-07-30 17:15:00,25.0,0.152910053,29.129322991901702 +2019-07-30 17:30:00,25.0,0.166666667,29.130333853965432 +2019-07-30 17:45:00,25.0,0.167724868,29.13134418477606 +2019-07-30 18:00:00,25.0,0.167195767,29.132353984203643 +2019-07-30 18:15:00,25.0,0.170899471,29.133363252118293 +2019-07-30 18:30:00,25.0,0.174603175,29.134371988390207 +2019-07-30 18:45:00,25.0,0.183597884,29.13538019288962 +2019-07-30 19:00:00,25.0,0.18042328,29.136387865486874 +2019-07-30 19:15:00,25.0,0.178306878,29.137395006052344 +2019-07-30 19:30:00,25.0,0.171428571,29.138401614456498 +2019-07-30 19:45:00,25.0,0.194708995,29.13940769056986 +2019-07-30 20:00:00,25.0,0.188359788,29.14041323426303 +2019-07-30 20:15:00,25.0,0.161375661,29.141418245406673 +2019-07-30 20:30:00,25.0,0.150793651,29.142422723871515 +2019-07-30 20:45:00,25.0,0.156084656,29.143426669528367 +2019-07-30 21:00:00,25.0,0.150793651,29.144430082248093 +2019-07-30 21:15:00,25.0,0.146031746,29.14543296190163 +2019-07-30 21:30:00,25.0,0.150793651,29.14643530835999 +2019-07-30 21:45:00,25.0,0.143386243,29.14743712149425 +2019-07-30 22:00:00,25.0,0.13968254,29.14843840117555 +2019-07-30 22:15:00,25.0,0.131746032,29.149439147275103 +2019-07-30 22:30:00,25.0,0.128042328,29.150439359664198 +2019-07-30 22:45:00,25.0,0.125396825,29.151439038214175 +2019-07-30 23:00:00,25.0,0.124338624,29.15243818279646 +2019-07-30 23:15:00,25.0,0.134391534,29.153436793282538 +2019-07-30 23:30:00,25.0,0.133333333,29.154434869543966 +2019-07-30 23:45:00,25.0,0.135978836,29.15543241145237 +2019-07-31 00:00:00,25.0,0.135449735,29.15642941887944 +2019-07-31 00:15:00,25.0,0.124338624,29.15742589169695 +2019-07-31 00:30:00,25.0,0.115343915,29.158421829776714 +2019-07-31 00:45:00,25.0,0.116931217,29.159417232990645 +2019-07-31 01:00:00,25.0,0.125925926,29.16041210121071 +2019-07-31 01:15:00,25.0,0.128571429,29.161406434308944 +2019-07-31 01:30:00,25.0,0.128571429,29.162400232157456 +2019-07-31 01:45:00,25.0,0.131216931,29.163393494628416 +2019-07-31 02:00:00,25.0,0.137037037,29.164386221594075 +2019-07-31 02:15:00,25.0,0.13015873,29.165378412926742 +2019-07-31 02:30:00,25.0,0.135449735,29.1663700684988 +2019-07-31 02:45:00,25.0,0.132804233,29.167361188182703 +2019-07-31 03:00:00,25.0,0.149206349,29.168351771850965 +2019-07-31 03:15:00,25.0,0.17037037,29.169341819376182 +2019-07-31 03:30:00,25.0,0.192592593,29.170331330631008 +2019-07-31 03:45:00,25.0,0.213227513,29.171320305488166 +2019-07-31 04:00:00,25.0,0.224338624,29.17230874382046 +2019-07-31 04:15:00,25.0,0.234391534,29.173296645500745 +2019-07-31 04:30:00,25.0,0.238624339,29.174284010401962 +2019-07-31 04:45:00,25.0,0.227513228,29.17527083839711 +2019-07-31 05:00:00,25.0,0.228042328,29.17625712935927 +2019-07-31 05:15:00,25.0,0.237037037,29.17724288316157 +2019-07-31 05:30:00,25.0,0.241798942,29.178228099677227 +2019-07-31 05:45:00,25.0,0.234391534,29.17921277877952 +2019-07-31 06:00:00,25.0,0.247089947,29.180196920341793 +2019-07-31 06:15:00,25.0,0.266666667,29.18118052423747 +2019-07-31 06:30:00,25.0,0.282010582,29.182163590340032 +2019-07-31 06:45:00,25.0,0.287301587,29.18314611852304 +2019-07-31 07:00:00,25.0,0.289417989,29.184128108660115 +2019-07-31 07:15:00,25.0,0.295767196,29.18510956062495 +2019-07-31 07:30:00,25.0,0.288888889,29.186090474291312 +2019-07-31 07:45:00,25.0,0.269312169,29.187070849533033 +2019-07-31 08:00:00,25.0,0.255026455,29.188050686224017 +2019-07-31 08:15:00,25.0,0.234920635,29.189029984238225 +2019-07-31 08:30:00,25.0,0.224338624,29.190008743449713 +2019-07-31 08:45:00,25.0,0.224338624,29.190986963732577 +2019-07-31 09:00:00,25.0,0.228571429,29.191964644961 +2019-07-31 09:15:00,25.0,0.223809524,29.192941787009236 +2019-07-31 09:30:00,25.0,0.221164021,29.193918389751595 +2019-07-31 09:45:00,25.0,0.214814815,29.19489445306247 +2019-07-31 10:00:00,25.0,0.197354497,29.195869976816315 +2019-07-31 10:15:00,25.0,0.18994709,29.196844960887656 +2019-07-31 10:30:00,25.0,0.184656085,29.197819405151087 +2019-07-31 10:45:00,25.0,0.18042328,29.198793309481275 +2019-07-31 11:00:00,25.0,0.174074074,29.19976667375295 +2019-07-31 11:15:00,25.0,0.164550265,29.20073949784092 +2019-07-31 11:30:00,25.0,0.165079365,29.201711781620062 +2019-07-31 11:45:00,25.0,0.165079365,29.20268352496531 +2019-07-31 12:00:00,25.0,0.171957672,29.20365472775168 +2019-07-31 12:15:00,25.0,0.16984127,29.20462538985425 +2019-07-31 12:30:00,25.0,0.160846561,29.20559551114818 +2019-07-31 12:45:00,25.0,0.161375661,29.206565091508683 +2019-07-31 13:00:00,25.0,0.164021164,29.207534130811048 +2019-07-31 13:15:00,25.0,0.15026455,29.208502628930646 +2019-07-31 13:30:00,25.0,0.162433862,29.209470585742892 +2019-07-31 13:45:00,25.0,0.176719577,29.210438001123293 +2019-07-31 14:00:00,25.0,0.21957672,29.21140487494742 +2019-07-31 14:15:00,25.0,0.200529101,29.212371207090907 +2019-07-31 14:30:00,25.0,0.174603175,29.213336997429465 +2019-07-31 14:45:00,25.0,0.217989418,29.214302245838866 +2019-07-31 15:00:00,25.0,0.24021164,29.21526695219497 +2019-07-31 15:15:00,25.0,0.249206349,29.216231116373677 +2019-07-31 15:30:00,25.0,0.238095238,29.21719473825099 +2019-07-31 15:45:00,25.0,0.20952381,29.218157817702956 +2019-07-31 16:00:00,25.0,0.18994709,29.219120354605703 +2019-07-31 16:15:00,25.0,0.163492063,29.220082348835433 +2019-07-31 16:30:00,25.0,0.159259259,29.2210438002684 +2019-07-31 16:45:00,25.0,0.174074074,29.222004708780958 +2019-07-31 17:00:00,25.0,0.178306878,29.222965074249494 +2019-07-31 17:15:00,25.0,0.172486772,29.223924896550493 +2019-07-31 17:30:00,25.0,0.169312169,29.2248841755605 +2019-07-31 17:45:00,25.0,0.186243386,29.22584291115613 +2019-07-31 18:00:00,25.0,0.191534392,29.22680110321407 +2019-07-31 18:15:00,25.0,0.202645503,29.22775875161107 +2019-07-31 18:30:00,25.0,0.198412698,29.22871585622396 +2019-07-31 18:45:00,25.0,0.202645503,29.22967241692963 +2019-07-31 19:00:00,25.0,0.198412698,29.230628433605048 +2019-07-31 19:15:00,25.0,0.176719577,29.231583906127256 +2019-07-31 19:30:00,25.0,0.18042328,29.232538834373344 +2019-07-31 19:45:00,25.0,0.178306878,29.2334932182205 +2019-07-31 20:00:00,25.0,0.16984127,29.234447057545957 +2019-07-31 20:15:00,25.0,0.158730159,29.235400352227042 +2019-07-31 20:30:00,25.0,0.143915344,29.23635310214113 +2019-07-31 20:45:00,25.0,0.131746032,29.237305307165684 +2019-07-31 21:00:00,25.0,0.133862434,29.238256967178227 +2019-07-31 21:15:00,25.0,0.13015873,29.23920808205635 +2019-07-31 21:30:00,25.0,0.135449735,29.240158651677724 +2019-07-31 21:45:00,25.0,0.135978836,29.24110867592008 +2019-07-31 22:00:00,25.0,0.123809524,29.24205815466123 +2019-07-31 22:15:00,25.0,0.114814815,29.24300708777904 +2019-07-31 22:30:00,25.0,0.111111111,29.243955475151466 +2019-07-31 22:45:00,25.0,0.107936508,29.24490331665652 +2019-07-31 23:00:00,25.0,0.112698413,29.245850612172287 +2019-07-31 23:15:00,25.0,0.12010582,29.246797361576924 +2019-07-31 23:30:00,25.0,0.13015873,29.24774356474866 +2019-07-31 23:45:00,25.0,0.140740741,29.24868922156579 +2019-08-01 00:00:00,25.0,0.156084656,29.249634331906684 +2019-08-01 00:15:00,25.0,0.167724868,29.250578895649777 +2019-08-01 00:30:00,25.0,0.173544974,29.251522912673583 +2019-08-01 00:45:00,25.0,0.18042328,29.252466382856667 +2019-08-01 01:00:00,25.0,0.186243386,29.253409306077693 +2019-08-01 01:15:00,25.0,0.194179894,29.254351682215372 +2019-08-01 01:30:00,25.0,0.198941799,29.255293511148494 +2019-08-01 01:45:00,25.0,0.193121693,29.25623479275592 +2019-08-01 02:00:00,25.0,0.186772487,29.257175526916576 +2019-08-01 02:15:00,25.0,0.192063492,29.258115713509472 +2019-08-01 02:30:00,25.0,0.213227513,29.259055352413668 +2019-08-01 02:45:00,25.0,0.23015873,29.259994443508315 +2019-08-01 03:00:00,25.0,0.251851852,29.26093298667262 +2019-08-01 03:15:00,25.0,0.264550265,29.26187098178586 +2019-08-01 03:30:00,25.0,0.266137566,29.262808428727404 +2019-08-01 03:45:00,25.0,0.253439153,29.26374532737666 +2019-08-01 04:00:00,25.0,0.247619048,29.26468167761313 +2019-08-01 04:15:00,25.0,0.247619048,29.265617479316372 +2019-08-01 04:30:00,25.0,0.244973545,29.26655273236603 +2019-08-01 04:45:00,25.0,0.223280423,29.267487436641797 +2019-08-01 05:00:00,25.0,0.21005291,29.26842159202346 +2019-08-01 05:15:00,25.0,0.191005291,29.269355198390866 +2019-08-01 05:30:00,25.0,0.175661376,29.270288255623925 +2019-08-01 05:45:00,25.0,0.169312169,29.271220763602628 +2019-08-01 06:00:00,25.0,0.152910053,29.272152722207036 +2019-08-01 06:15:00,25.0,0.147089947,29.27308413131728 +2019-08-01 06:30:00,25.0,0.149206349,29.27401499081355 +2019-08-01 06:45:00,25.0,0.147619048,29.274945300576128 +2019-08-01 07:00:00,25.0,0.142328042,29.27587506048535 +2019-08-01 07:15:00,25.0,0.139153439,29.27680427042163 +2019-08-01 07:30:00,25.0,0.14021164,29.277732930265447 +2019-08-01 07:45:00,25.0,0.142857143,29.278661039897358 +2019-08-01 08:00:00,25.0,0.142328042,29.27958859919799 +2019-08-01 08:15:00,25.0,0.143915344,29.280515608048034 +2019-08-01 08:30:00,25.0,0.145502646,29.281442066328253 +2019-08-01 08:45:00,25.0,0.151322751,29.28236797391949 +2019-08-01 09:00:00,25.0,0.154497354,29.283293330702655 +2019-08-01 09:15:00,25.0,0.147619048,29.28421813655872 +2019-08-01 09:30:00,25.0,0.140740741,29.285142391368733 +2019-08-01 09:45:00,25.0,0.147089947,29.28606609501382 +2019-08-01 10:00:00,25.0,0.14973545,29.286989247375168 +2019-08-01 10:15:00,25.0,0.140740741,29.28791184833404 +2019-08-01 10:30:00,25.0,0.132275132,29.288833897771774 +2019-08-01 10:45:00,25.0,0.13015873,29.289755395569763 +2019-08-01 11:00:00,25.0,0.122222222,29.290676341609494 +2019-08-01 11:15:00,25.0,0.113756614,29.2915967357725 +2019-08-01 11:30:00,25.0,0.102645503,29.29251657794041 +2019-08-01 11:45:00,25.0,0.091534392,29.29343586799491 +2019-08-01 12:00:00,25.0,0.084656085,29.294354605817748 +2019-08-01 12:15:00,25.0,0.086772487,29.295272791290763 +2019-08-01 12:30:00,25.0,0.080952381,29.296190424295858 +2019-08-01 12:45:00,25.0,0.075661376,29.297107504714997 +2019-08-01 13:00:00,25.0,0.071428571,29.298024032430227 +2019-08-01 13:15:00,25.0,0.069312169,29.29894000732366 +2019-08-01 13:30:00,25.0,0.06984127,29.29985542927749 +2019-08-01 13:45:00,25.0,0.059259259,29.300770298173962 +2019-08-01 14:00:00,25.0,0.044444444,29.30168461389541 +2019-08-01 14:15:00,25.0,0.033333333,29.302598376324227 +2019-08-01 14:30:00,25.0,0.028571429,29.30351158534289 +2019-08-01 14:45:00,25.0,0.026984127,29.30442424083393 +2019-08-01 15:00:00,25.0,0.025925926,29.305336342679972 +2019-08-01 15:15:00,25.0,0.022751323,29.306247890763693 +2019-08-01 15:30:00,25.0,0.023280423,29.307158884967844 +2019-08-01 15:45:00,25.0,0.023809524,29.308069325175257 +2019-08-01 16:00:00,25.0,0.023809524,29.308979211268824 +2019-08-01 16:15:00,25.0,0.021693122,29.309888543131514 +2019-08-01 16:30:00,25.0,0.02010582,29.310797320646373 +2019-08-01 16:45:00,25.0,0.017989418,29.3117055436965 +2019-08-01 17:00:00,25.0,0.022222222,29.31261321216509 +2019-08-01 17:15:00,25.0,0.021693122,29.31352032593539 +2019-08-01 17:30:00,25.0,0.025925926,29.314426884890725 +2019-08-01 17:45:00,25.0,0.027513228,29.31533288891449 +2019-08-01 18:00:00,25.0,0.028042328,29.31623833789016 +2019-08-01 18:15:00,25.0,0.024867725,29.317143231701266 +2019-08-01 18:30:00,25.0,0.020634921,29.31804757023142 +2019-08-01 18:45:00,25.0,0.016402116,29.31895135336431 +2019-08-01 19:00:00,25.0,0.017460317,29.31985458098368 +2019-08-01 19:15:00,25.0,0.021164021,29.32075725297336 +2019-08-01 19:30:00,25.0,0.023809524,29.321659369217247 +2019-08-01 19:45:00,25.0,0.024338624,29.322560929599305 +2019-08-01 20:00:00,25.0,0.024867725,29.32346193400358 +2019-08-01 20:15:00,25.0,0.025925926,29.32436238231417 +2019-08-01 20:30:00,25.0,0.025925926,29.325262274415273 +2019-08-01 20:45:00,25.0,0.025396825,29.326161610191132 +2019-08-01 21:00:00,25.0,0.024867725,29.32706038952608 +2019-08-01 21:15:00,25.0,0.023280423,29.327958612304506 +2019-08-01 21:30:00,25.0,0.022222222,29.328856278410882 +2019-08-01 21:45:00,25.0,0.021164021,29.329753387729745 +2019-08-01 22:00:00,25.0,0.023280423,29.330649940145715 +2019-08-01 22:15:00,25.0,0.023280423,29.33154593554347 +2019-08-01 22:30:00,25.0,0.025925926,29.33244137380776 +2019-08-01 22:45:00,25.0,0.029100529,29.333336254823426 +2019-08-01 23:00:00,25.0,0.029100529,29.33423057847535 +2019-08-01 23:15:00,25.0,0.030687831,29.33512434464851 +2019-08-01 23:30:00,25.0,0.031746032,29.33601755322795 +2019-08-01 23:45:00,25.0,0.032804233,29.33691020409878 +2019-08-02 00:00:00,25.0,0.030687831,29.337802297146183 +2019-08-02 00:15:00,25.0,0.026984127,29.33869383225542 +2019-08-02 00:30:00,25.0,0.024338624,29.33958480931182 +2019-08-02 00:45:00,25.0,0.023809524,29.340475228200777 +2019-08-02 01:00:00,25.0,0.021693122,29.34136508880777 +2019-08-02 01:15:00,25.0,0.021164021,29.342254391018344 +2019-08-02 01:30:00,25.0,0.02010582,29.343143134718108 +2019-08-02 01:45:00,25.0,0.019047619,29.344031319792755 +2019-08-02 02:00:00,25.0,0.017460317,29.344918946128047 +2019-08-02 02:15:00,25.0,0.014814815,29.345806013609806 +2019-08-02 02:30:00,25.0,0.012698413,29.346692522123945 +2019-08-02 02:45:00,25.0,0.008465608,29.34757847155643 +2019-08-02 03:00:00,25.0,0.006349206,29.34846386179332 +2019-08-02 03:15:00,25.0,0.006878307,29.349348692720724 +2019-08-02 03:30:00,25.0,0.007407407,29.350232964224837 +2019-08-02 03:45:00,25.0,0.006349206,29.35111667619192 +2019-08-02 04:00:00,25.0,0.006349206,29.351999828508312 +2019-08-02 04:15:00,25.0,0.005820106,29.352882421060418 +2019-08-02 04:30:00,25.0,0.007407407,29.353764453734712 +2019-08-02 04:45:00,25.0,0.00952381,29.354645926417753 +2019-08-02 05:00:00,25.0,0.010582011,29.355526838996155 +2019-08-02 05:15:00,25.0,0.011640212,29.356407191356624 +2019-08-02 05:30:00,25.0,0.013227513,29.35728698338592 +2019-08-02 05:45:00,25.0,0.014814815,29.35816621497088 +2019-08-02 06:00:00,25.0,0.018518519,29.35904488599842 +2019-08-02 06:15:00,25.0,0.020634921,29.359922996355518 +2019-08-02 06:30:00,25.0,0.026984127,29.360800545929237 +2019-08-02 06:45:00,25.0,0.033862434,29.3616775346067 +2019-08-02 07:00:00,25.0,0.03968254,29.362553962275108 +2019-08-02 07:15:00,25.0,0.042857143,29.36342982882173 +2019-08-02 07:30:00,25.0,0.045502646,29.364305134133915 +2019-08-02 07:45:00,25.0,0.047619048,29.365179878099074 +2019-08-02 08:00:00,25.0,0.037566138,29.366054060604696 +2019-08-02 08:15:00,25.0,0.042857143,29.366927681538346 +2019-08-02 08:30:00,25.0,0.046560847,29.367800740787654 +2019-08-02 08:45:00,25.0,0.05026455,29.368673238240326 +2019-08-02 09:00:00,25.0,0.050793651,29.36954517378414 +2019-08-02 09:15:00,25.0,0.053968254,29.370416547306938 +2019-08-02 09:30:00,25.0,0.050793651,29.371287358696655 +2019-08-02 09:45:00,25.0,0.044444444,29.372157607841274 +2019-08-02 10:00:00,25.0,0.039153439,29.37302729462887 +2019-08-02 10:15:00,25.0,0.034391534,29.373896418947574 +2019-08-02 10:30:00,25.0,0.033333333,29.374764980685605 +2019-08-02 10:45:00,25.0,0.033333333,29.37563297973124 +2019-08-02 11:00:00,25.0,0.030687831,29.37650041597284 +2019-08-02 11:15:00,25.0,0.028042328,29.377367289298828 +2019-08-02 11:30:00,25.0,0.024338624,29.378233599597706 +2019-08-02 11:45:00,25.0,0.022751323,29.379099346758053 +2019-08-02 12:00:00,25.0,0.022222222,29.37996453066851 +2019-08-02 12:15:00,25.0,0.021164021,29.380829151217796 +2019-08-02 12:30:00,25.0,0.020634921,29.3816932082947 +2019-08-02 12:45:00,25.0,0.020634921,29.382556701788083 +2019-08-02 13:00:00,25.0,0.02010582,29.38341963158689 +2019-08-02 13:15:00,25.0,0.020634921,29.384281997580118 +2019-08-02 13:30:00,25.0,0.027513228,29.385143799656852 +2019-08-02 13:45:00,25.0,0.037037037,29.386005037706248 +2019-08-02 14:00:00,25.0,0.046031746,29.386865711617524 +2019-08-02 14:15:00,25.0,0.058201058,29.387725821279986 +2019-08-02 14:30:00,25.0,0.071957672,29.388585366583 +2019-08-02 14:45:00,25.0,0.081481481,29.38944434741601 +2019-08-02 15:00:00,25.0,0.093650794,29.390302763668537 +2019-08-02 15:15:00,25.0,0.105291005,29.39116061523016 +2019-08-02 15:30:00,25.0,0.117989418,29.392017901990545 +2019-08-02 15:45:00,25.0,0.125396825,29.39287462383943 +2019-08-02 16:00:00,25.0,0.130687831,29.393730780666615 +2019-08-02 16:15:00,25.0,0.13968254,29.39458637236198 +2019-08-02 16:30:00,25.0,0.145502646,29.395441398815482 +2019-08-02 16:45:00,25.0,0.153968254,29.39629585991714 +2019-08-02 17:00:00,25.0,0.16031746,29.397149755557056 +2019-08-02 17:15:00,25.0,0.162962963,29.39800308562539 +2019-08-02 17:30:00,25.0,0.161375661,29.3988558500124 +2019-08-02 17:45:00,25.0,0.165608466,29.39970804860839 +2019-08-02 18:00:00,25.0,0.174074074,29.40055968130375 +2019-08-02 18:15:00,25.0,0.175132275,29.401410747988947 +2019-08-02 18:30:00,25.0,0.180952381,29.402261248554506 +2019-08-02 18:45:00,25.0,0.182539683,29.40311118289104 +2019-08-02 19:00:00,25.0,0.178835979,29.403960550889224 +2019-08-02 19:15:00,25.0,0.189417989,29.404809352439816 +2019-08-02 19:30:00,25.0,0.199470899,29.405657587433637 +2019-08-02 19:45:00,25.0,0.219047619,29.406505255761587 +2019-08-02 20:00:00,25.0,0.230687831,29.407352357314636 +2019-08-02 20:15:00,25.0,0.229100529,29.408198891983826 +2019-08-02 20:30:00,25.0,0.237566138,29.409044859660277 +2019-08-02 20:45:00,25.0,0.242328042,29.409890260235176 +2019-08-02 21:00:00,25.0,0.229100529,29.41073509359979 +2019-08-02 21:15:00,25.0,0.2,29.41157935964545 +2019-08-02 21:30:00,25.0,0.175661376,29.412423058263563 +2019-08-02 21:45:00,25.0,0.173544974,29.41326618934562 +2019-08-02 22:00:00,25.0,0.177248677,29.414108752783164 +2019-08-02 22:15:00,25.0,0.172486772,29.414950748467827 +2019-08-02 22:30:00,25.0,0.165608466,29.415792176291312 +2019-08-02 22:45:00,25.0,0.17037037,29.41663303614539 +2019-08-02 23:00:00,25.0,0.169312169,29.417473327921915 +2019-08-02 23:15:00,25.0,0.168783069,29.418313051512794 +2019-08-02 23:30:00,25.0,0.164021164,29.419152206810026 +2019-08-02 23:45:00,25.0,0.158201058,29.41999079370568 +2019-08-03 00:00:00,25.0,0.152910053,29.420828812091887 +2019-08-03 00:15:00,25.0,0.173544974,29.42166626186087 +2019-08-03 00:30:00,25.0,0.184126984,29.4225031429049 +2019-08-03 00:45:00,25.0,0.180952381,29.423339455116356 +2019-08-03 01:00:00,25.0,0.167195767,29.424175198387648 +2019-08-03 01:15:00,25.0,0.152380952,29.425010372611293 +2019-08-03 01:30:00,25.0,0.150793651,29.425844977679866 +2019-08-03 01:45:00,25.0,0.145502646,29.426679013486016 +2019-08-03 02:00:00,25.0,0.144444444,29.427512479922473 +2019-08-03 02:15:00,25.0,0.152910053,29.42834537688203 +2019-08-03 02:30:00,25.0,0.162962963,29.42917770425756 +2019-08-03 02:45:00,25.0,0.16984127,29.430009461942007 +2019-08-03 03:00:00,25.0,0.170899471,29.430840649828387 +2019-08-03 03:15:00,25.0,0.166137566,29.43167126780979 +2019-08-03 03:30:00,25.0,0.167724868,29.432501315779383 +2019-08-03 03:45:00,25.0,0.169312169,29.4333307936304 +2019-08-03 04:00:00,25.0,0.165079365,29.434159701256153 +2019-08-03 04:15:00,25.0,0.158730159,29.434988038550028 +2019-08-03 04:30:00,25.0,0.152380952,29.43581580540548 +2019-08-03 04:45:00,25.0,0.154497354,29.43664300171604 +2019-08-03 05:00:00,25.0,0.148677249,29.437469627375314 +2019-08-03 05:15:00,25.0,0.143386243,29.438295682276976 +2019-08-03 05:30:00,25.0,0.141798942,29.43912116631478 +2019-08-03 05:45:00,25.0,0.134391534,29.439946079382548 +2019-08-03 06:00:00,25.0,0.132804233,29.440770421374182 +2019-08-03 06:15:00,25.0,0.140740741,29.441594192183647 +2019-08-03 06:30:00,25.0,0.138095238,29.442417391704993 +2019-08-03 06:45:00,25.0,0.131746032,29.443240019832334 +2019-08-03 07:00:00,25.0,0.138095238,29.444062076459865 +2019-08-03 07:15:00,25.0,0.144444444,29.44488356148185 +2019-08-03 07:30:00,25.0,0.149206349,29.445704474792628 +2019-08-03 07:45:00,25.0,0.144973545,29.44652481628661 +2019-08-03 08:00:00,25.0,0.14021164,29.447344585858282 +2019-08-03 08:15:00,25.0,0.12962963,29.4481637834022 +2019-08-03 08:30:00,25.0,0.123280423,29.44898240881301 +2019-08-03 08:45:00,25.0,0.122751323,29.449800461985404 +2019-08-03 09:00:00,25.0,0.120634921,29.45061794281417 +2019-08-03 09:15:00,25.0,0.123809524,29.451434851194154 +2019-08-03 09:30:00,25.0,0.119047619,29.452251187020295 +2019-08-03 09:45:00,25.0,0.11957672,29.453066950187583 +2019-08-03 10:00:00,25.0,0.119047619,29.453882140591098 +2019-08-03 10:15:00,25.0,0.107936508,29.454696758125987 +2019-08-03 10:30:00,25.0,0.095238095,29.455510802687474 +2019-08-03 10:45:00,25.0,0.084126984,29.456324274170854 +2019-08-03 11:00:00,25.0,0.083068783,29.457137172471494 +2019-08-03 11:15:00,25.0,0.078835979,29.45794949748484 +2019-08-03 11:30:00,25.0,0.079365079,29.458761249106406 +2019-08-03 11:45:00,25.0,0.078835979,29.459572427231784 +2019-08-03 12:00:00,25.0,0.082010582,29.460383031756642 +2019-08-03 12:15:00,25.0,0.09047619,29.46119306257671 +2019-08-03 12:30:00,25.0,0.099470899,29.462002519587813 +2019-08-03 12:45:00,25.0,0.091005291,29.462811402685823 +2019-08-03 13:00:00,25.0,0.076719577,29.463619711766704 +2019-08-03 13:15:00,25.0,0.065608466,29.464427446726493 +2019-08-03 13:30:00,25.0,0.06031746,29.46523460746129 +2019-08-03 13:45:00,25.0,0.053439153,29.466041193867287 +2019-08-03 14:00:00,25.0,0.046560847,29.46684720584073 +2019-08-03 14:15:00,25.0,0.045502646,29.467652643277955 +2019-08-03 14:30:00,25.0,0.048677249,29.468457506075353 +2019-08-03 14:45:00,25.0,0.048677249,29.469261794129416 +2019-08-03 15:00:00,25.0,0.04973545,29.470065507336685 +2019-08-03 15:15:00,25.0,0.05026455,29.470868645593782 +2019-08-03 15:30:00,25.0,0.052380952,29.471671208797414 +2019-08-03 15:45:00,25.0,0.058730159,29.472473196844348 +2019-08-03 16:00:00,25.0,0.070899471,29.47327460963143 +2019-08-03 16:15:00,25.0,0.079365079,29.474075447055586 +2019-08-03 16:30:00,25.0,0.08042328,29.474875709013805 +2019-08-03 16:45:00,25.0,0.081481481,29.475675395403158 +2019-08-03 17:00:00,25.0,0.085714286,29.476474506120788 +2019-08-03 17:15:00,25.0,0.087830688,29.477273041063906 +2019-08-03 17:30:00,25.0,0.09047619,29.47807100012981 +2019-08-03 17:45:00,25.0,0.092592593,29.47886838321586 +2019-08-03 18:00:00,25.0,0.093650794,29.479665190219496 +2019-08-03 18:15:00,25.0,0.096825397,29.480461421038232 +2019-08-03 18:30:00,25.0,0.096296296,29.481257075569655 +2019-08-03 18:45:00,25.0,0.099470899,29.48205215371142 +2019-08-03 19:00:00,25.0,0.106878307,29.482846655361275 +2019-08-03 19:15:00,25.0,0.106878307,29.483640580417017 +2019-08-03 19:30:00,25.0,0.106349206,29.484433928776536 +2019-08-03 19:45:00,25.0,0.105291005,29.485226700337783 +2019-08-03 20:00:00,25.0,0.101587302,29.4860188949988 +2019-08-03 20:15:00,25.0,0.100529101,29.486810512657687 +2019-08-03 20:30:00,25.0,0.098412698,29.487601553212624 +2019-08-03 20:45:00,25.0,0.093121693,29.488392016561868 +2019-08-03 21:00:00,25.0,0.093650794,29.489181902603743 +2019-08-03 21:15:00,25.0,0.087301587,29.48997121123666 +2019-08-03 21:30:00,25.0,0.071428571,29.490759942359087 +2019-08-03 21:45:00,25.0,0.064021164,29.491548095869582 +2019-08-03 22:00:00,25.0,0.067195767,29.492335671666773 +2019-08-03 22:15:00,25.0,0.068783069,29.493122669649352 +2019-08-03 22:30:00,25.0,0.066666667,29.4939090897161 +2019-08-03 22:45:00,25.0,0.072486772,29.494694931765864 +2019-08-03 23:00:00,25.0,0.083597884,29.495480195697564 +2019-08-03 23:15:00,25.0,0.084656085,29.496264881410205 +2019-08-03 23:30:00,25.0,0.074603175,29.497048988802852 +2019-08-03 23:45:00,25.0,0.063492063,29.497832517774654 +2019-08-04 00:00:00,25.0,0.059259259,29.498615468224827 +2019-08-04 00:15:00,25.0,0.06031746,29.499397840052676 +2019-08-04 00:30:00,25.0,0.06031746,29.500179633157565 +2019-08-04 00:45:00,25.0,0.06031746,29.500960847438932 +2019-08-04 01:00:00,25.0,0.056613757,29.50174148279631 +2019-08-04 01:15:00,25.0,0.055026455,29.502521539129276 +2019-08-04 01:30:00,25.0,0.055555556,29.50330101633751 +2019-08-04 01:45:00,25.0,0.056613757,29.504079914320744 +2019-08-04 02:00:00,25.0,0.05978836,29.5048582329788 +2019-08-04 02:15:00,25.0,0.065079365,29.505635972211568 +2019-08-04 02:30:00,25.0,0.068253968,29.50641313191901 +2019-08-04 02:45:00,25.0,0.071428571,29.507189712001175 +2019-08-04 03:00:00,25.0,0.074074074,29.507965712358168 +2019-08-04 03:15:00,25.0,0.06984127,29.50874113289018 +2019-08-04 03:30:00,25.0,0.072486772,29.50951597349748 +2019-08-04 03:45:00,25.0,0.073544974,29.5102902340804 +2019-08-04 04:00:00,25.0,0.068783069,29.511063914539353 +2019-08-04 04:15:00,25.0,0.067195767,29.51183701477483 +2019-08-04 04:30:00,25.0,0.069312169,29.512609534687392 +2019-08-04 04:45:00,25.0,0.079365079,29.513381474177674 +2019-08-04 05:00:00,25.0,0.078835979,29.51415283314639 +2019-08-04 05:15:00,25.0,0.074074074,29.514923611494325 +2019-08-04 05:30:00,25.0,0.071428571,29.51569380912234 +2019-08-04 05:45:00,25.0,0.071957672,29.516463425931367 +2019-08-04 06:00:00,25.0,0.081481481,29.517232461822417 +2019-08-04 06:15:00,25.0,0.087830688,29.518000916696582 +2019-08-04 06:30:00,25.0,0.083068783,29.518768790455013 +2019-08-04 06:45:00,25.0,0.073544974,29.51953608299895 +2019-08-04 07:00:00,25.0,0.073544974,29.520302794229696 +2019-08-04 07:15:00,25.0,0.071957672,29.52106892404864 +2019-08-04 07:30:00,25.0,0.07037037,29.52183447235724 +2019-08-04 07:45:00,25.0,0.066666667,29.52259943905703 +2019-08-04 08:00:00,25.0,0.059259259,29.52336382404961 +2019-08-04 08:15:00,25.0,0.058730159,29.524127627236673 +2019-08-04 08:30:00,25.0,0.06031746,29.524890848519977 +2019-08-04 08:45:00,25.0,0.065608466,29.52565348780135 +2019-08-04 09:00:00,25.0,0.06984127,29.526415544982697 +2019-08-04 09:15:00,25.0,0.074074074,29.527177019966008 +2019-08-04 09:30:00,25.0,0.076719577,29.527937912653336 +2019-08-04 09:45:00,25.0,0.083068783,29.52869822294681 +2019-08-04 10:00:00,25.0,0.087301587,29.529457950748647 +2019-08-04 10:15:00,25.0,0.086243386,29.53021709596112 +2019-08-04 10:30:00,25.0,0.083068783,29.53097565848659 +2019-08-04 10:45:00,25.0,0.083597884,29.531733638227482 +2019-08-04 11:00:00,25.0,0.086243386,29.532491035086316 +2019-08-04 11:15:00,25.0,0.084656085,29.533247848965665 +2019-08-04 11:30:00,25.0,0.082010582,29.534004079768188 +2019-08-04 11:45:00,25.0,0.077777778,29.53475972739661 +2019-08-04 12:00:00,25.0,0.075132275,29.535514791753755 +2019-08-04 12:15:00,25.0,0.076719577,29.536269272742487 +2019-08-04 12:30:00,25.0,0.075661376,29.53702317026577 +2019-08-04 12:45:00,25.0,0.079365079,29.537776484226637 +2019-08-04 13:00:00,25.0,0.073544974,29.538529214528193 +2019-08-04 13:15:00,25.0,0.068783069,29.539281361073623 +2019-08-04 13:30:00,25.0,0.068783069,29.54003292376618 +2019-08-04 13:45:00,25.0,0.068783069,29.5407839025092 +2019-08-04 14:00:00,25.0,0.066666667,29.54153429720609 +2019-08-04 14:15:00,25.0,0.064550265,29.54228410776033 +2019-08-04 14:30:00,25.0,0.062433862,29.543033334075478 +2019-08-04 14:45:00,25.0,0.05978836,29.54378197605517 +2019-08-04 15:00:00,25.0,0.054497354,29.54453003360311 +2019-08-04 15:15:00,25.0,0.049206349,29.545277506623083 +2019-08-04 15:30:00,25.0,0.046031746,29.546024395018947 +2019-08-04 15:45:00,25.0,0.03968254,29.546770698694637 +2019-08-04 16:00:00,25.0,0.033862434,29.547516417554156 +2019-08-04 16:15:00,25.0,0.036507937,29.548261551501597 +2019-08-04 16:30:00,25.0,0.041798942,29.54900610044111 +2019-08-04 16:45:00,25.0,0.042328042,29.549750064276942 +2019-08-04 17:00:00,25.0,0.046031746,29.550493442913385 +2019-08-04 17:15:00,25.0,0.048677249,29.551236236254837 +2019-08-04 17:30:00,25.0,0.042857143,29.55197844420576 +2019-08-04 17:45:00,25.0,0.032804233,29.552720066670673 +2019-08-04 18:00:00,25.0,0.029100529,29.553461103554206 +2019-08-04 18:15:00,25.0,0.03015873,29.554201554761033 +2019-08-04 18:30:00,25.0,0.028571429,29.554941420195924 +2019-08-04 18:45:00,25.0,0.028571429,29.555680699763705 +2019-08-04 19:00:00,25.0,0.026455026,29.556419393369296 +2019-08-04 19:15:00,25.0,0.028571429,29.557157500917686 +2019-08-04 19:30:00,25.0,0.02962963,29.557895022313932 +2019-08-04 19:45:00,25.0,0.029100529,29.558631957463177 +2019-08-04 20:00:00,25.0,0.026455026,29.559368306270628 +2019-08-04 20:15:00,25.0,0.025396825,29.560104068641586 +2019-08-04 20:30:00,25.0,0.022751323,29.560839244481404 +2019-08-04 20:45:00,25.0,0.023809524,29.561573833695526 +2019-08-04 21:00:00,25.0,0.022222222,29.56230783618947 +2019-08-04 21:15:00,25.0,0.018518519,29.563041251868825 +2019-08-04 21:30:00,25.0,0.017989418,29.563774080639256 +2019-08-04 21:45:00,25.0,0.017989418,29.5645063224065 +2019-08-04 22:00:00,25.0,0.01957672,29.56523797707639 +2019-08-04 22:15:00,25.0,0.023809524,29.565969044554805 +2019-08-04 22:30:00,25.0,0.025396825,29.566699524747715 +2019-08-04 22:45:00,25.0,0.023809524,29.567429417561172 +2019-08-04 23:00:00,25.0,0.022751323,29.568158722901288 +2019-08-04 23:15:00,25.0,0.022222222,29.56888744067426 +2019-08-04 23:30:00,25.0,0.023809524,29.569615570786354 +2019-08-04 23:45:00,25.0,0.026984127,29.570343113143927 +2019-08-05 00:00:00,25.0,0.028571429,29.571070067653395 +2019-08-05 00:15:00,25.0,0.030687831,29.571796434221252 +2019-08-05 00:30:00,25.0,0.031216931,29.572522212754077 +2019-08-05 00:45:00,25.0,0.031216931,29.57324740315851 +2019-08-05 01:00:00,25.0,0.032804233,29.57397200534129 +2019-08-05 01:15:00,25.0,0.037037037,29.574696019209203 +2019-08-05 01:30:00,25.0,0.040740741,29.57541944466913 +2019-08-05 01:45:00,25.0,0.047619048,29.576142281628023 +2019-08-05 02:00:00,25.0,0.050793651,29.57686452999291 +2019-08-05 02:15:00,25.0,0.053439153,29.57758618967089 +2019-08-05 02:30:00,25.0,0.056084656,29.578307260569144 +2019-08-05 02:45:00,25.0,0.06031746,29.579027742594928 +2019-08-05 03:00:00,25.0,0.063492063,29.579747635655565 +2019-08-05 03:15:00,25.0,0.061904762,29.580466939658468 +2019-08-05 03:30:00,25.0,0.063492063,29.581185654511117 +2019-08-05 03:45:00,25.0,0.068783069,29.581903780121067 +2019-08-05 04:00:00,25.0,0.073015873,29.58262131639595 +2019-08-05 04:15:00,25.0,0.076719577,29.58333826324348 +2019-08-05 04:30:00,25.0,0.074074074,29.584054620571436 +2019-08-05 04:45:00,25.0,0.073015873,29.58477038828768 +2019-08-05 05:00:00,25.0,0.066666667,29.585485566300154 +2019-08-05 05:15:00,25.0,0.05978836,29.586200154516863 +2019-08-05 05:30:00,25.0,0.05978836,29.586914152845896 +2019-08-05 05:45:00,25.0,0.059259259,29.587627561195422 +2019-08-05 06:00:00,25.0,0.05978836,29.588340379473674 +2019-08-05 06:15:00,25.0,0.062433862,29.58905260758897 +2019-08-05 06:30:00,25.0,0.066666667,29.589764245449704 +2019-08-05 06:45:00,25.0,0.074603175,29.590475292964342 +2019-08-05 07:00:00,25.0,0.074074074,29.591185750041426 +2019-08-05 07:15:00,25.0,0.068783069,29.59189561658958 +2019-08-05 07:30:00,25.0,0.062962963,29.592604892517492 +2019-08-05 07:45:00,25.0,0.054497354,29.593313577733937 +2019-08-05 08:00:00,25.0,0.044973545,29.59402167214777 +2019-08-05 08:15:00,25.0,0.04021164,29.594729175667897 +2019-08-05 08:30:00,25.0,0.037566138,29.59543608820333 +2019-08-05 08:45:00,25.0,0.034391534,29.596142409663145 +2019-08-05 09:00:00,25.0,0.031746032,29.596848139956485 +2019-08-05 09:15:00,25.0,0.030687831,29.597553278992585 +2019-08-05 09:30:00,25.0,0.026455026,29.59825782668074 +2019-08-05 09:45:00,25.0,0.024338624,29.598961782930342 +2019-08-05 10:00:00,25.0,0.022222222,29.599665147650835 +2019-08-05 10:15:00,25.0,0.022222222,29.600367920751754 +2019-08-05 10:30:00,25.0,0.021693122,29.60107010214271 +2019-08-05 10:45:00,25.0,0.022222222,29.601771691733383 +2019-08-05 11:00:00,25.0,0.023280423,29.602472689433537 +2019-08-05 11:15:00,25.0,0.022751323,29.603173095153004 +2019-08-05 11:30:00,25.0,0.024867725,29.603872908801694 +2019-08-05 11:45:00,25.0,0.029100529,29.604572130289604 +2019-08-05 12:00:00,25.0,0.035449735,29.60527075952679 +2019-08-05 12:15:00,25.0,0.042328042,29.605968796423397 +2019-08-05 12:30:00,25.0,0.049206349,29.60666624088964 +2019-08-05 12:45:00,25.0,0.054497354,29.60736309283582 +2019-08-05 13:00:00,25.0,0.05978836,29.60805935217229 +2019-08-05 13:15:00,25.0,0.065079365,29.608755018809507 +2019-08-05 13:30:00,25.0,0.056613757,29.609450092657994 +2019-08-05 13:45:00,25.0,0.056084656,29.610144573628343 +2019-08-05 14:00:00,25.0,0.06031746,29.610838461631232 +2019-08-05 14:15:00,25.0,0.068253968,29.61153175657741 +2019-08-05 14:30:00,25.0,0.064021164,29.612224458377707 +2019-08-05 14:45:00,25.0,0.055026455,29.61291656694302 +2019-08-05 15:00:00,25.0,0.047619048,29.613608082184328 +2019-08-05 15:15:00,25.0,0.047089947,29.614299004012697 +2019-08-05 15:30:00,25.0,0.051322751,29.61498933233925 +2019-08-05 15:45:00,25.0,0.052380952,29.6156790670752 +2019-08-05 16:00:00,25.0,0.060846561,29.616368208131824 +2019-08-05 16:15:00,25.0,0.068783069,29.617056755420492 +2019-08-05 16:30:00,25.0,0.074074074,29.61774470885264 +2019-08-05 16:45:00,25.0,0.082010582,29.618432068339775 +2019-08-05 17:00:00,25.0,0.104761905,29.619118833793497 +2019-08-05 17:15:00,25.0,0.138095238,29.619805005125464 +2019-08-05 17:30:00,25.0,0.165079365,29.620490582247427 +2019-08-05 17:45:00,25.0,0.199470899,29.621175565071198 +2019-08-05 18:00:00,25.0,0.205820106,29.621859953508675 +2019-08-05 18:15:00,25.0,0.188359788,29.622543747471834 +2019-08-05 18:30:00,25.0,0.193650794,29.62322694687272 +2019-08-05 18:45:00,25.0,0.218518519,29.623909551623463 +2019-08-05 19:00:00,25.0,0.217460317,29.624591561636258 +2019-08-05 19:15:00,25.0,0.205820106,29.62527297682339 +2019-08-05 19:30:00,25.0,0.207407407,29.625953797097207 +2019-08-05 19:45:00,25.0,0.214285714,29.626634022370144 +2019-08-05 20:00:00,25.0,0.213756614,29.62731365255471 +2019-08-05 20:15:00,25.0,0.214814815,29.62799268756349 +2019-08-05 20:30:00,25.0,0.215873016,29.628671127309143 +2019-08-05 20:45:00,25.0,0.196296296,29.629348971704406 +2019-08-05 21:00:00,25.0,0.215343915,29.630026220662096 +2019-08-05 21:15:00,25.0,0.212698413,29.630702874095096 +2019-08-05 21:30:00,25.0,0.202645503,29.63137893191638 +2019-08-05 21:45:00,25.0,0.208465608,29.63205439403899 +2019-08-05 22:00:00,25.0,0.21957672,29.632729260376053 +2019-08-05 22:15:00,25.0,0.216402116,29.633403530840756 +2019-08-05 22:30:00,25.0,0.214285714,29.634077205346376 +2019-08-05 22:45:00,25.0,0.22962963,29.634750283806266 +2019-08-05 23:00:00,25.0,0.24973545,29.63542276613385 +2019-08-05 23:15:00,25.0,0.231746032,29.636094652242633 +2019-08-05 23:30:00,25.0,0.223809524,29.6367659420462 +2019-08-05 23:45:00,25.0,0.241269841,29.6374366354582 +2019-08-06 00:00:00,25.0,0.258730159,29.638106732392373 +2019-08-06 00:15:00,25.0,0.264021164,29.638776232762524 +2019-08-06 00:30:00,25.0,0.25978836,29.639445136482546 +2019-08-06 00:45:00,25.0,0.238624339,29.640113443466397 +2019-08-06 01:00:00,25.0,0.233333333,29.640781153628126 +2019-08-06 01:15:00,25.0,0.223280423,29.641448266881845 +2019-08-06 01:30:00,25.0,0.207936508,29.64211478314175 +2019-08-06 01:45:00,25.0,0.182010582,29.64278070232211 +2019-08-06 02:00:00,25.0,0.162962963,29.643446024337276 +2019-08-06 02:15:00,25.0,0.165079365,29.64411074910167 +2019-08-06 02:30:00,25.0,0.162962963,29.644774876529794 +2019-08-06 02:45:00,25.0,0.143915344,29.64543840653623 +2019-08-06 03:00:00,25.0,0.138095238,29.646101339035628 +2019-08-06 03:15:00,25.0,0.136507937,29.646763673942722 +2019-08-06 03:30:00,25.0,0.126455026,29.647425411172325 +2019-08-06 03:45:00,25.0,0.121693122,29.648086550639317 +2019-08-06 04:00:00,25.0,0.11005291,29.648747092258663 +2019-08-06 04:15:00,25.0,0.101587302,29.6494070359454 +2019-08-06 04:30:00,25.0,0.092063492,29.65006638161465 +2019-08-06 04:45:00,25.0,0.082010582,29.650725129181605 +2019-08-06 05:00:00,25.0,0.074074074,29.651383278561532 +2019-08-06 05:15:00,25.0,0.072486772,29.65204082966978 +2019-08-06 05:30:00,25.0,0.071428571,29.652697782421775 +2019-08-06 05:45:00,25.0,0.074074074,29.653354136733014 +2019-08-06 06:00:00,25.0,0.081481481,29.654009892519078 +2019-08-06 06:15:00,25.0,0.089417989,29.654665049695623 +2019-08-06 06:30:00,25.0,0.095238095,29.65531960817838 +2019-08-06 06:45:00,25.0,0.112698413,29.65597356788316 +2019-08-06 07:00:00,25.0,0.12010582,29.65662692872585 +2019-08-06 07:15:00,25.0,0.125396825,29.657279690622403 +2019-08-06 07:30:00,25.0,0.126984127,29.657931853488872 +2019-08-06 07:45:00,25.0,0.139153439,29.65858341724137 +2019-08-06 08:00:00,25.0,0.157671958,29.65923438179609 +2019-08-06 08:15:00,25.0,0.168783069,29.659884747069302 +2019-08-06 08:30:00,25.0,0.165079365,29.660534512977357 +2019-08-06 08:45:00,25.0,0.165608466,29.661183679436682 +2019-08-06 09:00:00,25.0,0.169312169,29.66183224636378 +2019-08-06 09:15:00,25.0,0.17989418,29.662480213675224 +2019-08-06 09:30:00,25.0,0.196825397,29.663127581287682 +2019-08-06 09:45:00,25.0,0.191534392,29.663774349117876 +2019-08-06 10:00:00,25.0,0.192592593,29.664420517082625 +2019-08-06 10:15:00,25.0,0.200529101,29.665066085098815 +2019-08-06 10:30:00,25.0,0.206349206,29.665711053083413 +2019-08-06 10:45:00,25.0,0.226455026,29.666355420953458 +2019-08-06 11:00:00,25.0,0.238095238,29.666999188626075 +2019-08-06 11:15:00,25.0,0.241798942,29.66764235601846 +2019-08-06 11:30:00,25.0,0.253968254,29.668284923047885 +2019-08-06 11:45:00,25.0,0.273544974,29.668926889631702 +2019-08-06 12:00:00,25.0,0.264550265,29.66956825568734 +2019-08-06 12:15:00,25.0,0.252910053,29.670209021132308 +2019-08-06 12:30:00,25.0,0.240740741,29.670849185884183 +2019-08-06 12:45:00,25.0,0.246031746,29.67148874986063 +2019-08-06 13:00:00,25.0,0.25026455,29.67212771297939 +2019-08-06 13:15:00,25.0,0.197883598,29.67276607515827 +2019-08-06 13:30:00,25.0,0.201587302,29.673403836315167 +2019-08-06 13:45:00,25.0,0.214814815,29.67404099636805 +2019-08-06 14:00:00,25.0,0.20952381,29.674677555234965 +2019-08-06 14:15:00,25.0,0.207407407,29.67531351283404 +2019-08-06 14:30:00,25.0,0.197883598,29.675948869083474 +2019-08-06 14:45:00,25.0,0.182010582,29.676583623901546 +2019-08-06 15:00:00,25.0,0.176190476,29.67721777720661 +2019-08-06 15:15:00,25.0,0.177777778,29.677851328917104 +2019-08-06 15:30:00,25.0,0.184656085,29.678484278951537 +2019-08-06 15:45:00,25.0,0.184126984,29.6791166272285 +2019-08-06 16:00:00,25.0,0.188888889,29.679748373666655 +2019-08-06 16:15:00,25.0,0.188888889,29.680379518184743 +2019-08-06 16:30:00,25.0,0.19047619,29.681010060701595 +2019-08-06 16:45:00,25.0,0.177777778,29.681640001136103 +2019-08-06 17:00:00,25.0,0.164550265,29.682269339407238 +2019-08-06 17:15:00,25.0,0.161375661,29.68289807543406 +2019-08-06 17:30:00,25.0,0.159259259,29.683526209135696 +2019-08-06 17:45:00,25.0,0.157671958,29.684153740431356 +2019-08-06 18:00:00,25.0,0.142857143,29.684780669240325 +2019-08-06 18:15:00,25.0,0.124867725,29.68540699548197 +2019-08-06 18:30:00,25.0,0.117989418,29.68603271907572 +2019-08-06 18:45:00,25.0,0.115343915,29.686657839941102 +2019-08-06 19:00:00,25.0,0.115873016,29.68728235799771 +2019-08-06 19:15:00,25.0,0.11005291,29.687906273165215 +2019-08-06 19:30:00,25.0,0.107936508,29.68852958536337 +2019-08-06 19:45:00,25.0,0.110582011,29.689152294512002 +2019-08-06 20:00:00,25.0,0.113227513,29.68977440053102 +2019-08-06 20:15:00,25.0,0.111640212,29.690395903340402 +2019-08-06 20:30:00,25.0,0.11957672,29.69101680286021 +2019-08-06 20:45:00,25.0,0.114814815,29.691637099010585 +2019-08-06 21:00:00,25.0,0.115343915,29.692256791711742 +2019-08-06 21:15:00,25.0,0.121693122,29.692875880883975 +2019-08-06 21:30:00,25.0,0.133333333,29.693494366447652 +2019-08-06 21:45:00,25.0,0.12962963,29.69411224832323 +2019-08-06 22:00:00,25.0,0.123809524,29.694729526431225 +2019-08-06 22:15:00,25.0,0.126984127,29.69534620069225 +2019-08-06 22:30:00,25.0,0.126455026,29.69596227102698 +2019-08-06 22:45:00,25.0,0.123809524,29.69657773735618 +2019-08-06 23:00:00,25.0,0.131216931,29.697192599600683 +2019-08-06 23:15:00,25.0,0.134391534,29.69780685768141 +2019-08-06 23:30:00,25.0,0.131216931,29.69842051151935 +2019-08-06 23:45:00,25.0,0.132275132,29.69903356103557 +2019-08-07 00:00:00,25.0,0.143915344,29.699646006151223 +2019-08-07 00:15:00,25.0,0.162433862,29.700257846787537 +2019-08-07 00:30:00,25.0,0.178835979,29.700869082865808 +2019-08-07 00:45:00,25.0,0.185714286,29.701479714307425 +2019-08-07 01:00:00,25.0,0.194179894,29.702089741033838 +2019-08-07 01:15:00,25.0,0.203174603,29.702699162966596 +2019-08-07 01:30:00,25.0,0.220634921,29.703307980027304 +2019-08-07 01:45:00,25.0,0.243915344,29.703916192137658 +2019-08-07 02:00:00,25.0,0.24973545,29.70452379921943 +2019-08-07 02:15:00,25.0,0.265608466,29.705130801194464 +2019-08-07 02:30:00,25.0,0.291005291,29.70573719798469 +2019-08-07 02:45:00,25.0,0.307407407,29.70634298951211 +2019-08-07 03:00:00,25.0,0.301058201,29.70694817569881 +2019-08-07 03:15:00,25.0,0.307407407,29.70755275646694 +2019-08-07 03:30:00,25.0,0.298412698,29.708156731738747 +2019-08-07 03:45:00,25.0,0.289417989,29.70876010143654 +2019-08-07 04:00:00,25.0,0.292063492,29.709362865482714 +2019-08-07 04:15:00,25.0,0.294179894,29.709965023799743 +2019-08-07 04:30:00,25.0,0.284126984,29.71056657631017 +2019-08-07 04:45:00,25.0,0.291534392,29.711167522936627 +2019-08-07 05:00:00,25.0,0.285185185,29.71176786360182 +2019-08-07 05:15:00,25.0,0.263492063,29.712367598228525 +2019-08-07 05:30:00,25.0,0.242328042,29.712966726739612 +2019-08-07 05:45:00,25.0,0.242857143,29.71356524905801 +2019-08-07 06:00:00,25.0,0.23968254,29.714163165106743 +2019-08-07 06:15:00,25.0,0.246031746,29.7147604748089 +2019-08-07 06:30:00,25.0,0.250793651,29.71535717808766 +2019-08-07 06:45:00,25.0,0.25978836,29.71595327486627 +2019-08-07 07:00:00,25.0,0.251322751,29.716548765068058 +2019-08-07 07:15:00,25.0,0.241798942,29.71714364861643 +2019-08-07 07:30:00,25.0,0.243915344,29.717737925434875 +2019-08-07 07:45:00,25.0,0.235449735,29.71833159544695 +2019-08-07 08:00:00,25.0,0.234391534,29.718924658576302 +2019-08-07 08:15:00,25.0,0.237566138,29.719517114746644 +2019-08-07 08:30:00,25.0,0.252910053,29.720108963881778 +2019-08-07 08:45:00,25.0,0.265608466,29.720700205905572 +2019-08-07 09:00:00,25.0,0.258201058,29.72129084074199 +2019-08-07 09:15:00,25.0,0.250793651,29.721880868315054 +2019-08-07 09:30:00,25.0,0.253439153,29.722470288548877 +2019-08-07 09:45:00,25.0,0.265608466,29.723059101367646 +2019-08-07 10:00:00,25.0,0.278835979,29.72364730669562 +2019-08-07 10:15:00,25.0,0.276719577,29.724234904457155 +2019-08-07 10:30:00,25.0,0.29047619,29.724821894576664 +2019-08-07 10:45:00,25.0,0.301587302,29.72540827697865 +2019-08-07 11:00:00,25.0,0.289417989,29.72599405158769 +2019-08-07 11:15:00,25.0,0.276719577,29.726579218328446 +2019-08-07 11:30:00,25.0,0.276190476,29.727163777125643 +2019-08-07 11:45:00,25.0,0.255026455,29.727747727904095 +2019-08-07 12:00:00,25.0,0.254497354,29.728331070588702 +2019-08-07 12:15:00,25.0,0.258730159,29.728913805104426 +2019-08-07 12:30:00,25.0,0.275132275,29.729495931376313 +2019-08-07 12:45:00,25.0,0.293121693,29.730077449329492 +2019-08-07 13:00:00,25.0,0.317989418,29.730658358889166 +2019-08-07 13:15:00,25.0,0.326455026,29.73123865998062 +2019-08-07 13:30:00,25.0,0.330687831,29.731818352529206 +2019-08-07 13:45:00,25.0,0.321693122,29.73239743646037 +2019-08-07 14:00:00,25.0,0.301058201,29.73297591169963 +2019-08-07 14:15:00,25.0,0.304761905,29.733553778172574 +2019-08-07 14:30:00,25.0,0.3,29.734131035804882 +2019-08-07 14:45:00,25.0,0.30952381,29.734707684522302 +2019-08-07 15:00:00,25.0,0.322751323,29.735283724250664 +2019-08-07 15:15:00,25.0,0.325925926,29.73585915491588 +2019-08-07 15:30:00,25.0,0.326984127,29.736433976443934 +2019-08-07 15:45:00,25.0,0.328042328,29.73700818876089 +2019-08-07 16:00:00,25.0,0.328042328,29.737581791792895 +2019-08-07 16:15:00,25.0,0.325396825,29.73815478546617 +2019-08-07 16:30:00,25.0,0.316931217,29.738727169707012 +2019-08-07 16:45:00,25.0,0.308994709,29.739298944441803 +2019-08-07 17:00:00,25.0,0.301587302,29.739870109596996 +2019-08-07 17:15:00,25.0,0.29047619,29.740440665099133 +2019-08-07 17:30:00,25.0,0.283068783,29.741010610874824 +2019-08-07 17:45:00,25.0,0.269312169,29.74157994685076 +2019-08-07 18:00:00,25.0,0.256613757,29.74214867295371 +2019-08-07 18:15:00,25.0,0.244973545,29.74271678911053 +2019-08-07 18:30:00,25.0,0.243386243,29.743284295248145 +2019-08-07 18:45:00,25.0,0.228042328,29.743851191293558 +2019-08-07 19:00:00,25.0,0.213756614,29.744417477173855 +2019-08-07 19:15:00,25.0,0.2,29.7449831528162 +2019-08-07 19:30:00,25.0,0.187301587,29.745548218147835 +2019-08-07 19:45:00,25.0,0.184656085,29.74611267309608 +2019-08-07 20:00:00,25.0,0.169312169,29.746676517588327 +2019-08-07 20:15:00,25.0,0.171428571,29.747239751552062 +2019-08-07 20:30:00,25.0,0.2,29.747802374914833 +2019-08-07 20:45:00,25.0,0.215873016,29.748364387604283 +2019-08-07 21:00:00,25.0,0.215343915,29.748925789548117 +2019-08-07 21:15:00,25.0,0.223809524,29.74948658067413 +2019-08-07 21:30:00,25.0,0.21957672,29.75004676091019 +2019-08-07 21:45:00,25.0,0.211111111,29.750606330184244 +2019-08-07 22:00:00,25.0,0.224338624,29.751165288424325 +2019-08-07 22:15:00,25.0,0.231746032,29.75172363555853 +2019-08-07 22:30:00,25.0,0.248677249,29.75228137151505 +2019-08-07 22:45:00,25.0,0.252380952,29.752838496222143 +2019-08-07 23:00:00,25.0,0.250793651,29.753395009608155 +2019-08-07 23:15:00,25.0,0.256084656,29.7539509116015 +2019-08-07 23:30:00,25.0,0.24973545,29.754506202130685 +2019-08-07 23:45:00,25.0,0.240740741,29.75506088112428 +2019-08-08 00:00:00,25.0,0.246031746,29.75561494851094 +2019-08-08 00:15:00,25.0,0.25978836,29.756168404219405 +2019-08-08 00:30:00,25.0,0.267195767,29.756721248178486 +2019-08-08 00:45:00,25.0,0.278835979,29.757273480317075 +2019-08-08 01:00:00,25.0,0.273015873,29.75782510056414 +2019-08-08 01:15:00,25.0,0.272486772,29.758376108848736 +2019-08-08 01:30:00,25.0,0.287301587,29.758926505099986 +2019-08-08 01:45:00,25.0,0.302116402,29.7594762892471 +2019-08-08 02:00:00,25.0,0.307407407,29.760025461219364 +2019-08-08 02:15:00,25.0,0.302645503,29.760574020946137 +2019-08-08 02:30:00,25.0,0.302645503,29.761121968356864 +2019-08-08 02:45:00,25.0,0.30952381,29.76166930338107 +2019-08-08 03:00:00,25.0,0.32010582,29.762216025948355 +2019-08-08 03:15:00,25.0,0.313756614,29.762762135988396 +2019-08-08 03:30:00,25.0,0.321164021,29.76330763343095 +2019-08-08 03:45:00,25.0,0.325925926,29.76385251820586 +2019-08-08 04:00:00,25.0,0.32962963,29.764396790243033 +2019-08-08 04:15:00,25.0,0.337566138,29.76494044947247 +2019-08-08 04:30:00,25.0,0.337037037,29.765483495824242 +2019-08-08 04:45:00,25.0,0.332275132,29.766025929228498 +2019-08-08 05:00:00,25.0,0.337037037,29.766567749615476 +2019-08-08 05:15:00,25.0,0.33015873,29.767108956915482 +2019-08-08 05:30:00,25.0,0.350793651,29.767649551058902 +2019-08-08 05:45:00,25.0,0.368253968,29.76818953197621 +2019-08-08 06:00:00,25.0,0.382010582,29.768728899597946 +2019-08-08 06:15:00,25.0,0.395238095,29.76926765385474 +2019-08-08 06:30:00,25.0,0.383068783,29.769805794677293 +2019-08-08 06:45:00,25.0,0.387830688,29.77034332199639 +2019-08-08 07:00:00,25.0,0.38994709,29.77088023574289 +2019-08-08 07:15:00,25.0,0.408994709,29.771416535847738 +2019-08-08 07:30:00,25.0,0.417460317,29.77195222224195 +2019-08-08 07:45:00,25.0,0.425925926,29.772487294856628 +2019-08-08 08:00:00,25.0,0.434920635,29.77302175362295 +2019-08-08 08:15:00,25.0,0.458730159,29.773555598472168 +2019-08-08 08:30:00,25.0,0.483597884,29.774088829335625 +2019-08-08 08:45:00,25.0,0.498941799,29.774621446144728 +2019-08-08 09:00:00,25.0,0.5,29.775153448830974 +2019-08-08 09:15:00,25.0,0.488888889,29.775684837325937 +2019-08-08 09:30:00,25.0,0.493121693,29.776215611561266 +2019-08-08 09:45:00,25.0,0.492592593,29.776745771468693 +2019-08-08 10:00:00,25.0,0.488888889,29.777275316980027 +2019-08-08 10:15:00,25.0,0.495767196,29.77780424802716 +2019-08-08 10:30:00,25.0,0.505291005,29.778332564542055 +2019-08-08 10:45:00,25.0,0.51005291,29.778860266456757 +2019-08-08 11:00:00,25.0,0.503174603,29.7793873537034 +2019-08-08 11:15:00,25.0,0.502645503,29.77991382621418 +2019-08-08 11:30:00,25.0,0.498412698,29.780439683921387 +2019-08-08 11:45:00,25.0,0.48994709,29.78096492675738 +2019-08-08 12:00:00,25.0,0.485714286,29.781489554654605 +2019-08-08 12:15:00,25.0,0.487301587,29.78201356754558 +2019-08-08 12:30:00,25.0,0.493121693,29.782536965362905 +2019-08-08 12:45:00,25.0,0.502116402,29.783059748039264 +2019-08-08 13:00:00,25.0,0.496296296,29.78358191550741 +2019-08-08 13:15:00,25.0,0.471957672,29.78410346770018 +2019-08-08 13:30:00,25.0,0.466666667,29.784624404550495 +2019-08-08 13:45:00,25.0,0.481481481,29.78514472599135 +2019-08-08 14:00:00,25.0,0.504232804,29.785664431955823 +2019-08-08 14:15:00,25.0,0.538624339,29.78618352237706 +2019-08-08 14:30:00,25.0,0.546560847,29.7867019971883 +2019-08-08 14:45:00,25.0,0.52010582,29.787219856322853 +2019-08-08 15:00:00,25.0,0.51005291,29.787737099714114 +2019-08-08 15:15:00,25.0,0.521693122,29.788253727295555 +2019-08-08 15:30:00,25.0,0.52010582,29.78876973900072 +2019-08-08 15:45:00,25.0,0.516931217,29.789285134763244 +2019-08-08 16:00:00,25.0,0.513227513,29.78979991451683 +2019-08-08 16:15:00,25.0,0.528571429,29.790314078195273 +2019-08-08 16:30:00,25.0,0.53015873,29.790827625732433 +2019-08-08 16:45:00,25.0,0.51957672,29.791340557062263 +2019-08-08 17:00:00,25.0,0.498941799,29.79185287211878 +2019-08-08 17:15:00,25.0,0.491534392,29.7923645708361 +2019-08-08 17:30:00,25.0,0.488359788,29.7928756531484 +2019-08-08 17:45:00,25.0,0.500529101,29.793386118989943 +2019-08-08 18:00:00,25.0,0.494708995,29.793895968295075 +2019-08-08 18:15:00,25.0,0.450793651,29.794405200998213 +2019-08-08 18:30:00,25.0,0.438624339,29.794913817033866 +2019-08-08 18:45:00,25.0,0.432804233,29.795421816336606 +2019-08-08 19:00:00,25.0,0.415343915,29.7959291988411 +2019-08-08 19:15:00,25.0,0.41005291,29.796435964482082 +2019-08-08 19:30:00,25.0,0.389417989,29.796942113194376 +2019-08-08 19:45:00,25.0,0.372486772,29.79744764491288 +2019-08-08 20:00:00,25.0,0.356084656,29.79795255957256 +2019-08-08 20:15:00,25.0,0.352380952,29.798456857108487 +2019-08-08 20:30:00,25.0,0.334391534,29.79896053745579 +2019-08-08 20:45:00,25.0,0.31957672,29.799463600549686 +2019-08-08 21:00:00,25.0,0.306349206,29.79996604632547 +2019-08-08 21:15:00,25.0,0.294179894,29.800467874718514 +2019-08-08 21:30:00,25.0,0.283597884,29.800969085664278 +2019-08-08 21:45:00,25.0,0.276719577,29.801469679098286 +2019-08-08 22:00:00,25.0,0.273544974,29.801969654956157 +2019-08-08 22:15:00,25.0,0.270899471,29.802469013173578 +2019-08-08 22:30:00,25.0,0.261904762,29.802967753686328 +2019-08-08 22:45:00,25.0,0.248148148,29.803465876430252 +2019-08-08 23:00:00,25.0,0.242857143,29.80396338134128 +2019-08-08 23:15:00,25.0,0.242328042,29.804460268355427 +2019-08-08 23:30:00,25.0,0.242857143,29.804956537408774 +2019-08-08 23:45:00,25.0,0.234920635,29.8054521884375 +2019-08-09 00:00:00,25.0,0.218518519,29.805947221377842 +2019-08-09 00:15:00,25.0,0.203703704,29.806441636166134 +2019-08-09 00:30:00,25.0,0.197883598,29.806935432738786 +2019-08-09 00:45:00,25.0,0.196825397,29.80742861103228 +2019-08-09 01:00:00,25.0,0.192063492,29.80792117098318 +2019-08-09 01:15:00,25.0,0.183068783,29.80841311252814 +2019-08-09 01:30:00,25.0,0.183068783,29.80890443560388 +2019-08-09 01:45:00,25.0,0.181481481,29.809395140147203 +2019-08-09 02:00:00,25.0,0.177777778,29.809885226094995 +2019-08-09 02:15:00,25.0,0.17037037,29.810374693384226 +2019-08-09 02:30:00,25.0,0.168783069,29.81086354195193 +2019-08-09 02:45:00,25.0,0.165079365,29.81135177173524 +2019-08-09 03:00:00,25.0,0.162962963,29.811839382671348 +2019-08-09 03:15:00,25.0,0.161375661,29.812326374697545 +2019-08-09 03:30:00,25.0,0.153968254,29.812812747751188 +2019-08-09 03:45:00,25.0,0.144973545,29.81329850176972 +2019-08-09 04:00:00,25.0,0.126455026,29.813783636690665 +2019-08-09 04:15:00,25.0,0.120634921,29.814268152451618 +2019-08-09 04:30:00,25.0,0.12010582,29.814752048990268 +2019-08-09 04:45:00,25.0,0.121693122,29.815235326244366 +2019-08-09 05:00:00,25.0,0.120634921,29.815717984151757 +2019-08-09 05:15:00,25.0,0.114285714,29.81620002265036 +2019-08-09 05:30:00,25.0,0.112169312,29.81668144167817 +2019-08-09 05:45:00,25.0,0.107936508,29.81716224117327 +2019-08-09 06:00:00,25.0,0.101058201,29.81764242107382 +2019-08-09 06:15:00,25.0,0.098941799,29.818121981318058 +2019-08-09 06:30:00,25.0,0.098412698,29.818600921844293 +2019-08-09 06:45:00,25.0,0.099470899,29.81907924259093 +2019-08-09 07:00:00,25.0,0.097354497,29.81955694349645 +2019-08-09 07:15:00,25.0,0.098412698,29.820034024499403 +2019-08-09 07:30:00,25.0,0.103174603,29.820510485538428 +2019-08-09 07:45:00,25.0,0.107936508,29.82098632655224 +2019-08-09 08:00:00,25.0,0.113227513,29.82146154747964 +2019-08-09 08:15:00,25.0,0.121164021,29.8219361482595 +2019-08-09 08:30:00,25.0,0.12962963,29.822410128830775 +2019-08-09 08:45:00,25.0,0.135978836,29.8228834891325 +2019-08-09 09:00:00,25.0,0.15026455,29.823356229103798 +2019-08-09 09:15:00,25.0,0.164021164,29.823828348683854 +2019-08-09 09:30:00,25.0,0.170899471,29.82429984781195 +2019-08-09 09:45:00,25.0,0.175132275,29.824770726427438 +2019-08-09 10:00:00,25.0,0.182539683,29.82524098446975 +2019-08-09 10:15:00,25.0,0.196296296,29.825710621878404 +2019-08-09 10:30:00,25.0,0.200529101,29.826179638592993 +2019-08-09 10:45:00,25.0,0.207407407,29.82664803455319 +2019-08-09 11:00:00,25.0,0.230687831,29.827115809698753 +2019-08-09 11:15:00,25.0,0.253968254,29.82758296396951 +2019-08-09 11:30:00,25.0,0.275132275,29.828049497305376 +2019-08-09 11:45:00,25.0,0.288888889,29.828515409646347 +2019-08-09 12:00:00,25.0,0.303703704,29.828980700932494 +2019-08-09 12:15:00,25.0,0.323809524,29.829445371103972 +2019-08-09 12:30:00,25.0,0.340740741,29.82990942010101 +2019-08-09 12:45:00,25.0,0.359259259,29.830372847863927 +2019-08-09 13:00:00,25.0,0.365608466,29.830835654333114 +2019-08-09 13:15:00,25.0,0.377777778,29.83129783944904 +2019-08-09 13:30:00,25.0,0.393121693,29.83175940315226 +2019-08-09 13:45:00,25.0,0.4,29.832220345383405 +2019-08-09 14:00:00,25.0,0.40952381,29.832680666083192 +2019-08-09 14:15:00,25.0,0.413756614,29.833140365192413 +2019-08-09 14:30:00,25.0,0.425925926,29.833599442651934 +2019-08-09 14:45:00,25.0,0.445502646,29.834057898402712 +2019-08-09 15:00:00,25.0,0.465079365,29.834515732385782 +2019-08-09 15:15:00,25.0,0.474603175,29.83497294454225 +2019-08-09 15:30:00,25.0,0.475661376,29.835429534813315 +2019-08-09 15:45:00,25.0,0.48042328,29.835885503140243 +2019-08-09 16:00:00,25.0,0.495238095,29.836340849464392 +2019-08-09 16:15:00,25.0,0.507407407,29.836795573727187 +2019-08-09 16:30:00,25.0,0.515343915,29.837249675870147 +2019-08-09 16:45:00,25.0,0.517460317,29.837703155834863 +2019-08-09 17:00:00,25.0,0.514285714,29.838156013563008 +2019-08-09 17:15:00,25.0,0.515873016,29.83860824899633 +2019-08-09 17:30:00,25.0,0.52010582,29.839059862076667 +2019-08-09 17:45:00,25.0,0.51957672,29.839510852745924 +2019-08-09 18:00:00,25.0,0.511640212,29.839961220946105 +2019-08-09 18:15:00,25.0,0.512169312,29.840410966619274 +2019-08-09 18:30:00,25.0,0.515873016,29.840860089707583 +2019-08-09 18:45:00,25.0,0.508465608,29.841308590153268 +2019-08-09 19:00:00,25.0,0.498941799,29.84175646789864 +2019-08-09 19:15:00,25.0,0.486243386,29.842203722886097 +2019-08-09 19:30:00,25.0,0.486772487,29.842650355058105 +2019-08-09 19:45:00,25.0,0.483068783,29.843096364357223 +2019-08-09 20:00:00,25.0,0.466666667,29.84354175072608 +2019-08-09 20:15:00,25.0,0.462433862,29.843986514107392 +2019-08-09 20:30:00,25.0,0.452910053,29.84443065444395 +2019-08-09 20:45:00,25.0,0.451851852,29.84487417167863 +2019-08-09 21:00:00,25.0,0.448677249,29.845317065754386 +2019-08-09 21:15:00,25.0,0.444444444,29.845759336614247 +2019-08-09 21:30:00,25.0,0.448677249,29.846200984201335 +2019-08-09 21:45:00,25.0,0.444444444,29.846642008458836 +2019-08-09 22:00:00,25.0,0.441798942,29.84708240933003 +2019-08-09 22:15:00,25.0,0.438624339,29.847522186758273 +2019-08-09 22:30:00,25.0,0.458730159,29.847961340686997 +2019-08-09 22:45:00,25.0,0.463492063,29.848399871059716 +2019-08-09 23:00:00,25.0,0.476190476,29.848837777820023 +2019-08-09 23:15:00,25.0,0.488888889,29.8492750609116 +2019-08-09 23:30:00,25.0,0.489417989,29.8497117202782 +2019-08-09 23:45:00,25.0,0.469312169,29.850147755863656 +2019-08-10 00:00:00,25.0,0.449206349,29.850583167611887 +2019-08-10 00:15:00,25.0,0.468783069,29.85101795546689 +2019-08-10 00:30:00,25.0,0.487301587,29.851452119372738 +2019-08-10 00:45:00,25.0,0.484126984,29.85188565927359 +2019-08-10 01:00:00,25.0,0.464550265,29.852318575113685 +2019-08-10 01:15:00,25.0,0.471957672,29.85275086683734 +2019-08-10 01:30:00,25.0,0.45978836,29.853182534388946 +2019-08-10 01:45:00,25.0,0.42962963,29.85361357771299 +2019-08-10 02:00:00,25.0,0.402116402,29.854043996754026 +2019-08-10 02:15:00,25.0,0.406878307,29.85447379145669 +2019-08-10 02:30:00,25.0,0.421693122,29.854902961765706 +2019-08-10 02:45:00,25.0,0.456613757,29.85533150762587 +2019-08-10 03:00:00,25.0,0.498941799,29.85575942898206 +2019-08-10 03:15:00,25.0,0.526984127,29.856186725779242 +2019-08-10 03:30:00,25.0,0.556084656,29.85661339796245 +2019-08-10 03:45:00,25.0,0.543386243,29.857039445476808 +2019-08-10 04:00:00,25.0,0.541269841,29.857464868267513 +2019-08-10 04:15:00,25.0,0.548677249,29.85788966627985 +2019-08-10 04:30:00,25.0,0.56984127,29.85831383945918 +2019-08-10 04:45:00,25.0,0.587830688,29.858737387750942 +2019-08-10 05:00:00,25.0,0.592592593,29.85916031110066 +2019-08-10 05:15:00,25.0,0.596296296,29.859582609453934 +2019-08-10 05:30:00,25.0,0.597883598,29.860004282756453 +2019-08-10 05:45:00,25.0,0.606349206,29.860425330953976 +2019-08-10 06:00:00,25.0,0.602116402,29.860845753992347 +2019-08-10 06:15:00,25.0,0.615873016,29.86126555181749 +2019-08-10 06:30:00,25.0,0.622751323,29.861684724375415 +2019-08-10 06:45:00,25.0,0.626455026,29.8621032716122 +2019-08-10 07:00:00,25.0,0.633862434,29.862521193474013 +2019-08-10 07:15:00,25.0,0.60952381,29.8629384899071 +2019-08-10 07:30:00,25.0,0.589417989,29.863355160857786 +2019-08-10 07:45:00,25.0,0.580952381,29.86377120627248 +2019-08-10 08:00:00,25.0,0.575661376,29.86418662609767 +2019-08-10 08:15:00,25.0,0.587301587,29.864601420279925 +2019-08-10 08:30:00,25.0,0.586243386,29.865015588765885 +2019-08-10 08:45:00,25.0,0.585714286,29.86542913150229 +2019-08-10 09:00:00,25.0,0.588359788,29.865842048435937 +2019-08-10 09:15:00,25.0,0.587830688,29.866254339513727 +2019-08-10 09:30:00,25.0,0.589417989,29.866666004682624 +2019-08-10 09:45:00,25.0,0.593121693,29.86707704388968 +2019-08-10 10:00:00,25.0,0.599470899,29.867487457082024 +2019-08-10 10:15:00,25.0,0.601058201,29.867897244206873 +2019-08-10 10:30:00,25.0,0.602645503,29.868306405211513 +2019-08-10 10:45:00,25.0,0.611111111,29.86871494004332 +2019-08-10 11:00:00,25.0,0.517460317,29.86912284864975 +2019-08-10 11:15:00,25.0,0.502645503,29.86953013097833 +2019-08-10 11:30:00,25.0,0.521693122,29.86993678697668 +2019-08-10 11:45:00,25.0,0.487301587,29.870342816592494 +2019-08-10 12:00:00,25.0,0.465608466,29.870748219773546 +2019-08-10 12:15:00,25.0,0.463492063,29.871152996467696 +2019-08-10 12:30:00,25.0,0.456613757,29.871557146622873 +2019-08-10 12:45:00,25.0,0.447619048,29.8719606701871 +2019-08-10 13:00:00,25.0,0.451851852,29.87236356710848 +2019-08-10 13:15:00,25.0,0.448148148,29.872765837335177 +2019-08-10 13:30:00,25.0,0.453439153,29.87316748081546 +2019-08-10 13:45:00,25.0,0.458201058,29.873568497497672 +2019-08-10 14:00:00,25.0,0.465608466,29.87396888733022 +2019-08-10 14:15:00,25.0,0.468783069,29.874368650261623 +2019-08-10 14:30:00,25.0,0.476190476,29.874767786240447 +2019-08-10 14:45:00,25.0,0.487830688,29.875166295215358 +2019-08-10 15:00:00,25.0,0.498941799,29.875564177135104 +2019-08-10 15:15:00,25.0,0.510582011,29.875961431948507 +2019-08-10 15:30:00,25.0,0.515873016,29.876358059604467 +2019-08-10 15:45:00,25.0,0.505291005,29.876754060051972 +2019-08-10 16:00:00,25.0,0.510582011,29.87714943324009 +2019-08-10 16:15:00,25.0,0.520634921,29.877544179117958 +2019-08-10 16:30:00,25.0,0.519047619,29.877938297634813 +2019-08-10 16:45:00,25.0,0.533333333,29.878331788739956 +2019-08-10 17:00:00,25.0,0.661904762,29.87872465238278 +2019-08-10 17:15:00,25.0,0.681481481,29.87911688851275 +2019-08-10 17:30:00,25.0,0.68042328,29.879508497079417 +2019-08-10 17:45:00,25.0,0.68994709,29.879899478032414 +2019-08-10 18:00:00,25.0,0.689417989,29.88028983132145 +2019-08-10 18:15:00,25.0,0.688359788,29.880679556896315 +2019-08-10 18:30:00,25.0,0.694708995,29.881068654706883 +2019-08-10 18:45:00,25.0,0.68994709,29.88145712470311 +2019-08-10 19:00:00,25.0,0.669312169,29.881844966835025 +2019-08-10 19:15:00,25.0,0.676719577,29.88223218105275 +2019-08-10 19:30:00,25.0,0.679365079,29.882618767306475 +2019-08-10 19:45:00,25.0,0.66031746,29.883004725546474 +2019-08-10 20:00:00,25.0,0.634391534,29.883390055723112 +2019-08-10 20:15:00,25.0,0.613756614,29.88377475778682 +2019-08-10 20:30:00,25.0,0.601058201,29.884158831688122 +2019-08-10 20:45:00,25.0,0.61005291,29.884542277377612 +2019-08-10 21:00:00,25.0,0.61957672,29.884925094805975 +2019-08-10 21:15:00,25.0,0.620634921,29.88530728392397 +2019-08-10 21:30:00,25.0,0.615873016,29.88568884468244 +2019-08-10 21:45:00,25.0,0.616931217,29.886069777032308 +2019-08-10 22:00:00,25.0,0.626984127,29.886450080924575 +2019-08-10 22:15:00,25.0,0.630687831,29.886829756310327 +2019-08-10 22:30:00,25.0,0.648677249,29.88720880314073 +2019-08-10 22:45:00,25.0,0.679365079,29.88758722136703 +2019-08-10 23:00:00,25.0,0.696825397,29.887965010940555 +2019-08-10 23:15:00,25.0,0.692592593,29.88834217181271 +2019-08-10 23:30:00,25.0,0.691005291,29.888718703934988 +2019-08-10 23:45:00,25.0,0.7,29.88909460725895 +2019-08-11 00:00:00,25.0,0.705820106,29.889469881736257 +2019-08-11 00:15:00,25.0,0.704232804,29.889844527318633 +2019-08-11 00:30:00,25.0,0.693650794,29.890218543957893 +2019-08-11 00:45:00,25.0,0.684656085,29.890591931605933 +2019-08-11 01:00:00,25.0,0.693121693,29.89096469021472 +2019-08-11 01:15:00,25.0,0.702116402,29.891336819736313 +2019-08-11 01:30:00,25.0,0.702645503,29.89170832012285 +2019-08-11 01:45:00,25.0,0.700529101,29.892079191326545 +2019-08-11 02:00:00,25.0,0.704232804,29.892449433299692 +2019-08-11 02:15:00,25.0,0.706878307,29.892819045994678 +2019-08-11 02:30:00,25.0,0.706878307,29.893188029363955 +2019-08-11 02:45:00,25.0,0.701058201,29.89355638336007 +2019-08-11 03:00:00,25.0,0.703174603,29.89392410793564 +2019-08-11 03:15:00,25.0,0.710582011,29.894291203043366 +2019-08-11 03:30:00,25.0,0.711111111,29.894657668636036 +2019-08-11 03:45:00,25.0,0.71005291,29.895023504666515 +2019-08-11 04:00:00,25.0,0.708465608,29.89538871108774 +2019-08-11 04:15:00,25.0,0.706349206,29.89575328785275 +2019-08-11 04:30:00,25.0,0.713227513,29.89611723491464 +2019-08-11 04:45:00,25.0,0.712698413,29.896480552226606 +2019-08-11 05:00:00,25.0,0.710582011,29.896843239741912 +2019-08-11 05:15:00,25.0,0.711111111,29.89720529741391 +2019-08-11 05:30:00,25.0,0.71005291,29.89756672519604 +2019-08-11 05:45:00,25.0,0.710582011,29.8979275230418 +2019-08-11 06:00:00,25.0,0.710582011,29.898287690904795 +2019-08-11 06:15:00,25.0,0.710582011,29.89864722873869 +2019-08-11 06:30:00,25.0,0.710582011,29.899006136497245 +2019-08-11 06:45:00,25.0,0.705291005,29.899364414134297 +2019-08-11 07:00:00,25.0,0.701587302,29.899722061603764 +2019-08-11 07:15:00,25.0,0.700529101,29.900079078859644 +2019-08-11 07:30:00,25.0,0.701058201,29.900435465856013 +2019-08-11 07:45:00,25.0,0.696825397,29.90079122254704 +2019-08-11 08:00:00,25.0,0.694708995,29.901146348886957 +2019-08-11 08:15:00,25.0,0.698412698,29.901500844830093 +2019-08-11 08:30:00,25.0,0.695767196,29.90185471033085 +2019-08-11 08:45:00,25.0,0.697883598,29.90220794534371 +2019-08-11 09:00:00,25.0,0.699470899,29.902560549823246 +2019-08-11 09:15:00,25.0,0.701058201,29.902912523724098 +2019-08-11 09:30:00,25.0,0.695767196,29.903263867001 +2019-08-11 09:45:00,25.0,0.695767196,29.90361457960876 +2019-08-11 10:00:00,25.0,0.698412698,29.90396466150227 +2019-08-11 10:15:00,25.0,0.693121693,29.904314112636495 +2019-08-11 10:30:00,25.0,0.684656085,29.90466293296649 +2019-08-11 10:45:00,25.0,0.682010582,29.905011122447398 +2019-08-11 11:00:00,25.0,0.673015873,29.90535868103442 +2019-08-11 11:15:00,25.0,0.661904762,29.905705608682865 +2019-08-11 11:30:00,25.0,0.652910053,29.906051905348104 +2019-08-11 11:45:00,25.0,0.645502646,29.906397570985597 +2019-08-11 12:00:00,25.0,0.644973545,29.90674260555088 +2019-08-11 12:15:00,25.0,0.645502646,29.907087008999575 +2019-08-11 12:30:00,25.0,0.648148148,29.907430781287392 +2019-08-11 12:45:00,25.0,0.645502646,29.907773922370104 +2019-08-11 13:00:00,25.0,0.648677249,29.908116432203578 +2019-08-11 13:15:00,25.0,0.647619048,29.908458310743764 +2019-08-11 13:30:00,25.0,0.63968254,29.908799557946686 +2019-08-11 13:45:00,25.0,0.630687831,29.90914017376845 +2019-08-11 14:00:00,25.0,0.647619048,29.90948015816525 +2019-08-11 14:15:00,25.0,0.666137566,29.90981951109335 +2019-08-11 14:30:00,25.0,0.669312169,29.910158232509104 +2019-08-11 14:45:00,25.0,0.661904762,29.91049632236895 +2019-08-11 15:00:00,25.0,0.652910053,29.910833780629396 +2019-08-11 15:15:00,25.0,0.642857143,29.911170607247037 +2019-08-11 15:30:00,25.0,0.630687831,29.911506802178558 +2019-08-11 15:45:00,25.0,0.61957672,29.911842365380704 +2019-08-11 16:00:00,25.0,0.601058201,29.912177296810327 +2019-08-11 16:15:00,25.0,0.588359788,29.912511596424338 +2019-08-11 16:30:00,25.0,0.575661376,29.91284526417974 +2019-08-11 16:45:00,25.0,0.563492063,29.91317830003362 +2019-08-11 17:00:00,25.0,0.56031746,29.91351070394314 +2019-08-11 17:15:00,25.0,0.562433862,29.913842475865543 +2019-08-11 17:30:00,25.0,0.558201058,29.914173615758163 +2019-08-11 17:45:00,25.0,0.559259259,29.9145041235784 +2019-08-11 18:00:00,25.0,0.54973545,29.914833999283747 +2019-08-11 18:15:00,25.0,0.546560847,29.915163242831774 +2019-08-11 18:30:00,25.0,0.537566138,29.915491854180132 +2019-08-11 18:45:00,25.0,0.541269841,29.915819833286555 +2019-08-11 19:00:00,25.0,0.55026455,29.916147180108858 +2019-08-11 19:15:00,25.0,0.552380952,29.916473894604938 +2019-08-11 19:30:00,25.0,0.54973545,29.91679997673277 +2019-08-11 19:45:00,25.0,0.542328042,29.91712542645041 +2019-08-11 20:00:00,25.0,0.540740741,29.917450243716004 +2019-08-11 20:15:00,25.0,0.541269841,29.917774428487775 +2019-08-11 20:30:00,25.0,0.549206349,29.918097980724013 +2019-08-11 20:45:00,25.0,0.556613757,29.91842090038312 +2019-08-11 21:00:00,25.0,0.558730159,29.918743187423544 +2019-08-11 21:15:00,25.0,0.557142857,29.91906484180384 +2019-08-11 21:30:00,25.0,0.563492063,29.91938586348264 +2019-08-11 21:45:00,25.0,0.568253968,29.919706252418642 +2019-08-11 22:00:00,25.0,0.574074074,29.920026008570645 +2019-08-11 22:15:00,25.0,0.576190476,29.920345131897523 +2019-08-11 22:30:00,25.0,0.575661376,29.920663622358227 +2019-08-11 22:45:00,25.0,0.579365079,29.920981479911788 +2019-08-11 23:00:00,25.0,0.595238095,29.921298704517326 +2019-08-11 23:15:00,25.0,0.591534392,29.92161529613404 +2019-08-11 23:30:00,25.0,0.585185185,29.921931254721205 +2019-08-11 23:45:00,25.0,0.578835979,29.922246580238188 +2019-08-12 00:00:00,25.0,0.572486772,29.922561272644426 +2019-08-12 00:15:00,25.0,0.567724868,29.922875331899448 +2019-08-12 00:30:00,25.0,0.564021164,29.92318875796285 +2019-08-12 00:45:00,25.0,0.554497354,29.923501550794327 +2019-08-12 01:00:00,25.0,0.543915344,29.92381371035364 +2019-08-12 01:15:00,25.0,0.541798942,29.924125236600645 +2019-08-12 01:30:00,25.0,0.538624339,29.92443612949527 +2019-08-12 01:45:00,25.0,0.543386243,29.924746388997523 +2019-08-12 02:00:00,25.0,0.535978836,29.925056015067504 +2019-08-12 02:15:00,25.0,0.51005291,29.925365007665388 +2019-08-12 02:30:00,25.0,0.498412698,29.925673366751425 +2019-08-12 02:45:00,25.0,0.498941799,29.92598109228596 +2019-08-12 03:00:00,25.0,0.49047619,29.92628818422941 +2019-08-12 03:15:00,25.0,0.479365079,29.926594642542277 +2019-08-12 03:30:00,25.0,0.467724868,29.92690046718514 +2019-08-12 03:45:00,25.0,0.45026455,29.927205658118666 +2019-08-12 04:00:00,25.0,0.452910053,29.927510215303602 +2019-08-12 04:15:00,25.0,0.448677249,29.927814138700775 +2019-08-12 04:30:00,25.0,0.455026455,29.92811742827109 +2019-08-12 04:45:00,25.0,0.451322751,29.928420083975542 +2019-08-12 05:00:00,25.0,0.45026455,29.9287221057752 +2019-08-12 05:15:00,25.0,0.440740741,29.929023493631217 +2019-08-12 05:30:00,25.0,0.446031746,29.929324247504827 +2019-08-12 05:45:00,25.0,0.453439153,29.92962436735735 +2019-08-12 06:00:00,25.0,0.440740741,29.92992385315018 +2019-08-12 06:15:00,25.0,0.448148148,29.930222704844798 +2019-08-12 06:30:00,25.0,0.446031746,29.930520922402767 +2019-08-12 06:45:00,25.0,0.455555556,29.930818505785727 +2019-08-12 07:00:00,25.0,0.446560847,29.9311154549554 +2019-08-12 07:15:00,25.0,0.417460317,29.9314117698736 +2019-08-12 07:30:00,25.0,0.422751323,29.931707450502202 +2019-08-12 07:45:00,25.0,0.424338624,29.932002496803186 +2019-08-12 08:00:00,25.0,0.43015873,29.9322969087386 +2019-08-12 08:15:00,25.0,0.451851852,29.93259068627057 +2019-08-12 08:30:00,25.0,0.477248677,29.932883829361316 +2019-08-12 08:45:00,25.0,0.499470899,29.93317633797313 +2019-08-12 09:00:00,25.0,0.501058201,29.93346821206839 +2019-08-12 09:15:00,25.0,0.504232804,29.933759451609554 +2019-08-12 09:30:00,25.0,0.508465608,29.934050056559165 +2019-08-12 09:45:00,25.0,0.530687831,29.934340026879838 +2019-08-12 10:00:00,25.0,0.554497354,29.934629362534285 +2019-08-12 10:15:00,25.0,0.544973545,29.934918063485284 +2019-08-12 10:30:00,25.0,0.558201058,29.935206129695707 +2019-08-12 10:45:00,25.0,0.576190476,29.935493561128496 +2019-08-12 11:00:00,25.0,0.584656085,29.935780357746687 +2019-08-12 11:15:00,25.0,0.577248677,29.936066519513385 +2019-08-12 11:30:00,25.0,0.582010582,29.93635204639179 +2019-08-12 11:45:00,25.0,0.575132275,29.936636938345174 +2019-08-12 12:00:00,25.0,0.576719577,29.936921195336893 +2019-08-12 12:15:00,25.0,0.574074074,29.93720481733039 +2019-08-12 12:30:00,25.0,0.573015873,29.937487804289177 +2019-08-12 12:45:00,25.0,0.572486772,29.937770156176857 +2019-08-12 13:00:00,25.0,0.57037037,29.938051872957118 +2019-08-12 13:15:00,25.0,0.567724868,29.93833295459372 +2019-08-12 13:30:00,25.0,0.572486772,29.938613401050514 +2019-08-12 13:45:00,25.0,0.566137566,29.938893212291426 +2019-08-12 14:00:00,25.0,0.555555556,29.939172388280465 +2019-08-12 14:15:00,25.0,0.551851852,29.939450928981728 +2019-08-12 14:30:00,25.0,0.552910053,29.93972883435938 +2019-08-12 14:45:00,25.0,0.552380952,29.940006104377684 +2019-08-12 15:00:00,25.0,0.548677249,29.94028273900097 +2019-08-12 15:15:00,25.0,0.545502646,29.940558738193666 +2019-08-12 15:30:00,25.0,0.53015873,29.94083410192026 +2019-08-12 15:45:00,25.0,0.513227513,29.941108830145346 +2019-08-12 16:00:00,25.0,0.492592593,29.94138292283358 +2019-08-12 16:15:00,25.0,0.482539683,29.94165637994971 +2019-08-12 16:30:00,25.0,0.476190476,29.941929201458564 +2019-08-12 16:45:00,25.0,0.464550265,29.94220138732505 +2019-08-12 17:00:00,25.0,0.452910053,29.942472937514157 +2019-08-12 17:15:00,25.0,0.454497354,29.94274385199096 +2019-08-12 17:30:00,25.0,0.447619048,29.94301413072062 +2019-08-12 17:45:00,25.0,0.423280423,29.94328377366836 +2019-08-12 18:00:00,25.0,0.407407407,29.943552780799504 +2019-08-12 18:15:00,25.0,0.397354497,29.943821152079455 +2019-08-12 18:30:00,25.0,0.393121693,29.94408888747369 +2019-08-12 18:45:00,25.0,0.38042328,29.944355986947773 +2019-08-12 19:00:00,25.0,0.365079365,29.94462245046735 +2019-08-12 19:15:00,25.0,0.351322751,29.944888277998146 +2019-08-12 19:30:00,25.0,0.324338624,29.945153469505975 +2019-08-12 19:45:00,25.0,0.284656085,29.94541802495672 +2019-08-12 20:00:00,25.0,0.255026455,29.94568194431636 +2019-08-12 20:15:00,25.0,0.219047619,29.945945227550943 +2019-08-12 20:30:00,25.0,0.195767196,29.94620787462661 +2019-08-12 20:45:00,25.0,0.189417989,29.946469885509572 +2019-08-12 21:00:00,25.0,0.185185185,29.94673126016614 +2019-08-12 21:15:00,25.0,0.16031746,29.946991998562684 +2019-08-12 21:30:00,25.0,0.15026455,29.947252100665672 +2019-08-12 21:45:00,25.0,0.147089947,29.947511566441648 +2019-08-12 22:00:00,25.0,0.146560847,29.94777039585724 +2019-08-12 22:15:00,25.0,0.150793651,29.94802858887916 +2019-08-12 22:30:00,25.0,0.143915344,29.948286145474192 +2019-08-12 22:45:00,25.0,0.134391534,29.948543065609215 +2019-08-12 23:00:00,25.0,0.161375661,29.948799349251175 +2019-08-12 23:15:00,25.0,0.14973545,29.949054996367117 +2019-08-12 23:30:00,25.0,0.124867725,29.949310006924154 +2019-08-12 23:45:00,25.0,0.134920635,29.949564380889484 +2019-08-13 00:00:00,25.0,0.158730159,29.949818118230397 +2019-08-13 00:15:00,25.0,0.148148148,29.95007121891425 +2019-08-13 00:30:00,25.0,0.125396825,29.95032368290849 +2019-08-13 00:45:00,25.0,0.116402116,29.95057551018064 +2019-08-13 01:00:00,25.0,0.15978836,29.95082670069832 +2019-08-13 01:15:00,25.0,0.158730159,29.951077254429215 +2019-08-13 01:30:00,25.0,0.120634921,29.9513271713411 +2019-08-13 01:45:00,25.0,0.108465608,29.951576451401824 +2019-08-13 02:00:00,25.0,0.116402116,29.951825094579334 +2019-08-13 02:15:00,25.0,0.114285714,29.952073100841638 +2019-08-13 02:30:00,25.0,0.124338624,29.952320470156845 +2019-08-13 02:45:00,25.0,0.142328042,29.95256720249314 +2019-08-13 03:00:00,25.0,0.148148148,29.95281329781878 +2019-08-13 03:15:00,25.0,0.133333333,29.95305875610211 +2019-08-13 03:30:00,25.0,0.149206349,29.953303577311566 +2019-08-13 03:45:00,25.0,0.157671958,29.95354776141566 +2019-08-13 04:00:00,25.0,0.17989418,29.953791308382975 +2019-08-13 04:15:00,25.0,0.202645503,29.954034218182194 +2019-08-13 04:30:00,25.0,0.176719577,29.95427649078207 +2019-08-13 04:45:00,25.0,0.15978836,29.95451812615144 +2019-08-13 05:00:00,25.0,0.182010582,29.954759124259226 +2019-08-13 05:15:00,25.0,0.185714286,29.95499948507443 +2019-08-13 05:30:00,25.0,0.16984127,29.955239208566137 +2019-08-13 05:45:00,25.0,0.161904762,29.955478294703514 +2019-08-13 06:00:00,25.0,0.16031746,29.955716743455806 +2019-08-13 06:15:00,25.0,0.151322751,29.955954554792346 +2019-08-13 06:30:00,25.0,0.144444444,29.95619172868254 +2019-08-13 06:45:00,25.0,0.142328042,29.956428265095894 +2019-08-13 07:00:00,25.0,0.138095238,29.956664164001975 +2019-08-13 07:15:00,25.0,0.146031746,29.95689942537044 +2019-08-13 07:30:00,25.0,0.140740741,29.95713404917104 +2019-08-13 07:45:00,25.0,0.115343915,29.957368035373584 +2019-08-13 08:00:00,25.0,0.10952381,29.95760138394798 +2019-08-13 08:15:00,25.0,0.101058201,29.95783409486422 +2019-08-13 08:30:00,25.0,0.091005291,29.958066168092365 +2019-08-13 08:45:00,25.0,0.113227513,29.958297603602574 +2019-08-13 09:00:00,25.0,0.137566138,29.95852840136507 +2019-08-13 09:15:00,25.0,0.163492063,29.958758561350173 +2019-08-13 09:30:00,25.0,0.122751323,29.958988083528272 +2019-08-13 09:45:00,25.0,0.141269841,29.959216967869857 +2019-08-13 10:00:00,25.0,0.146031746,29.95944521434548 +2019-08-13 10:15:00,25.0,0.122751323,29.959672822925782 +2019-08-13 10:30:00,25.0,0.144444444,29.959899793581492 +2019-08-13 10:45:00,25.0,0.166666667,29.960126126283416 +2019-08-13 11:00:00,25.0,0.187830688,29.96035182100244 +2019-08-13 11:15:00,25.0,0.230687831,29.960576877709542 +2019-08-13 11:30:00,25.0,0.29047619,29.960801296375763 +2019-08-13 11:45:00,25.0,0.267195767,29.96102507697225 +2019-08-13 12:00:00,25.0,0.253439153,29.961248219470207 +2019-08-13 12:15:00,25.0,0.257671958,29.961470723840943 +2019-08-13 12:30:00,25.0,0.223809524,29.961692590055836 +2019-08-13 12:45:00,25.0,0.239153439,29.961913818086348 +2019-08-13 13:00:00,25.0,0.266666667,29.962134407904024 +2019-08-13 13:15:00,25.0,0.269312169,29.962354359480493 +2019-08-13 13:30:00,25.0,0.261904762,29.962573672787464 +2019-08-13 13:45:00,25.0,0.267195767,29.962792347796725 +2019-08-13 14:00:00,25.0,0.298941799,29.963010384480157 +2019-08-13 14:15:00,25.0,0.298941799,29.963227782809707 +2019-08-13 14:30:00,25.0,0.269312169,29.963444542757415 +2019-08-13 14:45:00,25.0,0.238624339,29.963660664295407 +2019-08-13 15:00:00,25.0,0.22962963,29.96387614739588 +2019-08-13 15:15:00,25.0,0.222222222,29.964090992031117 +2019-08-13 15:30:00,25.0,0.223280423,29.964305198173484 +2019-08-13 15:45:00,25.0,0.207407407,29.964518765795432 +2019-08-13 16:00:00,25.0,0.195767196,29.964731694869492 +2019-08-13 16:15:00,25.0,0.17989418,29.964943985368272 +2019-08-13 16:30:00,25.0,0.187830688,29.965155637264473 +2019-08-13 16:45:00,25.0,0.185714286,29.965366650530868 +2019-08-13 17:00:00,25.0,0.178306878,29.965577025140313 +2019-08-13 17:15:00,25.0,0.186243386,29.965786761065754 +2019-08-13 17:30:00,25.0,0.178835979,29.965995858280216 +2019-08-13 17:45:00,25.0,0.207936508,29.966204316756798 +2019-08-13 18:00:00,25.0,0.212698413,29.96641213646869 +2019-08-13 18:15:00,25.0,0.222222222,29.966619317389167 +2019-08-13 18:30:00,25.0,0.238095238,29.966825859491575 +2019-08-13 18:45:00,25.0,0.237037037,29.96703176274935 +2019-08-13 19:00:00,25.0,0.18994709,29.967237027136004 +2019-08-13 19:15:00,25.0,0.19047619,29.967441652625144 +2019-08-13 19:30:00,25.0,0.197883598,29.967645639190444 +2019-08-13 19:45:00,25.0,0.227513228,29.96784898680567 +2019-08-13 20:00:00,25.0,0.243915344,29.96805169544466 +2019-08-13 20:15:00,25.0,0.249206349,29.968253765081354 +2019-08-13 20:30:00,25.0,0.237566138,29.96845519568975 +2019-08-13 20:45:00,25.0,0.23015873,29.968655987243945 +2019-08-13 21:00:00,25.0,0.24973545,29.968856139718113 +2019-08-13 21:15:00,25.0,0.265608466,29.969055653086507 +2019-08-13 21:30:00,25.0,0.262433862,29.969254527323464 +2019-08-13 21:45:00,25.0,0.258201058,29.96945276240341 +2019-08-13 22:00:00,25.0,0.256084656,29.969650358300843 +2019-08-13 22:15:00,25.0,0.258201058,29.96984731499035 +2019-08-13 22:30:00,25.0,0.26031746,29.970043632446597 +2019-08-13 22:45:00,25.0,0.281481481,29.97023931064433 +2019-08-13 23:00:00,25.0,0.280952381,29.97043434955839 +2019-08-13 23:15:00,25.0,0.300529101,29.970628749163676 +2019-08-13 23:30:00,25.0,0.294708995,29.970822509435198 +2019-08-13 23:45:00,25.0,0.291534392,29.971015630348028 +2019-08-14 00:00:00,25.0,0.29047619,29.971208111877324 +2019-08-14 00:15:00,25.0,0.311111111,29.971399953998333 +2019-08-14 00:30:00,25.0,0.303174603,29.97159115668638 +2019-08-14 00:45:00,25.0,0.300529101,29.971781719916866 +2019-08-14 01:00:00,25.0,0.280952381,29.971971643665285 +2019-08-14 01:15:00,25.0,0.274603175,29.97216092790721 +2019-08-14 01:30:00,25.0,0.277777778,29.972349572618292 +2019-08-14 01:45:00,25.0,0.289417989,29.97253757777427 +2019-08-14 02:00:00,25.0,0.304232804,29.972724943350958 +2019-08-14 02:15:00,25.0,0.301058201,29.972911669324258 +2019-08-14 02:30:00,25.0,0.308465608,29.973097755670153 +2019-08-14 02:45:00,25.0,0.324338624,29.973283202364712 +2019-08-14 03:00:00,25.0,0.337037037,29.973468009384078 +2019-08-14 03:15:00,25.0,0.345502646,29.973652176704483 +2019-08-14 03:30:00,25.0,0.324867725,29.973835704302235 +2019-08-14 03:45:00,25.0,0.312698413,29.974018592153733 +2019-08-14 04:00:00,25.0,0.298941799,29.974200840235454 +2019-08-14 04:15:00,25.0,0.264550265,29.97438244852395 +2019-08-14 04:30:00,25.0,0.238095238,29.97456341699587 +2019-08-14 04:45:00,25.0,0.224338624,29.974743745627933 +2019-08-14 05:00:00,25.0,0.219047619,29.974923434396946 +2019-08-14 05:15:00,25.0,0.225925926,29.975102483279798 +2019-08-14 05:30:00,25.0,0.289417989,29.975280892253455 +2019-08-14 05:45:00,25.0,0.316931217,29.975458661294976 +2019-08-14 06:00:00,25.0,0.335978836,29.97563579038149 +2019-08-14 06:15:00,25.0,0.338095238,29.975812279490217 +2019-08-14 06:30:00,25.0,0.307407407,29.97598812859846 +2019-08-14 06:45:00,25.0,0.281481481,29.976163337683595 +2019-08-14 07:00:00,25.0,0.246031746,29.97633790672309 +2019-08-14 07:15:00,25.0,0.229100529,29.976511835694488 +2019-08-14 07:30:00,25.0,0.237566138,29.97668512457542 +2019-08-14 07:45:00,25.0,0.257142857,29.976857773343596 +2019-08-14 08:00:00,25.0,0.274603175,29.977029781976814 +2019-08-14 08:15:00,25.0,0.315873016,29.977201150452945 +2019-08-14 08:30:00,25.0,0.317989418,29.97737187874995 +2019-08-14 08:45:00,25.0,0.28994709,29.977541966845866 +2019-08-14 09:00:00,25.0,0.299470899,29.97771141471882 +2019-08-14 09:15:00,25.0,0.31957672,29.977880222347014 +2019-08-14 09:30:00,25.0,0.3,29.97804838970874 +2019-08-14 09:45:00,25.0,0.27037037,29.97821591678236 +2019-08-14 10:00:00,25.0,0.269312169,29.978382803546335 +2019-08-14 10:15:00,25.0,0.260846561,29.978549049979193 +2019-08-14 10:30:00,25.0,0.26984127,29.978714656059555 +2019-08-14 10:45:00,25.0,0.315873016,29.97887962176612 +2019-08-14 11:00:00,25.0,0.291534392,29.97904394707767 +2019-08-14 11:15:00,25.0,0.252910053,29.979207631973065 +2019-08-14 11:30:00,25.0,0.26031746,29.97937067643125 +2019-08-14 11:45:00,25.0,0.248148148,29.979533080431267 +2019-08-14 12:00:00,25.0,0.268253968,29.979694843952217 +2019-08-14 12:15:00,25.0,0.274074074,29.979855966973293 +2019-08-14 12:30:00,25.0,0.257142857,29.980016449473773 +2019-08-14 12:45:00,25.0,0.260846561,29.980176291433015 +2019-08-14 13:00:00,25.0,0.250793651,29.980335492830463 +2019-08-14 13:15:00,25.0,0.242857143,29.980494053645636 +2019-08-14 13:30:00,25.0,0.257671958,29.980651973858137 +2019-08-14 13:45:00,25.0,0.279365079,29.98080925344766 +2019-08-14 14:00:00,25.0,0.294179894,29.980965892393975 +2019-08-14 14:15:00,25.0,0.293650794,29.981121890676935 +2019-08-14 14:30:00,25.0,0.29047619,29.98127724827647 +2019-08-14 14:45:00,25.0,0.261904762,29.9814319651726 +2019-08-14 15:00:00,25.0,0.244444444,29.981586041345427 +2019-08-14 15:15:00,25.0,0.214814815,29.981739476775132 +2019-08-14 15:30:00,25.0,0.177777778,29.98189227144198 +2019-08-14 15:45:00,25.0,0.148148148,29.982044425326315 +2019-08-14 16:00:00,25.0,0.134391534,29.98219593840857 +2019-08-14 16:15:00,25.0,0.145502646,29.982346810669256 +2019-08-14 16:30:00,25.0,0.173015873,29.982497042088973 +2019-08-14 16:45:00,25.0,0.203174603,29.98264663264839 +2019-08-14 17:00:00,25.0,0.216931217,29.98279558232827 +2019-08-14 17:15:00,25.0,0.229100529,29.98294389110945 +2019-08-14 17:30:00,25.0,0.206349206,29.983091558972863 +2019-08-14 17:45:00,25.0,0.242328042,29.983238585899507 +2019-08-14 18:00:00,25.0,0.259259259,29.98338497187048 +2019-08-14 18:15:00,25.0,0.251322751,29.98353071686694 +2019-08-14 18:30:00,25.0,0.2,29.983675820870154 +2019-08-14 18:45:00,25.0,0.17989418,29.983820283861455 +2019-08-14 19:00:00,25.0,0.172486772,29.98396410582226 +2019-08-14 19:15:00,25.0,0.186772487,29.98410728673407 +2019-08-14 19:30:00,25.0,0.224338624,29.98424982657847 +2019-08-14 19:45:00,25.0,0.251851852,29.984391725337126 +2019-08-14 20:00:00,25.0,0.292063492,29.984532982991784 +2019-08-14 20:15:00,25.0,0.298412698,29.984673599524278 +2019-08-14 20:30:00,25.0,0.285185185,29.984813574916522 +2019-08-14 20:45:00,25.0,0.283068783,29.98495290915051 +2019-08-14 21:00:00,25.0,0.261904762,29.985091602208325 +2019-08-14 21:15:00,25.0,0.245502646,29.98522965407212 +2019-08-14 21:30:00,25.0,0.282010582,29.985367064724144 +2019-08-14 21:45:00,25.0,0.306349206,29.985503834146726 +2019-08-14 22:00:00,25.0,0.349206349,29.985639962322267 +2019-08-14 22:15:00,25.0,0.395238095,29.985775449233262 +2019-08-14 22:30:00,25.0,0.417989418,29.985910294862283 +2019-08-14 22:45:00,25.0,0.431216931,29.986044499191987 +2019-08-14 23:00:00,25.0,0.454497354,29.98617806220511 +2019-08-14 23:15:00,25.0,0.467195767,29.986310983884476 +2019-08-14 23:30:00,25.0,0.455026455,29.986443264212987 +2019-08-14 23:45:00,25.0,0.468783069,29.98657490317363 +2019-08-15 00:00:00,25.0,0.476190476,29.98670590074947 +2019-08-15 00:15:00,25.0,0.486772487,29.98683625692366 +2019-08-15 00:30:00,25.0,0.504232804,29.98696597167943 +2019-08-15 00:45:00,25.0,0.497883598,29.987095045000103 +2019-08-15 01:00:00,25.0,0.497883598,29.987223476869076 +2019-08-15 01:15:00,25.0,0.494179894,29.987351267269823 +2019-08-15 01:30:00,25.0,0.508994709,29.98747841618591 +2019-08-15 01:45:00,25.0,0.517460317,29.987604923600983 +2019-08-15 02:00:00,25.0,0.539153439,29.987730789498777 +2019-08-15 02:15:00,25.0,0.559259259,29.98785601386309 +2019-08-15 02:30:00,25.0,0.56984127,29.98798059667783 +2019-08-15 02:45:00,25.0,0.573015873,29.988104537926958 +2019-08-15 03:00:00,25.0,0.578306878,29.988227837594543 +2019-08-15 03:15:00,25.0,0.579365079,29.988350495664726 +2019-08-15 03:30:00,25.0,0.574603175,29.988472512121724 +2019-08-15 03:45:00,25.0,0.57989418,29.988593886949847 +2019-08-15 04:00:00,25.0,0.585185185,29.988714620133482 +2019-08-15 04:15:00,25.0,0.597883598,29.9888347116571 +2019-08-15 04:30:00,25.0,0.612698413,29.988954161505255 +2019-08-15 04:45:00,25.0,0.613756614,29.989072969662587 +2019-08-15 05:00:00,25.0,0.612169312,29.989191136113806 +2019-08-15 05:15:00,25.0,0.600529101,29.98930866084372 +2019-08-15 05:30:00,25.0,0.535449735,29.98942554383721 +2019-08-15 05:45:00,25.0,0.522751323,29.989541785079243 +2019-08-15 06:00:00,25.0,0.504232804,29.98965738455487 +2019-08-15 06:15:00,25.0,0.478835979,29.989772342249218 +2019-08-15 06:30:00,25.0,0.455026455,29.989886658147505 +2019-08-15 06:45:00,25.0,0.441269841,29.99000033223502 +2019-08-15 07:00:00,25.0,0.42010582,29.990113364497155 +2019-08-15 07:15:00,25.0,0.403174603,29.990225754919358 +2019-08-15 07:30:00,25.0,0.38042328,29.990337503487183 +2019-08-15 07:45:00,25.0,0.38042328,29.99044861018625 +2019-08-15 08:00:00,25.0,0.388359788,29.99055907500227 +2019-08-15 08:15:00,25.0,0.398941799,29.990668897921037 +2019-08-15 08:30:00,25.0,0.407936508,29.99077807892842 +2019-08-15 08:45:00,25.0,0.396296296,29.990886618010386 +2019-08-15 09:00:00,25.0,0.382539683,29.990994515152966 +2019-08-15 09:15:00,25.0,0.360846561,29.991101770342286 +2019-08-15 09:30:00,25.0,0.322222222,29.991208383564548 +2019-08-15 09:45:00,25.0,0.285714286,29.991314354806036 +2019-08-15 10:00:00,25.0,0.264550265,29.991419684053128 +2019-08-15 10:15:00,25.0,0.282010582,29.99152437129227 +2019-08-15 10:30:00,25.0,0.25978836,29.99162841651 +2019-08-15 10:45:00,25.0,0.227513228,29.991731819692934 +2019-08-15 11:00:00,25.0,0.262433862,29.99183458082777 +2019-08-15 11:15:00,25.0,0.282010582,29.9919366999013 +2019-08-15 11:30:00,25.0,0.275132275,29.992038176900373 +2019-08-15 11:45:00,25.0,0.317460317,29.992139011811954 +2019-08-15 12:00:00,25.0,0.357671958,29.99223920462306 +2019-08-15 12:15:00,25.0,0.360846561,29.992338755320812 +2019-08-15 12:30:00,25.0,0.367195767,29.992437663892403 +2019-08-15 12:45:00,25.0,0.403703704,29.99253593032511 +2019-08-15 13:00:00,25.0,0.386772487,29.992633554606297 +2019-08-15 13:15:00,25.0,0.393121693,29.9927305367234 +2019-08-15 13:30:00,25.0,0.433862434,29.992826876663955 +2019-08-15 13:45:00,25.0,0.457142857,29.992922574415566 +2019-08-15 14:00:00,25.0,0.449206349,29.99301762996592 +2019-08-15 14:15:00,25.0,0.420634921,29.993112043302798 +2019-08-15 14:30:00,25.0,0.436507937,29.99320581441405 +2019-08-15 14:45:00,25.0,0.431746032,29.99329894328762 +2019-08-15 15:00:00,25.0,0.449206349,29.993391429911526 +2019-08-15 15:15:00,25.0,0.458201058,29.993483274273878 +2019-08-15 15:30:00,25.0,0.461904762,29.993574476362852 +2019-08-15 15:45:00,25.0,0.474603175,29.993665036166725 +2019-08-15 16:00:00,25.0,0.468253968,29.99375495367385 +2019-08-15 16:15:00,25.0,0.475661376,29.99384422887266 +2019-08-15 16:30:00,25.0,0.506878307,29.993932861751667 +2019-08-15 16:45:00,25.0,0.493121693,29.994020852299478 +2019-08-15 17:00:00,25.0,0.510582011,29.994108200504776 +2019-08-15 17:15:00,25.0,0.513227513,29.99419490635632 +2019-08-15 17:30:00,25.0,0.472486772,29.994280969842958 +2019-08-15 17:45:00,25.0,0.418518519,29.994366390953623 +2019-08-15 18:00:00,25.0,0.396296296,29.99445116967733 +2019-08-15 18:15:00,25.0,0.394708995,29.994535306003172 +2019-08-15 18:30:00,25.0,0.381481481,29.994618799920328 +2019-08-15 18:45:00,25.0,0.359259259,29.994701651418058 +2019-08-15 19:00:00,25.0,0.362433862,29.994783860485704 +2019-08-15 19:15:00,25.0,0.373544974,29.994865427112696 +2019-08-15 19:30:00,25.0,0.385714286,29.99494635128854 +2019-08-15 19:45:00,25.0,0.395767196,29.99502663300283 +2019-08-15 20:00:00,25.0,0.405820106,29.995106272245238 +2019-08-15 20:15:00,25.0,0.407407407,29.995185269005518 +2019-08-15 20:30:00,25.0,0.424338624,29.99526362327351 +2019-08-15 20:45:00,25.0,0.43968254,29.99534133503914 +2019-08-15 21:00:00,25.0,0.445502646,29.99541840429241 +2019-08-15 21:15:00,25.0,0.440740741,29.995494831023407 +2019-08-15 21:30:00,25.0,0.438095238,29.995570615222302 +2019-08-15 21:45:00,25.0,0.438095238,29.995645756879348 +2019-08-15 22:00:00,25.0,0.456084656,29.995720255984875 +2019-08-15 22:15:00,25.0,0.473544974,29.995794112529307 +2019-08-15 22:30:00,25.0,0.47037037,29.99586732650314 +2019-08-15 22:45:00,25.0,0.49047619,29.99593989789696 +2019-08-15 23:00:00,25.0,0.476719577,29.996011826701434 +2019-08-15 23:15:00,25.0,0.439153439,29.996083112907307 +2019-08-15 23:30:00,25.0,0.434920635,29.99615375650541 +2019-08-15 23:45:00,25.0,0.494708995,29.996223757486657 +2019-08-16 00:00:00,25.0,0.524338624,29.996293115842047 +2019-08-16 00:15:00,25.0,0.536507937,29.996361831562655 +2019-08-16 00:30:00,25.0,0.510582011,29.996429904639648 +2019-08-16 00:45:00,25.0,0.455026455,29.996497335064262 +2019-08-16 01:00:00,25.0,0.457671958,29.99656412282783 +2019-08-16 01:15:00,25.0,0.476719577,29.996630267921763 +2019-08-16 01:30:00,25.0,0.49047619,29.99669577033755 +2019-08-16 01:45:00,25.0,0.470899471,29.996760630066763 +2019-08-16 02:00:00,25.0,0.476719577,29.996824847101067 +2019-08-16 02:15:00,25.0,0.501587302,29.996888421432196 +2019-08-16 02:30:00,25.0,0.486772487,29.99695135305198 +2019-08-16 02:45:00,25.0,0.45026455,29.997013641952314 +2019-08-16 03:00:00,25.0,0.411111111,29.997075288125195 +2019-08-16 03:15:00,25.0,0.406878307,29.997136291562693 +2019-08-16 03:30:00,25.0,0.398412698,29.997196652256957 +2019-08-16 03:45:00,25.0,0.376190476,29.997256370200226 +2019-08-16 04:00:00,25.0,0.350793651,29.99731544538482 +2019-08-16 04:15:00,25.0,0.325925926,29.997373877803142 +2019-08-16 04:30:00,25.0,0.303174603,29.99743166744767 +2019-08-16 04:45:00,25.0,0.294179894,29.997488814310977 +2019-08-16 05:00:00,25.0,0.285185185,29.997545318385708 +2019-08-16 05:15:00,25.0,0.266137566,29.9976011796646 +2019-08-16 05:30:00,25.0,0.257142857,29.997656398140464 +2019-08-16 05:45:00,25.0,0.25026455,29.9977109738062 +2019-08-16 06:00:00,25.0,0.228042328,29.99776490665479 +2019-08-16 06:15:00,25.0,0.225925926,29.997818196679294 +2019-08-16 06:30:00,25.0,0.225925926,29.997870843872857 +2019-08-16 06:45:00,25.0,0.202116402,29.99792284822871 +2019-08-16 07:00:00,25.0,0.180952381,29.997974209740164 +2019-08-16 07:15:00,25.0,0.168253968,29.99802492840061 +2019-08-16 07:30:00,25.0,0.148677249,29.998075004203525 +2019-08-16 07:45:00,25.0,0.131746032,29.998124437142472 +2019-08-16 08:00:00,25.0,0.125396825,29.99817322721109 +2019-08-16 08:15:00,25.0,0.114814815,29.9982213744031 +2019-08-16 08:30:00,25.0,0.113227513,29.998268878712317 +2019-08-16 08:45:00,25.0,0.108994709,29.998315740132625 +2019-08-16 09:00:00,25.0,0.1,29.998361958658002 +2019-08-16 09:15:00,25.0,0.10952381,29.998407534282492 +2019-08-16 09:30:00,25.0,0.108465608,29.99845246700025 +2019-08-16 09:45:00,25.0,0.105291005,29.99849675680548 +2019-08-16 10:00:00,25.0,0.104232804,29.998540403692495 +2019-08-16 10:15:00,25.0,0.104232804,29.998583407655676 +2019-08-16 10:30:00,25.0,0.100529101,29.9986257686895 +2019-08-16 10:45:00,25.0,0.1,29.998667486788506 +2019-08-16 11:00:00,25.0,0.107936508,29.99870856194734 +2019-08-16 11:15:00,25.0,0.136507937,29.998748994160714 +2019-08-16 11:30:00,25.0,0.166666667,29.99878878342342 +2019-08-16 11:45:00,25.0,0.194708995,29.998827929730354 +2019-08-16 12:00:00,25.0,0.220634921,29.998866433076476 +2019-08-16 12:15:00,25.0,0.231746032,29.998904293456828 +2019-08-16 12:30:00,25.0,0.234920635,29.998941510866544 +2019-08-16 12:45:00,25.0,0.235449735,29.99897808530084 +2019-08-16 13:00:00,25.0,0.264021164,29.999014016755005 +2019-08-16 13:15:00,25.0,0.280952381,29.999049305224425 +2019-08-16 13:30:00,25.0,0.275661376,29.99908395070456 +2019-08-16 13:45:00,25.0,0.262433862,29.999117953190947 +2019-08-16 14:00:00,25.0,0.247619048,29.999151312679217 +2019-08-16 14:15:00,25.0,0.243915344,29.99918402916508 +2019-08-16 14:30:00,25.0,0.24021164,29.999216102644326 +2019-08-16 14:45:00,25.0,0.23015873,29.99924753311283 +2019-08-16 15:00:00,25.0,0.228571429,29.99927832056655 +2019-08-16 15:15:00,25.0,0.230687831,29.999308465001526 +2019-08-16 15:30:00,25.0,0.228571429,29.999337966413883 +2019-08-16 15:45:00,25.0,0.239153439,29.999366824799825 +2019-08-16 16:00:00,25.0,0.272486772,29.999395040155637 +2019-08-16 16:15:00,25.0,0.288888889,29.999422612477694 +2019-08-16 16:30:00,25.0,0.299470899,29.999449541762445 +2019-08-16 16:45:00,25.0,0.310582011,29.99947582800643 +2019-08-16 17:00:00,25.0,0.311111111,29.99950147120627 +2019-08-16 17:15:00,25.0,0.307936508,29.99952647135866 +2019-08-16 17:30:00,25.0,0.30952381,29.999550828460393 +2019-08-16 17:45:00,25.0,0.31005291,29.999574542508327 +2019-08-16 18:00:00,25.0,0.314285714,29.999597613499418 +2019-08-16 18:15:00,25.0,0.316402116,29.999620041430695 +2019-08-16 18:30:00,25.0,0.313227513,29.99964182629928 +2019-08-16 18:45:00,25.0,0.335449735,29.999662968102363 +2019-08-16 19:00:00,25.0,0.378306878,29.999683466837226 +2019-08-16 19:15:00,25.0,0.401587302,29.999703322501237 +2019-08-16 19:30:00,25.0,0.400529101,29.999722535091838 +2019-08-16 19:45:00,25.0,0.395767196,29.999741104606557 +2019-08-16 20:00:00,25.0,0.391005291,29.999759031043013 +2019-08-16 20:15:00,25.0,0.394179894,29.99977631439889 +2019-08-16 20:30:00,25.0,0.396296296,29.99979295467197 +2019-08-16 20:45:00,25.0,0.400529101,29.999808951860118 +2019-08-16 21:00:00,25.0,0.399470899,29.999824305961265 +2019-08-16 21:15:00,25.0,0.394708995,29.999839016973446 +2019-08-16 21:30:00,25.0,0.402645503,29.999853084894763 +2019-08-16 21:45:00,25.0,0.412169312,29.999866509723407 +2019-08-16 22:00:00,25.0,0.457671958,29.999879291457656 +2019-08-16 22:15:00,25.0,0.479365079,29.99989143009586 +2019-08-16 22:30:00,25.0,0.495767196,29.999902925636462 +2019-08-16 22:45:00,25.0,0.505820106,29.999913778077982 +2019-08-16 23:00:00,25.0,0.50952381,29.999923987419024 +2019-08-16 23:15:00,25.0,0.521693122,29.999933553658273 +2019-08-16 23:30:00,25.0,0.526455026,29.999942476794505 +2019-08-16 23:45:00,25.0,0.538095238,29.999950756826564 +2019-08-17 00:00:00,25.0,0.547089947,29.99995839375339 +2019-08-17 00:15:00,25.0,0.551851852,29.999965387573997 +2019-08-17 00:30:00,25.0,0.541798942,29.999971738287492 +2019-08-17 00:45:00,25.0,0.541269841,29.99997744589305 +2019-08-17 01:00:00,25.0,0.537566138,29.99998251038994 +2019-08-17 01:15:00,25.0,0.548677249,29.999986931777517 +2019-08-17 01:30:00,25.0,0.564550265,29.999990710055204 +2019-08-17 01:45:00,25.0,0.573015873,29.99999384522252 +2019-08-17 02:00:00,25.0,0.582010582,29.999996337279057 +2019-08-17 02:15:00,25.0,0.585714286,29.999998186224495 +2019-08-17 02:30:00,25.0,0.594179894,29.9999993920586 +2019-08-17 02:45:00,25.0,0.597354497,29.999999954781217 +2019-08-17 03:00:00,25.0,0.601587302,29.99999987439227 +2019-08-17 03:15:00,25.0,0.605820106,29.999999150891774 +2019-08-17 03:30:00,25.0,0.603703704,29.999997784279817 +2019-08-17 03:45:00,25.0,0.603174603,29.999995774556574 +2019-08-17 04:00:00,25.0,0.606349206,29.999993121722312 +2019-08-17 04:15:00,25.0,0.604761905,29.999989825777362 +2019-08-17 04:30:00,25.0,0.603174603,29.999985886722154 +2019-08-17 04:45:00,25.0,0.603703704,29.999981304557195 +2019-08-17 05:00:00,25.0,0.603174603,29.999976079283073 +2019-08-17 05:15:00,25.0,0.604232804,29.999970210900457 +2019-08-17 05:30:00,25.0,0.602116402,29.999963699410102 +2019-08-17 05:45:00,25.0,0.607407407,29.999956544812854 +2019-08-17 06:00:00,25.0,0.611640212,29.999948747109624 +2019-08-17 06:15:00,25.0,0.611111111,29.99994030630142 +2019-08-17 06:30:00,25.0,0.614285714,29.999931222389325 +2019-08-17 06:45:00,25.0,0.608994709,29.999921495374508 +2019-08-17 07:00:00,25.0,0.605291005,29.99991112525822 +2019-08-17 07:15:00,25.0,0.597354497,29.999900112041793 +2019-08-17 07:30:00,25.0,0.593650794,29.99988845572665 +2019-08-17 07:45:00,25.0,0.591534392,29.999876156314286 +2019-08-17 08:00:00,25.0,0.588359788,29.99986321380628 +2019-08-17 08:15:00,25.0,0.584656085,29.999849628204302 +2019-08-17 08:30:00,25.0,0.57989418,29.999835399510097 +2019-08-17 08:45:00,25.0,0.57037037,29.999820527725493 +2019-08-17 09:00:00,25.0,0.561904762,29.999805012852406 +2019-08-17 09:15:00,25.0,0.561904762,29.99978885489283 +2019-08-17 09:30:00,25.0,0.57037037,29.999772053848847 +2019-08-17 09:45:00,25.0,0.566666667,29.999754609722615 +2019-08-17 10:00:00,25.0,0.553968254,29.999736522516372 +2019-08-17 10:15:00,25.0,0.546560847,29.999717792232456 +2019-08-17 10:30:00,25.0,0.548148148,29.999698418873265 +2019-08-17 10:45:00,25.0,0.555555556,29.9996784024413 +2019-08-17 11:00:00,25.0,0.562433862,29.99965774293913 +2019-08-17 11:15:00,25.0,0.552910053,29.999636440369414 +2019-08-17 11:30:00,25.0,0.530687831,29.999614494734892 +2019-08-17 11:45:00,25.0,0.499470899,29.99959190603839 +2019-08-17 12:00:00,25.0,0.474603175,29.999568674282806 +2019-08-17 12:15:00,25.0,0.468783069,29.99954479947113 +2019-08-17 12:30:00,25.0,0.455555556,29.999520281606436 +2019-08-17 12:45:00,25.0,0.436507937,29.99949512069188 +2019-08-17 13:00:00,25.0,0.416931217,29.999469316730693 +2019-08-17 13:15:00,25.0,0.417460317,29.999442869726195 +2019-08-17 13:30:00,25.0,0.415343915,29.99941577968179 +2019-08-17 13:45:00,25.0,0.45026455,29.999388046600956 +2019-08-17 14:00:00,25.0,0.472486772,29.99935967048727 +2019-08-17 14:15:00,25.0,0.465608466,29.999330651344373 +2019-08-17 14:30:00,25.0,0.455026455,29.999300989176003 +2019-08-17 14:45:00,25.0,0.423809524,29.999270683985976 +2019-08-17 15:00:00,25.0,0.388888889,29.999239735778183 +2019-08-17 15:15:00,25.0,0.381481481,29.99920814455661 +2019-08-17 15:30:00,25.0,0.360846561,29.99917591032532 +2019-08-17 15:45:00,25.0,0.341269841,29.99914303308846 +2019-08-17 16:00:00,25.0,0.331216931,29.999109512850254 +2019-08-17 16:15:00,25.0,0.317989418,29.999075349615016 +2019-08-17 16:30:00,25.0,0.306349206,29.99904054338714 +2019-08-17 16:45:00,25.0,0.288888889,29.999005094171107 +2019-08-17 17:00:00,25.0,0.272486772,29.99896900197147 +2019-08-17 17:15:00,25.0,0.243386243,29.998932266792877 +2019-08-17 17:30:00,25.0,0.215343915,29.99889488864005 +2019-08-17 17:45:00,25.0,0.189417989,29.998856867517794 +2019-08-17 18:00:00,25.0,0.192063492,29.998818203431004 +2019-08-17 18:15:00,25.0,0.164021164,29.99877889638465 +2019-08-17 18:30:00,25.0,0.128042328,29.998738946383792 +2019-08-17 18:45:00,25.0,0.104232804,29.998698353433564 +2019-08-17 19:00:00,25.0,0.101058201,29.99865711753919 +2019-08-17 19:15:00,25.0,0.093650794,29.99861523870597 +2019-08-17 19:30:00,25.0,0.086772487,29.998572716939293 +2019-08-17 19:45:00,25.0,0.087830688,29.998529552244634 +2019-08-17 20:00:00,25.0,0.097354497,29.998485744627533 +2019-08-17 20:15:00,25.0,0.092592593,29.998441294093634 +2019-08-17 20:30:00,25.0,0.095238095,29.99839620064865 +2019-08-17 20:45:00,25.0,0.08994709,29.998350464298383 +2019-08-17 21:00:00,25.0,0.087830688,29.998304085048716 +2019-08-17 21:15:00,25.0,0.07989418,29.998257062905612 +2019-08-17 21:30:00,25.0,0.077777778,29.998209397875122 +2019-08-17 21:45:00,25.0,0.07989418,29.99816108996337 +2019-08-17 22:00:00,25.0,0.084656085,29.99811213917658 +2019-08-17 22:15:00,25.0,0.091534392,29.998062545521044 +2019-08-17 22:30:00,25.0,0.093121693,29.998012309003137 +2019-08-17 22:45:00,25.0,0.097883598,29.997961429629324 +2019-08-17 23:00:00,25.0,0.116931217,29.99790990740615 +2019-08-17 23:15:00,25.0,0.137037037,29.997857742340237 +2019-08-17 23:30:00,25.0,0.144444444,29.997804934438303 +2019-08-17 23:45:00,25.0,0.142857143,29.997751483707134 +2019-08-18 00:00:00,25.0,0.153439153,29.997697390153604 +2019-08-18 00:15:00,25.0,0.142328042,29.997642653784673 +2019-08-18 00:30:00,25.0,0.125925926,29.997587274607383 +2019-08-18 00:45:00,25.0,0.151322751,29.997531252628853 +2019-08-18 01:00:00,25.0,0.17037037,29.997474587856292 +2019-08-18 01:15:00,25.0,0.197883598,29.99741728029699 +2019-08-18 01:30:00,25.0,0.193121693,29.99735932995831 +2019-08-18 01:45:00,25.0,0.167195767,29.997300736847716 +2019-08-18 02:00:00,25.0,0.15026455,29.997241500972738 +2019-08-18 02:15:00,25.0,0.15026455,29.997181622340996 +2019-08-18 02:30:00,25.0,0.153439153,29.997121100960193 +2019-08-18 02:45:00,25.0,0.150793651,29.997059936838113 +2019-08-18 03:00:00,25.0,0.142857143,29.996998129982618 +2019-08-18 03:15:00,25.0,0.149206349,29.996935680401666 +2019-08-18 03:30:00,25.0,0.171957672,29.996872588103287 +2019-08-18 03:45:00,25.0,0.182539683,29.996808853095594 +2019-08-18 04:00:00,25.0,0.192592593,29.996744475386784 +2019-08-18 04:15:00,25.0,0.203703704,29.99667945498514 +2019-08-18 04:30:00,25.0,0.194708995,29.996613791899023 +2019-08-18 04:45:00,25.0,0.196825397,29.996547486136883 +2019-08-18 05:00:00,25.0,0.196825397,29.996480537707242 +2019-08-18 05:15:00,25.0,0.185185185,29.99641294661872 +2019-08-18 05:30:00,25.0,0.183597884,29.99634471288 +2019-08-18 05:45:00,25.0,0.191005291,29.996275836499862 +2019-08-18 06:00:00,25.0,0.184126984,29.99620631748717 +2019-08-18 06:15:00,25.0,0.194708995,29.996136155850863 +2019-08-18 06:30:00,25.0,0.216402116,29.99606535159996 +2019-08-18 06:45:00,25.0,0.223280423,29.995993904743575 +2019-08-18 07:00:00,25.0,0.224338624,29.995921815290895 +2019-08-18 07:15:00,25.0,0.225396825,29.995849083251194 +2019-08-18 07:30:00,25.0,0.244973545,29.995775708633822 +2019-08-18 07:45:00,25.0,0.248148148,29.995701691448225 +2019-08-18 08:00:00,25.0,0.255555556,29.995627031703915 +2019-08-18 08:15:00,25.0,0.243915344,29.995551729410497 +2019-08-18 08:30:00,25.0,0.245502646,29.99547578457766 +2019-08-18 08:45:00,25.0,0.253968254,29.99539919721517 +2019-08-18 09:00:00,25.0,0.286772487,29.995321967332877 +2019-08-18 09:15:00,25.0,0.318518519,29.995244094940716 +2019-08-18 09:30:00,25.0,0.363492063,29.995165580048702 +2019-08-18 09:45:00,25.0,0.371957672,29.995086422666937 +2019-08-18 10:00:00,25.0,0.367724868,29.995006622805594 +2019-08-18 10:15:00,25.0,0.374074074,29.99492618047495 +2019-08-18 10:30:00,25.0,0.376719577,29.994845095685335 +2019-08-18 10:45:00,25.0,0.358730159,29.994763368447195 +2019-08-18 11:00:00,25.0,0.348148148,29.99468099877103 +2019-08-18 11:15:00,25.0,0.349206349,29.994597986667443 +2019-08-18 11:30:00,25.0,0.335449735,29.994514332147105 +2019-08-18 11:45:00,25.0,0.321164021,29.99443003522078 +2019-08-18 12:00:00,25.0,0.313227513,29.99434509589931 +2019-08-18 12:15:00,25.0,0.316402116,29.994259514193615 +2019-08-18 12:30:00,25.0,0.306349206,29.99417329011471 +2019-08-18 12:45:00,25.0,0.258730159,29.99408642367368 +2019-08-18 13:00:00,25.0,0.231746032,29.993998914881697 +2019-08-18 13:15:00,25.0,0.245502646,29.993910763750023 +2019-08-18 13:30:00,25.0,0.263492063,29.993821970289993 +2019-08-18 13:45:00,25.0,0.264021164,29.993732534513025 +2019-08-18 14:00:00,25.0,0.258730159,29.993642456430624 +2019-08-18 14:15:00,25.0,0.271428571,29.993551736054382 +2019-08-18 14:30:00,25.0,0.278306878,29.99346037339596 +2019-08-18 14:45:00,25.0,0.287301587,29.99336836846711 +2019-08-18 15:00:00,25.0,0.292063492,29.99327572127967 +2019-08-18 15:15:00,25.0,0.284656085,29.993182431845554 +2019-08-18 15:30:00,25.0,0.280952381,29.99308850017676 +2019-08-18 15:45:00,25.0,0.278306878,29.992993926285372 +2019-08-18 16:00:00,25.0,0.27037037,29.992898710183553 +2019-08-18 16:15:00,25.0,0.273544974,29.99280285188355 +2019-08-18 16:30:00,25.0,0.296825397,29.992706351397693 +2019-08-18 16:45:00,25.0,0.308994709,29.992609208738394 +2019-08-18 17:00:00,25.0,0.321164021,29.992511423918145 +2019-08-18 17:15:00,25.0,0.337037037,29.99241299694953 +2019-08-18 17:30:00,25.0,0.35026455,29.992313927845203 +2019-08-18 17:45:00,25.0,0.355026455,29.99221421661791 +2019-08-18 18:00:00,25.0,0.376719577,29.992113863280473 +2019-08-18 18:15:00,25.0,0.400529101,29.9920128678458 +2019-08-18 18:30:00,25.0,0.394708995,29.991911230326885 +2019-08-18 18:45:00,25.0,0.389417989,29.991808950736797 +2019-08-18 19:00:00,25.0,0.384656085,29.99170602908869 +2019-08-18 19:15:00,25.0,0.410582011,29.991602465395808 +2019-08-18 19:30:00,25.0,0.442857143,29.991498259671467 +2019-08-18 19:45:00,25.0,0.430687831,29.991393411929074 +2019-08-18 20:00:00,25.0,0.43968254,29.99128792218211 +2019-08-18 20:15:00,25.0,0.48042328,29.991181790444145 +2019-08-18 20:30:00,25.0,0.516931217,29.99107501672883 +2019-08-18 20:45:00,25.0,0.512169312,29.990967601049903 +2019-08-18 21:00:00,25.0,0.503174603,29.99085954342117 +2019-08-18 21:15:00,25.0,0.495767196,29.99075084385654 +2019-08-18 21:30:00,25.0,0.493121693,29.99064150236999 +2019-08-18 21:45:00,25.0,0.48994709,29.99053151897558 +2019-08-18 22:00:00,25.0,0.475661376,29.99042089368746 +2019-08-18 22:15:00,25.0,0.474603175,29.99030962651986 +2019-08-18 22:30:00,25.0,0.482010582,29.990197717487092 +2019-08-18 22:45:00,25.0,0.487830688,29.99008516660355 +2019-08-18 23:00:00,25.0,0.501058201,29.989971973883705 +2019-08-18 23:15:00,25.0,0.483068783,29.989858139342118 +2019-08-18 23:30:00,25.0,0.474074074,29.989743662993437 +2019-08-18 23:45:00,25.0,0.45978836,29.98962854485238 +2019-08-19 00:00:00,25.0,0.468253968,29.989512784933755 +2019-08-19 00:15:00,25.0,0.468783069,29.98939638325245 +2019-08-19 00:30:00,25.0,0.46984127,29.98927933982344 +2019-08-19 00:45:00,25.0,0.462962963,29.989161654661782 +2019-08-19 01:00:00,25.0,0.456084656,29.989043327782603 +2019-08-19 01:15:00,25.0,0.468253968,29.988924359201135 +2019-08-19 01:30:00,25.0,0.484656085,29.98880474893267 +2019-08-19 01:45:00,25.0,0.491005291,29.988684496992594 +2019-08-19 02:00:00,25.0,0.498941799,29.98856360339638 +2019-08-19 02:15:00,25.0,0.493650794,29.98844206815957 +2019-08-19 02:30:00,25.0,0.467195767,29.988319891297802 +2019-08-19 02:45:00,25.0,0.462433862,29.98819707282679 +2019-08-19 03:00:00,25.0,0.49047619,29.988073612762328 +2019-08-19 03:15:00,25.0,0.47989418,29.987949511120295 +2019-08-19 03:30:00,25.0,0.48042328,29.987824767916656 +2019-08-19 03:45:00,25.0,0.460846561,29.98769938316746 +2019-08-19 04:00:00,25.0,0.482010582,29.987573356888827 +2019-08-19 04:15:00,25.0,0.476719577,29.98744668909697 +2019-08-19 04:30:00,25.0,0.463492063,29.98731937980818 +2019-08-19 04:45:00,25.0,0.468783069,29.987191429038834 +2019-08-19 05:00:00,25.0,0.437037037,29.987062836805386 +2019-08-19 05:15:00,25.0,0.405820106,29.98693360312438 +2019-08-19 05:30:00,25.0,0.394708995,29.986803728012436 +2019-08-19 05:45:00,25.0,0.41957672,29.986673211486256 +2019-08-19 06:00:00,25.0,0.44973545,29.986542053562633 +2019-08-19 06:15:00,25.0,0.444973545,29.986410254258434 +2019-08-19 06:30:00,25.0,0.426984127,29.98627781359061 +2019-08-19 06:45:00,25.0,0.432275132,29.9861447315762 +2019-08-19 07:00:00,25.0,0.448148148,29.986011008232317 +2019-08-19 07:15:00,25.0,0.474074074,29.985876643576162 +2019-08-19 07:30:00,25.0,0.476719577,29.98574163762502 +2019-08-19 07:45:00,25.0,0.483597884,29.98560599039625 +2019-08-19 08:00:00,25.0,0.511111111,29.985469701907306 +2019-08-19 08:15:00,25.0,0.554497354,29.98533277217571 +2019-08-19 08:30:00,25.0,0.582539683,29.985195201219085 +2019-08-19 08:45:00,25.0,0.587301587,29.985056989055114 +2019-08-19 09:00:00,25.0,0.585714286,29.984918135701584 +2019-08-19 09:15:00,25.0,0.57989418,29.984778641176348 +2019-08-19 09:30:00,25.0,0.583597884,29.984638505497347 +2019-08-19 09:45:00,25.0,0.582539683,29.984497728682612 +2019-08-19 10:00:00,25.0,0.579365079,29.98435631075025 +2019-08-19 10:15:00,25.0,0.58994709,29.98421425171844 +2019-08-19 10:30:00,25.0,0.593650794,29.98407155160547 +2019-08-19 10:45:00,25.0,0.603703704,29.98392821042968 +2019-08-19 11:00:00,25.0,0.619047619,29.983784228209515 +2019-08-19 11:15:00,25.0,0.626455026,29.983639604963493 +2019-08-19 11:30:00,25.0,0.634920635,29.983494340710212 +2019-08-19 11:45:00,25.0,0.621693122,29.98334843546836 +2019-08-19 12:00:00,25.0,0.615343915,29.983201889256705 +2019-08-19 12:15:00,25.0,0.613756614,29.98305470209409 +2019-08-19 12:30:00,25.0,0.617989418,29.982906873999454 +2019-08-19 12:45:00,25.0,0.619047619,29.982758404991806 +2019-08-19 13:00:00,25.0,0.621164021,29.982609295090242 +2019-08-19 13:15:00,25.0,0.618518519,29.982459544313944 +2019-08-19 13:30:00,25.0,0.611111111,29.98230915268217 +2019-08-19 13:45:00,25.0,0.558730159,29.98215812021427 +2019-08-19 14:00:00,25.0,0.556084656,29.982006446929663 +2019-08-19 14:15:00,25.0,0.551851852,29.98185413284786 +2019-08-19 14:30:00,25.0,0.549206349,29.981701177988455 +2019-08-19 14:45:00,25.0,0.545502646,29.981547582371114 +2019-08-19 15:00:00,25.0,0.53968254,29.9813933460156 +2019-08-19 15:15:00,25.0,0.528571429,29.98123846894175 +2019-08-19 15:30:00,25.0,0.523280423,29.981082951169483 +2019-08-19 15:45:00,25.0,0.519047619,29.980926792718805 +2019-08-19 16:00:00,25.0,0.518518519,29.980769993609794 +2019-08-19 16:15:00,25.0,0.511111111,29.980612553862628 +2019-08-19 16:30:00,25.0,0.498941799,29.980454473497545 +2019-08-19 16:45:00,25.0,0.483597884,29.98029575253489 +2019-08-19 17:00:00,25.0,0.472486772,29.98013639099507 +2019-08-19 17:15:00,25.0,0.466137566,29.97997638889859 +2019-08-19 17:30:00,25.0,0.448148148,29.97981574626602 +2019-08-19 17:45:00,25.0,0.440740741,29.97965446311803 +2019-08-19 18:00:00,25.0,0.42962963,29.979492539475363 +2019-08-19 18:15:00,25.0,0.414285714,29.979329975358844 +2019-08-19 18:30:00,25.0,0.41005291,29.979166770789384 +2019-08-19 18:45:00,25.0,0.391005291,29.97900292578797 +2019-08-19 19:00:00,25.0,0.382010582,29.978838440375686 +2019-08-19 19:15:00,25.0,0.352910053,29.97867331457368 +2019-08-19 19:30:00,25.0,0.347089947,29.978507548403194 +2019-08-19 19:45:00,25.0,0.341269841,29.978341141885547 +2019-08-19 20:00:00,25.0,0.336507937,29.978174095042146 +2019-08-19 20:15:00,25.0,0.331216931,29.978006407894476 +2019-08-19 20:30:00,25.0,0.275132275,29.977838080464103 +2019-08-19 20:45:00,25.0,0.283068783,29.97766911277268 +2019-08-19 21:00:00,25.0,0.256613757,29.977499504841937 +2019-08-19 21:15:00,25.0,0.248148148,29.977329256693693 +2019-08-19 21:30:00,25.0,0.248677249,29.977158368349848 +2019-08-19 21:45:00,25.0,0.210582011,29.976986839832374 +2019-08-19 22:00:00,25.0,0.182539683,29.97681467116334 +2019-08-19 22:15:00,25.0,0.178835979,29.97664186236489 +2019-08-19 22:30:00,25.0,0.161375661,29.976468413459244 +2019-08-19 22:45:00,25.0,0.131746032,29.976294324468725 +2019-08-19 23:00:00,25.0,0.126455026,29.97611959541571 +2019-08-19 23:15:00,25.0,0.137037037,29.97594422632268 +2019-08-19 23:30:00,25.0,0.131216931,29.9757682172122 +2019-08-19 23:45:00,25.0,0.135449735,29.975591568106893 +2019-08-20 00:00:00,25.0,0.151851852,29.975414279029486 +2019-08-20 00:15:00,25.0,0.17037037,29.975236350002785 +2019-08-20 00:30:00,25.0,0.187830688,29.97505778104967 +2019-08-20 00:45:00,25.0,0.202116402,29.97487857219312 +2019-08-20 01:00:00,25.0,0.22010582,29.974698723456175 +2019-08-20 01:15:00,25.0,0.225925926,29.974518234861968 +2019-08-20 01:30:00,25.0,0.243386243,29.97433710643372 +2019-08-20 01:45:00,25.0,0.261904762,29.974155338194723 +2019-08-20 02:00:00,25.0,0.278835979,29.973972930168358 +2019-08-20 02:15:00,25.0,0.296296296,29.97378988237809 +2019-08-20 02:30:00,25.0,0.295767196,29.973606194847456 +2019-08-20 02:45:00,25.0,0.311640212,29.973421867600088 +2019-08-20 03:00:00,25.0,0.304232804,29.973236900659693 +2019-08-20 03:15:00,25.0,0.255555556,29.97305129405006 +2019-08-20 03:30:00,25.0,0.25026455,29.972865047795068 +2019-08-20 03:45:00,25.0,0.256084656,29.97267816191866 +2019-08-20 04:00:00,25.0,0.221164021,29.97249063644489 +2019-08-20 04:15:00,25.0,0.194708995,29.972302471397867 +2019-08-20 04:30:00,25.0,0.174074074,29.972113666801796 +2019-08-20 04:45:00,25.0,0.184656085,29.97192422268096 +2019-08-20 05:00:00,25.0,0.177248677,29.971734139059734 +2019-08-20 05:15:00,25.0,0.177248677,29.971543415962554 +2019-08-20 05:30:00,25.0,0.171428571,29.97135205341396 +2019-08-20 05:45:00,25.0,0.182010582,29.971160051438563 +2019-08-20 06:00:00,25.0,0.182010582,29.970967410061057 +2019-08-20 06:15:00,25.0,0.178835979,29.97077412930622 +2019-08-20 06:30:00,25.0,0.179365079,29.97058020919892 +2019-08-20 06:45:00,25.0,0.168253968,29.97038564976409 +2019-08-20 07:00:00,25.0,0.162962963,29.97019045102676 +2019-08-20 07:15:00,25.0,0.165608466,29.969994613012034 +2019-08-20 07:30:00,25.0,0.157142857,29.9697981357451 +2019-08-20 07:45:00,25.0,0.16031746,29.969601019251236 +2019-08-20 08:00:00,25.0,0.16984127,29.96940326355579 +2019-08-20 08:15:00,25.0,0.18994709,29.969204868684198 +2019-08-20 08:30:00,25.0,0.221693122,29.969005834661978 +2019-08-20 08:45:00,25.0,0.238624339,29.968806161514735 +2019-08-20 09:00:00,25.0,0.257671958,29.968605849268144 +2019-08-20 09:15:00,25.0,0.265079365,29.968404897947973 +2019-08-20 09:30:00,25.0,0.264021164,29.96820330758007 +2019-08-20 09:45:00,25.0,0.260846561,29.968001078190362 +2019-08-20 10:00:00,25.0,0.285185185,29.967798209804865 +2019-08-20 10:15:00,25.0,0.312169312,29.967594702449666 +2019-08-20 10:30:00,25.0,0.303703704,29.967390556150942 +2019-08-20 10:45:00,25.0,0.357671958,29.967185770934954 +2019-08-20 11:00:00,25.0,0.376719577,29.966980346828038 +2019-08-20 11:15:00,25.0,0.333862434,29.966774283856623 +2019-08-20 11:30:00,25.0,0.317989418,29.966567582047205 +2019-08-20 11:45:00,25.0,0.306878307,29.966360241426372 +2019-08-20 12:00:00,25.0,0.277777778,29.966152262020795 +2019-08-20 12:15:00,25.0,0.278835979,29.965943643857226 +2019-08-20 12:30:00,25.0,0.307936508,29.965734386962495 +2019-08-20 12:45:00,25.0,0.317989418,29.965524491363524 +2019-08-20 13:00:00,25.0,0.297354497,29.965313957087297 +2019-08-20 13:15:00,25.0,0.286243386,29.965102784160905 +2019-08-20 13:30:00,25.0,0.296296296,29.964890972611506 +2019-08-20 13:45:00,25.0,0.310582011,29.96467852246634 +2019-08-20 14:00:00,25.0,0.281481481,29.96446543375274 +2019-08-20 14:15:00,25.0,0.266137566,29.964251706498107 +2019-08-20 14:30:00,25.0,0.247619048,29.964037340729934 +2019-08-20 14:45:00,25.0,0.244444444,29.963822336475797 +2019-08-20 15:00:00,25.0,0.241798942,29.963606693763342 +2019-08-20 15:15:00,25.0,0.238095238,29.963390412620313 +2019-08-20 15:30:00,25.0,0.236507937,29.963173493074528 +2019-08-20 15:45:00,25.0,0.240740741,29.96295593515388 +2019-08-20 16:00:00,25.0,0.24973545,29.96273773888636 +2019-08-20 16:15:00,25.0,0.245502646,29.962518904300033 +2019-08-20 16:30:00,25.0,0.244444444,29.96229943142304 +2019-08-20 16:45:00,25.0,0.241269841,29.962079320283614 +2019-08-20 17:00:00,25.0,0.241269841,29.961858570910064 +2019-08-20 17:15:00,25.0,0.23968254,29.961637183330787 +2019-08-20 17:30:00,25.0,0.229100529,29.961415157574255 +2019-08-20 17:45:00,25.0,0.232275132,29.961192493669024 +2019-08-20 18:00:00,25.0,0.237037037,29.96096919164374 +2019-08-20 18:15:00,25.0,0.241798942,29.960745251527122 +2019-08-20 18:30:00,25.0,0.238624339,29.96052067334797 +2019-08-20 18:45:00,25.0,0.237566138,29.96029545713517 +2019-08-20 19:00:00,25.0,0.250793651,29.9600696029177 +2019-08-20 19:15:00,25.0,0.258201058,29.959843110724595 +2019-08-20 19:30:00,25.0,0.264021164,29.959615980584992 +2019-08-20 19:45:00,25.0,0.267724868,29.95938821252811 +2019-08-20 20:00:00,25.0,0.27037037,29.959159806583244 +2019-08-20 20:15:00,25.0,0.266137566,29.958930762779772 +2019-08-20 20:30:00,25.0,0.266137566,29.958701081147147 +2019-08-20 20:45:00,25.0,0.263492063,29.95847076171492 +2019-08-20 21:00:00,25.0,0.262962963,29.958239804512708 +2019-08-20 21:15:00,25.0,0.264550265,29.958008209570224 +2019-08-20 21:30:00,25.0,0.256084656,29.957775976917254 +2019-08-20 21:45:00,25.0,0.264021164,29.957543106583664 +2019-08-20 22:00:00,25.0,0.256084656,29.957309598599412 +2019-08-20 22:15:00,25.0,0.277248677,29.95707545299453 +2019-08-20 22:30:00,25.0,0.283068783,29.956840669799135 +2019-08-20 22:45:00,25.0,0.282010582,29.956605249043424 +2019-08-20 23:00:00,25.0,0.291005291,29.956369190757677 +2019-08-20 23:15:00,25.0,0.307407407,29.95613249497226 +2019-08-20 23:30:00,25.0,0.306878307,29.955895161717613 +2019-08-20 23:45:00,25.0,0.29047619,29.955657191024265 +2019-08-21 00:00:00,25.0,0.285185185,29.955418582922825 +2019-08-21 00:15:00,25.0,0.27037037,29.95517933744398 +2019-08-21 00:30:00,25.0,0.27037037,29.954939454618504 +2019-08-21 00:45:00,25.0,0.257142857,29.95469893447725 +2019-08-21 01:00:00,25.0,0.253968254,29.95445777705116 +2019-08-21 01:15:00,25.0,0.240740741,29.954215982371245 +2019-08-21 01:30:00,25.0,0.22010582,29.95397355046861 +2019-08-21 01:45:00,25.0,0.219047619,29.953730481374436 +2019-08-21 02:00:00,25.0,0.226984127,29.953486775119984 +2019-08-21 02:15:00,25.0,0.217460317,29.953242431736605 +2019-08-21 02:30:00,25.0,0.210582011,29.952997451255722 +2019-08-21 02:45:00,25.0,0.183068783,29.95275183370885 +2019-08-21 03:00:00,25.0,0.180952381,29.952505579127575 +2019-08-21 03:15:00,25.0,0.165608466,29.952258687543576 +2019-08-21 03:30:00,25.0,0.133333333,29.952011158988608 +2019-08-21 03:45:00,25.0,0.116931217,29.95176299349451 +2019-08-21 04:00:00,25.0,0.124338624,29.951514191093196 +2019-08-21 04:15:00,25.0,0.137037037,29.95126475181667 +2019-08-21 04:30:00,25.0,0.119047619,29.951014675697017 +2019-08-21 04:45:00,25.0,0.106349206,29.950763962766402 +2019-08-21 05:00:00,25.0,0.086243386,29.95051261305707 +2019-08-21 05:15:00,25.0,0.070899471,29.950260626601356 +2019-08-21 05:30:00,25.0,0.068253968,29.95000800343167 +2019-08-21 05:45:00,25.0,0.06984127,29.949754743580495 +2019-08-21 06:00:00,25.0,0.073544974,29.949500847080415 +2019-08-21 06:15:00,25.0,0.07037037,29.94924631396409 +2019-08-21 06:30:00,25.0,0.055026455,29.948991144264248 +2019-08-21 06:45:00,25.0,0.049206349,29.948735338013712 +2019-08-21 07:00:00,25.0,0.047089947,29.948478895245394 +2019-08-21 07:15:00,25.0,0.044973545,29.94822181599227 +2019-08-21 07:30:00,25.0,0.046560847,29.947964100287408 +2019-08-21 07:45:00,25.0,0.040740741,29.947705748163955 +2019-08-21 08:00:00,25.0,0.03968254,29.94744675965514 +2019-08-21 08:15:00,25.0,0.03968254,29.947187134794277 +2019-08-21 08:30:00,25.0,0.041798942,29.94692687361476 +2019-08-21 08:45:00,25.0,0.043915344,29.94666597615006 +2019-08-21 09:00:00,25.0,0.044973545,29.946404442433742 +2019-08-21 09:15:00,25.0,0.049206349,29.94614227249944 +2019-08-21 09:30:00,25.0,0.054497354,29.945879466380873 +2019-08-21 09:45:00,25.0,0.065608466,29.94561602411185 +2019-08-21 10:00:00,25.0,0.087830688,29.945351945726248 +2019-08-21 10:15:00,25.0,0.085714286,29.945087231258036 +2019-08-21 10:30:00,25.0,0.082010582,29.944821880741266 +2019-08-21 10:45:00,25.0,0.089417989,29.94455589421007 +2019-08-21 11:00:00,25.0,0.102116402,29.944289271698647 +2019-08-21 11:15:00,25.0,0.106349206,29.9440220132413 +2019-08-21 11:30:00,25.0,0.102116402,29.943754118872405 +2019-08-21 11:45:00,25.0,0.100529101,29.94348558862642 +2019-08-21 12:00:00,25.0,0.105820106,29.943216422537876 +2019-08-21 12:15:00,25.0,0.105291005,29.942946620641404 +2019-08-21 12:30:00,25.0,0.107407407,29.9426761829717 +2019-08-21 12:45:00,25.0,0.107936508,29.942405109563545 +2019-08-21 13:00:00,25.0,0.103703704,29.942133400451816 +2019-08-21 13:15:00,25.0,0.105291005,29.941861055671453 +2019-08-21 13:30:00,25.0,0.106349206,29.941588075257485 +2019-08-21 13:45:00,25.0,0.108465608,29.941314459245028 +2019-08-21 14:00:00,25.0,0.10952381,29.941040207669275 +2019-08-21 14:15:00,25.0,0.111640212,29.940765320565497 +2019-08-21 14:30:00,25.0,0.111111111,29.940489797969054 +2019-08-21 14:45:00,25.0,0.111111111,29.940213639915378 +2019-08-21 15:00:00,25.0,0.107936508,29.93993684644 +2019-08-21 15:15:00,25.0,0.108465608,29.93965941757851 +2019-08-21 15:30:00,25.0,0.112169312,29.939381353366603 +2019-08-21 15:45:00,25.0,0.116402116,29.939102653840035 +2019-08-21 16:00:00,25.0,0.121164021,29.938823319034658 +2019-08-21 16:15:00,25.0,0.112169312,29.938543348986396 +2019-08-21 16:30:00,25.0,0.095767196,29.938262743731265 +2019-08-21 16:45:00,25.0,0.094708995,29.937981503305355 +2019-08-21 17:00:00,25.0,0.097883598,29.93769962774484 +2019-08-21 17:15:00,25.0,0.100529101,29.937417117085975 +2019-08-21 17:30:00,25.0,0.102116402,29.937133971365096 +2019-08-21 17:45:00,25.0,0.107407407,29.93685019061862 +2019-08-21 18:00:00,25.0,0.107936508,29.936565774883057 +2019-08-21 18:15:00,25.0,0.104232804,29.93628072419498 +2019-08-21 18:30:00,25.0,0.097883598,29.935995038591052 +2019-08-21 18:45:00,25.0,0.097883598,29.935708718108028 +2019-08-21 19:00:00,25.0,0.092063492,29.935421762782724 +2019-08-21 19:15:00,25.0,0.08994709,29.93513417265206 +2019-08-21 19:30:00,25.0,0.080952381,29.934845947753015 +2019-08-21 19:45:00,25.0,0.077777778,29.93455708812267 +2019-08-21 20:00:00,25.0,0.076719577,29.934267593798175 +2019-08-21 20:15:00,25.0,0.08042328,29.933977464816767 +2019-08-21 20:30:00,25.0,0.083068783,29.933686701215763 +2019-08-21 20:45:00,25.0,0.086243386,29.933395303032555 +2019-08-21 21:00:00,25.0,0.093121693,29.933103270304635 +2019-08-21 21:15:00,25.0,0.100529101,29.93281060306956 +2019-08-21 21:30:00,25.0,0.108994709,29.932517301364967 +2019-08-21 21:45:00,25.0,0.118518519,29.93222336522859 +2019-08-21 22:00:00,25.0,0.13015873,29.931928794698234 +2019-08-21 22:15:00,25.0,0.139153439,29.93163358981178 +2019-08-21 22:30:00,25.0,0.146031746,29.931337750607213 +2019-08-21 22:45:00,25.0,0.153968254,29.93104127712257 +2019-08-21 23:00:00,25.0,0.165079365,29.93074416939599 +2019-08-21 23:15:00,25.0,0.164550265,29.930446427465686 +2019-08-21 23:30:00,25.0,0.165608466,29.930148051369954 +2019-08-21 23:45:00,25.0,0.165608466,29.92984904114718 +2019-08-22 00:00:00,25.0,0.164021164,29.92954939683581 +2019-08-22 00:15:00,25.0,0.165608466,29.92924911847439 +2019-08-22 00:30:00,25.0,0.172486772,29.928948206101552 +2019-08-22 00:45:00,25.0,0.186243386,29.928646659755987 +2019-08-22 01:00:00,25.0,0.201587302,29.928344479476486 +2019-08-22 01:15:00,25.0,0.214285714,29.928041665301915 +2019-08-22 01:30:00,25.0,0.221693122,29.927738217271227 +2019-08-22 01:45:00,25.0,0.222222222,29.927434135423443 +2019-08-22 02:00:00,25.0,0.22962963,29.927129419797684 +2019-08-22 02:15:00,25.0,0.237566138,29.926824070433142 +2019-08-22 02:30:00,25.0,0.24973545,29.926518087369082 +2019-08-22 02:45:00,25.0,0.258730159,29.926211470644873 +2019-08-22 03:00:00,25.0,0.265608466,29.925904220299948 +2019-08-22 03:15:00,25.0,0.276719577,29.92559633637382 +2019-08-22 03:30:00,25.0,0.284126984,29.9252878189061 +2019-08-22 03:45:00,25.0,0.29047619,29.924978667936465 +2019-08-22 04:00:00,25.0,0.295238095,29.92466888350468 +2019-08-22 04:15:00,25.0,0.303703704,29.924358465650588 +2019-08-22 04:30:00,25.0,0.304761905,29.92404741441412 +2019-08-22 04:45:00,25.0,0.304761905,29.923735729835276 +2019-08-22 05:00:00,25.0,0.305820106,29.923423411954154 +2019-08-22 05:15:00,25.0,0.307407407,29.923110460810918 +2019-08-22 05:30:00,25.0,0.304232804,29.92279687644583 +2019-08-22 05:45:00,25.0,0.306349206,29.922482658899217 +2019-08-22 06:00:00,25.0,0.312698413,29.922167808211494 +2019-08-22 06:15:00,25.0,0.318518519,29.92185232442316 +2019-08-22 06:30:00,25.0,0.323280423,29.921536207574793 +2019-08-22 06:45:00,25.0,0.328571429,29.921219457707053 +2019-08-22 07:00:00,25.0,0.331216931,29.920902074860678 +2019-08-22 07:15:00,25.0,0.333333333,29.920584059076496 +2019-08-22 07:30:00,25.0,0.332804233,29.92026541039541 +2019-08-22 07:45:00,25.0,0.333862434,29.9199461288584 +2019-08-22 08:00:00,25.0,0.32962963,29.919626214506533 +2019-08-22 08:15:00,25.0,0.319047619,29.919305667380964 +2019-08-22 08:30:00,25.0,0.314285714,29.91898448752292 +2019-08-22 08:45:00,25.0,0.316402116,29.918662674973707 +2019-08-22 09:00:00,25.0,0.314285714,29.91834022977472 +2019-08-22 09:15:00,25.0,0.312698413,29.91801715196744 +2019-08-22 09:30:00,25.0,0.308994709,29.91769344159341 +2019-08-22 09:45:00,25.0,0.297883598,29.917369098694273 +2019-08-22 10:00:00,25.0,0.292063492,29.917044123311747 +2019-08-22 10:15:00,25.0,0.287301587,29.91671851548763 +2019-08-22 10:30:00,25.0,0.289417989,29.9163922752638 +2019-08-22 10:45:00,25.0,0.291005291,29.91606540268222 +2019-08-22 11:00:00,25.0,0.283068783,29.91573789778494 +2019-08-22 11:15:00,25.0,0.285714286,29.915409760614075 +2019-08-22 11:30:00,25.0,0.293121693,29.91508099121183 +2019-08-22 11:45:00,25.0,0.298412698,29.914751589620504 +2019-08-22 12:00:00,25.0,0.301058201,29.914421555882456 +2019-08-22 12:15:00,25.0,0.312169312,29.914090890040132 +2019-08-22 12:30:00,25.0,0.31957672,29.91375959213607 +2019-08-22 12:45:00,25.0,0.316402116,29.913427662212886 +2019-08-22 13:00:00,25.0,0.31005291,29.913095100313264 +2019-08-22 13:15:00,25.0,0.314285714,29.912761906479982 +2019-08-22 13:30:00,25.0,0.319047619,29.9124280807559 +2019-08-22 13:45:00,25.0,0.32010582,29.912093623183953 +2019-08-22 14:00:00,25.0,0.326984127,29.91175853380716 +2019-08-22 14:15:00,25.0,0.325925926,29.91142281266862 +2019-08-22 14:30:00,25.0,0.325925926,29.911086459811514 +2019-08-22 14:45:00,25.0,0.31957672,29.910749475279104 +2019-08-22 15:00:00,25.0,0.321693122,29.910411859114735 +2019-08-22 15:15:00,25.0,0.326455026,29.910073611361835 +2019-08-22 15:30:00,25.0,0.334920635,29.909734732063903 +2019-08-22 15:45:00,25.0,0.346560847,29.909395221264532 +2019-08-22 16:00:00,25.0,0.335978836,29.90905507900739 +2019-08-22 16:15:00,25.0,0.328571429,29.908714305336225 +2019-08-22 16:30:00,25.0,0.324338624,29.90837290029487 +2019-08-22 16:45:00,25.0,0.335449735,29.908030863927237 +2019-08-22 17:00:00,25.0,0.335978836,29.90768819627732 +2019-08-22 17:15:00,25.0,0.325925926,29.90734489738919 +2019-08-22 17:30:00,25.0,0.316402116,29.907000967307006 +2019-08-22 17:45:00,25.0,0.307407407,29.906656406075008 +2019-08-22 18:00:00,25.0,0.301587302,29.90631121373751 +2019-08-22 18:15:00,25.0,0.301587302,29.90596539033891 +2019-08-22 18:30:00,25.0,0.296296296,29.90561893592369 +2019-08-22 18:45:00,25.0,0.302645503,29.905271850536415 +2019-08-22 19:00:00,25.0,0.312169312,29.904924134221726 +2019-08-22 19:15:00,25.0,0.302645503,29.904575787024346 +2019-08-22 19:30:00,25.0,0.307936508,29.90422680898908 +2019-08-22 19:45:00,25.0,0.311640212,29.903877200160817 +2019-08-22 20:00:00,25.0,0.310582011,29.90352696058452 +2019-08-22 20:15:00,25.0,0.305820106,29.903176090305244 +2019-08-22 20:30:00,25.0,0.305291005,29.902824589368116 +2019-08-22 20:45:00,25.0,0.307936508,29.902472457818345 +2019-08-22 21:00:00,25.0,0.302116402,29.902119695701224 +2019-08-22 21:15:00,25.0,0.306349206,29.901766303062125 +2019-08-22 21:30:00,25.0,0.311640212,29.901412279946502 +2019-08-22 21:45:00,25.0,0.31957672,29.901057626399894 +2019-08-22 22:00:00,25.0,0.322222222,29.900702342467913 +2019-08-22 22:15:00,25.0,0.320634921,29.90034642819626 +2019-08-22 22:30:00,25.0,0.315873016,29.89998988363071 +2019-08-22 22:45:00,25.0,0.315873016,29.899632708817126 +2019-08-22 23:00:00,25.0,0.311640212,29.899274903801448 +2019-08-22 23:15:00,25.0,0.31005291,29.898916468629697 +2019-08-22 23:30:00,25.0,0.305291005,29.898557403347972 +2019-08-22 23:45:00,25.0,0.305820106,29.898197708002463 +2019-08-23 00:00:00,25.0,0.311111111,29.897837382639434 +2019-08-23 00:15:00,25.0,0.314285714,29.89747642730523 +2019-08-23 00:30:00,25.0,0.308465608,29.89711484204627 +2019-08-23 00:45:00,25.0,0.304232804,29.896752626909077 +2019-08-23 01:00:00,25.0,0.308994709,29.89638978194023 +2019-08-23 01:15:00,25.0,0.312698413,29.896026307186396 +2019-08-23 01:30:00,25.0,0.317460317,29.895662202694332 +2019-08-23 01:45:00,25.0,0.318518519,29.895297468510876 +2019-08-23 02:00:00,25.0,0.312698413,29.894932104682926 +2019-08-23 02:15:00,25.0,0.308994709,29.894566111257486 +2019-08-23 02:30:00,25.0,0.308465608,29.894199488281632 +2019-08-23 02:45:00,25.0,0.308994709,29.893832235802513 +2019-08-23 03:00:00,25.0,0.305820106,29.89346435386737 +2019-08-23 03:15:00,25.0,0.296296296,29.89309584252352 +2019-08-23 03:30:00,25.0,0.287830688,29.89272670181836 +2019-08-23 03:45:00,25.0,0.292592593,29.892356931799377 +2019-08-23 04:00:00,25.0,0.294179894,29.89198653251412 +2019-08-23 04:15:00,25.0,0.295238095,29.891615504010243 +2019-08-23 04:30:00,25.0,0.28994709,29.89124384633546 +2019-08-23 04:45:00,25.0,0.286772487,29.89087155953758 +2019-08-23 05:00:00,25.0,0.286772487,29.89049864366448 +2019-08-23 05:15:00,25.0,0.286243386,29.89012509876413 +2019-08-23 05:30:00,25.0,0.281481481,29.889750924884577 +2019-08-23 05:45:00,25.0,0.272486772,29.889376122073948 +2019-08-23 06:00:00,25.0,0.268253968,29.88900069038045 +2019-08-23 06:15:00,25.0,0.255555556,29.888624629852373 +2019-08-23 06:30:00,25.0,0.241798942,29.88824794053808 +2019-08-23 06:45:00,25.0,0.22962963,29.887870622486034 +2019-08-23 07:00:00,25.0,0.215343915,29.887492675744756 +2019-08-23 07:15:00,25.0,0.201587302,29.887114100362865 +2019-08-23 07:30:00,25.0,0.193121693,29.88673489638905 +2019-08-23 07:45:00,25.0,0.185185185,29.886355063872088 +2019-08-23 08:00:00,25.0,0.176190476,29.88597460286083 +2019-08-23 08:15:00,25.0,0.173015873,29.885593513404217 +2019-08-23 08:30:00,25.0,0.165079365,29.88521179555126 +2019-08-23 08:45:00,25.0,0.153439153,29.88482944935106 +2019-08-23 09:00:00,25.0,0.146031746,29.884446474852798 +2019-08-23 09:15:00,25.0,0.142328042,29.884062872105726 +2019-08-23 09:30:00,25.0,0.142857143,29.88367864115919 +2019-08-23 09:45:00,25.0,0.134391534,29.88329378206261 +2019-08-23 10:00:00,25.0,0.123280423,29.88290829486548 +2019-08-23 10:15:00,25.0,0.116402116,29.88252217961739 +2019-08-23 10:30:00,25.0,0.11005291,29.882135436368003 +2019-08-23 10:45:00,25.0,0.106878307,29.88174806516706 +2019-08-23 11:00:00,25.0,0.101587302,29.88136006606438 +2019-08-23 11:15:00,25.0,0.096825397,29.880971439109885 +2019-08-23 11:30:00,25.0,0.091534392,29.880582184353546 +2019-08-23 11:45:00,25.0,0.085714286,29.880192301845433 +2019-08-23 12:00:00,25.0,0.083068783,29.8798017916357 +2019-08-23 12:15:00,25.0,0.078306878,29.87941065377457 +2019-08-23 12:30:00,25.0,0.074074074,29.87901888831235 +2019-08-23 12:45:00,25.0,0.06984127,29.878626495299432 +2019-08-23 13:00:00,25.0,0.067195767,29.87823347478629 +2019-08-23 13:15:00,25.0,0.066137566,29.877839826823468 +2019-08-23 13:30:00,25.0,0.061904762,29.877445551461605 +2019-08-23 13:45:00,25.0,0.059259259,29.87705064875141 +2019-08-23 14:00:00,25.0,0.057671958,29.876655118743678 +2019-08-23 14:15:00,25.0,0.052380952,29.87625896148928 +2019-08-23 14:30:00,25.0,0.047089947,29.875862177039174 +2019-08-23 14:45:00,25.0,0.041269841,29.87546476544439 +2019-08-23 15:00:00,25.0,0.036507937,29.875066726756053 +2019-08-23 15:15:00,25.0,0.031746032,29.874668061025353 +2019-08-23 15:30:00,25.0,0.028571429,29.87426876830357 +2019-08-23 15:45:00,25.0,0.022751323,29.87386884864206 +2019-08-23 16:00:00,25.0,0.015343915,29.873468302092263 +2019-08-23 16:15:00,25.0,0.012698413,29.873067128705696 +2019-08-23 16:30:00,25.0,0.01005291,29.872665328533962 +2019-08-23 16:45:00,25.0,0.008465608,29.872262901628737 +2019-08-23 17:00:00,25.0,0.007936508,29.871859848041787 +2019-08-23 17:15:00,25.0,0.006878307,29.871456167824952 +2019-08-23 17:30:00,25.0,0.006349206,29.871051861030157 +2019-08-23 17:45:00,25.0,0.005820106,29.870646927709398 +2019-08-23 18:00:00,25.0,0.004232804,29.870241367914762 +2019-08-23 18:15:00,25.0,0.003703704,29.869835181698416 +2019-08-23 18:30:00,25.0,0.003174603,29.8694283691126 +2019-08-23 18:45:00,25.0,0.003174603,29.869020930209643 +2019-08-23 19:00:00,25.0,0.003174603,29.86861286504195 +2019-08-23 19:15:00,25.0,0.003703704,29.868204173662 +2019-08-23 19:30:00,25.0,0.003174603,29.867794856122373 +2019-08-23 19:45:00,25.0,0.002116402,29.867384912475707 +2019-08-23 20:00:00,25.0,0.002645503,29.866974342774732 +2019-08-23 20:15:00,25.0,0.002645503,29.866563147072256 +2019-08-23 20:30:00,25.0,0.002645503,29.86615132542117 +2019-08-23 20:45:00,25.0,0.003174603,29.865738877874442 +2019-08-23 21:00:00,25.0,0.003174603,29.86532580448512 +2019-08-23 21:15:00,25.0,0.003703704,29.864912105306338 +2019-08-23 21:30:00,25.0,0.003174603,29.864497780391307 +2019-08-23 21:45:00,25.0,0.004761905,29.86408282979332 +2019-08-23 22:00:00,25.0,0.005820106,29.863667253565737 +2019-08-23 22:15:00,25.0,0.006349206,29.863251051762024 +2019-08-23 22:30:00,25.0,0.007936508,29.86283422443571 +2019-08-23 22:45:00,25.0,0.008994709,29.862416771640405 +2019-08-23 23:00:00,25.0,0.01005291,29.861998693429804 +2019-08-23 23:15:00,25.0,0.012169312,29.861579989857685 +2019-08-23 23:30:00,25.0,0.012698413,29.8611606609779 +2019-08-23 23:45:00,25.0,0.015343915,29.860740706844382 +2019-08-24 00:00:00,25.0,0.019047619,29.86032012751115 +2019-08-24 00:15:00,25.0,0.024338624,29.8598989230323 +2019-08-24 00:30:00,25.0,0.02962963,29.859477093462004 +2019-08-24 00:45:00,25.0,0.032804233,29.859054638854523 +2019-08-24 01:00:00,25.0,0.033862434,29.85863155926419 +2019-08-24 01:15:00,25.0,0.035978836,29.85820785474543 +2019-08-24 01:30:00,25.0,0.039153439,29.85778352535273 +2019-08-24 01:45:00,25.0,0.03968254,29.857358571140676 +2019-08-24 02:00:00,25.0,0.040740741,29.856932992163923 +2019-08-24 02:15:00,25.0,0.045502646,29.856506788477212 +2019-08-24 02:30:00,25.0,0.05026455,29.856079960135364 +2019-08-24 02:45:00,25.0,0.054497354,29.855652507193273 +2019-08-24 03:00:00,25.0,0.057142857,29.855224429705927 +2019-08-24 03:15:00,25.0,0.057142857,29.85479572772838 +2019-08-24 03:30:00,25.0,0.057142857,29.854366401315772 +2019-08-24 03:45:00,25.0,0.058201058,29.853936450523328 +2019-08-24 04:00:00,25.0,0.057142857,29.85350587540635 +2019-08-24 04:15:00,25.0,0.056613757,29.853074676020213 +2019-08-24 04:30:00,25.0,0.06031746,29.852642852420384 +2019-08-24 04:45:00,25.0,0.062962963,29.852210404662408 +2019-08-24 05:00:00,25.0,0.066666667,29.8517773328019 +2019-08-24 05:15:00,25.0,0.068783069,29.851343636894565 +2019-08-24 05:30:00,25.0,0.071428571,29.85090931699619 +2019-08-24 05:45:00,25.0,0.073015873,29.850474373162633 +2019-08-24 06:00:00,25.0,0.078835979,29.850038805449845 +2019-08-24 06:15:00,25.0,0.083068783,29.849602613913838 +2019-08-24 06:30:00,25.0,0.084126984,29.84916579861073 +2019-08-24 06:45:00,25.0,0.084656085,29.84872835959669 +2019-08-24 07:00:00,25.0,0.08994709,29.848290296928 +2019-08-24 07:15:00,25.0,0.098412698,29.84785161066099 +2019-08-24 07:30:00,25.0,0.106349206,29.847412300852085 +2019-08-24 07:45:00,25.0,0.111640212,29.8469723675578 +2019-08-24 08:00:00,25.0,0.115873016,29.846531810834712 +2019-08-24 08:15:00,25.0,0.121693122,29.846090630739496 +2019-08-24 08:30:00,25.0,0.129100529,29.845648827328887 +2019-08-24 08:45:00,25.0,0.132275132,29.845206400659713 +2019-08-24 09:00:00,25.0,0.138095238,29.844763350788885 +2019-08-24 09:15:00,25.0,0.148148148,29.844319677773385 +2019-08-24 09:30:00,25.0,0.155026455,29.843875381670276 +2019-08-24 09:45:00,25.0,0.161904762,29.843430462536713 +2019-08-24 10:00:00,25.0,0.16031746,29.84298492042992 +2019-08-24 10:15:00,25.0,0.158730159,29.842538755407197 +2019-08-24 10:30:00,25.0,0.155026455,29.842091967525935 +2019-08-24 10:45:00,25.0,0.153968254,29.841644556843605 +2019-08-24 11:00:00,25.0,0.151851852,29.84119652341775 +2019-08-24 11:15:00,25.0,0.148677249,29.840747867305996 +2019-08-24 11:30:00,25.0,0.149206349,29.840298588566057 +2019-08-24 11:45:00,25.0,0.148148148,29.839848687255706 +2019-08-24 12:00:00,25.0,0.142328042,29.839398163432826 +2019-08-24 12:15:00,25.0,0.136507937,29.838947017155355 +2019-08-24 12:30:00,25.0,0.134920635,29.838495248481323 +2019-08-24 12:45:00,25.0,0.135978836,29.83804285746884 +2019-08-24 13:00:00,25.0,0.135978836,29.837589844176087 +2019-08-24 13:15:00,25.0,0.13968254,29.83713620866134 +2019-08-24 13:30:00,25.0,0.143386243,29.836681950982943 +2019-08-24 13:45:00,25.0,0.144444444,29.83622707119932 +2019-08-24 14:00:00,25.0,0.146031746,29.835771569368983 +2019-08-24 14:15:00,25.0,0.151322751,29.83531544555052 +2019-08-24 14:30:00,25.0,0.152910053,29.834858699802595 +2019-08-24 14:45:00,25.0,0.158201058,29.834401332183962 +2019-08-24 15:00:00,25.0,0.160846561,29.833943342753443 +2019-08-24 15:15:00,25.0,0.163492063,29.833484731569946 +2019-08-24 15:30:00,25.0,0.166137566,29.83302549869246 +2019-08-24 15:45:00,25.0,0.167724868,29.83256564418005 +2019-08-24 16:00:00,25.0,0.177248677,29.83210516809187 +2019-08-24 16:15:00,25.0,0.189417989,29.831644070487144 +2019-08-24 16:30:00,25.0,0.201587302,29.83118235142518 +2019-08-24 16:45:00,25.0,0.21005291,29.830720010965365 +2019-08-24 17:00:00,25.0,0.218518519,29.830257049167162 +2019-08-24 17:15:00,25.0,0.237566138,29.829793466090123 +2019-08-24 17:30:00,25.0,0.258201058,29.829329261793873 +2019-08-24 17:45:00,25.0,0.282539683,29.828864436338122 +2019-08-24 18:00:00,25.0,0.304761905,29.828398989782656 +2019-08-24 18:15:00,25.0,0.324338624,29.82793292218734 +2019-08-24 18:30:00,25.0,0.342857143,29.82746623361212 +2019-08-24 18:45:00,25.0,0.361904762,29.826998924117028 +2019-08-24 19:00:00,25.0,0.373015873,29.826530993762162 +2019-08-24 19:15:00,25.0,0.380952381,29.826062442607714 +2019-08-24 19:30:00,25.0,0.393121693,29.825593270713952 +2019-08-24 19:45:00,25.0,0.40952381,29.825123478141215 +2019-08-24 20:00:00,25.0,0.422222222,29.824653064949935 +2019-08-24 20:15:00,25.0,0.438624339,29.824182031200618 +2019-08-24 20:30:00,25.0,0.456084656,29.823710376953844 +2019-08-24 20:45:00,25.0,0.478306878,29.82323810227028 +2019-08-24 21:00:00,25.0,0.498941799,29.822765207210672 +2019-08-24 21:15:00,25.0,0.519047619,29.822291691835847 +2019-08-24 21:30:00,25.0,0.542328042,29.821817556206707 +2019-08-24 21:45:00,25.0,0.554497354,29.821342800384237 +2019-08-24 22:00:00,25.0,0.562433862,29.820867424429505 +2019-08-24 22:15:00,25.0,0.558730159,29.820391428403646 +2019-08-24 22:30:00,25.0,0.537037037,29.81991481236789 +2019-08-24 22:45:00,25.0,0.516402116,29.81943757638354 +2019-08-24 23:00:00,25.0,0.501587302,29.81895972051198 +2019-08-24 23:15:00,25.0,0.491534392,29.81848124481467 +2019-08-24 23:30:00,25.0,0.488359788,29.818002149353152 +2019-08-24 23:45:00,25.0,0.478835979,29.817522434189055 +2019-08-25 00:00:00,25.0,0.458730159,29.817042099384075 +2019-08-25 00:15:00,25.0,0.419047619,29.816561144999994 +2019-08-25 00:30:00,25.0,0.380952381,29.816079571098676 +2019-08-25 00:45:00,25.0,0.34021164,29.815597377742062 +2019-08-25 01:00:00,25.0,0.310582011,29.81511456499217 +2019-08-25 01:15:00,25.0,0.278306878,29.814631132911103 +2019-08-25 01:30:00,25.0,0.252380952,29.814147081561043 +2019-08-25 01:45:00,25.0,0.226984127,29.813662411004245 +2019-08-25 02:00:00,25.0,0.206349206,29.81317712130305 +2019-08-25 02:15:00,25.0,0.192592593,29.812691212519876 +2019-08-25 02:30:00,25.0,0.182010582,29.81220468471723 +2019-08-25 02:45:00,25.0,0.171957672,29.811717537957676 +2019-08-25 03:00:00,25.0,0.164021164,29.811229772303882 +2019-08-25 03:15:00,25.0,0.155555556,29.810741387818588 +2019-08-25 03:30:00,25.0,0.146031746,29.810252384564606 +2019-08-25 03:45:00,25.0,0.14021164,29.80976276260483 +2019-08-25 04:00:00,25.0,0.130687831,29.80927252200224 +2019-08-25 04:15:00,25.0,0.126455026,29.808781662819893 +2019-08-25 04:30:00,25.0,0.122222222,29.80829018512092 +2019-08-25 04:45:00,25.0,0.116402116,29.80779808896854 +2019-08-25 05:00:00,25.0,0.113756614,29.80730537442605 +2019-08-25 05:15:00,25.0,0.108994709,29.806812041556817 +2019-08-25 05:30:00,25.0,0.102645503,29.8063180904243 +2019-08-25 05:45:00,25.0,0.096825397,29.80582352109203 +2019-08-25 06:00:00,25.0,0.093650794,29.805328333623617 +2019-08-25 06:15:00,25.0,0.09047619,29.804832528082756 +2019-08-25 06:30:00,25.0,0.091005291,29.80433610453322 +2019-08-25 06:45:00,25.0,0.086772487,29.80383906303886 +2019-08-25 07:00:00,25.0,0.084126984,29.803341403663605 +2019-08-25 07:15:00,25.0,0.082539683,29.802843126471465 +2019-08-25 07:30:00,25.0,0.081481481,29.802344231526533 +2019-08-25 07:45:00,25.0,0.077248677,29.801844718892973 +2019-08-25 08:00:00,25.0,0.077248677,29.801344588635033 +2019-08-25 08:15:00,25.0,0.078835979,29.80084384081705 +2019-08-25 08:30:00,25.0,0.077777778,29.80034247550342 +2019-08-25 08:45:00,25.0,0.075661376,29.799840492758634 +2019-08-25 09:00:00,25.0,0.075661376,29.79933789264726 +2019-08-25 09:15:00,25.0,0.075132275,29.798834675233945 +2019-08-25 09:30:00,25.0,0.075661376,29.79833084058341 +2019-08-25 09:45:00,25.0,0.074074074,29.79782638876046 +2019-08-25 10:00:00,25.0,0.067195767,29.79732131982998 +2019-08-25 10:15:00,25.0,0.065079365,29.796815633856934 +2019-08-25 10:30:00,25.0,0.064550265,29.79630933090636 +2019-08-25 10:45:00,25.0,0.063492063,29.795802411043383 +2019-08-25 11:00:00,25.0,0.060846561,29.79529487433321 +2019-08-25 11:15:00,25.0,0.057671958,29.79478672084111 +2019-08-25 11:30:00,25.0,0.055026455,29.79427795063245 +2019-08-25 11:45:00,25.0,0.056084656,29.793768563772666 +2019-08-25 12:00:00,25.0,0.057671958,29.793258560327285 +2019-08-25 12:15:00,25.0,0.060846561,29.792747940361892 +2019-08-25 12:30:00,25.0,0.065079365,29.792236703942173 +2019-08-25 12:45:00,25.0,0.067724868,29.791724851133882 +2019-08-25 13:00:00,25.0,0.068783069,29.791212382002854 +2019-08-25 13:15:00,25.0,0.06984127,29.790699296615003 +2019-08-25 13:30:00,25.0,0.067724868,29.790185595036327 +2019-08-25 13:45:00,25.0,0.070899471,29.789671277332896 +2019-08-25 14:00:00,25.0,0.071428571,29.789156343570863 +2019-08-25 14:15:00,25.0,0.076190476,29.788640793816462 +2019-08-25 14:30:00,25.0,0.075661376,29.788124628136003 +2019-08-25 14:45:00,25.0,0.073015873,29.787607846595876 +2019-08-25 15:00:00,25.0,0.071428571,29.78709044926255 +2019-08-25 15:15:00,25.0,0.068783069,29.786572436202576 +2019-08-25 15:30:00,25.0,0.065608466,29.78605380748258 +2019-08-25 15:45:00,25.0,0.063492063,29.785534563169275 +2019-08-25 16:00:00,25.0,0.066137566,29.785014703329438 +2019-08-25 16:15:00,25.0,0.07037037,29.784494228029942 +2019-08-25 16:30:00,25.0,0.073015873,29.783973137337725 +2019-08-25 16:45:00,25.0,0.076719577,29.78345143131982 +2019-08-25 17:00:00,25.0,0.08042328,29.78292911004332 +2019-08-25 17:15:00,25.0,0.084656085,29.782406173575414 +2019-08-25 17:30:00,25.0,0.088888889,29.78188262198336 +2019-08-25 17:45:00,25.0,0.097354497,29.7813584553345 +2019-08-25 18:00:00,25.0,0.103703704,29.780833673696257 +2019-08-25 18:15:00,25.0,0.10952381,29.780308277136122 +2019-08-25 18:30:00,25.0,0.115343915,29.77978226572168 +2019-08-25 18:45:00,25.0,0.126984127,29.779255639520578 +2019-08-25 19:00:00,25.0,0.146560847,29.778728398600563 +2019-08-25 19:15:00,25.0,0.156084656,29.778200543029445 +2019-08-25 19:30:00,25.0,0.16031746,29.77767207287512 +2019-08-25 19:45:00,25.0,0.167195767,29.777142988205558 +2019-08-25 20:00:00,25.0,0.166666667,29.77661328908881 +2019-08-25 20:15:00,25.0,0.162433862,29.77608297559301 +2019-08-25 20:30:00,25.0,0.16031746,29.77555204778637 +2019-08-25 20:45:00,25.0,0.164021164,29.775020505737174 +2019-08-25 21:00:00,25.0,0.161904762,29.774488349513796 +2019-08-25 21:15:00,25.0,0.164021164,29.77395557918468 +2019-08-25 21:30:00,25.0,0.16031746,29.77342219481835 +2019-08-25 21:45:00,25.0,0.14973545,29.772888196483414 +2019-08-25 22:00:00,25.0,0.144444444,29.772353584248556 +2019-08-25 22:15:00,25.0,0.137037037,29.77181835818254 +2019-08-25 22:30:00,25.0,0.131216931,29.771282518354205 +2019-08-25 22:45:00,25.0,0.123280423,29.770746064832476 +2019-08-25 23:00:00,25.0,0.113227513,29.770208997686346 +2019-08-25 23:15:00,25.0,0.105291005,29.769671316984905 +2019-08-25 23:30:00,25.0,0.095767196,29.7691330227973 +2019-08-25 23:45:00,25.0,0.083597884,29.76859411519277 +2019-08-26 00:00:00,25.0,0.076190476,29.768054594240635 +2019-08-26 00:15:00,25.0,0.063492063,29.767514460010283 +2019-08-26 00:30:00,25.0,0.052910053,29.766973712571193 +2019-08-26 00:45:00,25.0,0.046031746,29.766432351992915 +2019-08-26 01:00:00,25.0,0.041269841,29.765890378345084 +2019-08-26 01:15:00,25.0,0.035449735,29.7653477916974 +2019-08-26 01:30:00,25.0,0.030687831,29.76480459211966 +2019-08-26 01:45:00,25.0,0.022751323,29.764260779681734 +2019-08-26 02:00:00,25.0,0.017460317,29.76371635445356 +2019-08-26 02:15:00,25.0,0.014814815,29.763171316505165 +2019-08-26 02:30:00,25.0,0.013227513,29.762625665906658 +2019-08-26 02:45:00,25.0,0.012169312,29.76207940272822 +2019-08-26 03:00:00,25.0,0.012169312,29.76153252704011 +2019-08-26 03:15:00,25.0,0.012169312,29.76098503891267 +2019-08-26 03:30:00,25.0,0.008994709,29.76043693841632 +2019-08-26 03:45:00,25.0,0.007407407,29.759888225621555 +2019-08-26 04:00:00,25.0,0.006878307,29.759338900598955 +2019-08-26 04:15:00,25.0,0.006349206,29.758788963419175 +2019-08-26 04:30:00,25.0,0.005291005,29.75823841415295 +2019-08-26 04:45:00,25.0,0.004761905,29.757687252871087 +2019-08-26 05:00:00,25.0,0.005291005,29.757135479644486 +2019-08-26 05:15:00,25.0,0.005291005,29.756583094544112 +2019-08-26 05:30:00,25.0,0.004232804,29.756030097641016 +2019-08-26 05:45:00,25.0,0.003703704,29.755476489006323 +2019-08-26 06:00:00,25.0,0.003703704,29.754922268711244 +2019-08-26 06:15:00,25.0,0.003174603,29.754367436827064 +2019-08-26 06:30:00,25.0,0.003703704,29.753811993425142 +2019-08-26 06:45:00,25.0,0.003703704,29.75325593857692 +2019-08-26 07:00:00,25.0,0.003703704,29.75269927235393 +2019-08-26 07:15:00,25.0,0.004232804,29.752141994827756 +2019-08-26 07:30:00,25.0,0.003703704,29.751584106070084 +2019-08-26 07:45:00,25.0,0.004761905,29.751025606152673 +2019-08-26 08:00:00,25.0,0.007407407,29.75046649514736 +2019-08-26 08:15:00,25.0,0.008465608,29.74990677312605 +2019-08-26 08:30:00,25.0,0.008465608,29.749346440160746 +2019-08-26 08:45:00,25.0,0.010582011,29.748785496323514 +2019-08-26 09:00:00,25.0,0.011111111,29.748223941686504 +2019-08-26 09:15:00,25.0,0.012169312,29.74766177632194 +2019-08-26 09:30:00,25.0,0.013227513,29.74709900030214 +2019-08-26 09:45:00,25.0,0.015343915,29.746535613699486 +2019-08-26 10:00:00,25.0,0.015873016,29.74597161658643 +2019-08-26 10:15:00,25.0,0.015343915,29.74540700903553 +2019-08-26 10:30:00,25.0,0.015873016,29.744841791119406 +2019-08-26 10:45:00,25.0,0.015343915,29.74427596291075 +2019-08-26 11:00:00,25.0,0.014285714,29.74370952448234 +2019-08-26 11:15:00,25.0,0.014814815,29.743142475907035 +2019-08-26 11:30:00,25.0,0.016402116,29.742574817257776 +2019-08-26 11:45:00,25.0,0.017989418,29.74200654860757 +2019-08-26 12:00:00,25.0,0.020634921,29.74143767002951 +2019-08-26 12:15:00,25.0,0.020634921,29.740868181596767 +2019-08-26 12:30:00,25.0,0.024867725,29.74029808338259 +2019-08-26 12:45:00,25.0,0.028571429,29.739727375460305 +2019-08-26 13:00:00,25.0,0.031746032,29.739156057903323 +2019-08-26 13:15:00,25.0,0.033862434,29.73858413078512 +2019-08-26 13:30:00,25.0,0.038624339,29.738011594179266 +2019-08-26 13:45:00,25.0,0.044444444,29.737438448159395 +2019-08-26 14:00:00,25.0,0.050793651,29.736864692799234 +2019-08-26 14:15:00,25.0,0.053968254,29.736290328172576 +2019-08-26 14:30:00,25.0,0.056084656,29.735715354353296 +2019-08-26 14:45:00,25.0,0.056613757,29.73513977141535 +2019-08-26 15:00:00,25.0,0.054497354,29.734563579432777 +2019-08-26 15:15:00,25.0,0.053968254,29.73398677847968 +2019-08-26 15:30:00,25.0,0.052910053,29.733409368630248 +2019-08-26 15:45:00,25.0,0.048677249,29.732831349958754 +2019-08-26 16:00:00,25.0,0.047089947,29.732252722539542 +2019-08-26 16:15:00,25.0,0.048148148,29.731673486447033 +2019-08-26 16:30:00,25.0,0.051322751,29.731093641755734 +2019-08-26 16:45:00,25.0,0.054497354,29.73051318854023 +2019-08-26 17:00:00,25.0,0.055026455,29.72993212687517 +2019-08-26 17:15:00,25.0,0.057671958,29.7293504568353 +2019-08-26 17:30:00,25.0,0.053968254,29.72876817849543 +2019-08-26 17:45:00,25.0,0.053439153,29.72818529193046 +2019-08-26 18:00:00,25.0,0.055555556,29.72760179721535 +2019-08-26 18:15:00,25.0,0.056084656,29.727017694425168 +2019-08-26 18:30:00,25.0,0.052380952,29.72643298363503 +2019-08-26 18:45:00,25.0,0.053439153,29.725847664920146 +2019-08-26 19:00:00,25.0,0.056613757,29.7252617383558 +2019-08-26 19:15:00,25.0,0.058730159,29.72467520401736 +2019-08-26 19:30:00,25.0,0.064550265,29.724088061980265 +2019-08-26 19:45:00,25.0,0.067724868,29.723500312320027 +2019-08-26 20:00:00,25.0,0.068783069,29.72291195511226 +2019-08-26 20:15:00,25.0,0.068783069,29.722322990432623 +2019-08-26 20:30:00,25.0,0.06984127,29.72173341835688 +2019-08-26 20:45:00,25.0,0.06984127,29.721143238960863 +2019-08-26 21:00:00,25.0,0.07037037,29.720552452320476 +2019-08-26 21:15:00,25.0,0.077248677,29.719961058511714 +2019-08-26 21:30:00,25.0,0.085185185,29.719369057610635 +2019-08-26 21:45:00,25.0,0.086772487,29.718776449693397 +2019-08-26 22:00:00,25.0,0.085185185,29.71818323483621 +2019-08-26 22:15:00,25.0,0.084656085,29.717589413115377 +2019-08-26 22:30:00,25.0,0.09047619,29.716994984607283 +2019-08-26 22:45:00,25.0,0.096825397,29.716399949388382 +2019-08-26 23:00:00,25.0,0.098412698,29.7158043075352 +2019-08-26 23:15:00,25.0,0.096825397,29.715208059124365 +2019-08-26 23:30:00,25.0,0.096825397,29.71461120423256 +2019-08-26 23:45:00,25.0,0.097883598,29.71401374293655 +2019-08-27 00:00:00,25.0,0.094179894,29.713415675313186 +2019-08-27 00:15:00,25.0,0.095238095,29.712817001439397 +2019-08-27 00:30:00,25.0,0.100529101,29.71221772139218 +2019-08-27 00:45:00,25.0,0.098941799,29.711617835248617 +2019-08-27 01:00:00,25.0,0.093121693,29.711017343085864 +2019-08-27 01:15:00,25.0,0.088888889,29.710416244981168 +2019-08-27 01:30:00,25.0,0.085714286,29.70981454101183 +2019-08-27 01:45:00,25.0,0.08042328,29.70921223125525 +2019-08-27 02:00:00,25.0,0.07989418,29.708609315788898 +2019-08-27 02:15:00,25.0,0.074603175,29.70800579469033 +2019-08-27 02:30:00,25.0,0.068253968,29.707401668037154 +2019-08-27 02:45:00,25.0,0.065079365,29.706796935907086 +2019-08-27 03:00:00,25.0,0.061904762,29.70619159837791 +2019-08-27 03:15:00,25.0,0.066137566,29.70558565552748 +2019-08-27 03:30:00,25.0,0.074603175,29.704979107433736 +2019-08-27 03:45:00,25.0,0.078306878,29.704371954174693 +2019-08-27 04:00:00,25.0,0.06984127,29.703764195828448 +2019-08-27 04:15:00,25.0,0.077777778,29.703155832473165 +2019-08-27 04:30:00,25.0,0.074603175,29.702546864187102 +2019-08-27 04:45:00,25.0,0.071957672,29.70193729104858 +2019-08-27 05:00:00,25.0,0.068783069,29.701327113136003 +2019-08-27 05:15:00,25.0,0.066666667,29.700716330527857 +2019-08-27 05:30:00,25.0,0.068783069,29.7001049433027 +2019-08-27 05:45:00,25.0,0.066137566,29.699492951539177 +2019-08-27 06:00:00,25.0,0.066666667,29.698880355315993 +2019-08-27 06:15:00,25.0,0.073015873,29.698267154711942 +2019-08-27 06:30:00,25.0,0.07037037,29.697653349805908 +2019-08-27 06:45:00,25.0,0.066137566,29.697038940676826 +2019-08-27 07:00:00,25.0,0.060846561,29.69642392740373 +2019-08-27 07:15:00,25.0,0.05978836,29.695808310065722 +2019-08-27 07:30:00,25.0,0.063492063,29.695192088741987 +2019-08-27 07:45:00,25.0,0.074074074,29.69457526351178 +2019-08-27 08:00:00,25.0,0.088888889,29.693957834454444 +2019-08-27 08:15:00,25.0,0.100529101,29.69333980164939 +2019-08-27 08:30:00,25.0,0.10952381,29.69272116517611 +2019-08-27 08:45:00,25.0,0.106349206,29.69210192511418 +2019-08-27 09:00:00,25.0,0.100529101,29.691482081543242 +2019-08-27 09:15:00,25.0,0.103174603,29.690861634543026 +2019-08-27 09:30:00,25.0,0.114814815,29.690240584193333 +2019-08-27 09:45:00,25.0,0.114285714,29.689618930574046 +2019-08-27 10:00:00,25.0,0.117989418,29.688996673765125 +2019-08-27 10:15:00,25.0,0.114285714,29.688373813846596 +2019-08-27 10:30:00,25.0,0.105291005,29.687750350898582 +2019-08-27 10:45:00,25.0,0.104761905,29.687126285001273 +2019-08-27 11:00:00,25.0,0.103703704,29.686501616234942 +2019-08-27 11:15:00,25.0,0.106878307,29.685876344679926 +2019-08-27 11:30:00,25.0,0.098412698,29.68525047041665 +2019-08-27 11:45:00,25.0,0.09047619,29.684623993525626 +2019-08-27 12:00:00,25.0,0.084656085,29.683996914087423 +2019-08-27 12:15:00,25.0,0.082539683,29.683369232182695 +2019-08-27 12:30:00,25.0,0.082010582,29.682740947892185 +2019-08-27 12:45:00,25.0,0.076719577,29.6821120612967 +2019-08-27 13:00:00,25.0,0.065608466,29.68148257247713 +2019-08-27 13:15:00,25.0,0.064021164,29.680852481514435 +2019-08-27 13:30:00,25.0,0.061375661,29.680221788489675 +2019-08-27 13:45:00,25.0,0.063492063,29.67959049348395 +2019-08-27 14:00:00,25.0,0.068783069,29.67895859657847 +2019-08-27 14:15:00,25.0,0.072486772,29.678326097854516 +2019-08-27 14:30:00,25.0,0.076719577,29.677692997393432 +2019-08-27 14:45:00,25.0,0.078306878,29.677059295276653 +2019-08-27 15:00:00,25.0,0.086243386,29.676424991585684 +2019-08-27 15:15:00,25.0,0.093650794,29.675790086402117 +2019-08-27 15:30:00,25.0,0.098412698,29.67515457980761 +2019-08-27 15:45:00,25.0,0.112698413,29.674518471883903 +2019-08-27 16:00:00,25.0,0.123280423,29.673881762712817 +2019-08-27 16:15:00,25.0,0.125925926,29.673244452376245 +2019-08-27 16:30:00,25.0,0.136507937,29.672606540956156 +2019-08-27 16:45:00,25.0,0.149206349,29.671968028534604 +2019-08-27 17:00:00,25.0,0.171957672,29.67132891519372 +2019-08-27 17:15:00,25.0,0.184126984,29.670689201015698 +2019-08-27 17:30:00,25.0,0.197354497,29.670048886082824 +2019-08-27 17:45:00,25.0,0.21957672,29.669407970477465 +2019-08-27 18:00:00,25.0,0.240740741,29.668766454282043 +2019-08-27 18:15:00,25.0,0.25026455,29.66812433757908 +2019-08-27 18:30:00,25.0,0.259259259,29.667481620451163 +2019-08-27 18:45:00,25.0,0.278835979,29.666838302980963 +2019-08-27 19:00:00,25.0,0.242328042,29.666194385251224 +2019-08-27 19:15:00,25.0,0.278306878,29.665549867344765 +2019-08-27 19:30:00,25.0,0.298941799,29.664904749344494 +2019-08-27 19:45:00,25.0,0.271428571,29.664259031333373 +2019-08-27 20:00:00,25.0,0.245502646,29.663612713394468 +2019-08-27 20:15:00,25.0,0.228042328,29.6629657956109 +2019-08-27 20:30:00,25.0,0.21957672,29.662318278065893 +2019-08-27 20:45:00,25.0,0.199470899,29.661670160842718 +2019-08-27 21:00:00,25.0,0.183068783,29.66102144402474 +2019-08-27 21:15:00,25.0,0.168783069,29.660372127695403 +2019-08-27 21:30:00,25.0,0.172486772,29.65972221193822 +2019-08-27 21:45:00,25.0,0.16984127,29.659071696836783 +2019-08-27 22:00:00,25.0,0.158730159,29.658420582474765 +2019-08-27 22:15:00,25.0,0.157671958,29.657768868935918 +2019-08-27 22:30:00,25.0,0.168253968,29.65711655630406 +2019-08-27 22:45:00,25.0,0.166666667,29.656463644663095 +2019-08-27 23:00:00,25.0,0.15978836,29.655810134097006 +2019-08-27 23:15:00,25.0,0.156084656,29.655156024689845 +2019-08-27 23:30:00,25.0,0.152910053,29.654501316525742 +2019-08-27 23:45:00,25.0,0.151851852,29.653846009688912 +2019-08-28 00:00:00,25.0,0.152910053,29.653190104263643 +2019-08-28 00:15:00,25.0,0.15978836,29.652533600334298 +2019-08-28 00:30:00,25.0,0.157142857,29.651876497985313 +2019-08-28 00:45:00,25.0,0.157671958,29.65121879730122 +2019-08-28 01:00:00,25.0,0.158730159,29.650560498366595 +2019-08-28 01:15:00,25.0,0.148148148,29.64990160126612 +2019-08-28 01:30:00,25.0,0.145502646,29.649242106084543 +2019-08-28 01:45:00,25.0,0.132804233,29.648582012906694 +2019-08-28 02:00:00,25.0,0.127513228,29.647921321817467 +2019-08-28 02:15:00,25.0,0.122751323,29.647260032901848 +2019-08-28 02:30:00,25.0,0.11005291,29.64659814624489 +2019-08-28 02:45:00,25.0,0.098941799,29.64593566193173 +2019-08-28 03:00:00,25.0,0.097883598,29.645272580047575 +2019-08-28 03:15:00,25.0,0.100529101,29.644608900677714 +2019-08-28 03:30:00,25.0,0.103174603,29.64394462390751 +2019-08-28 03:45:00,25.0,0.104761905,29.643279749822405 +2019-08-28 04:00:00,25.0,0.102116402,29.642614278507914 +2019-08-28 04:15:00,25.0,0.092592593,29.641948210049637 +2019-08-28 04:30:00,25.0,0.085714286,29.64128154453324 +2019-08-28 04:45:00,25.0,0.083597884,29.64061428204447 +2019-08-28 05:00:00,25.0,0.082010582,29.639946422669155 +2019-08-28 05:15:00,25.0,0.081481481,29.6392779664932 +2019-08-28 05:30:00,25.0,0.082010582,29.638608913602575 +2019-08-28 05:45:00,25.0,0.084656085,29.637939264083343 +2019-08-28 06:00:00,25.0,0.085185185,29.63726901802163 +2019-08-28 06:15:00,25.0,0.073544974,29.63659817550365 +2019-08-28 06:30:00,25.0,0.066137566,29.63592673661568 +2019-08-28 06:45:00,25.0,0.066666667,29.635254701444094 +2019-08-28 07:00:00,25.0,0.07037037,29.634582070075318 +2019-08-28 07:15:00,25.0,0.06984127,29.633908842595876 +2019-08-28 07:30:00,25.0,0.063492063,29.633235019092357 +2019-08-28 07:45:00,25.0,0.059259259,29.632560599651434 +2019-08-28 08:00:00,25.0,0.052380952,29.631885584359846 +2019-08-28 08:15:00,25.0,0.048148148,29.631209973304415 +2019-08-28 08:30:00,25.0,0.044444444,29.63053376657205 +2019-08-28 08:45:00,25.0,0.046031746,29.62985696424971 +2019-08-28 09:00:00,25.0,0.042857143,29.62917956642446 +2019-08-28 09:15:00,25.0,0.040740741,29.628501573183424 +2019-08-28 09:30:00,25.0,0.035449735,29.627822984613807 +2019-08-28 09:45:00,25.0,0.03015873,29.62714380080289 +2019-08-28 10:00:00,25.0,0.026455026,29.626464021838032 +2019-08-28 10:15:00,25.0,0.023280423,29.62578364780667 +2019-08-28 10:30:00,25.0,0.020634921,29.62510267879631 +2019-08-28 10:45:00,25.0,0.016931217,29.62442111489454 +2019-08-28 11:00:00,25.0,0.016931217,29.623738956189033 +2019-08-28 11:15:00,25.0,0.015343915,29.623056202767522 +2019-08-28 11:30:00,25.0,0.018518519,29.622372854717828 +2019-08-28 11:45:00,25.0,0.019047619,29.621688912127837 +2019-08-28 12:00:00,25.0,0.021693122,29.621004375085533 +2019-08-28 12:15:00,25.0,0.025925926,29.62031924367895 +2019-08-28 12:30:00,25.0,0.024867725,29.619633517996217 +2019-08-28 12:45:00,25.0,0.025925926,29.618947198125532 +2019-08-28 13:00:00,25.0,0.032804233,29.618260284155177 +2019-08-28 13:15:00,25.0,0.048677249,29.617572776173496 +2019-08-28 13:30:00,25.0,0.06031746,29.616884674268917 +2019-08-28 13:45:00,25.0,0.068253968,29.61619597852996 +2019-08-28 14:00:00,25.0,0.069312169,29.615506689045187 +2019-08-28 14:15:00,25.0,0.062962963,29.614816805903267 +2019-08-28 14:30:00,25.0,0.057142857,29.61412632919293 +2019-08-28 14:45:00,25.0,0.04973545,29.613435259002998 +2019-08-28 15:00:00,25.0,0.052380952,29.612743595422344 +2019-08-28 15:15:00,25.0,0.061375661,29.612051338539935 +2019-08-28 15:30:00,25.0,0.063492063,29.611358488444814 +2019-08-28 15:45:00,25.0,0.062433862,29.610665045226096 +2019-08-28 16:00:00,25.0,0.064021164,29.60997100897297 +2019-08-28 16:15:00,25.0,0.061375661,29.60927637977471 +2019-08-28 16:30:00,25.0,0.056084656,29.608581157720657 +2019-08-28 16:45:00,25.0,0.054497354,29.607885342900232 +2019-08-28 17:00:00,25.0,0.052380952,29.607188935402935 +2019-08-28 17:15:00,25.0,0.072486772,29.60649193531834 +2019-08-28 17:30:00,25.0,0.085185185,29.60579434273609 +2019-08-28 17:45:00,25.0,0.086772487,29.605096157745916 +2019-08-28 18:00:00,25.0,0.081481481,29.60439738043762 +2019-08-28 18:15:00,25.0,0.085185185,29.603698010901084 +2019-08-28 18:30:00,25.0,0.105820106,29.602998049226255 +2019-08-28 18:45:00,25.0,0.104232804,29.60229749550317 +2019-08-28 19:00:00,25.0,0.097883598,29.601596349821932 +2019-08-28 19:15:00,25.0,0.096296296,29.600894612272725 +2019-08-28 19:30:00,25.0,0.107936508,29.600192282945805 +2019-08-28 19:45:00,25.0,0.11957672,29.599489361931514 +2019-08-28 20:00:00,25.0,0.105291005,29.59878584932026 +2019-08-28 20:15:00,25.0,0.087301587,29.59808174520253 +2019-08-28 20:30:00,25.0,0.087830688,29.597377049668886 +2019-08-28 20:45:00,25.0,0.087301587,29.596671762809976 +2019-08-28 21:00:00,25.0,0.086243386,29.595965884716502 +2019-08-28 21:15:00,25.0,0.080952381,29.595259415479262 +2019-08-28 21:30:00,25.0,0.082539683,29.594552355189126 +2019-08-28 21:45:00,25.0,0.082010582,29.59384470393704 +2019-08-28 22:00:00,25.0,0.077777778,29.593136461814016 +2019-08-28 22:15:00,25.0,0.078306878,29.592427628911153 +2019-08-28 22:30:00,25.0,0.067195767,29.591718205319626 +2019-08-28 22:45:00,25.0,0.067724868,29.591008191130676 +2019-08-28 23:00:00,25.0,0.057671958,29.590297586435632 +2019-08-28 23:15:00,25.0,0.051322751,29.589586391325895 +2019-08-28 23:30:00,25.0,0.053439153,29.58887460589294 +2019-08-28 23:45:00,25.0,0.048677249,29.58816223022831 +2019-08-29 00:00:00,25.0,0.043386243,29.58744926442364 +2019-08-29 00:15:00,25.0,0.043386243,29.586735708570636 +2019-08-29 00:30:00,25.0,0.040740741,29.58602156276107 +2019-08-29 00:45:00,25.0,0.038624339,29.585306827086796 +2019-08-29 01:00:00,25.0,0.042328042,29.58459150163976 +2019-08-29 01:15:00,25.0,0.052910053,29.58387558651195 +2019-08-29 01:30:00,25.0,0.056613757,29.583159081795458 +2019-08-29 01:45:00,25.0,0.065608466,29.582441987582442 +2019-08-29 02:00:00,25.0,0.071428571,29.58172430396514 +2019-08-29 02:15:00,25.0,0.07037037,29.581006031035848 +2019-08-29 02:30:00,25.0,0.06984127,29.58028716888697 +2019-08-29 02:45:00,25.0,0.070899471,29.579567717610956 +2019-08-29 03:00:00,25.0,0.064021164,29.578847677300345 +2019-08-29 03:15:00,25.0,0.043386243,29.578127048047754 +2019-08-29 03:30:00,25.0,0.036507937,29.57740582994587 +2019-08-29 03:45:00,25.0,0.035978836,29.576684023087463 +2019-08-29 04:00:00,25.0,0.031216931,29.575961627565363 +2019-08-29 04:15:00,25.0,0.023280423,29.57523864347249 +2019-08-29 04:30:00,25.0,0.026455026,29.57451507090184 +2019-08-29 04:45:00,25.0,0.035449735,29.573790909946478 +2019-08-29 05:00:00,25.0,0.055555556,29.573066160699543 +2019-08-29 05:15:00,25.0,0.085185185,29.57234082325426 +2019-08-29 05:30:00,25.0,0.105820106,29.571614897703927 +2019-08-29 05:45:00,25.0,0.114285714,29.570888384141902 +2019-08-29 06:00:00,25.0,0.129100529,29.570161282661644 +2019-08-29 06:15:00,25.0,0.153968254,29.569433593356667 +2019-08-29 06:30:00,25.0,0.179365079,29.568705316320568 +2019-08-29 06:45:00,25.0,0.193650794,29.567976451647016 +2019-08-29 07:00:00,25.0,0.204761905,29.56724699942977 +2019-08-29 07:15:00,25.0,0.205820106,29.566516959762648 +2019-08-29 07:30:00,25.0,0.223280423,29.56578633273955 +2019-08-29 07:45:00,25.0,0.241798942,29.565055118454445 +2019-08-29 08:00:00,25.0,0.256084656,29.564323317001396 +2019-08-29 08:15:00,25.0,0.264550265,29.563590928474518 +2019-08-29 08:30:00,25.0,0.273544974,29.562857952968017 +2019-08-29 08:45:00,25.0,0.282010582,29.562124390576166 +2019-08-29 09:00:00,25.0,0.279365079,29.561390241393326 +2019-08-29 09:15:00,25.0,0.264550265,29.560655505513918 +2019-08-29 09:30:00,25.0,0.223280423,29.559920183032446 +2019-08-29 09:45:00,25.0,0.194708995,29.559184274043496 +2019-08-29 10:00:00,25.0,0.184126984,29.55844777864171 +2019-08-29 10:15:00,25.0,0.168253968,29.557710696921824 +2019-08-29 10:30:00,25.0,0.155555556,29.556973028978646 +2019-08-29 10:45:00,25.0,0.137037037,29.556234774907054 +2019-08-29 11:00:00,25.0,0.139153439,29.555495934802003 +2019-08-29 11:15:00,25.0,0.136507937,29.554756508758526 +2019-08-29 11:30:00,25.0,0.135978836,29.554016496871732 +2019-08-29 11:45:00,25.0,0.127513228,29.553275899236795 +2019-08-29 12:00:00,25.0,0.127513228,29.55253471594898 +2019-08-29 12:15:00,25.0,0.124338624,29.551792947103614 +2019-08-29 12:30:00,25.0,0.117460317,29.551050592796113 +2019-08-29 12:45:00,25.0,0.119047619,29.550307653121948 +2019-08-29 13:00:00,25.0,0.103174603,29.54956412817669 +2019-08-29 13:15:00,25.0,0.093121693,29.54882001805597 +2019-08-29 13:30:00,25.0,0.099470899,29.548075322855492 +2019-08-29 13:45:00,25.0,0.100529101,29.547330042671042 +2019-08-29 14:00:00,25.0,0.107407407,29.546584177598483 +2019-08-29 14:15:00,25.0,0.096296296,29.54583772773375 +2019-08-29 14:30:00,25.0,0.08994709,29.54509069317285 +2019-08-29 14:45:00,25.0,0.085185185,29.544343074011866 +2019-08-29 15:00:00,25.0,0.083597884,29.54359487034697 +2019-08-29 15:15:00,25.0,0.088359788,29.54284608227438 +2019-08-29 15:30:00,25.0,0.077777778,29.54209670989042 +2019-08-29 15:45:00,25.0,0.073544974,29.54134675329147 +2019-08-29 16:00:00,25.0,0.073015873,29.540596212574002 +2019-08-29 16:15:00,25.0,0.078835979,29.53984508783454 +2019-08-29 16:30:00,25.0,0.082539683,29.539093379169696 +2019-08-29 16:45:00,25.0,0.082539683,29.538341086676166 +2019-08-29 17:00:00,25.0,0.08994709,29.5375882104507 +2019-08-29 17:15:00,25.0,0.091534392,29.536834750590142 +2019-08-29 17:30:00,25.0,0.087830688,29.5360807071914 +2019-08-29 17:45:00,25.0,0.092592593,29.535326080351467 +2019-08-29 18:00:00,25.0,0.094708995,29.534570870167396 +2019-08-29 18:15:00,25.0,0.087301587,29.53381507673633 +2019-08-29 18:30:00,25.0,0.088359788,29.533058700155483 +2019-08-29 18:45:00,25.0,0.088888889,29.532301740522133 +2019-08-29 19:00:00,25.0,0.091005291,29.53154419793365 +2019-08-29 19:15:00,25.0,0.093121693,29.53078607248747 +2019-08-29 19:30:00,25.0,0.1,29.530027364281096 +2019-08-29 19:45:00,25.0,0.100529101,29.529268073412126 +2019-08-29 20:00:00,25.0,0.1,29.52850819997822 +2019-08-29 20:15:00,25.0,0.088888889,29.52774774407711 +2019-08-29 20:30:00,25.0,0.088888889,29.526986705806607 +2019-08-29 20:45:00,25.0,0.098941799,29.526225085264603 +2019-08-29 21:00:00,25.0,0.110582011,29.525462882549057 +2019-08-29 21:15:00,25.0,0.116402116,29.524700097758004 +2019-08-29 21:30:00,25.0,0.118518519,29.523936730989554 +2019-08-29 21:45:00,25.0,0.118518519,29.523172782341895 +2019-08-29 22:00:00,25.0,0.114285714,29.522408251913294 +2019-08-29 22:15:00,25.0,0.118518519,29.521643139802073 +2019-08-29 22:30:00,25.0,0.122751323,29.520877446106653 +2019-08-29 22:45:00,25.0,0.121164021,29.52011117092552 +2019-08-29 23:00:00,25.0,0.116402116,29.519344314357227 +2019-08-29 23:15:00,25.0,0.114285714,29.51857687650041 +2019-08-29 23:30:00,25.0,0.118518519,29.517808857453783 +2019-08-29 23:45:00,25.0,0.117989418,29.517040257316133 +2019-08-30 00:00:00,25.0,0.119047619,29.516271076186307 +2019-08-30 00:15:00,25.0,0.12010582,29.51550131416325 +2019-08-30 00:30:00,25.0,0.118518519,29.51473097134597 +2019-08-30 00:45:00,25.0,0.12010582,29.51396004783354 +2019-08-30 01:00:00,25.0,0.129100529,29.51318854372513 +2019-08-30 01:15:00,25.0,0.133333333,29.51241645911996 +2019-08-30 01:30:00,25.0,0.131216931,29.511643794117354 +2019-08-30 01:45:00,25.0,0.128042328,29.510870548816683 +2019-08-30 02:00:00,25.0,0.131746032,29.510096723317403 +2019-08-30 02:15:00,25.0,0.133862434,29.509322317719054 +2019-08-30 02:30:00,25.0,0.143386243,29.50854733212123 +2019-08-30 02:45:00,25.0,0.15026455,29.507771766623616 +2019-08-30 03:00:00,25.0,0.14973545,29.50699562132597 +2019-08-30 03:15:00,25.0,0.151322751,29.50621889632812 +2019-08-30 03:30:00,25.0,0.14973545,29.505441591729973 +2019-08-30 03:45:00,25.0,0.149206349,29.5046637076315 +2019-08-30 04:00:00,25.0,0.150793651,29.50388524413276 +2019-08-30 04:15:00,25.0,0.148677249,29.503106201333882 +2019-08-30 04:30:00,25.0,0.155026455,29.50232657933506 +2019-08-30 04:45:00,25.0,0.159259259,29.501546378236583 +2019-08-30 05:00:00,25.0,0.161904762,29.5007655981388 +2019-08-30 05:15:00,25.0,0.15978836,29.499984239142123 +2019-08-30 05:30:00,25.0,0.166137566,29.499202301347065 +2019-08-30 05:45:00,25.0,0.178306878,29.4984197848542 +2019-08-30 06:00:00,25.0,0.192063492,29.49763668976417 +2019-08-30 06:15:00,25.0,0.203174603,29.49685301617771 +2019-08-30 06:30:00,25.0,0.207407407,29.496068764195606 +2019-08-30 06:45:00,25.0,0.208994709,29.49528393391874 +2019-08-30 07:00:00,25.0,0.213756614,29.494498525448048 +2019-08-30 07:15:00,25.0,0.216402116,29.49371253888456 +2019-08-30 07:30:00,25.0,0.216402116,29.492925974329367 +2019-08-30 07:45:00,25.0,0.218518519,29.492138831883643 +2019-08-30 08:00:00,25.0,0.222222222,29.491351111648626 +2019-08-30 08:15:00,25.0,0.23015873,29.49056281372564 +2019-08-30 08:30:00,25.0,0.23015873,29.489773938216075 +2019-08-30 08:45:00,25.0,0.230687831,29.4889844852214 +2019-08-30 09:00:00,25.0,0.229100529,29.488194454843153 +2019-08-30 09:15:00,25.0,0.225925926,29.487403847182954 +2019-08-30 09:30:00,25.0,0.222222222,29.486612662342488 +2019-08-30 09:45:00,25.0,0.217460317,29.48582090042352 +2019-08-30 10:00:00,25.0,0.217989418,29.48502856152789 +2019-08-30 10:15:00,25.0,0.21957672,29.48423564575751 +2019-08-30 10:30:00,25.0,0.218518519,29.483442153214366 +2019-08-30 10:45:00,25.0,0.216931217,29.48264808400052 +2019-08-30 11:00:00,25.0,0.214814815,29.48185343821811 +2019-08-30 11:15:00,25.0,0.215873016,29.481058215969334 +2019-08-30 11:30:00,25.0,0.226984127,29.480262417356485 +2019-08-30 11:45:00,25.0,0.232804233,29.47946604248192 +2019-08-30 12:00:00,25.0,0.239153439,29.478669091448072 +2019-08-30 12:15:00,25.0,0.241269841,29.47787156435744 +2019-08-30 12:30:00,25.0,0.246031746,29.477073461312607 +2019-08-30 12:45:00,25.0,0.245502646,29.47627478241623 +2019-08-30 13:00:00,25.0,0.232804233,29.47547552777103 +2019-08-30 13:15:00,25.0,0.228042328,29.474675697479814 +2019-08-30 13:30:00,25.0,0.21957672,29.473875291645463 +2019-08-30 13:45:00,25.0,0.219047619,29.473074310370915 +2019-08-30 14:00:00,25.0,0.212169312,29.4722727537592 +2019-08-30 14:15:00,25.0,0.205820106,29.47147062191342 +2019-08-30 14:30:00,25.0,0.202116402,29.47066791493674 +2019-08-30 14:45:00,25.0,0.19047619,29.46986463293241 +2019-08-30 15:00:00,25.0,0.183597884,29.46906077600375 +2019-08-30 15:15:00,25.0,0.177777778,29.468256344254158 +2019-08-30 15:30:00,25.0,0.17037037,29.46745133778709 +2019-08-30 15:45:00,25.0,0.15978836,29.466645756706093 +2019-08-30 16:00:00,25.0,0.155026455,29.46583960111479 +2019-08-30 16:15:00,25.0,0.152910053,29.46503287111687 +2019-08-30 16:30:00,25.0,0.152380952,29.464225566816083 +2019-08-30 16:45:00,25.0,0.151851852,29.463417688316277 +2019-08-30 17:00:00,25.0,0.14973545,29.462609235721366 +2019-08-30 17:15:00,25.0,0.147619048,29.461800209135326 +2019-08-30 17:30:00,25.0,0.139153439,29.46099060866222 +2019-08-30 17:45:00,25.0,0.130687831,29.460180434406183 +2019-08-30 18:00:00,25.0,0.134391534,29.45936968647142 +2019-08-30 18:15:00,25.0,0.140740741,29.458558364962208 +2019-08-30 18:30:00,25.0,0.149206349,29.457746469982904 +2019-08-30 18:45:00,25.0,0.165608466,29.45693400163794 +2019-08-30 19:00:00,25.0,0.178835979,29.456120960031807 +2019-08-30 19:15:00,25.0,0.186772487,29.45530734526909 +2019-08-30 19:30:00,25.0,0.18994709,29.454493157454433 +2019-08-30 19:45:00,25.0,0.201058201,29.45367839669256 +2019-08-30 20:00:00,25.0,0.203703704,29.45286306308827 +2019-08-30 20:15:00,25.0,0.205820106,29.452047156746428 +2019-08-30 20:30:00,25.0,0.196296296,29.45123067777198 +2019-08-30 20:45:00,25.0,0.184656085,29.45041362626995 +2019-08-30 21:00:00,25.0,0.171957672,29.449596002345412 +2019-08-30 21:15:00,25.0,0.162962963,29.44877780610355 +2019-08-30 21:30:00,25.0,0.163492063,29.44795903764959 +2019-08-30 21:45:00,25.0,0.156613757,29.44713969708885 +2019-08-30 22:00:00,25.0,0.14973545,29.44631978452671 +2019-08-30 22:15:00,25.0,0.14973545,29.445499300068636 +2019-08-30 22:30:00,25.0,0.153968254,29.444678243820157 +2019-08-30 22:45:00,25.0,0.165608466,29.443856615886876 +2019-08-30 23:00:00,25.0,0.16984127,29.443034416374473 +2019-08-30 23:15:00,25.0,0.172486772,29.442211645388713 +2019-08-30 23:30:00,25.0,0.174074074,29.441388303035406 +2019-08-30 23:45:00,25.0,0.167195767,29.440564389420462 +2019-08-31 00:00:00,25.0,0.164021164,29.439739904649855 +2019-08-31 00:15:00,25.0,0.161375661,29.438914848829626 +2019-08-31 00:30:00,25.0,0.162433862,29.4380892220659 +2019-08-31 00:45:00,25.0,0.158201058,29.43726302446487 +2019-08-31 01:00:00,25.0,0.156613757,29.436436256132808 +2019-08-31 01:15:00,25.0,0.157142857,29.435608917176047 +2019-08-31 01:30:00,25.0,0.157142857,29.434781007701005 +2019-08-31 01:45:00,25.0,0.159259259,29.43395252781417 +2019-08-31 02:00:00,25.0,0.164550265,29.4331234776221 +2019-08-31 02:15:00,25.0,0.171428571,29.432293857231436 +2019-08-31 02:30:00,25.0,0.177248677,29.431463666748876 +2019-08-31 02:45:00,25.0,0.175132275,29.43063290628121 +2019-08-31 03:00:00,25.0,0.176719577,29.42980157593529 +2019-08-31 03:15:00,25.0,0.188359788,29.42896967581804 +2019-08-31 03:30:00,25.0,0.198412698,29.428137206036467 +2019-08-31 03:45:00,25.0,0.2,29.42730416669764 +2019-08-31 04:00:00,25.0,0.205291005,29.4264705579087 +2019-08-31 04:15:00,25.0,0.202116402,29.425636379776883 +2019-08-31 04:30:00,25.0,0.202116402,29.42480163240948 +2019-08-31 04:45:00,25.0,0.199470899,29.423966315913844 +2019-08-31 05:00:00,25.0,0.205291005,29.423130430397432 +2019-08-31 05:15:00,25.0,0.212169312,29.42229397596775 +2019-08-31 05:30:00,25.0,0.215343915,29.421456952732385 +2019-08-31 05:45:00,25.0,0.213227513,29.420619360798995 +2019-08-31 06:00:00,25.0,0.219047619,29.419781200275317 +2019-08-31 06:15:00,25.0,0.227513228,29.418942471269155 +2019-08-31 06:30:00,25.0,0.22962963,29.418103173888387 +2019-08-31 06:45:00,25.0,0.232275132,29.41726330824097 +2019-08-31 07:00:00,25.0,0.23015873,29.416422874434925 +2019-08-31 07:15:00,25.0,0.231216931,29.41558187257835 +2019-08-31 07:30:00,25.0,0.221164021,29.41474030277942 +2019-08-31 07:45:00,25.0,0.215873016,29.41389816514638 +2019-08-31 08:00:00,25.0,0.214814815,29.413055459787547 +2019-08-31 08:15:00,25.0,0.213756614,29.412212186811306 +2019-08-31 08:30:00,25.0,0.211640212,29.411368346326128 +2019-08-31 08:45:00,25.0,0.213756614,29.410523938440548 +2019-08-31 09:00:00,25.0,0.206349206,29.409678963263175 +2019-08-31 09:15:00,25.0,0.201058201,29.40883342090269 +2019-08-31 09:30:00,25.0,0.194708995,29.40798731146785 +2019-08-31 09:45:00,25.0,0.187301587,29.407140635067485 +2019-08-31 10:00:00,25.0,0.171957672,29.40629339181049 +2019-08-31 10:15:00,25.0,0.161375661,29.40544558180585 +2019-08-31 10:30:00,25.0,0.146560847,29.404597205162606 +2019-08-31 10:45:00,25.0,0.132275132,29.40374826198988 +2019-08-31 11:00:00,25.0,0.123809524,29.402898752396858 +2019-08-31 11:15:00,25.0,0.116402116,29.402048676492818 +2019-08-31 11:30:00,25.0,0.105820106,29.401198034387093 +2019-08-31 11:45:00,25.0,0.097354497,29.40034682618909 +2019-08-31 12:00:00,25.0,0.09047619,29.399495052008298 +2019-08-31 12:15:00,25.0,0.084656085,29.398642711954277 +2019-08-31 12:30:00,25.0,0.072486772,29.39778980613665 +2019-08-31 12:45:00,25.0,0.062962963,29.396936334665124 +2019-08-31 13:00:00,25.0,0.056613757,29.396082297649478 +2019-08-31 13:15:00,25.0,0.04973545,29.39522769519955 +2019-08-31 13:30:00,25.0,0.04973545,29.39437252742527 +2019-08-31 13:45:00,25.0,0.04973545,29.39351679443663 +2019-08-31 14:00:00,25.0,0.045502646,29.392660496343694 +2019-08-31 14:15:00,25.0,0.043386243,29.3918036332566 +2019-08-31 14:30:00,25.0,0.041798942,29.390946205285562 +2019-08-31 14:45:00,25.0,0.042328042,29.390088212540867 +2019-08-31 15:00:00,25.0,0.043386243,29.38922965513287 +2019-08-31 15:15:00,25.0,0.043386243,29.388370533171994 +2019-08-31 15:30:00,25.0,0.039153439,29.38751084676875 +2019-08-31 15:45:00,25.0,0.042328042,29.386650596033714 +2019-08-31 16:00:00,25.0,0.047089947,29.385789781077523 +2019-08-31 16:15:00,25.0,0.04973545,29.384928402010907 +2019-08-31 16:30:00,25.0,0.052910053,29.384066458944655 +2019-08-31 16:45:00,25.0,0.055026455,29.38320395198963 +2019-08-31 17:00:00,25.0,0.06031746,29.382340881256773 +2019-08-31 17:15:00,25.0,0.06031746,29.381477246857088 +2019-08-31 17:30:00,25.0,0.05978836,29.380613048901672 +2019-08-31 17:45:00,25.0,0.056084656,29.379748287501663 +2019-08-31 18:00:00,25.0,0.057142857,29.378882962768298 +2019-08-31 18:15:00,25.0,0.065608466,29.37801707481288 +2019-08-31 18:30:00,25.0,0.075132275,29.377150623746772 +2019-08-31 18:45:00,25.0,0.080952381,29.376283609681423 +2019-08-31 19:00:00,25.0,0.089417989,29.375416032728353 +2019-08-31 19:15:00,25.0,0.085714286,29.37454789299915 +2019-08-31 19:30:00,25.0,0.085185185,29.373679190605475 +2019-08-31 19:45:00,25.0,0.07989418,29.372809925659062 +2019-08-31 20:00:00,25.0,0.080952381,29.371940098271725 +2019-08-31 20:15:00,25.0,0.116402116,29.371069708555332 +2019-08-31 20:30:00,25.0,0.122751323,29.370198756621843 +2019-08-31 20:45:00,25.0,0.143386243,29.369327242583275 +2019-08-31 21:00:00,25.0,0.158201058,29.368455166551737 +2019-08-31 21:15:00,25.0,0.154497354,29.36758252863938 +2019-08-31 21:30:00,25.0,0.161904762,29.366709328958457 +2019-08-31 21:45:00,25.0,0.173544974,29.36583556762128 +2019-08-31 22:00:00,25.0,0.259259259,29.364961244740222 +2019-08-31 22:15:00,25.0,0.202116402,29.364086360427756 +2019-08-31 22:30:00,25.0,0.186772487,29.363210914796404 +2019-08-31 22:45:00,25.0,0.22962963,29.362334907958775 +2019-08-31 23:00:00,25.0,0.202116402,29.361458340027532 +2019-08-31 23:15:00,25.0,0.194708995,29.360581211115424 +2019-08-31 23:30:00,25.0,0.178835979,29.35970352133528 +2019-08-31 23:45:00,25.0,0.160846561,29.358825270799976 +2019-09-01 00:00:00,25.0,0.167195767,29.357946459622482 +2019-09-01 00:15:00,25.0,0.168253968,29.357067087915837 +2019-09-01 00:30:00,25.0,0.172486772,29.356187155793137 +2019-09-01 00:45:00,25.0,0.174603175,29.355306663367564 +2019-09-01 01:00:00,25.0,0.171428571,29.354425610752376 +2019-09-01 01:15:00,25.0,0.177248677,29.353543998060893 +2019-09-01 01:30:00,25.0,0.196825397,29.352661825406507 +2019-09-01 01:45:00,25.0,0.208465608,29.35177909290268 +2019-09-01 02:00:00,25.0,0.222222222,29.35089580066297 +2019-09-01 02:15:00,25.0,0.243915344,29.35001194880097 +2019-09-01 02:30:00,25.0,0.262962963,29.349127537430366 +2019-09-01 02:45:00,25.0,0.28994709,29.348242566664915 +2019-09-01 03:00:00,25.0,0.299470899,29.347357036618455 +2019-09-01 03:15:00,25.0,0.326984127,29.346470947404864 +2019-09-01 03:30:00,25.0,0.377248677,29.345584299138128 +2019-09-01 03:45:00,25.0,0.401058201,29.34469709193229 +2019-09-01 04:00:00,25.0,0.414285714,29.343809325901454 +2019-09-01 04:15:00,25.0,0.394179894,29.342921001159812 +2019-09-01 04:30:00,25.0,0.397883598,29.342032117821624 +2019-09-01 04:45:00,25.0,0.453439153,29.341142676001223 +2019-09-01 05:00:00,25.0,0.460846561,29.340252675813 +2019-09-01 05:15:00,25.0,0.443386243,29.339362117371444 +2019-09-01 05:30:00,25.0,0.434391534,29.338471000791092 +2019-09-01 05:45:00,25.0,0.423280423,29.337579326186557 +2019-09-01 06:00:00,25.0,0.419047619,29.336687093672538 +2019-09-01 06:15:00,25.0,0.388888889,29.335794303363787 +2019-09-01 06:30:00,25.0,0.366137566,29.334900955375147 +2019-09-01 06:45:00,25.0,0.383597884,29.334007049821516 +2019-09-01 07:00:00,25.0,0.393121693,29.333112586817865 +2019-09-01 07:15:00,25.0,0.385185185,29.332217566479258 +2019-09-01 07:30:00,25.0,0.376190476,29.331321988920795 +2019-09-01 07:45:00,25.0,0.350793651,29.33042585425768 +2019-09-01 08:00:00,25.0,0.316402116,29.329529162605173 +2019-09-01 08:15:00,25.0,0.293121693,29.328631914078613 +2019-09-01 08:30:00,25.0,0.280952381,29.327734108793393 +2019-09-01 08:45:00,25.0,0.274603175,29.326835746865 +2019-09-01 09:00:00,25.0,0.251322751,29.32593682840899 +2019-09-01 09:15:00,25.0,0.264021164,29.325037353540974 +2019-09-01 09:30:00,25.0,0.244444444,29.324137322376643 +2019-09-01 09:45:00,25.0,0.244444444,29.323236735031767 +2019-09-01 10:00:00,25.0,0.239153439,29.322335591622185 +2019-09-01 10:15:00,25.0,0.236507937,29.32143389226379 +2019-09-01 10:30:00,25.0,0.242857143,29.320531637072577 +2019-09-01 10:45:00,25.0,0.247619048,29.31962882616459 +2019-09-01 11:00:00,25.0,0.244973545,29.318725459655944 +2019-09-01 11:15:00,25.0,0.257142857,29.317821537662837 +2019-09-01 11:30:00,25.0,0.271957672,29.316917060301535 +2019-09-01 11:45:00,25.0,0.276190476,29.316012027688377 +2019-09-01 12:00:00,25.0,0.281481481,29.31510643993976 +2019-09-01 12:15:00,25.0,0.287830688,29.314200297172174 +2019-09-01 12:30:00,25.0,0.286772487,29.313293599502167 +2019-09-01 12:45:00,25.0,0.272486772,29.312386347046353 +2019-09-01 13:00:00,25.0,0.282010582,29.311478539921428 +2019-09-01 13:15:00,25.0,0.286772487,29.310570178244163 +2019-09-01 13:30:00,25.0,0.28042328,29.30966126213139 +2019-09-01 13:45:00,25.0,0.286243386,29.308751791700008 +2019-09-01 14:00:00,25.0,0.294179894,29.307841767067004 +2019-09-01 14:15:00,25.0,0.297883598,29.30693118834943 +2019-09-01 14:30:00,25.0,0.308465608,29.306020055664398 +2019-09-01 14:45:00,25.0,0.314285714,29.3051083691291 +2019-09-01 15:00:00,25.0,0.326455026,29.30419612886081 +2019-09-01 15:15:00,25.0,0.320634921,29.303283334976854 +2019-09-01 15:30:00,25.0,0.317989418,29.302369987594638 +2019-09-01 15:45:00,25.0,0.294708995,29.30145608683164 +2019-09-01 16:00:00,25.0,0.276190476,29.300541632805412 +2019-09-01 16:15:00,25.0,0.287830688,29.299626625633564 +2019-09-01 16:30:00,25.0,0.341798942,29.298711065433793 +2019-09-01 16:45:00,25.0,0.311111111,29.297794952323862 +2019-09-01 17:00:00,25.0,0.278835979,29.296878286421602 +2019-09-01 17:15:00,25.0,0.268253968,29.29596106784491 +2019-09-01 17:30:00,25.0,0.268253968,29.295043296711768 +2019-09-01 17:45:00,25.0,0.267195767,29.294124973140224 +2019-09-01 18:00:00,25.0,0.263492063,29.293206097248387 +2019-09-01 18:15:00,25.0,0.304761905,29.29228666915445 +2019-09-01 18:30:00,25.0,0.386772487,29.291366688976673 +2019-09-01 18:45:00,25.0,0.417460317,29.290446156833383 +2019-09-01 19:00:00,25.0,0.394179894,29.289525072842977 +2019-09-01 19:15:00,25.0,0.401058201,29.288603437123935 +2019-09-01 19:30:00,25.0,0.407407407,29.2876812497948 +2019-09-01 19:45:00,25.0,0.405820106,29.28675851097418 +2019-09-01 20:00:00,25.0,0.448148148,29.28583522078076 +2019-09-01 20:15:00,25.0,0.456613757,29.284911379333305 +2019-09-01 20:30:00,25.0,0.437037037,29.283986986750627 +2019-09-01 20:45:00,25.0,0.42010582,29.283062043151634 +2019-09-01 21:00:00,25.0,0.42010582,29.28213654865529 +2019-09-01 21:15:00,25.0,0.457671958,29.281210503380642 +2019-09-01 21:30:00,25.0,0.433333333,29.28028390744679 +2019-09-01 21:45:00,25.0,0.403703704,29.279356760972917 +2019-09-01 22:00:00,25.0,0.385185185,29.27842906407828 +2019-09-01 22:15:00,25.0,0.376190476,29.2775008168822 +2019-09-01 22:30:00,25.0,0.392592593,29.276572019504062 +2019-09-01 22:45:00,25.0,0.404761905,29.275642672063338 +2019-09-01 23:00:00,25.0,0.373544974,29.274712774679568 +2019-09-01 23:15:00,25.0,0.324338624,29.273782327472343 +2019-09-01 23:30:00,25.0,0.345502646,29.272851330561352 +2019-09-01 23:45:00,25.0,0.384126984,29.271919784066338 +2019-09-02 00:00:00,25.0,0.376719577,29.270987688107112 +2019-09-02 00:15:00,25.0,0.375132275,29.27005504280357 +2019-09-02 00:30:00,25.0,0.367195767,29.26912184827567 +2019-09-02 00:45:00,25.0,0.317989418,29.268188104643446 +2019-09-02 01:00:00,25.0,0.350793651,29.267253812026986 +2019-09-02 01:15:00,25.0,0.368783069,29.266318970546468 +2019-09-02 01:30:00,25.0,0.406878307,29.26538358032214 +2019-09-02 01:45:00,25.0,0.468253968,29.2644476414743 +2019-09-02 02:00:00,25.0,0.385714286,29.263511154123343 +2019-09-02 02:15:00,25.0,0.288888889,29.262574118389715 +2019-09-02 02:30:00,25.0,0.278306878,29.261636534393944 +2019-09-02 02:45:00,25.0,0.305820106,29.26069840225662 +2019-09-02 03:00:00,25.0,0.295767196,29.25975972209841 +2019-09-02 03:15:00,25.0,0.253968254,29.25882049404005 +2019-09-02 03:30:00,25.0,0.223809524,29.257880718202344 +2019-09-02 03:45:00,25.0,0.23968254,29.25694039470617 +2019-09-02 04:00:00,25.0,0.264550265,29.25599952367247 +2019-09-02 04:15:00,25.0,0.301587302,29.255058105222272 +2019-09-02 04:30:00,25.0,0.344973545,29.25411613947665 +2019-09-02 04:45:00,25.0,0.394708995,29.253173626556766 +2019-09-02 05:00:00,25.0,0.423809524,29.252230566583858 +2019-09-02 05:15:00,25.0,0.441269841,29.25128695967921 +2019-09-02 05:30:00,25.0,0.407936508,29.2503428059642 +2019-09-02 05:45:00,25.0,0.406349206,29.24939810556026 +2019-09-02 06:00:00,25.0,0.411640212,29.248452858588912 +2019-09-02 06:15:00,25.0,0.401587302,29.24750706517172 +2019-09-02 06:30:00,25.0,0.388359788,29.246560725430346 +2019-09-02 06:45:00,25.0,0.36984127,29.24561383948651 +2019-09-02 07:00:00,25.0,0.362433862,29.244666407461995 +2019-09-02 07:15:00,25.0,0.378306878,29.243718429478665 +2019-09-02 07:30:00,25.0,0.402645503,29.242769905658456 +2019-09-02 07:45:00,25.0,0.366137566,29.241820836123367 +2019-09-02 08:00:00,25.0,0.365608466,29.240871220995462 +2019-09-02 08:15:00,25.0,0.414285714,29.23992106039689 +2019-09-02 08:30:00,25.0,0.392592593,29.23897035444987 +2019-09-02 08:45:00,25.0,0.383068783,29.238019103276667 +2019-09-02 09:00:00,25.0,0.371957672,29.23706730699964 +2019-09-02 09:15:00,25.0,0.349206349,29.23611496574122 +2019-09-02 09:30:00,25.0,0.338095238,29.23516207962389 +2019-09-02 09:45:00,25.0,0.337037037,29.234208648770213 +2019-09-02 10:00:00,25.0,0.326455026,29.233254673302824 +2019-09-02 10:15:00,25.0,0.306349206,29.232300153344433 +2019-09-02 10:30:00,25.0,0.267724868,29.231345089017793 +2019-09-02 10:45:00,25.0,0.256613757,29.23038948044576 +2019-09-02 11:00:00,25.0,0.246031746,29.229433327751245 +2019-09-02 11:15:00,25.0,0.234391534,29.228476631057234 +2019-09-02 11:30:00,25.0,0.21005291,29.227519390486773 +2019-09-02 11:45:00,25.0,0.2,29.22656160616299 +2019-09-02 12:00:00,25.0,0.207936508,29.22560327820907 +2019-09-02 12:15:00,25.0,0.214285714,29.224644406748283 +2019-09-02 12:30:00,25.0,0.227513228,29.223684991903955 +2019-09-02 12:45:00,25.0,0.225396825,29.2227250337995 +2019-09-02 13:00:00,25.0,0.230687831,29.22176453255837 +2019-09-02 13:15:00,25.0,0.237566138,29.22080348830412 +2019-09-02 13:30:00,25.0,0.231216931,29.219841901160365 +2019-09-02 13:45:00,25.0,0.213227513,29.218879771250784 +2019-09-02 14:00:00,25.0,0.188888889,29.217917098699118 +2019-09-02 14:15:00,25.0,0.174074074,29.216953883629202 +2019-09-02 14:30:00,25.0,0.167724868,29.215990126164918 +2019-09-02 14:45:00,25.0,0.183597884,29.21502582643023 +2019-09-02 15:00:00,25.0,0.181481481,29.21406098454917 +2019-09-02 15:15:00,25.0,0.191005291,29.213095600645836 +2019-09-02 15:30:00,25.0,0.223280423,29.212129674844398 +2019-09-02 15:45:00,25.0,0.258201058,29.211163207269095 +2019-09-02 16:00:00,25.0,0.288888889,29.210196198044237 +2019-09-02 16:15:00,25.0,0.255555556,29.20922864729421 +2019-09-02 16:30:00,25.0,0.255555556,29.208260555143447 +2019-09-02 16:45:00,25.0,0.288888889,29.20729192171648 +2019-09-02 17:00:00,25.0,0.302645503,29.20632274713789 +2019-09-02 17:15:00,25.0,0.322222222,29.20535303153234 +2019-09-02 17:30:00,25.0,0.358201058,29.20438277502455 +2019-09-02 17:45:00,25.0,0.402116402,29.203411977739314 +2019-09-02 18:00:00,25.0,0.441269841,29.202440639801516 +2019-09-02 18:15:00,25.0,0.454497354,29.201468761336073 +2019-09-02 18:30:00,25.0,0.465079365,29.200496342468 +2019-09-02 18:45:00,25.0,0.457671958,29.199523383322365 +2019-09-02 19:00:00,25.0,0.464550265,29.198549884024324 +2019-09-02 19:15:00,25.0,0.482010582,29.197575844699077 +2019-09-02 19:30:00,25.0,0.503703704,29.196601265471916 +2019-09-02 19:45:00,25.0,0.530687831,29.195626146468193 +2019-09-02 20:00:00,25.0,0.561904762,29.194650487813323 +2019-09-02 20:15:00,25.0,0.546560847,29.193674289632803 +2019-09-02 20:30:00,25.0,0.536507937,29.192697552052195 +2019-09-02 20:45:00,25.0,0.541798942,29.19172027519713 +2019-09-02 21:00:00,25.0,0.565608466,29.190742459193302 +2019-09-02 21:15:00,25.0,0.564550265,29.189764104166485 +2019-09-02 21:30:00,25.0,0.546031746,29.188785210242518 +2019-09-02 21:45:00,25.0,0.543915344,29.1878057775473 +2019-09-02 22:00:00,25.0,0.517989418,29.186825806206816 +2019-09-02 22:15:00,25.0,0.516402116,29.185845296347107 +2019-09-02 22:30:00,25.0,0.526984127,29.1848642480943 +2019-09-02 22:45:00,25.0,0.551851852,29.183882661574565 +2019-09-02 23:00:00,25.0,0.57989418,29.18290053691416 +2019-09-02 23:15:00,25.0,0.586243386,29.181917874239417 +2019-09-02 23:30:00,25.0,0.6,29.180934673676717 +2019-09-02 23:45:00,25.0,0.614814815,29.17995093535253 +2019-09-03 00:00:00,25.0,0.611111111,29.178966659393378 +2019-09-03 00:15:00,25.0,0.616931217,29.17798184592587 +2019-09-03 00:30:00,25.0,0.625925926,29.17699649507667 +2019-09-03 00:45:00,25.0,0.630687831,29.176010606972515 +2019-09-03 01:00:00,25.0,0.649206349,29.17502418174022 +2019-09-03 01:15:00,25.0,0.648148148,29.174037219506648 +2019-09-03 01:30:00,25.0,0.638624339,29.17304972039875 +2019-09-03 01:45:00,25.0,0.634920635,29.172061684543547 +2019-09-03 02:00:00,25.0,0.656613757,29.17107311206812 +2019-09-03 02:15:00,25.0,0.624338624,29.170084003099614 +2019-09-03 02:30:00,25.0,0.61005291,29.169094357765257 +2019-09-03 02:45:00,25.0,0.618518519,29.168104176192344 +2019-09-03 03:00:00,25.0,0.629100529,29.16711345850822 +2019-09-03 03:15:00,25.0,0.614285714,29.166122204840324 +2019-09-03 03:30:00,25.0,0.651322751,29.16513041531615 +2019-09-03 03:45:00,25.0,0.646560847,29.164138090063272 +2019-09-03 04:00:00,25.0,0.628571429,29.163145229209313 +2019-09-03 04:15:00,25.0,0.632275132,29.16215183288198 +2019-09-03 04:30:00,25.0,0.666137566,29.16115790120906 +2019-09-03 04:45:00,25.0,0.683597884,29.160163434318374 +2019-09-03 05:00:00,25.0,0.695767196,29.159168432337843 +2019-09-03 05:15:00,25.0,0.69047619,29.158172895395445 +2019-09-03 05:30:00,25.0,0.685185185,29.157176823619235 +2019-09-03 05:45:00,25.0,0.683597884,29.15618021713732 +2019-09-03 06:00:00,25.0,0.697354497,29.155183076077883 +2019-09-03 06:15:00,25.0,0.686243386,29.154185400569197 +2019-09-03 06:30:00,25.0,0.687301587,29.153187190739565 +2019-09-03 06:45:00,25.0,0.693650794,29.15218844671739 +2019-09-03 07:00:00,25.0,0.696825397,29.151189168631134 +2019-09-03 07:15:00,25.0,0.693121693,29.150189356609317 +2019-09-03 07:30:00,25.0,0.681481481,29.149189010780546 +2019-09-03 07:45:00,25.0,0.676719577,29.148188131273486 +2019-09-03 08:00:00,25.0,0.653968254,29.147186718216872 +2019-09-03 08:15:00,25.0,0.658201058,29.146184771739506 +2019-09-03 08:30:00,25.0,0.652910053,29.145182291970258 +2019-09-03 08:45:00,25.0,0.65978836,29.14417927903808 +2019-09-03 09:00:00,25.0,0.668253968,29.14317573307197 +2019-09-03 09:15:00,25.0,0.665608466,29.142171654201015 +2019-09-03 09:30:00,25.0,0.656084656,29.141167042554354 +2019-09-03 09:45:00,25.0,0.665079365,29.140161898261212 +2019-09-03 10:00:00,25.0,0.671428571,29.139156221450865 +2019-09-03 10:15:00,25.0,0.664021164,29.138150012252666 +2019-09-03 10:30:00,25.0,0.659259259,29.137143270796045 +2019-09-03 10:45:00,25.0,0.661904762,29.13613599721048 +2019-09-03 11:00:00,25.0,0.661904762,29.135128191625533 +2019-09-03 11:15:00,25.0,0.656084656,29.134119854170834 +2019-09-03 11:30:00,25.0,0.657671958,29.133110984976074 +2019-09-03 11:45:00,25.0,0.646560847,29.132101584171018 +2019-09-03 12:00:00,25.0,0.626984127,29.13109165188549 +2019-09-03 12:15:00,25.0,0.626455026,29.130081188249406 +2019-09-03 12:30:00,25.0,0.617989418,29.129070193392714 +2019-09-03 12:45:00,25.0,0.63015873,29.128058667445465 +2019-09-03 13:00:00,25.0,0.624338624,29.127046610537757 +2019-09-03 13:15:00,25.0,0.631216931,29.12603402279977 +2019-09-03 13:30:00,25.0,0.62962963,29.12502090436174 +2019-09-03 13:45:00,25.0,0.623280423,29.124007255353973 +2019-09-03 14:00:00,25.0,0.597883598,29.122993075906862 +2019-09-03 14:15:00,25.0,0.576719577,29.121978366150834 +2019-09-03 14:30:00,25.0,0.555555556,29.12096312621641 +2019-09-03 14:45:00,25.0,0.551851852,29.119947356234178 +2019-09-03 15:00:00,25.0,0.523809524,29.118931056334787 +2019-09-03 15:15:00,25.0,0.505291005,29.117914226648953 +2019-09-03 15:30:00,25.0,0.480952381,29.11689686730746 +2019-09-03 15:45:00,25.0,0.482539683,29.115878978441174 +2019-09-03 16:00:00,25.0,0.484126984,29.114860560181004 +2019-09-03 16:15:00,25.0,0.467724868,29.11384161265795 +2019-09-03 16:30:00,25.0,0.467195767,29.11282213600307 +2019-09-03 16:45:00,25.0,0.448677249,29.1118021303475 +2019-09-03 17:00:00,25.0,0.443386243,29.110781595822417 +2019-09-03 17:15:00,25.0,0.43968254,29.109760532559097 +2019-09-03 17:30:00,25.0,0.426984127,29.108738940688873 +2019-09-03 17:45:00,25.0,0.410582011,29.107716820343136 +2019-09-03 18:00:00,25.0,0.401058201,29.106694171653356 +2019-09-03 18:15:00,25.0,0.392063492,29.10567099475107 +2019-09-03 18:30:00,25.0,0.383597884,29.10464728976789 +2019-09-03 18:45:00,25.0,0.396825397,29.10362305683547 +2019-09-03 19:00:00,25.0,0.403703704,29.10259829608556 +2019-09-03 19:15:00,25.0,0.40952381,29.10157300764997 +2019-09-03 19:30:00,25.0,0.424867725,29.100547191660567 +2019-09-03 19:45:00,25.0,0.438624339,29.0995208482493 +2019-09-03 20:00:00,25.0,0.435978836,29.09849397754817 +2019-09-03 20:15:00,25.0,0.426984127,29.097466579689268 +2019-09-03 20:30:00,25.0,0.426984127,29.096438654804736 +2019-09-03 20:45:00,25.0,0.423809524,29.09541020302678 +2019-09-03 21:00:00,25.0,0.424338624,29.094381224487698 +2019-09-03 21:15:00,25.0,0.437566138,29.09335171931982 +2019-09-03 21:30:00,25.0,0.447619048,29.092321687655577 +2019-09-03 21:45:00,25.0,0.473015873,29.09129112962745 +2019-09-03 22:00:00,25.0,0.503174603,29.090260045367998 +2019-09-03 22:15:00,25.0,0.539153439,29.08922843500983 +2019-09-03 22:30:00,25.0,0.554497354,29.08819629868564 +2019-09-03 22:45:00,25.0,0.544973545,29.08716363652819 +2019-09-03 23:00:00,25.0,0.542857143,29.08613044867029 +2019-09-03 23:15:00,25.0,0.521693122,29.08509673524484 +2019-09-03 23:30:00,25.0,0.508994709,29.084062496384792 +2019-09-03 23:45:00,25.0,0.502116402,29.083027732223186 +2019-09-04 00:00:00,25.0,0.511111111,29.0819924428931 +2019-09-04 00:15:00,25.0,0.532804233,29.0809566285277 +2019-09-04 00:30:00,25.0,0.532804233,29.079920289260226 +2019-09-04 00:45:00,25.0,0.519047619,29.078883425223957 +2019-09-04 01:00:00,25.0,0.528571429,29.077846036552266 +2019-09-04 01:15:00,25.0,0.533862434,29.076808123378587 +2019-09-04 01:30:00,25.0,0.537037037,29.075769685836413 +2019-09-04 01:45:00,25.0,0.533333333,29.074730724059307 +2019-09-04 02:00:00,25.0,0.514285714,29.073691238180913 +2019-09-04 02:15:00,25.0,0.5,29.07265122833493 +2019-09-04 02:30:00,25.0,0.493650794,29.071610694655117 +2019-09-04 02:45:00,25.0,0.482010582,29.07056963727532 +2019-09-04 03:00:00,25.0,0.479365079,29.06952805632944 +2019-09-04 03:15:00,25.0,0.478306878,29.068485951951445 +2019-09-04 03:30:00,25.0,0.478306878,29.06744332427537 +2019-09-04 03:45:00,25.0,0.474074074,29.066400173435326 +2019-09-04 04:00:00,25.0,0.474074074,29.06535649956549 +2019-09-04 04:15:00,25.0,0.482539683,29.064312302800086 +2019-09-04 04:30:00,25.0,0.494179894,29.063267583273433 +2019-09-04 04:45:00,25.0,0.498412698,29.06222234111991 +2019-09-04 05:00:00,25.0,0.425396825,29.06117657647394 +2019-09-04 05:15:00,25.0,0.437566138,29.06013028947005 +2019-09-04 05:30:00,25.0,0.424338624,29.059083480242805 +2019-09-04 05:45:00,25.0,0.406878307,29.058036148926856 +2019-09-04 06:00:00,25.0,0.397883598,29.056988295656904 +2019-09-04 06:15:00,25.0,0.397354497,29.05593992056773 +2019-09-04 06:30:00,25.0,0.400529101,29.054891023794188 +2019-09-04 06:45:00,25.0,0.411640212,29.053841605471174 +2019-09-04 07:00:00,25.0,0.432275132,29.052791665733672 +2019-09-04 07:15:00,25.0,0.443386243,29.051741204716734 +2019-09-04 07:30:00,25.0,0.447619048,29.05069022255547 +2019-09-04 07:45:00,25.0,0.462962963,29.04963871938505 +2019-09-04 08:00:00,25.0,0.477248677,29.048586695340735 +2019-09-04 08:15:00,25.0,0.483597884,29.047534150557833 +2019-09-04 08:30:00,25.0,0.49047619,29.04648108517172 +2019-09-04 08:45:00,25.0,0.498412698,29.04542749931785 +2019-09-04 09:00:00,25.0,0.506878307,29.044373393131735 +2019-09-04 09:15:00,25.0,0.512169312,29.04331876674896 +2019-09-04 09:30:00,25.0,0.521693122,29.042263620305164 +2019-09-04 09:45:00,25.0,0.531746032,29.041207953936073 +2019-09-04 10:00:00,25.0,0.524338624,29.040151767777466 +2019-09-04 10:15:00,25.0,0.519047619,29.03909506196519 +2019-09-04 10:30:00,25.0,0.485185185,29.038037836635162 +2019-09-04 10:45:00,25.0,0.469312169,29.036980091923365 +2019-09-04 11:00:00,25.0,0.472486772,29.03592182796585 +2019-09-04 11:15:00,25.0,0.475132275,29.03486304489873 +2019-09-04 11:30:00,25.0,0.457671958,29.03380374285819 +2019-09-04 11:45:00,25.0,0.416931217,29.032743921980487 +2019-09-04 12:00:00,25.0,0.412698413,29.03168358240192 +2019-09-04 12:15:00,25.0,0.410582011,29.030622724258887 +2019-09-04 12:30:00,25.0,0.402645503,29.02956134768783 +2019-09-04 12:45:00,25.0,0.406878307,29.02849945282528 +2019-09-04 13:00:00,25.0,0.408994709,29.027437039807804 +2019-09-04 13:15:00,25.0,0.435449735,29.026374108772057 +2019-09-04 13:30:00,25.0,0.449206349,29.02531065985476 +2019-09-04 13:45:00,25.0,0.43968254,29.024246693192687 +2019-09-04 14:00:00,25.0,0.412169312,29.023182208922698 +2019-09-04 14:15:00,25.0,0.419047619,29.0221172071817 +2019-09-04 14:30:00,25.0,0.417989418,29.02105168810669 +2019-09-04 14:45:00,25.0,0.428571429,29.019985651834705 +2019-09-04 15:00:00,25.0,0.415873016,29.018919098502863 +2019-09-04 15:15:00,25.0,0.408994709,29.017852028248353 +2019-09-04 15:30:00,25.0,0.393121693,29.016784441208415 +2019-09-04 15:45:00,25.0,0.341269841,29.015716337520367 +2019-09-04 16:00:00,25.0,0.306349206,29.014647717321594 +2019-09-04 16:15:00,25.0,0.252910053,29.01357858074955 +2019-09-04 16:30:00,25.0,0.223280423,29.012508927941735 +2019-09-04 16:45:00,25.0,0.214285714,29.01143875903574 +2019-09-04 17:00:00,25.0,0.203174603,29.010368074169214 +2019-09-04 17:15:00,25.0,0.206878307,29.00929687347987 +2019-09-04 17:30:00,25.0,0.205291005,29.00822515710548 +2019-09-04 17:45:00,25.0,0.217460317,29.007152925183895 +2019-09-04 18:00:00,25.0,0.233333333,29.006080177853036 +2019-09-04 18:15:00,25.0,0.267195767,29.005006915250874 +2019-09-04 18:30:00,25.0,0.265608466,29.003933137515453 +2019-09-04 18:45:00,25.0,0.330687831,29.002858844784896 +2019-09-04 19:00:00,25.0,0.355555556,29.001784037197368 +2019-09-04 19:15:00,25.0,0.32010582,29.00070871489112 +2019-09-04 19:30:00,25.0,0.311640212,28.999632878004462 +2019-09-04 19:45:00,25.0,0.38042328,28.998556526675767 +2019-09-04 20:00:00,25.0,0.403174603,28.99747966104348 +2019-09-04 20:15:00,25.0,0.427513228,28.996402281246112 +2019-09-04 20:30:00,25.0,0.423809524,28.99532438742224 +2019-09-04 20:45:00,25.0,0.401058201,28.994245979710495 +2019-09-04 21:00:00,25.0,0.391534392,28.993167058249593 +2019-09-04 21:15:00,25.0,0.391534392,28.99208762317831 +2019-09-04 21:30:00,25.0,0.366137566,28.991007674635476 +2019-09-04 21:45:00,25.0,0.388359788,28.98992721276 +2019-09-04 22:00:00,25.0,0.382539683,28.988846237690858 +2019-09-04 22:15:00,25.0,0.397883598,28.987764749567084 +2019-09-04 22:30:00,25.0,0.43015873,28.98668274852778 +2019-09-04 22:45:00,25.0,0.419047619,28.98560023471212 +2019-09-04 23:00:00,25.0,0.411640212,28.984517208259337 +2019-09-04 23:15:00,25.0,0.353968254,28.98343366930873 +2019-09-04 23:30:00,25.0,0.302645503,28.982349617999667 +2019-09-04 23:45:00,25.0,0.316931217,28.98126505447158 +2019-09-05 00:00:00,25.0,0.331216931,28.98017997886398 +2019-09-05 00:15:00,25.0,0.364021164,28.979094391316416 +2019-09-05 00:30:00,25.0,0.433862434,28.978008291968525 +2019-09-05 00:45:00,25.0,0.46031746,28.97692168096001 +2019-09-05 01:00:00,25.0,0.463492063,28.97583455843062 +2019-09-05 01:15:00,25.0,0.43015873,28.974746924520193 +2019-09-05 01:30:00,25.0,0.431216931,28.97365877936862 +2019-09-05 01:45:00,25.0,0.447619048,28.972570123115865 +2019-09-05 02:00:00,25.0,0.476719577,28.971480955901946 +2019-09-05 02:15:00,25.0,0.454497354,28.970391277866955 +2019-09-05 02:30:00,25.0,0.426455026,28.96930108915106 +2019-09-05 02:45:00,25.0,0.43015873,28.96821038989447 +2019-09-05 03:00:00,25.0,0.450793651,28.96711918023748 +2019-09-05 03:15:00,25.0,0.511640212,28.96602746032044 +2019-09-05 03:30:00,25.0,0.52962963,28.96493523028378 +2019-09-05 03:45:00,25.0,0.523280423,28.96384249026797 +2019-09-05 04:00:00,25.0,0.531746032,28.96274924041357 +2019-09-05 04:15:00,25.0,0.541269841,28.961655480861197 +2019-09-05 04:30:00,25.0,0.551851852,28.96056121175153 +2019-09-05 04:45:00,25.0,0.545502646,28.95946643322531 +2019-09-05 05:00:00,25.0,0.514285714,28.95837114542336 +2019-09-05 05:15:00,25.0,0.462962963,28.95727534848656 +2019-09-05 05:30:00,25.0,0.439153439,28.956179042555846 +2019-09-05 05:45:00,25.0,0.441269841,28.955082227772227 +2019-09-05 06:00:00,25.0,0.435449735,28.95398490427679 +2019-09-05 06:15:00,25.0,0.432804233,28.952887072210657 +2019-09-05 06:30:00,25.0,0.442328042,28.951788731715048 +2019-09-05 06:45:00,25.0,0.45026455,28.95068988293123 +2019-09-05 07:00:00,25.0,0.475132275,28.94959052600054 +2019-09-05 07:15:00,25.0,0.502645503,28.948490661064376 +2019-09-05 07:30:00,25.0,0.531746032,28.947390288264206 +2019-09-05 07:45:00,25.0,0.551851852,28.94628940774157 +2019-09-05 08:00:00,25.0,0.566137566,28.945188019638056 +2019-09-05 08:15:00,25.0,0.568253968,28.94408612409533 +2019-09-05 08:30:00,25.0,0.574603175,28.942983721255125 +2019-09-05 08:45:00,25.0,0.579365079,28.94188081125923 +2019-09-05 09:00:00,25.0,0.585185185,28.94077739424951 +2019-09-05 09:15:00,25.0,0.583597884,28.939673470367875 +2019-09-05 09:30:00,25.0,0.573015873,28.93856903975633 +2019-09-05 09:45:00,25.0,0.558201058,28.93746410255692 +2019-09-05 10:00:00,25.0,0.497883598,28.936358658911768 +2019-09-05 10:15:00,25.0,0.507407407,28.935252708963056 +2019-09-05 10:30:00,25.0,0.511640212,28.93414625285304 +2019-09-05 10:45:00,25.0,0.52010582,28.93303929072403 +2019-09-05 11:00:00,25.0,0.53015873,28.931931822718404 +2019-09-05 11:15:00,25.0,0.522751323,28.930823848978616 +2019-09-05 11:30:00,25.0,0.519047619,28.929715369647163 +2019-09-05 11:45:00,25.0,0.528571429,28.92860638486663 +2019-09-05 12:00:00,25.0,0.531746032,28.92749689477965 +2019-09-05 12:15:00,25.0,0.531216931,28.926386899528943 +2019-09-05 12:30:00,25.0,0.526455026,28.925276399257264 +2019-09-05 12:45:00,25.0,0.535978836,28.924165394107447 +2019-09-05 13:00:00,25.0,0.526455026,28.92305388422241 +2019-09-05 13:15:00,25.0,0.525925926,28.921941869745098 +2019-09-05 13:30:00,25.0,0.535449735,28.920829350818547 +2019-09-05 13:45:00,25.0,0.534391534,28.91971632758586 +2019-09-05 14:00:00,25.0,0.523280423,28.918602800190186 +2019-09-05 14:15:00,25.0,0.508465608,28.917488768774753 +2019-09-05 14:30:00,25.0,0.507407407,28.916374233482852 +2019-09-05 14:45:00,25.0,0.487301587,28.91525919445784 +2019-09-05 15:00:00,25.0,0.445502646,28.914143651843126 +2019-09-05 15:15:00,25.0,0.444444444,28.913027605782204 +2019-09-05 15:30:00,25.0,0.447619048,28.91191105641862 +2019-09-05 15:45:00,25.0,0.486772487,28.91079400389598 +2019-09-05 16:00:00,25.0,0.503703704,28.909676448357967 +2019-09-05 16:15:00,25.0,0.526984127,28.908558389948325 +2019-09-05 16:30:00,25.0,0.570899471,28.907439828810865 +2019-09-05 16:45:00,25.0,0.589417989,28.906320765089447 +2019-09-05 17:00:00,25.0,0.585185185,28.905201198928015 +2019-09-05 17:15:00,25.0,0.577777778,28.904081130470576 +2019-09-05 17:30:00,25.0,0.584656085,28.902960559861185 +2019-09-05 17:45:00,25.0,0.588359788,28.901839487243976 +2019-09-05 18:00:00,25.0,0.587830688,28.900717912763145 +2019-09-05 18:15:00,25.0,0.579365079,28.899595836562955 +2019-09-05 18:30:00,25.0,0.573015873,28.89847325878772 +2019-09-05 18:45:00,25.0,0.587830688,28.89735017958184 +2019-09-05 19:00:00,25.0,0.567724868,28.896226599089765 +2019-09-05 19:15:00,25.0,0.564550265,28.895102517456007 +2019-09-05 19:30:00,25.0,0.553968254,28.89397793482515 +2019-09-05 19:45:00,25.0,0.562962963,28.89285285134184 +2019-09-05 20:00:00,25.0,0.564021164,28.8917272671508 +2019-09-05 20:15:00,25.0,0.546031746,28.890601182396786 +2019-09-05 20:30:00,25.0,0.542857143,28.889474597224645 +2019-09-05 20:45:00,25.0,0.522222222,28.88834751177929 +2019-09-05 21:00:00,25.0,0.476190476,28.887219926205677 +2019-09-05 21:15:00,25.0,0.479365079,28.88609184064884 +2019-09-05 21:30:00,25.0,0.512698413,28.884963255253886 +2019-09-05 21:45:00,25.0,0.506349206,28.883834170165972 +2019-09-05 22:00:00,25.0,0.453439153,28.882704585530316 +2019-09-05 22:15:00,25.0,0.458201058,28.88157450149221 +2019-09-05 22:30:00,25.0,0.464021164,28.880443918197024 +2019-09-05 22:45:00,25.0,0.487830688,28.879312835790152 +2019-09-05 23:00:00,25.0,0.5,28.87818125441709 +2019-09-05 23:15:00,25.0,0.48994709,28.87704917422338 +2019-09-05 23:30:00,25.0,0.437566138,28.875916595354642 +2019-09-05 23:45:00,25.0,0.47989418,28.87478351795654 +2019-09-06 00:00:00,25.0,0.513227513,28.873649942174815 +2019-09-06 00:15:00,25.0,0.50952381,28.872515868155283 +2019-09-06 00:30:00,25.0,0.493650794,28.87138129604379 +2019-09-06 00:45:00,25.0,0.492063492,28.87024622598628 +2019-09-06 01:00:00,25.0,0.521693122,28.869110658128744 +2019-09-06 01:15:00,25.0,0.56031746,28.86797459261725 +2019-09-06 01:30:00,25.0,0.573015873,28.866838029597908 +2019-09-06 01:45:00,25.0,0.573015873,28.865700969216917 +2019-09-06 02:00:00,25.0,0.594708995,28.864563411620523 +2019-09-06 02:15:00,25.0,0.592592593,28.86342535695504 +2019-09-06 02:30:00,25.0,0.555555556,28.86228680536685 +2019-09-06 02:45:00,25.0,0.535449735,28.861147757002392 +2019-09-06 03:00:00,25.0,0.517460317,28.860008212008186 +2019-09-06 03:15:00,25.0,0.48042328,28.858868170530783 +2019-09-06 03:30:00,25.0,0.482539683,28.85772763271683 +2019-09-06 03:45:00,25.0,0.461904762,28.85658659871303 +2019-09-06 04:00:00,25.0,0.441798942,28.855445068666135 +2019-09-06 04:15:00,25.0,0.428042328,28.85430304272297 +2019-09-06 04:30:00,25.0,0.466137566,28.853160521030436 +2019-09-06 04:45:00,25.0,0.47989418,28.852017503735482 +2019-09-06 05:00:00,25.0,0.496825397,28.85087399098512 +2019-09-06 05:15:00,25.0,0.493121693,28.84972998292644 +2019-09-06 05:30:00,25.0,0.461375661,28.848585479706585 +2019-09-06 05:45:00,25.0,0.491005291,28.847440481472756 +2019-09-06 06:00:00,25.0,0.512698413,28.846294988372232 +2019-09-06 06:15:00,25.0,0.528042328,28.845149000552347 +2019-09-06 06:30:00,25.0,0.526984127,28.844002518160504 +2019-09-06 06:45:00,25.0,0.527513228,28.842855541344164 +2019-09-06 07:00:00,25.0,0.52962963,28.84170807025085 +2019-09-06 07:15:00,25.0,0.516931217,28.84056010502816 +2019-09-06 07:30:00,25.0,0.542328042,28.83941164582374 +2019-09-06 07:45:00,25.0,0.57037037,28.83826269278531 +2019-09-06 08:00:00,25.0,0.568253968,28.83711324606066 +2019-09-06 08:15:00,25.0,0.572486772,28.83596330579762 +2019-09-06 08:30:00,25.0,0.567724868,28.834812872144106 +2019-09-06 08:45:00,25.0,0.560846561,28.833661945248085 +2019-09-06 09:00:00,25.0,0.566137566,28.832510525257604 +2019-09-06 09:15:00,25.0,0.581481481,28.83135861232074 +2019-09-06 09:30:00,25.0,0.58042328,28.830206206585675 +2019-09-06 09:45:00,25.0,0.576190476,28.829053308200628 +2019-09-06 10:00:00,25.0,0.57989418,28.827899917313882 +2019-09-06 10:15:00,25.0,0.58042328,28.82674603407379 +2019-09-06 10:30:00,25.0,0.575661376,28.82559165862877 +2019-09-06 10:45:00,25.0,0.568253968,28.824436791127305 +2019-09-06 11:00:00,25.0,0.573015873,28.823281431717927 +2019-09-06 11:15:00,25.0,0.567195767,28.822125580549248 +2019-09-06 11:30:00,25.0,0.567195767,28.820969237769937 +2019-09-06 11:45:00,25.0,0.573015873,28.819812403528715 +2019-09-06 12:00:00,25.0,0.575661376,28.818655077974388 +2019-09-06 12:15:00,25.0,0.571957672,28.817497261255806 +2019-09-06 12:30:00,25.0,0.568783069,28.816338953521903 +2019-09-06 12:45:00,25.0,0.570899471,28.81518015492165 +2019-09-06 13:00:00,25.0,0.566666667,28.814020865604093 +2019-09-06 13:15:00,25.0,0.561375661,28.812861085718357 +2019-09-06 13:30:00,25.0,0.56031746,28.8117008154136 +2019-09-06 13:45:00,25.0,0.55978836,28.810540054839066 +2019-09-06 14:00:00,25.0,0.557142857,28.809378804144053 +2019-09-06 14:15:00,25.0,0.552910053,28.808217063477933 +2019-09-06 14:30:00,25.0,0.553439153,28.80705483299012 +2019-09-06 14:45:00,25.0,0.558201058,28.8058921128301 +2019-09-06 15:00:00,25.0,0.548148148,28.804728903147442 +2019-09-06 15:15:00,25.0,0.538095238,28.80356520409174 +2019-09-06 15:30:00,25.0,0.537566138,28.802401015812684 +2019-09-06 15:45:00,25.0,0.548677249,28.80123633846001 +2019-09-06 16:00:00,25.0,0.553439153,28.80007117218353 +2019-09-06 16:15:00,25.0,0.551851852,28.7989055171331 +2019-09-06 16:30:00,25.0,0.556613757,28.79773937345865 +2019-09-06 16:45:00,25.0,0.558201058,28.796572741310186 +2019-09-06 17:00:00,25.0,0.551322751,28.79540562083774 +2019-09-06 17:15:00,25.0,0.545502646,28.79423801219145 +2019-09-06 17:30:00,25.0,0.550793651,28.79306991552148 +2019-09-06 17:45:00,25.0,0.553968254,28.791901330978092 +2019-09-06 18:00:00,25.0,0.54021164,28.79073225871158 +2019-09-06 18:15:00,25.0,0.533333333,28.789562698872306 +2019-09-06 18:30:00,25.0,0.512169312,28.78839265161072 +2019-09-06 18:45:00,25.0,0.491005291,28.7872221170773 +2019-09-06 19:00:00,25.0,0.45978836,28.78605109542261 +2019-09-06 19:15:00,25.0,0.458730159,28.784879586797267 +2019-09-06 19:30:00,25.0,0.463492063,28.783707591351963 +2019-09-06 19:45:00,25.0,0.464021164,28.78253510923743 +2019-09-06 20:00:00,25.0,0.461904762,28.781362140604475 +2019-09-06 20:15:00,25.0,0.437566138,28.78018868560398 +2019-09-06 20:30:00,25.0,0.411640212,28.779014744386867 +2019-09-06 20:45:00,25.0,0.403703704,28.777840317104136 +2019-09-06 21:00:00,25.0,0.382539683,28.77666540390684 +2019-09-06 21:15:00,25.0,0.36031746,28.775490004946107 +2019-09-06 21:30:00,25.0,0.366137566,28.77431412037311 +2019-09-06 21:45:00,25.0,0.362962963,28.773137750339096 +2019-09-06 22:00:00,25.0,0.327513228,28.771960894995384 +2019-09-06 22:15:00,25.0,0.304761905,28.770783554493327 +2019-09-06 22:30:00,25.0,0.283597884,28.769605728984367 +2019-09-06 22:45:00,25.0,0.261904762,28.768427418619996 +2019-09-06 23:00:00,25.0,0.250793651,28.76724862355178 +2019-09-06 23:15:00,25.0,0.280952381,28.76606934393132 +2019-09-06 23:30:00,25.0,0.28994709,28.76488957991031 +2019-09-06 23:45:00,25.0,0.253439153,28.763709331640495 +2019-09-07 00:00:00,25.0,0.244973545,28.762528599273676 +2019-09-07 00:15:00,25.0,0.238095238,28.761347382961723 +2019-09-07 00:30:00,25.0,0.239153439,28.760165682856563 +2019-09-07 00:45:00,25.0,0.252910053,28.758983499110204 +2019-09-07 01:00:00,25.0,0.24973545,28.757800831874683 +2019-09-07 01:15:00,25.0,0.242328042,28.756617681302124 +2019-09-07 01:30:00,25.0,0.237566138,28.755434047544714 +2019-09-07 01:45:00,25.0,0.23015873,28.754249930754682 +2019-09-07 02:00:00,25.0,0.248677249,28.75306533108434 +2019-09-07 02:15:00,25.0,0.258730159,28.751880248686057 +2019-09-07 02:30:00,25.0,0.233862434,28.750694683712247 +2019-09-07 02:45:00,25.0,0.228042328,28.74950863631541 +2019-09-07 03:00:00,25.0,0.219047619,28.748322106648104 +2019-09-07 03:15:00,25.0,0.191534392,28.747135094862934 +2019-09-07 03:30:00,25.0,0.183597884,28.745947601112576 +2019-09-07 03:45:00,25.0,0.179365079,28.744759625549772 +2019-09-07 04:00:00,25.0,0.182539683,28.74357116832733 +2019-09-07 04:15:00,25.0,0.168783069,28.74238222959809 +2019-09-07 04:30:00,25.0,0.152910053,28.741192809514992 +2019-09-07 04:45:00,25.0,0.142857143,28.74000290823102 +2019-09-07 05:00:00,25.0,0.152910053,28.738812525899228 +2019-09-07 05:15:00,25.0,0.15026455,28.73762166267271 +2019-09-07 05:30:00,25.0,0.147089947,28.73643031870465 +2019-09-07 05:45:00,25.0,0.138095238,28.735238494148277 +2019-09-07 06:00:00,25.0,0.128042328,28.734046189156885 +2019-09-07 06:15:00,25.0,0.122222222,28.732853403883837 +2019-09-07 06:30:00,25.0,0.118518519,28.731660138482543 +2019-09-07 06:45:00,25.0,0.115343915,28.730466393106497 +2019-09-07 07:00:00,25.0,0.106349206,28.729272167909222 +2019-09-07 07:15:00,25.0,0.097883598,28.728077463044336 +2019-09-07 07:30:00,25.0,0.086772487,28.72688227866551 +2019-09-07 07:45:00,25.0,0.079365079,28.725686614926452 +2019-09-07 08:00:00,25.0,0.07037037,28.724490471980964 +2019-09-07 08:15:00,25.0,0.067195767,28.723293849982895 +2019-09-07 08:30:00,25.0,0.076190476,28.722096749086163 +2019-09-07 08:45:00,25.0,0.07037037,28.720899169444728 +2019-09-07 09:00:00,25.0,0.053968254,28.719701111212633 +2019-09-07 09:15:00,25.0,0.053439153,28.718502574543983 +2019-09-07 09:30:00,25.0,0.054497354,28.71730355959292 +2019-09-07 09:45:00,25.0,0.057671958,28.716104066513676 +2019-09-07 10:00:00,25.0,0.065608466,28.71490409546053 +2019-09-07 10:15:00,25.0,0.063492063,28.713703646587824 +2019-09-07 10:30:00,25.0,0.061375661,28.71250272004996 +2019-09-07 10:45:00,25.0,0.059259259,28.71130131600141 +2019-09-07 11:00:00,25.0,0.051322751,28.710099434596703 +2019-09-07 11:15:00,25.0,0.042857143,28.708897075990418 +2019-09-07 11:30:00,25.0,0.041269841,28.707694240337208 +2019-09-07 11:45:00,25.0,0.042328042,28.706490927791787 +2019-09-07 12:00:00,25.0,0.04021164,28.705287138508933 +2019-09-07 12:15:00,25.0,0.038095238,28.70408287264347 +2019-09-07 12:30:00,25.0,0.038624339,28.702878130350296 +2019-09-07 12:45:00,25.0,0.039153439,28.701672911784378 +2019-09-07 13:00:00,25.0,0.03968254,28.70046721710072 +2019-09-07 13:15:00,25.0,0.037566138,28.699261046454403 +2019-09-07 13:30:00,25.0,0.049206349,28.698054400000576 +2019-09-07 13:45:00,25.0,0.065608466,28.69684727789444 +2019-09-07 14:00:00,25.0,0.068783069,28.69563968029125 +2019-09-07 14:15:00,25.0,0.082010582,28.69443160734633 +2019-09-07 14:30:00,25.0,0.112169312,28.69322305921508 +2019-09-07 14:45:00,25.0,0.115343915,28.692014036052928 +2019-09-07 15:00:00,25.0,0.11005291,28.69080453801539 +2019-09-07 15:15:00,25.0,0.132275132,28.68959456525803 +2019-09-07 15:30:00,25.0,0.144973545,28.688384117936486 +2019-09-07 15:45:00,25.0,0.148677249,28.68717319620644 +2019-09-07 16:00:00,25.0,0.158730159,28.685961800223648 +2019-09-07 16:15:00,25.0,0.16984127,28.684749930143926 +2019-09-07 16:30:00,25.0,0.186772487,28.683537586123137 +2019-09-07 16:45:00,25.0,0.202645503,28.68232476831722 +2019-09-07 17:00:00,25.0,0.206878307,28.681111476882172 +2019-09-07 17:15:00,25.0,0.223280423,28.679897711974057 +2019-09-07 17:30:00,25.0,0.244973545,28.67868347374898 +2019-09-07 17:45:00,25.0,0.269312169,28.67746876236312 +2019-09-07 18:00:00,25.0,0.296296296,28.676253577972727 +2019-09-07 18:15:00,25.0,0.32010582,28.675037920734084 +2019-09-07 18:30:00,25.0,0.341269841,28.673821790803565 +2019-09-07 18:45:00,25.0,0.356084656,28.672605188337585 +2019-09-07 19:00:00,25.0,0.38042328,28.67138811349264 +2019-09-07 19:15:00,25.0,0.380952381,28.67017056642525 +2019-09-07 19:30:00,25.0,0.378306878,28.668952547292033 +2019-09-07 19:45:00,25.0,0.367195767,28.667734056249657 +2019-09-07 20:00:00,25.0,0.361904762,28.666515093454834 +2019-09-07 20:15:00,25.0,0.358730159,28.665295659064356 +2019-09-07 20:30:00,25.0,0.364550265,28.664075753235075 +2019-09-07 20:45:00,25.0,0.355555556,28.66285537612389 +2019-09-07 21:00:00,25.0,0.345502646,28.66163452788777 +2019-09-07 21:15:00,25.0,0.345502646,28.66041320868375 +2019-09-07 21:30:00,25.0,0.350793651,28.659191418668918 +2019-09-07 21:45:00,25.0,0.352910053,28.657969158000412 +2019-09-07 22:00:00,25.0,0.345502646,28.65674642683545 +2019-09-07 22:15:00,25.0,0.333862434,28.655523225331308 +2019-09-07 22:30:00,25.0,0.306878307,28.65429955364531 +2019-09-07 22:45:00,25.0,0.288888889,28.653075411934843 +2019-09-07 23:00:00,25.0,0.284126984,28.651850800357366 +2019-09-07 23:15:00,25.0,0.280952381,28.650625719070398 +2019-09-07 23:30:00,25.0,0.28042328,28.649400168231498 +2019-09-07 23:45:00,25.0,0.273015873,28.648174147998304 +2019-09-08 00:00:00,25.0,0.265608466,28.646947658528514 +2019-09-08 00:15:00,25.0,0.253439153,28.645720699979876 +2019-09-08 00:30:00,25.0,0.253968254,28.644493272510207 +2019-09-08 00:45:00,25.0,0.249206349,28.64326537627738 +2019-09-08 01:00:00,25.0,0.224867725,28.64203701143934 +2019-09-08 01:15:00,25.0,0.212698413,28.640808178154064 +2019-09-08 01:30:00,25.0,0.208994709,28.639578876579616 +2019-09-08 01:45:00,25.0,0.213227513,28.63834910687412 +2019-09-08 02:00:00,25.0,0.211640212,28.63711886919574 +2019-09-08 02:15:00,25.0,0.206878307,28.635888163702713 +2019-09-08 02:30:00,25.0,0.203703704,28.63465699055334 +2019-09-08 02:45:00,25.0,0.225925926,28.63342534990598 +2019-09-08 03:00:00,25.0,0.235449735,28.63219324191904 +2019-09-08 03:15:00,25.0,0.23015873,28.630960666751 +2019-09-08 03:30:00,25.0,0.222222222,28.62972762456041 +2019-09-08 03:45:00,25.0,0.210582011,28.628494115505845 +2019-09-08 04:00:00,25.0,0.208994709,28.62726013974597 +2019-09-08 04:15:00,25.0,0.206878307,28.62602569743951 +2019-09-08 04:30:00,25.0,0.201587302,28.624790788745237 +2019-09-08 04:45:00,25.0,0.191005291,28.623555413821983 +2019-09-08 05:00:00,25.0,0.167195767,28.622319572828644 +2019-09-08 05:15:00,25.0,0.144973545,28.62108326592419 +2019-09-08 05:30:00,25.0,0.143386243,28.619846493267623 +2019-09-08 05:45:00,25.0,0.144973545,28.618609255018022 +2019-09-08 06:00:00,25.0,0.136507937,28.61737155133453 +2019-09-08 06:15:00,25.0,0.133862434,28.616133382376344 +2019-09-08 06:30:00,25.0,0.116931217,28.61489474830271 +2019-09-08 06:45:00,25.0,0.108465608,28.61365564927295 +2019-09-08 07:00:00,25.0,0.098941799,28.612416085446448 +2019-09-08 07:15:00,25.0,0.08994709,28.61117605698262 +2019-09-08 07:30:00,25.0,0.066137566,28.60993556404098 +2019-09-08 07:45:00,25.0,0.063492063,28.60869460678107 +2019-09-08 08:00:00,25.0,0.04973545,28.60745318536252 +2019-09-08 08:15:00,25.0,0.043915344,28.606211299944988 +2019-09-08 08:30:00,25.0,0.04021164,28.604968950688217 +2019-09-08 08:45:00,25.0,0.021164021,28.603726137752002 +2019-09-08 09:00:00,25.0,0.01005291,28.60248286129619 +2019-09-08 09:15:00,25.0,0.005291005,28.601239121480695 +2019-09-08 09:30:00,25.0,0.003174603,28.599994918465494 +2019-09-08 09:45:00,25.0,0.001058201,28.59875025241062 +2019-09-08 10:00:00,25.0,0.001058201,28.59750512347616 +2019-09-08 10:15:00,25.0,0.001058201,28.59625953182227 +2019-09-08 10:30:00,25.0,0.001058201,28.59501347760916 +2019-09-08 10:45:00,25.0,0.000529101,28.593766960997097 +2019-09-08 11:00:00,25.0,0.000529101,28.59251998214641 +2019-09-08 11:15:00,25.0,0.001058201,28.591272541217492 +2019-09-08 11:30:00,25.0,0.003174603,28.5900246383708 +2019-09-08 11:45:00,25.0,0.003174603,28.588776273766822 +2019-09-08 12:00:00,25.0,0.003703704,28.58752744756614 +2019-09-08 12:15:00,25.0,0.003703704,28.586278159929382 +2019-09-08 12:30:00,25.0,0.004232804,28.585028411017223 +2019-09-08 12:45:00,25.0,0.005291005,28.583778200990416 +2019-09-08 13:00:00,25.0,0.005291005,28.582527530009774 +2019-09-08 13:15:00,25.0,0.005291005,28.581276398236145 +2019-09-08 13:30:00,25.0,0.005291005,28.58002480583046 +2019-09-08 13:45:00,25.0,0.006878307,28.5787727529537 +2019-09-08 14:00:00,25.0,0.005291005,28.577520239766915 +2019-09-08 14:15:00,25.0,0.006349206,28.576267266431195 +2019-09-08 14:30:00,25.0,0.008994709,28.575013833107704 +2019-09-08 14:45:00,25.0,0.00952381,28.57375993995767 +2019-09-08 15:00:00,25.0,0.01005291,28.57250558714236 +2019-09-08 15:15:00,25.0,0.01005291,28.57125077482311 +2019-09-08 15:30:00,25.0,0.008994709,28.569995503161326 +2019-09-08 15:45:00,25.0,0.008465608,28.56873977231847 +2019-09-08 16:00:00,25.0,0.00952381,28.56748358245604 +2019-09-08 16:15:00,25.0,0.011111111,28.566226933735614 +2019-09-08 16:30:00,25.0,0.012169312,28.564969826318837 +2019-09-08 16:45:00,25.0,0.011111111,28.56371226036739 +2019-09-08 17:00:00,25.0,0.014285714,28.562454236043024 +2019-09-08 17:15:00,25.0,0.011640212,28.56119575350755 +2019-09-08 17:30:00,25.0,0.011640212,28.55993681292285 +2019-09-08 17:45:00,25.0,0.01005291,28.558677414450834 +2019-09-08 18:00:00,25.0,0.011111111,28.55741755825349 +2019-09-08 18:15:00,25.0,0.01005291,28.55615724449288 +2019-09-08 18:30:00,25.0,0.013227513,28.55489647333109 +2019-09-08 18:45:00,25.0,0.019047619,28.553635244930295 +2019-09-08 19:00:00,25.0,0.019047619,28.552373559452707 +2019-09-08 19:15:00,25.0,0.016402116,28.551111417060625 +2019-09-08 19:30:00,25.0,0.016931217,28.549848817916367 +2019-09-08 19:45:00,25.0,0.015343915,28.54858576218234 +2019-09-08 20:00:00,25.0,0.013227513,28.54732225002101 +2019-09-08 20:15:00,25.0,0.013756614,28.54605828159488 +2019-09-08 20:30:00,25.0,0.013227513,28.54479385706653 +2019-09-08 20:45:00,25.0,0.013227513,28.54352897659859 +2019-09-08 21:00:00,25.0,0.011111111,28.542263640353763 +2019-09-08 21:15:00,25.0,0.00952381,28.540997848494783 +2019-09-08 21:30:00,25.0,0.007936508,28.539731601184467 +2019-09-08 21:45:00,25.0,0.007407407,28.53846489858569 +2019-09-08 22:00:00,25.0,0.005291005,28.537197740861366 +2019-09-08 22:15:00,25.0,0.006349206,28.535930128174485 +2019-09-08 22:30:00,25.0,0.005291005,28.53466206068809 +2019-09-08 22:45:00,25.0,0.008465608,28.53339353856529 +2019-09-08 23:00:00,25.0,0.008994709,28.532124561969226 +2019-09-08 23:15:00,25.0,0.00952381,28.530855131063134 +2019-09-08 23:30:00,25.0,0.012169312,28.529585246010292 +2019-09-08 23:45:00,25.0,0.012169312,28.528314906974025 +2019-09-09 00:00:00,25.0,0.013227513,28.52704411411773 +2019-09-09 00:15:00,25.0,0.015873016,28.525772867604857 +2019-09-09 00:30:00,25.0,0.018518519,28.52450116759893 +2019-09-09 00:45:00,25.0,0.017460317,28.523229014263503 +2019-09-09 01:00:00,25.0,0.014814815,28.52195640776221 +2019-09-09 01:15:00,25.0,0.017460317,28.52068334825874 +2019-09-09 01:30:00,25.0,0.019047619,28.519409835916825 +2019-09-09 01:45:00,25.0,0.02010582,28.518135870900274 +2019-09-09 02:00:00,25.0,0.01957672,28.51686145337295 +2019-09-09 02:15:00,25.0,0.020634921,28.515586583498774 +2019-09-09 02:30:00,25.0,0.025925926,28.514311261441712 +2019-09-09 02:45:00,25.0,0.029100529,28.513035487365805 +2019-09-09 03:00:00,25.0,0.032275132,28.511759261435152 +2019-09-09 03:15:00,25.0,0.036507937,28.51048258381389 +2019-09-09 03:30:00,25.0,0.031216931,28.509205454666237 +2019-09-09 03:45:00,25.0,0.028042328,28.50792787415646 +2019-09-09 04:00:00,25.0,0.031216931,28.50664984244889 +2019-09-09 04:15:00,25.0,0.034920635,28.5053713597079 +2019-09-09 04:30:00,25.0,0.032804233,28.504092426097934 +2019-09-09 04:45:00,25.0,0.033862434,28.502813041783497 +2019-09-09 05:00:00,25.0,0.04021164,28.50153320692914 +2019-09-09 05:15:00,25.0,0.042328042,28.500252921699477 +2019-09-09 05:30:00,25.0,0.043915344,28.498972186259188 +2019-09-09 05:45:00,25.0,0.046560847,28.497691000773006 +2019-09-09 06:00:00,25.0,0.046031746,28.49640936540571 +2019-09-09 06:15:00,25.0,0.045502646,28.49512728032215 +2019-09-09 06:30:00,25.0,0.042328042,28.49384474568724 +2019-09-09 06:45:00,25.0,0.03968254,28.492561761665932 +2019-09-09 07:00:00,25.0,0.040740741,28.49127832842325 +2019-09-09 07:15:00,25.0,0.040740741,28.489994446124275 +2019-09-09 07:30:00,25.0,0.045502646,28.488710114934133 +2019-09-09 07:45:00,25.0,0.053968254,28.487425335018024 +2019-09-09 08:00:00,25.0,0.056084656,28.486140106541203 +2019-09-09 08:15:00,25.0,0.052910053,28.48485442966898 +2019-09-09 08:30:00,25.0,0.047619048,28.483568304566713 +2019-09-09 08:45:00,25.0,0.046031746,28.48228173139983 +2019-09-09 09:00:00,25.0,0.042857143,28.48099471033382 +2019-09-09 09:15:00,25.0,0.039153439,28.47970724153421 +2019-09-09 09:30:00,25.0,0.034391534,28.478419325166605 +2019-09-09 09:45:00,25.0,0.032275132,28.47713096139666 +2019-09-09 10:00:00,25.0,0.031216931,28.47584215039009 +2019-09-09 10:15:00,25.0,0.028042328,28.474552892312655 +2019-09-09 10:30:00,25.0,0.025925926,28.47326318733019 +2019-09-09 10:45:00,25.0,0.025925926,28.47197303560858 +2019-09-09 11:00:00,25.0,0.031216931,28.470682437313766 +2019-09-09 11:15:00,25.0,0.036507937,28.46939139261174 +2019-09-09 11:30:00,25.0,0.038624339,28.468099901668573 +2019-09-09 11:45:00,25.0,0.051851852,28.466807964650375 +2019-09-09 12:00:00,25.0,0.068253968,28.46551558172331 +2019-09-09 12:15:00,25.0,0.06031746,28.464222753053612 +2019-09-09 12:30:00,25.0,0.045502646,28.462929478807574 +2019-09-09 12:45:00,25.0,0.034391534,28.461635759151534 +2019-09-09 13:00:00,25.0,0.025925926,28.460341594251886 +2019-09-09 13:15:00,25.0,0.024867725,28.4590469842751 +2019-09-09 13:30:00,25.0,0.027513228,28.457751929387697 +2019-09-09 13:45:00,25.0,0.042328042,28.456456429756233 +2019-09-09 14:00:00,25.0,0.060846561,28.455160485547346 +2019-09-09 14:15:00,25.0,0.07037037,28.453864096927727 +2019-09-09 14:30:00,25.0,0.07037037,28.452567264064115 +2019-09-09 14:45:00,25.0,0.089417989,28.45126998712331 +2019-09-09 15:00:00,25.0,0.097883598,28.449972266272177 +2019-09-09 15:15:00,25.0,0.094179894,28.448674101677632 +2019-09-09 15:30:00,25.0,0.083597884,28.44737549350664 +2019-09-09 15:45:00,25.0,0.08042328,28.446076441926238 +2019-09-09 16:00:00,25.0,0.080952381,28.444776947103517 +2019-09-09 16:15:00,25.0,0.081481481,28.44347700920561 +2019-09-09 16:30:00,25.0,0.079365079,28.44217662839972 +2019-09-09 16:45:00,25.0,0.076190476,28.44087580485311 +2019-09-09 17:00:00,25.0,0.070899471,28.439574538733098 +2019-09-09 17:15:00,25.0,0.060846561,28.438272830207048 +2019-09-09 17:30:00,25.0,0.056613757,28.43697067944239 +2019-09-09 17:45:00,25.0,0.064021164,28.43566808660662 +2019-09-09 18:00:00,25.0,0.061904762,28.43436505186726 +2019-09-09 18:15:00,25.0,0.058730159,28.433061575391925 +2019-09-09 18:30:00,25.0,0.058201058,28.431757657348264 +2019-09-09 18:45:00,25.0,0.061375661,28.430453297904005 +2019-09-09 19:00:00,25.0,0.061375661,28.429148497226898 +2019-09-09 19:15:00,25.0,0.058201058,28.427843255484774 +2019-09-09 19:30:00,25.0,0.057142857,28.42653757284553 +2019-09-09 19:45:00,25.0,0.053439153,28.42523144947709 +2019-09-09 20:00:00,25.0,0.051322751,28.423924885547454 +2019-09-09 20:15:00,25.0,0.04973545,28.422617881224678 +2019-09-09 20:30:00,25.0,0.044444444,28.421310436676876 +2019-09-09 20:45:00,25.0,0.046031746,28.420002552072205 +2019-09-09 21:00:00,25.0,0.041798942,28.418694227578897 +2019-09-09 21:15:00,25.0,0.042857143,28.41738546336523 +2019-09-09 21:30:00,25.0,0.04021164,28.41607625959953 +2019-09-09 21:45:00,25.0,0.032804233,28.4147666164502 +2019-09-09 22:00:00,25.0,0.029100529,28.41345653408569 +2019-09-09 22:15:00,25.0,0.031216931,28.41214601267451 +2019-09-09 22:30:00,25.0,0.03968254,28.410835052385206 +2019-09-09 22:45:00,25.0,0.041798942,28.409523653386408 +2019-09-09 23:00:00,25.0,0.041269841,28.408211815846794 +2019-09-09 23:15:00,25.0,0.044973545,28.406899539935086 +2019-09-09 23:30:00,25.0,0.051322751,28.405586825820077 +2019-09-09 23:45:00,25.0,0.055555556,28.40427367367061 +2019-09-10 00:00:00,25.0,0.059259259,28.402960083655593 +2019-09-10 00:15:00,25.0,0.060846561,28.401646055943974 +2019-09-10 00:30:00,25.0,0.072486772,28.400331590704766 +2019-09-10 00:45:00,25.0,0.083597884,28.39901668810705 +2019-09-10 01:00:00,25.0,0.099470899,28.397701348319934 +2019-09-10 01:15:00,25.0,0.123809524,28.396385571512614 +2019-09-10 01:30:00,25.0,0.142328042,28.395069357854325 +2019-09-10 01:45:00,25.0,0.159259259,28.39375270751436 +2019-09-10 02:00:00,25.0,0.178835979,28.392435620662066 +2019-09-10 02:15:00,25.0,0.188888889,28.391118097466855 +2019-09-10 02:30:00,25.0,0.192063492,28.389800138098195 +2019-09-10 02:45:00,25.0,0.18994709,28.38848174272559 +2019-09-10 03:00:00,25.0,0.187830688,28.387162911518626 +2019-09-10 03:15:00,25.0,0.17989418,28.385843644646936 +2019-09-10 03:30:00,25.0,0.178835979,28.384523942280197 +2019-09-10 03:45:00,25.0,0.175132275,28.38320380458816 +2019-09-10 04:00:00,25.0,0.166666667,28.381883231740623 +2019-09-10 04:15:00,25.0,0.164021164,28.380562223907443 +2019-09-10 04:30:00,25.0,0.164550265,28.379240781258524 +2019-09-10 04:45:00,25.0,0.175661376,28.377918903963838 +2019-09-10 05:00:00,25.0,0.183597884,28.376596592193415 +2019-09-10 05:15:00,25.0,0.196296296,28.375273846117317 +2019-09-10 05:30:00,25.0,0.212698413,28.37395066590569 +2019-09-10 05:45:00,25.0,0.231216931,28.37262705172872 +2019-09-10 06:00:00,25.0,0.238095238,28.371303003756665 +2019-09-10 06:15:00,25.0,0.239153439,28.36997852215981 +2019-09-10 06:30:00,25.0,0.250793651,28.36865360710852 +2019-09-10 06:45:00,25.0,0.251851852,28.367328258773213 +2019-09-10 07:00:00,25.0,0.262433862,28.366002477324354 +2019-09-10 07:15:00,25.0,0.261375661,28.364676262932466 +2019-09-10 07:30:00,25.0,0.255026455,28.363349615768133 +2019-09-10 07:45:00,25.0,0.241798942,28.362022536001994 +2019-09-10 08:00:00,25.0,0.238095238,28.360695023804738 +2019-09-10 08:15:00,25.0,0.252910053,28.359367079347106 +2019-09-10 08:30:00,25.0,0.269312169,28.35803870279992 +2019-09-10 08:45:00,25.0,0.283597884,28.356709894334017 +2019-09-10 09:00:00,25.0,0.298941799,28.35538065412032 +2019-09-10 09:15:00,25.0,0.305820106,28.354050982329806 +2019-09-10 09:30:00,25.0,0.316931217,28.352720879133496 +2019-09-10 09:45:00,25.0,0.332804233,28.351390344702466 +2019-09-10 10:00:00,25.0,0.345502646,28.350059379207853 +2019-09-10 10:15:00,25.0,0.346560847,28.34872798282086 +2019-09-10 10:30:00,25.0,0.354497354,28.347396155712723 +2019-09-10 10:45:00,25.0,0.363492063,28.346063898054744 +2019-09-10 11:00:00,25.0,0.361904762,28.344731210018285 +2019-09-10 11:15:00,25.0,0.366666667,28.343398091774766 +2019-09-10 11:30:00,25.0,0.378306878,28.342064543495646 +2019-09-10 11:45:00,25.0,0.396825397,28.340730565352448 +2019-09-10 12:00:00,25.0,0.404232804,28.339396157516763 +2019-09-10 12:15:00,25.0,0.398941799,28.33806132016021 +2019-09-10 12:30:00,25.0,0.398941799,28.33672605345449 +2019-09-10 12:45:00,25.0,0.396296296,28.335390357571345 +2019-09-10 13:00:00,25.0,0.394179894,28.334054232682583 +2019-09-10 13:15:00,25.0,0.404761905,28.33271767896004 +2019-09-10 13:30:00,25.0,0.408994709,28.331380696575643 +2019-09-10 13:45:00,25.0,0.406878307,28.330043285701358 +2019-09-10 14:00:00,25.0,0.403703704,28.328705446509197 +2019-09-10 14:15:00,25.0,0.398941799,28.32736717917124 +2019-09-10 14:30:00,25.0,0.395767196,28.326028483859616 +2019-09-10 14:45:00,25.0,0.389417989,28.32468936074652 +2019-09-10 15:00:00,25.0,0.378835979,28.32334981000418 +2019-09-10 15:15:00,25.0,0.374074074,28.3220098318049 +2019-09-10 15:30:00,25.0,0.377777778,28.320669426321036 +2019-09-10 15:45:00,25.0,0.383068783,28.31932859372498 +2019-09-10 16:00:00,25.0,0.39047619,28.317987334189198 +2019-09-10 16:15:00,25.0,0.385714286,28.31664564788621 +2019-09-10 16:30:00,25.0,0.378306878,28.315303534988598 +2019-09-10 16:45:00,25.0,0.364550265,28.313960995668964 +2019-09-10 17:00:00,25.0,0.351851852,28.312618030099998 +2019-09-10 17:15:00,25.0,0.341269841,28.311274638454446 +2019-09-10 17:30:00,25.0,0.340740741,28.30993082090508 +2019-09-10 17:45:00,25.0,0.337566138,28.308586577624755 +2019-09-10 18:00:00,25.0,0.32962963,28.30724190878637 +2019-09-10 18:15:00,25.0,0.305820106,28.305896814562885 +2019-09-10 18:30:00,25.0,0.288359788,28.304551295127297 +2019-09-10 18:45:00,25.0,0.275132275,28.303205350652675 +2019-09-10 19:00:00,25.0,0.273544974,28.301858981312144 +2019-09-10 19:15:00,25.0,0.270899471,28.30051218727887 +2019-09-10 19:30:00,25.0,0.273544974,28.29916496872608 +2019-09-10 19:45:00,25.0,0.262962963,28.29781732582706 +2019-09-10 20:00:00,25.0,0.253439153,28.296469258755145 +2019-09-10 20:15:00,25.0,0.247089947,28.295120767683727 +2019-09-10 20:30:00,25.0,0.238095238,28.29377185278625 +2019-09-10 20:45:00,25.0,0.231746032,28.292422514236225 +2019-09-10 21:00:00,25.0,0.23968254,28.291072752207192 +2019-09-10 21:15:00,25.0,0.235449735,28.28972256687277 +2019-09-10 21:30:00,25.0,0.221164021,28.28837195840662 +2019-09-10 21:45:00,25.0,0.210582011,28.287020926982457 +2019-09-10 22:00:00,25.0,0.204761905,28.28566947277406 +2019-09-10 22:15:00,25.0,0.200529101,28.28431759595525 +2019-09-10 22:30:00,25.0,0.193121693,28.282965296699924 +2019-09-10 22:45:00,25.0,0.193121693,28.281612575181995 +2019-09-10 23:00:00,25.0,0.195767196,28.280259431575466 +2019-09-10 23:15:00,25.0,0.208465608,28.278905866054387 +2019-09-10 23:30:00,25.0,0.21005291,28.277551878792842 +2019-09-10 23:45:00,25.0,0.224867725,28.27619746996499 +2019-09-11 00:00:00,25.0,0.231746032,28.27484263974504 +2019-09-11 00:15:00,25.0,0.241269841,28.27348738830726 +2019-09-11 00:30:00,25.0,0.265079365,28.272131715825953 +2019-09-11 00:45:00,25.0,0.283068783,28.270775622475494 +2019-09-11 01:00:00,25.0,0.306878307,28.269419108430313 +2019-09-11 01:15:00,25.0,0.335449735,28.268062173864873 +2019-09-11 01:30:00,25.0,0.367724868,28.26670481895372 +2019-09-11 01:45:00,25.0,0.397883598,28.265347043871433 +2019-09-11 02:00:00,25.0,0.407407407,28.26398884879266 +2019-09-11 02:15:00,25.0,0.411640212,28.262630233892082 +2019-09-11 02:30:00,25.0,0.411640212,28.26127119934446 +2019-09-11 02:45:00,25.0,0.408465608,28.259911745324594 +2019-09-11 03:00:00,25.0,0.425396825,28.25855187200733 +2019-09-11 03:15:00,25.0,0.45026455,28.257191579567586 +2019-09-11 03:30:00,25.0,0.476719577,28.255830868180325 +2019-09-11 03:45:00,25.0,0.492063492,28.254469738020575 +2019-09-11 04:00:00,25.0,0.485185185,28.253108189263386 +2019-09-11 04:15:00,25.0,0.481481481,28.2517462220839 +2019-09-11 04:30:00,25.0,0.479365079,28.250383836657296 +2019-09-11 04:45:00,25.0,0.482010582,28.249021033158794 +2019-09-11 05:00:00,25.0,0.501587302,28.24765781176369 +2019-09-11 05:15:00,25.0,0.547089947,28.24629417264733 +2019-09-11 05:30:00,25.0,0.567724868,28.244930115985106 +2019-09-11 05:45:00,25.0,0.557671958,28.243565641952454 +2019-09-11 06:00:00,25.0,0.560846561,28.242200750724887 +2019-09-11 06:15:00,25.0,0.560846561,28.240835442477966 +2019-09-11 06:30:00,25.0,0.562962963,28.239469717387284 +2019-09-11 06:45:00,25.0,0.565079365,28.23810357562851 +2019-09-11 07:00:00,25.0,0.56984127,28.236737017377365 +2019-09-11 07:15:00,25.0,0.573544974,28.235370042809624 +2019-09-11 07:30:00,25.0,0.577248677,28.234002652101093 +2019-09-11 07:45:00,25.0,0.578306878,28.23263484542766 +2019-09-11 08:00:00,25.0,0.581481481,28.231266622965265 +2019-09-11 08:15:00,25.0,0.57989418,28.22989798488987 +2019-09-11 08:30:00,25.0,0.572486772,28.22852893137752 +2019-09-11 08:45:00,25.0,0.576719577,28.227159462604316 +2019-09-11 09:00:00,25.0,0.561904762,28.2257895787464 +2019-09-11 09:15:00,25.0,0.548148148,28.22441927997996 +2019-09-11 09:30:00,25.0,0.541269841,28.223048566481246 +2019-09-11 09:45:00,25.0,0.54973545,28.221677438426582 +2019-09-11 10:00:00,25.0,0.555026455,28.220305895992304 +2019-09-11 10:15:00,25.0,0.553968254,28.218933939354827 +2019-09-11 10:30:00,25.0,0.556613757,28.217561568690623 +2019-09-11 10:45:00,25.0,0.55978836,28.21618878417621 +2019-09-11 11:00:00,25.0,0.559259259,28.214815585988152 +2019-09-11 11:15:00,25.0,0.560846561,28.213441974303073 +2019-09-11 11:30:00,25.0,0.558730159,28.212067949297662 +2019-09-11 11:45:00,25.0,0.558730159,28.21069351114863 +2019-09-11 12:00:00,25.0,0.531216931,28.20931866003277 +2019-09-11 12:15:00,25.0,0.53015873,28.20794339612692 +2019-09-11 12:30:00,25.0,0.53015873,28.206567719607975 +2019-09-11 12:45:00,25.0,0.526984127,28.205191630652863 +2019-09-11 13:00:00,25.0,0.528042328,28.203815129438592 +2019-09-11 13:15:00,25.0,0.526984127,28.20243821614221 +2019-09-11 13:30:00,25.0,0.525925926,28.20106089094081 +2019-09-11 13:45:00,25.0,0.522222222,28.199683154011552 +2019-09-11 14:00:00,25.0,0.522222222,28.198305005531648 +2019-09-11 14:15:00,25.0,0.524867725,28.19692644567835 +2019-09-11 14:30:00,25.0,0.531746032,28.195547474628977 +2019-09-11 14:45:00,25.0,0.537566138,28.194168092560894 +2019-09-11 15:00:00,25.0,0.537037037,28.19278829965153 +2019-09-11 15:15:00,25.0,0.538095238,28.191408096078337 +2019-09-11 15:30:00,25.0,0.542857143,28.190027482018852 +2019-09-11 15:45:00,25.0,0.542328042,28.18864645765066 +2019-09-11 16:00:00,25.0,0.538624339,28.187265023151376 +2019-09-11 16:15:00,25.0,0.498412698,28.18588317869869 +2019-09-11 16:30:00,25.0,0.498941799,28.18450092447034 +2019-09-11 16:45:00,25.0,0.496825397,28.183118260644118 +2019-09-11 17:00:00,25.0,0.494708995,28.181735187397855 +2019-09-11 17:15:00,25.0,0.48994709,28.18035170490945 +2019-09-11 17:30:00,25.0,0.516402116,28.17896781335686 +2019-09-11 17:45:00,25.0,0.54021164,28.177583512918066 +2019-09-11 18:00:00,25.0,0.535978836,28.17619880377113 +2019-09-11 18:15:00,25.0,0.566137566,28.174813686094154 +2019-09-11 18:30:00,25.0,0.565079365,28.173428160065306 +2019-09-11 18:45:00,25.0,0.57037037,28.172042225862775 +2019-09-11 19:00:00,25.0,0.564550265,28.17065588366484 +2019-09-11 19:15:00,25.0,0.521693122,28.16926913364981 +2019-09-11 19:30:00,25.0,0.483068783,28.167881975996046 +2019-09-11 19:45:00,25.0,0.486243386,28.166494410881977 +2019-09-11 20:00:00,25.0,0.474074074,28.16510643848607 +2019-09-11 20:15:00,25.0,0.458730159,28.163718058986852 +2019-09-11 20:30:00,25.0,0.451851852,28.162329272562896 +2019-09-11 20:45:00,25.0,0.436507937,28.16094007939283 +2019-09-11 21:00:00,25.0,0.408994709,28.159550479655344 +2019-09-11 21:15:00,25.0,0.374074074,28.15816047352916 +2019-09-11 21:30:00,25.0,0.358201058,28.156770061193072 +2019-09-11 21:45:00,25.0,0.344444444,28.15537924282591 +2019-09-11 22:00:00,25.0,0.357142857,28.15398801860658 +2019-09-11 22:15:00,25.0,0.361904762,28.152596388714002 +2019-09-11 22:30:00,25.0,0.371957672,28.151204353327188 +2019-09-11 22:45:00,25.0,0.383597884,28.149811912625186 +2019-09-11 23:00:00,25.0,0.387830688,28.148419066787078 +2019-09-11 23:15:00,25.0,0.375661376,28.147025815992027 +2019-09-11 23:30:00,25.0,0.346560847,28.145632160419236 +2019-09-11 23:45:00,25.0,0.317989418,28.144238100247964 +2019-09-12 00:00:00,25.0,0.31005291,28.142843635657506 +2019-09-12 00:15:00,25.0,0.323809524,28.14144876682723 +2019-09-12 00:30:00,25.0,0.341269841,28.140053493936552 +2019-09-12 00:45:00,25.0,0.358201058,28.13865781716492 +2019-09-12 01:00:00,25.0,0.356084656,28.13726173669186 +2019-09-12 01:15:00,25.0,0.343915344,28.135865252696934 +2019-09-12 01:30:00,25.0,0.338624339,28.134468365359773 +2019-09-12 01:45:00,25.0,0.331216931,28.133071074860034 +2019-09-12 02:00:00,25.0,0.313756614,28.131673381377443 +2019-09-12 02:15:00,25.0,0.3,28.13027528509178 +2019-09-12 02:30:00,25.0,0.306878307,28.128876786182865 +2019-09-12 02:45:00,25.0,0.313756614,28.127477884830576 +2019-09-12 03:00:00,25.0,0.315873016,28.12607858121485 +2019-09-12 03:15:00,25.0,0.315873016,28.124678875515666 +2019-09-12 03:30:00,25.0,0.323809524,28.12327876791305 +2019-09-12 03:45:00,25.0,0.32962963,28.121878258587095 +2019-09-12 04:00:00,25.0,0.330687831,28.12047734771794 +2019-09-12 04:15:00,25.0,0.331746032,28.119076035485765 +2019-09-12 04:30:00,25.0,0.342328042,28.117674322070812 +2019-09-12 04:45:00,25.0,0.341269841,28.116272207653374 +2019-09-12 05:00:00,25.0,0.34973545,28.114869692413805 +2019-09-12 05:15:00,25.0,0.33968254,28.113466776532476 +2019-09-12 05:30:00,25.0,0.334391534,28.11206346018985 +2019-09-12 05:45:00,25.0,0.344973545,28.110659743566433 +2019-09-12 06:00:00,25.0,0.343915344,28.109255626842753 +2019-09-12 06:15:00,25.0,0.338095238,28.10785111019942 +2019-09-12 06:30:00,25.0,0.353439153,28.10644619381709 +2019-09-12 06:45:00,25.0,0.361375661,28.105040877876466 +2019-09-12 07:00:00,25.0,0.36984127,28.103635162558295 +2019-09-12 07:15:00,25.0,0.384126984,28.102229048043387 +2019-09-12 07:30:00,25.0,0.39047619,28.10082253451261 +2019-09-12 07:45:00,25.0,0.381481481,28.099415622146857 +2019-09-12 08:00:00,25.0,0.400529101,28.0980083111271 +2019-09-12 08:15:00,25.0,0.404232804,28.09660060163435 +2019-09-12 08:30:00,25.0,0.41957672,28.09519249384966 +2019-09-12 08:45:00,25.0,0.433333333,28.093783987954147 +2019-09-12 09:00:00,25.0,0.446560847,28.09237508412898 +2019-09-12 09:15:00,25.0,0.466666667,28.090965782555386 +2019-09-12 09:30:00,25.0,0.470899471,28.089556083414614 +2019-09-12 09:45:00,25.0,0.455555556,28.08814598688799 +2019-09-12 10:00:00,25.0,0.456613757,28.08673549315689 +2019-09-12 10:15:00,25.0,0.459259259,28.085324602402725 +2019-09-12 10:30:00,25.0,0.455026455,28.08391331480697 +2019-09-12 10:45:00,25.0,0.468783069,28.08250163055115 +2019-09-12 11:00:00,25.0,0.486243386,28.081089549816845 +2019-09-12 11:15:00,25.0,0.495767196,28.079677072785667 +2019-09-12 11:30:00,25.0,0.500529101,28.0782641996393 +2019-09-12 11:45:00,25.0,0.510582011,28.076850930559473 +2019-09-12 12:00:00,25.0,0.513227513,28.075437265727956 +2019-09-12 12:15:00,25.0,0.503703704,28.074023205326583 +2019-09-12 12:30:00,25.0,0.488359788,28.07260874953723 +2019-09-12 12:45:00,25.0,0.485185185,28.071193898541843 +2019-09-12 13:00:00,25.0,0.491534392,28.06977865252238 +2019-09-12 13:15:00,25.0,0.501058201,28.068363011660885 +2019-09-12 13:30:00,25.0,0.511111111,28.066946976139448 +2019-09-12 13:45:00,25.0,0.514285714,28.06553054614019 +2019-09-12 14:00:00,25.0,0.522222222,28.0641137218453 +2019-09-12 14:15:00,25.0,0.532804233,28.062696503437014 +2019-09-12 14:30:00,25.0,0.538624339,28.061278891097622 +2019-09-12 14:45:00,25.0,0.542857143,28.059860885009453 +2019-09-12 15:00:00,25.0,0.562962963,28.058442485354895 +2019-09-12 15:15:00,25.0,0.573015873,28.0570236923164 +2019-09-12 15:30:00,25.0,0.595767196,28.05560450607643 +2019-09-12 15:45:00,25.0,0.588359788,28.054184926817545 +2019-09-12 16:00:00,25.0,0.594708995,28.052764954722328 +2019-09-12 16:15:00,25.0,0.6,28.051344589973425 +2019-09-12 16:30:00,25.0,0.602116402,28.049923832753514 +2019-09-12 16:45:00,25.0,0.606878307,28.048502683245346 +2019-09-12 17:00:00,25.0,0.615873016,28.047081141631715 +2019-09-12 17:15:00,25.0,0.629100529,28.04565920809545 +2019-09-12 17:30:00,25.0,0.621693122,28.04423688281945 +2019-09-12 17:45:00,25.0,0.632275132,28.042814165986663 +2019-09-12 18:00:00,25.0,0.646560847,28.041391057780082 +2019-09-12 18:15:00,25.0,0.645502646,28.03996755838274 +2019-09-12 18:30:00,25.0,0.653439153,28.03854366797774 +2019-09-12 18:45:00,25.0,0.652910053,28.037119386748227 +2019-09-12 19:00:00,25.0,0.657671958,28.035694714877387 +2019-09-12 19:15:00,25.0,0.671428571,28.034269652548467 +2019-09-12 19:30:00,25.0,0.679365079,28.03284419994477 +2019-09-12 19:45:00,25.0,0.693650794,28.031418357249635 +2019-09-12 20:00:00,25.0,0.696825397,28.029992124646455 +2019-09-12 20:15:00,25.0,0.689417989,28.028565502318674 +2019-09-12 20:30:00,25.0,0.677777778,28.0271384904498 +2019-09-12 20:45:00,25.0,0.67037037,28.025711089223364 +2019-09-12 21:00:00,25.0,0.673015873,28.024283298822965 +2019-09-12 21:15:00,25.0,0.668783069,28.02285511943225 +2019-09-12 21:30:00,25.0,0.67989418,28.021426551234928 +2019-09-12 21:45:00,25.0,0.694179894,28.019997594414722 +2019-09-12 22:00:00,25.0,0.701587302,28.01856824915544 +2019-09-12 22:15:00,25.0,0.723280423,28.01713851564093 +2019-09-12 22:30:00,25.0,0.722751323,28.01570839405508 +2019-09-12 22:45:00,25.0,0.731746032,28.014277884581837 +2019-09-12 23:00:00,25.0,0.732804233,28.0128469874052 +2019-09-12 23:15:00,25.0,0.698412698,28.01141570270922 +2019-09-12 23:30:00,25.0,0.68994709,28.009984030677977 +2019-09-12 23:45:00,25.0,0.687301587,28.008551971495624 +2019-09-13 00:00:00,25.0,0.681481481,28.00711952534636 +2019-09-13 00:15:00,25.0,0.688888889,28.005686692414425 +2019-09-13 00:30:00,25.0,0.697883598,28.00425347288411 +2019-09-13 00:45:00,25.0,0.691005291,28.002819866939763 +2019-09-13 01:00:00,25.0,0.677777778,28.001385874765784 +2019-09-13 01:15:00,25.0,0.668253968,27.9999514965466 +2019-09-13 01:30:00,25.0,0.665079365,27.99851673246672 +2019-09-13 01:45:00,25.0,0.665608466,27.997081582710685 +2019-09-13 02:00:00,25.0,0.668253968,27.995646047463072 +2019-09-13 02:15:00,25.0,0.65978836,27.994210126908538 +2019-09-13 02:30:00,25.0,0.657142857,27.992773821231776 +2019-09-13 02:45:00,25.0,0.646031746,27.991337130617513 +2019-09-13 03:00:00,25.0,0.623809524,27.989900055250548 +2019-09-13 03:15:00,25.0,0.625396825,27.98846259531572 +2019-09-13 03:30:00,25.0,0.630687831,27.987024750997925 +2019-09-13 03:45:00,25.0,0.658201058,27.98558652248209 +2019-09-13 04:00:00,25.0,0.673015873,27.98414790995321 +2019-09-13 04:15:00,25.0,0.641798942,27.98270891359633 +2019-09-13 04:30:00,25.0,0.644973545,27.981269533596517 +2019-09-13 04:45:00,25.0,0.654497354,27.97982977013892 +2019-09-13 05:00:00,25.0,0.655555556,27.978389623408727 +2019-09-13 05:15:00,25.0,0.644973545,27.976949093591177 +2019-09-13 05:30:00,25.0,0.616402116,27.975508180871536 +2019-09-13 05:45:00,25.0,0.607936508,27.97406688543515 +2019-09-13 06:00:00,25.0,0.58042328,27.97262520746741 +2019-09-13 06:15:00,25.0,0.543915344,27.97118314715373 +2019-09-13 06:30:00,25.0,0.514814815,27.969740704679598 +2019-09-13 06:45:00,25.0,0.53015873,27.968297880230548 +2019-09-13 07:00:00,25.0,0.537566138,27.96685467399216 +2019-09-13 07:15:00,25.0,0.543915344,27.965411086150056 +2019-09-13 07:30:00,25.0,0.535978836,27.96396711688992 +2019-09-13 07:45:00,25.0,0.544973545,27.962522766397477 +2019-09-13 08:00:00,25.0,0.55026455,27.9610780348585 +2019-09-13 08:15:00,25.0,0.538095238,27.95963292245881 +2019-09-13 08:30:00,25.0,0.526984127,27.95818742938429 +2019-09-13 08:45:00,25.0,0.528042328,27.956741555820862 +2019-09-13 09:00:00,25.0,0.528042328,27.955295301954493 +2019-09-13 09:15:00,25.0,0.50952381,27.9538486679712 +2019-09-13 09:30:00,25.0,0.495238095,27.952401654057066 +2019-09-13 09:45:00,25.0,0.495767196,27.950954260398195 +2019-09-13 10:00:00,25.0,0.508465608,27.949506487180756 +2019-09-13 10:15:00,25.0,0.494708995,27.94805833459097 +2019-09-13 10:30:00,25.0,0.47037037,27.94660980281511 +2019-09-13 10:45:00,25.0,0.452910053,27.94516089203947 +2019-09-13 11:00:00,25.0,0.439153439,27.943711602450424 +2019-09-13 11:15:00,25.0,0.414285714,27.942261934234388 +2019-09-13 11:30:00,25.0,0.419047619,27.94081188757781 +2019-09-13 11:45:00,25.0,0.432275132,27.939361462667197 +2019-09-13 12:00:00,25.0,0.434920635,27.937910659689116 +2019-09-13 12:15:00,25.0,0.43015873,27.936459478830173 +2019-09-13 12:30:00,25.0,0.426455026,27.935007920277016 +2019-09-13 12:45:00,25.0,0.424338624,27.933555984216344 +2019-09-13 13:00:00,25.0,0.418518519,27.932103670834923 +2019-09-13 13:15:00,25.0,0.418518519,27.93065098031954 +2019-09-13 13:30:00,25.0,0.415343915,27.929197912857045 +2019-09-13 13:45:00,25.0,0.414285714,27.927744468634337 +2019-09-13 14:00:00,25.0,0.416402116,27.92629064783837 +2019-09-13 14:15:00,25.0,0.41005291,27.924836450656123 +2019-09-13 14:30:00,25.0,0.388359788,27.923381877274643 +2019-09-13 14:45:00,25.0,0.379365079,27.92192692788103 +2019-09-13 15:00:00,25.0,0.376190476,27.92047160266241 +2019-09-13 15:15:00,25.0,0.375661376,27.919015901805977 +2019-09-13 15:30:00,25.0,0.384656085,27.917559825498962 +2019-09-13 15:45:00,25.0,0.386243386,27.91610337392866 +2019-09-13 16:00:00,25.0,0.379365079,27.914646547282388 +2019-09-13 16:15:00,25.0,0.375661376,27.913189345747533 +2019-09-13 16:30:00,25.0,0.362433862,27.911731769511533 +2019-09-13 16:45:00,25.0,0.353968254,27.91027381876185 +2019-09-13 17:00:00,25.0,0.355026455,27.908815493686014 +2019-09-13 17:15:00,25.0,0.373015873,27.907356794471596 +2019-09-13 17:30:00,25.0,0.375132275,27.905897721306232 +2019-09-13 17:45:00,25.0,0.370899471,27.904438274377572 +2019-09-13 18:00:00,25.0,0.367195767,27.90297845387334 +2019-09-13 18:15:00,25.0,0.345502646,27.901518259981312 +2019-09-13 18:30:00,25.0,0.331746032,27.900057692889284 +2019-09-13 18:45:00,25.0,0.32962963,27.898596752785128 +2019-09-13 19:00:00,25.0,0.319047619,27.897135439856747 +2019-09-13 19:15:00,25.0,0.319047619,27.895673754292115 +2019-09-13 19:30:00,25.0,0.316402116,27.894211696279214 +2019-09-13 19:45:00,25.0,0.293121693,27.892749266006113 +2019-09-13 20:00:00,25.0,0.27037037,27.89128646366091 +2019-09-13 20:15:00,25.0,0.260846561,27.88982328943175 +2019-09-13 20:30:00,25.0,0.256613757,27.888359743506832 +2019-09-13 20:45:00,25.0,0.244973545,27.886895826074408 +2019-09-13 21:00:00,25.0,0.241269841,27.885431537322756 +2019-09-13 21:15:00,25.0,0.248148148,27.883966877440223 +2019-09-13 21:30:00,25.0,0.253968254,27.8825018466152 +2019-09-13 21:45:00,25.0,0.261375661,27.881036445036127 +2019-09-13 22:00:00,25.0,0.270899471,27.879570672891475 +2019-09-13 22:15:00,25.0,0.266666667,27.87810453036978 +2019-09-13 22:30:00,25.0,0.251851852,27.876638017659626 +2019-09-13 22:45:00,25.0,0.22962963,27.87517113494963 +2019-09-13 23:00:00,25.0,0.218518519,27.87370388242847 +2019-09-13 23:15:00,25.0,0.206878307,27.87223626028487 +2019-09-13 23:30:00,25.0,0.198941799,27.8707682687076 +2019-09-13 23:45:00,25.0,0.191534392,27.86929990788547 +2019-09-14 00:00:00,25.0,0.17989418,27.867831178007343 +2019-09-14 00:15:00,25.0,0.16984127,27.866362079262146 +2019-09-14 00:30:00,25.0,0.166666667,27.86489261183882 +2019-09-14 00:45:00,25.0,0.16031746,27.863422775926374 +2019-09-14 01:00:00,25.0,0.152910053,27.861952571713868 +2019-09-14 01:15:00,25.0,0.151322751,27.86048199939041 +2019-09-14 01:30:00,25.0,0.143386243,27.85901105914513 +2019-09-14 01:45:00,25.0,0.126455026,27.85753975116723 +2019-09-14 02:00:00,25.0,0.116931217,27.856068075645968 +2019-09-14 02:15:00,25.0,0.116931217,27.854596032770615 +2019-09-14 02:30:00,25.0,0.117989418,27.853123622730514 +2019-09-14 02:45:00,25.0,0.11957672,27.85165084571505 +2019-09-14 03:00:00,25.0,0.126455026,27.850177701913665 +2019-09-14 03:15:00,25.0,0.12962963,27.848704191515825 +2019-09-14 03:30:00,25.0,0.126984127,27.84723031471106 +2019-09-14 03:45:00,25.0,0.124338624,27.84575607168895 +2019-09-14 04:00:00,25.0,0.124867725,27.844281462639103 +2019-09-14 04:15:00,25.0,0.124867725,27.842806487751194 +2019-09-14 04:30:00,25.0,0.123809524,27.841331147214937 +2019-09-14 04:45:00,25.0,0.124338624,27.839855441220106 +2019-09-14 05:00:00,25.0,0.131746032,27.838379369956485 +2019-09-14 05:15:00,25.0,0.12962963,27.836902933613946 +2019-09-14 05:30:00,25.0,0.123280423,27.83542613238239 +2019-09-14 05:45:00,25.0,0.115873016,27.833948966451764 +2019-09-14 06:00:00,25.0,0.110582011,27.832471436012064 +2019-09-14 06:15:00,25.0,0.105291005,27.83099354125333 +2019-09-14 06:30:00,25.0,0.101058201,27.82951528236567 +2019-09-14 06:45:00,25.0,0.103703704,27.828036659539197 +2019-09-14 07:00:00,25.0,0.099470899,27.826557672964107 +2019-09-14 07:15:00,25.0,0.096296296,27.825078322830638 +2019-09-14 07:30:00,25.0,0.097883598,27.82359860932905 +2019-09-14 07:45:00,25.0,0.096825397,27.82211853264968 +2019-09-14 08:00:00,25.0,0.098941799,27.82063809298289 +2019-09-14 08:15:00,25.0,0.103174603,27.81915729051911 +2019-09-14 08:30:00,25.0,0.097354497,27.81767612544879 +2019-09-14 08:45:00,25.0,0.101587302,27.81619459796245 +2019-09-14 09:00:00,25.0,0.110582011,27.814712708250653 +2019-09-14 09:15:00,25.0,0.116402116,27.813230456503987 +2019-09-14 09:30:00,25.0,0.116402116,27.81174784291311 +2019-09-14 09:45:00,25.0,0.12010582,27.81026486766872 +2019-09-14 10:00:00,25.0,0.126984127,27.808781530961568 +2019-09-14 10:15:00,25.0,0.135449735,27.80729783298243 +2019-09-14 10:30:00,25.0,0.144973545,27.805813773922154 +2019-09-14 10:45:00,25.0,0.148148148,27.80432935397162 +2019-09-14 11:00:00,25.0,0.14973545,27.802844573321753 +2019-09-14 11:15:00,25.0,0.150793651,27.80135943216353 +2019-09-14 11:30:00,25.0,0.154497354,27.799873930687976 +2019-09-14 11:45:00,25.0,0.165079365,27.798388069086165 +2019-09-14 12:00:00,25.0,0.177248677,27.796901847549204 +2019-09-14 12:15:00,25.0,0.193121693,27.795415266268254 +2019-09-14 12:30:00,25.0,0.211111111,27.79392832543453 +2019-09-14 12:45:00,25.0,0.224867725,27.792441025239274 +2019-09-14 13:00:00,25.0,0.237037037,27.790953365873794 +2019-09-14 13:15:00,25.0,0.244444444,27.789465347529436 +2019-09-14 13:30:00,25.0,0.242328042,27.787976970397597 +2019-09-14 13:45:00,25.0,0.247089947,27.7864882346697 +2019-09-14 14:00:00,25.0,0.256084656,27.784999140537245 +2019-09-14 14:15:00,25.0,0.261375661,27.78350968819176 +2019-09-14 14:30:00,25.0,0.264021164,27.782019877824812 +2019-09-14 14:45:00,25.0,0.28042328,27.780529709628034 +2019-09-14 15:00:00,25.0,0.284126984,27.779039183793095 +2019-09-14 15:15:00,25.0,0.288359788,27.7775483005117 +2019-09-14 15:30:00,25.0,0.293650794,27.77605705997562 +2019-09-14 15:45:00,25.0,0.292592593,27.774565462376653 +2019-09-14 16:00:00,25.0,0.296825397,27.77307350790667 +2019-09-14 16:15:00,25.0,0.31005291,27.771581196757545 +2019-09-14 16:30:00,25.0,0.316931217,27.770088529121235 +2019-09-14 16:45:00,25.0,0.325925926,27.768595505189737 +2019-09-14 17:00:00,25.0,0.330687831,27.767102125155073 +2019-09-14 17:15:00,25.0,0.331216931,27.76560838920933 +2019-09-14 17:30:00,25.0,0.335449735,27.76411429754464 +2019-09-14 17:45:00,25.0,0.340740741,27.76261985035318 +2019-09-14 18:00:00,25.0,0.342857143,27.761125047827157 +2019-09-14 18:15:00,25.0,0.356084656,27.759629890158838 +2019-09-14 18:30:00,25.0,0.362433862,27.75813437754055 +2019-09-14 18:45:00,25.0,0.38042328,27.756638510164628 +2019-09-14 19:00:00,25.0,0.38994709,27.75514228822348 +2019-09-14 19:15:00,25.0,0.396296296,27.753645711909563 +2019-09-14 19:30:00,25.0,0.401587302,27.752148781415364 +2019-09-14 19:45:00,25.0,0.424867725,27.75065149693342 +2019-09-14 20:00:00,25.0,0.451851852,27.749153858656314 +2019-09-14 20:15:00,25.0,0.472486772,27.747655866776686 +2019-09-14 20:30:00,25.0,0.505291005,27.746157521487195 +2019-09-14 20:45:00,25.0,0.553968254,27.744658822980572 +2019-09-14 21:00:00,25.0,0.593650794,27.743159771449577 +2019-09-14 21:15:00,25.0,0.618518519,27.741660367087036 +2019-09-14 21:30:00,25.0,0.616402116,27.740160610085788 +2019-09-14 21:45:00,25.0,0.628571429,27.738660500638744 +2019-09-14 22:00:00,25.0,0.64973545,27.737160038938857 +2019-09-14 22:15:00,25.0,0.663492063,27.735659225179102 +2019-09-14 22:30:00,25.0,0.688359788,27.73415805955253 +2019-09-14 22:45:00,25.0,0.708994709,27.732656542252226 +2019-09-14 23:00:00,25.0,0.717989418,27.73115467347132 +2019-09-14 23:15:00,25.0,0.726455026,27.729652453402974 +2019-09-14 23:30:00,25.0,0.736507937,27.728149882240412 +2019-09-14 23:45:00,25.0,0.746560847,27.72664696017691 +2019-09-15 00:00:00,25.0,0.752380952,27.72514368740576 +2019-09-15 00:15:00,25.0,0.752910053,27.723640064120325 +2019-09-15 00:30:00,25.0,0.753439153,27.722136090514002 +2019-09-15 00:45:00,25.0,0.753439153,27.720631766780244 +2019-09-15 01:00:00,25.0,0.755026455,27.719127093112526 +2019-09-15 01:15:00,25.0,0.765079365,27.717622069704394 +2019-09-15 01:30:00,25.0,0.766666667,27.716116696749427 +2019-09-15 01:45:00,25.0,0.752380952,27.714610974441243 +2019-09-15 02:00:00,25.0,0.753968254,27.713104902973512 +2019-09-15 02:15:00,25.0,0.72962963,27.71159848253995 +2019-09-15 02:30:00,25.0,0.715873016,27.71009171333433 +2019-09-15 02:45:00,25.0,0.717460317,27.70858459555043 +2019-09-15 03:00:00,25.0,0.718518519,27.707077129382117 +2019-09-15 03:15:00,25.0,0.700529101,27.705569315023286 +2019-09-15 03:30:00,25.0,0.678306878,27.704061152667865 +2019-09-15 03:45:00,25.0,0.679365079,27.70255264250984 +2019-09-15 04:00:00,25.0,0.682010582,27.70104378474324 +2019-09-15 04:15:00,25.0,0.682539683,27.69953457956215 +2019-09-15 04:30:00,25.0,0.682539683,27.698025027160668 +2019-09-15 04:45:00,25.0,0.682539683,27.696515127732965 +2019-09-15 05:00:00,25.0,0.683068783,27.695004881473256 +2019-09-15 05:15:00,25.0,0.663492063,27.693494288575778 +2019-09-15 05:30:00,25.0,0.601058201,27.691983349234828 +2019-09-15 05:45:00,25.0,0.577248677,27.690472063644755 +2019-09-15 06:00:00,25.0,0.577248677,27.688960431999945 +2019-09-15 06:15:00,25.0,0.576719577,27.68744845449482 +2019-09-15 06:30:00,25.0,0.577248677,27.685936131323853 +2019-09-15 06:45:00,25.0,0.578306878,27.684423462681576 +2019-09-15 07:00:00,25.0,0.577777778,27.682910448762534 +2019-09-15 07:15:00,25.0,0.578306878,27.681397089761344 +2019-09-15 07:30:00,25.0,0.575661376,27.679883385872657 +2019-09-15 07:45:00,25.0,0.574603175,27.678369337291173 +2019-09-15 08:00:00,25.0,0.575661376,27.676854944211623 +2019-09-15 08:15:00,25.0,0.576719577,27.675340206828796 +2019-09-15 08:30:00,25.0,0.575661376,27.673825125337533 +2019-09-15 08:45:00,25.0,0.576190476,27.672309699932683 +2019-09-15 09:00:00,25.0,0.575661376,27.670793930809182 +2019-09-15 09:15:00,25.0,0.575132275,27.66927781816199 +2019-09-15 09:30:00,25.0,0.573544974,27.667761362186102 +2019-09-15 09:45:00,25.0,0.574603175,27.666244563076578 +2019-09-15 10:00:00,25.0,0.571957672,27.66472742102851 +2019-09-15 10:15:00,25.0,0.57037037,27.663209936237042 +2019-09-15 10:30:00,25.0,0.571428571,27.66169210889734 +2019-09-15 10:45:00,25.0,0.567195767,27.660173939204643 +2019-09-15 11:00:00,25.0,0.566666667,27.65865542735423 +2019-09-15 11:15:00,25.0,0.564021164,27.657136573541393 +2019-09-15 11:30:00,25.0,0.557671958,27.655617377961505 +2019-09-15 11:45:00,25.0,0.555026455,27.654097840809964 +2019-09-15 12:00:00,25.0,0.551322751,27.652577962282226 +2019-09-15 12:15:00,25.0,0.548677249,27.65105774257377 +2019-09-15 12:30:00,25.0,0.552380952,27.649537181880127 +2019-09-15 12:45:00,25.0,0.556613757,27.648016280396895 +2019-09-15 13:00:00,25.0,0.556084656,27.64649503831967 +2019-09-15 13:15:00,25.0,0.555026455,27.644973455844134 +2019-09-15 13:30:00,25.0,0.552910053,27.64345153316599 +2019-09-15 13:45:00,25.0,0.54973545,27.641929270481004 +2019-09-15 14:00:00,25.0,0.553968254,27.64040666798495 +2019-09-15 14:15:00,25.0,0.554497354,27.63888372587369 +2019-09-15 14:30:00,25.0,0.549206349,27.637360444343102 +2019-09-15 14:45:00,25.0,0.525396825,27.635836823589102 +2019-09-15 15:00:00,25.0,0.535978836,27.634312863807676 +2019-09-15 15:15:00,25.0,0.584126984,27.632788565194833 +2019-09-15 15:30:00,25.0,0.587301587,27.63126392794664 +2019-09-15 15:45:00,25.0,0.575132275,27.62973895225919 +2019-09-15 16:00:00,25.0,0.570899471,27.628213638328624 +2019-09-15 16:15:00,25.0,0.585714286,27.626687986351154 +2019-09-15 16:30:00,25.0,0.6,27.625161996522987 +2019-09-15 16:45:00,25.0,0.58994709,27.62363566904041 +2019-09-15 17:00:00,25.0,0.566137566,27.622109004099745 +2019-09-15 17:15:00,25.0,0.555026455,27.62058200189736 +2019-09-15 17:30:00,25.0,0.565079365,27.619054662629647 +2019-09-15 17:45:00,25.0,0.584656085,27.617526986493065 +2019-09-15 18:00:00,25.0,0.586243386,27.61599897368411 +2019-09-15 18:15:00,25.0,0.57989418,27.61447062439931 +2019-09-15 18:30:00,25.0,0.557142857,27.61294193883525 +2019-09-15 18:45:00,25.0,0.529100529,27.611412917188552 +2019-09-15 19:00:00,25.0,0.525925926,27.60988355965589 +2019-09-15 19:15:00,25.0,0.52962963,27.60835386643396 +2019-09-15 19:30:00,25.0,0.520634921,27.606823837719517 +2019-09-15 19:45:00,25.0,0.521164021,27.605293473709374 +2019-09-15 20:00:00,25.0,0.516931217,27.603762774600344 +2019-09-15 20:15:00,25.0,0.527513228,27.602231740589325 +2019-09-15 20:30:00,25.0,0.534391534,27.600700371873238 +2019-09-15 20:45:00,25.0,0.544973545,27.59916866864906 +2019-09-15 21:00:00,25.0,0.536507937,27.597636631113787 +2019-09-15 21:15:00,25.0,0.525925926,27.596104259464482 +2019-09-15 21:30:00,25.0,0.515343915,27.594571553898245 +2019-09-15 21:45:00,25.0,0.496825397,27.593038514612207 +2019-09-15 22:00:00,25.0,0.495238095,27.591505141803555 +2019-09-15 22:15:00,25.0,0.483597884,27.589971435669515 +2019-09-15 22:30:00,25.0,0.476190476,27.588437396407365 +2019-09-15 22:45:00,25.0,0.461904762,27.5869030242144 +2019-09-15 23:00:00,25.0,0.451851852,27.585368319287987 +2019-09-15 23:15:00,25.0,0.43968254,27.583833281825523 +2019-09-15 23:30:00,25.0,0.428042328,27.582297912024437 +2019-09-15 23:45:00,25.0,0.414285714,27.58076221008222 +2019-09-16 00:00:00,25.0,0.408994709,27.579226176196396 +2019-09-16 00:15:00,25.0,0.406349206,27.577689810564543 +2019-09-16 00:30:00,25.0,0.403703704,27.57615311338425 +2019-09-16 00:45:00,25.0,0.401587302,27.57461608485319 +2019-09-16 01:00:00,25.0,0.405291005,27.573078725169058 +2019-09-16 01:15:00,25.0,0.407407407,27.571541034529577 +2019-09-16 01:30:00,25.0,0.404232804,27.570003013132542 +2019-09-16 01:45:00,25.0,0.386243386,27.56846466117578 +2019-09-16 02:00:00,25.0,0.368783069,27.566925978857142 +2019-09-16 02:15:00,25.0,0.36031746,27.565386966374547 +2019-09-16 02:30:00,25.0,0.360846561,27.563847623925945 +2019-09-16 02:45:00,25.0,0.359259259,27.562307951709336 +2019-09-16 03:00:00,25.0,0.350793651,27.560767949922745 +2019-09-16 03:15:00,25.0,0.346560847,27.559227618764254 +2019-09-16 03:30:00,25.0,0.340740741,27.557686958431994 +2019-09-16 03:45:00,25.0,0.338624339,27.556145969124113 +2019-09-16 04:00:00,25.0,0.334391534,27.554604651038822 +2019-09-16 04:15:00,25.0,0.328571429,27.553063004374373 +2019-09-16 04:30:00,25.0,0.322222222,27.551521029329056 +2019-09-16 04:45:00,25.0,0.313756614,27.549978726101198 +2019-09-16 05:00:00,25.0,0.305291005,27.548436094889173 +2019-09-16 05:15:00,25.0,0.301058201,27.546893135891413 +2019-09-16 05:30:00,25.0,0.300529101,27.545349849306355 +2019-09-16 05:45:00,25.0,0.294708995,27.54380623533251 +2019-09-16 06:00:00,25.0,0.294708995,27.542262294168424 +2019-09-16 06:15:00,25.0,0.308994709,27.540718026012687 +2019-09-16 06:30:00,25.0,0.312169312,27.53917343106391 +2019-09-16 06:45:00,25.0,0.315343915,27.537628509520772 +2019-09-16 07:00:00,25.0,0.321693122,27.536083261581993 +2019-09-16 07:15:00,25.0,0.324338624,27.53453768744631 +2019-09-16 07:30:00,25.0,0.332275132,27.532991787312525 +2019-09-16 07:45:00,25.0,0.336507937,27.531445561379474 +2019-09-16 08:00:00,25.0,0.334391534,27.529899009846048 +2019-09-16 08:15:00,25.0,0.346560847,27.52835213291115 +2019-09-16 08:30:00,25.0,0.33968254,27.52680493077375 +2019-09-16 08:45:00,25.0,0.310582011,27.525257403632864 +2019-09-16 09:00:00,25.0,0.284656085,27.523709551687517 +2019-09-16 09:15:00,25.0,0.274074074,27.52216137513681 +2019-09-16 09:30:00,25.0,0.266666667,27.520612874179875 +2019-09-16 09:45:00,25.0,0.257671958,27.519064049015885 +2019-09-16 10:00:00,25.0,0.24973545,27.51751489984404 +2019-09-16 10:15:00,25.0,0.240740741,27.515965426863605 +2019-09-16 10:30:00,25.0,0.238095238,27.514415630273884 +2019-09-16 10:45:00,25.0,0.231746032,27.5128655102742 +2019-09-16 11:00:00,25.0,0.233862434,27.51131506706394 +2019-09-16 11:15:00,25.0,0.241798942,27.509764300842527 +2019-09-16 11:30:00,25.0,0.243386243,27.50821321180943 +2019-09-16 11:45:00,25.0,0.258201058,27.50666180016414 +2019-09-16 12:00:00,25.0,0.275132275,27.505110066106205 +2019-09-16 12:15:00,25.0,0.25978836,27.503558009835228 +2019-09-16 12:30:00,25.0,0.252380952,27.502005631550823 +2019-09-16 12:45:00,25.0,0.250793651,27.50045293145266 +2019-09-16 13:00:00,25.0,0.255026455,27.49889990974046 +2019-09-16 13:15:00,25.0,0.266137566,27.497346566613977 +2019-09-16 13:30:00,25.0,0.283597884,27.495792902272992 +2019-09-16 13:45:00,25.0,0.312169312,27.494238916917354 +2019-09-16 14:00:00,25.0,0.316931217,27.492684610746938 +2019-09-16 14:15:00,25.0,0.331216931,27.491129983961656 +2019-09-16 14:30:00,25.0,0.338095238,27.489575036761472 +2019-09-16 14:45:00,25.0,0.343915344,27.488019769346387 +2019-09-16 15:00:00,25.0,0.342328042,27.48646418191645 +2019-09-16 15:15:00,25.0,0.339153439,27.48490827467173 +2019-09-16 15:30:00,25.0,0.340740741,27.483352047812357 +2019-09-16 15:45:00,25.0,0.353439153,27.481795501538507 +2019-09-16 16:00:00,25.0,0.365079365,27.48023863605037 +2019-09-16 16:15:00,25.0,0.362962963,27.4786814515482 +2019-09-16 16:30:00,25.0,0.368783069,27.47712394823229 +2019-09-16 16:45:00,25.0,0.387830688,27.475566126302972 +2019-09-16 17:00:00,25.0,0.394179894,27.474007985960604 +2019-09-16 17:15:00,25.0,0.414814815,27.472449527405608 +2019-09-16 17:30:00,25.0,0.408465608,27.470890750838436 +2019-09-16 17:45:00,25.0,0.394179894,27.469331656459573 +2019-09-16 18:00:00,25.0,0.400529101,27.46777224446956 +2019-09-16 18:15:00,25.0,0.404761905,27.466212515068975 +2019-09-16 18:30:00,25.0,0.403703704,27.464652468458432 +2019-09-16 18:45:00,25.0,0.420634921,27.46309210483858 +2019-09-16 19:00:00,25.0,0.449206349,27.461531424410126 +2019-09-16 19:15:00,25.0,0.473544974,27.45997042737381 +2019-09-16 19:30:00,25.0,0.480952381,27.4584091139304 +2019-09-16 19:45:00,25.0,0.486772487,27.456847484280722 +2019-09-16 20:00:00,25.0,0.504232804,27.455285538625642 +2019-09-16 20:15:00,25.0,0.517989418,27.45372327716605 +2019-09-16 20:30:00,25.0,0.496296296,27.45216070010289 +2019-09-16 20:45:00,25.0,0.511111111,27.450597807637152 +2019-09-16 21:00:00,25.0,0.536507937,27.44903459996986 +2019-09-16 21:15:00,25.0,0.562433862,27.447471077302062 +2019-09-16 21:30:00,25.0,0.580952381,27.445907239834874 +2019-09-16 21:45:00,25.0,0.58994709,27.444343087769443 +2019-09-16 22:00:00,25.0,0.567724868,27.442778621306942 +2019-09-16 22:15:00,25.0,0.573544974,27.441213840648604 +2019-09-16 22:30:00,25.0,0.598941799,27.439648745995697 +2019-09-16 22:45:00,25.0,0.591534392,27.43808333754953 +2019-09-16 23:00:00,25.0,0.566137566,27.43651761551143 +2019-09-16 23:15:00,25.0,0.537037037,27.434951580082803 +2019-09-16 23:30:00,25.0,0.573544974,27.433385231465074 +2019-09-16 23:45:00,25.0,0.635449735,27.4318185698597 +2019-09-17 00:00:00,25.0,0.631746032,27.4302515954682 +2019-09-17 00:15:00,25.0,0.680952381,27.428684308492112 +2019-09-17 00:30:00,25.0,0.66031746,27.42711670913304 +2019-09-17 00:45:00,25.0,0.638624339,27.42554879759259 +2019-09-17 01:00:00,25.0,0.668783069,27.423980574072445 +2019-09-17 01:15:00,25.0,0.697354497,27.422412038774315 +2019-09-17 01:30:00,25.0,0.704232804,27.420843191899937 +2019-09-17 01:45:00,25.0,0.693121693,27.41927403365111 +2019-09-17 02:00:00,25.0,0.686772487,27.41770456422966 +2019-09-17 02:15:00,25.0,0.707407407,27.416134783837457 +2019-09-17 02:30:00,25.0,0.735978836,27.414564692676404 +2019-09-17 02:45:00,25.0,0.731216931,27.412994290948454 +2019-09-17 03:00:00,25.0,0.732804233,27.411423578855604 +2019-09-17 03:15:00,25.0,0.736507937,27.409852556599866 +2019-09-17 03:30:00,25.0,0.711111111,27.408281224383316 +2019-09-17 03:45:00,25.0,0.723280423,27.406709582408062 +2019-09-17 04:00:00,25.0,0.737566138,27.405137630876265 +2019-09-17 04:15:00,25.0,0.743386243,27.40356536999009 +2019-09-17 04:30:00,25.0,0.721693122,27.401992799951778 +2019-09-17 04:45:00,25.0,0.707407407,27.4004199209636 +2019-09-17 05:00:00,25.0,0.658730159,27.398846733227852 +2019-09-17 05:15:00,25.0,0.626984127,27.397273236946887 +2019-09-17 05:30:00,25.0,0.637037037,27.395699432323095 +2019-09-17 05:45:00,25.0,0.64021164,27.394125319558903 +2019-09-17 06:00:00,25.0,0.680952381,27.39255089885677 +2019-09-17 06:15:00,25.0,0.694179894,27.3909761704192 +2019-09-17 06:30:00,25.0,0.68994709,27.389401134448754 +2019-09-17 06:45:00,25.0,0.698941799,27.387825791147996 +2019-09-17 07:00:00,25.0,0.696296296,27.38625014071956 +2019-09-17 07:15:00,25.0,0.698412698,27.384674183366112 +2019-09-17 07:30:00,25.0,0.71005291,27.38309791929036 +2019-09-17 07:45:00,25.0,0.66984127,27.38152134869503 +2019-09-17 08:00:00,25.0,0.670899471,27.37994447178292 +2019-09-17 08:15:00,25.0,0.671428571,27.378367288756852 +2019-09-17 08:30:00,25.0,0.641798942,27.37678979981967 +2019-09-17 08:45:00,25.0,0.587301587,27.375212005174287 +2019-09-17 09:00:00,25.0,0.548677249,27.373633905023638 +2019-09-17 09:15:00,25.0,0.555555556,27.372055499570717 +2019-09-17 09:30:00,25.0,0.561375661,27.370476789018518 +2019-09-17 09:45:00,25.0,0.561904762,27.36889777357011 +2019-09-17 10:00:00,25.0,0.557671958,27.3673184534286 +2019-09-17 10:15:00,25.0,0.500529101,27.365738828797102 +2019-09-17 10:30:00,25.0,0.465079365,27.364158899878806 +2019-09-17 10:45:00,25.0,0.473544974,27.36257866687692 +2019-09-17 11:00:00,25.0,0.473015873,27.36099812999471 +2019-09-17 11:15:00,25.0,0.47037037,27.35941728943545 +2019-09-17 11:30:00,25.0,0.473544974,27.357836145402477 +2019-09-17 11:45:00,25.0,0.473544974,27.356254698099175 +2019-09-17 12:00:00,25.0,0.471957672,27.354672947728933 +2019-09-17 12:15:00,25.0,0.472486772,27.353090894495207 +2019-09-17 12:30:00,25.0,0.447089947,27.351508538601486 +2019-09-17 12:45:00,25.0,0.434920635,27.349925880251305 +2019-09-17 13:00:00,25.0,0.433333333,27.348342919648214 +2019-09-17 13:15:00,25.0,0.42962963,27.346759656995822 +2019-09-17 13:30:00,25.0,0.432275132,27.34517609249778 +2019-09-17 13:45:00,25.0,0.434391534,27.34359222635776 +2019-09-17 14:00:00,25.0,0.434391534,27.342008058779484 +2019-09-17 14:15:00,25.0,0.434391534,27.34042358996672 +2019-09-17 14:30:00,25.0,0.434391534,27.33883882012325 +2019-09-17 14:45:00,25.0,0.434391534,27.33725374945292 +2019-09-17 15:00:00,25.0,0.434391534,27.335668378159607 +2019-09-17 15:15:00,25.0,0.434391534,27.33408270644723 +2019-09-17 15:30:00,25.0,0.433333333,27.332496734519726 +2019-09-17 15:45:00,25.0,0.42962963,27.330910462581098 +2019-09-17 16:00:00,25.0,0.423280423,27.32932389083538 +2019-09-17 16:15:00,25.0,0.422751323,27.327737019486626 +2019-09-17 16:30:00,25.0,0.427513228,27.32614984873895 +2019-09-17 16:45:00,25.0,0.430687831,27.3245623787965 +2019-09-17 17:00:00,25.0,0.432804233,27.32297460986347 +2019-09-17 17:15:00,25.0,0.432804233,27.321386542144058 +2019-09-17 17:30:00,25.0,0.432804233,27.31979817584254 +2019-09-17 17:45:00,25.0,0.448148148,27.31820951116322 +2019-09-17 18:00:00,25.0,0.470899471,27.316620548310425 +2019-09-17 18:15:00,25.0,0.47037037,27.315031287488534 +2019-09-17 18:30:00,25.0,0.47037037,27.31344172890196 +2019-09-17 18:45:00,25.0,0.471428571,27.31185187275517 +2019-09-17 19:00:00,25.0,0.471428571,27.310261719252633 +2019-09-17 19:15:00,25.0,0.470899471,27.30867126859889 +2019-09-17 19:30:00,25.0,0.465079365,27.307080520998515 +2019-09-17 19:45:00,25.0,0.462433862,27.305489476656096 +2019-09-17 20:00:00,25.0,0.468253968,27.303898135776286 +2019-09-17 20:15:00,25.0,0.47037037,27.30230649856377 +2019-09-17 20:30:00,25.0,0.470899471,27.300714565223274 +2019-09-17 20:45:00,25.0,0.470899471,27.299122335959538 +2019-09-17 21:00:00,25.0,0.504761905,27.297529810977366 +2019-09-17 21:15:00,25.0,0.510582011,27.295936990481607 +2019-09-17 21:30:00,25.0,0.511111111,27.294343874677107 +2019-09-17 21:45:00,25.0,0.50952381,27.292750463768794 +2019-09-17 22:00:00,25.0,0.535978836,27.29115675796161 +2019-09-17 22:15:00,25.0,0.56031746,27.28956275746055 +2019-09-17 22:30:00,25.0,0.561375661,27.287968462470623 +2019-09-17 22:45:00,25.0,0.56031746,27.2863738731969 +2019-09-17 23:00:00,25.0,0.562433862,27.28477898984449 +2019-09-17 23:15:00,25.0,0.601587302,27.28318381261851 +2019-09-17 23:30:00,25.0,0.668783069,27.281588341724145 +2019-09-17 23:45:00,25.0,0.668783069,27.27999257736661 +2019-09-18 00:00:00,25.0,0.666666667,27.278396519751162 +2019-09-18 00:15:00,25.0,0.661904762,27.276800169083074 +2019-09-18 00:30:00,25.0,0.656613757,27.27520352556768 +2019-09-18 00:45:00,25.0,0.655555556,27.273606589410353 +2019-09-18 01:00:00,25.0,0.649206349,27.27200936081648 +2019-09-18 01:15:00,25.0,0.653439153,27.270411839991503 +2019-09-18 01:30:00,25.0,0.657671958,27.268814027140905 +2019-09-18 01:45:00,25.0,0.657142857,27.267215922470204 +2019-09-18 02:00:00,25.0,0.66984127,27.26561752618494 +2019-09-18 02:15:00,25.0,0.693650794,27.264018838490706 +2019-09-18 02:30:00,25.0,0.694708995,27.26241985959314 +2019-09-18 02:45:00,25.0,0.695238095,27.26082058969789 +2019-09-18 03:00:00,25.0,0.695767196,27.259221029010664 +2019-09-18 03:15:00,25.0,0.691534392,27.2576211777372 +2019-09-18 03:30:00,25.0,0.692063492,27.25602103608329 +2019-09-18 03:45:00,25.0,0.69047619,27.254420604254722 +2019-09-18 04:00:00,25.0,0.688888889,27.252819882457363 +2019-09-18 04:15:00,25.0,0.697354497,27.251218870897105 +2019-09-18 04:30:00,25.0,0.696296296,27.249617569779858 +2019-09-18 04:45:00,25.0,0.68994709,27.248015979311596 +2019-09-18 05:00:00,25.0,0.677248677,27.24641409969832 +2019-09-18 05:15:00,25.0,0.678835979,27.24481193114607 +2019-09-18 05:30:00,25.0,0.682539683,27.24320947386091 +2019-09-18 05:45:00,25.0,0.677777778,27.241606728048957 +2019-09-18 06:00:00,25.0,0.668783069,27.240003693916368 +2019-09-18 06:15:00,25.0,0.659259259,27.238400371669314 +2019-09-18 06:30:00,25.0,0.660846561,27.236796761514025 +2019-09-18 06:45:00,25.0,0.646560847,27.23519286365676 +2019-09-18 07:00:00,25.0,0.659259259,27.233588678303825 +2019-09-18 07:15:00,25.0,0.651322751,27.23198420566154 +2019-09-18 07:30:00,25.0,0.608994709,27.230379445936286 +2019-09-18 07:45:00,25.0,0.628042328,27.22877439933447 +2019-09-18 08:00:00,25.0,0.641798942,27.22716906606253 +2019-09-18 08:15:00,25.0,0.654497354,27.22556344632695 +2019-09-18 08:30:00,25.0,0.648148148,27.223957540334258 +2019-09-18 08:45:00,25.0,0.657142857,27.222351348290996 +2019-09-18 09:00:00,25.0,0.642857143,27.22074487040376 +2019-09-18 09:15:00,25.0,0.628042328,27.219138106879182 +2019-09-18 09:30:00,25.0,0.616931217,27.217531057923935 +2019-09-18 09:45:00,25.0,0.579365079,27.2159237237447 +2019-09-18 10:00:00,25.0,0.57037037,27.214316104548235 +2019-09-18 10:15:00,25.0,0.54973545,27.212708200541314 +2019-09-18 10:30:00,25.0,0.542328042,27.21110001193074 +2019-09-18 10:45:00,25.0,0.541269841,27.209491538923363 +2019-09-18 11:00:00,25.0,0.556613757,27.207882781726074 +2019-09-18 11:15:00,25.0,0.561375661,27.206273740545804 +2019-09-18 11:30:00,25.0,0.55026455,27.204664415589487 +2019-09-18 11:45:00,25.0,0.538624339,27.203054807064138 +2019-09-18 12:00:00,25.0,0.513756614,27.201444915176786 +2019-09-18 12:15:00,25.0,0.513756614,27.19983474013449 +2019-09-18 12:30:00,25.0,0.562433862,27.198224282144363 +2019-09-18 12:45:00,25.0,0.591005291,27.19661354141354 +2019-09-18 13:00:00,25.0,0.634391534,27.19500251814921 +2019-09-18 13:15:00,25.0,0.642328042,27.19339121255857 +2019-09-18 13:30:00,25.0,0.657142857,27.191779624848877 +2019-09-18 13:45:00,25.0,0.667195767,27.190167755227424 +2019-09-18 14:00:00,25.0,0.657142857,27.18855560390152 +2019-09-18 14:15:00,25.0,0.647089947,27.186943171078532 +2019-09-18 14:30:00,25.0,0.657671958,27.185330456965854 +2019-09-18 14:45:00,25.0,0.674074074,27.183717461770925 +2019-09-18 15:00:00,25.0,0.687301587,27.182104185701192 +2019-09-18 15:15:00,25.0,0.689417989,27.180490628964172 +2019-09-18 15:30:00,25.0,0.684126984,27.17887679176741 +2019-09-18 15:45:00,25.0,0.676719577,27.17726267431847 +2019-09-18 16:00:00,25.0,0.665079365,27.175648276824965 +2019-09-18 16:15:00,25.0,0.662433862,27.174033599494543 +2019-09-18 16:30:00,25.0,0.667195767,27.1724186425349 +2019-09-18 16:45:00,25.0,0.669312169,27.170803406153738 +2019-09-18 17:00:00,25.0,0.662433862,27.169187890558817 +2019-09-18 17:15:00,25.0,0.652910053,27.16757209595794 +2019-09-18 17:30:00,25.0,0.647619048,27.165956022558916 +2019-09-18 17:45:00,25.0,0.647619048,27.164339670569618 +2019-09-18 18:00:00,25.0,0.652380952,27.162723040197942 +2019-09-18 18:15:00,25.0,0.637037037,27.161106131651835 +2019-09-18 18:30:00,25.0,0.64021164,27.159488945139252 +2019-09-18 18:45:00,25.0,0.638095238,27.1578714808682 +2019-09-18 19:00:00,25.0,0.628042328,27.156253739046736 +2019-09-18 19:15:00,25.0,0.622222222,27.15463571988292 +2019-09-18 19:30:00,25.0,0.593650794,27.15301742358487 +2019-09-18 19:45:00,25.0,0.571428571,27.15139885036074 +2019-09-18 20:00:00,25.0,0.595767196,27.14978000041872 +2019-09-18 20:15:00,25.0,0.611111111,27.148160873967015 +2019-09-18 20:30:00,25.0,0.608465608,27.146541471213887 +2019-09-18 20:45:00,25.0,0.611111111,27.144921792367636 +2019-09-18 21:00:00,25.0,0.591534392,27.143301837636574 +2019-09-18 21:15:00,25.0,0.585714286,27.141681607229074 +2019-09-18 21:30:00,25.0,0.580952381,27.140061101353528 +2019-09-18 21:45:00,25.0,0.576719577,27.13844032021838 +2019-09-18 22:00:00,25.0,0.541798942,27.136819264032084 +2019-09-18 22:15:00,25.0,0.541269841,27.13519793300315 +2019-09-18 22:30:00,25.0,0.521693122,27.133576327340123 +2019-09-18 22:45:00,25.0,0.498412698,27.131954447251566 +2019-09-18 23:00:00,25.0,0.491005291,27.130332292946097 +2019-09-18 23:15:00,25.0,0.478835979,27.12870986463236 +2019-09-18 23:30:00,25.0,0.479365079,27.127087162519043 +2019-09-18 23:45:00,25.0,0.486772487,27.125464186814845 +2019-09-19 00:00:00,25.0,0.443915344,27.123840937728524 +2019-09-19 00:15:00,25.0,0.423809524,27.122217415468878 +2019-09-19 00:30:00,25.0,0.4,27.120593620244712 +2019-09-19 00:45:00,25.0,0.37989418,27.118969552264883 +2019-09-19 01:00:00,25.0,0.367195767,27.117345211738293 +2019-09-19 01:15:00,25.0,0.353439153,27.115720598873867 +2019-09-19 01:30:00,25.0,0.345502646,27.11409571388056 +2019-09-19 01:45:00,25.0,0.337037037,27.112470556967367 +2019-09-19 02:00:00,25.0,0.325396825,27.11084512834333 +2019-09-19 02:15:00,25.0,0.321693122,27.109219428217504 +2019-09-19 02:30:00,25.0,0.303703704,27.107593456798995 +2019-09-19 02:45:00,25.0,0.295767196,27.105967214296946 +2019-09-19 03:00:00,25.0,0.283068783,27.104340700920513 +2019-09-19 03:15:00,25.0,0.284126984,27.102713916878912 +2019-09-19 03:30:00,25.0,0.295238095,27.101086862381383 +2019-09-19 03:45:00,25.0,0.28994709,27.099459537637205 +2019-09-19 04:00:00,25.0,0.278306878,27.097831942855677 +2019-09-19 04:15:00,25.0,0.27989418,27.096204078246153 +2019-09-19 04:30:00,25.0,0.275661376,27.09457594401802 +2019-09-19 04:45:00,25.0,0.285185185,27.09294754038067 +2019-09-19 05:00:00,25.0,0.304232804,27.09131886754357 +2019-09-19 05:15:00,25.0,0.293121693,27.089689925716197 +2019-09-19 05:30:00,25.0,0.27989418,27.088060715108078 +2019-09-19 05:45:00,25.0,0.284126984,27.086431235928753 +2019-09-19 06:00:00,25.0,0.272486772,27.084801488387814 +2019-09-19 06:15:00,25.0,0.266666667,27.083171472694893 +2019-09-19 06:30:00,25.0,0.264550265,27.081541189059628 +2019-09-19 06:45:00,25.0,0.243386243,27.079910637691718 +2019-09-19 07:00:00,25.0,0.230687831,27.078279818800894 +2019-09-19 07:15:00,25.0,0.21957672,27.076648732596915 +2019-09-19 07:30:00,25.0,0.211640212,27.075017379289566 +2019-09-19 07:45:00,25.0,0.204761905,27.07338575908868 +2019-09-19 08:00:00,25.0,0.194179894,27.07175387220413 +2019-09-19 08:15:00,25.0,0.18042328,27.070121718845797 +2019-09-19 08:30:00,25.0,0.165608466,27.068489299223614 +2019-09-19 08:45:00,25.0,0.166137566,27.066856613547557 +2019-09-19 09:00:00,25.0,0.164021164,27.065223662027627 +2019-09-19 09:15:00,25.0,0.16031746,27.06359044487384 +2019-09-19 09:30:00,25.0,0.155555556,27.06195696229628 +2019-09-19 09:45:00,25.0,0.151322751,27.06032321450505 +2019-09-19 10:00:00,25.0,0.148148148,27.058689201710273 +2019-09-19 10:15:00,25.0,0.14973545,27.05705492412213 +2019-09-19 10:30:00,25.0,0.157671958,27.055420381950825 +2019-09-19 10:45:00,25.0,0.166137566,27.0537855754066 +2019-09-19 11:00:00,25.0,0.161375661,27.052150504699714 +2019-09-19 11:15:00,25.0,0.158730159,27.050515170040484 +2019-09-19 11:30:00,25.0,0.15026455,27.048879571639254 +2019-09-19 11:45:00,25.0,0.139153439,27.04724370970639 +2019-09-19 12:00:00,25.0,0.126984127,27.045607584452302 +2019-09-19 12:15:00,25.0,0.123280423,27.04397119608743 +2019-09-19 12:30:00,25.0,0.122222222,27.042334544822268 +2019-09-19 12:45:00,25.0,0.121164021,27.0406976308673 +2019-09-19 13:00:00,25.0,0.118518519,27.03906045443308 +2019-09-19 13:15:00,25.0,0.123280423,27.037423015730198 +2019-09-19 13:30:00,25.0,0.121693122,27.035785314969242 +2019-09-19 13:45:00,25.0,0.121164021,27.034147352360872 +2019-09-19 14:00:00,25.0,0.120634921,27.032509128115763 +2019-09-19 14:15:00,25.0,0.120634921,27.030870642444633 +2019-09-19 14:30:00,25.0,0.117989418,27.029231895558215 +2019-09-19 14:45:00,25.0,0.117989418,27.0275928876673 +2019-09-19 15:00:00,25.0,0.127513228,27.0259536189827 +2019-09-19 15:15:00,25.0,0.137037037,27.02431408971525 +2019-09-19 15:30:00,25.0,0.138095238,27.022674300075842 +2019-09-19 15:45:00,25.0,0.12962963,27.021034250275385 +2019-09-19 16:00:00,25.0,0.126455026,27.019393940524832 +2019-09-19 16:15:00,25.0,0.129100529,27.017753371035152 +2019-09-19 16:30:00,25.0,0.133333333,27.016112542017368 +2019-09-19 16:45:00,25.0,0.131746032,27.01447145368253 +2019-09-19 17:00:00,25.0,0.13968254,27.0128301062417 +2019-09-19 17:15:00,25.0,0.148677249,27.011188499906012 +2019-09-19 17:30:00,25.0,0.151322751,27.009546634886604 +2019-09-19 17:45:00,25.0,0.148677249,27.007904511394663 +2019-09-19 18:00:00,25.0,0.143386243,27.006262129641396 +2019-09-19 18:15:00,25.0,0.14021164,27.00461948983805 +2019-09-19 18:30:00,25.0,0.140740741,27.002976592195914 +2019-09-19 18:45:00,25.0,0.137566138,27.001333436926288 +2019-09-19 19:00:00,25.0,0.128571429,26.999690024240522 +2019-09-19 19:15:00,25.0,0.122751323,26.998046354350002 +2019-09-19 19:30:00,25.0,0.118518519,26.996402427466144 +2019-09-19 19:45:00,25.0,0.113227513,26.99475824380038 +2019-09-19 20:00:00,25.0,0.104761905,26.993113803564192 +2019-09-19 20:15:00,25.0,0.100529101,26.991469106969106 +2019-09-19 20:30:00,25.0,0.093121693,26.98982415422665 +2019-09-19 20:45:00,25.0,0.084656085,26.988178945548405 +2019-09-19 21:00:00,25.0,0.075132275,26.98653348114599 +2019-09-19 21:15:00,25.0,0.067724868,26.98488776123104 +2019-09-19 21:30:00,25.0,0.06031746,26.98324178601523 +2019-09-19 21:45:00,25.0,0.059259259,26.981595555710275 +2019-09-19 22:00:00,25.0,0.055026455,26.979949070527923 +2019-09-19 22:15:00,25.0,0.049206349,26.97830233067993 +2019-09-19 22:30:00,25.0,0.048148148,26.976655336378116 +2019-09-19 22:45:00,25.0,0.048148148,26.975008087834325 +2019-09-19 23:00:00,25.0,0.046560847,26.97336058526042 +2019-09-19 23:15:00,25.0,0.046560847,26.97171282886831 +2019-09-19 23:30:00,25.0,0.046031746,26.970064818869933 +2019-09-19 23:45:00,25.0,0.048148148,26.96841655547727 +2019-09-20 00:00:00,25.0,0.04973545,26.96676803890231 +2019-09-20 00:15:00,25.0,0.052380952,26.96511926935709 +2019-09-20 00:30:00,25.0,0.056613757,26.963470247053692 +2019-09-20 00:45:00,25.0,0.058201058,26.9618209722042 +2019-09-20 01:00:00,25.0,0.061904762,26.96017144502076 +2019-09-20 01:15:00,25.0,0.065608466,26.95852166571553 +2019-09-20 01:30:00,25.0,0.064550265,26.956871634500718 +2019-09-20 01:45:00,25.0,0.067724868,26.955221351588545 +2019-09-20 02:00:00,25.0,0.071428571,26.953570817191277 +2019-09-20 02:15:00,25.0,0.075132275,26.95192003152122 +2019-09-20 02:30:00,25.0,0.071428571,26.95026899479068 +2019-09-20 02:45:00,25.0,0.07037037,26.948617707212033 +2019-09-20 03:00:00,25.0,0.076190476,26.94696616899767 +2019-09-20 03:15:00,25.0,0.078835979,26.945314380360017 +2019-09-20 03:30:00,25.0,0.077777778,26.943662341511523 +2019-09-20 03:45:00,25.0,0.076719577,26.94201005266468 +2019-09-20 04:00:00,25.0,0.086243386,26.94035751403202 +2019-09-20 04:15:00,25.0,0.091005291,26.938704725826078 +2019-09-20 04:30:00,25.0,0.093650794,26.93705168825945 +2019-09-20 04:45:00,25.0,0.094708995,26.935398401544752 +2019-09-20 05:00:00,25.0,0.085185185,26.933744865894642 +2019-09-20 05:15:00,25.0,0.083597884,26.932091081521786 +2019-09-20 05:30:00,25.0,0.09047619,26.930437048638904 +2019-09-20 05:45:00,25.0,0.096296296,26.928782767458753 +2019-09-20 06:00:00,25.0,0.101587302,26.92712823819409 +2019-09-20 06:15:00,25.0,0.101058201,26.925473461057734 +2019-09-20 06:30:00,25.0,0.091534392,26.923818436262525 +2019-09-20 06:45:00,25.0,0.087301587,26.92216316402135 +2019-09-20 07:00:00,25.0,0.084656085,26.92050764454709 +2019-09-20 07:15:00,25.0,0.089417989,26.918851878052696 +2019-09-20 07:30:00,25.0,0.089417989,26.91719586475114 +2019-09-20 07:45:00,25.0,0.085714286,26.915539604855407 +2019-09-20 08:00:00,25.0,0.088888889,26.91388309857854 +2019-09-20 08:15:00,25.0,0.094708995,26.912226346133604 +2019-09-20 08:30:00,25.0,0.08994709,26.910569347733695 +2019-09-20 08:45:00,25.0,0.091534392,26.90891210359193 +2019-09-20 09:00:00,25.0,0.091534392,26.907254613921474 +2019-09-20 09:15:00,25.0,0.093121693,26.905596878935523 +2019-09-20 09:30:00,25.0,0.101587302,26.903938898847287 +2019-09-20 09:45:00,25.0,0.112169312,26.902280673870024 +2019-09-20 10:00:00,25.0,0.114285714,26.90062220421702 +2019-09-20 10:15:00,25.0,0.123809524,26.898963490101597 +2019-09-20 10:30:00,25.0,0.142857143,26.89730453173709 +2019-09-20 10:45:00,25.0,0.141269841,26.895645329336883 +2019-09-20 11:00:00,25.0,0.136507937,26.893985883114397 +2019-09-20 11:15:00,25.0,0.14021164,26.892326193283058 +2019-09-20 11:30:00,25.0,0.144973545,26.890666260056342 +2019-09-20 11:45:00,25.0,0.140740741,26.88900608364776 +2019-09-20 12:00:00,25.0,0.139153439,26.887345664270853 +2019-09-20 12:15:00,25.0,0.146560847,26.885685002139173 +2019-09-20 12:30:00,25.0,0.165608466,26.884024097466327 +2019-09-20 12:45:00,25.0,0.163492063,26.882362950465946 +2019-09-20 13:00:00,25.0,0.154497354,26.88070156135168 +2019-09-20 13:15:00,25.0,0.155555556,26.879039930337232 +2019-09-20 13:30:00,25.0,0.165079365,26.877378057636317 +2019-09-20 13:45:00,25.0,0.172486772,26.8757159434627 +2019-09-20 14:00:00,25.0,0.163492063,26.874053588030154 +2019-09-20 14:15:00,25.0,0.13968254,26.8723909915525 +2019-09-20 14:30:00,25.0,0.148148148,26.87072815424359 +2019-09-20 14:45:00,25.0,0.16984127,26.86906507631729 +2019-09-20 15:00:00,25.0,0.174603175,26.867401757987516 +2019-09-20 15:15:00,25.0,0.174603175,26.865738199468215 +2019-09-20 15:30:00,25.0,0.174603175,26.86407440097334 +2019-09-20 15:45:00,25.0,0.155555556,26.862410362716904 +2019-09-20 16:00:00,25.0,0.15026455,26.86074608491294 +2019-09-20 16:15:00,25.0,0.150793651,26.859081567775515 +2019-09-20 16:30:00,25.0,0.149206349,26.85741681151871 +2019-09-20 16:45:00,25.0,0.151851852,26.85575181635666 +2019-09-20 17:00:00,25.0,0.146031746,26.854086582503523 +2019-09-20 17:15:00,25.0,0.138095238,26.852421110173474 +2019-09-20 17:30:00,25.0,0.144973545,26.850755399580734 +2019-09-20 17:45:00,25.0,0.142857143,26.849089450939555 +2019-09-20 18:00:00,25.0,0.138624339,26.847423264464222 +2019-09-20 18:15:00,25.0,0.12962963,26.845756840369024 +2019-09-20 18:30:00,25.0,0.122751323,26.84409017886831 +2019-09-20 18:45:00,25.0,0.122222222,26.842423280176458 +2019-09-20 19:00:00,25.0,0.125396825,26.840756144507857 +2019-09-20 19:15:00,25.0,0.126984127,26.839088772076938 +2019-09-20 19:30:00,25.0,0.12962963,26.837421163098167 +2019-09-20 19:45:00,25.0,0.122751323,26.835753317786047 +2019-09-20 20:00:00,25.0,0.108994709,26.834085236355076 +2019-09-20 20:15:00,25.0,0.102645503,26.832416919019817 +2019-09-20 20:30:00,25.0,0.101587302,26.830748365994864 +2019-09-20 20:45:00,25.0,0.096296296,26.829079577494817 +2019-09-20 21:00:00,25.0,0.091534392,26.827410553734317 +2019-09-20 21:15:00,25.0,0.08042328,26.825741294928047 +2019-09-20 21:30:00,25.0,0.072486772,26.824071801290714 +2019-09-20 21:45:00,25.0,0.074074074,26.822402073037036 +2019-09-20 22:00:00,25.0,0.083597884,26.82073211038179 +2019-09-20 22:15:00,25.0,0.084126984,26.819061913539777 +2019-09-20 22:30:00,25.0,0.078835979,26.8173914827258 +2019-09-20 22:45:00,25.0,0.079365079,26.815720818154727 +2019-09-20 23:00:00,25.0,0.071428571,26.81404992004144 +2019-09-20 23:15:00,25.0,0.062433862,26.812378788600867 +2019-09-20 23:30:00,25.0,0.05026455,26.810707424047934 +2019-09-20 23:45:00,25.0,0.045502646,26.80903582659762 +2019-09-21 00:00:00,25.0,0.046031746,26.80736399646494 +2019-09-21 00:15:00,25.0,0.055026455,26.805691933864914 +2019-09-21 00:30:00,25.0,0.061375661,26.804019639012612 +2019-09-21 00:45:00,25.0,0.064550265,26.802347112123133 +2019-09-21 01:00:00,25.0,0.065608466,26.800674353411605 +2019-09-21 01:15:00,25.0,0.071428571,26.79900136309317 +2019-09-21 01:30:00,25.0,0.070899471,26.797328141383016 +2019-09-21 01:45:00,25.0,0.065079365,26.795654688496363 +2019-09-21 02:00:00,25.0,0.060846561,26.793981004648447 +2019-09-21 02:15:00,25.0,0.058201058,26.79230709005454 +2019-09-21 02:30:00,25.0,0.056084656,26.79063294492995 +2019-09-21 02:45:00,25.0,0.055555556,26.788958569490013 +2019-09-21 03:00:00,25.0,0.057142857,26.78728396395008 +2019-09-21 03:15:00,25.0,0.051322751,26.78560912852555 +2019-09-21 03:30:00,25.0,0.053968254,26.78393406343185 +2019-09-21 03:45:00,25.0,0.056084656,26.782258768884414 +2019-09-21 04:00:00,25.0,0.059259259,26.780583245098732 +2019-09-21 04:15:00,25.0,0.058201058,26.778907492290312 +2019-09-21 04:30:00,25.0,0.053439153,26.777231510674707 +2019-09-21 04:45:00,25.0,0.057142857,26.77555530046746 +2019-09-21 05:00:00,25.0,0.053439153,26.773878861884185 +2019-09-21 05:15:00,25.0,0.048148148,26.772202195140515 +2019-09-21 05:30:00,25.0,0.053439153,26.77052530045209 +2019-09-21 05:45:00,25.0,0.052380952,26.768848178034606 +2019-09-21 06:00:00,25.0,0.056084656,26.767170828103776 +2019-09-21 06:15:00,25.0,0.054497354,26.765493250875352 +2019-09-21 06:30:00,25.0,0.047619048,26.763815446565093 +2019-09-21 06:45:00,25.0,0.042328042,26.762137415388814 +2019-09-21 07:00:00,25.0,0.04021164,26.760459157562348 +2019-09-21 07:15:00,25.0,0.04021164,26.758780673301548 +2019-09-21 07:30:00,25.0,0.037037037,26.757101962822304 +2019-09-21 07:45:00,25.0,0.032804233,26.755423026340544 +2019-09-21 08:00:00,25.0,0.034391534,26.75374386407222 +2019-09-21 08:15:00,25.0,0.036507937,26.752064476233294 +2019-09-21 08:30:00,25.0,0.039153439,26.75038486303978 +2019-09-21 08:45:00,25.0,0.038095238,26.74870502470773 +2019-09-21 09:00:00,25.0,0.039153439,26.747024961453178 +2019-09-21 09:15:00,25.0,0.041269841,26.745344673492237 +2019-09-21 09:30:00,25.0,0.042857143,26.743664161041032 +2019-09-21 09:45:00,25.0,0.045502646,26.741983424315702 +2019-09-21 10:00:00,25.0,0.046031746,26.740302463532434 +2019-09-21 10:15:00,25.0,0.043915344,26.738621278907438 +2019-09-21 10:30:00,25.0,0.040740741,26.736939870656958 +2019-09-21 10:45:00,25.0,0.037566138,26.735258238997243 +2019-09-21 11:00:00,25.0,0.038624339,26.733576384144598 +2019-09-21 11:15:00,25.0,0.03968254,26.73189430631536 +2019-09-21 11:30:00,25.0,0.04021164,26.730212005725857 +2019-09-21 11:45:00,25.0,0.03968254,26.728529482592485 +2019-09-21 12:00:00,25.0,0.040740741,26.726846737131652 +2019-09-21 12:15:00,25.0,0.043915344,26.725163769559806 +2019-09-21 12:30:00,25.0,0.05026455,26.723480580093394 +2019-09-21 12:45:00,25.0,0.053439153,26.72179716894892 +2019-09-21 13:00:00,25.0,0.055026455,26.720113536342925 +2019-09-21 13:15:00,25.0,0.061375661,26.718429682491934 +2019-09-21 13:30:00,25.0,0.067724868,26.716745607612545 +2019-09-21 13:45:00,25.0,0.074603175,26.71506131192136 +2019-09-21 14:00:00,25.0,0.079365079,26.713376795635032 +2019-09-21 14:15:00,25.0,0.083068783,26.711692058970208 +2019-09-21 14:30:00,25.0,0.087301587,26.710007102143592 +2019-09-21 14:45:00,25.0,0.1,26.708321925371912 +2019-09-21 15:00:00,25.0,0.106349206,26.706636528871908 +2019-09-21 15:15:00,25.0,0.115873016,26.70495091286036 +2019-09-21 15:30:00,25.0,0.133333333,26.70326507755409 +2019-09-21 15:45:00,25.0,0.141269841,26.701579023169927 +2019-09-21 16:00:00,25.0,0.151322751,26.699892749924725 +2019-09-21 16:15:00,25.0,0.163492063,26.698206258035388 +2019-09-21 16:30:00,25.0,0.177248677,26.696519547718836 +2019-09-21 16:45:00,25.0,0.188359788,26.69483261919201 +2019-09-21 17:00:00,25.0,0.203174603,26.69314547267189 +2019-09-21 17:15:00,25.0,0.215343915,26.691458108375485 +2019-09-21 17:30:00,25.0,0.220634921,26.68977052651983 +2019-09-21 17:45:00,25.0,0.228571429,26.688082727321973 +2019-09-21 18:00:00,25.0,0.232804233,26.68639471099901 +2019-09-21 18:15:00,25.0,0.240740741,26.684706477768067 +2019-09-21 18:30:00,25.0,0.261375661,26.68301802784627 +2019-09-21 18:45:00,25.0,0.265079365,26.6813293614508 +2019-09-21 19:00:00,25.0,0.266137566,26.679640478798856 +2019-09-21 19:15:00,25.0,0.27037037,26.67795138010768 +2019-09-21 19:30:00,25.0,0.274603175,26.676262065594504 +2019-09-21 19:45:00,25.0,0.281481481,26.674572535476624 +2019-09-21 20:00:00,25.0,0.289417989,26.672882789971357 +2019-09-21 20:15:00,25.0,0.291534392,26.67119282929603 +2019-09-21 20:30:00,25.0,0.294708995,26.66950265366801 +2019-09-21 20:45:00,25.0,0.293121693,26.6678122633047 +2019-09-21 21:00:00,25.0,0.297354497,26.666121658423524 +2019-09-21 21:15:00,25.0,0.305291005,26.66443083924192 +2019-09-21 21:30:00,25.0,0.303174603,26.662739805977367 +2019-09-21 21:45:00,25.0,0.299470899,26.661048558847384 +2019-09-21 22:00:00,25.0,0.295767196,26.659357098069485 +2019-09-21 22:15:00,25.0,0.300529101,26.657665423861236 +2019-09-21 22:30:00,25.0,0.296825397,26.65597353644022 +2019-09-21 22:45:00,25.0,0.294708995,26.65428143602407 +2019-09-21 23:00:00,25.0,0.298412698,26.652589122830406 +2019-09-21 23:15:00,25.0,0.292592593,26.65089659707691 +2019-09-21 23:30:00,25.0,0.283068783,26.649203858981274 +2019-09-21 23:45:00,25.0,0.267195767,26.647510908761216 +2019-09-22 00:00:00,25.0,0.255555556,26.645817746634496 +2019-09-22 00:15:00,25.0,0.24973545,26.644124372818887 +2019-09-22 00:30:00,25.0,0.249206349,26.642430787532206 +2019-09-22 00:45:00,25.0,0.25026455,26.64073699099227 +2019-09-22 01:00:00,25.0,0.245502646,26.639042983416946 +2019-09-22 01:15:00,25.0,0.240740741,26.63734876502413 +2019-09-22 01:30:00,25.0,0.235449735,26.635654336031717 +2019-09-22 01:45:00,25.0,0.229100529,26.633959696657662 +2019-09-22 02:00:00,25.0,0.217460317,26.632264847119927 +2019-09-22 02:15:00,25.0,0.208994709,26.63056978763652 +2019-09-22 02:30:00,25.0,0.203174603,26.628874518425448 +2019-09-22 02:45:00,25.0,0.194179894,26.627179039704767 +2019-09-22 03:00:00,25.0,0.185714286,26.625483351692562 +2019-09-22 03:15:00,25.0,0.176719577,26.62378745460692 +2019-09-22 03:30:00,25.0,0.167195767,26.622091348665975 +2019-09-22 03:45:00,25.0,0.169312169,26.6203950340879 +2019-09-22 04:00:00,25.0,0.167195767,26.618698511090855 +2019-09-22 04:15:00,25.0,0.169312169,26.617001779893062 +2019-09-22 04:30:00,25.0,0.168783069,26.615304840712763 +2019-09-22 04:45:00,25.0,0.17037037,26.613607693768223 +2019-09-22 05:00:00,25.0,0.169312169,26.61191033927772 +2019-09-22 05:15:00,25.0,0.161904762,26.610212777459584 +2019-09-22 05:30:00,25.0,0.160846561,26.60851500853216 +2019-09-22 05:45:00,25.0,0.164550265,26.606817032713806 +2019-09-22 06:00:00,25.0,0.169312169,26.60511885022293 +2019-09-22 06:15:00,25.0,0.164021164,26.60342046127795 +2019-09-22 06:30:00,25.0,0.169312169,26.601721866097332 +2019-09-22 06:45:00,25.0,0.176190476,26.60002306489953 +2019-09-22 07:00:00,25.0,0.177777778,26.598324057903064 +2019-09-22 07:15:00,25.0,0.177777778,26.596624845326467 +2019-09-22 07:30:00,25.0,0.172486772,26.594925427388276 +2019-09-22 07:45:00,25.0,0.176190476,26.59322580430709 +2019-09-22 08:00:00,25.0,0.18042328,26.591525976301515 +2019-09-22 08:15:00,25.0,0.187301587,26.589825943590196 +2019-09-22 08:30:00,25.0,0.19047619,26.588125706391775 +2019-09-22 08:45:00,25.0,0.183068783,26.58642526492495 +2019-09-22 09:00:00,25.0,0.176719577,26.58472461940845 +2019-09-22 09:15:00,25.0,0.167724868,26.583023770060993 +2019-09-22 09:30:00,25.0,0.158730159,26.581322717101354 +2019-09-22 09:45:00,25.0,0.15026455,26.57962146074833 +2019-09-22 10:00:00,25.0,0.140740741,26.57792000122075 +2019-09-22 10:15:00,25.0,0.132275132,26.576218338737437 +2019-09-22 10:30:00,25.0,0.128042328,26.574516473517278 +2019-09-22 10:45:00,25.0,0.128042328,26.572814405779173 +2019-09-22 11:00:00,25.0,0.133862434,26.57111213574203 +2019-09-22 11:15:00,25.0,0.135449735,26.569409663624814 +2019-09-22 11:30:00,25.0,0.134391534,26.567706989646492 +2019-09-22 11:45:00,25.0,0.132275132,26.56600411402608 +2019-09-22 12:00:00,25.0,0.142857143,26.564301036982588 +2019-09-22 12:15:00,25.0,0.163492063,26.562597758735077 +2019-09-22 12:30:00,25.0,0.177777778,26.560894279502634 +2019-09-22 12:45:00,25.0,0.189417989,26.55919059950435 +2019-09-22 13:00:00,25.0,0.198941799,26.557486718959364 +2019-09-22 13:15:00,25.0,0.213756614,26.555782638086832 +2019-09-22 13:30:00,25.0,0.234920635,26.554078357105947 +2019-09-22 13:45:00,25.0,0.251322751,26.552373876235897 +2019-09-22 14:00:00,25.0,0.266137566,26.55066919569593 +2019-09-22 14:15:00,25.0,0.284656085,26.548964315705312 +2019-09-22 14:30:00,25.0,0.294708995,26.547259236483313 +2019-09-22 14:45:00,25.0,0.303703704,26.54555395824925 +2019-09-22 15:00:00,25.0,0.311111111,26.54384848122246 +2019-09-22 15:15:00,25.0,0.321693122,26.542142805622316 +2019-09-22 15:30:00,25.0,0.328042328,26.540436931668186 +2019-09-22 15:45:00,25.0,0.332275132,26.538730859579495 +2019-09-22 16:00:00,25.0,0.333862434,26.53702458957569 +2019-09-22 16:15:00,25.0,0.342328042,26.53531812187622 +2019-09-22 16:30:00,25.0,0.356084656,26.533611456700577 +2019-09-22 16:45:00,25.0,0.367724868,26.53190459426828 +2019-09-22 17:00:00,25.0,0.373544974,26.53019753479888 +2019-09-22 17:15:00,25.0,0.369312169,26.528490278511924 +2019-09-22 17:30:00,25.0,0.367724868,26.526782825627013 +2019-09-22 17:45:00,25.0,0.368253968,26.52507517636377 +2019-09-22 18:00:00,25.0,0.366666667,26.523367330941824 +2019-09-22 18:15:00,25.0,0.371428571,26.521659289580843 +2019-09-22 18:30:00,25.0,0.387301587,26.519951052500524 +2019-09-22 18:45:00,25.0,0.40952381,26.518242619920596 +2019-09-22 19:00:00,25.0,0.42010582,26.51653399206078 +2019-09-22 19:15:00,25.0,0.427513228,26.51482516914085 +2019-09-22 19:30:00,25.0,0.429100529,26.513116151380615 +2019-09-22 19:45:00,25.0,0.435449735,26.51140693899987 +2019-09-22 20:00:00,25.0,0.441269841,26.509697532218464 +2019-09-22 20:15:00,25.0,0.447619048,26.50798793125627 +2019-09-22 20:30:00,25.0,0.455026455,26.50627813633319 +2019-09-22 20:45:00,25.0,0.461904762,26.504568147669122 +2019-09-22 21:00:00,25.0,0.475661376,26.50285796548402 +2019-09-22 21:15:00,25.0,0.487301587,26.501147589997856 +2019-09-22 21:30:00,25.0,0.5,26.499437021430605 +2019-09-22 21:45:00,25.0,0.512169312,26.4977262600023 +2019-09-22 22:00:00,25.0,0.520634921,26.496015305932982 +2019-09-22 22:15:00,25.0,0.530687831,26.49430415944271 +2019-09-22 22:30:00,25.0,0.537037037,26.492592820751575 +2019-09-22 22:45:00,25.0,0.538095238,26.490881290079702 +2019-09-22 23:00:00,25.0,0.531746032,26.489169567647235 +2019-09-22 23:15:00,25.0,0.534391534,26.487457653674326 +2019-09-22 23:30:00,25.0,0.535449735,26.485745548381168 +2019-09-22 23:45:00,25.0,0.532275132,26.48403325198799 +2019-09-23 00:00:00,25.0,0.501058201,26.482320764715016 +2019-09-23 00:15:00,25.0,0.487301587,26.480608086782517 +2019-09-23 00:30:00,25.0,0.478306878,26.478895218410777 +2019-09-23 00:45:00,25.0,0.455026455,26.47718215982012 +2019-09-23 01:00:00,25.0,0.422751323,26.47546891123087 +2019-09-23 01:15:00,25.0,0.403703704,26.473755472863395 +2019-09-23 01:30:00,25.0,0.375132275,26.472041844938087 +2019-09-23 01:45:00,25.0,0.375661376,26.470328027675347 +2019-09-23 02:00:00,25.0,0.386243386,26.46861402129561 +2019-09-23 02:15:00,25.0,0.391005291,26.466899826019343 +2019-09-23 02:30:00,25.0,0.406878307,26.465185442067032 +2019-09-23 02:45:00,25.0,0.417460317,26.463470869659172 +2019-09-23 03:00:00,25.0,0.426455026,26.461756109016306 +2019-09-23 03:15:00,25.0,0.446031746,26.460041160358994 +2019-09-23 03:30:00,25.0,0.470899471,26.4583260239078 +2019-09-23 03:45:00,25.0,0.497883598,26.45661069988334 +2019-09-23 04:00:00,25.0,0.510582011,26.454895188506242 +2019-09-23 04:15:00,25.0,0.494708995,26.453179489997165 +2019-09-23 04:30:00,25.0,0.478306878,26.451463604576773 +2019-09-23 04:45:00,25.0,0.476190476,26.449747532465775 +2019-09-23 05:00:00,25.0,0.45978836,26.448031273884904 +2019-09-23 05:15:00,25.0,0.423809524,26.44631482905489 +2019-09-23 05:30:00,25.0,0.398412698,26.44459819819652 +2019-09-23 05:45:00,25.0,0.384126984,26.442881381530583 +2019-09-23 06:00:00,25.0,0.362962963,26.441164379277915 +2019-09-23 06:15:00,25.0,0.32962963,26.43944719165934 +2019-09-23 06:30:00,25.0,0.297354497,26.43772981889574 +2019-09-23 06:45:00,25.0,0.276190476,26.43601226120801 +2019-09-23 07:00:00,25.0,0.266137566,26.434294518817055 +2019-09-23 07:15:00,25.0,0.255026455,26.432576591943818 +2019-09-23 07:30:00,25.0,0.255026455,26.430858480809267 +2019-09-23 07:45:00,25.0,0.255555556,26.429140185634395 +2019-09-23 08:00:00,25.0,0.25026455,26.427421706640196 +2019-09-23 08:15:00,25.0,0.242328042,26.42570304404772 +2019-09-23 08:30:00,25.0,0.235978836,26.423984198078024 +2019-09-23 08:45:00,25.0,0.225396825,26.422265168952176 +2019-09-23 09:00:00,25.0,0.224867725,26.420545956891296 +2019-09-23 09:15:00,25.0,0.220634921,26.418826562116504 +2019-09-23 09:30:00,25.0,0.215343915,26.41710698484897 +2019-09-23 09:45:00,25.0,0.214285714,26.415387225309846 +2019-09-23 10:00:00,25.0,0.207407407,26.41366728372034 +2019-09-23 10:15:00,25.0,0.203703704,26.41194716030169 +2019-09-23 10:30:00,25.0,0.194179894,26.41022685527512 +2019-09-23 10:45:00,25.0,0.166666667,26.408506368861907 +2019-09-23 11:00:00,25.0,0.16031746,26.406785701283347 +2019-09-23 11:15:00,25.0,0.162433862,26.405064852760766 +2019-09-23 11:30:00,25.0,0.162962963,26.40334382351548 +2019-09-23 11:45:00,25.0,0.15978836,26.401622613768872 +2019-09-23 12:00:00,25.0,0.152380952,26.399901223742322 +2019-09-23 12:15:00,25.0,0.15026455,26.398179653657234 +2019-09-23 12:30:00,25.0,0.156084656,26.39645790373504 +2019-09-23 12:45:00,25.0,0.156613757,26.394735974197204 +2019-09-23 13:00:00,25.0,0.157142857,26.393013865265203 +2019-09-23 13:15:00,25.0,0.151322751,26.39129157716053 +2019-09-23 13:30:00,25.0,0.13968254,26.389569110104716 +2019-09-23 13:45:00,25.0,0.140740741,26.387846464319317 +2019-09-23 14:00:00,25.0,0.137037037,26.386123640025886 +2019-09-23 14:15:00,25.0,0.132275132,26.384400637446024 +2019-09-23 14:30:00,25.0,0.128571429,26.382677456801353 +2019-09-23 14:45:00,25.0,0.126984127,26.380954098313513 +2019-09-23 15:00:00,25.0,0.124867725,26.379230562204153 +2019-09-23 15:15:00,25.0,0.123809524,26.37750684869497 +2019-09-23 15:30:00,25.0,0.13015873,26.375782958007676 +2019-09-23 15:45:00,25.0,0.128571429,26.374058890363987 +2019-09-23 16:00:00,25.0,0.115873016,26.372334645985664 +2019-09-23 16:15:00,25.0,0.112169312,26.370610225094495 +2019-09-23 16:30:00,25.0,0.11005291,26.368885627912256 +2019-09-23 16:45:00,25.0,0.107936508,26.36716085466078 +2019-09-23 17:00:00,25.0,0.101058201,26.365435905561913 +2019-09-23 17:15:00,25.0,0.1,26.36371078083753 +2019-09-23 17:30:00,25.0,0.100529101,26.361985480709503 +2019-09-23 17:45:00,25.0,0.102116402,26.360260005399752 +2019-09-23 18:00:00,25.0,0.099470899,26.358534355130217 +2019-09-23 18:15:00,25.0,0.094708995,26.356808530122848 +2019-09-23 18:30:00,25.0,0.092592593,26.35508253059962 +2019-09-23 18:45:00,25.0,0.092063492,26.353356356782548 +2019-09-23 19:00:00,25.0,0.097883598,26.351630008893654 +2019-09-23 19:15:00,25.0,0.105820106,26.349903487154975 +2019-09-23 19:30:00,25.0,0.107407407,26.348176791788585 +2019-09-23 19:45:00,25.0,0.103703704,26.346449923016586 +2019-09-23 20:00:00,25.0,0.102116402,26.344722881061074 +2019-09-23 20:15:00,25.0,0.101587302,26.342995666144194 +2019-09-23 20:30:00,25.0,0.091534392,26.341268278488105 +2019-09-23 20:45:00,25.0,0.091005291,26.339540718314996 +2019-09-23 21:00:00,25.0,0.087830688,26.33781298584705 +2019-09-23 21:15:00,25.0,0.083597884,26.336085081306503 +2019-09-23 21:30:00,25.0,0.07989418,26.334357004915613 +2019-09-23 21:45:00,25.0,0.084126984,26.332628756896625 +2019-09-23 22:00:00,25.0,0.098412698,26.330900337471846 +2019-09-23 22:15:00,25.0,0.121164021,26.329171746863587 +2019-09-23 22:30:00,25.0,0.12962963,26.32744298529419 +2019-09-23 22:45:00,25.0,0.12962963,26.325714052985994 +2019-09-23 23:00:00,25.0,0.128571429,26.323984950161393 +2019-09-23 23:15:00,25.0,0.118518519,26.32225567704279 +2019-09-23 23:30:00,25.0,0.107936508,26.320526233852597 +2019-09-23 23:45:00,25.0,0.106349206,26.318796620813263 +2019-09-24 00:00:00,25.0,0.107936508,26.31706683814726 +2019-09-24 00:15:00,25.0,0.113756614,26.315336886077077 +2019-09-24 00:30:00,25.0,0.112169312,26.313606764825213 +2019-09-24 00:45:00,25.0,0.107407407,26.31187647461421 +2019-09-24 01:00:00,25.0,0.096825397,26.310146015666625 +2019-09-24 01:15:00,25.0,0.081481481,26.30841538820502 +2019-09-24 01:30:00,25.0,0.076190476,26.306684592452005 +2019-09-24 01:45:00,25.0,0.075132275,26.30495362863019 +2019-09-24 02:00:00,25.0,0.076719577,26.303222496962228 +2019-09-24 02:15:00,25.0,0.077777778,26.301491197670767 +2019-09-24 02:30:00,25.0,0.071957672,26.299759730978497 +2019-09-24 02:45:00,25.0,0.071957672,26.298028097108133 +2019-09-24 03:00:00,25.0,0.077777778,26.29629629628238 +2019-09-24 03:15:00,25.0,0.084656085,26.294564328724 +2019-09-24 03:30:00,25.0,0.08994709,26.292832194655762 +2019-09-24 03:45:00,25.0,0.096296296,26.291099894300466 +2019-09-24 04:00:00,25.0,0.093650794,26.289367427880904 +2019-09-24 04:15:00,25.0,0.093121693,26.28763479561992 +2019-09-24 04:30:00,25.0,0.095767196,26.28590199774038 +2019-09-24 04:45:00,25.0,0.098412698,26.284169034465137 +2019-09-24 05:00:00,25.0,0.10952381,26.282435906017103 +2019-09-24 05:15:00,25.0,0.122222222,26.280702612619198 +2019-09-24 05:30:00,25.0,0.134391534,26.27896915449437 +2019-09-24 05:45:00,25.0,0.145502646,26.277235531865557 +2019-09-24 06:00:00,25.0,0.153439153,26.275501744955758 +2019-09-24 06:15:00,25.0,0.16031746,26.27376779398798 +2019-09-24 06:30:00,25.0,0.16984127,26.272033679185235 +2019-09-24 06:45:00,25.0,0.183068783,26.270299400770572 +2019-09-24 07:00:00,25.0,0.193650794,26.268564958967065 +2019-09-24 07:15:00,25.0,0.216931217,26.266830353997804 +2019-09-24 07:30:00,25.0,0.228571429,26.265095586085884 +2019-09-24 07:45:00,25.0,0.229100529,26.263360655454445 +2019-09-24 08:00:00,25.0,0.234391534,26.26162556232664 +2019-09-24 08:15:00,25.0,0.23015873,26.25989030692563 +2019-09-24 08:30:00,25.0,0.220634921,26.258154889474614 +2019-09-24 08:45:00,25.0,0.211111111,26.256419310196815 +2019-09-24 09:00:00,25.0,0.215873016,26.254683569315446 +2019-09-24 09:15:00,25.0,0.236507937,26.252947667053775 +2019-09-24 09:30:00,25.0,0.248677249,26.251211603635078 +2019-09-24 09:45:00,25.0,0.257671958,26.249475379282654 +2019-09-24 10:00:00,25.0,0.255026455,26.24773899421981 +2019-09-24 10:15:00,25.0,0.26031746,26.246002448669888 +2019-09-24 10:30:00,25.0,0.27989418,26.24426574285626 +2019-09-24 10:45:00,25.0,0.301058201,26.242528877002282 +2019-09-24 11:00:00,25.0,0.32962963,26.240791851331366 +2019-09-24 11:15:00,25.0,0.342857143,26.23905466606693 +2019-09-24 11:30:00,25.0,0.351322751,26.23731732143243 +2019-09-24 11:45:00,25.0,0.358201058,26.2355798176513 +2019-09-24 12:00:00,25.0,0.361904762,26.233842154947038 +2019-09-24 12:15:00,25.0,0.366666667,26.23210433354315 +2019-09-24 12:30:00,25.0,0.365079365,26.230366353663143 +2019-09-24 12:45:00,25.0,0.368783069,26.22862821553057 +2019-09-24 13:00:00,25.0,0.371957672,26.226889919368993 +2019-09-24 13:15:00,25.0,0.376190476,26.225151465402003 +2019-09-24 13:30:00,25.0,0.384656085,26.22341285385319 +2019-09-24 13:45:00,25.0,0.391005291,26.221674084946187 +2019-09-24 14:00:00,25.0,0.398941799,26.219935158904644 +2019-09-24 14:15:00,25.0,0.404232804,26.21819607595221 +2019-09-24 14:30:00,25.0,0.401587302,26.216456836312577 +2019-09-24 14:45:00,25.0,0.404761905,26.21471744020945 +2019-09-24 15:00:00,25.0,0.398941799,26.21297788786657 +2019-09-24 15:15:00,25.0,0.401587302,26.211238179507653 +2019-09-24 15:30:00,25.0,0.400529101,26.20949831535648 +2019-09-24 15:45:00,25.0,0.394179894,26.207758295636847 +2019-09-24 16:00:00,25.0,0.382539683,26.206018120572537 +2019-09-24 16:15:00,25.0,0.343915344,26.204277790387387 +2019-09-24 16:30:00,25.0,0.346031746,26.202537305305242 +2019-09-24 16:45:00,25.0,0.326984127,26.200796665549973 +2019-09-24 17:00:00,25.0,0.319047619,26.19905587134545 +2019-09-24 17:15:00,25.0,0.366666667,26.197314922915588 +2019-09-24 17:30:00,25.0,0.396296296,26.19557382048432 +2019-09-24 17:45:00,25.0,0.400529101,26.19383256427557 +2019-09-24 18:00:00,25.0,0.394179894,26.192091154513317 +2019-09-24 18:15:00,25.0,0.4,26.190349591421537 +2019-09-24 18:30:00,25.0,0.428042328,26.18860787522425 +2019-09-24 18:45:00,25.0,0.437037037,26.18686600614546 +2019-09-24 19:00:00,25.0,0.438095238,26.185123984409216 +2019-09-24 19:15:00,25.0,0.457671958,26.183381810239595 +2019-09-24 19:30:00,25.0,0.481481481,26.181639483860657 +2019-09-24 19:45:00,25.0,0.478306878,26.179897005496517 +2019-09-24 20:00:00,25.0,0.469312169,26.178154375371292 +2019-09-24 20:15:00,25.0,0.449206349,26.176411593709133 +2019-09-24 20:30:00,25.0,0.423280423,26.174668660734188 +2019-09-24 20:45:00,25.0,0.399470899,26.17292557667064 +2019-09-24 21:00:00,25.0,0.384656085,26.1711823417427 +2019-09-24 21:15:00,25.0,0.383597884,26.169438956174567 +2019-09-24 21:30:00,25.0,0.385185185,26.16769542019049 +2019-09-24 21:45:00,25.0,0.377777778,26.16595173401473 +2019-09-24 22:00:00,25.0,0.364550265,26.164207897871567 +2019-09-24 22:15:00,25.0,0.362962963,26.16246391198528 +2019-09-24 22:30:00,25.0,0.35026455,26.160719776580198 +2019-09-24 22:45:00,25.0,0.341269841,26.15897549188066 +2019-09-24 23:00:00,25.0,0.326455026,26.157231058111005 +2019-09-24 23:15:00,25.0,0.316931217,26.155486475495614 +2019-09-24 23:30:00,25.0,0.316931217,26.153741744258877 +2019-09-24 23:45:00,25.0,0.307936508,26.151996864625218 +2019-09-25 00:00:00,25.0,0.294179894,26.15025183681905 +2019-09-25 00:15:00,25.0,0.294179894,26.148506661064825 +2019-09-25 00:30:00,25.0,0.312698413,26.14676133758703 +2019-09-25 00:45:00,25.0,0.306349206,26.145015866610127 +2019-09-25 01:00:00,25.0,0.291005291,26.143270248358633 +2019-09-25 01:15:00,25.0,0.278835979,26.141524483057076 +2019-09-25 01:30:00,25.0,0.276719577,26.13977857093001 +2019-09-25 01:45:00,25.0,0.262962963,26.138032512201974 +2019-09-25 02:00:00,25.0,0.238095238,26.136286307097567 +2019-09-25 02:15:00,25.0,0.221693122,26.134539955841394 +2019-09-25 02:30:00,25.0,0.205820106,26.132793458658057 +2019-09-25 02:45:00,25.0,0.192063492,26.131046815772205 +2019-09-25 03:00:00,25.0,0.182010582,26.129300027408505 +2019-09-25 03:15:00,25.0,0.166137566,26.12755309379161 +2019-09-25 03:30:00,25.0,0.154497354,26.12580601514623 +2019-09-25 03:45:00,25.0,0.146560847,26.124058791697077 +2019-09-25 04:00:00,25.0,0.132804233,26.12231142366889 +2019-09-25 04:15:00,25.0,0.126984127,26.1205639112864 +2019-09-25 04:30:00,25.0,0.11957672,26.118816254774387 +2019-09-25 04:45:00,25.0,0.11005291,26.11706845435765 +2019-09-25 05:00:00,25.0,0.099470899,26.115320510260975 +2019-09-25 05:15:00,25.0,0.094179894,26.113572422709193 +2019-09-25 05:30:00,25.0,0.089417989,26.111824191927152 +2019-09-25 05:45:00,25.0,0.087830688,26.11007581813972 +2019-09-25 06:00:00,25.0,0.087301587,26.10832730157176 +2019-09-25 06:15:00,25.0,0.091534392,26.106578642448177 +2019-09-25 06:30:00,25.0,0.096296296,26.104829840993897 +2019-09-25 06:45:00,25.0,0.101587302,26.103080897433838 +2019-09-25 07:00:00,25.0,0.107407407,26.101331811992964 +2019-09-25 07:15:00,25.0,0.107407407,26.09958258489624 +2019-09-25 07:30:00,25.0,0.114285714,26.09783321636867 +2019-09-25 07:45:00,25.0,0.117460317,26.096083706635245 +2019-09-25 08:00:00,25.0,0.119047619,26.094334055920996 +2019-09-25 08:15:00,25.0,0.12010582,26.09258426445098 +2019-09-25 08:30:00,25.0,0.113756614,26.09083433245024 +2019-09-25 08:45:00,25.0,0.108994709,26.08908426014386 +2019-09-25 09:00:00,25.0,0.108465608,26.087334047756944 +2019-09-25 09:15:00,25.0,0.107936508,26.085583695514618 +2019-09-25 09:30:00,25.0,0.106349206,26.083833203641994 +2019-09-25 09:45:00,25.0,0.104232804,26.08208257236424 +2019-09-25 10:00:00,25.0,0.104761905,26.080331801906528 +2019-09-25 10:15:00,25.0,0.103703704,26.07858089249403 +2019-09-25 10:30:00,25.0,0.103174603,26.076829844351963 +2019-09-25 10:45:00,25.0,0.106349206,26.075078657705554 +2019-09-25 11:00:00,25.0,0.10952381,26.073327332780043 +2019-09-25 11:15:00,25.0,0.11005291,26.071575869800682 +2019-09-25 11:30:00,25.0,0.108465608,26.069824268992754 +2019-09-25 11:45:00,25.0,0.107936508,26.06807253058156 +2019-09-25 12:00:00,25.0,0.110582011,26.0663206547924 +2019-09-25 12:15:00,25.0,0.10952381,26.06456864185061 +2019-09-25 12:30:00,25.0,0.102645503,26.062816491981536 +2019-09-25 12:45:00,25.0,0.101058201,26.061064205410556 +2019-09-25 13:00:00,25.0,0.096825397,26.059311782363032 +2019-09-25 13:15:00,25.0,0.088888889,26.05755922306438 +2019-09-25 13:30:00,25.0,0.07989418,26.055806527740017 +2019-09-25 13:45:00,25.0,0.073015873,26.054053696615373 +2019-09-25 14:00:00,25.0,0.065079365,26.0523007299159 +2019-09-25 14:15:00,25.0,0.05978836,26.050547627867076 +2019-09-25 14:30:00,25.0,0.062962963,26.04879439069439 +2019-09-25 14:45:00,25.0,0.066137566,26.047041018623336 +2019-09-25 15:00:00,25.0,0.064550265,26.045287511879444 +2019-09-25 15:15:00,25.0,0.063492063,26.043533870688265 +2019-09-25 15:30:00,25.0,0.066666667,26.04178009527533 +2019-09-25 15:45:00,25.0,0.068783069,26.040026185866235 +2019-09-25 16:00:00,25.0,0.071428571,26.038272142686562 +2019-09-25 16:15:00,25.0,0.071428571,26.036517965961934 +2019-09-25 16:30:00,25.0,0.07037037,26.03476365591796 +2019-09-25 16:45:00,25.0,0.074603175,26.03300921278029 +2019-09-25 17:00:00,25.0,0.083597884,26.03125463677459 +2019-09-25 17:15:00,25.0,0.086243386,26.02949992812653 +2019-09-25 17:30:00,25.0,0.085185185,26.027745087061803 +2019-09-25 17:45:00,25.0,0.085714286,26.025990113806127 +2019-09-25 18:00:00,25.0,0.091005291,26.024235008585237 +2019-09-25 18:15:00,25.0,0.096296296,26.022479771624862 +2019-09-25 18:30:00,25.0,0.095238095,26.020724403150773 +2019-09-25 18:45:00,25.0,0.098412698,26.018968903388757 +2019-09-25 19:00:00,25.0,0.103703704,26.017213272564597 +2019-09-25 19:15:00,25.0,0.107407407,26.01545751090411 +2019-09-25 19:30:00,25.0,0.110582011,26.01370161863313 +2019-09-25 19:45:00,25.0,0.121693122,26.01194559597751 +2019-09-25 20:00:00,25.0,0.130687831,26.0101894431631 +2019-09-25 20:15:00,25.0,0.139153439,26.008433160415784 +2019-09-25 20:30:00,25.0,0.144444444,26.00667674796147 +2019-09-25 20:45:00,25.0,0.157671958,26.00492020602606 +2019-09-25 21:00:00,25.0,0.159259259,26.003163534835483 +2019-09-25 21:15:00,25.0,0.164550265,26.001406734615703 +2019-09-25 21:30:00,25.0,0.17037037,25.99964980559266 +2019-09-25 21:45:00,25.0,0.177777778,25.99789274799235 +2019-09-25 22:00:00,25.0,0.197354497,25.996135562040763 +2019-09-25 22:15:00,25.0,0.212698413,25.994378247963926 +2019-09-25 22:30:00,25.0,0.225925926,25.992620805987848 +2019-09-25 22:45:00,25.0,0.22962963,25.990863236338583 +2019-09-25 23:00:00,25.0,0.235449735,25.98910553924221 +2019-09-25 23:15:00,25.0,0.247619048,25.987347714924784 +2019-09-25 23:30:00,25.0,0.256084656,25.98558976361241 +2019-09-25 23:45:00,25.0,0.262962963,25.983831685531197 +2019-09-26 00:00:00,25.0,0.279365079,25.98207348090729 +2019-09-26 00:15:00,25.0,0.291005291,25.98031514996681 +2019-09-26 00:30:00,25.0,0.291005291,25.978556692935925 +2019-09-26 00:45:00,25.0,0.298941799,25.976798110040825 +2019-09-26 01:00:00,25.0,0.305820106,25.975039401507683 +2019-09-26 01:15:00,25.0,0.3,25.973280567562714 +2019-09-26 01:30:00,25.0,0.297883598,25.971521608432152 +2019-09-26 01:45:00,25.0,0.3,25.96976252434224 +2019-09-26 02:00:00,25.0,0.288359788,25.96800331551922 +2019-09-26 02:15:00,25.0,0.27989418,25.966243982189372 +2019-09-26 02:30:00,25.0,0.283597884,25.964484524578996 +2019-09-26 02:45:00,25.0,0.283597884,25.96272494291438 +2019-09-26 03:00:00,25.0,0.273544974,25.960965237421856 +2019-09-26 03:15:00,25.0,0.260846561,25.95920540832776 +2019-09-26 03:30:00,25.0,0.262962963,25.957445455858455 +2019-09-26 03:45:00,25.0,0.265079365,25.95568538024029 +2019-09-26 04:00:00,25.0,0.25978836,25.953925181699663 +2019-09-26 04:15:00,25.0,0.26984127,25.95216486046298 +2019-09-26 04:30:00,25.0,0.277248677,25.950404416756637 +2019-09-26 04:45:00,25.0,0.266137566,25.94864385080708 +2019-09-26 05:00:00,25.0,0.275661376,25.94688316284076 +2019-09-26 05:15:00,25.0,0.295238095,25.94512235308414 +2019-09-26 05:30:00,25.0,0.31005291,25.943361421763694 +2019-09-26 05:45:00,25.0,0.315873016,25.941600369105917 +2019-09-26 06:00:00,25.0,0.315873016,25.939839195337328 +2019-09-26 06:15:00,25.0,0.318518519,25.93807790068444 +2019-09-26 06:30:00,25.0,0.317989418,25.936316485373805 +2019-09-26 06:45:00,25.0,0.31957672,25.934554949631973 +2019-09-26 07:00:00,25.0,0.32962963,25.93279329368553 +2019-09-26 07:15:00,25.0,0.343386243,25.93103151776105 +2019-09-26 07:30:00,25.0,0.351851852,25.92926962208514 +2019-09-26 07:45:00,25.0,0.347619048,25.927507606884433 +2019-09-26 08:00:00,25.0,0.345502646,25.92574547238554 +2019-09-26 08:15:00,25.0,0.357142857,25.923983218815124 +2019-09-26 08:30:00,25.0,0.365608466,25.922220846399846 +2019-09-26 08:45:00,25.0,0.366666667,25.9204583553664 +2019-09-26 09:00:00,25.0,0.378306878,25.918695745941463 +2019-09-26 09:15:00,25.0,0.387830688,25.916933018351752 +2019-09-26 09:30:00,25.0,0.395238095,25.915170172824002 +2019-09-26 09:45:00,25.0,0.374603175,25.913407209584943 +2019-09-26 10:00:00,25.0,0.352910053,25.911644128861333 +2019-09-26 10:15:00,25.0,0.353439153,25.909880930879943 +2019-09-26 10:30:00,25.0,0.357671958,25.908117615867575 +2019-09-26 10:45:00,25.0,0.357142857,25.906354184051008 +2019-09-26 11:00:00,25.0,0.371428571,25.90459063565707 +2019-09-26 11:15:00,25.0,0.376190476,25.9028269709126 +2019-09-26 11:30:00,25.0,0.381481481,25.901063190044425 +2019-09-26 11:45:00,25.0,0.357671958,25.89929929327942 +2019-09-26 12:00:00,25.0,0.36984127,25.89753528084446 +2019-09-26 12:15:00,25.0,0.369312169,25.895771152966443 +2019-09-26 12:30:00,25.0,0.379365079,25.89400690987226 +2019-09-26 12:45:00,25.0,0.394179894,25.89224255178884 +2019-09-26 13:00:00,25.0,0.408994709,25.890478078943126 +2019-09-26 13:15:00,25.0,0.416402116,25.888713491562054 +2019-09-26 13:30:00,25.0,0.415873016,25.886948789872594 +2019-09-26 13:45:00,25.0,0.425925926,25.885183974101732 +2019-09-26 14:00:00,25.0,0.446560847,25.883419044476465 +2019-09-26 14:15:00,25.0,0.476719577,25.88165400122379 +2019-09-26 14:30:00,25.0,0.492063492,25.879888844570736 +2019-09-26 14:45:00,25.0,0.474074074,25.878123574744354 +2019-09-26 15:00:00,25.0,0.485185185,25.876358191971676 +2019-09-26 15:15:00,25.0,0.493121693,25.87459269647978 +2019-09-26 15:30:00,25.0,0.508994709,25.872827088495757 +2019-09-26 15:45:00,25.0,0.520634921,25.871061368246686 +2019-09-26 16:00:00,25.0,0.53015873,25.869295535959683 +2019-09-26 16:15:00,25.0,0.546031746,25.86752959186188 +2019-09-26 16:30:00,25.0,0.558201058,25.865763536180424 +2019-09-26 16:45:00,25.0,0.561375661,25.86399736914245 +2019-09-26 17:00:00,25.0,0.560846561,25.862231090975133 +2019-09-26 17:15:00,25.0,0.56031746,25.860464701905666 +2019-09-26 17:30:00,25.0,0.562433862,25.858698202161232 +2019-09-26 17:45:00,25.0,0.552910053,25.856931591969047 +2019-09-26 18:00:00,25.0,0.540740741,25.85516487155634 +2019-09-26 18:15:00,25.0,0.519047619,25.853398041150356 +2019-09-26 18:30:00,25.0,0.524867725,25.851631100978334 +2019-09-26 18:45:00,25.0,0.531746032,25.84986405126755 +2019-09-26 19:00:00,25.0,0.51957672,25.84809689224529 +2019-09-26 19:15:00,25.0,0.494708995,25.846329624138843 +2019-09-26 19:30:00,25.0,0.477777778,25.844562247175517 +2019-09-26 19:45:00,25.0,0.466666667,25.842794761582642 +2019-09-26 20:00:00,25.0,0.461375661,25.841027167587566 +2019-09-26 20:15:00,25.0,0.450793651,25.839259465417616 +2019-09-26 20:30:00,25.0,0.435978836,25.837491655300177 +2019-09-26 20:45:00,25.0,0.428042328,25.83572373746263 +2019-09-26 21:00:00,25.0,0.406349206,25.833955712132354 +2019-09-26 21:15:00,25.0,0.404232804,25.832187579536765 +2019-09-26 21:30:00,25.0,0.411111111,25.830419339903283 +2019-09-26 21:45:00,25.0,0.396296296,25.828650993459352 +2019-09-26 22:00:00,25.0,0.38042328,25.826882540432408 +2019-09-26 22:15:00,25.0,0.347089947,25.825113981049917 +2019-09-26 22:30:00,25.0,0.336507937,25.823345315539363 +2019-09-26 22:45:00,25.0,0.36031746,25.821576544128224 +2019-09-26 23:00:00,25.0,0.357142857,25.81980766704401 +2019-09-26 23:15:00,25.0,0.367724868,25.818038684514235 +2019-09-26 23:30:00,25.0,0.350793651,25.81626959676644 +2019-09-26 23:45:00,25.0,0.306878307,25.814500404028152 +2019-09-27 00:00:00,25.0,0.289417989,25.81273110652694 +2019-09-27 00:15:00,25.0,0.306349206,25.810961704490378 +2019-09-27 00:30:00,25.0,0.321164021,25.80919219814604 +2019-09-27 00:45:00,25.0,0.332275132,25.80742258772153 +2019-09-27 01:00:00,25.0,0.347089947,25.805652873444455 +2019-09-27 01:15:00,25.0,0.367724868,25.803883055542453 +2019-09-27 01:30:00,25.0,0.380952381,25.802113134243143 +2019-09-27 01:45:00,25.0,0.377248677,25.80034310977419 +2019-09-27 02:00:00,25.0,0.374074074,25.79857298236326 +2019-09-27 02:15:00,25.0,0.367195767,25.79680275223802 +2019-09-27 02:30:00,25.0,0.354497354,25.79503241962616 +2019-09-27 02:45:00,25.0,0.343386243,25.793261984755397 +2019-09-27 03:00:00,25.0,0.339153439,25.79149144785345 +2019-09-27 03:15:00,25.0,0.347089947,25.78972080914803 +2019-09-27 03:30:00,25.0,0.362962963,25.787950068866895 +2019-09-27 03:45:00,25.0,0.35978836,25.786179227237806 +2019-09-27 04:00:00,25.0,0.324338624,25.784408284488517 +2019-09-27 04:15:00,25.0,0.295238095,25.78263724084682 +2019-09-27 04:30:00,25.0,0.298412698,25.780866096540514 +2019-09-27 04:45:00,25.0,0.335978836,25.77909485179741 +2019-09-27 05:00:00,25.0,0.356613757,25.777323506845313 +2019-09-27 05:15:00,25.0,0.35978836,25.77555206191207 +2019-09-27 05:30:00,25.0,0.347619048,25.773780517225536 +2019-09-27 05:45:00,25.0,0.368253968,25.77200887301355 +2019-09-27 06:00:00,25.0,0.39047619,25.770237129504 +2019-09-27 06:15:00,25.0,0.397883598,25.76846528692477 +2019-09-27 06:30:00,25.0,0.418518519,25.76669334550376 +2019-09-27 06:45:00,25.0,0.410582011,25.764921305468874 +2019-09-27 07:00:00,25.0,0.411640212,25.763149167048038 +2019-09-27 07:15:00,25.0,0.434391534,25.761376930469197 +2019-09-27 07:30:00,25.0,0.459259259,25.759604595960287 +2019-09-27 07:45:00,25.0,0.471428571,25.757832163749278 +2019-09-27 08:00:00,25.0,0.491534392,25.75605963406414 +2019-09-27 08:15:00,25.0,0.500529101,25.754287007132874 +2019-09-27 08:30:00,25.0,0.497883598,25.75251428318346 +2019-09-27 08:45:00,25.0,0.506349206,25.750741462443916 +2019-09-27 09:00:00,25.0,0.511111111,25.748968545142276 +2019-09-27 09:15:00,25.0,0.52010582,25.74719553150656 +2019-09-27 09:30:00,25.0,0.531216931,25.745422421764825 +2019-09-27 09:45:00,25.0,0.547089947,25.743649216145148 +2019-09-27 10:00:00,25.0,0.553968254,25.741875914875575 +2019-09-27 10:15:00,25.0,0.553968254,25.740102518184205 +2019-09-27 10:30:00,25.0,0.547619048,25.738329026299137 +2019-09-27 10:45:00,25.0,0.528042328,25.73655543944849 +2019-09-27 11:00:00,25.0,0.514285714,25.73478175786037 +2019-09-27 11:15:00,25.0,0.518518519,25.733007981762924 +2019-09-27 11:30:00,25.0,0.523280423,25.731234111384303 +2019-09-27 11:45:00,25.0,0.50952381,25.729460146952647 +2019-09-27 12:00:00,25.0,0.50952381,25.72768608869614 +2019-09-27 12:15:00,25.0,0.501058201,25.725911936842966 +2019-09-27 12:30:00,25.0,0.497354497,25.724137691621326 +2019-09-27 12:45:00,25.0,0.497354497,25.722363353259414 +2019-09-27 13:00:00,25.0,0.487830688,25.720588921985456 +2019-09-27 13:15:00,25.0,0.460846561,25.718814398027693 +2019-09-27 13:30:00,25.0,0.432804233,25.717039781614346 +2019-09-27 13:45:00,25.0,0.447619048,25.715265072973686 +2019-09-27 14:00:00,25.0,0.443386243,25.71349027233398 +2019-09-27 14:15:00,25.0,0.444973545,25.71171537992351 +2019-09-27 14:30:00,25.0,0.455555556,25.709940395970555 +2019-09-27 14:45:00,25.0,0.457671958,25.708165320703422 +2019-09-27 15:00:00,25.0,0.444973545,25.706390154350437 +2019-09-27 15:15:00,25.0,0.44973545,25.704614897139905 +2019-09-27 15:30:00,25.0,0.445502646,25.702839549300176 +2019-09-27 15:45:00,25.0,0.424338624,25.701064111059598 +2019-09-27 16:00:00,25.0,0.437566138,25.699288582646542 +2019-09-27 16:15:00,25.0,0.45978836,25.69751296428936 +2019-09-27 16:30:00,25.0,0.45978836,25.69573725621645 +2019-09-27 16:45:00,25.0,0.452910053,25.693961458656208 +2019-09-27 17:00:00,25.0,0.478306878,25.692185571837033 +2019-09-27 17:15:00,25.0,0.487301587,25.690409595987347 +2019-09-27 17:30:00,25.0,0.468253968,25.688633531335583 +2019-09-27 17:45:00,25.0,0.444444444,25.686857378110187 +2019-09-27 18:00:00,25.0,0.46031746,25.685081136539598 +2019-09-27 18:15:00,25.0,0.460846561,25.683304806852288 +2019-09-27 18:30:00,25.0,0.471957672,25.681528389276743 +2019-09-27 18:45:00,25.0,0.491005291,25.67975188404143 +2019-09-27 19:00:00,25.0,0.51005291,25.677975291374857 +2019-09-27 19:15:00,25.0,0.512169312,25.676198611505534 +2019-09-27 19:30:00,25.0,0.518518519,25.67442184466199 +2019-09-27 19:45:00,25.0,0.516931217,25.672644991072737 +2019-09-27 20:00:00,25.0,0.503703704,25.67086805096633 +2019-09-27 20:15:00,25.0,0.530687831,25.669091024571333 +2019-09-27 20:30:00,25.0,0.53968254,25.667313912116292 +2019-09-27 20:45:00,25.0,0.558730159,25.665536713829788 +2019-09-27 21:00:00,25.0,0.550793651,25.663759429940413 +2019-09-27 21:15:00,25.0,0.512169312,25.661982060676774 +2019-09-27 21:30:00,25.0,0.5,25.660204606267463 +2019-09-27 21:45:00,25.0,0.504761905,25.65842706694111 +2019-09-27 22:00:00,25.0,0.549206349,25.656649442926348 +2019-09-27 22:15:00,25.0,0.584656085,25.65487173445181 +2019-09-27 22:30:00,25.0,0.596296296,25.653093941746153 +2019-09-27 22:45:00,25.0,0.592592593,25.651316065038042 +2019-09-27 23:00:00,25.0,0.595238095,25.64953810455616 +2019-09-27 23:15:00,25.0,0.601058201,25.64776006052918 +2019-09-27 23:30:00,25.0,0.594179894,25.645981933185798 +2019-09-27 23:45:00,25.0,0.594179894,25.644203722754735 +2019-09-28 00:00:00,25.0,0.600529101,25.64242542946469 +2019-09-28 00:15:00,25.0,0.60952381,25.6406470535444 +2019-09-28 00:30:00,25.0,0.608994709,25.638868595222604 +2019-09-28 00:45:00,25.0,0.598412698,25.63709005472806 +2019-09-28 01:00:00,25.0,0.599470899,25.63531143228951 +2019-09-28 01:15:00,25.0,0.592063492,25.633532728135734 +2019-09-28 01:30:00,25.0,0.58042328,25.63175394249552 +2019-09-28 01:45:00,25.0,0.592592593,25.629975075597645 +2019-09-28 02:00:00,25.0,0.587301587,25.62819612767092 +2019-09-28 02:15:00,25.0,0.588888889,25.626417098944152 +2019-09-28 02:30:00,25.0,0.588359788,25.62463798964618 +2019-09-28 02:45:00,25.0,0.595767196,25.62285880000581 +2019-09-28 03:00:00,25.0,0.596296296,25.621079530251905 +2019-09-28 03:15:00,25.0,0.595767196,25.619300180613322 +2019-09-28 03:30:00,25.0,0.589417989,25.617520751318906 +2019-09-28 03:45:00,25.0,0.591534392,25.615741242597547 +2019-09-28 04:00:00,25.0,0.594179894,25.61396165467813 +2019-09-28 04:15:00,25.0,0.595767196,25.612181987789537 +2019-09-28 04:30:00,25.0,0.593650794,25.610402242160678 +2019-09-28 04:45:00,25.0,0.602116402,25.608622418020474 +2019-09-28 05:00:00,25.0,0.606878307,25.60684251559785 +2019-09-28 05:15:00,25.0,0.611640212,25.605062535121736 +2019-09-28 05:30:00,25.0,0.622751323,25.60328247682107 +2019-09-28 05:45:00,25.0,0.620634921,25.60150234092483 +2019-09-28 06:00:00,25.0,0.60952381,25.599722127661963 +2019-09-28 06:15:00,25.0,0.606349206,25.59794183726144 +2019-09-28 06:30:00,25.0,0.628571429,25.59616146995226 +2019-09-28 06:45:00,25.0,0.631746032,25.59438102596342 +2019-09-28 07:00:00,25.0,0.62962963,25.592600505523908 +2019-09-28 07:15:00,25.0,0.64021164,25.59081990886275 +2019-09-28 07:30:00,25.0,0.653968254,25.589039236208972 +2019-09-28 07:45:00,25.0,0.652910053,25.5872584877916 +2019-09-28 08:00:00,25.0,0.640740741,25.585477663839683 +2019-09-28 08:15:00,25.0,0.642857143,25.58369676458227 +2019-09-28 08:30:00,25.0,0.652910053,25.58191579024844 +2019-09-28 08:45:00,25.0,0.64021164,25.580134741067248 +2019-09-28 09:00:00,25.0,0.614285714,25.57835361726778 +2019-09-28 09:15:00,25.0,0.61005291,25.576572419079145 +2019-09-28 09:30:00,25.0,0.607936508,25.57479114673042 +2019-09-28 09:45:00,25.0,0.635978836,25.573009800450727 +2019-09-28 10:00:00,25.0,0.642328042,25.571228380469186 +2019-09-28 10:15:00,25.0,0.641798942,25.56944688701494 +2019-09-28 10:30:00,25.0,0.613227513,25.56766532031711 +2019-09-28 10:45:00,25.0,0.627513228,25.565883680604855 +2019-09-28 11:00:00,25.0,0.622751323,25.564101968107337 +2019-09-28 11:15:00,25.0,0.633862434,25.56232018305371 +2019-09-28 11:30:00,25.0,0.633862434,25.560538325673164 +2019-09-28 11:45:00,25.0,0.625396825,25.558756396194877 +2019-09-28 12:00:00,25.0,0.621164021,25.556974394848062 +2019-09-28 12:15:00,25.0,0.621693122,25.5551923218619 +2019-09-28 12:30:00,25.0,0.621164021,25.55341017746562 +2019-09-28 12:45:00,25.0,0.632275132,25.55162796188845 +2019-09-28 13:00:00,25.0,0.628571429,25.549845675359602 +2019-09-28 13:15:00,25.0,0.61957672,25.548063318108337 +2019-09-28 13:30:00,25.0,0.628571429,25.5462808903639 +2019-09-28 13:45:00,25.0,0.632804233,25.544498392355557 +2019-09-28 14:00:00,25.0,0.61957672,25.542715824312562 +2019-09-28 14:15:00,25.0,0.616402116,25.540933186464205 +2019-09-28 14:30:00,25.0,0.615873016,25.539150479039776 +2019-09-28 14:45:00,25.0,0.61957672,25.537367702268558 +2019-09-28 15:00:00,25.0,0.622222222,25.535584856379863 +2019-09-28 15:15:00,25.0,0.625396825,25.533801941603002 +2019-09-28 15:30:00,25.0,0.63015873,25.532018958167313 +2019-09-28 15:45:00,25.0,0.623809524,25.530235906302103 +2019-09-28 16:00:00,25.0,0.621164021,25.528452786236723 +2019-09-28 16:15:00,25.0,0.615873016,25.526669598200534 +2019-09-28 16:30:00,25.0,0.606878307,25.524886342422874 +2019-09-28 16:45:00,25.0,0.607936508,25.523103019133117 +2019-09-28 17:00:00,25.0,0.608465608,25.52131962856064 +2019-09-28 17:15:00,25.0,0.611111111,25.51953617093484 +2019-09-28 17:30:00,25.0,0.607407407,25.51775264648508 +2019-09-28 17:45:00,25.0,0.606349206,25.515969055440777 +2019-09-28 18:00:00,25.0,0.607936508,25.51418539803135 +2019-09-28 18:15:00,25.0,0.60952381,25.512401674486203 +2019-09-28 18:30:00,25.0,0.611111111,25.510617885034762 +2019-09-28 18:45:00,25.0,0.60952381,25.50883402990647 +2019-09-28 19:00:00,25.0,0.612698413,25.507050109330777 +2019-09-28 19:15:00,25.0,0.620634921,25.505266123537115 +2019-09-28 19:30:00,25.0,0.629100529,25.503482072754956 +2019-09-28 19:45:00,25.0,0.64021164,25.501697957213775 +2019-09-28 20:00:00,25.0,0.647619048,25.499913777143036 +2019-09-28 20:15:00,25.0,0.650793651,25.49812953277223 +2019-09-28 20:30:00,25.0,0.651322751,25.49634522433085 +2019-09-28 20:45:00,25.0,0.656613757,25.49456085204841 +2019-09-28 21:00:00,25.0,0.672486772,25.492776416154395 +2019-09-28 21:15:00,25.0,0.676190476,25.49099191687834 +2019-09-28 21:30:00,25.0,0.678306878,25.48920735444978 +2019-09-28 21:45:00,25.0,0.673544974,25.487422729098228 +2019-09-28 22:00:00,25.0,0.675132275,25.485638041053235 +2019-09-28 22:15:00,25.0,0.678835979,25.483853290544364 +2019-09-28 22:30:00,25.0,0.673544974,25.482068477801153 +2019-09-28 22:45:00,25.0,0.672486772,25.48028360305318 +2019-09-28 23:00:00,25.0,0.664550265,25.47849866653002 +2019-09-28 23:15:00,25.0,0.659259259,25.47671366846126 +2019-09-28 23:30:00,25.0,0.661375661,25.474928609076482 +2019-09-28 23:45:00,25.0,0.64973545,25.47314348860528 +2019-09-29 00:00:00,25.0,0.648148148,25.47135830727728 +2019-09-29 00:15:00,25.0,0.644973545,25.469573065322077 +2019-09-29 00:30:00,25.0,0.636507937,25.4677877629693 +2019-09-29 00:45:00,25.0,0.612698413,25.466002400448577 +2019-09-29 01:00:00,25.0,0.607936508,25.464216977989558 +2019-09-29 01:15:00,25.0,0.606878307,25.462431495821868 +2019-09-29 01:30:00,25.0,0.627513228,25.460645954175167 +2019-09-29 01:45:00,25.0,0.635978836,25.458860353279125 +2019-09-29 02:00:00,25.0,0.640740741,25.457074693363396 +2019-09-29 02:15:00,25.0,0.653439153,25.455288974657662 +2019-09-29 02:30:00,25.0,0.659259259,25.45350319739161 +2019-09-29 02:45:00,25.0,0.644444444,25.451717361794934 +2019-09-29 03:00:00,25.0,0.615873016,25.449931468097315 +2019-09-29 03:15:00,25.0,0.617989418,25.448145516528474 +2019-09-29 03:30:00,25.0,0.622222222,25.446359507318125 +2019-09-29 03:45:00,25.0,0.625396825,25.444573440695976 +2019-09-29 04:00:00,25.0,0.62010582,25.44278731689176 +2019-09-29 04:15:00,25.0,0.624338624,25.441001136135217 +2019-09-29 04:30:00,25.0,0.633333333,25.439214898656097 +2019-09-29 04:45:00,25.0,0.638095238,25.437428604684133 +2019-09-29 05:00:00,25.0,0.634391534,25.435642254449085 +2019-09-29 05:15:00,25.0,0.61005291,25.433855848180734 +2019-09-29 05:30:00,25.0,0.539153439,25.432069386108832 +2019-09-29 05:45:00,25.0,0.476719577,25.430282868463166 +2019-09-29 06:00:00,25.0,0.432275132,25.428496295473522 +2019-09-29 06:15:00,25.0,0.417989418,25.4267096673697 +2019-09-29 06:30:00,25.0,0.420634921,25.424922984381485 +2019-09-29 06:45:00,25.0,0.388359788,25.423136246738693 +2019-09-29 07:00:00,25.0,0.37037037,25.421349454671148 +2019-09-29 07:15:00,25.0,0.383068783,25.41956260840865 +2019-09-29 07:30:00,25.0,0.434920635,25.41777570818104 +2019-09-29 07:45:00,25.0,0.474074074,25.415988754218155 +2019-09-29 08:00:00,25.0,0.505291005,25.41420174674984 +2019-09-29 08:15:00,25.0,0.557671958,25.412414686005928 +2019-09-29 08:30:00,25.0,0.603703704,25.410627572216285 +2019-09-29 08:45:00,25.0,0.628042328,25.408840405610782 +2019-09-29 09:00:00,25.0,0.643915344,25.407053186419276 +2019-09-29 09:15:00,25.0,0.632804233,25.40526591487164 +2019-09-29 09:30:00,25.0,0.618518519,25.40347859119777 +2019-09-29 09:45:00,25.0,0.62962963,25.401691215627558 +2019-09-29 10:00:00,25.0,0.633862434,25.399903788390883 +2019-09-29 10:15:00,25.0,0.642328042,25.398116309717658 +2019-09-29 10:30:00,25.0,0.66031746,25.396328779837802 +2019-09-29 10:45:00,25.0,0.673015873,25.39454119898121 +2019-09-29 11:00:00,25.0,0.682539683,25.392753567377817 +2019-09-29 11:15:00,25.0,0.685185185,25.39096588525755 +2019-09-29 11:30:00,25.0,0.682539683,25.38917815285036 +2019-09-29 11:45:00,25.0,0.678306878,25.38739037038616 +2019-09-29 12:00:00,25.0,0.671428571,25.385602538094922 +2019-09-29 12:15:00,25.0,0.667724868,25.383814656206596 +2019-09-29 12:30:00,25.0,0.665608466,25.382026724951135 +2019-09-29 12:45:00,25.0,0.661904762,25.38023874455851 +2019-09-29 13:00:00,25.0,0.65978836,25.3784507152587 +2019-09-29 13:15:00,25.0,0.651851852,25.376662637281694 +2019-09-29 13:30:00,25.0,0.652380952,25.374874510857456 +2019-09-29 13:45:00,25.0,0.666666667,25.373086336215994 +2019-09-29 14:00:00,25.0,0.673015873,25.37129811358731 +2019-09-29 14:15:00,25.0,0.668253968,25.3695098432014 +2019-09-29 14:30:00,25.0,0.658730159,25.367721525288275 +2019-09-29 14:45:00,25.0,0.621693122,25.365933160077958 +2019-09-29 15:00:00,25.0,0.565608466,25.364144747800477 +2019-09-29 15:15:00,25.0,0.535978836,25.362356288685852 +2019-09-29 15:30:00,25.0,0.53015873,25.360567782964118 +2019-09-29 15:45:00,25.0,0.533862434,25.358779230865334 +2019-09-29 16:00:00,25.0,0.524867725,25.356990632619524 +2019-09-29 16:15:00,25.0,0.510582011,25.355201988456756 +2019-09-29 16:30:00,25.0,0.463492063,25.35341329860709 +2019-09-29 16:45:00,25.0,0.448677249,25.351624563300586 +2019-09-29 17:00:00,25.0,0.41005291,25.34983578276731 +2019-09-29 17:15:00,25.0,0.355026455,25.34804695723735 +2019-09-29 17:30:00,25.0,0.317989418,25.346258086940797 +2019-09-29 17:45:00,25.0,0.301058201,25.344469172107715 +2019-09-29 18:00:00,25.0,0.291534392,25.34268021296821 +2019-09-29 18:15:00,25.0,0.258201058,25.340891209752396 +2019-09-29 18:30:00,25.0,0.232275132,25.339102162690352 +2019-09-29 18:45:00,25.0,0.204232804,25.337313072012208 +2019-09-29 19:00:00,25.0,0.176190476,25.335523937948075 +2019-09-29 19:15:00,25.0,0.172486772,25.333734760728085 +2019-09-29 19:30:00,25.0,0.182010582,25.33194554058235 +2019-09-29 19:45:00,25.0,0.202116402,25.330156277741008 +2019-09-29 20:00:00,25.0,0.214814815,25.328366972434214 +2019-09-29 20:15:00,25.0,0.20952381,25.326577624892092 +2019-09-29 20:30:00,25.0,0.199470899,25.324788235344798 +2019-09-29 20:45:00,25.0,0.199470899,25.32299880402249 +2019-09-29 21:00:00,25.0,0.201587302,25.32120933115534 +2019-09-29 21:15:00,25.0,0.207407407,25.319419816973493 +2019-09-29 21:30:00,25.0,0.203174603,25.317630261707126 +2019-09-29 21:45:00,25.0,0.19047619,25.315840665586432 +2019-09-29 22:00:00,25.0,0.182010582,25.314051028841572 +2019-09-29 22:15:00,25.0,0.19047619,25.312261351702745 +2019-09-29 22:30:00,25.0,0.2,25.310471634400134 +2019-09-29 22:45:00,25.0,0.225396825,25.308681877163956 +2019-09-29 23:00:00,25.0,0.265079365,25.306892080224394 +2019-09-29 23:15:00,25.0,0.325396825,25.305102243811657 +2019-09-29 23:30:00,25.0,0.35978836,25.303312368155975 +2019-09-29 23:45:00,25.0,0.368783069,25.301522453487546 +2019-09-30 00:00:00,25.0,0.392592593,25.2997325000366 +2019-09-30 00:15:00,25.0,0.434920635,25.29794250803337 +2019-09-30 00:30:00,25.0,0.5,25.29615247770809 +2019-09-30 00:45:00,25.0,0.539153439,25.29436240929099 +2019-09-30 01:00:00,25.0,0.555026455,25.29257230301231 +2019-09-30 01:15:00,25.0,0.577248677,25.290782159102314 +2019-09-30 01:30:00,25.0,0.576190476,25.288991977791238 +2019-09-30 01:45:00,25.0,0.583068783,25.28720175930934 +2019-09-30 02:00:00,25.0,0.596825397,25.28541150388689 +2019-09-30 02:15:00,25.0,0.626455026,25.283621211754163 +2019-09-30 02:30:00,25.0,0.65026455,25.281830883141406 +2019-09-30 02:45:00,25.0,0.658730159,25.280040518278913 +2019-09-30 03:00:00,25.0,0.651851852,25.278250117396965 +2019-09-30 03:15:00,25.0,0.645502646,25.27645968072584 +2019-09-30 03:30:00,25.0,0.640740741,25.274669208495826 +2019-09-30 03:45:00,25.0,0.63968254,25.272878700937227 +2019-09-30 04:00:00,25.0,0.633862434,25.271088158280346 +2019-09-30 04:15:00,25.0,0.641269841,25.269297580755467 +2019-09-30 04:30:00,25.0,0.650793651,25.26750696859291 +2019-09-30 04:45:00,25.0,0.646031746,25.265716322023003 +2019-09-30 05:00:00,25.0,0.638095238,25.263925641276035 +2019-09-30 05:15:00,25.0,0.642857143,25.262134926582338 +2019-09-30 05:30:00,25.0,0.646560847,25.260344178172243 +2019-09-30 05:45:00,25.0,0.64973545,25.25855339627609 +2019-09-30 06:00:00,25.0,0.648148148,25.256762581124185 +2019-09-30 06:15:00,25.0,0.649206349,25.254971732946885 +2019-09-30 06:30:00,25.0,0.625925926,25.25318085197454 +2019-09-30 06:45:00,25.0,0.596296296,25.25138993843748 +2019-09-30 07:00:00,25.0,0.584126984,25.249598992566064 +2019-09-30 07:15:00,25.0,0.575132275,25.24780801459065 +2019-09-30 07:30:00,25.0,0.56984127,25.246017004741603 +2019-09-30 07:45:00,25.0,0.567724868,25.24422596324927 +2019-09-30 08:00:00,25.0,0.555026455,25.24243489034403 +2019-09-30 08:15:00,25.0,0.534920635,25.24064378625626 +2019-09-30 08:30:00,25.0,0.535449735,25.238852651216323 +2019-09-30 08:45:00,25.0,0.531746032,25.237061485454607 +2019-09-30 09:00:00,25.0,0.532275132,25.23527028920149 +2019-09-30 09:15:00,25.0,0.535978836,25.233479062687376 +2019-09-30 09:30:00,25.0,0.540740741,25.231687806142634 +2019-09-30 09:45:00,25.0,0.553439153,25.229896519797673 +2019-09-30 10:00:00,25.0,0.582010582,25.228105203882894 +2019-09-30 10:15:00,25.0,0.611111111,25.226313858628693 +2019-09-30 10:30:00,25.0,0.614814815,25.224522484265474 +2019-09-30 10:45:00,25.0,0.616402116,25.222731081023667 +2019-09-30 11:00:00,25.0,0.615343915,25.220939649133662 +2019-09-30 11:15:00,25.0,0.614814815,25.219148188825887 +2019-09-30 11:30:00,25.0,0.616931217,25.217356700330768 +2019-09-30 11:45:00,25.0,0.616931217,25.215565183878734 +2019-09-30 12:00:00,25.0,0.616931217,25.2137736397002 +2019-09-30 12:15:00,25.0,0.615873016,25.211982068025605 +2019-09-30 12:30:00,25.0,0.608465608,25.210190469085394 +2019-09-30 12:45:00,25.0,0.61005291,25.20839884310999 +2019-09-30 13:00:00,25.0,0.599470899,25.206607190329848 +2019-09-30 13:15:00,25.0,0.598412698,25.204815510975408 +2019-09-30 13:30:00,25.0,0.612698413,25.20302380527713 +2019-09-30 13:45:00,25.0,0.613227513,25.201232073465455 +2019-09-30 14:00:00,25.0,0.632275132,25.199440315770843 +2019-09-30 14:15:00,25.0,0.634920635,25.197648532423766 +2019-09-30 14:30:00,25.0,0.634920635,25.19585672365467 +2019-09-30 14:45:00,25.0,0.63015873,25.19406488969403 +2019-09-30 15:00:00,25.0,0.632804233,25.19227303077231 +2019-09-30 15:15:00,25.0,0.626455026,25.19048114712 +2019-09-30 15:30:00,25.0,0.614285714,25.188689238967555 +2019-09-30 15:45:00,25.0,0.621693122,25.186897306545465 +2019-09-30 16:00:00,25.0,0.654497354,25.185105350084218 +2019-09-30 16:15:00,25.0,0.641269841,25.183313369814282 +2019-09-30 16:30:00,25.0,0.603174603,25.18152136596616 +2019-09-30 16:45:00,25.0,0.595238095,25.179729338770336 +2019-09-30 17:00:00,25.0,0.591005291,25.177937288457322 +2019-09-30 17:15:00,25.0,0.607407407,25.176145215257588 +2019-09-30 17:30:00,25.0,0.591005291,25.174353119401655 +2019-09-30 17:45:00,25.0,0.551322751,25.172561001120023 +2019-09-30 18:00:00,25.0,0.542857143,25.170768860643193 +2019-09-30 18:15:00,25.0,0.53015873,25.16897669820167 +2019-09-30 18:30:00,25.0,0.504232804,25.16718451402598 +2019-09-30 18:45:00,25.0,0.477777778,25.165392308346636 +2019-09-30 19:00:00,25.0,0.476719577,25.163600081394144 +2019-09-30 19:15:00,25.0,0.44973545,25.16180783339903 +2019-09-30 19:30:00,25.0,0.433862434,25.160015564591827 +2019-09-30 19:45:00,25.0,0.408465608,25.158223275203042 +2019-09-30 20:00:00,25.0,0.395767196,25.156430965463215 +2019-09-30 20:15:00,25.0,0.377248677,25.154638635602875 +2019-09-30 20:30:00,25.0,0.353968254,25.152846285852565 +2019-09-30 20:45:00,25.0,0.342328042,25.1510539164428 +2019-09-30 21:00:00,25.0,0.312169312,25.149261527604136 +2019-09-30 21:15:00,25.0,0.306878307,25.147469119567113 +2019-09-30 21:30:00,25.0,0.297354497,25.145676692562265 +2019-09-30 21:45:00,25.0,0.267724868,25.143884246820143 +2019-09-30 22:00:00,25.0,0.237566138,25.142091782571296 +2019-09-30 22:15:00,25.0,0.222222222,25.140299300046284 +2019-09-30 22:30:00,25.0,0.213756614,25.138506799475643 +2019-09-30 22:45:00,25.0,0.211111111,25.136714281089937 +2019-09-30 23:00:00,25.0,0.204232804,25.134921745119733 +2019-09-30 23:15:00,25.0,0.196296296,25.13312919179557 +2019-09-30 23:30:00,25.0,0.191534392,25.131336621348026 +2019-09-30 23:45:00,25.0,0.182539683,25.12954403400766 +2019-10-01 00:00:00,25.0,0.174074074,25.127751430005052 +2019-10-01 00:15:00,25.0,0.168783069,25.125958809570747 +2019-10-01 00:30:00,25.0,0.168783069,25.124166172935332 +2019-10-01 00:45:00,25.0,0.162433862,25.122373520329383 +2019-10-01 01:00:00,25.0,0.158730159,25.120580851983462 +2019-10-01 01:15:00,25.0,0.155555556,25.118788168128148 +2019-10-01 01:30:00,25.0,0.152380952,25.11699546899403 +2019-10-01 01:45:00,25.0,0.147619048,25.11520275481169 +2019-10-01 02:00:00,25.0,0.140740741,25.1134100258117 +2019-10-01 02:15:00,25.0,0.134920635,25.111617282224646 +2019-10-01 02:30:00,25.0,0.128571429,25.10982452428113 +2019-10-01 02:45:00,25.0,0.124867725,25.10803175221172 +2019-10-01 03:00:00,25.0,0.123280423,25.106238966247016 +2019-10-01 03:15:00,25.0,0.122222222,25.104446166617613 +2019-10-01 03:30:00,25.0,0.121693122,25.102653353554107 +2019-10-01 03:45:00,25.0,0.113756614,25.100860527287082 +2019-10-01 04:00:00,25.0,0.10952381,25.099067688047143 +2019-10-01 04:15:00,25.0,0.117989418,25.097274836064898 +2019-10-01 04:30:00,25.0,0.117460317,25.09548197157093 +2019-10-01 04:45:00,25.0,0.121693122,25.09368909479585 +2019-10-01 05:00:00,25.0,0.135449735,25.09189620597027 +2019-10-01 05:15:00,25.0,0.14973545,25.090103305324778 +2019-10-01 05:30:00,25.0,0.157142857,25.08831039308999 +2019-10-01 05:45:00,25.0,0.166666667,25.086517469496517 +2019-10-01 06:00:00,25.0,0.175132275,25.084724534774974 +2019-10-01 06:15:00,25.0,0.180952381,25.082931589155955 +2019-10-01 06:30:00,25.0,0.193121693,25.081138632870086 +2019-10-01 06:45:00,25.0,0.208465608,25.079345666147987 +2019-10-01 07:00:00,25.0,0.216402116,25.077552689220255 +2019-10-01 07:15:00,25.0,0.230687831,25.075759702317516 +2019-10-01 07:30:00,25.0,0.235449735,25.07396670567039 +2019-10-01 07:45:00,25.0,0.251851852,25.072173699509502 +2019-10-01 08:00:00,25.0,0.268783069,25.070380684065462 +2019-10-01 08:15:00,25.0,0.278306878,25.06858765956889 +2019-10-01 08:30:00,25.0,0.274603175,25.066794626250427 +2019-10-01 08:45:00,25.0,0.282010582,25.065001584340674 +2019-10-01 09:00:00,25.0,0.312698413,25.063208534070267 +2019-10-01 09:15:00,25.0,0.323809524,25.061415475669833 +2019-10-01 09:30:00,25.0,0.323809524,25.059622409370007 +2019-10-01 09:45:00,25.0,0.331746032,25.057829335401397 +2019-10-01 10:00:00,25.0,0.349206349,25.056036253994648 +2019-10-01 10:15:00,25.0,0.311640212,25.054243165380395 +2019-10-01 10:30:00,25.0,0.277777778,25.05245006978925 +2019-10-01 10:45:00,25.0,0.284126984,25.050656967451857 +2019-10-01 11:00:00,25.0,0.264550265,25.048863858598846 +2019-10-01 11:15:00,25.0,0.276190476,25.04707074346086 +2019-10-01 11:30:00,25.0,0.270899471,25.04527762226852 +2019-10-01 11:45:00,25.0,0.261904762,25.043484495252468 +2019-10-01 12:00:00,25.0,0.277248677,25.04169136264335 +2019-10-01 12:15:00,25.0,0.285185185,25.03989822467178 +2019-10-01 12:30:00,25.0,0.256084656,25.038105081568407 +2019-10-01 12:45:00,25.0,0.252910053,25.036311933563873 +2019-10-01 13:00:00,25.0,0.253968254,25.034518780888824 +2019-10-01 13:15:00,25.0,0.245502646,25.032725623773878 +2019-10-01 13:30:00,25.0,0.246031746,25.030932462449687 +2019-10-01 13:45:00,25.0,0.231216931,25.0291392971469 +2019-10-01 14:00:00,25.0,0.206349206,25.02734612809614 +2019-10-01 14:15:00,25.0,0.188888889,25.02555295552806 +2019-10-01 14:30:00,25.0,0.176719577,25.0237597796733 +2019-10-01 14:45:00,25.0,0.148148148,25.021966600762507 +2019-10-01 15:00:00,25.0,0.122222222,25.020173419026314 +2019-10-01 15:15:00,25.0,0.112698413,25.018380234695368 +2019-10-01 15:30:00,25.0,0.112698413,25.01658704800032 +2019-10-01 15:45:00,25.0,0.113756614,25.0147938591718 +2019-10-01 16:00:00,25.0,0.10952381,25.013000668440462 +2019-10-01 16:15:00,25.0,0.111111111,25.011207476036947 +2019-10-01 16:30:00,25.0,0.117460317,25.00941428219191 +2019-10-01 16:45:00,25.0,0.13015873,25.007621087135973 +2019-10-01 17:00:00,25.0,0.14021164,25.0058278910998 +2019-10-01 17:15:00,25.0,0.13968254,25.004034694314033 +2019-10-01 17:30:00,25.0,0.151322751,25.002241497009308 +2019-10-01 17:45:00,25.0,0.163492063,25.000448299416277 +2019-10-01 18:00:00,25.0,0.192592593,24.998655101765586 +2019-10-01 18:15:00,25.0,0.206878307,24.996861904287886 +2019-10-01 18:30:00,25.0,0.191005291,24.995068707213807 +2019-10-01 18:45:00,25.0,0.196825397,24.993275510774 +2019-10-01 19:00:00,25.0,0.2,24.991482315199125 +2019-10-01 19:15:00,25.0,0.196825397,24.989689120719806 +2019-10-01 19:30:00,25.0,0.196825397,24.987895927566694 +2019-10-01 19:45:00,25.0,0.193650794,24.986102735970434 +2019-10-01 20:00:00,25.0,0.21005291,24.984309546161683 +2019-10-01 20:15:00,25.0,0.228042328,24.98251635837107 +2019-10-01 20:30:00,25.0,0.231746032,24.980723172829236 +2019-10-01 20:45:00,25.0,0.246560847,24.978929989766844 +2019-10-01 21:00:00,25.0,0.269312169,24.977136809414517 +2019-10-01 21:15:00,25.0,0.302116402,24.975343632002904 +2019-10-01 21:30:00,25.0,0.308994709,24.973550457762663 +2019-10-01 21:45:00,25.0,0.301058201,24.97175728692441 +2019-10-01 22:00:00,25.0,0.288359788,24.969964119718803 +2019-10-01 22:15:00,25.0,0.317989418,24.96817095637648 +2019-10-01 22:30:00,25.0,0.325925926,24.966377797128093 +2019-10-01 22:45:00,25.0,0.302645503,24.964584642204258 +2019-10-01 23:00:00,25.0,0.347089947,24.96279149183563 +2019-10-01 23:15:00,25.0,0.39047619,24.960998346252858 +2019-10-01 23:30:00,25.0,0.387830688,24.95920520568656 +2019-10-01 23:45:00,25.0,0.416402116,24.95741207036738 +2019-10-02 00:00:00,25.0,0.438624339,24.95561894052596 +2019-10-02 00:15:00,25.0,0.475132275,24.953825816392943 +2019-10-02 00:30:00,25.0,0.439153439,24.952032698198945 +2019-10-02 00:45:00,25.0,0.370899471,24.950239586174614 +2019-10-02 01:00:00,25.0,0.36031746,24.948446480550594 +2019-10-02 01:15:00,25.0,0.407936508,24.946653381557496 +2019-10-02 01:30:00,25.0,0.502116402,24.94486028942596 +2019-10-02 01:45:00,25.0,0.496825397,24.943067204386626 +2019-10-02 02:00:00,25.0,0.484126984,24.941274126670127 +2019-10-02 02:15:00,25.0,0.505820106,24.939481056507077 +2019-10-02 02:30:00,25.0,0.52010582,24.937687994128115 +2019-10-02 02:45:00,25.0,0.537566138,24.935894939763873 +2019-10-02 03:00:00,25.0,0.533862434,24.934101893644968 +2019-10-02 03:15:00,25.0,0.570899471,24.932308856002024 +2019-10-02 03:30:00,25.0,0.582539683,24.930515827065676 +2019-10-02 03:45:00,25.0,0.54973545,24.92872280706655 +2019-10-02 04:00:00,25.0,0.556084656,24.926929796235253 +2019-10-02 04:15:00,25.0,0.594708995,24.925136794802416 +2019-10-02 04:30:00,25.0,0.586243386,24.923343802998666 +2019-10-02 04:45:00,25.0,0.57989418,24.921550821054602 +2019-10-02 05:00:00,25.0,0.595767196,24.919757849200856 +2019-10-02 05:15:00,25.0,0.560846561,24.917964887668038 +2019-10-02 05:30:00,25.0,0.599470899,24.916171936686776 +2019-10-02 05:45:00,25.0,0.596296296,24.914378996487667 +2019-10-02 06:00:00,25.0,0.575132275,24.912586067301326 +2019-10-02 06:15:00,25.0,0.587830688,24.91079314935838 +2019-10-02 06:30:00,25.0,0.587830688,24.909000242889416 +2019-10-02 06:45:00,25.0,0.554497354,24.90720734812505 +2019-10-02 07:00:00,25.0,0.553439153,24.905414465295888 +2019-10-02 07:15:00,25.0,0.572486772,24.903621594632547 +2019-10-02 07:30:00,25.0,0.554497354,24.90182873636561 +2019-10-02 07:45:00,25.0,0.546560847,24.90003589072569 +2019-10-02 08:00:00,25.0,0.543386243,24.89824305794339 +2019-10-02 08:15:00,25.0,0.538095238,24.896450238249297 +2019-10-02 08:30:00,25.0,0.555026455,24.894657431874013 +2019-10-02 08:45:00,25.0,0.567724868,24.892864639048135 +2019-10-02 09:00:00,25.0,0.586772487,24.891071860002263 +2019-10-02 09:15:00,25.0,0.57989418,24.889279094966973 +2019-10-02 09:30:00,25.0,0.567195767,24.88748634417286 +2019-10-02 09:45:00,25.0,0.577248677,24.885693607850524 +2019-10-02 10:00:00,25.0,0.577248677,24.88390088623053 +2019-10-02 10:15:00,25.0,0.593121693,24.882108179543472 +2019-10-02 10:30:00,25.0,0.583068783,24.880315488019935 +2019-10-02 10:45:00,25.0,0.554497354,24.878522811890505 +2019-10-02 11:00:00,25.0,0.603703704,24.876730151385743 +2019-10-02 11:15:00,25.0,0.581481481,24.874937506736234 +2019-10-02 11:30:00,25.0,0.584656085,24.873144878172564 +2019-10-02 11:45:00,25.0,0.604232804,24.87135226592528 +2019-10-02 12:00:00,25.0,0.615873016,24.86955967022497 +2019-10-02 12:15:00,25.0,0.605820106,24.86776709130219 +2019-10-02 12:30:00,25.0,0.594179894,24.86597452938753 +2019-10-02 12:45:00,25.0,0.614285714,24.86418198471152 +2019-10-02 13:00:00,25.0,0.621164021,24.86238945750474 +2019-10-02 13:15:00,25.0,0.624867725,24.860596947997756 +2019-10-02 13:30:00,25.0,0.636507937,24.858804456421105 +2019-10-02 13:45:00,25.0,0.629100529,24.857011983005354 +2019-10-02 14:00:00,25.0,0.615343915,24.85521952798105 +2019-10-02 14:15:00,25.0,0.598412698,24.853427091578755 +2019-10-02 14:30:00,25.0,0.618518519,24.851634674028997 +2019-10-02 14:45:00,25.0,0.641798942,24.84984227556233 +2019-10-02 15:00:00,25.0,0.657671958,24.848049896409307 +2019-10-02 15:15:00,25.0,0.674603175,24.84625753680045 +2019-10-02 15:30:00,25.0,0.677248677,24.844465196966304 +2019-10-02 15:45:00,25.0,0.668783069,24.84267287713741 +2019-10-02 16:00:00,25.0,0.657671958,24.84088057754429 +2019-10-02 16:15:00,25.0,0.617989418,24.839088298417476 +2019-10-02 16:30:00,25.0,0.632804233,24.837296039987496 +2019-10-02 16:45:00,25.0,0.637037037,24.835503802484887 +2019-10-02 17:00:00,25.0,0.628571429,24.83371158614015 +2019-10-02 17:15:00,25.0,0.625925926,24.831919391183813 +2019-10-02 17:30:00,25.0,0.623809524,24.830127217846403 +2019-10-02 17:45:00,25.0,0.625925926,24.828335066358413 +2019-10-02 18:00:00,25.0,0.610582011,24.826542936950364 +2019-10-02 18:15:00,25.0,0.597883598,24.824750829852764 +2019-10-02 18:30:00,25.0,0.588359788,24.822958745296127 +2019-10-02 18:45:00,25.0,0.587301587,24.821166683510935 +2019-10-02 19:00:00,25.0,0.593121693,24.8193746447277 +2019-10-02 19:15:00,25.0,0.587301587,24.817582629176925 +2019-10-02 19:30:00,25.0,0.587301587,24.815790637089084 +2019-10-02 19:45:00,25.0,0.596296296,24.81399866869468 +2019-10-02 20:00:00,25.0,0.593121693,24.812206724224193 +2019-10-02 20:15:00,25.0,0.595238095,24.810414803908124 +2019-10-02 20:30:00,25.0,0.580952381,24.808622907976932 +2019-10-02 20:45:00,25.0,0.577248677,24.806831036661105 +2019-10-02 21:00:00,25.0,0.578306878,24.805039190191124 +2019-10-02 21:15:00,25.0,0.593121693,24.803247368797447 +2019-10-02 21:30:00,25.0,0.571428571,24.801455572710548 +2019-10-02 21:45:00,25.0,0.582010582,24.79966380216089 +2019-10-02 22:00:00,25.0,0.575132275,24.79787205737895 +2019-10-02 22:15:00,25.0,0.575661376,24.79608033859516 +2019-10-02 22:30:00,25.0,0.54973545,24.794288646039995 +2019-10-02 22:45:00,25.0,0.526455026,24.792496979943905 +2019-10-02 23:00:00,25.0,0.483068783,24.790705340537325 +2019-10-02 23:15:00,25.0,0.462433862,24.78891372805071 +2019-10-02 23:30:00,25.0,0.468253968,24.787122142714495 +2019-10-02 23:45:00,25.0,0.434920635,24.785330584759137 +2019-10-03 00:00:00,25.0,0.408994709,24.783539054415044 +2019-10-03 00:15:00,25.0,0.376719577,24.78174755191266 +2019-10-03 00:30:00,25.0,0.34973545,24.779956077482417 +2019-10-03 00:45:00,25.0,0.313227513,24.778164631354727 +2019-10-03 01:00:00,25.0,0.315873016,24.776373213760014 +2019-10-03 01:15:00,25.0,0.282010582,24.774581824928696 +2019-10-03 01:30:00,25.0,0.284126984,24.77279046509119 +2019-10-03 01:45:00,25.0,0.305820106,24.770999134477897 +2019-10-03 02:00:00,25.0,0.289417989,24.76920783331922 +2019-10-03 02:15:00,25.0,0.297354497,24.76741656184558 +2019-10-03 02:30:00,25.0,0.277248677,24.76562532028735 +2019-10-03 02:45:00,25.0,0.279365079,24.76383410887493 +2019-10-03 03:00:00,25.0,0.282539683,24.762042927838714 +2019-10-03 03:15:00,25.0,0.25026455,24.7602517774091 +2019-10-03 03:30:00,25.0,0.231216931,24.758460657816443 +2019-10-03 03:45:00,25.0,0.201587302,24.756669569291137 +2019-10-03 04:00:00,25.0,0.2,24.754878512063563 +2019-10-03 04:15:00,25.0,0.183597884,24.753087486364073 +2019-10-03 04:30:00,25.0,0.168253968,24.751296492423045 +2019-10-03 04:45:00,25.0,0.160846561,24.749505530470834 +2019-10-03 05:00:00,25.0,0.162962963,24.747714600737808 +2019-10-03 05:15:00,25.0,0.17037037,24.74592370345431 +2019-10-03 05:30:00,25.0,0.164550265,24.74413283885069 +2019-10-03 05:45:00,25.0,0.138624339,24.742342007157305 +2019-10-03 06:00:00,25.0,0.136507937,24.74055120860448 +2019-10-03 06:15:00,25.0,0.155555556,24.738760443422557 +2019-10-03 06:30:00,25.0,0.158730159,24.736969711841873 +2019-10-03 06:45:00,25.0,0.149206349,24.735179014092758 +2019-10-03 07:00:00,25.0,0.143915344,24.733388350405527 +2019-10-03 07:15:00,25.0,0.158730159,24.7315977210105 +2019-10-03 07:30:00,25.0,0.161904762,24.729807126138002 +2019-10-03 07:45:00,25.0,0.150793651,24.72801656601833 +2019-10-03 08:00:00,25.0,0.133862434,24.726226040881798 +2019-10-03 08:15:00,25.0,0.129100529,24.724435550958702 +2019-10-03 08:30:00,25.0,0.12010582,24.722645096479358 +2019-10-03 08:45:00,25.0,0.108994709,24.72085467767403 +2019-10-03 09:00:00,25.0,0.097883598,24.71906429477302 +2019-10-03 09:15:00,25.0,0.083068783,24.717273948006618 +2019-10-03 09:30:00,25.0,0.071957672,24.71548363760509 +2019-10-03 09:45:00,25.0,0.057142857,24.71369336379871 +2019-10-03 10:00:00,25.0,0.048148148,24.711903126817763 +2019-10-03 10:15:00,25.0,0.044973545,24.710112926892492 +2019-10-03 10:30:00,25.0,0.03968254,24.70832276425317 +2019-10-03 10:45:00,25.0,0.039153439,24.70653263913005 +2019-10-03 11:00:00,25.0,0.036507937,24.704742551753384 +2019-10-03 11:15:00,25.0,0.037566138,24.70295250235341 +2019-10-03 11:30:00,25.0,0.037037037,24.70116249116037 +2019-10-03 11:45:00,25.0,0.032275132,24.699372518404513 +2019-10-03 12:00:00,25.0,0.028042328,24.69758258431605 +2019-10-03 12:15:00,25.0,0.03015873,24.69579268912521 +2019-10-03 12:30:00,25.0,0.030687831,24.69400283306222 +2019-10-03 12:45:00,25.0,0.025925926,24.692213016357304 +2019-10-03 13:00:00,25.0,0.023809524,24.69042323924065 +2019-10-03 13:15:00,25.0,0.023280423,24.68863350194248 +2019-10-03 13:30:00,25.0,0.024338624,24.686843804692995 +2019-10-03 13:45:00,25.0,0.024338624,24.685054147722376 +2019-10-03 14:00:00,25.0,0.023280423,24.68326453126082 +2019-10-03 14:15:00,25.0,0.022222222,24.681474955538516 +2019-10-03 14:30:00,25.0,0.021693122,24.679685420785646 +2019-10-03 14:45:00,25.0,0.021164021,24.67789592723237 +2019-10-03 15:00:00,25.0,0.021693122,24.676106475108867 +2019-10-03 15:15:00,25.0,0.025396825,24.674317064645304 +2019-10-03 15:30:00,25.0,0.033333333,24.67252769607183 +2019-10-03 15:45:00,25.0,0.035449735,24.670738369618597 +2019-10-03 16:00:00,25.0,0.035449735,24.66894908551576 +2019-10-03 16:15:00,25.0,0.032275132,24.667159843993463 +2019-10-03 16:30:00,25.0,0.022222222,24.66537064528183 +2019-10-03 16:45:00,25.0,0.018518519,24.663581489610998 +2019-10-03 17:00:00,25.0,0.016402116,24.6617923772111 +2019-10-03 17:15:00,25.0,0.017989418,24.660003308312245 +2019-10-03 17:30:00,25.0,0.017989418,24.658214283144545 +2019-10-03 17:45:00,25.0,0.015873016,24.656425301938118 +2019-10-03 18:00:00,25.0,0.013756614,24.654636364923075 +2019-10-03 18:15:00,25.0,0.013227513,24.65284747232949 +2019-10-03 18:30:00,25.0,0.012698413,24.651058624387467 +2019-10-03 18:45:00,25.0,0.016931217,24.6492698213271 +2019-10-03 19:00:00,25.0,0.020634921,24.64748106337845 +2019-10-03 19:15:00,25.0,0.022222222,24.6456923507716 +2019-10-03 19:30:00,25.0,0.02010582,24.64390368373662 +2019-10-03 19:45:00,25.0,0.01957672,24.642115062503585 +2019-10-03 20:00:00,25.0,0.023280423,24.640326487302527 +2019-10-03 20:15:00,25.0,0.032275132,24.638537958363507 +2019-10-03 20:30:00,25.0,0.039153439,24.636749475916584 +2019-10-03 20:45:00,25.0,0.042857143,24.634961040191772 +2019-10-03 21:00:00,25.0,0.050793651,24.633172651419116 +2019-10-03 21:15:00,25.0,0.060846561,24.631384309828643 +2019-10-03 21:30:00,25.0,0.077248677,24.629596015650378 +2019-10-03 21:45:00,25.0,0.106878307,24.627807769114327 +2019-10-03 22:00:00,25.0,0.125396825,24.6260195704505 +2019-10-03 22:15:00,25.0,0.134391534,24.624231419888908 +2019-10-03 22:30:00,25.0,0.160846561,24.622443317659535 +2019-10-03 22:45:00,25.0,0.176719577,24.620655263992372 +2019-10-03 23:00:00,25.0,0.166666667,24.61886725911741 +2019-10-03 23:15:00,25.0,0.154497354,24.617079303264628 +2019-10-03 23:30:00,25.0,0.145502646,24.615291396663984 +2019-10-03 23:45:00,25.0,0.152380952,24.613503539545455 +2019-10-04 00:00:00,25.0,0.166666667,24.611715732139 +2019-10-04 00:15:00,25.0,0.194179894,24.60992797467456 +2019-10-04 00:30:00,25.0,0.246560847,24.60814026738208 +2019-10-04 00:45:00,25.0,0.299470899,24.60635261049151 +2019-10-04 01:00:00,25.0,0.3,24.604565004232786 +2019-10-04 01:15:00,25.0,0.278835979,24.60277744883582 +2019-10-04 01:30:00,25.0,0.270899471,24.600989944530532 +2019-10-04 01:45:00,25.0,0.246031746,24.599202491546855 +2019-10-04 02:00:00,25.0,0.239153439,24.59741509011467 +2019-10-04 02:15:00,25.0,0.247089947,24.595627740463886 +2019-10-04 02:30:00,25.0,0.223280423,24.593840442824398 +2019-10-04 02:45:00,25.0,0.194179894,24.5920531974261 +2019-10-04 03:00:00,25.0,0.181481481,24.590266004498858 +2019-10-04 03:15:00,25.0,0.183597884,24.58847886427255 +2019-10-04 03:30:00,25.0,0.192063492,24.586691776977048 +2019-10-04 03:45:00,25.0,0.215873016,24.5849047428422 +2019-10-04 04:00:00,25.0,0.237037037,24.58311776209786 +2019-10-04 04:15:00,25.0,0.248677249,24.58133083497389 +2019-10-04 04:30:00,25.0,0.258201058,24.57954396170011 +2019-10-04 04:45:00,25.0,0.257142857,24.577757142506357 +2019-10-04 05:00:00,25.0,0.245502646,24.575970377622454 +2019-10-04 05:15:00,25.0,0.252910053,24.574183667278234 +2019-10-04 05:30:00,25.0,0.288888889,24.572397011703487 +2019-10-04 05:45:00,25.0,0.333333333,24.570610411128026 +2019-10-04 06:00:00,25.0,0.369312169,24.568823865781653 +2019-10-04 06:15:00,25.0,0.38042328,24.567037375894145 +2019-10-04 06:30:00,25.0,0.371957672,24.565250941695293 +2019-10-04 06:45:00,25.0,0.364550265,24.563464563414872 +2019-10-04 07:00:00,25.0,0.346031746,24.561678241282653 +2019-10-04 07:15:00,25.0,0.331746032,24.559891975528387 +2019-10-04 07:30:00,25.0,0.353439153,24.558105766381832 +2019-10-04 07:45:00,25.0,0.361904762,24.556319614072745 +2019-10-04 08:00:00,25.0,0.357142857,24.554533518830848 +2019-10-04 08:15:00,25.0,0.360846561,24.552747480885877 +2019-10-04 08:30:00,25.0,0.358730159,24.550961500467565 +2019-10-04 08:45:00,25.0,0.352910053,24.549175577805627 +2019-10-04 09:00:00,25.0,0.335978836,24.547389713129764 +2019-10-04 09:15:00,25.0,0.322751323,24.545603906669683 +2019-10-04 09:30:00,25.0,0.325396825,24.543818158655085 +2019-10-04 09:45:00,25.0,0.332275132,24.542032469315647 +2019-10-04 10:00:00,25.0,0.347089947,24.540246838881046 +2019-10-04 10:15:00,25.0,0.338624339,24.538461267580967 +2019-10-04 10:30:00,25.0,0.339153439,24.53667575564507 +2019-10-04 10:45:00,25.0,0.362433862,24.534890303303005 +2019-10-04 11:00:00,25.0,0.340740741,24.533104910784424 +2019-10-04 11:15:00,25.0,0.280952381,24.53131957831898 +2019-10-04 11:30:00,25.0,0.229100529,24.529534306136284 +2019-10-04 11:45:00,25.0,0.212698413,24.527749094465975 +2019-10-04 12:00:00,25.0,0.198941799,24.525963943537672 +2019-10-04 12:15:00,25.0,0.200529101,24.524178853580988 +2019-10-04 12:30:00,25.0,0.205820106,24.522393824825517 +2019-10-04 12:45:00,25.0,0.204232804,24.520608857500854 +2019-10-04 13:00:00,25.0,0.207407407,24.5188239518366 +2019-10-04 13:15:00,25.0,0.197883598,24.51703910806231 +2019-10-04 13:30:00,25.0,0.198941799,24.51525432640757 +2019-10-04 13:45:00,25.0,0.206349206,24.51346960710194 +2019-10-04 14:00:00,25.0,0.203703704,24.511684950374985 +2019-10-04 14:15:00,25.0,0.193121693,24.509900356456228 +2019-10-04 14:30:00,25.0,0.202645503,24.508115825575224 +2019-10-04 14:45:00,25.0,0.208465608,24.50633135796151 +2019-10-04 15:00:00,25.0,0.219047619,24.50454695384459 +2019-10-04 15:15:00,25.0,0.234391534,24.502762613453985 +2019-10-04 15:30:00,25.0,0.249206349,24.500978337019205 +2019-10-04 15:45:00,25.0,0.244444444,24.499194124769755 +2019-10-04 16:00:00,25.0,0.23968254,24.497409976935106 +2019-10-04 16:15:00,25.0,0.22962963,24.495625893744748 +2019-10-04 16:30:00,25.0,0.228571429,24.493841875428163 +2019-10-04 16:45:00,25.0,0.224867725,24.4920579222148 +2019-10-04 17:00:00,25.0,0.231746032,24.49027403433412 +2019-10-04 17:15:00,25.0,0.249206349,24.488490212015574 +2019-10-04 17:30:00,25.0,0.289417989,24.486706455488612 +2019-10-04 17:45:00,25.0,0.317460317,24.48492276498264 +2019-10-04 18:00:00,25.0,0.352380952,24.483139140727097 +2019-10-04 18:15:00,25.0,0.374603175,24.481355582951398 +2019-10-04 18:30:00,25.0,0.375132275,24.47957209188494 +2019-10-04 18:45:00,25.0,0.362433862,24.47778866775712 +2019-10-04 19:00:00,25.0,0.387301587,24.47600531079733 +2019-10-04 19:15:00,25.0,0.422751323,24.47422202123496 +2019-10-04 19:30:00,25.0,0.473544974,24.47243879929936 +2019-10-04 19:45:00,25.0,0.476190476,24.470655645219903 +2019-10-04 20:00:00,25.0,0.481481481,24.46887255922595 +2019-10-04 20:15:00,25.0,0.487830688,24.46708954154683 +2019-10-04 20:30:00,25.0,0.473544974,24.465306592411885 +2019-10-04 20:45:00,25.0,0.45978836,24.463523712050442 +2019-10-04 21:00:00,25.0,0.448148148,24.46174090069183 +2019-10-04 21:15:00,25.0,0.440740741,24.45995815856534 +2019-10-04 21:30:00,25.0,0.427513228,24.45817548590028 +2019-10-04 21:45:00,25.0,0.405291005,24.456392882925954 +2019-10-04 22:00:00,25.0,0.385185185,24.454610349871622 +2019-10-04 22:15:00,25.0,0.347089947,24.452827886966567 +2019-10-04 22:30:00,25.0,0.317989418,24.451045494440066 +2019-10-04 22:45:00,25.0,0.350793651,24.449263172521356 +2019-10-04 23:00:00,25.0,0.374603175,24.44748092143969 +2019-10-04 23:15:00,25.0,0.375661376,24.445698741424305 +2019-10-04 23:30:00,25.0,0.387301587,24.44391663270444 +2019-10-04 23:45:00,25.0,0.402116402,24.442134595509295 +2019-10-05 00:00:00,25.0,0.398941799,24.44035263006809 +2019-10-05 00:15:00,25.0,0.377248677,24.438570736610036 +2019-10-05 00:30:00,25.0,0.365079365,24.4367889153643 +2019-10-05 00:45:00,25.0,0.376719577,24.435007166560077 +2019-10-05 01:00:00,25.0,0.38042328,24.43322549042654 +2019-10-05 01:15:00,25.0,0.372486772,24.43144388719286 +2019-10-05 01:30:00,25.0,0.376719577,24.429662357088176 +2019-10-05 01:45:00,25.0,0.385714286,24.427880900341638 +2019-10-05 02:00:00,25.0,0.387830688,24.42609951718239 +2019-10-05 02:15:00,25.0,0.398412698,24.42431820783954 +2019-10-05 02:30:00,25.0,0.398412698,24.422536972542215 +2019-10-05 02:45:00,25.0,0.396825397,24.420755811519523 +2019-10-05 03:00:00,25.0,0.405820106,24.418974725000567 +2019-10-05 03:15:00,25.0,0.403174603,24.417193713214417 +2019-10-05 03:30:00,25.0,0.403174603,24.415412776390156 +2019-10-05 03:45:00,25.0,0.401058201,24.41363191475687 +2019-10-05 04:00:00,25.0,0.407936508,24.411851128543592 +2019-10-05 04:15:00,25.0,0.398941799,24.410070417979384 +2019-10-05 04:30:00,25.0,0.404761905,24.408289783293284 +2019-10-05 04:45:00,25.0,0.405291005,24.40650922471433 +2019-10-05 05:00:00,25.0,0.416402116,24.404728742471523 +2019-10-05 05:15:00,25.0,0.421164021,24.40294833679388 +2019-10-05 05:30:00,25.0,0.406349206,24.401168007910417 +2019-10-05 05:45:00,25.0,0.393650794,24.399387756050096 +2019-10-05 06:00:00,25.0,0.403174603,24.397607581441918 +2019-10-05 06:15:00,25.0,0.388888889,24.395827484314843 +2019-10-05 06:30:00,25.0,0.394179894,24.39404746489784 +2019-10-05 06:45:00,25.0,0.405291005,24.39226752341985 +2019-10-05 07:00:00,25.0,0.396825397,24.390487660109816 +2019-10-05 07:15:00,25.0,0.396296296,24.38870787519668 +2019-10-05 07:30:00,25.0,0.411111111,24.38692816890934 +2019-10-05 07:45:00,25.0,0.413756614,24.385148541476717 +2019-10-05 08:00:00,25.0,0.417460317,24.383368993127714 +2019-10-05 08:15:00,25.0,0.41957672,24.381589524091225 +2019-10-05 08:30:00,25.0,0.428571429,24.379810134596113 +2019-10-05 08:45:00,25.0,0.438624339,24.378030824871256 +2019-10-05 09:00:00,25.0,0.423809524,24.376251595145522 +2019-10-05 09:15:00,25.0,0.419047619,24.374472445647744 +2019-10-05 09:30:00,25.0,0.41957672,24.372693376606765 +2019-10-05 09:45:00,25.0,0.421693122,24.370914388251414 +2019-10-05 10:00:00,25.0,0.422222222,24.369135480810524 +2019-10-05 10:15:00,25.0,0.408994709,24.367356654512875 +2019-10-05 10:30:00,25.0,0.403174603,24.365577909587277 +2019-10-05 10:45:00,25.0,0.401587302,24.363799246262527 +2019-10-05 11:00:00,25.0,0.393121693,24.36202066476738 +2019-10-05 11:15:00,25.0,0.37989418,24.36024216533061 +2019-10-05 11:30:00,25.0,0.355555556,24.358463748180974 +2019-10-05 11:45:00,25.0,0.355555556,24.356685413547225 +2019-10-05 12:00:00,25.0,0.346560847,24.354907161658076 +2019-10-05 12:15:00,25.0,0.331746032,24.35312899274226 +2019-10-05 12:30:00,25.0,0.31957672,24.351350907028497 +2019-10-05 12:45:00,25.0,0.308465608,24.349572904745475 +2019-10-05 13:00:00,25.0,0.305820106,24.34779498612189 +2019-10-05 13:15:00,25.0,0.283597884,24.346017151386423 +2019-10-05 13:30:00,25.0,0.272486772,24.34423940076775 +2019-10-05 13:45:00,25.0,0.272486772,24.342461734494517 +2019-10-05 14:00:00,25.0,0.273544974,24.340684152795376 +2019-10-05 14:15:00,25.0,0.262433862,24.338906655898974 +2019-10-05 14:30:00,25.0,0.251851852,24.337129244033918 +2019-10-05 14:45:00,25.0,0.230687831,24.33535191742883 +2019-10-05 15:00:00,25.0,0.221693122,24.333574676312317 +2019-10-05 15:15:00,25.0,0.225396825,24.331797520912982 +2019-10-05 15:30:00,25.0,0.228571429,24.330020451459387 +2019-10-05 15:45:00,25.0,0.233862434,24.32824346818011 +2019-10-05 16:00:00,25.0,0.227513228,24.326466571303722 +2019-10-05 16:15:00,25.0,0.218518519,24.32468976105875 +2019-10-05 16:30:00,25.0,0.215343915,24.322913037673747 +2019-10-05 16:45:00,25.0,0.226984127,24.32113640137724 +2019-10-05 17:00:00,25.0,0.243386243,24.31935985239774 +2019-10-05 17:15:00,25.0,0.24973545,24.31758339096374 +2019-10-05 17:30:00,25.0,0.25978836,24.31580701730375 +2019-10-05 17:45:00,25.0,0.261904762,24.314030731646252 +2019-10-05 18:00:00,25.0,0.258730159,24.312254534219697 +2019-10-05 18:15:00,25.0,0.275661376,24.31047842525256 +2019-10-05 18:30:00,25.0,0.285185185,24.308702404973285 +2019-10-05 18:45:00,25.0,0.291005291,24.3069264736103 +2019-10-05 19:00:00,25.0,0.294708995,24.30515063139204 +2019-10-05 19:15:00,25.0,0.327513228,24.303374878546908 +2019-10-05 19:30:00,25.0,0.342328042,24.30159921530332 +2019-10-05 19:45:00,25.0,0.348677249,24.29982364188965 +2019-10-05 20:00:00,25.0,0.364021164,24.298048158534282 +2019-10-05 20:15:00,25.0,0.372486772,24.29627276546559 +2019-10-05 20:30:00,25.0,0.385714286,24.29449746291192 +2019-10-05 20:45:00,25.0,0.412169312,24.292722251101615 +2019-10-05 21:00:00,25.0,0.426455026,24.290947130263014 +2019-10-05 21:15:00,25.0,0.457142857,24.289172100624437 +2019-10-05 21:30:00,25.0,0.478306878,24.287397162414184 +2019-10-05 21:45:00,25.0,0.480952381,24.285622315860557 +2019-10-05 22:00:00,25.0,0.475661376,24.28384756119185 +2019-10-05 22:15:00,25.0,0.471428571,24.28207289863631 +2019-10-05 22:30:00,25.0,0.465608466,24.280298328422223 +2019-10-05 22:45:00,25.0,0.462962963,24.278523850777827 +2019-10-05 23:00:00,25.0,0.454497354,24.27674946593137 +2019-10-05 23:15:00,25.0,0.447619048,24.274975174111066 +2019-10-05 23:30:00,25.0,0.444973545,24.27320097554513 +2019-10-05 23:45:00,25.0,0.438624339,24.271426870461774 +2019-10-06 00:00:00,25.0,0.445502646,24.26965285908917 +2019-10-06 00:15:00,25.0,0.449206349,24.267878941655507 +2019-10-06 00:30:00,25.0,0.462962963,24.266105118388946 +2019-10-06 00:45:00,25.0,0.468253968,24.264331389517654 +2019-10-06 01:00:00,25.0,0.460846561,24.26255775526975 +2019-10-06 01:15:00,25.0,0.462433862,24.260784215873375 +2019-10-06 01:30:00,25.0,0.461904762,24.259010771556653 +2019-10-06 01:45:00,25.0,0.457671958,24.25723742254767 +2019-10-06 02:00:00,25.0,0.457142857,24.255464169074532 +2019-10-06 02:15:00,25.0,0.449206349,24.253691011365312 +2019-10-06 02:30:00,25.0,0.443915344,24.25191794964809 +2019-10-06 02:45:00,25.0,0.444973545,24.250144984150904 +2019-10-06 03:00:00,25.0,0.454497354,24.2483721151018 +2019-10-06 03:15:00,25.0,0.451851852,24.246599342728828 +2019-10-06 03:30:00,25.0,0.447619048,24.244826667259982 +2019-10-06 03:45:00,25.0,0.437037037,24.243054088923277 +2019-10-06 04:00:00,25.0,0.439153439,24.241281607946707 +2019-10-06 04:15:00,25.0,0.431216931,24.239509224558258 +2019-10-06 04:30:00,25.0,0.434920635,24.237736938985886 +2019-10-06 04:45:00,25.0,0.432804233,24.23596475145755 +2019-10-06 05:00:00,25.0,0.438095238,24.234192662201206 +2019-10-06 05:15:00,25.0,0.441798942,24.232420671444764 +2019-10-06 05:30:00,25.0,0.443915344,24.230648779416153 +2019-10-06 05:45:00,25.0,0.453968254,24.228876986343273 +2019-10-06 06:00:00,25.0,0.474074074,24.22710529245403 +2019-10-06 06:15:00,25.0,0.491534392,24.225333697976282 +2019-10-06 06:30:00,25.0,0.503703704,24.22356220313791 +2019-10-06 06:45:00,25.0,0.50952381,24.221790808166766 +2019-10-06 07:00:00,25.0,0.523809524,24.220019513290683 +2019-10-06 07:15:00,25.0,0.541798942,24.218248318737498 +2019-10-06 07:30:00,25.0,0.548677249,24.21647722473502 +2019-10-06 07:45:00,25.0,0.554497354,24.214706231511062 +2019-10-06 08:00:00,25.0,0.56031746,24.2129353392934 +2019-10-06 08:15:00,25.0,0.568253968,24.21116454830981 +2019-10-06 08:30:00,25.0,0.570899471,24.209393858788076 +2019-10-06 08:45:00,25.0,0.570899471,24.20762327095592 +2019-10-06 09:00:00,25.0,0.573544974,24.205852785041092 +2019-10-06 09:15:00,25.0,0.577248677,24.204082401271318 +2019-10-06 09:30:00,25.0,0.58042328,24.202312119874318 +2019-10-06 09:45:00,25.0,0.582010582,24.200541941077766 +2019-10-06 10:00:00,25.0,0.582539683,24.19877186510936 +2019-10-06 10:15:00,25.0,0.587830688,24.19700189219678 +2019-10-06 10:30:00,25.0,0.587301587,24.195232022567666 +2019-10-06 10:45:00,25.0,0.584126984,24.19346225644967 +2019-10-06 11:00:00,25.0,0.582539683,24.19169259407043 +2019-10-06 11:15:00,25.0,0.580952381,24.189923035657557 +2019-10-06 11:30:00,25.0,0.57989418,24.18815358143865 +2019-10-06 11:45:00,25.0,0.58042328,24.186384231641316 +2019-10-06 12:00:00,25.0,0.579365079,24.184614986493127 +2019-10-06 12:15:00,25.0,0.582010582,24.18284584622164 +2019-10-06 12:30:00,25.0,0.585185185,24.181076811054407 +2019-10-06 12:45:00,25.0,0.587301587,24.179307881218982 +2019-10-06 13:00:00,25.0,0.587830688,24.177539056942866 +2019-10-06 13:15:00,25.0,0.587830688,24.175770338453578 +2019-10-06 13:30:00,25.0,0.586772487,24.174001725978616 +2019-10-06 13:45:00,25.0,0.583597884,24.172233219745472 +2019-10-06 14:00:00,25.0,0.579365079,24.170464819981596 +2019-10-06 14:15:00,25.0,0.574603175,24.16869652691446 +2019-10-06 14:30:00,25.0,0.576719577,24.166928340771502 +2019-10-06 14:45:00,25.0,0.578306878,24.165160261780144 +2019-10-06 15:00:00,25.0,0.576190476,24.163392290167803 +2019-10-06 15:15:00,25.0,0.576190476,24.161624426161882 +2019-10-06 15:30:00,25.0,0.577777778,24.159856669989775 +2019-10-06 15:45:00,25.0,0.58042328,24.158089021878837 +2019-10-06 16:00:00,25.0,0.580952381,24.156321482056438 +2019-10-06 16:15:00,25.0,0.583597884,24.15455405074993 +2019-10-06 16:30:00,25.0,0.586772487,24.15278672818663 +2019-10-06 16:45:00,25.0,0.589417989,24.15101951459386 +2019-10-06 17:00:00,25.0,0.595238095,24.149252410198923 +2019-10-06 17:15:00,25.0,0.597354497,24.147485415229117 +2019-10-06 17:30:00,25.0,0.6,24.1457185299117 +2019-10-06 17:45:00,25.0,0.605820106,24.143951754473946 +2019-10-06 18:00:00,25.0,0.608994709,24.142185089143105 +2019-10-06 18:15:00,25.0,0.610582011,24.14041853414639 +2019-10-06 18:30:00,25.0,0.611111111,24.138652089711037 +2019-10-06 18:45:00,25.0,0.613227513,24.136885756064245 +2019-10-06 19:00:00,25.0,0.613756614,24.135119533433212 +2019-10-06 19:15:00,25.0,0.613227513,24.133353422045094 +2019-10-06 19:30:00,25.0,0.608994709,24.131587422127065 +2019-10-06 19:45:00,25.0,0.604761905,24.12982153390628 +2019-10-06 20:00:00,25.0,0.602645503,24.128055757609857 +2019-10-06 20:15:00,25.0,0.601058201,24.126290093464917 +2019-10-06 20:30:00,25.0,0.601058201,24.124524541698566 +2019-10-06 20:45:00,25.0,0.594179894,24.122759102537902 +2019-10-06 21:00:00,25.0,0.589417989,24.120993776209986 +2019-10-06 21:15:00,25.0,0.586243386,24.11922856294188 +2019-10-06 21:30:00,25.0,0.582010582,24.117463462960647 +2019-10-06 21:45:00,25.0,0.575661376,24.115698476493296 +2019-10-06 22:00:00,25.0,0.568783069,24.113933603766853 +2019-10-06 22:15:00,25.0,0.55978836,24.112168845008316 +2019-10-06 22:30:00,25.0,0.547089947,24.11040420044469 +2019-10-06 22:45:00,25.0,0.528571429,24.10863967030292 +2019-10-06 23:00:00,25.0,0.497883598,24.10687525480998 +2019-10-06 23:15:00,25.0,0.473015873,24.105110954192824 +2019-10-06 23:30:00,25.0,0.447089947,24.103346768678357 +2019-10-06 23:45:00,25.0,0.424867725,24.101582698493498 +2019-10-07 00:00:00,25.0,0.413227513,24.099818743865157 +2019-10-07 00:15:00,25.0,0.38994709,24.098054905020216 +2019-10-07 00:30:00,25.0,0.372486772,24.096291182185535 +2019-10-07 00:45:00,25.0,0.356613757,24.09452757558797 +2019-10-07 01:00:00,25.0,0.343386243,24.092764085454373 +2019-10-07 01:15:00,25.0,0.333862434,24.09100071201155 +2019-10-07 01:30:00,25.0,0.323809524,24.089237455486316 +2019-10-07 01:45:00,25.0,0.30952381,24.08747431610547 +2019-10-07 02:00:00,25.0,0.293121693,24.0857112940958 +2019-10-07 02:15:00,25.0,0.273015873,24.083948389684046 +2019-10-07 02:30:00,25.0,0.268783069,24.08218560309697 +2019-10-07 02:45:00,25.0,0.268783069,24.080422934561316 +2019-10-07 03:00:00,25.0,0.274074074,24.07866038430378 +2019-10-07 03:15:00,25.0,0.288888889,24.07689795255108 +2019-10-07 03:30:00,25.0,0.304761905,24.075135639529897 +2019-10-07 03:45:00,25.0,0.312698413,24.07337344546692 +2019-10-07 04:00:00,25.0,0.306349206,24.071611370588784 +2019-10-07 04:15:00,25.0,0.291005291,24.069849415122142 +2019-10-07 04:30:00,25.0,0.264021164,24.06808757929363 +2019-10-07 04:45:00,25.0,0.241269841,24.06632586332984 +2019-10-07 05:00:00,25.0,0.217989418,24.064564267457378 +2019-10-07 05:15:00,25.0,0.207936508,24.062802791902833 +2019-10-07 05:30:00,25.0,0.205820106,24.06104143689275 +2019-10-07 05:45:00,25.0,0.205820106,24.059280202653692 +2019-10-07 06:00:00,25.0,0.214285714,24.05751908941219 +2019-10-07 06:15:00,25.0,0.242328042,24.055758097394772 +2019-10-07 06:30:00,25.0,0.268253968,24.053997226827924 +2019-10-07 06:45:00,25.0,0.298412698,24.05223647793814 +2019-10-07 07:00:00,25.0,0.311640212,24.050475850951905 +2019-10-07 07:15:00,25.0,0.306349206,24.04871534609565 +2019-10-07 07:30:00,25.0,0.299470899,24.04695496359583 +2019-10-07 07:45:00,25.0,0.292063492,24.04519470367887 +2019-10-07 08:00:00,25.0,0.283597884,24.043434566571182 +2019-10-07 08:15:00,25.0,0.271428571,24.041674552499146 +2019-10-07 08:30:00,25.0,0.256613757,24.039914661689146 +2019-10-07 08:45:00,25.0,0.246031746,24.03815489436755 +2019-10-07 09:00:00,25.0,0.230687831,24.036395250760688 +2019-10-07 09:15:00,25.0,0.224338624,24.0346357310949 +2019-10-07 09:30:00,25.0,0.227513228,24.032876335596498 +2019-10-07 09:45:00,25.0,0.231746032,24.031117064491788 +2019-10-07 10:00:00,25.0,0.23015873,24.029357918007033 +2019-10-07 10:15:00,25.0,0.241798942,24.02759889636851 +2019-10-07 10:30:00,25.0,0.248677249,24.025839999802475 +2019-10-07 10:45:00,25.0,0.259259259,24.02408122853514 +2019-10-07 11:00:00,25.0,0.276719577,24.022322582792743 +2019-10-07 11:15:00,25.0,0.287301587,24.020564062801473 +2019-10-07 11:30:00,25.0,0.289417989,24.01880566878753 +2019-10-07 11:45:00,25.0,0.289417989,24.01704740097706 +2019-10-07 12:00:00,25.0,0.294708995,24.01528925959623 +2019-10-07 12:15:00,25.0,0.294708995,24.01353124487118 +2019-10-07 12:30:00,25.0,0.29047619,24.011773357028016 +2019-10-07 12:45:00,25.0,0.282010582,24.01001559629285 +2019-10-07 13:00:00,25.0,0.273544974,24.00825796289177 +2019-10-07 13:15:00,25.0,0.273015873,24.00650045705085 +2019-10-07 13:30:00,25.0,0.270899471,24.004743078996132 +2019-10-07 13:45:00,25.0,0.276190476,24.002985828953666 +2019-10-07 14:00:00,25.0,0.268253968,24.001228707149473 +2019-10-07 14:15:00,25.0,0.261375661,23.999471713809548 +2019-10-07 14:30:00,25.0,0.264550265,23.997714849159884 +2019-10-07 14:45:00,25.0,0.271957672,23.995958113426457 +2019-10-07 15:00:00,25.0,0.284656085,23.994201506835232 +2019-10-07 15:15:00,25.0,0.295238095,23.99244502961212 +2019-10-07 15:30:00,25.0,0.317460317,23.990688681983066 +2019-10-07 15:45:00,25.0,0.332804233,23.988932464173978 +2019-10-07 16:00:00,25.0,0.347619048,23.987176376410723 +2019-10-07 16:15:00,25.0,0.356084656,23.985420418919187 +2019-10-07 16:30:00,25.0,0.371957672,23.983664591925223 +2019-10-07 16:45:00,25.0,0.394179894,23.98190889565468 +2019-10-07 17:00:00,25.0,0.414285714,23.980153330333362 +2019-10-07 17:15:00,25.0,0.422751323,23.978397896187083 +2019-10-07 17:30:00,25.0,0.436507937,23.97664259344164 +2019-10-07 17:45:00,25.0,0.439153439,23.97488742232278 +2019-10-07 18:00:00,25.0,0.447089947,23.973132383056278 +2019-10-07 18:15:00,25.0,0.458201058,23.97137747586786 +2019-10-07 18:30:00,25.0,0.476190476,23.969622700983262 +2019-10-07 18:45:00,25.0,0.498412698,23.967868058628166 +2019-10-07 19:00:00,25.0,0.506878307,23.96611354902827 +2019-10-07 19:15:00,25.0,0.512169312,23.96435917240925 +2019-10-07 19:30:00,25.0,0.521164021,23.96260492899674 +2019-10-07 19:45:00,25.0,0.527513228,23.960850819016382 +2019-10-07 20:00:00,25.0,0.525396825,23.9590968426938 +2019-10-07 20:15:00,25.0,0.524338624,23.957343000254596 +2019-10-07 20:30:00,25.0,0.529100529,23.95558929192434 +2019-10-07 20:45:00,25.0,0.531746032,23.953835717928605 +2019-10-07 21:00:00,25.0,0.538095238,23.95208227849295 +2019-10-07 21:15:00,25.0,0.544973545,23.950328973842886 +2019-10-07 21:30:00,25.0,0.548148148,23.94857580420394 +2019-10-07 21:45:00,25.0,0.549206349,23.946822769801607 +2019-10-07 22:00:00,25.0,0.552380952,23.94506987086137 +2019-10-07 22:15:00,25.0,0.556084656,23.943317107608685 +2019-10-07 22:30:00,25.0,0.561375661,23.941564480268994 +2019-10-07 22:45:00,25.0,0.568253968,23.93981198906774 +2019-10-07 23:00:00,25.0,0.652910053,23.93805963423031 +2019-10-07 23:15:00,25.0,0.654497354,23.936307415982107 +2019-10-07 23:30:00,25.0,0.658201058,23.934555334548513 +2019-10-07 23:45:00,25.0,0.661375661,23.93280339015487 +2019-10-08 00:00:00,25.0,0.662433862,23.931051583026523 +2019-10-08 00:15:00,25.0,0.661904762,23.929299913388796 +2019-10-08 00:30:00,25.0,0.668253968,23.927548381467 +2019-10-08 00:45:00,25.0,0.677248677,23.9257969874864 +2019-10-08 01:00:00,25.0,0.681481481,23.92404573167228 +2019-10-08 01:15:00,25.0,0.687830688,23.922294614249896 +2019-10-08 01:30:00,25.0,0.691534392,23.92054363544446 +2019-10-08 01:45:00,25.0,0.696825397,23.918792795481203 +2019-10-08 02:00:00,25.0,0.703703704,23.917042094585316 +2019-10-08 02:15:00,25.0,0.705291005,23.915291532981993 +2019-10-08 02:30:00,25.0,0.684126984,23.913541110896368 +2019-10-08 02:45:00,25.0,0.655555556,23.911790828553602 +2019-10-08 03:00:00,25.0,0.639153439,23.910040686178828 +2019-10-08 03:15:00,25.0,0.626455026,23.90829068399713 +2019-10-08 03:30:00,25.0,0.620634921,23.906540822233612 +2019-10-08 03:45:00,25.0,0.635449735,23.904791101113343 +2019-10-08 04:00:00,25.0,0.637566138,23.903041520861386 +2019-10-08 04:15:00,25.0,0.597883598,23.901292081702756 +2019-10-08 04:30:00,25.0,0.578306878,23.899542783862483 +2019-10-08 04:45:00,25.0,0.565079365,23.89779362756557 +2019-10-08 05:00:00,25.0,0.576719577,23.896044613036985 +2019-10-08 05:15:00,25.0,0.588888889,23.894295740501693 +2019-10-08 05:30:00,25.0,0.588888889,23.89254701018464 +2019-10-08 05:45:00,25.0,0.617989418,23.890798422310763 +2019-10-08 06:00:00,25.0,0.63015873,23.88904997710495 +2019-10-08 06:15:00,25.0,0.62010582,23.8873016747921 +2019-10-08 06:30:00,25.0,0.625396825,23.885553515597092 +2019-10-08 06:45:00,25.0,0.604761905,23.88380549974476 +2019-10-08 07:00:00,25.0,0.582010582,23.882057627459947 +2019-10-08 07:15:00,25.0,0.568253968,23.880309898967468 +2019-10-08 07:30:00,25.0,0.566666667,23.87856231449213 +2019-10-08 07:45:00,25.0,0.546560847,23.87681487425869 +2019-10-08 08:00:00,25.0,0.538095238,23.875067578491922 +2019-10-08 08:15:00,25.0,0.530687831,23.873320427416573 +2019-10-08 08:30:00,25.0,0.515343915,23.871573421257352 +2019-10-08 08:45:00,25.0,0.517460317,23.869826560238963 +2019-10-08 09:00:00,25.0,0.52010582,23.8680798445861 +2019-10-08 09:15:00,25.0,0.516931217,23.866333274523434 +2019-10-08 09:30:00,25.0,0.54021164,23.864586850275597 +2019-10-08 09:45:00,25.0,0.543386243,23.862840572067224 +2019-10-08 10:00:00,25.0,0.556084656,23.861094440122937 +2019-10-08 10:15:00,25.0,0.550793651,23.85934845466731 +2019-10-08 10:30:00,25.0,0.533333333,23.857602615924925 +2019-10-08 10:45:00,25.0,0.528571429,23.85585692412033 +2019-10-08 11:00:00,25.0,0.531216931,23.85411137947808 +2019-10-08 11:15:00,25.0,0.532275132,23.85236598222266 +2019-10-08 11:30:00,25.0,0.526984127,23.850620732578587 +2019-10-08 11:45:00,25.0,0.525396825,23.848875630770344 +2019-10-08 12:00:00,25.0,0.561375661,23.84713067702237 +2019-10-08 12:15:00,25.0,0.582010582,23.845385871559117 +2019-10-08 12:30:00,25.0,0.57989418,23.843641214605 +2019-10-08 12:45:00,25.0,0.586243386,23.84189670638444 +2019-10-08 13:00:00,25.0,0.603703704,23.840152347121794 +2019-10-08 13:15:00,25.0,0.614285714,23.838408137041434 +2019-10-08 13:30:00,25.0,0.628571429,23.836664076367718 +2019-10-08 13:45:00,25.0,0.643915344,23.834920165324952 +2019-10-08 14:00:00,25.0,0.648148148,23.83317640413745 +2019-10-08 14:15:00,25.0,0.647619048,23.831432793029496 +2019-10-08 14:30:00,25.0,0.662962963,23.82968933222537 +2019-10-08 14:45:00,25.0,0.67037037,23.827946021949302 +2019-10-08 15:00:00,25.0,0.694708995,23.82620286242553 +2019-10-08 15:15:00,25.0,0.708994709,23.824459853878263 +2019-10-08 15:30:00,25.0,0.706349206,23.822716996531685 +2019-10-08 15:45:00,25.0,0.701587302,23.82097429060997 +2019-10-08 16:00:00,25.0,0.707407407,23.819231736337272 +2019-10-08 16:15:00,25.0,0.711111111,23.81748933393773 +2019-10-08 16:30:00,25.0,0.70952381,23.815747083635433 +2019-10-08 16:45:00,25.0,0.705820106,23.814004985654485 +2019-10-08 17:00:00,25.0,0.7,23.812263040218973 +2019-10-08 17:15:00,25.0,0.703174603,23.810521247552924 +2019-10-08 17:30:00,25.0,0.702645503,23.808779607880385 +2019-10-08 17:45:00,25.0,0.703174603,23.80703812142538 +2019-10-08 18:00:00,25.0,0.702645503,23.80529678841188 +2019-10-08 18:15:00,25.0,0.712169312,23.803555609063874 +2019-10-08 18:30:00,25.0,0.731746032,23.80181458360531 +2019-10-08 18:45:00,25.0,0.71957672,23.80007371226014 +2019-10-08 19:00:00,25.0,0.712169312,23.798332995252252 +2019-10-08 19:15:00,25.0,0.717460317,23.796592432805557 +2019-10-08 19:30:00,25.0,0.697883598,23.794852025143935 +2019-10-08 19:45:00,25.0,0.727513228,23.793111772491226 +2019-10-08 20:00:00,25.0,0.712698413,23.79137167507127 +2019-10-08 20:15:00,25.0,0.685714286,23.78963173310789 +2019-10-08 20:30:00,25.0,0.65026455,23.787891946824885 +2019-10-08 20:45:00,25.0,0.643915344,23.78615231644601 +2019-10-08 21:00:00,25.0,0.671428571,23.784412842195035 +2019-10-08 21:15:00,25.0,0.675132275,23.7826735242957 +2019-10-08 21:30:00,25.0,0.682010582,23.780934362971706 +2019-10-08 21:45:00,25.0,0.638624339,23.779195358446753 +2019-10-08 22:00:00,25.0,0.596296296,23.777456510944518 +2019-10-08 22:15:00,25.0,0.615873016,23.775717820688662 +2019-10-08 22:30:00,25.0,0.629100529,23.773979287902808 +2019-10-08 22:45:00,25.0,0.64973545,23.77224091281057 +2019-10-08 23:00:00,25.0,0.656613757,23.770502695635557 +2019-10-08 23:15:00,25.0,0.648148148,23.768764636601325 +2019-10-08 23:30:00,25.0,0.669312169,23.76702673593143 +2019-10-08 23:45:00,25.0,0.71005291,23.765288993849413 +2019-10-09 00:00:00,25.0,0.670899471,23.76355141057879 +2019-10-09 00:15:00,25.0,0.678835979,23.761813986343032 +2019-10-09 00:30:00,25.0,0.608465608,23.76007672136563 +2019-10-09 00:45:00,25.0,0.607936508,23.758339615870035 +2019-10-09 01:00:00,25.0,0.601058201,23.756602670079662 +2019-10-09 01:15:00,25.0,0.591005291,23.754865884217928 +2019-10-09 01:30:00,25.0,0.58994709,23.753129258508228 +2019-10-09 01:45:00,25.0,0.61005291,23.751392793173938 +2019-10-09 02:00:00,25.0,0.573015873,23.749656488438383 +2019-10-09 02:15:00,25.0,0.581481481,23.747920344524907 +2019-10-09 02:30:00,25.0,0.631746032,23.74618436165682 +2019-10-09 02:45:00,25.0,0.64973545,23.74444854005739 +2019-10-09 03:00:00,25.0,0.692063492,23.742712879949895 +2019-10-09 03:15:00,25.0,0.696296296,23.74097738155758 +2019-10-09 03:30:00,25.0,0.68042328,23.739242045103676 +2019-10-09 03:45:00,25.0,0.687830688,23.737506870811366 +2019-10-09 04:00:00,25.0,0.69047619,23.735771858903846 +2019-10-09 04:15:00,25.0,0.695238095,23.734037009604283 +2019-10-09 04:30:00,25.0,0.716931217,23.732302323135798 +2019-10-09 04:45:00,25.0,0.727513228,23.73056779972152 +2019-10-09 05:00:00,25.0,0.738624339,23.72883343958455 +2019-10-09 05:15:00,25.0,0.75026455,23.727099242947975 +2019-10-09 05:30:00,25.0,0.758730159,23.72536521003483 +2019-10-09 05:45:00,25.0,0.761904762,23.72363134106816 +2019-10-09 06:00:00,25.0,0.753439153,23.721897636270988 +2019-10-09 06:15:00,25.0,0.773544974,23.72016409586629 +2019-10-09 06:30:00,25.0,0.777248677,23.718430720077052 +2019-10-09 06:45:00,25.0,0.784126984,23.716697509126217 +2019-10-09 07:00:00,25.0,0.731216931,23.714964463236726 +2019-10-09 07:15:00,25.0,0.716402116,23.71323158263147 +2019-10-09 07:30:00,25.0,0.711640212,23.711498867533344 +2019-10-09 07:45:00,25.0,0.672486772,23.709766318165222 +2019-10-09 08:00:00,25.0,0.667195767,23.708033934749935 +2019-10-09 08:15:00,25.0,0.661904762,23.70630171751031 +2019-10-09 08:30:00,25.0,0.652910053,23.704569666669155 +2019-10-09 08:45:00,25.0,0.64973545,23.702837782449254 +2019-10-09 09:00:00,25.0,0.654497354,23.70110606507335 +2019-10-09 09:15:00,25.0,0.65026455,23.699374514764187 +2019-10-09 09:30:00,25.0,0.621693122,23.697643131744492 +2019-10-09 09:45:00,25.0,0.616402116,23.695911916236945 +2019-10-09 10:00:00,25.0,0.620634921,23.694180868464223 +2019-10-09 10:15:00,25.0,0.625396825,23.692449988648978 +2019-10-09 10:30:00,25.0,0.621164021,23.690719277013848 +2019-10-09 10:45:00,25.0,0.611640212,23.68898873378143 +2019-10-09 11:00:00,25.0,0.603703704,23.687258359174308 +2019-10-09 11:15:00,25.0,0.595767196,23.685528153415067 +2019-10-09 11:30:00,25.0,0.606878307,23.683798116726223 +2019-10-09 11:45:00,25.0,0.652910053,23.682068249330314 +2019-10-09 12:00:00,25.0,0.66031746,23.680338551449843 +2019-10-09 12:15:00,25.0,0.647619048,23.67860902330727 +2019-10-09 12:30:00,25.0,0.629100529,23.676879665125064 +2019-10-09 12:45:00,25.0,0.648148148,23.67515047712566 +2019-10-09 13:00:00,25.0,0.651322751,23.67342145953147 +2019-10-09 13:15:00,25.0,0.641798942,23.671692612564875 +2019-10-09 13:30:00,25.0,0.626984127,23.669963936448248 +2019-10-09 13:45:00,25.0,0.626984127,23.668235431403946 +2019-10-09 14:00:00,25.0,0.622751323,23.666507097654275 +2019-10-09 14:15:00,25.0,0.604232804,23.664778935421545 +2019-10-09 14:30:00,25.0,0.635449735,23.66305094492804 +2019-10-09 14:45:00,25.0,0.632804233,23.661323126396024 +2019-10-09 15:00:00,25.0,0.644973545,23.659595480047717 +2019-10-09 15:15:00,25.0,0.631216931,23.65786800610534 +2019-10-09 15:30:00,25.0,0.566666667,23.656140704791092 +2019-10-09 15:45:00,25.0,0.501058201,23.654413576327126 +2019-10-09 16:00:00,25.0,0.527513228,23.6526866209356 +2019-10-09 16:15:00,25.0,0.508465608,23.650959838838638 +2019-10-09 16:30:00,25.0,0.497883598,23.649233230258353 +2019-10-09 16:45:00,25.0,0.514814815,23.647506795416806 +2019-10-09 17:00:00,25.0,0.565608466,23.645780534536065 +2019-10-09 17:15:00,25.0,0.562433862,23.644054447838172 +2019-10-09 17:30:00,25.0,0.561375661,23.642328535545126 +2019-10-09 17:45:00,25.0,0.521693122,23.64060279787892 +2019-10-09 18:00:00,25.0,0.520634921,23.638877235061532 +2019-10-09 18:15:00,25.0,0.53015873,23.63715184731491 +2019-10-09 18:30:00,25.0,0.505820106,23.635426634860963 +2019-10-09 18:45:00,25.0,0.504761905,23.6337015979216 +2019-10-09 19:00:00,25.0,0.5,23.631976736718705 +2019-10-09 19:15:00,25.0,0.453968254,23.63025205147412 +2019-10-09 19:30:00,25.0,0.439153439,23.628527542409685 +2019-10-09 19:45:00,25.0,0.447089947,23.62680320974721 +2019-10-09 20:00:00,25.0,0.500529101,23.62507905370849 +2019-10-09 20:15:00,25.0,0.535449735,23.623355074515278 +2019-10-09 20:30:00,25.0,0.525925926,23.62163127238932 +2019-10-09 20:45:00,25.0,0.520634921,23.619907647552346 +2019-10-09 21:00:00,25.0,0.503703704,23.618184200226032 +2019-10-09 21:15:00,25.0,0.446560847,23.616460930632066 +2019-10-09 21:30:00,25.0,0.467195767,23.614737838992095 +2019-10-09 21:45:00,25.0,0.483068783,23.613014925527757 +2019-10-09 22:00:00,25.0,0.485185185,23.611292190460638 +2019-10-09 22:15:00,25.0,0.524867725,23.60956963401233 +2019-10-09 22:30:00,25.0,0.463492063,23.607847256404405 +2019-10-09 22:45:00,25.0,0.457671958,23.606125057858378 +2019-10-09 23:00:00,25.0,0.414814815,23.60440303859577 +2019-10-09 23:15:00,25.0,0.394179894,23.60268119883807 +2019-10-09 23:30:00,25.0,0.423280423,23.600959538806755 +2019-10-09 23:45:00,25.0,0.438624339,23.599238058723255 +2019-10-10 00:00:00,25.0,0.438095238,23.597516758808997 +2019-10-10 00:15:00,25.0,0.453439153,23.595795639285384 +2019-10-10 00:30:00,25.0,0.477248677,23.59407470037378 +2019-10-10 00:45:00,25.0,0.479365079,23.59235394229554 +2019-10-10 01:00:00,25.0,0.405820106,23.59063336527199 +2019-10-10 01:15:00,25.0,0.406349206,23.588912969524447 +2019-10-10 01:30:00,25.0,0.406878307,23.587192755274174 +2019-10-10 01:45:00,25.0,0.397354497,23.585472722742438 +2019-10-10 02:00:00,25.0,0.435978836,23.583752872150484 +2019-10-10 02:15:00,25.0,0.421164021,23.582033203719497 +2019-10-10 02:30:00,25.0,0.475661376,23.580313717670688 +2019-10-10 02:45:00,25.0,0.494708995,23.578594414225208 +2019-10-10 03:00:00,25.0,0.543915344,23.576875293604214 +2019-10-10 03:15:00,25.0,0.563492063,23.575156356028803 +2019-10-10 03:30:00,25.0,0.546031746,23.573437601720077 +2019-10-10 03:45:00,25.0,0.540740741,23.571719030899114 +2019-10-10 04:00:00,25.0,0.547089947,23.570000643786948 +2019-10-10 04:15:00,25.0,0.603703704,23.56828244060461 +2019-10-10 04:30:00,25.0,0.634391534,23.5665644215731 +2019-10-10 04:45:00,25.0,0.671428571,23.564846586913387 +2019-10-10 05:00:00,25.0,0.670899471,23.56312893684642 +2019-10-10 05:15:00,25.0,0.665608466,23.56141147159314 +2019-10-10 05:30:00,25.0,0.675661376,23.55969419137445 +2019-10-10 05:45:00,25.0,0.685185185,23.557977096411218 +2019-10-10 06:00:00,25.0,0.68994709,23.55626018692431 +2019-10-10 06:15:00,25.0,0.698412698,23.55454346313456 +2019-10-10 06:30:00,25.0,0.697883598,23.55282692526277 +2019-10-10 06:45:00,25.0,0.696296296,23.55111057352973 +2019-10-10 07:00:00,25.0,0.717460317,23.549394408156196 +2019-10-10 07:15:00,25.0,0.732275132,23.54767842936292 +2019-10-10 07:30:00,25.0,0.72010582,23.545962637370597 +2019-10-10 07:45:00,25.0,0.70952381,23.544247032399923 +2019-10-10 08:00:00,25.0,0.734920635,23.54253161467157 +2019-10-10 08:15:00,25.0,0.721164021,23.54081638440617 +2019-10-10 08:30:00,25.0,0.724867725,23.539101341824338 +2019-10-10 08:45:00,25.0,0.73968254,23.537386487146673 +2019-10-10 09:00:00,25.0,0.748677249,23.53567182059375 +2019-10-10 09:15:00,25.0,0.748677249,23.533957342386095 +2019-10-10 09:30:00,25.0,0.74021164,23.53224305274424 +2019-10-10 09:45:00,25.0,0.742857143,23.530528951888687 +2019-10-10 10:00:00,25.0,0.726984127,23.528815040039895 +2019-10-10 10:15:00,25.0,0.722751323,23.52710131741831 +2019-10-10 10:30:00,25.0,0.725396825,23.525387784244366 +2019-10-10 10:45:00,25.0,0.74021164,23.523674440738464 +2019-10-10 11:00:00,25.0,0.738624339,23.521961287120963 +2019-10-10 11:15:00,25.0,0.748677249,23.520248323612222 +2019-10-10 11:30:00,25.0,0.751322751,23.51853555043257 +2019-10-10 11:45:00,25.0,0.757142857,23.516822967802298 +2019-10-10 12:00:00,25.0,0.771957672,23.515110575941687 +2019-10-10 12:15:00,25.0,0.775132275,23.513398375070988 +2019-10-10 12:30:00,25.0,0.780952381,23.51168636541044 +2019-10-10 12:45:00,25.0,0.784656085,23.509974547180224 +2019-10-10 13:00:00,25.0,0.788888889,23.50826292060053 +2019-10-10 13:15:00,25.0,0.787301587,23.50655148589152 +2019-10-10 13:30:00,25.0,0.79047619,23.504840243273303 +2019-10-10 13:45:00,25.0,0.789417989,23.503129192965993 +2019-10-10 14:00:00,25.0,0.775661376,23.501418335189673 +2019-10-10 14:15:00,25.0,0.794708995,23.499707670164398 +2019-10-10 14:30:00,25.0,0.8,23.497997198110188 +2019-10-10 14:45:00,25.0,0.785185185,23.49628691924705 +2019-10-10 15:00:00,25.0,0.762433862,23.49457683379498 +2019-10-10 15:15:00,25.0,0.735449735,23.492866941973908 +2019-10-10 15:30:00,25.0,0.750793651,23.49115724400378 +2019-10-10 15:45:00,25.0,0.761375661,23.489447740104495 +2019-10-10 16:00:00,25.0,0.753439153,23.48773843049595 +2019-10-10 16:15:00,25.0,0.751322751,23.486029315397975 +2019-10-10 16:30:00,25.0,0.761904762,23.484320395030412 +2019-10-10 16:45:00,25.0,0.760846561,23.482611669613075 +2019-10-10 17:00:00,25.0,0.764550265,23.48090313936573 +2019-10-10 17:15:00,25.0,0.762962963,23.479194804508133 +2019-10-10 17:30:00,25.0,0.764550265,23.477486665260024 +2019-10-10 17:45:00,25.0,0.764021164,23.475778721841106 +2019-10-10 18:00:00,25.0,0.741269841,23.47407097447105 +2019-10-10 18:15:00,25.0,0.716402116,23.472363423369515 +2019-10-10 18:30:00,25.0,0.715873016,23.47065606875614 +2019-10-10 18:45:00,25.0,0.717460317,23.46894891085051 +2019-10-10 19:00:00,25.0,0.722751323,23.467241949872214 +2019-10-10 19:15:00,25.0,0.743915344,23.465535186040803 +2019-10-10 19:30:00,25.0,0.760846561,23.463828619575818 +2019-10-10 19:45:00,25.0,0.757671958,23.46212225069674 +2019-10-10 20:00:00,25.0,0.755555556,23.460416079623055 +2019-10-10 20:15:00,25.0,0.759259259,23.458710106574227 +2019-10-10 20:30:00,25.0,0.759259259,23.45700433176966 +2019-10-10 20:45:00,25.0,0.754497354,23.455298755428768 +2019-10-10 21:00:00,25.0,0.754497354,23.453593377770922 +2019-10-10 21:15:00,25.0,0.777777778,23.45188819901548 +2019-10-10 21:30:00,25.0,0.776190476,23.450183219381756 +2019-10-10 21:45:00,25.0,0.783068783,23.44847843908905 +2019-10-10 22:00:00,25.0,0.788359788,23.446773858356647 +2019-10-10 22:15:00,25.0,0.784126984,23.445069477403774 +2019-10-10 22:30:00,25.0,0.784656085,23.44336529644966 +2019-10-10 22:45:00,25.0,0.78994709,23.441661315713514 +2019-10-10 23:00:00,25.0,0.78994709,23.439957535414486 +2019-10-10 23:15:00,25.0,0.742857143,23.438253955771728 +2019-10-10 23:30:00,25.0,0.711111111,23.43655057700436 +2019-10-10 23:45:00,25.0,0.708994709,23.434847399331485 +2019-10-11 00:00:00,25.0,0.708994709,23.43314442297215 +2019-10-11 00:15:00,25.0,0.710582011,23.4314416481454 +2019-10-11 00:30:00,25.0,0.713227513,23.429739075070266 +2019-10-11 00:45:00,25.0,0.713227513,23.428036703965716 +2019-10-11 01:00:00,25.0,0.712698413,23.42633453505072 +2019-10-11 01:15:00,25.0,0.712169312,23.42463256854422 +2019-10-11 01:30:00,25.0,0.712698413,23.422930804665132 +2019-10-11 01:45:00,25.0,0.711640212,23.42122924363232 +2019-10-11 02:00:00,25.0,0.707936508,23.41952788566466 +2019-10-11 02:15:00,25.0,0.70952381,23.417826730980988 +2019-10-11 02:30:00,25.0,0.707407407,23.416125779800094 +2019-10-11 02:45:00,25.0,0.704761905,23.414425032340766 +2019-10-11 03:00:00,25.0,0.705820106,23.41272448882176 +2019-10-11 03:15:00,25.0,0.707407407,23.41102414946181 +2019-10-11 03:30:00,25.0,0.701058201,23.4093240144796 +2019-10-11 03:45:00,25.0,0.694708995,23.407624084093815 +2019-10-11 04:00:00,25.0,0.693121693,23.405924358523116 +2019-10-11 04:15:00,25.0,0.658730159,23.404224837986103 +2019-10-11 04:30:00,25.0,0.644444444,23.402525522701385 +2019-10-11 04:45:00,25.0,0.632804233,23.40082641288753 +2019-10-11 05:00:00,25.0,0.648148148,23.39912750876309 +2019-10-11 05:15:00,25.0,0.671428571,23.397428810546565 +2019-10-11 05:30:00,25.0,0.68042328,23.395730318456454 +2019-10-11 05:45:00,25.0,0.682539683,23.39403203271123 +2019-10-11 06:00:00,25.0,0.683068783,23.392333953529313 +2019-10-11 06:15:00,25.0,0.685185185,23.390636081129124 +2019-10-11 06:30:00,25.0,0.686772487,23.388938415729044 +2019-10-11 06:45:00,25.0,0.688888889,23.38724095754744 +2019-10-11 07:00:00,25.0,0.688359788,23.385543706802626 +2019-10-11 07:15:00,25.0,0.687301587,23.383846663712916 +2019-10-11 07:30:00,25.0,0.688888889,23.382149828496598 +2019-10-11 07:45:00,25.0,0.689417989,23.380453201371903 +2019-10-11 08:00:00,25.0,0.689417989,23.378756782557065 +2019-10-11 08:15:00,25.0,0.688359788,23.377060572270278 +2019-10-11 08:30:00,25.0,0.689417989,23.375364570729726 +2019-10-11 08:45:00,25.0,0.689417989,23.373668778153533 +2019-10-11 09:00:00,25.0,0.688888889,23.37197319475982 +2019-10-11 09:15:00,25.0,0.688359788,23.370277820766695 +2019-10-11 09:30:00,25.0,0.687830688,23.3685826563922 +2019-10-11 09:45:00,25.0,0.711111111,23.366887701854374 +2019-10-11 10:00:00,25.0,0.741269841,23.36519295737123 +2019-10-11 10:15:00,25.0,0.740740741,23.36349842316076 +2019-10-11 10:30:00,25.0,0.741269841,23.361804099440903 +2019-10-11 10:45:00,25.0,0.741269841,23.36010998642959 +2019-10-11 11:00:00,25.0,0.741269841,23.358416084344732 +2019-10-11 11:15:00,25.0,0.743386243,23.35672239340419 +2019-10-11 11:30:00,25.0,0.743386243,23.355028913825812 +2019-10-11 11:45:00,25.0,0.740740741,23.353335645827425 +2019-10-11 12:00:00,25.0,0.74021164,23.351642589626824 +2019-10-11 12:15:00,25.0,0.740740741,23.34994974544176 +2019-10-11 12:30:00,25.0,0.73968254,23.34825711348997 +2019-10-11 12:45:00,25.0,0.739153439,23.346564693989187 +2019-10-11 13:00:00,25.0,0.73968254,23.34487248715707 +2019-10-11 13:15:00,25.0,0.738624339,23.34318049321128 +2019-10-11 13:30:00,25.0,0.738624339,23.34148871236945 +2019-10-11 13:45:00,25.0,0.738624339,23.339797144849186 +2019-10-11 14:00:00,25.0,0.736507937,23.338105790868045 +2019-10-11 14:15:00,25.0,0.724867725,23.336414650643587 +2019-10-11 14:30:00,25.0,0.713227513,23.334723724393328 +2019-10-11 14:45:00,25.0,0.694179894,23.333033012334752 +2019-10-11 15:00:00,25.0,0.677777778,23.331342514685325 +2019-10-11 15:15:00,25.0,0.678835979,23.329652231662486 +2019-10-11 15:30:00,25.0,0.693650794,23.327962163483647 +2019-10-11 15:45:00,25.0,0.705291005,23.326272310366175 +2019-10-11 16:00:00,25.0,0.708465608,23.324582672527434 +2019-10-11 16:15:00,25.0,0.71005291,23.32289325018475 +2019-10-11 16:30:00,25.0,0.713227513,23.32120404355541 +2019-10-11 16:45:00,25.0,0.714814815,23.319515052856694 +2019-10-11 17:00:00,25.0,0.725925926,23.317826278305844 +2019-10-11 17:15:00,25.0,0.725925926,23.31613772012006 +2019-10-11 17:30:00,25.0,0.724338624,23.314449378516542 +2019-10-11 17:45:00,25.0,0.724867725,23.31276125371244 +2019-10-11 18:00:00,25.0,0.724867725,23.311073345924903 +2019-10-11 18:15:00,25.0,0.724338624,23.30938565537101 +2019-10-11 18:30:00,25.0,0.725396825,23.307698182267842 +2019-10-11 18:45:00,25.0,0.731216931,23.30601092683246 +2019-10-11 19:00:00,25.0,0.729100529,23.304323889281864 +2019-10-11 19:15:00,25.0,0.728571429,23.302637069833054 +2019-10-11 19:30:00,25.0,0.724867725,23.300950468702986 +2019-10-11 19:45:00,25.0,0.724867725,23.299264086108614 +2019-10-11 20:00:00,25.0,0.728042328,23.297577922266818 +2019-10-11 20:15:00,25.0,0.729100529,23.29589197739449 +2019-10-11 20:30:00,25.0,0.704232804,23.294206251708484 +2019-10-11 20:45:00,25.0,0.704761905,23.29252074542561 +2019-10-11 21:00:00,25.0,0.704232804,23.29083545876267 +2019-10-11 21:15:00,25.0,0.694179894,23.289150391936424 +2019-10-11 21:30:00,25.0,0.688359788,23.287465545163624 +2019-10-11 21:45:00,25.0,0.68994709,23.285780918660958 +2019-10-11 22:00:00,25.0,0.695767196,23.284096512645117 +2019-10-11 22:15:00,25.0,0.696825397,23.28241232733276 +2019-10-11 22:30:00,25.0,0.697883598,23.280728362940494 +2019-10-11 22:45:00,25.0,0.695238095,23.279044619684928 +2019-10-11 23:00:00,25.0,0.693121693,23.27736109778262 +2019-10-11 23:15:00,25.0,0.70952381,23.275677797450122 +2019-10-11 23:30:00,25.0,0.713756614,23.27399471890393 +2019-10-11 23:45:00,25.0,0.715873016,23.272311862360528 +2019-10-12 00:00:00,25.0,0.711640212,23.27062922803638 +2019-10-12 00:15:00,25.0,0.705291005,23.268946816147896 +2019-10-12 00:30:00,25.0,0.696296296,23.267264626911473 +2019-10-12 00:45:00,25.0,0.703174603,23.265582660543487 +2019-10-12 01:00:00,25.0,0.688888889,23.263900917260276 +2019-10-12 01:15:00,25.0,0.698412698,23.26221939727814 +2019-10-12 01:30:00,25.0,0.704761905,23.260538100813363 +2019-10-12 01:45:00,25.0,0.718518519,23.25885702808221 +2019-10-12 02:00:00,25.0,0.716931217,23.257176179300888 +2019-10-12 02:15:00,25.0,0.724338624,23.2554955546856 +2019-10-12 02:30:00,25.0,0.723280423,23.253815154452504 +2019-10-12 02:45:00,25.0,0.734920635,23.252134978817754 +2019-10-12 03:00:00,25.0,0.747619048,23.25045502799744 +2019-10-12 03:15:00,25.0,0.74973545,23.248775302207644 +2019-10-12 03:30:00,25.0,0.763492063,23.24709580166443 +2019-10-12 03:45:00,25.0,0.805820106,23.245416526583803 +2019-10-12 04:00:00,25.0,0.835449735,23.24373747718176 +2019-10-12 04:15:00,25.0,0.826455026,23.242058653674267 +2019-10-12 04:30:00,25.0,0.801587302,23.240380056277267 +2019-10-12 04:45:00,25.0,0.765079365,23.238701685206642 +2019-10-12 05:00:00,25.0,0.752910053,23.237023540678287 +2019-10-12 05:15:00,25.0,0.769312169,23.23534562290805 +2019-10-12 05:30:00,25.0,0.802116402,23.23366793211173 +2019-10-12 05:45:00,25.0,0.807936508,23.231990468505128 +2019-10-12 06:00:00,25.0,0.806878307,23.230313232304006 +2019-10-12 06:15:00,25.0,0.812698413,23.228636223724095 +2019-10-12 06:30:00,25.0,0.808465608,23.226959442981084 +2019-10-12 06:45:00,25.0,0.801058201,23.225282890290654 +2019-10-12 07:00:00,25.0,0.793650794,23.22360656586845 +2019-10-12 07:15:00,25.0,0.769312169,23.221930469930072 +2019-10-12 07:30:00,25.0,0.756613757,23.22025460269111 +2019-10-12 07:45:00,25.0,0.76031746,23.21857896436712 +2019-10-12 08:00:00,25.0,0.77037037,23.21690355517363 +2019-10-12 08:15:00,25.0,0.765608466,23.215228375326127 +2019-10-12 08:30:00,25.0,0.765079365,23.213553425040075 +2019-10-12 08:45:00,25.0,0.75978836,23.211878704530925 +2019-10-12 09:00:00,25.0,0.764550265,23.210204214014066 +2019-10-12 09:15:00,25.0,0.78042328,23.208529953704883 +2019-10-12 09:30:00,25.0,0.778835979,23.20685592381872 +2019-10-12 09:45:00,25.0,0.784656085,23.205182124570904 +2019-10-12 10:00:00,25.0,0.792592593,23.203508556176708 +2019-10-12 10:15:00,25.0,0.788359788,23.201835218851397 +2019-10-12 10:30:00,25.0,0.786243386,23.200162112810208 +2019-10-12 10:45:00,25.0,0.787301587,23.198489238268326 +2019-10-12 11:00:00,25.0,0.782539683,23.19681659544093 +2019-10-12 11:15:00,25.0,0.780952381,23.195144184543157 +2019-10-12 11:30:00,25.0,0.786243386,23.19347200579011 +2019-10-12 11:45:00,25.0,0.786243386,23.191800059396872 +2019-10-12 12:00:00,25.0,0.779365079,23.190128345578493 +2019-10-12 12:15:00,25.0,0.775661376,23.18845686455 +2019-10-12 12:30:00,25.0,0.775661376,23.18678561652637 +2019-10-12 12:45:00,25.0,0.772486772,23.185114601722574 +2019-10-12 13:00:00,25.0,0.783068783,23.18344382035354 +2019-10-12 13:15:00,25.0,0.770899471,23.181773272634157 +2019-10-12 13:30:00,25.0,0.761375661,23.180102958779305 +2019-10-12 13:45:00,25.0,0.761904762,23.178432879003818 +2019-10-12 14:00:00,25.0,0.755555556,23.176763033522516 +2019-10-12 14:15:00,25.0,0.747089947,23.175093422550162 +2019-10-12 14:30:00,25.0,0.721164021,23.17342404630152 +2019-10-12 14:45:00,25.0,0.715343915,23.171754904991307 +2019-10-12 15:00:00,25.0,0.703703704,23.1700859988342 +2019-10-12 15:15:00,25.0,0.701058201,23.168417328044864 +2019-10-12 15:30:00,25.0,0.685185185,23.16674889283793 +2019-10-12 15:45:00,25.0,0.666137566,23.165080693428006 +2019-10-12 16:00:00,25.0,0.640740741,23.163412730029638 +2019-10-12 16:15:00,25.0,0.614285714,23.161745002857373 +2019-10-12 16:30:00,25.0,0.596296296,23.160077512125728 +2019-10-12 16:45:00,25.0,0.588359788,23.158410258049162 +2019-10-12 17:00:00,25.0,0.598941799,23.15674324084213 +2019-10-12 17:15:00,25.0,0.58994709,23.155076460719044 +2019-10-12 17:30:00,25.0,0.569312169,23.153409917894304 +2019-10-12 17:45:00,25.0,0.531746032,23.151743612582244 +2019-10-12 18:00:00,25.0,0.506878307,23.150077544997195 +2019-10-12 18:15:00,25.0,0.489417989,23.14841171535346 +2019-10-12 18:30:00,25.0,0.484126984,23.146746123865288 +2019-10-12 18:45:00,25.0,0.496296296,23.145080770746915 +2019-10-12 19:00:00,25.0,0.486243386,23.143415656212547 +2019-10-12 19:15:00,25.0,0.478835979,23.141750780476357 +2019-10-12 19:30:00,25.0,0.471957672,23.140086143752477 +2019-10-12 19:45:00,25.0,0.465079365,23.13842174625502 +2019-10-12 20:00:00,25.0,0.448148148,23.13675758819807 +2019-10-12 20:15:00,25.0,0.423280423,23.135093669795666 +2019-10-12 20:30:00,25.0,0.413227513,23.133429991261824 +2019-10-12 20:45:00,25.0,0.400529101,23.13176655281054 +2019-10-12 21:00:00,25.0,0.397883598,23.130103354655766 +2019-10-12 21:15:00,25.0,0.391005291,23.12844039701142 +2019-10-12 21:30:00,25.0,0.374603175,23.126777680091404 +2019-10-12 21:45:00,25.0,0.368253968,23.12511520410958 +2019-10-12 22:00:00,25.0,0.34973545,23.12345296927977 +2019-10-12 22:15:00,25.0,0.333862434,23.12179097581578 +2019-10-12 22:30:00,25.0,0.32010582,23.12012922393138 +2019-10-12 22:45:00,25.0,0.313756614,23.118467713840317 +2019-10-12 23:00:00,25.0,0.302116402,23.116806445756282 +2019-10-12 23:15:00,25.0,0.297883598,23.115145419892958 +2019-10-12 23:30:00,25.0,0.284656085,23.113484636464 +2019-10-12 23:45:00,25.0,0.266666667,23.111824095683005 +2019-10-13 00:00:00,25.0,0.250793651,23.110163797763562 +2019-10-13 00:15:00,25.0,0.237037037,23.108503742919225 +2019-10-13 00:30:00,25.0,0.238095238,23.10684393136352 +2019-10-13 00:45:00,25.0,0.226455026,23.10518436330992 +2019-10-13 01:00:00,25.0,0.224867725,23.103525038971892 +2019-10-13 01:15:00,25.0,0.238624339,23.10186595856287 +2019-10-13 01:30:00,25.0,0.242328042,23.10020712229623 +2019-10-13 01:45:00,25.0,0.216402116,23.098548530385347 +2019-10-13 02:00:00,25.0,0.196825397,23.09689018304355 +2019-10-13 02:15:00,25.0,0.200529101,23.09523208048415 +2019-10-13 02:30:00,25.0,0.203703704,23.093574222920395 +2019-10-13 02:45:00,25.0,0.208994709,23.09191661056554 +2019-10-13 03:00:00,25.0,0.189417989,23.09025924363279 +2019-10-13 03:15:00,25.0,0.168253968,23.088602122335306 +2019-10-13 03:30:00,25.0,0.166137566,23.086945246886238 +2019-10-13 03:45:00,25.0,0.162433862,23.0852886174987 +2019-10-13 04:00:00,25.0,0.164021164,23.08363223438578 +2019-10-13 04:15:00,25.0,0.166666667,23.081976097760506 +2019-10-13 04:30:00,25.0,0.161375661,23.080320207835904 +2019-10-13 04:45:00,25.0,0.144973545,23.078664564824965 +2019-10-13 05:00:00,25.0,0.138624339,23.077009168940627 +2019-10-13 05:15:00,25.0,0.136507937,23.07535402039582 +2019-10-13 05:30:00,25.0,0.132275132,23.07369911940344 +2019-10-13 05:45:00,25.0,0.126455026,23.07204446617633 +2019-10-13 06:00:00,25.0,0.12010582,23.070390060927316 +2019-10-13 06:15:00,25.0,0.122222222,23.0687359038692 +2019-10-13 06:30:00,25.0,0.124338624,23.06708199521475 +2019-10-13 06:45:00,25.0,0.133862434,23.065428335176673 +2019-10-13 07:00:00,25.0,0.142328042,23.06377492396768 +2019-10-13 07:15:00,25.0,0.148148148,23.062121761800448 +2019-10-13 07:30:00,25.0,0.157142857,23.060468848887588 +2019-10-13 07:45:00,25.0,0.158730159,23.058816185441714 +2019-10-13 08:00:00,25.0,0.161904762,23.05716377167539 +2019-10-13 08:15:00,25.0,0.158730159,23.05551160780117 +2019-10-13 08:30:00,25.0,0.174603175,23.05385969403153 +2019-10-13 08:45:00,25.0,0.189417989,23.052208030578964 +2019-10-13 09:00:00,25.0,0.205291005,23.050556617655914 +2019-10-13 09:15:00,25.0,0.247619048,23.048905455474774 +2019-10-13 09:30:00,25.0,0.267195767,23.04725454424793 +2019-10-13 09:45:00,25.0,0.261904762,23.045603884187724 +2019-10-13 10:00:00,25.0,0.225396825,23.043953475506477 +2019-10-13 10:15:00,25.0,0.202116402,23.042303318416447 +2019-10-13 10:30:00,25.0,0.211111111,23.0406534131299 +2019-10-13 10:45:00,25.0,0.242857143,23.039003759859046 +2019-10-13 11:00:00,25.0,0.271428571,23.03735435881606 +2019-10-13 11:15:00,25.0,0.27989418,23.0357052102131 +2019-10-13 11:30:00,25.0,0.28042328,23.034056314262276 +2019-10-13 11:45:00,25.0,0.282010582,23.032407671175687 +2019-10-13 12:00:00,25.0,0.308465608,23.030759281165366 +2019-10-13 12:15:00,25.0,0.331746032,23.029111144443345 +2019-10-13 12:30:00,25.0,0.341798942,23.027463261221616 +2019-10-13 12:45:00,25.0,0.377777778,23.025815631712117 +2019-10-13 13:00:00,25.0,0.413227513,23.024168256126778 +2019-10-13 13:15:00,25.0,0.406878307,23.022521134677493 +2019-10-13 13:30:00,25.0,0.423809524,23.02087426757612 +2019-10-13 13:45:00,25.0,0.456084656,23.01922765503447 +2019-10-13 14:00:00,25.0,0.464021164,23.017581297264343 +2019-10-13 14:15:00,25.0,0.484126984,23.0159351944775 +2019-10-13 14:30:00,25.0,0.515873016,23.014289346885658 +2019-10-13 14:45:00,25.0,0.524867725,23.012643754700516 +2019-10-13 15:00:00,25.0,0.555555556,23.010998418133727 +2019-10-13 15:15:00,25.0,0.573544974,23.009353337396934 +2019-10-13 15:30:00,25.0,0.598412698,23.007708512701715 +2019-10-13 15:45:00,25.0,0.617989418,23.006063944259633 +2019-10-13 16:00:00,25.0,0.612698413,23.00441963228223 +2019-10-13 16:15:00,25.0,0.585714286,23.00277557698098 +2019-10-13 16:30:00,25.0,0.605820106,23.00113177856736 +2019-10-13 16:45:00,25.0,0.641798942,22.99948823725279 +2019-10-13 17:00:00,25.0,0.644444444,22.997844953248684 +2019-10-13 17:15:00,25.0,0.692592593,22.996201926766382 +2019-10-13 17:30:00,25.0,0.695238095,22.994559158017225 +2019-10-13 17:45:00,25.0,0.721693122,22.992916647212517 +2019-10-13 18:00:00,25.0,0.77037037,22.991274394563504 +2019-10-13 18:15:00,25.0,0.716931217,22.98963240028143 +2019-10-13 18:30:00,25.0,0.660846561,22.987990664577485 +2019-10-13 18:45:00,25.0,0.680952381,22.986349187662842 +2019-10-13 19:00:00,25.0,0.697883598,22.98470796974862 +2019-10-13 19:15:00,25.0,0.710582011,22.983067011045918 +2019-10-13 19:30:00,25.0,0.717460317,22.981426311765816 +2019-10-13 19:45:00,25.0,0.72962963,22.979785872119322 +2019-10-13 20:00:00,25.0,0.732275132,22.978145692317444 +2019-10-13 20:15:00,25.0,0.730687831,22.97650577257114 +2019-10-13 20:30:00,25.0,0.732804233,22.97486611309136 +2019-10-13 20:45:00,25.0,0.732275132,22.973226714088973 +2019-10-13 21:00:00,25.0,0.732804233,22.97158757577486 +2019-10-13 21:15:00,25.0,0.732804233,22.96994869835985 +2019-10-13 21:30:00,25.0,0.731216931,22.968310082054728 +2019-10-13 21:45:00,25.0,0.729100529,22.966671727070263 +2019-10-13 22:00:00,25.0,0.72962963,22.965033633617185 +2019-10-13 22:15:00,25.0,0.73015873,22.9633958019062 +2019-10-13 22:30:00,25.0,0.728571429,22.961758232147947 +2019-10-13 22:45:00,25.0,0.728042328,22.960120924553067 +2019-10-13 23:00:00,25.0,0.728042328,22.958483879332164 +2019-10-13 23:15:00,25.0,0.728571429,22.95684709669578 +2019-10-13 23:30:00,25.0,0.726455026,22.955210576854444 +2019-10-13 23:45:00,25.0,0.724867725,22.953574320018667 +2019-10-14 00:00:00,25.0,0.720634921,22.951938326398885 +2019-10-14 00:15:00,25.0,0.725925926,22.950302596205535 +2019-10-14 00:30:00,25.0,0.726984127,22.948667129649007 +2019-10-14 00:45:00,25.0,0.728571429,22.947031926939665 +2019-10-14 01:00:00,25.0,0.73015873,22.945396988287822 +2019-10-14 01:15:00,25.0,0.732804233,22.94376231390377 +2019-10-14 01:30:00,25.0,0.758730159,22.942127903997775 +2019-10-14 01:45:00,25.0,0.75978836,22.940493758780043 +2019-10-14 02:00:00,25.0,0.758201058,22.938859878460768 +2019-10-14 02:15:00,25.0,0.768253968,22.937226263250103 +2019-10-14 02:30:00,25.0,0.765079365,22.935592913358178 +2019-10-14 02:45:00,25.0,0.750793651,22.933959828995057 +2019-10-14 03:00:00,25.0,0.762433862,22.932327010370805 +2019-10-14 03:15:00,25.0,0.746560847,22.93069445769545 +2019-10-14 03:30:00,25.0,0.728571429,22.929062171178945 +2019-10-14 03:45:00,25.0,0.719047619,22.92743015103126 +2019-10-14 04:00:00,25.0,0.68994709,22.9257983974623 +2019-10-14 04:15:00,25.0,0.64973545,22.92416691068196 +2019-10-14 04:30:00,25.0,0.615873016,22.92253569090007 +2019-10-14 04:45:00,25.0,0.571957672,22.920904738326442 +2019-10-14 05:00:00,25.0,0.541798942,22.919274053170863 +2019-10-14 05:15:00,25.0,0.516402116,22.917643635643064 +2019-10-14 05:30:00,25.0,0.471428571,22.916013485952757 +2019-10-14 05:45:00,25.0,0.411640212,22.91438360430962 +2019-10-14 06:00:00,25.0,0.376190476,22.912753990923292 +2019-10-14 06:15:00,25.0,0.344973545,22.911124646003373 +2019-10-14 06:30:00,25.0,0.311111111,22.90949556975943 +2019-10-14 06:45:00,25.0,0.276719577,22.907866762401014 +2019-10-14 07:00:00,25.0,0.270899471,22.906238224137603 +2019-10-14 07:15:00,25.0,0.244973545,22.90460995517868 +2019-10-14 07:30:00,25.0,0.221693122,22.902981955733672 +2019-10-14 07:45:00,25.0,0.201058201,22.901354226011986 +2019-10-14 08:00:00,25.0,0.185714286,22.89972676622296 +2019-10-14 08:15:00,25.0,0.16984127,22.898099576575945 +2019-10-14 08:30:00,25.0,0.15978836,22.896472657280228 +2019-10-14 08:45:00,25.0,0.152380952,22.89484600854506 +2019-10-14 09:00:00,25.0,0.139153439,22.89321963057967 +2019-10-14 09:15:00,25.0,0.134920635,22.89159352359324 +2019-10-14 09:30:00,25.0,0.129100529,22.88996768779494 +2019-10-14 09:45:00,25.0,0.12010582,22.88834212339387 +2019-10-14 10:00:00,25.0,0.115343915,22.88671683059912 +2019-10-14 10:15:00,25.0,0.112169312,22.88509180961975 +2019-10-14 10:30:00,25.0,0.10952381,22.883467060664756 +2019-10-14 10:45:00,25.0,0.105820106,22.881842583943126 +2019-10-14 11:00:00,25.0,0.103703704,22.880218379663805 +2019-10-14 11:15:00,25.0,0.104761905,22.878594448035706 +2019-10-14 11:30:00,25.0,0.105291005,22.876970789267688 +2019-10-14 11:45:00,25.0,0.106878307,22.875347403568604 +2019-10-14 12:00:00,25.0,0.102116402,22.873724291147255 +2019-10-14 12:15:00,25.0,0.097883598,22.8721014522124 +2019-10-14 12:30:00,25.0,0.093650794,22.870478886972784 +2019-10-14 12:45:00,25.0,0.086243386,22.868856595637098 +2019-10-14 13:00:00,25.0,0.082010582,22.867234578414013 +2019-10-14 13:15:00,25.0,0.084126984,22.865612835512145 +2019-10-14 13:30:00,25.0,0.078306878,22.86399136714009 +2019-10-14 13:45:00,25.0,0.068783069,22.862370173506417 +2019-10-14 14:00:00,25.0,0.067195767,22.86074925481963 +2019-10-14 14:15:00,25.0,0.062433862,22.859128611288224 +2019-10-14 14:30:00,25.0,0.05978836,22.857508243120648 +2019-10-14 14:45:00,25.0,0.074074074,22.855888150525328 +2019-10-14 15:00:00,25.0,0.085714286,22.854268333710625 +2019-10-14 15:15:00,25.0,0.097354497,22.852648792884892 +2019-10-14 15:30:00,25.0,0.117460317,22.85102952825645 +2019-10-14 15:45:00,25.0,0.12962963,22.849410540033553 +2019-10-14 16:00:00,25.0,0.154497354,22.847791828424448 +2019-10-14 16:15:00,25.0,0.2,22.84617339363734 +2019-10-14 16:30:00,25.0,0.242328042,22.8445552358804 +2019-10-14 16:45:00,25.0,0.322222222,22.84293735536174 +2019-10-14 17:00:00,25.0,0.365608466,22.841319752289472 +2019-10-14 17:15:00,25.0,0.414285714,22.83970242687166 +2019-10-14 17:30:00,25.0,0.47037037,22.83808537931631 +2019-10-14 17:45:00,25.0,0.554497354,22.83646860983142 +2019-10-14 18:00:00,25.0,0.587830688,22.834852118624955 +2019-10-14 18:15:00,25.0,0.648148148,22.833235905904807 +2019-10-14 18:30:00,25.0,0.634920635,22.831619971878872 +2019-10-14 18:45:00,25.0,0.622222222,22.830004316754994 +2019-10-14 19:00:00,25.0,0.648677249,22.828388940740986 +2019-10-14 19:15:00,25.0,0.653968254,22.826773844044613 +2019-10-14 19:30:00,25.0,0.653968254,22.825159026873614 +2019-10-14 19:45:00,25.0,0.644444444,22.8235444894357 +2019-10-14 20:00:00,25.0,0.643915344,22.821930231938524 +2019-10-14 20:15:00,25.0,0.64021164,22.82031625458972 +2019-10-14 20:30:00,25.0,0.65026455,22.81870255759688 +2019-10-14 20:45:00,25.0,0.659259259,22.81708914116757 +2019-10-14 21:00:00,25.0,0.668253968,22.815476005509304 +2019-10-14 21:15:00,25.0,0.683597884,22.81386315082956 +2019-10-14 21:30:00,25.0,0.687830688,22.81225057733581 +2019-10-14 21:45:00,25.0,0.691534392,22.81063828523544 +2019-10-14 22:00:00,25.0,0.697354497,22.809026274735842 +2019-10-14 22:15:00,25.0,0.699470899,22.807414546044352 +2019-10-14 22:30:00,25.0,0.687301587,22.805803099368287 +2019-10-14 22:45:00,25.0,0.693650794,22.804191934914893 +2019-10-14 23:00:00,25.0,0.697354497,22.802581052891412 +2019-10-14 23:15:00,25.0,0.682010582,22.80097045350505 +2019-10-14 23:30:00,25.0,0.655555556,22.799360136962946 +2019-10-14 23:45:00,25.0,0.628042328,22.797750103472236 +2019-10-15 00:00:00,25.0,0.587301587,22.79614035324 +2019-10-15 00:15:00,25.0,0.558201058,22.794530886473297 +2019-10-15 00:30:00,25.0,0.559259259,22.79292170337913 +2019-10-15 00:45:00,25.0,0.564021164,22.791312804164477 +2019-10-15 01:00:00,25.0,0.593121693,22.78970418903629 +2019-10-15 01:15:00,25.0,0.621164021,22.788095858201455 +2019-10-15 01:30:00,25.0,0.648677249,22.78648781186685 +2019-10-15 01:45:00,25.0,0.665079365,22.784880050239302 +2019-10-15 02:00:00,25.0,0.686772487,22.78327257352562 +2019-10-15 02:15:00,25.0,0.697354497,22.781665381932534 +2019-10-15 02:30:00,25.0,0.708994709,22.78005847566678 +2019-10-15 02:45:00,25.0,0.703703704,22.77845185493505 +2019-10-15 03:00:00,25.0,0.708465608,22.776845519943976 +2019-10-15 03:15:00,25.0,0.714285714,22.77523947090017 +2019-10-15 03:30:00,25.0,0.701058201,22.773633708010216 +2019-10-15 03:45:00,25.0,0.678306878,22.77202823148065 +2019-10-15 04:00:00,25.0,0.647089947,22.77042304151796 +2019-10-15 04:15:00,25.0,0.617989418,22.76881813832862 +2019-10-15 04:30:00,25.0,0.579365079,22.767213522119057 +2019-10-15 04:45:00,25.0,0.57037037,22.76560919309565 +2019-10-15 05:00:00,25.0,0.576719577,22.764005151464758 +2019-10-15 05:15:00,25.0,0.602645503,22.762401397432697 +2019-10-15 05:30:00,25.0,0.625925926,22.76079793120575 +2019-10-15 05:45:00,25.0,0.612169312,22.75919475299015 +2019-10-15 06:00:00,25.0,0.577777778,22.757591862992104 +2019-10-15 06:15:00,25.0,0.534391534,22.75598926141779 +2019-10-15 06:30:00,25.0,0.501587302,22.754386948473318 +2019-10-15 06:45:00,25.0,0.472486772,22.752784924364793 +2019-10-15 07:00:00,25.0,0.45978836,22.75118318929827 +2019-10-15 07:15:00,25.0,0.440740741,22.74958174347978 +2019-10-15 07:30:00,25.0,0.437037037,22.74798058711528 +2019-10-15 07:45:00,25.0,0.407407407,22.74637972041073 +2019-10-15 08:00:00,25.0,0.371428571,22.74477914357204 +2019-10-15 08:15:00,25.0,0.367724868,22.743178856805066 +2019-10-15 08:30:00,25.0,0.368783069,22.741578860315652 +2019-10-15 08:45:00,25.0,0.375132275,22.739979154309587 +2019-10-15 09:00:00,25.0,0.342857143,22.73837973899264 +2019-10-15 09:15:00,25.0,0.307936508,22.73678061457052 +2019-10-15 09:30:00,25.0,0.297883598,22.73518178124891 +2019-10-15 09:45:00,25.0,0.301058201,22.733583239233468 +2019-10-15 10:00:00,25.0,0.338095238,22.731984988729785 +2019-10-15 10:15:00,25.0,0.361904762,22.73038702994344 +2019-10-15 10:30:00,25.0,0.350793651,22.728789363079965 +2019-10-15 10:45:00,25.0,0.352380952,22.727191988344867 +2019-10-15 11:00:00,25.0,0.376190476,22.725594905943584 +2019-10-15 11:15:00,25.0,0.375661376,22.72399811608155 +2019-10-15 11:30:00,25.0,0.393121693,22.72240161896415 +2019-10-15 11:45:00,25.0,0.40952381,22.72080541479671 +2019-10-15 12:00:00,25.0,0.36984127,22.71920950378456 +2019-10-15 12:15:00,25.0,0.327513228,22.717613886132963 +2019-10-15 12:30:00,25.0,0.307936508,22.71601856204714 +2019-10-15 12:45:00,25.0,0.321693122,22.714423531732294 +2019-10-15 13:00:00,25.0,0.36031746,22.712828795393584 +2019-10-15 13:15:00,25.0,0.401587302,22.71123435323613 +2019-10-15 13:30:00,25.0,0.398412698,22.709640205465004 +2019-10-15 13:45:00,25.0,0.374074074,22.708046352285255 +2019-10-15 14:00:00,25.0,0.394179894,22.706452793901892 +2019-10-15 14:15:00,25.0,0.386243386,22.70485953051987 +2019-10-15 14:30:00,25.0,0.372486772,22.703266562344123 +2019-10-15 14:45:00,25.0,0.344444444,22.70167388957955 +2019-10-15 15:00:00,25.0,0.314285714,22.700081512431 +2019-10-15 15:15:00,25.0,0.305291005,22.698489431103283 +2019-10-15 15:30:00,25.0,0.292063492,22.69689764580118 +2019-10-15 15:45:00,25.0,0.26984127,22.695306156729437 +2019-10-15 16:00:00,25.0,0.267195767,22.69371496409274 +2019-10-15 16:15:00,25.0,0.27989418,22.69212406809576 +2019-10-15 16:30:00,25.0,0.266666667,22.690533468943126 +2019-10-15 16:45:00,25.0,0.271957672,22.688943166839426 +2019-10-15 17:00:00,25.0,0.267195767,22.687353161989193 +2019-10-15 17:15:00,25.0,0.239153439,22.685763454596948 +2019-10-15 17:30:00,25.0,0.244444444,22.68417404486717 +2019-10-15 17:45:00,25.0,0.242857143,22.68258493300428 +2019-10-15 18:00:00,25.0,0.218518519,22.680996119212672 +2019-10-15 18:15:00,25.0,0.195767196,22.67940760369671 +2019-10-15 18:30:00,25.0,0.176719577,22.67781938666072 +2019-10-15 18:45:00,25.0,0.179365079,22.676231468308963 +2019-10-15 19:00:00,25.0,0.172486772,22.67464384884569 +2019-10-15 19:15:00,25.0,0.145502646,22.673056528475115 +2019-10-15 19:30:00,25.0,0.126984127,22.671469507401387 +2019-10-15 19:45:00,25.0,0.119047619,22.669882785828634 +2019-10-15 20:00:00,25.0,0.105820106,22.668296363960952 +2019-10-15 20:15:00,25.0,0.08994709,22.66671024200239 +2019-10-15 20:30:00,25.0,0.08994709,22.665124420156953 +2019-10-15 20:45:00,25.0,0.082010582,22.663538898628612 +2019-10-15 21:00:00,25.0,0.074074074,22.661953677621312 +2019-10-15 21:15:00,25.0,0.073015873,22.66036875733893 +2019-10-15 21:30:00,25.0,0.083068783,22.658784137985332 +2019-10-15 21:45:00,25.0,0.087830688,22.657199819764333 +2019-10-15 22:00:00,25.0,0.088888889,22.655615802879723 +2019-10-15 22:15:00,25.0,0.088888889,22.654032087535228 +2019-10-15 22:30:00,25.0,0.086243386,22.65244867393455 +2019-10-15 22:45:00,25.0,0.08994709,22.65086556228136 +2019-10-15 23:00:00,25.0,0.093650794,22.649282752779275 +2019-10-15 23:15:00,25.0,0.084126984,22.647700245631878 +2019-10-15 23:30:00,25.0,0.082539683,22.646118041042715 +2019-10-15 23:45:00,25.0,0.073544974,22.644536139215308 +2019-10-16 00:00:00,25.0,0.066137566,22.642954540353102 +2019-10-16 00:15:00,25.0,0.062962963,22.641373244659537 +2019-10-16 00:30:00,25.0,0.061904762,22.639792252338008 +2019-10-16 00:45:00,25.0,0.054497354,22.638211563591856 +2019-10-16 01:00:00,25.0,0.044444444,22.636631178624395 +2019-10-16 01:15:00,25.0,0.039153439,22.6350510976389 +2019-10-16 01:30:00,25.0,0.041798942,22.63347132083861 +2019-10-16 01:45:00,25.0,0.045502646,22.631891848426708 +2019-10-16 02:00:00,25.0,0.044973545,22.630312680606355 +2019-10-16 02:15:00,25.0,0.048148148,22.628733817580677 +2019-10-16 02:30:00,25.0,0.062962963,22.627155259552733 +2019-10-16 02:45:00,25.0,0.071957672,22.625577006725567 +2019-10-16 03:00:00,25.0,0.065608466,22.623999059302182 +2019-10-16 03:15:00,25.0,0.052380952,22.622421417485544 +2019-10-16 03:30:00,25.0,0.057671958,22.620844081478555 +2019-10-16 03:45:00,25.0,0.05978836,22.619267051484105 +2019-10-16 04:00:00,25.0,0.062433862,22.61769032770504 +2019-10-16 04:15:00,25.0,0.067195767,22.616113910344154 +2019-10-16 04:30:00,25.0,0.064550265,22.614537799604207 +2019-10-16 04:45:00,25.0,0.051851852,22.612961995687932 +2019-10-16 05:00:00,25.0,0.04021164,22.611386498798012 +2019-10-16 05:15:00,25.0,0.038624339,22.60981130913708 +2019-10-16 05:30:00,25.0,0.03968254,22.608236426907748 +2019-10-16 05:45:00,25.0,0.038624339,22.606661852312588 +2019-10-16 06:00:00,25.0,0.041798942,22.60508758555411 +2019-10-16 06:15:00,25.0,0.051322751,22.603513626834808 +2019-10-16 06:30:00,25.0,0.052380952,22.601939976357137 +2019-10-16 06:45:00,25.0,0.046031746,22.600366634323485 +2019-10-16 07:00:00,25.0,0.048677249,22.598793600936226 +2019-10-16 07:15:00,25.0,0.060846561,22.597220876397692 +2019-10-16 07:30:00,25.0,0.073015873,22.595648460910176 +2019-10-16 07:45:00,25.0,0.088888889,22.59407635467591 +2019-10-16 08:00:00,25.0,0.107936508,22.592504557897108 +2019-10-16 08:15:00,25.0,0.11957672,22.59093307077595 +2019-10-16 08:30:00,25.0,0.12962963,22.589361893514543 +2019-10-16 08:45:00,25.0,0.149206349,22.58779102631499 +2019-10-16 09:00:00,25.0,0.16984127,22.586220469379334 +2019-10-16 09:15:00,25.0,0.182010582,22.584650222909595 +2019-10-16 09:30:00,25.0,0.200529101,22.583080287107723 +2019-10-16 09:45:00,25.0,0.204232804,22.581510662175656 +2019-10-16 10:00:00,25.0,0.217989418,22.579941348315295 +2019-10-16 10:15:00,25.0,0.229100529,22.578372345728464 +2019-10-16 10:30:00,25.0,0.228042328,22.576803654616988 +2019-10-16 10:45:00,25.0,0.246560847,22.57523527518263 +2019-10-16 11:00:00,25.0,0.262433862,22.573667207627132 +2019-10-16 11:15:00,25.0,0.253439153,22.57209945215216 +2019-10-16 11:30:00,25.0,0.251851852,22.570532008959376 +2019-10-16 11:45:00,25.0,0.252910053,22.56896487825039 +2019-10-16 12:00:00,25.0,0.254497354,22.56739806022676 +2019-10-16 12:15:00,25.0,0.233333333,22.56583155509002 +2019-10-16 12:30:00,25.0,0.213756614,22.56426536304166 +2019-10-16 12:45:00,25.0,0.196825397,22.56269948428313 +2019-10-16 13:00:00,25.0,0.17989418,22.56113391901582 +2019-10-16 13:15:00,25.0,0.173544974,22.559568667441113 +2019-10-16 13:30:00,25.0,0.162433862,22.558003729760333 +2019-10-16 13:45:00,25.0,0.157142857,22.55643910617476 +2019-10-16 14:00:00,25.0,0.154497354,22.554874796885642 +2019-10-16 14:15:00,25.0,0.165608466,22.55331080209418 +2019-10-16 14:30:00,25.0,0.186772487,22.551747122001558 +2019-10-16 14:45:00,25.0,0.206878307,22.550183756808874 +2019-10-16 15:00:00,25.0,0.22010582,22.548620706717223 +2019-10-16 15:15:00,25.0,0.240740741,22.547057971927657 +2019-10-16 15:30:00,25.0,0.284126984,22.54549555264116 +2019-10-16 15:45:00,25.0,0.300529101,22.543933449058706 +2019-10-16 16:00:00,25.0,0.317460317,22.54237166138121 +2019-10-16 16:15:00,25.0,0.337566138,22.54081018980957 +2019-10-16 16:30:00,25.0,0.360846561,22.539249034544603 +2019-10-16 16:45:00,25.0,0.396825397,22.53768819578712 +2019-10-16 17:00:00,25.0,0.423280423,22.536127673737884 +2019-10-16 17:15:00,25.0,0.463492063,22.5345674685976 +2019-10-16 17:30:00,25.0,0.475132275,22.533007580566952 +2019-10-16 17:45:00,25.0,0.483597884,22.531448009846578 +2019-10-16 18:00:00,25.0,0.486772487,22.529888756637078 +2019-10-16 18:15:00,25.0,0.515873016,22.528329821138993 +2019-10-16 18:30:00,25.0,0.553968254,22.526771203552848 +2019-10-16 18:45:00,25.0,0.585185185,22.525212904079115 +2019-10-16 19:00:00,25.0,0.617460317,22.523654922918222 +2019-10-16 19:15:00,25.0,0.648148148,22.52209726027056 +2019-10-16 19:30:00,25.0,0.667724868,22.52053991633648 +2019-10-16 19:45:00,25.0,0.678835979,22.518982891316302 +2019-10-16 20:00:00,25.0,0.685714286,22.517426185410276 +2019-10-16 20:15:00,25.0,0.67989418,22.51586979881864 +2019-10-16 20:30:00,25.0,0.682539683,22.51431373174158 +2019-10-16 20:45:00,25.0,0.692592593,22.512757984379235 +2019-10-16 21:00:00,25.0,0.698941799,22.511202556931714 +2019-10-16 21:15:00,25.0,0.708465608,22.509647449599075 +2019-10-16 21:30:00,25.0,0.706878307,22.50809266258135 +2019-10-16 21:45:00,25.0,0.700529101,22.50653819607851 +2019-10-16 22:00:00,25.0,0.699470899,22.50498405029049 +2019-10-16 22:15:00,25.0,0.697354497,22.503430225417205 +2019-10-16 22:30:00,25.0,0.68994709,22.50187672165849 +2019-10-16 22:45:00,25.0,0.673015873,22.500323539214172 +2019-10-16 23:00:00,25.0,0.65026455,22.498770678284025 +2019-10-16 23:15:00,25.0,0.63015873,22.497218139067787 +2019-10-16 23:30:00,25.0,0.606349206,22.495665921765134 +2019-10-16 23:45:00,25.0,0.58994709,22.494114026575726 +2019-10-17 00:00:00,25.0,0.577248677,22.492562453699176 +2019-10-17 00:15:00,25.0,0.560846561,22.491011203335034 +2019-10-17 00:30:00,25.0,0.542328042,22.48946027568284 +2019-10-17 00:45:00,25.0,0.496296296,22.48790967094208 +2019-10-17 01:00:00,25.0,0.443915344,22.486359389312184 +2019-10-17 01:15:00,25.0,0.421164021,22.484809430992556 +2019-10-17 01:30:00,25.0,0.410582011,22.483259796182562 +2019-10-17 01:45:00,25.0,0.383597884,22.48171048508152 +2019-10-17 02:00:00,25.0,0.361904762,22.480161497888695 +2019-10-17 02:15:00,25.0,0.355026455,22.47861283480333 +2019-10-17 02:30:00,25.0,0.334920635,22.47706449602462 +2019-10-17 02:45:00,25.0,0.311640212,22.475516481751704 +2019-10-17 03:00:00,25.0,0.295238095,22.473968792183705 +2019-10-17 03:15:00,25.0,0.283068783,22.472421427519677 +2019-10-17 03:30:00,25.0,0.264021164,22.470874387958663 +2019-10-17 03:45:00,25.0,0.257671958,22.46932767369963 +2019-10-17 04:00:00,25.0,0.259259259,22.467781284941527 +2019-10-17 04:15:00,25.0,0.263492063,22.46623522188326 +2019-10-17 04:30:00,25.0,0.235449735,22.46468948472367 +2019-10-17 04:45:00,25.0,0.193121693,22.46314407366159 +2019-10-17 05:00:00,25.0,0.187830688,22.461598988895787 +2019-10-17 05:15:00,25.0,0.175132275,22.460054230625 +2019-10-17 05:30:00,25.0,0.173015873,22.45850979904791 +2019-10-17 05:45:00,25.0,0.182010582,22.456965694363166 +2019-10-17 06:00:00,25.0,0.185185185,22.45542191676939 +2019-10-17 06:15:00,25.0,0.195238095,22.45387846646512 +2019-10-17 06:30:00,25.0,0.193121693,22.452335343648897 +2019-10-17 06:45:00,25.0,0.18994709,22.450792548519196 +2019-10-17 07:00:00,25.0,0.192592593,22.449250081274464 +2019-10-17 07:15:00,25.0,0.18994709,22.44770794211308 +2019-10-17 07:30:00,25.0,0.189417989,22.446166131233404 +2019-10-17 07:45:00,25.0,0.203703704,22.44462464883376 +2019-10-17 08:00:00,25.0,0.202645503,22.443083495112393 +2019-10-17 08:15:00,25.0,0.2,22.441542670267545 +2019-10-17 08:30:00,25.0,0.213756614,22.440002174497398 +2019-10-17 08:45:00,25.0,0.241798942,22.4384620080001 +2019-10-17 09:00:00,25.0,0.252910053,22.43692217097374 +2019-10-17 09:15:00,25.0,0.275132275,22.43538266361638 +2019-10-17 09:30:00,25.0,0.313227513,22.43384348612604 +2019-10-17 09:45:00,25.0,0.326455026,22.432304638700685 +2019-10-17 10:00:00,25.0,0.356613757,22.430766121538245 +2019-10-17 10:15:00,25.0,0.363492063,22.42922793483661 +2019-10-17 10:30:00,25.0,0.361904762,22.427690078793635 +2019-10-17 10:45:00,25.0,0.355555556,22.426152553607107 +2019-10-17 11:00:00,25.0,0.342857143,22.424615359474792 +2019-10-17 11:15:00,25.0,0.331216931,22.423078496594414 +2019-10-17 11:30:00,25.0,0.308994709,22.421541965163634 +2019-10-17 11:45:00,25.0,0.278835979,22.42000576538009 +2019-10-17 12:00:00,25.0,0.299470899,22.418469897441376 +2019-10-17 12:15:00,25.0,0.298941799,22.416934361545046 +2019-10-17 12:30:00,25.0,0.294179894,22.415399157888587 +2019-10-17 12:45:00,25.0,0.284656085,22.413864286669465 +2019-10-17 13:00:00,25.0,0.298941799,22.41232974808511 +2019-10-17 13:15:00,25.0,0.297883598,22.410795542332885 +2019-10-17 13:30:00,25.0,0.286772487,22.409261669610125 +2019-10-17 13:45:00,25.0,0.278306878,22.407728130114123 +2019-10-17 14:00:00,25.0,0.257671958,22.406194924042133 +2019-10-17 14:15:00,25.0,0.23015873,22.404662051591348 +2019-10-17 14:30:00,25.0,0.214285714,22.403129512958934 +2019-10-17 14:45:00,25.0,0.222222222,22.401597308342016 +2019-10-17 15:00:00,25.0,0.202116402,22.400065437937656 +2019-10-17 15:15:00,25.0,0.178306878,22.398533901942898 +2019-10-17 15:30:00,25.0,0.160846561,22.397002700554726 +2019-10-17 15:45:00,25.0,0.157671958,22.395471833970095 +2019-10-17 16:00:00,25.0,0.174074074,22.393941302385898 +2019-10-17 16:15:00,25.0,0.155026455,22.392411105999 +2019-10-17 16:30:00,25.0,0.134391534,22.390881245006224 +2019-10-17 16:45:00,25.0,0.116931217,22.38935171960433 +2019-10-17 17:00:00,25.0,0.112169312,22.38782252999006 +2019-10-17 17:15:00,25.0,0.103703704,22.386293676360104 +2019-10-17 17:30:00,25.0,0.105820106,22.384765158911105 +2019-10-17 17:45:00,25.0,0.106349206,22.383236977839655 +2019-10-17 18:00:00,25.0,0.111111111,22.38170913334232 +2019-10-17 18:15:00,25.0,0.12962963,22.38018162561562 +2019-10-17 18:30:00,25.0,0.162433862,22.37865445485601 +2019-10-17 18:45:00,25.0,0.221164021,22.377127621259937 +2019-10-17 19:00:00,25.0,0.262433862,22.37560112502378 +2019-10-17 19:15:00,25.0,0.294179894,22.374074966343873 +2019-10-17 19:30:00,25.0,0.305820106,22.372549145416517 +2019-10-17 19:45:00,25.0,0.314285714,22.371023662437967 +2019-10-17 20:00:00,25.0,0.320634921,22.36949851760445 +2019-10-17 20:15:00,25.0,0.322222222,22.367973711112107 +2019-10-17 20:30:00,25.0,0.314285714,22.366449243157074 +2019-10-17 20:45:00,25.0,0.312169312,22.364925113935442 +2019-10-17 21:00:00,25.0,0.328571429,22.36340132364323 +2019-10-17 21:15:00,25.0,0.343386243,22.36187787247644 +2019-10-17 21:30:00,25.0,0.356613757,22.360354760631022 +2019-10-17 21:45:00,25.0,0.364021164,22.35883198830289 +2019-10-17 22:00:00,25.0,0.375661376,22.35730955568789 +2019-10-17 22:15:00,25.0,0.376190476,22.355787462981848 +2019-10-17 22:30:00,25.0,0.348148148,22.35426571038055 +2019-10-17 22:45:00,25.0,0.321164021,22.35274429807971 +2019-10-17 23:00:00,25.0,0.320634921,22.35122322627502 +2019-10-17 23:15:00,25.0,0.311640212,22.34970249516213 +2019-10-17 23:30:00,25.0,0.301587302,22.348182104936644 +2019-10-17 23:45:00,25.0,0.300529101,22.346662055794102 +2019-10-18 00:00:00,25.0,0.293121693,22.345142347930025 +2019-10-18 00:15:00,25.0,0.284656085,22.34362298153989 +2019-10-18 00:30:00,25.0,0.264550265,22.342103956819106 +2019-10-18 00:45:00,25.0,0.257142857,22.34058527396306 +2019-10-18 01:00:00,25.0,0.250793651,22.33906693316709 +2019-10-18 01:15:00,25.0,0.255026455,22.337548934626493 +2019-10-18 01:30:00,25.0,0.253439153,22.336031278536502 +2019-10-18 01:45:00,25.0,0.252380952,22.334513965092334 +2019-10-18 02:00:00,25.0,0.257142857,22.332996994489157 +2019-10-18 02:15:00,25.0,0.273015873,22.331480366922065 +2019-10-18 02:30:00,25.0,0.317989418,22.329964082586145 +2019-10-18 02:45:00,25.0,0.338095238,22.32844814167642 +2019-10-18 03:00:00,25.0,0.328042328,22.326932544387887 +2019-10-18 03:15:00,25.0,0.341269841,22.325417290915464 +2019-10-18 03:30:00,25.0,0.340740741,22.323902381454058 +2019-10-18 03:45:00,25.0,0.352910053,22.32238781619853 +2019-10-18 04:00:00,25.0,0.353968254,22.320873595343663 +2019-10-18 04:15:00,25.0,0.378835979,22.319359719084233 +2019-10-18 04:30:00,25.0,0.404232804,22.31784618761496 +2019-10-18 04:45:00,25.0,0.426455026,22.316333001130523 +2019-10-18 05:00:00,25.0,0.457671958,22.314820159825537 +2019-10-18 05:15:00,25.0,0.428042328,22.313307663894594 +2019-10-18 05:30:00,25.0,0.406349206,22.311795513532243 +2019-10-18 05:45:00,25.0,0.44021164,22.310283708932964 +2019-10-18 06:00:00,25.0,0.475661376,22.30877225029122 +2019-10-18 06:15:00,25.0,0.47989418,22.30726113780141 +2019-10-18 06:30:00,25.0,0.497354497,22.305750371657915 +2019-10-18 06:45:00,25.0,0.525396825,22.304239952055035 +2019-10-18 07:00:00,25.0,0.533862434,22.302729879187044 +2019-10-18 07:15:00,25.0,0.535449735,22.301220153248188 +2019-10-18 07:30:00,25.0,0.525925926,22.29971077443263 +2019-10-18 07:45:00,25.0,0.544973545,22.29820174293452 +2019-10-18 08:00:00,25.0,0.569312169,22.29669305894795 +2019-10-18 08:15:00,25.0,0.569312169,22.295184722666985 +2019-10-18 08:30:00,25.0,0.579365079,22.29367673428561 +2019-10-18 08:45:00,25.0,0.585185185,22.292169093997796 +2019-10-18 09:00:00,25.0,0.605820106,22.290661801997462 +2019-10-18 09:15:00,25.0,0.604761905,22.28915485847847 +2019-10-18 09:30:00,25.0,0.620634921,22.28764826363465 +2019-10-18 09:45:00,25.0,0.63968254,22.286142017659788 +2019-10-18 10:00:00,25.0,0.661904762,22.284636120747628 +2019-10-18 10:15:00,25.0,0.652380952,22.283130573091842 +2019-10-18 10:30:00,25.0,0.620634921,22.281625374886087 +2019-10-18 10:45:00,25.0,0.621693122,22.280120526323977 +2019-10-18 11:00:00,25.0,0.632275132,22.278616027599046 +2019-10-18 11:15:00,25.0,0.634920635,22.27711187890482 +2019-10-18 11:30:00,25.0,0.635978836,22.27560808043477 +2019-10-18 11:45:00,25.0,0.631216931,22.274104632382304 +2019-10-18 12:00:00,25.0,0.662433862,22.272601534940804 +2019-10-18 12:15:00,25.0,0.656613757,22.27109878830361 +2019-10-18 12:30:00,25.0,0.663492063,22.26959639266401 +2019-10-18 12:45:00,25.0,0.684656085,22.26809434821523 +2019-10-18 13:00:00,25.0,0.706878307,22.266592655150475 +2019-10-18 13:15:00,25.0,0.707936508,22.265091313662907 +2019-10-18 13:30:00,25.0,0.725396825,22.263590323945614 +2019-10-18 13:45:00,25.0,0.746031746,22.26208968619166 +2019-10-18 14:00:00,25.0,0.724867725,22.26058940059407 +2019-10-18 14:15:00,25.0,0.726455026,22.259089467345817 +2019-10-18 14:30:00,25.0,0.695767196,22.257589886639806 +2019-10-18 14:45:00,25.0,0.657671958,22.25609065866893 +2019-10-18 15:00:00,25.0,0.681481481,22.254591783626033 +2019-10-18 15:15:00,25.0,0.711640212,22.25309326170388 +2019-10-18 15:30:00,25.0,0.720634921,22.251595093095233 +2019-10-18 15:45:00,25.0,0.719047619,22.25009727799278 +2019-10-18 16:00:00,25.0,0.722222222,22.248599816589184 +2019-10-18 16:15:00,25.0,0.72962963,22.24710270907704 +2019-10-18 16:30:00,25.0,0.72962963,22.245605955648912 +2019-10-18 16:45:00,25.0,0.721164021,22.244109556497328 +2019-10-18 17:00:00,25.0,0.726455026,22.242613511814742 +2019-10-18 17:15:00,25.0,0.73968254,22.241117821793587 +2019-10-18 17:30:00,25.0,0.743386243,22.23962248662624 +2019-10-18 17:45:00,25.0,0.744973545,22.238127506505037 +2019-10-18 18:00:00,25.0,0.717989418,22.236632881622263 +2019-10-18 18:15:00,25.0,0.708465608,22.23513861217016 +2019-10-18 18:30:00,25.0,0.644973545,22.23364469834093 +2019-10-18 18:45:00,25.0,0.63968254,22.232151140326714 +2019-10-18 19:00:00,25.0,0.667195767,22.230657938319624 +2019-10-18 19:15:00,25.0,0.653968254,22.229165092511714 +2019-10-18 19:30:00,25.0,0.689417989,22.22767260309501 +2019-10-18 19:45:00,25.0,0.688359788,22.226180470261458 +2019-10-18 20:00:00,25.0,0.653439153,22.224688694202996 +2019-10-18 20:15:00,25.0,0.662433862,22.223197275111502 +2019-10-18 20:30:00,25.0,0.683597884,22.22170621317879 +2019-10-18 20:45:00,25.0,0.685714286,22.220215508596652 +2019-10-18 21:00:00,25.0,0.687301587,22.21872516155683 +2019-10-18 21:15:00,25.0,0.692063492,22.217235172251016 +2019-10-18 21:30:00,25.0,0.698941799,22.21574554087085 +2019-10-18 21:45:00,25.0,0.702116402,22.21425626760793 +2019-10-18 22:00:00,25.0,0.705291005,22.21276735265382 +2019-10-18 22:15:00,25.0,0.703703704,22.21127879620002 +2019-10-18 22:30:00,25.0,0.700529101,22.20979059843799 +2019-10-18 22:45:00,25.0,0.698412698,22.20830275955915 +2019-10-18 23:00:00,25.0,0.697354497,22.20681527975487 +2019-10-18 23:15:00,25.0,0.708994709,22.20532815921647 +2019-10-18 23:30:00,25.0,0.739153439,22.203841398135225 +2019-10-18 23:45:00,25.0,0.74021164,22.20235499670238 +2019-10-19 00:00:00,25.0,0.737566138,22.200868955109094 +2019-10-19 00:15:00,25.0,0.716931217,22.199383273546523 +2019-10-19 00:30:00,25.0,0.682010582,22.197897952205757 +2019-10-19 00:45:00,25.0,0.74021164,22.196412991277843 +2019-10-19 01:00:00,25.0,0.768783069,22.19492839095377 +2019-10-19 01:15:00,25.0,0.771957672,22.193444151424497 +2019-10-19 01:30:00,25.0,0.774074074,22.191960272880937 +2019-10-19 01:45:00,25.0,0.76984127,22.190476755513938 +2019-10-19 02:00:00,25.0,0.766137566,22.18899359951432 +2019-10-19 02:15:00,25.0,0.765608466,22.187510805072847 +2019-10-19 02:30:00,25.0,0.746560847,22.18602837238025 +2019-10-19 02:45:00,25.0,0.734391534,22.184546301627183 +2019-10-19 03:00:00,25.0,0.750793651,22.18306459300429 +2019-10-19 03:15:00,25.0,0.761904762,22.181583246702147 +2019-10-19 03:30:00,25.0,0.76031746,22.180102262911284 +2019-10-19 03:45:00,25.0,0.762962963,22.178621641822193 +2019-10-19 04:00:00,25.0,0.777248677,22.17714138362531 +2019-10-19 04:15:00,25.0,0.8,22.175661488511047 +2019-10-19 04:30:00,25.0,0.794708995,22.174181956669727 +2019-10-19 04:45:00,25.0,0.794708995,22.172702788291662 +2019-10-19 05:00:00,25.0,0.793121693,22.17122398356711 +2019-10-19 05:15:00,25.0,0.774603175,22.16974554268627 +2019-10-19 05:30:00,25.0,0.765079365,22.168267465839307 +2019-10-19 05:45:00,25.0,0.765079365,22.16678975321634 +2019-10-19 06:00:00,25.0,0.767195767,22.165312405007423 +2019-10-19 06:15:00,25.0,0.751851852,22.16383542140258 +2019-10-19 06:30:00,25.0,0.735449735,22.16235880259179 +2019-10-19 06:45:00,25.0,0.742328042,22.16088254876498 +2019-10-19 07:00:00,25.0,0.738624339,22.159406660112023 +2019-10-19 07:15:00,25.0,0.742328042,22.157931136822754 +2019-10-19 07:30:00,25.0,0.739153439,22.15645597908696 +2019-10-19 07:45:00,25.0,0.753439153,22.15498118709437 +2019-10-19 08:00:00,25.0,0.763492063,22.153506761034684 +2019-10-19 08:15:00,25.0,0.766137566,22.152032701097543 +2019-10-19 08:30:00,25.0,0.757671958,22.150559007472552 +2019-10-19 08:45:00,25.0,0.751322751,22.14908568034925 +2019-10-19 09:00:00,25.0,0.748677249,22.14761271991714 +2019-10-19 09:15:00,25.0,0.739153439,22.14614012636569 +2019-10-19 09:30:00,25.0,0.73015873,22.14466789988429 +2019-10-19 09:45:00,25.0,0.748148148,22.143196040662314 +2019-10-19 10:00:00,25.0,0.763492063,22.141724548889073 +2019-10-19 10:15:00,25.0,0.765079365,22.140253424753837 +2019-10-19 10:30:00,25.0,0.758730159,22.138782668445817 +2019-10-19 10:45:00,25.0,0.75026455,22.13731228015419 +2019-10-19 11:00:00,25.0,0.747089947,22.135842260068088 +2019-10-19 11:15:00,25.0,0.745502646,22.134372608376573 +2019-10-19 11:30:00,25.0,0.746031746,22.132903325268686 +2019-10-19 11:45:00,25.0,0.740740741,22.131434410933405 +2019-10-19 12:00:00,25.0,0.730687831,22.129965865559672 +2019-10-19 12:15:00,25.0,0.707936508,22.128497689336363 +2019-10-19 12:30:00,25.0,0.662962963,22.127029882452327 +2019-10-19 12:45:00,25.0,0.63015873,22.12556244509636 +2019-10-19 13:00:00,25.0,0.622222222,22.124095377457195 +2019-10-19 13:15:00,25.0,0.626455026,22.122628679723533 +2019-10-19 13:30:00,25.0,0.603703704,22.12116235208403 +2019-10-19 13:45:00,25.0,0.567724868,22.119696394727296 +2019-10-19 14:00:00,25.0,0.546560847,22.118230807841865 +2019-10-19 14:15:00,25.0,0.523280423,22.116765591616257 +2019-10-19 14:30:00,25.0,0.506878307,22.115300746238933 +2019-10-19 14:45:00,25.0,0.51005291,22.113836271898297 +2019-10-19 15:00:00,25.0,0.512698413,22.112372168782713 +2019-10-19 15:15:00,25.0,0.501587302,22.110908437080507 +2019-10-19 15:30:00,25.0,0.502645503,22.109445076979945 +2019-10-19 15:45:00,25.0,0.500529101,22.10798208866924 +2019-10-19 16:00:00,25.0,0.518518519,22.10651947233657 +2019-10-19 16:15:00,25.0,0.530687831,22.105057228170065 +2019-10-19 16:30:00,25.0,0.551851852,22.103595356357793 +2019-10-19 16:45:00,25.0,0.562433862,22.102133857087786 +2019-10-19 17:00:00,25.0,0.565608466,22.100672730548023 +2019-10-19 17:15:00,25.0,0.601587302,22.099211976926455 +2019-10-19 17:30:00,25.0,0.588888889,22.09775159641094 +2019-10-19 17:45:00,25.0,0.565079365,22.096291589189335 +2019-10-19 18:00:00,25.0,0.592063492,22.09483195544943 +2019-10-19 18:15:00,25.0,0.633862434,22.09337269537895 +2019-10-19 18:30:00,25.0,0.642328042,22.0919138091656 +2019-10-19 18:45:00,25.0,0.626455026,22.090455296997025 +2019-10-19 19:00:00,25.0,0.600529101,22.088997159060828 +2019-10-19 19:15:00,25.0,0.613227513,22.087539395544546 +2019-10-19 19:30:00,25.0,0.629100529,22.08608200663568 +2019-10-19 19:45:00,25.0,0.644444444,22.0846249925217 +2019-10-19 20:00:00,25.0,0.651322751,22.08316835338999 +2019-10-19 20:15:00,25.0,0.653439153,22.081712089427917 +2019-10-19 20:30:00,25.0,0.623280423,22.080256200822785 +2019-10-19 20:45:00,25.0,0.643386243,22.078800687761863 +2019-10-19 21:00:00,25.0,0.682539683,22.077345550432344 +2019-10-19 21:15:00,25.0,0.704232804,22.075890789021408 +2019-10-19 21:30:00,25.0,0.695238095,22.074436403716167 +2019-10-19 21:45:00,25.0,0.648677249,22.07298239470368 +2019-10-19 22:00:00,25.0,0.658201058,22.071528762170967 +2019-10-19 22:15:00,25.0,0.652910053,22.070075506305002 +2019-10-19 22:30:00,25.0,0.632804233,22.06862262729271 +2019-10-19 22:45:00,25.0,0.643915344,22.06717012532095 +2019-10-19 23:00:00,25.0,0.652910053,22.065718000576556 +2019-10-19 23:15:00,25.0,0.658201058,22.06426625324631 +2019-10-19 23:30:00,25.0,0.662433862,22.062814883516918 +2019-10-19 23:45:00,25.0,0.63015873,22.061363891575073 +2019-10-20 00:00:00,25.0,0.608465608,22.059913277607414 +2019-10-20 00:15:00,25.0,0.607936508,22.0584630418005 +2019-10-20 00:30:00,25.0,0.597354497,22.057013184340878 +2019-10-20 00:45:00,25.0,0.598941799,22.05556370541503 +2019-10-20 01:00:00,25.0,0.607407407,22.054114605209396 +2019-10-20 01:15:00,25.0,0.557142857,22.05266588391035 +2019-10-20 01:30:00,25.0,0.539153439,22.051217541704236 +2019-10-20 01:45:00,25.0,0.543915344,22.04976957877735 +2019-10-20 02:00:00,25.0,0.559259259,22.048321995315924 +2019-10-20 02:15:00,25.0,0.552910053,22.04687479150615 +2019-10-20 02:30:00,25.0,0.541798942,22.04542796753417 +2019-10-20 02:45:00,25.0,0.506349206,22.04398152358609 +2019-10-20 03:00:00,25.0,0.461375661,22.04253545984794 +2019-10-20 03:15:00,25.0,0.431216931,22.041089776505718 +2019-10-20 03:30:00,25.0,0.395238095,22.039644473745383 +2019-10-20 03:45:00,25.0,0.36984127,22.038199551752818 +2019-10-20 04:00:00,25.0,0.355026455,22.03675501071388 +2019-10-20 04:15:00,25.0,0.325396825,22.03531085081437 +2019-10-20 04:30:00,25.0,0.303703704,22.033867072240042 +2019-10-20 04:45:00,25.0,0.278306878,22.032423675176585 +2019-10-20 05:00:00,25.0,0.248677249,22.030980659809664 +2019-10-20 05:15:00,25.0,0.234391534,22.029538026324886 +2019-10-20 05:30:00,25.0,0.20952381,22.02809577490779 +2019-10-20 05:45:00,25.0,0.202645503,22.026653905743892 +2019-10-20 06:00:00,25.0,0.207407407,22.02521241901865 +2019-10-20 06:15:00,25.0,0.206349206,22.023771314917475 +2019-10-20 06:30:00,25.0,0.221164021,22.022330593625714 +2019-10-20 06:45:00,25.0,0.237566138,22.02089025532868 +2019-10-20 07:00:00,25.0,0.223280423,22.01945030021164 +2019-10-20 07:15:00,25.0,0.219047619,22.018010728459792 +2019-10-20 07:30:00,25.0,0.214285714,22.016571540258305 +2019-10-20 07:45:00,25.0,0.206349206,22.015132735792285 +2019-10-20 08:00:00,25.0,0.185714286,22.01369431524681 +2019-10-20 08:15:00,25.0,0.167195767,22.01225627880687 +2019-10-20 08:30:00,25.0,0.16031746,22.01081862665744 +2019-10-20 08:45:00,25.0,0.163492063,22.009381358983443 +2019-10-20 09:00:00,25.0,0.147089947,22.007944475969726 +2019-10-20 09:15:00,25.0,0.137037037,22.006507977801114 +2019-10-20 09:30:00,25.0,0.136507937,22.005071864662373 +2019-10-20 09:45:00,25.0,0.135978836,22.003636136738226 +2019-10-20 10:00:00,25.0,0.134391534,22.002200794213323 +2019-10-20 10:15:00,25.0,0.13015873,22.000765837272287 +2019-10-20 10:30:00,25.0,0.124867725,21.9993312660997 +2019-10-20 10:45:00,25.0,0.115873016,21.997897080880055 +2019-10-20 11:00:00,25.0,0.107936508,21.996463281797837 +2019-10-20 11:15:00,25.0,0.096296296,21.99502986903746 +2019-10-20 11:30:00,25.0,0.092592593,21.9935968427833 +2019-10-20 11:45:00,25.0,0.088888889,21.992164203219662 +2019-10-20 12:00:00,25.0,0.077248677,21.990731950530826 +2019-10-20 12:15:00,25.0,0.06984127,21.989300084901014 +2019-10-20 12:30:00,25.0,0.055026455,21.987868606514382 +2019-10-20 12:45:00,25.0,0.049206349,21.98643751555506 +2019-10-20 13:00:00,25.0,0.04021164,21.985006812207118 +2019-10-20 13:15:00,25.0,0.029100529,21.983576496654585 +2019-10-20 13:30:00,25.0,0.022751323,21.982146569081408 +2019-10-20 13:45:00,25.0,0.015343915,21.980717029671528 +2019-10-20 14:00:00,25.0,0.01005291,21.97928787860881 +2019-10-20 14:15:00,25.0,0.006878307,21.97785911607707 +2019-10-20 14:30:00,25.0,0.006349206,21.976430742260085 +2019-10-20 14:45:00,25.0,0.006349206,21.97500275734157 +2019-10-20 15:00:00,25.0,0.004232804,21.97357516150521 +2019-10-20 15:15:00,25.0,0.003703704,21.972147954934602 +2019-10-20 15:30:00,25.0,0.003703704,21.97072113781333 +2019-10-20 15:45:00,25.0,0.003174603,21.969294710324924 +2019-10-20 16:00:00,25.0,0.002645503,21.967868672652838 +2019-10-20 16:15:00,25.0,0.002116402,21.966443024980496 +2019-10-20 16:30:00,25.0,0.002116402,21.96501776749127 +2019-10-20 16:45:00,25.0,0.002116402,21.96359290036849 +2019-10-20 17:00:00,25.0,0.001587302,21.962168423795404 +2019-10-20 17:15:00,25.0,0.001058201,21.960744337955248 +2019-10-20 17:30:00,25.0,0.001058201,21.959320643031194 +2019-10-20 17:45:00,25.0,0.000529101,21.957897339206347 +2019-10-20 18:00:00,25.0,0.0,21.95647442666378 +2019-10-20 18:15:00,25.0,0.0,21.955051905586526 +2019-10-20 18:30:00,25.0,0.0,21.953629776157527 +2019-10-20 18:45:00,25.0,0.0,21.952208038559718 +2019-10-20 19:00:00,25.0,0.0,21.950786692975964 +2019-10-20 19:15:00,25.0,0.0,21.949365739589084 +2019-10-20 19:30:00,25.0,0.000529101,21.947945178581836 +2019-10-20 19:45:00,25.0,0.001058201,21.946525010136938 +2019-10-20 20:00:00,25.0,0.002645503,21.945105234437065 +2019-10-20 20:15:00,25.0,0.003703704,21.94368585166482 +2019-10-20 20:30:00,25.0,0.003174603,21.94226686200277 +2019-10-20 20:45:00,25.0,0.004761905,21.94084826563343 +2019-10-20 21:00:00,25.0,0.005820106,21.939430062739273 +2019-10-20 21:15:00,25.0,0.006878307,21.938012253502695 +2019-10-20 21:30:00,25.0,0.012698413,21.936594838106064 +2019-10-20 21:45:00,25.0,0.016931217,21.9351778167317 +2019-10-20 22:00:00,25.0,0.02010582,21.93376118956185 +2019-10-20 22:15:00,25.0,0.023809524,21.932344956778728 +2019-10-20 22:30:00,25.0,0.028042328,21.930929118564496 +2019-10-20 22:45:00,25.0,0.033862434,21.929513675101266 +2019-10-20 23:00:00,25.0,0.045502646,21.928098626571085 +2019-10-20 23:15:00,25.0,0.054497354,21.926683973155967 +2019-10-20 23:30:00,25.0,0.05978836,21.925269715037874 +2019-10-20 23:45:00,25.0,0.070899471,21.9238558523987 +2019-10-21 00:00:00,25.0,0.080952381,21.922442385420297 +2019-10-21 00:15:00,25.0,0.092063492,21.92102931428448 +2019-10-21 00:30:00,25.0,0.104232804,21.919616639173 +2019-10-21 00:45:00,25.0,0.138624339,21.91820436026755 +2019-10-21 01:00:00,25.0,0.124867725,21.91679247774978 +2019-10-21 01:15:00,25.0,0.096296296,21.915380991801307 +2019-10-21 01:30:00,25.0,0.102645503,21.91396990260366 +2019-10-21 01:45:00,25.0,0.105291005,21.912559210338344 +2019-10-21 02:00:00,25.0,0.115343915,21.911148915186804 +2019-10-21 02:15:00,25.0,0.135449735,21.909739017330445 +2019-10-21 02:30:00,25.0,0.151851852,21.908329516950594 +2019-10-21 02:45:00,25.0,0.138095238,21.906920414228555 +2019-10-21 03:00:00,25.0,0.153439153,21.905511709345575 +2019-10-21 03:15:00,25.0,0.16031746,21.904103402482832 +2019-10-21 03:30:00,25.0,0.172486772,21.902695493821472 +2019-10-21 03:45:00,25.0,0.185185185,21.901287983542584 +2019-10-21 04:00:00,25.0,0.183597884,21.899880871827214 +2019-10-21 04:15:00,25.0,0.196296296,21.898474158856327 +2019-10-21 04:30:00,25.0,0.212698413,21.897067844810874 +2019-10-21 04:45:00,25.0,0.224338624,21.895661929871736 +2019-10-21 05:00:00,25.0,0.21957672,21.89425641421974 +2019-10-21 05:15:00,25.0,0.23015873,21.892851298035666 +2019-10-21 05:30:00,25.0,0.226455026,21.89144658150025 +2019-10-21 05:45:00,25.0,0.225396825,21.89004226479417 +2019-10-21 06:00:00,25.0,0.230687831,21.888638348098045 +2019-10-21 06:15:00,25.0,0.243386243,21.887234831592455 +2019-10-21 06:30:00,25.0,0.298412698,21.88583171545793 +2019-10-21 06:45:00,25.0,0.32962963,21.884428999874924 +2019-10-21 07:00:00,25.0,0.347619048,21.88302668502387 +2019-10-21 07:15:00,25.0,0.385714286,21.881624771085136 +2019-10-21 07:30:00,25.0,0.415343915,21.880223258239045 +2019-10-21 07:45:00,25.0,0.420634921,21.878822146665847 +2019-10-21 08:00:00,25.0,0.415343915,21.87742143654577 +2019-10-21 08:15:00,25.0,0.41005291,21.876021128058976 +2019-10-21 08:30:00,25.0,0.405820106,21.874621221385567 +2019-10-21 08:45:00,25.0,0.439153439,21.873221716705608 +2019-10-21 09:00:00,25.0,0.486243386,21.871822614199104 +2019-10-21 09:15:00,25.0,0.52962963,21.87042391404602 +2019-10-21 09:30:00,25.0,0.477248677,21.86902561642625 +2019-10-21 09:45:00,25.0,0.46031746,21.867627721519643 +2019-10-21 10:00:00,25.0,0.458730159,21.866230229506016 +2019-10-21 10:15:00,25.0,0.451322751,21.8648331405651 +2019-10-21 10:30:00,25.0,0.456084656,21.8634364548766 +2019-10-21 10:45:00,25.0,0.432804233,21.862040172620155 +2019-10-21 11:00:00,25.0,0.404761905,21.860644293975376 +2019-10-21 11:15:00,25.0,0.397883598,21.85924881912178 +2019-10-21 11:30:00,25.0,0.387301587,21.85785374823887 +2019-10-21 11:45:00,25.0,0.363492063,21.856459081506085 +2019-10-21 12:00:00,25.0,0.338624339,21.8550648191028 +2019-10-21 12:15:00,25.0,0.33015873,21.853670961208355 +2019-10-21 12:30:00,25.0,0.325396825,21.85227750800204 +2019-10-21 12:45:00,25.0,0.291005291,21.850884459663064 +2019-10-21 13:00:00,25.0,0.250793651,21.849491816370612 +2019-10-21 13:15:00,25.0,0.218518519,21.848099578303817 +2019-10-21 13:30:00,25.0,0.212169312,21.84670774564175 +2019-10-21 13:45:00,25.0,0.202116402,21.845316318563423 +2019-10-21 14:00:00,25.0,0.191534392,21.843925297247807 +2019-10-21 14:15:00,25.0,0.170899471,21.842534681873833 +2019-10-21 14:30:00,25.0,0.126455026,21.841144472620343 +2019-10-21 14:45:00,25.0,0.102116402,21.83975466966616 +2019-10-21 15:00:00,25.0,0.087830688,21.838365273190043 +2019-10-21 15:15:00,25.0,0.076719577,21.836976283370706 +2019-10-21 15:30:00,25.0,0.062433862,21.835587700386792 +2019-10-21 15:45:00,25.0,0.051851852,21.834199524416906 +2019-10-21 16:00:00,25.0,0.059259259,21.83281175563961 +2019-10-21 16:15:00,25.0,0.07037037,21.831424394233387 +2019-10-21 16:30:00,25.0,0.087301587,21.830037440376692 +2019-10-21 16:45:00,25.0,0.092592593,21.828650894247914 +2019-10-21 17:00:00,25.0,0.097883598,21.8272647560254 +2019-10-21 17:15:00,25.0,0.096296296,21.825879025887428 +2019-10-21 17:30:00,25.0,0.088888889,21.82449370401224 +2019-10-21 17:45:00,25.0,0.086772487,21.823108790578026 +2019-10-21 18:00:00,25.0,0.085185185,21.8217242857629 +2019-10-21 18:15:00,25.0,0.076190476,21.82034018974495 +2019-10-21 18:30:00,25.0,0.067195767,21.818956502702203 +2019-10-21 18:45:00,25.0,0.064550265,21.817573224812637 +2019-10-21 19:00:00,25.0,0.07037037,21.816190356254157 +2019-10-21 19:15:00,25.0,0.08042328,21.81480789720464 +2019-10-21 19:30:00,25.0,0.096296296,21.81342584784191 +2019-10-21 19:45:00,25.0,0.114285714,21.81204420834371 +2019-10-21 20:00:00,25.0,0.121693122,21.810662978887763 +2019-10-21 20:15:00,25.0,0.12962963,21.80928215965172 +2019-10-21 20:30:00,25.0,0.140740741,21.807901750813194 +2019-10-21 20:45:00,25.0,0.162433862,21.806521752549724 +2019-10-21 21:00:00,25.0,0.200529101,21.805142165038816 +2019-10-21 21:15:00,25.0,0.222751323,21.80376298845792 +2019-10-21 21:30:00,25.0,0.250793651,21.802384222984415 +2019-10-21 21:45:00,25.0,0.246031746,21.801005868795652 +2019-10-21 22:00:00,25.0,0.229100529,21.799627926068915 +2019-10-21 22:15:00,25.0,0.225925926,21.798250394981444 +2019-10-21 22:30:00,25.0,0.222222222,21.79687327571041 +2019-10-21 22:45:00,25.0,0.23015873,21.795496568432945 +2019-10-21 23:00:00,25.0,0.229100529,21.794120273326133 +2019-10-21 23:15:00,25.0,0.241269841,21.79274439056698 +2019-10-21 23:30:00,25.0,0.24021164,21.791368920332463 +2019-10-21 23:45:00,25.0,0.238624339,21.789993862799502 +2019-10-22 00:00:00,25.0,0.22962963,21.788619218144962 +2019-10-22 00:15:00,25.0,0.217460317,21.78724498654564 +2019-10-22 00:30:00,25.0,0.215343915,21.785871168178303 +2019-10-22 00:45:00,25.0,0.212698413,21.784497763219658 +2019-10-22 01:00:00,25.0,0.205291005,21.783124771846346 +2019-10-22 01:15:00,25.0,0.201587302,21.78175219423497 +2019-10-22 01:30:00,25.0,0.194179894,21.780380030562064 +2019-10-22 01:45:00,25.0,0.186243386,21.779008281004142 +2019-10-22 02:00:00,25.0,0.178835979,21.777636945737616 +2019-10-22 02:15:00,25.0,0.173015873,21.776266024938884 +2019-10-22 02:30:00,25.0,0.173544974,21.77489551878428 +2019-10-22 02:45:00,25.0,0.17989418,21.773525427450068 +2019-10-22 03:00:00,25.0,0.202116402,21.772155751112482 +2019-10-22 03:15:00,25.0,0.21005291,21.770786489947692 +2019-10-22 03:30:00,25.0,0.215873016,21.76941764413182 +2019-10-22 03:45:00,25.0,0.224867725,21.768049213840918 +2019-10-22 04:00:00,25.0,0.233862434,21.766681199251007 +2019-10-22 04:15:00,25.0,0.246031746,21.765313600538043 +2019-10-22 04:30:00,25.0,0.258730159,21.763946417877925 +2019-10-22 04:45:00,25.0,0.254497354,21.7625796514465 +2019-10-22 05:00:00,25.0,0.256084656,21.761213301419573 +2019-10-22 05:15:00,25.0,0.252380952,21.759847367972895 +2019-10-22 05:30:00,25.0,0.25026455,21.758481851282134 +2019-10-22 05:45:00,25.0,0.257671958,21.75711675152294 +2019-10-22 06:00:00,25.0,0.261904762,21.755752068870894 +2019-10-22 06:15:00,25.0,0.240740741,21.754387803501523 +2019-10-22 06:30:00,25.0,0.23015873,21.753023955590294 +2019-10-22 06:45:00,25.0,0.217989418,21.751660525312648 +2019-10-22 07:00:00,25.0,0.207407407,21.750297512843932 +2019-10-22 07:15:00,25.0,0.21005291,21.74893491835947 +2019-10-22 07:30:00,25.0,0.214814815,21.74757274203452 +2019-10-22 07:45:00,25.0,0.206349206,21.746210984044296 +2019-10-22 08:00:00,25.0,0.205820106,21.744849644563935 +2019-10-22 08:15:00,25.0,0.19047619,21.743488723768543 +2019-10-22 08:30:00,25.0,0.175661376,21.742128221833173 +2019-10-22 08:45:00,25.0,0.16031746,21.740768138932804 +2019-10-22 09:00:00,25.0,0.143915344,21.739408475242378 +2019-10-22 09:15:00,25.0,0.141798942,21.738049230936774 +2019-10-22 09:30:00,25.0,0.135978836,21.73669040619083 +2019-10-22 09:45:00,25.0,0.142328042,21.735332001179316 +2019-10-22 10:00:00,25.0,0.14973545,21.73397401607695 +2019-10-22 10:15:00,25.0,0.177777778,21.73261645105841 +2019-10-22 10:30:00,25.0,0.197883598,21.73125930629829 +2019-10-22 10:45:00,25.0,0.191005291,21.729902581971167 +2019-10-22 11:00:00,25.0,0.2,21.728546278251535 +2019-10-22 11:15:00,25.0,0.204761905,21.727190395313862 +2019-10-22 11:30:00,25.0,0.224338624,21.72583493333252 +2019-10-22 11:45:00,25.0,0.224867725,21.724479892481867 +2019-10-22 12:00:00,25.0,0.23968254,21.723125272936194 +2019-10-22 12:15:00,25.0,0.266666667,21.72177107486972 +2019-10-22 12:30:00,25.0,0.29047619,21.72041729845664 +2019-10-22 12:45:00,25.0,0.334920635,21.719063943871074 +2019-10-22 13:00:00,25.0,0.358730159,21.7177110112871 +2019-10-22 13:15:00,25.0,0.377777778,21.716358500878723 +2019-10-22 13:30:00,25.0,0.387830688,21.71500641281991 +2019-10-22 13:45:00,25.0,0.39047619,21.713654747284583 +2019-10-22 14:00:00,25.0,0.388359788,21.712303504446577 +2019-10-22 14:15:00,25.0,0.397883598,21.710952684479704 +2019-10-22 14:30:00,25.0,0.42010582,21.7096022875577 +2019-10-22 14:45:00,25.0,0.440740741,21.708252313854274 +2019-10-22 15:00:00,25.0,0.454497354,21.706902763543045 +2019-10-22 15:15:00,25.0,0.455026455,21.7055536367976 +2019-10-22 15:30:00,25.0,0.455026455,21.704204933791473 +2019-10-22 15:45:00,25.0,0.457142857,21.70285665469813 +2019-10-22 16:00:00,25.0,0.48042328,21.70150879969099 +2019-10-22 16:15:00,25.0,0.47989418,21.70016136894342 +2019-10-22 16:30:00,25.0,0.482010582,21.698814362628735 +2019-10-22 16:45:00,25.0,0.48994709,21.697467780920178 +2019-10-22 17:00:00,25.0,0.494179894,21.69612162399096 +2019-10-22 17:15:00,25.0,0.49047619,21.69477589201422 +2019-10-22 17:30:00,25.0,0.480952381,21.693430585163053 +2019-10-22 17:45:00,25.0,0.46984127,21.69208570361049 +2019-10-22 18:00:00,25.0,0.455026455,21.69074124752952 +2019-10-22 18:15:00,25.0,0.442328042,21.689397217093074 +2019-10-22 18:30:00,25.0,0.428042328,21.688053612474008 +2019-10-22 18:45:00,25.0,0.422751323,21.68671043384515 +2019-10-22 19:00:00,25.0,0.426984127,21.68536768137927 +2019-10-22 19:15:00,25.0,0.422751323,21.68402535524906 +2019-10-22 19:30:00,25.0,0.412698413,21.682683455627178 +2019-10-22 19:45:00,25.0,0.417460317,21.681341982686227 +2019-10-22 20:00:00,25.0,0.422751323,21.680000936598756 +2019-10-22 20:15:00,25.0,0.422751323,21.67866031753724 +2019-10-22 20:30:00,25.0,0.412169312,21.677320125674115 +2019-10-22 20:45:00,25.0,0.411640212,21.67598036118177 +2019-10-22 21:00:00,25.0,0.422751323,21.674641024232518 +2019-10-22 21:15:00,25.0,0.431216931,21.673302114998627 +2019-10-22 21:30:00,25.0,0.425396825,21.671963633652318 +2019-10-22 21:45:00,25.0,0.401587302,21.67062558036575 +2019-10-22 22:00:00,25.0,0.386772487,21.669287955311017 +2019-10-22 22:15:00,25.0,0.374074074,21.667950758660176 +2019-10-22 22:30:00,25.0,0.37037037,21.66661399058522 +2019-10-22 22:45:00,25.0,0.370899471,21.66527765125808 +2019-10-22 23:00:00,25.0,0.367724868,21.663941740850643 +2019-10-22 23:15:00,25.0,0.35978836,21.662606259534737 +2019-10-22 23:30:00,25.0,0.340740741,21.661271207482145 +2019-10-22 23:45:00,25.0,0.324338624,21.659936584864564 +2019-10-23 00:00:00,25.0,0.316402116,21.65860239185367 +2019-10-23 00:15:00,25.0,0.311111111,21.657268628621075 +2019-10-23 00:30:00,25.0,0.289417989,21.655935295338313 +2019-10-23 00:45:00,25.0,0.279365079,21.65460239217689 +2019-10-23 01:00:00,25.0,0.278306878,21.653269919308258 +2019-10-23 01:15:00,25.0,0.268253968,21.65193787690378 +2019-10-23 01:30:00,25.0,0.26031746,21.6506062651348 +2019-10-23 01:45:00,25.0,0.249206349,21.649275084172594 +2019-10-23 02:00:00,25.0,0.237037037,21.647944334188384 +2019-10-23 02:15:00,25.0,0.23015873,21.64661401535332 +2019-10-23 02:30:00,25.0,0.21957672,21.645284127838526 +2019-10-23 02:45:00,25.0,0.211640212,21.64395467181505 +2019-10-23 03:00:00,25.0,0.207407407,21.642625647453883 +2019-10-23 03:15:00,25.0,0.207936508,21.641297054925975 +2019-10-23 03:30:00,25.0,0.203703704,21.63996889440221 +2019-10-23 03:45:00,25.0,0.193121693,21.638641166053425 +2019-10-23 04:00:00,25.0,0.186243386,21.637313870050384 +2019-10-23 04:15:00,25.0,0.177248677,21.635987006563813 +2019-10-23 04:30:00,25.0,0.182010582,21.634660575764382 +2019-10-23 04:45:00,25.0,0.180952381,21.633334577822687 +2019-10-23 05:00:00,25.0,0.181481481,21.63200901290929 +2019-10-23 05:15:00,25.0,0.18042328,21.630683881194685 +2019-10-23 05:30:00,25.0,0.179365079,21.62935918284932 +2019-10-23 05:45:00,25.0,0.180952381,21.62803491804357 +2019-10-23 06:00:00,25.0,0.17037037,21.62671108694777 +2019-10-23 06:15:00,25.0,0.156084656,21.6253876897322 +2019-10-23 06:30:00,25.0,0.150793651,21.624064726567067 +2019-10-23 06:45:00,25.0,0.146031746,21.62274219762254 +2019-10-23 07:00:00,25.0,0.128042328,21.621420103068726 +2019-10-23 07:15:00,25.0,0.124867725,21.62009844307568 +2019-10-23 07:30:00,25.0,0.120634921,21.618777217813385 +2019-10-23 07:45:00,25.0,0.102645503,21.61745642745179 +2019-10-23 08:00:00,25.0,0.108465608,21.616136072160778 +2019-10-23 08:15:00,25.0,0.107936508,21.61481615211017 +2019-10-23 08:30:00,25.0,0.106878307,21.61349666746974 +2019-10-23 08:45:00,25.0,0.106349206,21.6121776184092 +2019-10-23 09:00:00,25.0,0.116402116,21.610859005098224 +2019-10-23 09:15:00,25.0,0.130687831,21.609540827706393 +2019-10-23 09:30:00,25.0,0.132275132,21.608223086403267 +2019-10-23 09:45:00,25.0,0.125396825,21.606905781358343 +2019-10-23 10:00:00,25.0,0.116931217,21.60558891274104 +2019-10-23 10:15:00,25.0,0.096825397,21.604272480720745 +2019-10-23 10:30:00,25.0,0.076719577,21.602956485466777 +2019-10-23 10:45:00,25.0,0.07037037,21.601640927148416 +2019-10-23 11:00:00,25.0,0.065608466,21.60032580593485 +2019-10-23 11:15:00,25.0,0.053968254,21.59901112199525 +2019-10-23 11:30:00,25.0,0.046560847,21.597696875498713 +2019-10-23 11:45:00,25.0,0.047619048,21.596383066614266 +2019-10-23 12:00:00,25.0,0.044444444,21.595069695510908 +2019-10-23 12:15:00,25.0,0.044444444,21.59375676235756 +2019-10-23 12:30:00,25.0,0.041798942,21.592444267323106 +2019-10-23 12:45:00,25.0,0.04021164,21.591132210576347 +2019-10-23 13:00:00,25.0,0.038624339,21.58982059228605 +2019-10-23 13:15:00,25.0,0.034920635,21.588509412620922 +2019-10-23 13:30:00,25.0,0.035978836,21.587198671749604 +2019-10-23 13:45:00,25.0,0.033333333,21.58588836984069 +2019-10-23 14:00:00,25.0,0.031216931,21.58457850706271 +2019-10-23 14:15:00,25.0,0.03015873,21.58326908358415 +2019-10-23 14:30:00,25.0,0.032275132,21.58196009957342 +2019-10-23 14:45:00,25.0,0.039153439,21.580651555198887 +2019-10-23 15:00:00,25.0,0.038624339,21.579343450628873 +2019-10-23 15:15:00,25.0,0.037566138,21.57803578603161 +2019-10-23 15:30:00,25.0,0.041269841,21.5767285615753 +2019-10-23 15:45:00,25.0,0.045502646,21.575421777428083 +2019-10-23 16:00:00,25.0,0.045502646,21.57411543375805 +2019-10-23 16:15:00,25.0,0.042857143,21.572809530733206 +2019-10-23 16:30:00,25.0,0.050793651,21.57150406852153 +2019-10-23 16:45:00,25.0,0.053439153,21.57019904729094 +2019-10-23 17:00:00,25.0,0.062433862,21.56889446720928 +2019-10-23 17:15:00,25.0,0.083068783,21.567590328444346 +2019-10-23 17:30:00,25.0,0.111640212,21.56628663116389 +2019-10-23 17:45:00,25.0,0.132804233,21.564983375535597 +2019-10-23 18:00:00,25.0,0.143386243,21.563680561727082 +2019-10-23 18:15:00,25.0,0.158730159,21.562378189905925 +2019-10-23 18:30:00,25.0,0.187830688,21.561076260239645 +2019-10-23 18:45:00,25.0,0.211640212,21.559774772895686 +2019-10-23 19:00:00,25.0,0.216931217,21.558473728041452 +2019-10-23 19:15:00,25.0,0.235978836,21.5571731258443 +2019-10-23 19:30:00,25.0,0.245502646,21.555872966471497 +2019-10-23 19:45:00,25.0,0.265608466,21.554573250090282 +2019-10-23 20:00:00,25.0,0.27037037,21.55327397686783 +2019-10-23 20:15:00,25.0,0.261375661,21.551975146971255 +2019-10-23 20:30:00,25.0,0.258730159,21.55067676056761 +2019-10-23 20:45:00,25.0,0.245502646,21.5493788178239 +2019-10-23 21:00:00,25.0,0.243915344,21.548081318907077 +2019-10-23 21:15:00,25.0,0.244973545,21.546784263984012 +2019-10-23 21:30:00,25.0,0.238095238,21.54548765322155 +2019-10-23 21:45:00,25.0,0.230687831,21.544191486786453 +2019-10-23 22:00:00,25.0,0.21957672,21.54289576484545 +2019-10-23 22:15:00,25.0,0.193121693,21.541600487565187 +2019-10-23 22:30:00,25.0,0.187301587,21.54030565511227 +2019-10-23 22:45:00,25.0,0.173015873,21.53901126765325 +2019-10-23 23:00:00,25.0,0.158201058,21.537717325354603 +2019-10-23 23:15:00,25.0,0.145502646,21.536423828382766 +2019-10-23 23:30:00,25.0,0.148677249,21.535130776904104 +2019-10-23 23:45:00,25.0,0.150793651,21.53383817108495 +2019-10-24 00:00:00,25.0,0.162433862,21.53254601109154 +2019-10-24 00:15:00,25.0,0.155026455,21.531254297090083 +2019-10-24 00:30:00,25.0,0.14973545,21.529963029246733 +2019-10-24 00:45:00,25.0,0.152380952,21.52867220772756 +2019-10-24 01:00:00,25.0,0.153439153,21.527381832698595 +2019-10-24 01:15:00,25.0,0.153968254,21.526091904325817 +2019-10-24 01:30:00,25.0,0.152910053,21.524802422775142 +2019-10-24 01:45:00,25.0,0.153968254,21.52351338821241 +2019-10-24 02:00:00,25.0,0.141269841,21.522224800803432 +2019-10-24 02:15:00,25.0,0.138624339,21.520936660713954 +2019-10-24 02:30:00,25.0,0.144444444,21.519648968109642 +2019-10-24 02:45:00,25.0,0.175661376,21.518361723156133 +2019-10-24 03:00:00,25.0,0.185714286,21.517074926018996 +2019-10-24 03:15:00,25.0,0.21005291,21.515788576863745 +2019-10-24 03:30:00,25.0,0.259259259,21.514502675855823 +2019-10-24 03:45:00,25.0,0.297354497,21.51321722316063 +2019-10-24 04:00:00,25.0,0.279365079,21.51193221894351 +2019-10-24 04:15:00,25.0,0.261904762,21.510647663369735 +2019-10-24 04:30:00,25.0,0.277777778,21.509363556604526 +2019-10-24 04:45:00,25.0,0.282010582,21.508079898813058 +2019-10-24 05:00:00,25.0,0.284656085,21.506796690160435 +2019-10-24 05:15:00,25.0,0.26984127,21.5055139308117 +2019-10-24 05:30:00,25.0,0.244973545,21.504231620931844 +2019-10-24 05:45:00,25.0,0.242328042,21.502949760685812 +2019-10-24 06:00:00,25.0,0.241798942,21.501668350238468 +2019-10-24 06:15:00,25.0,0.223809524,21.500387389754636 +2019-10-24 06:30:00,25.0,0.216402116,21.499106879399072 +2019-10-24 06:45:00,25.0,0.198412698,21.49782681933649 +2019-10-24 07:00:00,25.0,0.183597884,21.496547209731514 +2019-10-24 07:15:00,25.0,0.201058201,21.495268050748745 +2019-10-24 07:30:00,25.0,0.204761905,21.493989342552712 +2019-10-24 07:45:00,25.0,0.223280423,21.492711085307878 +2019-10-24 08:00:00,25.0,0.235978836,21.491433279178658 +2019-10-24 08:15:00,25.0,0.22962963,21.490155924329404 +2019-10-24 08:30:00,25.0,0.208465608,21.488879020924426 +2019-10-24 08:45:00,25.0,0.158730159,21.487602569127944 +2019-10-24 09:00:00,25.0,0.167195767,21.486326569104143 +2019-10-24 09:15:00,25.0,0.167724868,21.485051021017156 +2019-10-24 09:30:00,25.0,0.167195767,21.483775925031033 +2019-10-24 09:45:00,25.0,0.14973545,21.482501281309787 +2019-10-24 10:00:00,25.0,0.168783069,21.481227090017363 +2019-10-24 10:15:00,25.0,0.147619048,21.479953351317658 +2019-10-24 10:30:00,25.0,0.196825397,21.47868006537449 +2019-10-24 10:45:00,25.0,0.23015873,21.47740723235164 +2019-10-24 11:00:00,25.0,0.23015873,21.47613485241283 +2019-10-24 11:15:00,25.0,0.252910053,21.4748629257217 +2019-10-24 11:30:00,25.0,0.335449735,21.473591452441855 +2019-10-24 11:45:00,25.0,0.326455026,21.472320432736836 +2019-10-24 12:00:00,25.0,0.31005291,21.471049866770134 +2019-10-24 12:15:00,25.0,0.285185185,21.469779754705154 +2019-10-24 12:30:00,25.0,0.289417989,21.46851009670527 +2019-10-24 12:45:00,25.0,0.332275132,21.467240892933795 +2019-10-24 13:00:00,25.0,0.357671958,21.465972143553962 +2019-10-24 13:15:00,25.0,0.366137566,21.46470384872897 +2019-10-24 13:30:00,25.0,0.337566138,21.46343600862195 +2019-10-24 13:45:00,25.0,0.291005291,21.46216862339597 +2019-10-24 14:00:00,25.0,0.283597884,21.460901693214048 +2019-10-24 14:15:00,25.0,0.27989418,21.45963521823914 +2019-10-24 14:30:00,25.0,0.333862434,21.458369198634145 +2019-10-24 14:45:00,25.0,0.335978836,21.45710363456189 +2019-10-24 15:00:00,25.0,0.335978836,21.45583852618516 +2019-10-24 15:15:00,25.0,0.316931217,21.45457387366669 +2019-10-24 15:30:00,25.0,0.328042328,21.453309677169123 +2019-10-24 15:45:00,25.0,0.352910053,21.45204593685507 +2019-10-24 16:00:00,25.0,0.419047619,21.450782652887078 +2019-10-24 16:15:00,25.0,0.435449735,21.449519825427643 +2019-10-24 16:30:00,25.0,0.440740741,21.44825745463917 +2019-10-24 16:45:00,25.0,0.440740741,21.446995540684043 +2019-10-24 17:00:00,25.0,0.492592593,21.445734083724577 +2019-10-24 17:15:00,25.0,0.551851852,21.444473083923008 +2019-10-24 17:30:00,25.0,0.561904762,21.44321254144154 +2019-10-24 17:45:00,25.0,0.56984127,21.4419524564423 +2019-10-24 18:00:00,25.0,0.571957672,21.44069282908738 +2019-10-24 18:15:00,25.0,0.573015873,21.43943365953877 +2019-10-24 18:30:00,25.0,0.588359788,21.43817494795844 +2019-10-24 18:45:00,25.0,0.594708995,21.436916694508298 +2019-10-24 19:00:00,25.0,0.593650794,21.43565889935017 +2019-10-24 19:15:00,25.0,0.60952381,21.43440156264584 +2019-10-24 19:30:00,25.0,0.617460317,21.43314468455703 +2019-10-24 19:45:00,25.0,0.616402116,21.431888265245405 +2019-10-24 20:00:00,25.0,0.619047619,21.430632304872567 +2019-10-24 20:15:00,25.0,0.617460317,21.429376803600057 +2019-10-24 20:30:00,25.0,0.622751323,21.42812176158937 +2019-10-24 20:45:00,25.0,0.622222222,21.426867179001917 +2019-10-24 21:00:00,25.0,0.622222222,21.42561305599908 +2019-10-24 21:15:00,25.0,0.62962963,21.424359392742154 +2019-10-24 21:30:00,25.0,0.637037037,21.42310618939241 +2019-10-24 21:45:00,25.0,0.642857143,21.42185344611101 +2019-10-24 22:00:00,25.0,0.642857143,21.420601163059104 +2019-10-24 22:15:00,25.0,0.636507937,21.41934934039776 +2019-10-24 22:30:00,25.0,0.634391534,21.418097978287985 +2019-10-24 22:45:00,25.0,0.631746032,21.416847076890733 +2019-10-24 23:00:00,25.0,0.620634921,21.4155966363669 +2019-10-24 23:15:00,25.0,0.621693122,21.414346656877328 +2019-10-24 23:30:00,25.0,0.63015873,21.413097138582778 +2019-10-24 23:45:00,25.0,0.628571429,21.41184808164397 +2019-10-25 00:00:00,25.0,0.632275132,21.410599486221574 +2019-10-25 00:15:00,25.0,0.62962963,21.40935135247617 +2019-10-25 00:30:00,25.0,0.619047619,21.4081036805683 +2019-10-25 00:45:00,25.0,0.61957672,21.406856470658443 +2019-10-25 01:00:00,25.0,0.60952381,21.40560972290703 +2019-10-25 01:15:00,25.0,0.593121693,21.4043634374744 +2019-10-25 01:30:00,25.0,0.568783069,21.40311761452087 +2019-10-25 01:45:00,25.0,0.572486772,21.401872254206676 +2019-10-25 02:00:00,25.0,0.589417989,21.40062735669199 +2019-10-25 02:15:00,25.0,0.602645503,21.399382922136944 +2019-10-25 02:30:00,25.0,0.616931217,21.398138950701597 +2019-10-25 02:45:00,25.0,0.632275132,21.396895442545958 +2019-10-25 03:00:00,25.0,0.647619048,21.395652397829956 +2019-10-25 03:15:00,25.0,0.648148148,21.39440981671348 +2019-10-25 03:30:00,25.0,0.635978836,21.393167699356365 +2019-10-25 03:45:00,25.0,0.633333333,21.391926045918357 +2019-10-25 04:00:00,25.0,0.64973545,21.39068485655917 +2019-10-25 04:15:00,25.0,0.655026455,21.389444131438445 +2019-10-25 04:30:00,25.0,0.660846561,21.388203870715778 +2019-10-25 04:45:00,25.0,0.666666667,21.386964074550676 +2019-10-25 05:00:00,25.0,0.680952381,21.385724743102614 +2019-10-25 05:15:00,25.0,0.68994709,21.384485876531006 +2019-10-25 05:30:00,25.0,0.695767196,21.383247474995184 +2019-10-25 05:45:00,25.0,0.699470899,21.382009538654437 +2019-10-25 06:00:00,25.0,0.70952381,21.380772067667998 +2019-10-25 06:15:00,25.0,0.710582011,21.379535062195032 +2019-10-25 06:30:00,25.0,0.713227513,21.378298522394633 +2019-10-25 06:45:00,25.0,0.705820106,21.377062448425864 +2019-10-25 07:00:00,25.0,0.710582011,21.375826840447708 +2019-10-25 07:15:00,25.0,0.708465608,21.37459169861908 +2019-10-25 07:30:00,25.0,0.702645503,21.373357023098862 +2019-10-25 07:45:00,25.0,0.704761905,21.372122814045856 +2019-10-25 08:00:00,25.0,0.706349206,21.3708890716188 +2019-10-25 08:15:00,25.0,0.714814815,21.369655795976392 +2019-10-25 08:30:00,25.0,0.722222222,21.36842298727725 +2019-10-25 08:45:00,25.0,0.739153439,21.367190645679955 +2019-10-25 09:00:00,25.0,0.752380952,21.365958771342996 +2019-10-25 09:15:00,25.0,0.759259259,21.36472736442483 +2019-10-25 09:30:00,25.0,0.75978836,21.363496425083845 +2019-10-25 09:45:00,25.0,0.767724868,21.362265953478357 +2019-10-25 10:00:00,25.0,0.774603175,21.36103594976664 +2019-10-25 10:15:00,25.0,0.76984127,21.3598064141069 +2019-10-25 10:30:00,25.0,0.761375661,21.35857734665728 +2019-10-25 10:45:00,25.0,0.735449735,21.357348747575866 +2019-10-25 11:00:00,25.0,0.732804233,21.356120617020686 +2019-10-25 11:15:00,25.0,0.716931217,21.354892955149705 +2019-10-25 11:30:00,25.0,0.703703704,21.35366576212082 +2019-10-25 11:45:00,25.0,0.694179894,21.35243903809188 +2019-10-25 12:00:00,25.0,0.683597884,21.35121278322067 +2019-10-25 12:15:00,25.0,0.668783069,21.34998699766492 +2019-10-25 12:30:00,25.0,0.647619048,21.348761681582282 +2019-10-25 12:45:00,25.0,0.624338624,21.347536835130363 +2019-10-25 13:00:00,25.0,0.612698413,21.346312458466713 +2019-10-25 13:15:00,25.0,0.602116402,21.345088551748802 +2019-10-25 13:30:00,25.0,0.591005291,21.343865115134058 +2019-10-25 13:45:00,25.0,0.572486772,21.34264214877984 +2019-10-25 14:00:00,25.0,0.578306878,21.34141965284346 +2019-10-25 14:15:00,25.0,0.574603175,21.34019762748214 +2019-10-25 14:30:00,25.0,0.559259259,21.33897607285307 +2019-10-25 14:45:00,25.0,0.555026455,21.337754989113375 +2019-10-25 15:00:00,25.0,0.571957672,21.336534376420097 +2019-10-25 15:15:00,25.0,0.586772487,21.335314234930244 +2019-10-25 15:30:00,25.0,0.618518519,21.334094564800754 +2019-10-25 15:45:00,25.0,0.652380952,21.332875366188507 +2019-10-25 16:00:00,25.0,0.671428571,21.331656639250312 +2019-10-25 16:15:00,25.0,0.688359788,21.330438384142923 +2019-10-25 16:30:00,25.0,0.702116402,21.329220601023046 +2019-10-25 16:45:00,25.0,0.712169312,21.328003290047302 +2019-10-25 17:00:00,25.0,0.721693122,21.32678645137227 +2019-10-25 17:15:00,25.0,0.744973545,21.325570085154467 +2019-10-25 17:30:00,25.0,0.758201058,21.324354191550345 +2019-10-25 17:45:00,25.0,0.751851852,21.323138770716284 +2019-10-25 18:00:00,25.0,0.748677249,21.32192382280862 +2019-10-25 18:15:00,25.0,0.753439153,21.32070934798363 +2019-10-25 18:30:00,25.0,0.757142857,21.319495346397513 +2019-10-25 18:45:00,25.0,0.75978836,21.318281818206415 +2019-10-25 19:00:00,25.0,0.756084656,21.317068763566432 +2019-10-25 19:15:00,25.0,0.76031746,21.31585618263359 +2019-10-25 19:30:00,25.0,0.732804233,21.31464407556384 +2019-10-25 19:45:00,25.0,0.710582011,21.3134324425131 +2019-10-25 20:00:00,25.0,0.713756614,21.312221283637214 +2019-10-25 20:15:00,25.0,0.717460317,21.31101059909195 +2019-10-25 20:30:00,25.0,0.722751323,21.309800389033043 +2019-10-25 20:45:00,25.0,0.726455026,21.308590653616143 +2019-10-25 21:00:00,25.0,0.729100529,21.30738139299686 +2019-10-25 21:15:00,25.0,0.731216931,21.30617260733072 +2019-10-25 21:30:00,25.0,0.728042328,21.304964296773207 +2019-10-25 21:45:00,25.0,0.722751323,21.30375646147974 +2019-10-25 22:00:00,25.0,0.702645503,21.30254910160566 +2019-10-25 22:15:00,25.0,0.654497354,21.30134221730627 +2019-10-25 22:30:00,25.0,0.645502646,21.300135808736805 +2019-10-25 22:45:00,25.0,0.646560847,21.298929876052433 +2019-10-25 23:00:00,25.0,0.643915344,21.29772441940826 +2019-10-25 23:15:00,25.0,0.642328042,21.29651943895934 +2019-10-25 23:30:00,25.0,0.643386243,21.295314934860663 +2019-10-25 23:45:00,25.0,0.642328042,21.294110907267143 +2019-10-26 00:00:00,25.0,0.625925926,21.29290735633365 +2019-10-26 00:15:00,25.0,0.621164021,21.291704282215 +2019-10-26 00:30:00,25.0,0.622751323,21.290501685065916 +2019-10-26 00:45:00,25.0,0.623809524,21.289299565041087 +2019-10-26 01:00:00,25.0,0.620634921,21.288097922295137 +2019-10-26 01:15:00,25.0,0.621693122,21.28689675698262 +2019-10-26 01:30:00,25.0,0.622751323,21.28569606925803 +2019-10-26 01:45:00,25.0,0.625396825,21.284495859275808 +2019-10-26 02:00:00,25.0,0.637037037,21.283296127190326 +2019-10-26 02:15:00,25.0,0.662433862,21.282096873155893 +2019-10-26 02:30:00,25.0,0.666666667,21.280898097326762 +2019-10-26 02:45:00,25.0,0.674603175,21.27969979985712 +2019-10-26 03:00:00,25.0,0.677248677,21.2785019809011 +2019-10-26 03:15:00,25.0,0.680952381,21.277304640612765 +2019-10-26 03:30:00,25.0,0.683068783,21.276107779146116 +2019-10-26 03:45:00,25.0,0.683068783,21.27491139665511 +2019-10-26 04:00:00,25.0,0.684126984,21.27371549329361 +2019-10-26 04:15:00,25.0,0.686243386,21.272520069215446 +2019-10-26 04:30:00,25.0,0.687830688,21.271325124574375 +2019-10-26 04:45:00,25.0,0.688359788,21.270130659524096 +2019-10-26 05:00:00,25.0,0.687830688,21.268936674218235 +2019-10-26 05:15:00,25.0,0.687301587,21.267743168810377 +2019-10-26 05:30:00,25.0,0.687301587,21.266550143454026 +2019-10-26 05:45:00,25.0,0.683597884,21.265357598302632 +2019-10-26 06:00:00,25.0,0.674603175,21.264165533509583 +2019-10-26 06:15:00,25.0,0.583597884,21.262973949228208 +2019-10-26 06:30:00,25.0,0.575132275,21.261782845611773 +2019-10-26 06:45:00,25.0,0.56984127,21.26059222281347 +2019-10-26 07:00:00,25.0,0.565608466,21.25940208098645 +2019-10-26 07:15:00,25.0,0.556613757,21.258212420283794 +2019-10-26 07:30:00,25.0,0.575132275,21.25702324085851 +2019-10-26 07:45:00,25.0,0.574074074,21.255834542863553 +2019-10-26 08:00:00,25.0,0.565079365,21.25464632645182 +2019-10-26 08:15:00,25.0,0.576719577,21.25345859177615 +2019-10-26 08:30:00,25.0,0.574074074,21.252271338989296 +2019-10-26 08:45:00,25.0,0.571428571,21.25108456824397 +2019-10-26 09:00:00,25.0,0.587301587,21.249898279692832 +2019-10-26 09:15:00,25.0,0.615873016,21.248712473488446 +2019-10-26 09:30:00,25.0,0.624867725,21.247527149783338 +2019-10-26 09:45:00,25.0,0.623809524,21.24634230872997 +2019-10-26 10:00:00,25.0,0.623809524,21.24515795048075 +2019-10-26 10:15:00,25.0,0.627513228,21.243974075187992 +2019-10-26 10:30:00,25.0,0.63015873,21.242790683003978 +2019-10-26 10:45:00,25.0,0.631746032,21.241607774080926 +2019-10-26 11:00:00,25.0,0.631746032,21.240425348570973 +2019-10-26 11:15:00,25.0,0.631746032,21.23924340662621 +2019-10-26 11:30:00,25.0,0.631216931,21.238061948398656 +2019-10-26 11:45:00,25.0,0.631216931,21.23688097404029 +2019-10-26 12:00:00,25.0,0.63015873,21.23570048370299 +2019-10-26 12:15:00,25.0,0.63015873,21.234520477538602 +2019-10-26 12:30:00,25.0,0.631746032,21.233340955698907 +2019-10-26 12:45:00,25.0,0.636507937,21.232161918335613 +2019-10-26 13:00:00,25.0,0.638624339,21.230983365600366 +2019-10-26 13:15:00,25.0,0.641269841,21.22980529764476 +2019-10-26 13:30:00,25.0,0.642857143,21.228627714620323 +2019-10-26 13:45:00,25.0,0.644444444,21.22745061667851 +2019-10-26 14:00:00,25.0,0.645502646,21.22627400397073 +2019-10-26 14:15:00,25.0,0.644973545,21.22509787664832 +2019-10-26 14:30:00,25.0,0.643386243,21.22392223486255 +2019-10-26 14:45:00,25.0,0.640740741,21.22274707876464 +2019-10-26 15:00:00,25.0,0.644444444,21.22157240850574 +2019-10-26 15:15:00,25.0,0.652910053,21.22039822423694 +2019-10-26 15:30:00,25.0,0.670899471,21.219224526109265 +2019-10-26 15:45:00,25.0,0.694179894,21.218051314273676 +2019-10-26 16:00:00,25.0,0.713756614,21.216878588881084 +2019-10-26 16:15:00,25.0,0.724338624,21.215706350082314 +2019-10-26 16:30:00,25.0,0.733862434,21.21453459802815 +2019-10-26 16:45:00,25.0,0.748148148,21.2133633328693 +2019-10-26 17:00:00,25.0,0.722751323,21.212192554756427 +2019-10-26 17:15:00,25.0,0.604232804,21.211022263840107 +2019-10-26 17:30:00,25.0,0.584126984,21.209852460270866 +2019-10-26 17:45:00,25.0,0.574074074,21.20868314419918 +2019-10-26 18:00:00,25.0,0.572486772,21.207514315775434 +2019-10-26 18:15:00,25.0,0.573015873,21.20634597514997 +2019-10-26 18:30:00,25.0,0.577248677,21.205178122473068 +2019-10-26 18:45:00,25.0,0.578306878,21.204010757894928 +2019-10-26 19:00:00,25.0,0.573544974,21.202843881565713 +2019-10-26 19:15:00,25.0,0.56984127,21.201677493635497 +2019-10-26 19:30:00,25.0,0.568253968,21.20051159425432 +2019-10-26 19:45:00,25.0,0.564550265,21.199346183572125 +2019-10-26 20:00:00,25.0,0.558730159,21.198181261738814 +2019-10-26 20:15:00,25.0,0.54973545,21.197016828904236 +2019-10-26 20:30:00,25.0,0.502645503,21.19585288521814 +2019-10-26 20:45:00,25.0,0.443386243,21.194689430830252 +2019-10-26 21:00:00,25.0,0.406878307,21.193526465890216 +2019-10-26 21:15:00,25.0,0.386772487,21.192363990547612 +2019-10-26 21:30:00,25.0,0.446031746,21.191202004951958 +2019-10-26 21:45:00,25.0,0.47037037,21.190040509252714 +2019-10-26 22:00:00,25.0,0.474074074,21.18887950359928 +2019-10-26 22:15:00,25.0,0.501058201,21.18771898814098 +2019-10-26 22:30:00,25.0,0.511111111,21.18655896302708 +2019-10-26 22:45:00,25.0,0.506878307,21.18539942840679 +2019-10-26 23:00:00,25.0,0.531746032,21.184240384429252 +2019-10-26 23:15:00,25.0,0.535978836,21.183081831243545 +2019-10-26 23:30:00,25.0,0.566137566,21.18192376899868 +2019-10-26 23:45:00,25.0,0.578306878,21.18076619784362 +2019-10-27 00:00:00,25.0,0.582539683,21.179609117927242 +2019-10-27 00:15:00,25.0,0.588359788,21.178452529398378 +2019-10-27 00:30:00,25.0,0.593650794,21.177296432405793 +2019-10-27 00:45:00,25.0,0.592592593,21.176140827098187 +2019-10-27 01:00:00,25.0,0.595767196,21.174985713624192 +2019-10-27 01:15:00,25.0,0.597883598,21.173831092132385 +2019-10-27 01:30:00,25.0,0.597883598,21.17267696277128 +2019-10-27 01:45:00,25.0,0.597354497,21.17152332568931 +2019-10-27 02:00:00,25.0,0.598412698,21.170370181034873 +2019-10-27 02:15:00,25.0,0.599470899,21.16921752895628 +2019-10-27 02:30:00,25.0,0.598941799,21.1680653696018 +2019-10-27 02:45:00,25.0,0.599470899,21.166913703119608 +2019-10-27 03:00:00,25.0,0.598941799,21.165762529657847 +2019-10-27 03:15:00,25.0,0.597354497,21.164611849364583 +2019-10-27 03:30:00,25.0,0.597883598,21.163461662387814 +2019-10-27 03:45:00,25.0,0.598941799,21.16231196887548 +2019-10-27 04:00:00,25.0,0.598412698,21.161162768975462 +2019-10-27 04:15:00,25.0,0.597354497,21.16001406283557 +2019-10-27 04:30:00,25.0,0.597883598,21.158865850603554 +2019-10-27 04:45:00,25.0,0.597883598,21.1577181324271 +2019-10-27 05:00:00,25.0,0.597883598,21.15657090845383 +2019-10-27 05:15:00,25.0,0.598412698,21.1554241788313 +2019-10-27 05:30:00,25.0,0.598412698,21.154277943707005 +2019-10-27 05:45:00,25.0,0.597354497,21.153132203228378 +2019-10-27 06:00:00,25.0,0.597883598,21.151986957542796 +2019-10-27 06:15:00,25.0,0.598412698,21.150842206797545 +2019-10-27 06:30:00,25.0,0.598412698,21.149697951139878 +2019-10-27 06:45:00,25.0,0.599470899,21.148554190716972 +2019-10-27 07:00:00,25.0,0.601587302,21.14741092567593 +2019-10-27 07:15:00,25.0,0.597883598,21.14626815616381 +2019-10-27 07:30:00,25.0,0.608994709,21.145125882327594 +2019-10-27 07:45:00,25.0,0.611111111,21.143984104314214 +2019-10-27 08:00:00,25.0,0.61005291,21.142842822270513 +2019-10-27 08:15:00,25.0,0.611111111,21.141702036343293 +2019-10-27 08:30:00,25.0,0.611640212,21.14056174667929 +2019-10-27 08:45:00,25.0,0.605291005,21.139421953425156 +2019-10-27 09:00:00,25.0,0.60952381,21.138282656727505 +2019-10-27 09:15:00,25.0,0.60952381,21.13714385673287 +2019-10-27 09:30:00,25.0,0.611111111,21.136005553587736 +2019-10-27 09:45:00,25.0,0.611111111,21.134867747438502 +2019-10-27 10:00:00,25.0,0.610582011,21.133730438431524 +2019-10-27 10:15:00,25.0,0.611111111,21.132593626713085 +2019-10-27 10:30:00,25.0,0.611111111,21.131457312429394 +2019-10-27 10:45:00,25.0,0.612698413,21.130321495726616 +2019-10-27 11:00:00,25.0,0.614285714,21.12918617675084 +2019-10-27 11:15:00,25.0,0.626984127,21.128051355648097 +2019-10-27 11:30:00,25.0,0.630687831,21.126917032564343 +2019-10-27 11:45:00,25.0,0.63968254,21.125783207645483 +2019-10-27 12:00:00,25.0,0.643386243,21.124649881037353 +2019-10-27 12:15:00,25.0,0.641798942,21.123517052885717 +2019-10-27 12:30:00,25.0,0.642857143,21.122384723336285 +2019-10-27 12:45:00,25.0,0.643386243,21.12125289253471 +2019-10-27 13:00:00,25.0,0.644973545,21.120121560626554 +2019-10-27 13:15:00,25.0,0.643386243,21.11899072775734 +2019-10-27 13:30:00,25.0,0.642857143,21.117860394072515 +2019-10-27 13:45:00,25.0,0.643915344,21.116730559717475 +2019-10-27 14:00:00,25.0,0.643915344,21.115601224837533 +2019-10-27 14:15:00,25.0,0.644973545,21.114472389577944 +2019-10-27 14:30:00,25.0,0.64021164,21.113344054083914 +2019-10-27 14:45:00,25.0,0.638624339,21.112216218500556 +2019-10-27 15:00:00,25.0,0.636507937,21.111088882972943 +2019-10-27 15:15:00,25.0,0.636507937,21.10996204764608 +2019-10-27 15:30:00,25.0,0.638624339,21.1088357126649 +2019-10-27 15:45:00,25.0,0.632804233,21.107709878174266 +2019-10-27 16:00:00,25.0,0.633862434,21.106584544318995 +2019-10-27 16:15:00,25.0,0.637566138,21.10545971124383 +2019-10-27 16:30:00,25.0,0.632804233,21.10433537909345 +2019-10-27 16:45:00,25.0,0.634391534,21.10321154801246 +2019-10-27 17:00:00,25.0,0.646560847,21.10208821814542 +2019-10-27 17:15:00,25.0,0.635449735,21.100965389636812 +2019-10-27 17:30:00,25.0,0.638624339,21.099843062631052 +2019-10-27 17:45:00,25.0,0.635978836,21.098721237272503 +2019-10-27 18:00:00,25.0,0.634391534,21.097599913705462 +2019-10-27 18:15:00,25.0,0.639153439,21.09647909207414 +2019-10-27 18:30:00,25.0,0.637037037,21.095358772522708 +2019-10-27 18:45:00,25.0,0.640740741,21.094238955195266 +2019-10-27 19:00:00,25.0,0.638624339,21.09311964023585 +2019-10-27 19:15:00,25.0,0.642328042,21.092000827788425 +2019-10-27 19:30:00,25.0,0.641269841,21.09088251799689 +2019-10-27 19:45:00,25.0,0.642328042,21.089764711005095 +2019-10-27 20:00:00,25.0,0.64021164,21.088647406956806 +2019-10-27 20:15:00,25.0,0.642328042,21.087530605995735 +2019-10-27 20:30:00,25.0,0.641269841,21.08641430826553 +2019-10-27 20:45:00,25.0,0.641798942,21.085298513909777 +2019-10-27 21:00:00,25.0,0.641269841,21.08418322307198 +2019-10-27 21:15:00,25.0,0.642328042,21.083068435895598 +2019-10-27 21:30:00,25.0,0.642328042,21.081954152524023 +2019-10-27 21:45:00,25.0,0.64021164,21.08084037310056 +2019-10-27 22:00:00,25.0,0.641798942,21.07972709776848 +2019-10-27 22:15:00,25.0,0.64021164,21.07861432667097 +2019-10-27 22:30:00,25.0,0.64021164,21.077502059951158 +2019-10-27 22:45:00,25.0,0.641269841,21.076390297752106 +2019-10-27 23:00:00,25.0,0.64021164,21.07527904021681 +2019-10-27 23:15:00,25.0,0.63968254,21.07416828748821 +2019-10-27 23:30:00,25.0,0.635449735,21.073058039709164 +2019-10-27 23:45:00,25.0,0.634920635,21.071948297022473 +2019-10-28 00:00:00,25.0,0.633862434,21.070839059570886 +2019-10-28 00:15:00,25.0,0.630687831,21.069730327497073 +2019-10-28 00:30:00,25.0,0.63015873,21.06862210094363 +2019-10-28 00:45:00,25.0,0.622751323,21.06751438005311 +2019-10-28 01:00:00,25.0,0.624867725,21.066407164968 +2019-10-28 01:15:00,25.0,0.627513228,21.065300455830688 +2019-10-28 01:30:00,25.0,0.633862434,21.064194252783537 +2019-10-28 01:45:00,25.0,0.634920635,21.063088555968825 +2019-10-28 02:00:00,25.0,0.637037037,21.061983365528782 +2019-10-28 02:15:00,25.0,0.633862434,21.06087868160554 +2019-10-28 02:30:00,25.0,0.630687831,21.059774504341195 +2019-10-28 02:45:00,25.0,0.628571429,21.058670833877777 +2019-10-28 03:00:00,25.0,0.634391534,21.05756767035723 +2019-10-28 03:15:00,25.0,0.631216931,21.05646501392145 +2019-10-28 03:30:00,25.0,0.624338624,21.055362864712265 +2019-10-28 03:45:00,25.0,0.626984127,21.05426122287144 +2019-10-28 04:00:00,25.0,0.622222222,21.053160088540658 +2019-10-28 04:15:00,25.0,0.62010582,21.052059461861557 +2019-10-28 04:30:00,25.0,0.617460317,21.05095934297571 +2019-10-28 04:45:00,25.0,0.616931217,21.049859732024597 +2019-10-28 05:00:00,25.0,0.592592593,21.04876062914967 +2019-10-28 05:15:00,25.0,0.591534392,21.04766203449229 +2019-10-28 05:30:00,25.0,0.608994709,21.04656394819377 +2019-10-28 05:45:00,25.0,0.614285714,21.04546637039534 +2019-10-28 06:00:00,25.0,0.611640212,21.04436930123817 +2019-10-28 06:15:00,25.0,0.593650794,21.043272740863376 +2019-10-28 06:30:00,25.0,0.58042328,21.042176689411995 +2019-10-28 06:45:00,25.0,0.581481481,21.041081147025004 +2019-10-28 07:00:00,25.0,0.608994709,21.03998611384332 +2019-10-28 07:15:00,25.0,0.601587302,21.03889159000778 +2019-10-28 07:30:00,25.0,0.599470899,21.037797575659166 +2019-10-28 07:45:00,25.0,0.603174603,21.036704070938196 +2019-10-28 08:00:00,25.0,0.619047619,21.03561107598552 +2019-10-28 08:15:00,25.0,0.573015873,21.03451859094172 +2019-10-28 08:30:00,25.0,0.547619048,21.03342661594731 +2019-10-28 08:45:00,25.0,0.506878307,21.032335151142753 +2019-10-28 09:00:00,25.0,0.503174603,21.03124419666842 +2019-10-28 09:15:00,25.0,0.520634921,21.030153752664646 +2019-10-28 09:30:00,25.0,0.519047619,21.029063819271677 +2019-10-28 09:45:00,25.0,0.484126984,21.027974396629713 +2019-10-28 10:00:00,25.0,0.466137566,21.026885484878864 +2019-10-28 10:15:00,25.0,0.454497354,21.0257970841592 +2019-10-28 10:30:00,25.0,0.445502646,21.024709194610715 +2019-10-28 10:45:00,25.0,0.422751323,21.02362181637332 +2019-10-28 11:00:00,25.0,0.399470899,21.02253494958689 +2019-10-28 11:15:00,25.0,0.391005291,21.02144859439122 +2019-10-28 11:30:00,25.0,0.35978836,21.02036275092604 +2019-10-28 11:45:00,25.0,0.325925926,21.019277419331004 +2019-10-28 12:00:00,25.0,0.300529101,21.018192599745717 +2019-10-28 12:15:00,25.0,0.266666667,21.017108292309715 +2019-10-28 12:30:00,25.0,0.3,21.016024497162455 +2019-10-28 12:45:00,25.0,0.263492063,21.01494121444334 +2019-10-28 13:00:00,25.0,0.261375661,21.013858444291706 +2019-10-28 13:15:00,25.0,0.32010582,21.01277618684683 +2019-10-28 13:30:00,25.0,0.316931217,21.011694442247897 +2019-10-28 13:45:00,25.0,0.289417989,21.01061321063405 +2019-10-28 14:00:00,25.0,0.316931217,21.009532492144373 +2019-10-28 14:15:00,25.0,0.331746032,21.00845228691785 +2019-10-28 14:30:00,25.0,0.278306878,21.00737259509343 +2019-10-28 14:45:00,25.0,0.261375661,21.006293416809985 +2019-10-28 15:00:00,25.0,0.271428571,21.005214752206324 +2019-10-28 15:15:00,25.0,0.24973545,21.00413660142118 +2019-10-28 15:30:00,25.0,0.257671958,21.00305896459323 +2019-10-28 15:45:00,25.0,0.277248677,21.001981841861088 +2019-10-28 16:00:00,25.0,0.288888889,21.00090523336329 +2019-10-28 16:15:00,25.0,0.377248677,20.999829139238308 +2019-10-28 16:30:00,25.0,0.338095238,20.99875355962456 +2019-10-28 16:45:00,25.0,0.27989418,20.99767849466039 +2019-10-28 17:00:00,25.0,0.289417989,20.99660394448407 +2019-10-28 17:15:00,25.0,0.315343915,20.99552990923381 +2019-10-28 17:30:00,25.0,0.301587302,20.994456389047766 +2019-10-28 17:45:00,25.0,0.279365079,20.993383384064 +2019-10-28 18:00:00,25.0,0.24973545,20.992310894420534 +2019-10-28 18:15:00,25.0,0.251851852,20.991238920255313 +2019-10-28 18:30:00,25.0,0.298412698,20.99016746170622 +2019-10-28 18:45:00,25.0,0.377248677,20.989096518911065 +2019-10-28 19:00:00,25.0,0.304232804,20.988026092007594 +2019-10-28 19:15:00,25.0,0.247089947,20.986956181133493 +2019-10-28 19:30:00,25.0,0.241269841,20.985886786426367 +2019-10-28 19:45:00,25.0,0.257142857,20.98481790802377 +2019-10-28 20:00:00,25.0,0.242328042,20.983749546063184 +2019-10-28 20:15:00,25.0,0.223280423,20.98268170068203 +2019-10-28 20:30:00,25.0,0.249206349,20.98161437201764 +2019-10-28 20:45:00,25.0,0.235449735,20.98054756020731 +2019-10-28 21:00:00,25.0,0.189417989,20.979481265388255 +2019-10-28 21:15:00,25.0,0.186772487,20.978415487697617 +2019-10-28 21:30:00,25.0,0.174074074,20.97735022727249 +2019-10-28 21:45:00,25.0,0.161904762,20.976285484249875 +2019-10-28 22:00:00,25.0,0.171428571,20.975221258766737 +2019-10-28 22:15:00,25.0,0.175132275,20.97415755095995 +2019-10-28 22:30:00,25.0,0.13015873,20.973094360966332 +2019-10-28 22:45:00,25.0,0.101587302,20.97203168892264 +2019-10-28 23:00:00,25.0,0.104232804,20.970969534965544 +2019-10-28 23:15:00,25.0,0.11005291,20.96990789923167 +2019-10-28 23:30:00,25.0,0.114285714,20.968846781857565 +2019-10-28 23:45:00,25.0,0.102116402,20.96778618297972 +2019-10-29 00:00:00,25.0,0.084126984,20.96672610273454 +2019-10-29 00:15:00,25.0,0.088359788,20.96566654125838 +2019-10-29 00:30:00,25.0,0.096296296,20.964607498687524 +2019-10-29 00:45:00,25.0,0.104761905,20.963548975158186 +2019-10-29 01:00:00,25.0,0.092063492,20.96249097080652 +2019-10-29 01:15:00,25.0,0.076719577,20.96143348576861 +2019-10-29 01:30:00,25.0,0.068783069,20.96037652018046 +2019-10-29 01:45:00,25.0,0.076719577,20.959320074178034 +2019-10-29 02:00:00,25.0,0.107407407,20.958264147897204 +2019-10-29 02:15:00,25.0,0.133862434,20.9572087414738 +2019-10-29 02:30:00,25.0,0.147619048,20.956153855043553 +2019-10-29 02:45:00,25.0,0.128042328,20.955099488742153 +2019-10-29 03:00:00,25.0,0.128042328,20.95404564270522 +2019-10-29 03:15:00,25.0,0.141269841,20.952992317068293 +2019-10-29 03:30:00,25.0,0.133333333,20.951939511966856 +2019-10-29 03:45:00,25.0,0.137037037,20.950887227536327 +2019-10-29 04:00:00,25.0,0.157671958,20.949835463912052 +2019-10-29 04:15:00,25.0,0.164550265,20.94878422122931 +2019-10-29 04:30:00,25.0,0.147619048,20.94773349962331 +2019-10-29 04:45:00,25.0,0.146031746,20.94668329922921 +2019-10-29 05:00:00,25.0,0.145502646,20.94563362018208 +2019-10-29 05:15:00,25.0,0.147619048,20.94458446261693 +2019-10-29 05:30:00,25.0,0.143386243,20.943535826668708 +2019-10-29 05:45:00,25.0,0.146560847,20.9424877124723 +2019-10-29 06:00:00,25.0,0.152910053,20.941440120162504 +2019-10-29 06:15:00,25.0,0.15978836,20.94039304987407 +2019-10-29 06:30:00,25.0,0.161904762,20.93934650174168 +2019-10-29 06:45:00,25.0,0.164550265,20.938300475899933 +2019-10-29 07:00:00,25.0,0.177248677,20.937254972483373 +2019-10-29 07:15:00,25.0,0.202116402,20.936209991626484 +2019-10-29 07:30:00,25.0,0.224867725,20.935165533463667 +2019-10-29 07:45:00,25.0,0.228571429,20.934121598129263 +2019-10-29 08:00:00,25.0,0.214285714,20.93307818575754 +2019-10-29 08:15:00,25.0,0.213756614,20.93203529648272 +2019-10-29 08:30:00,25.0,0.21005291,20.930992930438926 +2019-10-29 08:45:00,25.0,0.204761905,20.929951087760237 +2019-10-29 09:00:00,25.0,0.201058201,20.928909768580652 +2019-10-29 09:15:00,25.0,0.196296296,20.92786897303412 +2019-10-29 09:30:00,25.0,0.188359788,20.926828701254493 +2019-10-29 09:45:00,25.0,0.177777778,20.925788953375584 +2019-10-29 10:00:00,25.0,0.168783069,20.924749729531133 +2019-10-29 10:15:00,25.0,0.156613757,20.923711029854793 +2019-10-29 10:30:00,25.0,0.147089947,20.92267285448017 +2019-10-29 10:45:00,25.0,0.137566138,20.921635203540802 +2019-10-29 11:00:00,25.0,0.126455026,20.92059807717015 +2019-10-29 11:15:00,25.0,0.11957672,20.91956147550161 +2019-10-29 11:30:00,25.0,0.113227513,20.918525398668514 +2019-10-29 11:45:00,25.0,0.106349206,20.917489846804127 +2019-10-29 12:00:00,25.0,0.092592593,20.916454820041636 +2019-10-29 12:15:00,25.0,0.084656085,20.915420318514176 +2019-10-29 12:30:00,25.0,0.078306878,20.914386342354803 +2019-10-29 12:45:00,25.0,0.071957672,20.913352891696515 +2019-10-29 13:00:00,25.0,0.066137566,20.912319966672232 +2019-10-29 13:15:00,25.0,0.062433862,20.91128756741481 +2019-10-29 13:30:00,25.0,0.057142857,20.910255694057046 +2019-10-29 13:45:00,25.0,0.052380952,20.90922434673165 +2019-10-29 14:00:00,25.0,0.050793651,20.908193525571285 +2019-10-29 14:15:00,25.0,0.048677249,20.907163230708534 +2019-10-29 14:30:00,25.0,0.047619048,20.906133462275925 +2019-10-29 14:45:00,25.0,0.047089947,20.905104220405896 +2019-10-29 15:00:00,25.0,0.046031746,20.904075505230836 +2019-10-29 15:15:00,25.0,0.045502646,20.90304731688306 +2019-10-29 15:30:00,25.0,0.044444444,20.90201965549482 +2019-10-29 15:45:00,25.0,0.043386243,20.90099252119829 +2019-10-29 16:00:00,25.0,0.041269841,20.899965914125588 +2019-10-29 16:15:00,25.0,0.040740741,20.898939834408758 +2019-10-29 16:30:00,25.0,0.041798942,20.89791428217977 +2019-10-29 16:45:00,25.0,0.046031746,20.896889257570535 +2019-10-29 17:00:00,25.0,0.053439153,20.895864760712907 +2019-10-29 17:15:00,25.0,0.05978836,20.89484079173864 +2019-10-29 17:30:00,25.0,0.066137566,20.89381735077945 +2019-10-29 17:45:00,25.0,0.068253968,20.892794437966973 +2019-10-29 18:00:00,25.0,0.070899471,20.89177205343278 +2019-10-29 18:15:00,25.0,0.070899471,20.890750197308368 +2019-10-29 18:30:00,25.0,0.064550265,20.88972886972517 +2019-10-29 18:45:00,25.0,0.061375661,20.888708070814566 +2019-10-29 19:00:00,25.0,0.065079365,20.88768780070783 +2019-10-29 19:15:00,25.0,0.068783069,20.886668059536206 +2019-10-29 19:30:00,25.0,0.067195767,20.885648847430858 +2019-10-29 19:45:00,25.0,0.063492063,20.884630164522868 +2019-10-29 20:00:00,25.0,0.064550265,20.883612010943267 +2019-10-29 20:15:00,25.0,0.060846561,20.882594386823015 +2019-10-29 20:30:00,25.0,0.05978836,20.881577292293002 +2019-10-29 20:45:00,25.0,0.062962963,20.880560727484045 +2019-10-29 21:00:00,25.0,0.067195767,20.879544692526895 +2019-10-29 21:15:00,25.0,0.067724868,20.878529187552246 +2019-10-29 21:30:00,25.0,0.067195767,20.877514212690702 +2019-10-29 21:45:00,25.0,0.068783069,20.87649976807282 +2019-10-29 22:00:00,25.0,0.066666667,20.875485853829076 +2019-10-29 22:15:00,25.0,0.062962963,20.874472470089888 +2019-10-29 22:30:00,25.0,0.05978836,20.873459616985592 +2019-10-29 22:45:00,25.0,0.057671958,20.872447294646467 +2019-10-29 23:00:00,25.0,0.052910053,20.871435503202726 +2019-10-29 23:15:00,25.0,0.047619048,20.870424242784498 +2019-10-29 23:30:00,25.0,0.046031746,20.869413513521856 +2019-10-29 23:45:00,25.0,0.044973545,20.868403315544807 +2019-10-30 00:00:00,25.0,0.041798942,20.86739364898329 +2019-10-30 00:15:00,25.0,0.041269841,20.86638451396715 +2019-10-30 00:30:00,25.0,0.042328042,20.865375910626202 +2019-10-30 00:45:00,25.0,0.041269841,20.86436783909018 +2019-10-30 01:00:00,25.0,0.03968254,20.863360299488722 +2019-10-30 01:15:00,25.0,0.039153439,20.862353291951436 +2019-10-30 01:30:00,25.0,0.039153439,20.861346816607842 +2019-10-30 01:45:00,25.0,0.039153439,20.8603408735874 +2019-10-30 02:00:00,25.0,0.038624339,20.85933546301949 +2019-10-30 02:15:00,25.0,0.035449735,20.85833058503343 +2019-10-30 02:30:00,25.0,0.035449735,20.85732623975848 +2019-10-30 02:45:00,25.0,0.037566138,20.856322427323807 +2019-10-30 03:00:00,25.0,0.038095238,20.85531914785853 +2019-10-30 03:15:00,25.0,0.038095238,20.854316401491694 +2019-10-30 03:30:00,25.0,0.036507937,20.85331418835228 +2019-10-30 03:45:00,25.0,0.037037037,20.85231250856918 +2019-10-30 04:00:00,25.0,0.033862434,20.851311362271243 +2019-10-30 04:15:00,25.0,0.030687831,20.850310749587244 +2019-10-30 04:30:00,25.0,0.028042328,20.84931067064587 +2019-10-30 04:45:00,25.0,0.025396825,20.848311125575762 +2019-10-30 05:00:00,25.0,0.023809524,20.847312114505485 +2019-10-30 05:15:00,25.0,0.023280423,20.846313637563533 +2019-10-30 05:30:00,25.0,0.021164021,20.845315694878323 +2019-10-30 05:45:00,25.0,0.01957672,20.844318286578225 +2019-10-30 06:00:00,25.0,0.020634921,20.84332141279153 +2019-10-30 06:15:00,25.0,0.022751323,20.842325073646442 +2019-10-30 06:30:00,25.0,0.024338624,20.841329269271128 +2019-10-30 06:45:00,25.0,0.022222222,20.84033399979366 +2019-10-30 07:00:00,25.0,0.021693122,20.839339265342065 +2019-10-30 07:15:00,25.0,0.021693122,20.838345066044273 +2019-10-30 07:30:00,25.0,0.023280423,20.83735140202817 +2019-10-30 07:45:00,25.0,0.024867725,20.83635827342156 +2019-10-30 08:00:00,25.0,0.023809524,20.83536568035218 +2019-10-30 08:15:00,25.0,0.023280423,20.8343736229477 +2019-10-30 08:30:00,25.0,0.022751323,20.833382101335726 +2019-10-30 08:45:00,25.0,0.022751323,20.832391115643787 +2019-10-30 09:00:00,25.0,0.023280423,20.831400665999343 +2019-10-30 09:15:00,25.0,0.023280423,20.830410752529787 +2019-10-30 09:30:00,25.0,0.020634921,20.829421375362454 +2019-10-30 09:45:00,25.0,0.020634921,20.82843253462459 +2019-10-30 10:00:00,25.0,0.019047619,20.82744423044338 +2019-10-30 10:15:00,25.0,0.018518519,20.82645646294595 +2019-10-30 10:30:00,25.0,0.01957672,20.825469232259348 +2019-10-30 10:45:00,25.0,0.021164021,20.824482538510548 +2019-10-30 11:00:00,25.0,0.020634921,20.823496381826466 +2019-10-30 11:15:00,25.0,0.018518519,20.822510762333945 +2019-10-30 11:30:00,25.0,0.016931217,20.821525680159752 +2019-10-30 11:45:00,25.0,0.017989418,20.820541135430588 +2019-10-30 12:00:00,25.0,0.016931217,20.819557128273097 +2019-10-30 12:15:00,25.0,0.015343915,20.818573658813847 +2019-10-30 12:30:00,25.0,0.013756614,20.81759072717932 +2019-10-30 12:45:00,25.0,0.012169312,20.81660833349595 +2019-10-30 13:00:00,25.0,0.00952381,20.8156264778901 +2019-10-30 13:15:00,25.0,0.007936508,20.81464516048805 +2019-10-30 13:30:00,25.0,0.005820106,20.813664381416018 +2019-10-30 13:45:00,25.0,0.004232804,20.812684140800165 +2019-10-30 14:00:00,25.0,0.004232804,20.811704438766565 +2019-10-30 14:15:00,25.0,0.003703704,20.81072527544123 +2019-10-30 14:30:00,25.0,0.003174603,20.809746650950096 +2019-10-30 14:45:00,25.0,0.002116402,20.808768565419054 +2019-10-30 15:00:00,25.0,0.002116402,20.807791018973887 +2019-10-30 15:15:00,25.0,0.002645503,20.806814011740343 +2019-10-30 15:30:00,25.0,0.003174603,20.80583754384408 +2019-10-30 15:45:00,25.0,0.002645503,20.804861615410697 +2019-10-30 16:00:00,25.0,0.002116402,20.803886226565716 +2019-10-30 16:15:00,25.0,0.001587302,20.802911377434597 +2019-10-30 16:30:00,25.0,0.002116402,20.801937068142735 +2019-10-30 16:45:00,25.0,0.004761905,20.800963298815432 +2019-10-30 17:00:00,25.0,0.006878307,20.799990069577944 +2019-10-30 17:15:00,25.0,0.00952381,20.799017380555455 +2019-10-30 17:30:00,25.0,0.012169312,20.79804523187307 +2019-10-30 17:45:00,25.0,0.013756614,20.797073623655823 +2019-10-30 18:00:00,25.0,0.015873016,20.796102556028693 +2019-10-30 18:15:00,25.0,0.018518519,20.795132029116584 +2019-10-30 18:30:00,25.0,0.021164021,20.794162043044317 +2019-10-30 18:45:00,25.0,0.022222222,20.793192597936656 +2019-10-30 19:00:00,25.0,0.026455026,20.792223693918302 +2019-10-30 19:15:00,25.0,0.028571429,20.791255331113867 +2019-10-30 19:30:00,25.0,0.03015873,20.79028750964791 +2019-10-30 19:45:00,25.0,0.032275132,20.789320229644915 +2019-10-30 20:00:00,25.0,0.035449735,20.788353491229294 +2019-10-30 20:15:00,25.0,0.038624339,20.787387294525388 +2019-10-30 20:30:00,25.0,0.041269841,20.786421639657476 +2019-10-30 20:45:00,25.0,0.043915344,20.785456526749762 +2019-10-30 21:00:00,25.0,0.045502646,20.78449195592638 +2019-10-30 21:15:00,25.0,0.047619048,20.783527927311393 +2019-10-30 21:30:00,25.0,0.04973545,20.782564441028804 +2019-10-30 21:45:00,25.0,0.05026455,20.781601497202534 +2019-10-30 22:00:00,25.0,0.051322751,20.780639095956435 +2019-10-30 22:15:00,25.0,0.052910053,20.779677237414298 +2019-10-30 22:30:00,25.0,0.052380952,20.778715921699842 +2019-10-30 22:45:00,25.0,0.05026455,20.77775514893671 +2019-10-30 23:00:00,25.0,0.046560847,20.776794919248477 +2019-10-30 23:15:00,25.0,0.043386243,20.775835232758652 +2019-10-30 23:30:00,25.0,0.04021164,20.774876089590677 +2019-10-30 23:45:00,25.0,0.03968254,20.773917489867912 +2019-10-31 00:00:00,25.0,0.040740741,20.772959433713655 +2019-10-31 00:15:00,25.0,0.04021164,20.77200192125114 +2019-10-31 00:30:00,25.0,0.039153439,20.771044952603518 +2019-10-31 00:45:00,25.0,0.037566138,20.770088527893876 +2019-10-31 01:00:00,25.0,0.035978836,20.769132647245232 +2019-10-31 01:15:00,25.0,0.034920635,20.76817731078054 +2019-10-31 01:30:00,25.0,0.036507937,20.76722251862267 +2019-10-31 01:45:00,25.0,0.036507937,20.766268270894436 +2019-10-31 02:00:00,25.0,0.038095238,20.765314567718573 +2019-10-31 02:15:00,25.0,0.03968254,20.764361409217745 +2019-10-31 02:30:00,25.0,0.040740741,20.76340879551455 +2019-10-31 02:45:00,25.0,0.04021164,20.762456726731518 +2019-10-31 03:00:00,25.0,0.042857143,20.761505202991113 +2019-10-31 03:15:00,25.0,0.042857143,20.760554224415706 +2019-10-31 03:30:00,25.0,0.041798942,20.759603791127628 +2019-10-31 03:45:00,25.0,0.045502646,20.758653903249122 +2019-10-31 04:00:00,25.0,0.046560847,20.75770456090236 +2019-10-31 04:15:00,25.0,0.046031746,20.756755764209455 +2019-10-31 04:30:00,25.0,0.04973545,20.75580751329244 +2019-10-31 04:45:00,25.0,0.052910053,20.754859808273284 +2019-10-31 05:00:00,25.0,0.057142857,20.75391264927388 +2019-10-31 05:15:00,25.0,0.059259259,20.75296603641605 +2019-10-31 05:30:00,25.0,0.068783069,20.75201996982156 +2019-10-31 05:45:00,25.0,0.073015873,20.75107444961209 +2019-10-31 06:00:00,25.0,0.078835979,20.75012947590925 +2019-10-31 06:15:00,25.0,0.08042328,20.74918504883459 +2019-10-31 06:30:00,25.0,0.077777778,20.74824116850959 +2019-10-31 06:45:00,25.0,0.073544974,20.74729783505564 +2019-10-31 07:00:00,25.0,0.075132275,20.746355048594086 +2019-10-31 07:15:00,25.0,0.078835979,20.74541280924619 +2019-10-31 07:30:00,25.0,0.087301587,20.744471117133138 +2019-10-31 07:45:00,25.0,0.09047619,20.743529972376052 +2019-10-31 08:00:00,25.0,0.087830688,20.742589375096 +2019-10-31 08:15:00,25.0,0.086772487,20.741649325413945 +2019-10-31 08:30:00,25.0,0.085714286,20.740709823450803 +2019-10-31 08:45:00,25.0,0.086243386,20.739770869327423 +2019-10-31 09:00:00,25.0,0.092063492,20.73883246316457 +2019-10-31 09:15:00,25.0,0.101058201,20.737894605082943 +2019-10-31 09:30:00,25.0,0.106349206,20.736957295203172 +2019-10-31 09:45:00,25.0,0.113227513,20.73602053364582 +2019-10-31 10:00:00,25.0,0.122222222,20.73508432053137 +2019-10-31 10:15:00,25.0,0.125925926,20.734148655980242 +2019-10-31 10:30:00,25.0,0.124867725,20.73321354011278 +2019-10-31 10:45:00,25.0,0.126984127,20.732278973049272 +2019-10-31 11:00:00,25.0,0.138095238,20.73134495490991 +2019-10-31 11:15:00,25.0,0.148677249,20.730411485814837 +2019-10-31 11:30:00,25.0,0.153439153,20.729478565884122 +2019-10-31 11:45:00,25.0,0.157142857,20.728546195237747 +2019-10-31 12:00:00,25.0,0.159259259,20.727614373995642 +2019-10-31 12:15:00,25.0,0.161375661,20.726683102277665 +2019-10-31 12:30:00,25.0,0.166666667,20.7257523802036 +2019-10-31 12:45:00,25.0,0.164550265,20.724822207893144 +2019-10-31 13:00:00,25.0,0.157142857,20.723892585465947 +2019-10-31 13:15:00,25.0,0.155026455,20.722963513041584 +2019-10-31 13:30:00,25.0,0.148148148,20.722034990739544 +2019-10-31 13:45:00,25.0,0.147089947,20.721107018679263 +2019-10-31 14:00:00,25.0,0.144444444,20.720179596980095 +2019-10-31 14:15:00,25.0,0.13968254,20.719252725761336 +2019-10-31 14:30:00,25.0,0.141269841,20.718326405142193 +2019-10-31 14:45:00,25.0,0.140740741,20.71740063524181 +2019-10-31 15:00:00,25.0,0.13968254,20.716475416179268 +2019-10-31 15:15:00,25.0,0.137566138,20.715550748073568 +2019-10-31 15:30:00,25.0,0.133862434,20.714626631043643 +2019-10-31 15:45:00,25.0,0.130687831,20.713703065208353 +2019-10-31 16:00:00,25.0,0.129100529,20.712780050686497 +2019-10-31 16:15:00,25.0,0.126984127,20.711857587596786 +2019-10-31 16:30:00,25.0,0.127513228,20.710935676057872 +2019-10-31 16:45:00,25.0,0.132804233,20.710014316188342 +2019-10-31 17:00:00,25.0,0.14021164,20.70909350810669 +2019-10-31 17:15:00,25.0,0.150793651,20.708173251931356 +2019-10-31 17:30:00,25.0,0.157142857,20.70725354778071 +2019-10-31 17:45:00,25.0,0.161904762,20.706334395773048 +2019-10-31 18:00:00,25.0,0.174074074,20.70541579602659 +2019-10-31 18:15:00,25.0,0.191534392,20.70449774865948 +2019-10-31 18:30:00,25.0,0.21005291,20.70358025378982 +2019-10-31 18:45:00,25.0,0.233862434,20.7026633115356 +2019-10-31 19:00:00,25.0,0.253968254,20.701746922014767 +2019-10-31 19:15:00,25.0,0.28042328,20.70083108534519 +2019-10-31 19:30:00,25.0,0.303703704,20.69991580164467 +2019-10-31 19:45:00,25.0,0.321693122,20.699001071030924 +2019-10-31 20:00:00,25.0,0.35026455,20.69808689362161 +2019-10-31 20:15:00,25.0,0.371957672,20.697173269534318 +2019-10-31 20:30:00,25.0,0.394708995,20.69626019888655 +2019-10-31 20:45:00,25.0,0.411640212,20.695347681795752 +2019-10-31 21:00:00,25.0,0.435978836,20.694435718379296 +2019-10-31 21:15:00,25.0,0.458730159,20.693524308754483 +2019-10-31 21:30:00,25.0,0.477248677,20.692613453038533 +2019-10-31 21:45:00,25.0,0.494179894,20.691703151348605 +2019-10-31 22:00:00,25.0,0.504761905,20.69079340380179 +2019-10-31 22:15:00,25.0,0.511640212,20.689884210515096 +2019-10-31 22:30:00,25.0,0.514285714,20.688975571605464 +2019-10-31 22:45:00,25.0,0.524338624,20.68806748718977 +2019-10-31 23:00:00,25.0,0.529100529,20.687159957384814 +2019-10-31 23:15:00,25.0,0.532275132,20.686252982307316 +2019-10-31 23:30:00,25.0,0.537037037,20.685346562073946 +2019-10-31 23:45:00,25.0,0.527513228,20.684440696801282 +2019-11-01 00:00:00,25.0,0.514814815,20.68353538660584 +2019-11-01 00:15:00,25.0,0.505820106,20.682630631604063 +2019-11-01 00:30:00,25.0,0.487301587,20.68172643191232 +2019-11-01 00:45:00,25.0,0.469312169,20.680822787646918 +2019-11-01 01:00:00,25.0,0.455026455,20.67991969892408 +2019-11-01 01:15:00,25.0,0.447619048,20.679017165859968 +2019-11-01 01:30:00,25.0,0.429100529,20.678115188570665 +2019-11-01 01:45:00,25.0,0.404761905,20.677213767172184 +2019-11-01 02:00:00,25.0,0.391534392,20.676312901780467 +2019-11-01 02:15:00,25.0,0.394179894,20.675412592511393 +2019-11-01 02:30:00,25.0,0.387830688,20.67451283948075 +2019-11-01 02:45:00,25.0,0.383068783,20.673613642804277 +2019-11-01 03:00:00,25.0,0.381481481,20.672715002597627 +2019-11-01 03:15:00,25.0,0.374074074,20.67181691897639 +2019-11-01 03:30:00,25.0,0.36031746,20.670919392056067 +2019-11-01 03:45:00,25.0,0.35026455,20.67002242195211 +2019-11-01 04:00:00,25.0,0.343915344,20.669126008779887 +2019-11-01 04:15:00,25.0,0.335449735,20.668230152654697 +2019-11-01 04:30:00,25.0,0.337037037,20.667334853691766 +2019-11-01 04:45:00,25.0,0.347619048,20.66644011200625 +2019-11-01 05:00:00,25.0,0.359259259,20.665545927713236 +2019-11-01 05:15:00,25.0,0.37037037,20.664652300927727 +2019-11-01 05:30:00,25.0,0.376719577,20.663759231764676 +2019-11-01 05:45:00,25.0,0.38042328,20.662866720338943 +2019-11-01 06:00:00,25.0,0.371957672,20.661974766765326 +2019-11-01 06:15:00,25.0,0.373015873,20.66108337115855 +2019-11-01 06:30:00,25.0,0.38994709,20.66019253363327 +2019-11-01 06:45:00,25.0,0.411640212,20.65930225430407 +2019-11-01 07:00:00,25.0,0.440740741,20.658412533285453 +2019-11-01 07:15:00,25.0,0.47037037,20.65752337069186 +2019-11-01 07:30:00,25.0,0.492592593,20.656634766637662 +2019-11-01 07:45:00,25.0,0.520634921,20.655746721237147 +2019-11-01 08:00:00,25.0,0.542857143,20.654859234604537 +2019-11-01 08:15:00,25.0,0.547089947,20.653972306853987 +2019-11-01 08:30:00,25.0,0.552380952,20.65308593809958 +2019-11-01 08:45:00,25.0,0.562433862,20.65220012845531 +2019-11-01 09:00:00,25.0,0.568253968,20.651314878035116 +2019-11-01 09:15:00,25.0,0.561904762,20.65043018695287 +2019-11-01 09:30:00,25.0,0.550793651,20.649546055322354 +2019-11-01 09:45:00,25.0,0.533862434,20.64866248325729 +2019-11-01 10:00:00,25.0,0.525925926,20.64777947087132 +2019-11-01 10:15:00,25.0,0.505820106,20.646897018278032 +2019-11-01 10:30:00,25.0,0.48994709,20.646015125590917 +2019-11-01 10:45:00,25.0,0.470899471,20.64513379292341 +2019-11-01 11:00:00,25.0,0.446560847,20.644253020388874 +2019-11-01 11:15:00,25.0,0.434391534,20.643372808100587 +2019-11-01 11:30:00,25.0,0.424338624,20.642493156171767 +2019-11-01 11:45:00,25.0,0.415873016,20.64161406471556 +2019-11-01 12:00:00,25.0,0.403703704,20.640735533845042 +2019-11-01 12:15:00,25.0,0.411111111,20.6398575636732 +2019-11-01 12:30:00,25.0,0.422751323,20.638980154312964 +2019-11-01 12:45:00,25.0,0.425925926,20.6381033058772 +2019-11-01 13:00:00,25.0,0.42962963,20.63722701847867 +2019-11-01 13:15:00,25.0,0.43015873,20.636351292230096 +2019-11-01 13:30:00,25.0,0.435978836,20.635476127244118 +2019-11-01 13:45:00,25.0,0.438624339,20.6346015236333 +2019-11-01 14:00:00,25.0,0.432804233,20.633727481510128 +2019-11-01 14:15:00,25.0,0.434391534,20.63285400098703 +2019-11-01 14:30:00,25.0,0.442857143,20.63198108217636 +2019-11-01 14:45:00,25.0,0.45026455,20.631108725190384 +2019-11-01 15:00:00,25.0,0.461904762,20.63023693014131 +2019-11-01 15:15:00,25.0,0.467195767,20.629365697141274 +2019-11-01 15:30:00,25.0,0.480952381,20.62849502630234 +2019-11-01 15:45:00,25.0,0.506349206,20.627624917736483 +2019-11-01 16:00:00,25.0,0.524338624,20.626755371555625 +2019-11-01 16:15:00,25.0,0.526455026,20.625886387871617 +2019-11-01 16:30:00,25.0,0.528042328,20.625017966796214 +2019-11-01 16:45:00,25.0,0.532804233,20.62415010844112 +2019-11-01 17:00:00,25.0,0.526984127,20.623282812917967 +2019-11-01 17:15:00,25.0,0.528042328,20.622416080338308 +2019-11-01 17:30:00,25.0,0.533333333,20.621549910813616 +2019-11-01 17:45:00,25.0,0.541798942,20.620684304455306 +2019-11-01 18:00:00,25.0,0.544973545,20.619819261374715 +2019-11-01 18:15:00,25.0,0.542857143,20.6189547816831 +2019-11-01 18:30:00,25.0,0.542857143,20.61809086549166 +2019-11-01 18:45:00,25.0,0.54973545,20.61722751291151 +2019-11-01 19:00:00,25.0,0.558730159,20.6163647240537 +2019-11-01 19:15:00,25.0,0.56031746,20.615502499029198 +2019-11-01 19:30:00,25.0,0.565608466,20.614640837948905 +2019-11-01 19:45:00,25.0,0.566666667,20.61377974092366 +2019-11-01 20:00:00,25.0,0.563492063,20.612919208064213 +2019-11-01 20:15:00,25.0,0.56031746,20.61205923948124 +2019-11-01 20:30:00,25.0,0.55026455,20.61119983528537 +2019-11-01 20:45:00,25.0,0.549206349,20.610340995587123 +2019-11-01 21:00:00,25.0,0.546560847,20.609482720496977 +2019-11-01 21:15:00,25.0,0.546031746,20.60862501012532 +2019-11-01 21:30:00,25.0,0.541269841,20.607767864582478 +2019-11-01 21:45:00,25.0,0.524867725,20.60691128397869 +2019-11-01 22:00:00,25.0,0.516402116,20.606055268424136 +2019-11-01 22:15:00,25.0,0.505820106,20.60519981802892 +2019-11-01 22:30:00,25.0,0.496296296,20.604344932903075 +2019-11-01 22:45:00,25.0,0.477248677,20.603490613156552 +2019-11-01 23:00:00,25.0,0.452910053,20.60263685889924 +2019-11-01 23:15:00,25.0,0.439153439,20.60178367024095 +2019-11-01 23:30:00,25.0,0.426984127,20.60093104729141 +2019-11-01 23:45:00,25.0,0.408994709,20.600078990160306 +2019-11-02 00:00:00,25.0,0.401587302,20.599227498957223 +2019-11-02 00:15:00,25.0,0.398412698,20.598376573791676 +2019-11-02 00:30:00,25.0,0.392063492,20.59752621477312 +2019-11-02 00:45:00,25.0,0.383597884,20.596676422010926 +2019-11-02 01:00:00,25.0,0.375661376,20.5958271956144 +2019-11-02 01:15:00,25.0,0.372486772,20.594978535692768 +2019-11-02 01:30:00,25.0,0.374603175,20.59413044235519 +2019-11-02 01:45:00,25.0,0.375132275,20.593282915710752 +2019-11-02 02:00:00,25.0,0.385185185,20.592435955868453 +2019-11-02 02:15:00,25.0,0.392592593,20.59158956293724 +2019-11-02 02:30:00,25.0,0.396825397,20.590743737025978 +2019-11-02 02:45:00,25.0,0.408465608,20.589898478243462 +2019-11-02 03:00:00,25.0,0.415873016,20.5890537866984 +2019-11-02 03:15:00,25.0,0.41005291,20.588209662499448 +2019-11-02 03:30:00,25.0,0.414814815,20.58736610575518 +2019-11-02 03:45:00,25.0,0.414285714,20.586523116574092 +2019-11-02 04:00:00,25.0,0.42010582,20.585680695064607 +2019-11-02 04:15:00,25.0,0.435978836,20.584838841335085 +2019-11-02 04:30:00,25.0,0.42962963,20.58399755549381 +2019-11-02 04:45:00,25.0,0.426984127,20.583156837648982 +2019-11-02 05:00:00,25.0,0.430687831,20.582316687908744 +2019-11-02 05:15:00,25.0,0.44021164,20.581477106381154 +2019-11-02 05:30:00,25.0,0.443915344,20.5806380931742 +2019-11-02 05:45:00,25.0,0.43968254,20.5797996483958 +2019-11-02 06:00:00,25.0,0.442328042,20.57896177215379 +2019-11-02 06:15:00,25.0,0.42962963,20.578124464555955 +2019-11-02 06:30:00,25.0,0.434920635,20.577287725709976 +2019-11-02 06:45:00,25.0,0.458201058,20.576451555723484 +2019-11-02 07:00:00,25.0,0.483068783,20.575615954704027 +2019-11-02 07:15:00,25.0,0.51005291,20.574780922759082 +2019-11-02 07:30:00,25.0,0.521693122,20.57394645999605 +2019-11-02 07:45:00,25.0,0.546031746,20.57311256652227 +2019-11-02 08:00:00,25.0,0.564550265,20.572279242444992 +2019-11-02 08:15:00,25.0,0.571957672,20.571446487871402 +2019-11-02 08:30:00,25.0,0.575661376,20.57061430290861 +2019-11-02 08:45:00,25.0,0.569312169,20.569782687663654 +2019-11-02 09:00:00,25.0,0.585185185,20.568951642243498 +2019-11-02 09:15:00,25.0,0.588888889,20.568121166755034 +2019-11-02 09:30:00,25.0,0.589417989,20.567291261305076 +2019-11-02 09:45:00,25.0,0.613227513,20.56646192600038 +2019-11-02 10:00:00,25.0,0.642857143,20.565633160947602 +2019-11-02 10:15:00,25.0,0.647619048,20.564804966253345 +2019-11-02 10:30:00,25.0,0.65026455,20.563977342024142 +2019-11-02 10:45:00,25.0,0.642857143,20.56315028836643 +2019-11-02 11:00:00,25.0,0.641269841,20.562323805386594 +2019-11-02 11:15:00,25.0,0.644444444,20.561497893190936 +2019-11-02 11:30:00,25.0,0.652910053,20.560672551885695 +2019-11-02 11:45:00,25.0,0.646560847,20.559847781577012 +2019-11-02 12:00:00,25.0,0.673015873,20.559023582370983 +2019-11-02 12:15:00,25.0,0.695767196,20.55819995437362 +2019-11-02 12:30:00,25.0,0.692592593,20.55737689769085 +2019-11-02 12:45:00,25.0,0.702645503,20.556554412428547 +2019-11-02 13:00:00,25.0,0.679365079,20.55573249869249 +2019-11-02 13:15:00,25.0,0.69047619,20.554911156588407 +2019-11-02 13:30:00,25.0,0.701587302,20.55409038622193 +2019-11-02 13:45:00,25.0,0.685185185,20.553270187698637 +2019-11-02 14:00:00,25.0,0.697883598,20.552450561124022 +2019-11-02 14:15:00,25.0,0.704232804,20.551631506603503 +2019-11-02 14:30:00,25.0,0.676719577,20.55081302424243 +2019-11-02 14:45:00,25.0,0.674603175,20.549995114146085 +2019-11-02 15:00:00,25.0,0.697354497,20.54917777641966 +2019-11-02 15:15:00,25.0,0.721164021,20.548361011168286 +2019-11-02 15:30:00,25.0,0.735449735,20.547544818497016 +2019-11-02 15:45:00,25.0,0.747089947,20.54672919851084 +2019-11-02 16:00:00,25.0,0.747619048,20.545914151314655 +2019-11-02 16:15:00,25.0,0.757671958,20.545099677013294 +2019-11-02 16:30:00,25.0,0.768783069,20.544285775711522 +2019-11-02 16:45:00,25.0,0.761904762,20.54347244751402 +2019-11-02 17:00:00,25.0,0.760846561,20.542659692525405 +2019-11-02 17:15:00,25.0,0.768253968,20.54184751085021 +2019-11-02 17:30:00,25.0,0.756613757,20.541035902592906 +2019-11-02 17:45:00,25.0,0.746560847,20.54022486785788 +2019-11-02 18:00:00,25.0,0.752380952,20.539414406749444 +2019-11-02 18:15:00,25.0,0.756613757,20.538604519371855 +2019-11-02 18:30:00,25.0,0.74973545,20.53779520582927 +2019-11-02 18:45:00,25.0,0.744444444,20.53698646622579 +2019-11-02 19:00:00,25.0,0.752910053,20.536178300665437 +2019-11-02 19:15:00,25.0,0.754497354,20.535370709252163 +2019-11-02 19:30:00,25.0,0.729100529,20.53456369208983 +2019-11-02 19:45:00,25.0,0.712169312,20.53375724928225 +2019-11-02 20:00:00,25.0,0.714285714,20.53295138093315 +2019-11-02 20:15:00,25.0,0.73015873,20.53214608714617 +2019-11-02 20:30:00,25.0,0.73968254,20.531341368024897 +2019-11-02 20:45:00,25.0,0.754497354,20.53053722367284 +2019-11-02 21:00:00,25.0,0.75978836,20.52973365419343 +2019-11-02 21:15:00,25.0,0.771428571,20.528930659690012 +2019-11-02 21:30:00,25.0,0.770899471,20.528128240265882 +2019-11-02 21:45:00,25.0,0.778835979,20.527326396024243 +2019-11-02 22:00:00,25.0,0.771428571,20.526525127068233 +2019-11-02 22:15:00,25.0,0.776719577,20.525724433500905 +2019-11-02 22:30:00,25.0,0.786772487,20.524924315425253 +2019-11-02 22:45:00,25.0,0.794179894,20.524124772944198 +2019-11-02 23:00:00,25.0,0.782539683,20.52332580616056 +2019-11-02 23:15:00,25.0,0.753968254,20.522527415177116 +2019-11-02 23:30:00,25.0,0.73968254,20.521729600096563 +2019-11-02 23:45:00,25.0,0.729100529,20.5209323610215 +2019-11-03 00:00:00,25.0,0.730687831,20.52013569805448 +2019-11-03 00:15:00,25.0,0.717989418,20.519339611297976 +2019-11-03 00:30:00,25.0,0.707936508,20.518544100854378 +2019-11-03 00:45:00,25.0,0.707936508,20.517749166826004 +2019-11-03 01:00:00,25.0,0.721164021,20.516954809315102 +2019-11-03 01:15:00,25.0,0.721164021,20.51616102842385 +2019-11-03 01:30:00,25.0,0.731216931,20.515367824254334 +2019-11-03 01:45:00,25.0,0.734920635,20.51457519690858 +2019-11-03 02:00:00,25.0,0.732275132,20.51378314648855 +2019-11-03 02:15:00,25.0,0.731746032,20.51299167309611 +2019-11-03 02:30:00,25.0,0.737037037,20.51220077683306 +2019-11-03 02:45:00,25.0,0.740740741,20.511410457801126 +2019-11-03 03:00:00,25.0,0.72962963,20.510620716101972 +2019-11-03 03:15:00,25.0,0.715343915,20.509831551837163 +2019-11-03 03:30:00,25.0,0.71005291,20.509042965108208 +2019-11-03 03:45:00,25.0,0.710582011,20.508254956016536 +2019-11-03 04:00:00,25.0,0.703703704,20.50746752466351 +2019-11-03 04:15:00,25.0,0.716402116,20.5066806711504 +2019-11-03 04:30:00,25.0,0.727513228,20.505894395578416 +2019-11-03 04:45:00,25.0,0.713756614,20.505108698048698 +2019-11-03 05:00:00,25.0,0.700529101,20.504323578662294 +2019-11-03 05:15:00,25.0,0.706349206,20.503539037520195 +2019-11-03 05:30:00,25.0,0.705291005,20.502755074723304 +2019-11-03 05:45:00,25.0,0.694179894,20.501971690372468 +2019-11-03 06:00:00,25.0,0.680952381,20.501188884568435 +2019-11-03 06:15:00,25.0,0.662433862,20.500406657411894 +2019-11-03 06:30:00,25.0,0.64021164,20.499625009003466 +2019-11-03 06:45:00,25.0,0.616402116,20.498843939443674 +2019-11-03 07:00:00,25.0,0.607407407,20.49806344883299 +2019-11-03 07:15:00,25.0,0.596296296,20.497283537271805 +2019-11-03 07:30:00,25.0,0.585714286,20.496504204860425 +2019-11-03 07:45:00,25.0,0.565608466,20.495725451699094 +2019-11-03 08:00:00,25.0,0.551851852,20.494947277887977 +2019-11-03 08:15:00,25.0,0.510582011,20.49416968352717 +2019-11-03 08:30:00,25.0,0.453968254,20.493392668716673 +2019-11-03 08:45:00,25.0,0.418518519,20.49261623355644 +2019-11-03 09:00:00,25.0,0.402116402,20.491840378146343 +2019-11-03 09:15:00,25.0,0.37037037,20.49106510258616 +2019-11-03 09:30:00,25.0,0.350793651,20.490290406975614 +2019-11-03 09:45:00,25.0,0.338624339,20.489516291414354 +2019-11-03 10:00:00,25.0,0.320634921,20.488742756001944 +2019-11-03 10:15:00,25.0,0.317989418,20.487969800837874 +2019-11-03 10:30:00,25.0,0.314814815,20.487197426021567 +2019-11-03 10:45:00,25.0,0.317989418,20.486425631652374 +2019-11-03 11:00:00,25.0,0.295767196,20.485654417829554 +2019-11-03 11:15:00,25.0,0.265079365,20.484883784652308 +2019-11-03 11:30:00,25.0,0.226455026,20.484113732219754 +2019-11-03 11:45:00,25.0,0.174603175,20.483344260630947 +2019-11-03 12:00:00,25.0,0.144973545,20.482575369984843 +2019-11-03 12:15:00,25.0,0.148677249,20.48180706038035 +2019-11-03 12:30:00,25.0,0.144444444,20.48103933191629 +2019-11-03 12:45:00,25.0,0.138624339,20.4802721846914 +2019-11-03 13:00:00,25.0,0.136507937,20.47950561880436 +2019-11-03 13:15:00,25.0,0.126455026,20.478739634353765 +2019-11-03 13:30:00,25.0,0.116402116,20.477974231438143 +2019-11-03 13:45:00,25.0,0.104232804,20.477209410155936 +2019-11-03 14:00:00,25.0,0.097883598,20.476445170605516 +2019-11-03 14:15:00,25.0,0.104232804,20.47568151288519 +2019-11-03 14:30:00,25.0,0.103174603,20.474918437093166 +2019-11-03 14:45:00,25.0,0.092063492,20.474155943327606 +2019-11-03 15:00:00,25.0,0.08042328,20.47339403168658 +2019-11-03 15:15:00,25.0,0.076190476,20.47263270226809 +2019-11-03 15:30:00,25.0,0.074603175,20.47187195517005 +2019-11-03 15:45:00,25.0,0.072486772,20.47111179049032 +2019-11-03 16:00:00,25.0,0.068783069,20.47035220832667 +2019-11-03 16:15:00,25.0,0.068253968,20.469593208776796 +2019-11-03 16:30:00,25.0,0.071957672,20.468834791938324 +2019-11-03 16:45:00,25.0,0.072486772,20.468076957908806 +2019-11-03 17:00:00,25.0,0.076190476,20.467319706785716 +2019-11-03 17:15:00,25.0,0.076719577,20.466563038666454 +2019-11-03 17:30:00,25.0,0.093121693,20.46580695364834 +2019-11-03 17:45:00,25.0,0.110582011,20.46505145182863 +2019-11-03 18:00:00,25.0,0.126455026,20.464296533304484 +2019-11-03 18:15:00,25.0,0.128042328,20.46354219817302 +2019-11-03 18:30:00,25.0,0.132804233,20.46278844653125 +2019-11-03 18:45:00,25.0,0.141269841,20.462035278476133 +2019-11-03 19:00:00,25.0,0.148148148,20.461282694104533 +2019-11-03 19:15:00,25.0,0.142857143,20.460530693513252 +2019-11-03 19:30:00,25.0,0.134920635,20.459779276799022 +2019-11-03 19:45:00,25.0,0.132804233,20.459028444058482 +2019-11-03 20:00:00,25.0,0.132275132,20.45827819538821 +2019-11-03 20:15:00,25.0,0.137037037,20.4575285308847 +2019-11-03 20:30:00,25.0,0.130687831,20.45677945064439 +2019-11-03 20:45:00,25.0,0.123280423,20.45603095476361 +2019-11-03 21:00:00,25.0,0.121164021,20.455283043338643 +2019-11-03 21:15:00,25.0,0.115343915,20.45453571646569 +2019-11-03 21:30:00,25.0,0.114285714,20.453788974240865 +2019-11-03 21:45:00,25.0,0.119047619,20.45304281676022 +2019-11-03 22:00:00,25.0,0.124867725,20.452297244119727 +2019-11-03 22:15:00,25.0,0.133333333,20.45155225641529 +2019-11-03 22:30:00,25.0,0.138095238,20.45080785374272 +2019-11-03 22:45:00,25.0,0.149206349,20.45006403619777 +2019-11-03 23:00:00,25.0,0.157142857,20.449320803876113 +2019-11-03 23:15:00,25.0,0.160846561,20.44857815687334 +2019-11-03 23:30:00,25.0,0.15978836,20.447836095284973 +2019-11-03 23:45:00,25.0,0.16984127,20.44709461920646 +2019-11-04 00:00:00,25.0,0.182539683,20.44635372873318 +2019-11-04 00:15:00,25.0,0.203174603,20.445613423960406 +2019-11-04 00:30:00,25.0,0.223280423,20.444873704983376 +2019-11-04 00:45:00,25.0,0.21957672,20.44413457189723 +2019-11-04 01:00:00,25.0,0.214814815,20.443396024797035 +2019-11-04 01:15:00,25.0,0.213756614,20.442658063777785 +2019-11-04 01:30:00,25.0,0.214814815,20.4419206889344 +2019-11-04 01:45:00,25.0,0.220634921,20.441183900361718 +2019-11-04 02:00:00,25.0,0.231216931,20.44044769815451 +2019-11-04 02:15:00,25.0,0.241798942,20.43971208240747 +2019-11-04 02:30:00,25.0,0.233862434,20.43897705321522 +2019-11-04 02:45:00,25.0,0.231216931,20.438242610672283 +2019-11-04 03:00:00,25.0,0.23968254,20.43750875487314 +2019-11-04 03:15:00,25.0,0.253439153,20.43677548591218 +2019-11-04 03:30:00,25.0,0.264021164,20.43604280388371 +2019-11-04 03:45:00,25.0,0.267195767,20.43531070888197 +2019-11-04 04:00:00,25.0,0.26984127,20.43457920100113 +2019-11-04 04:15:00,25.0,0.282539683,20.433848280335283 +2019-11-04 04:30:00,25.0,0.29047619,20.433117946978427 +2019-11-04 04:45:00,25.0,0.302116402,20.43238820102451 +2019-11-04 05:00:00,25.0,0.304232804,20.43165904256739 +2019-11-04 05:15:00,25.0,0.305820106,20.43093047170085 +2019-11-04 05:30:00,25.0,0.312698413,20.430202488518606 +2019-11-04 05:45:00,25.0,0.314814815,20.42947509311429 +2019-11-04 06:00:00,25.0,0.310582011,20.428748285581467 +2019-11-04 06:15:00,25.0,0.310582011,20.42802206601361 +2019-11-04 06:30:00,25.0,0.318518519,20.427296434504132 +2019-11-04 06:45:00,25.0,0.327513228,20.42657139114637 +2019-11-04 07:00:00,25.0,0.330687831,20.425846936033576 +2019-11-04 07:15:00,25.0,0.32962963,20.42512306925893 +2019-11-04 07:30:00,25.0,0.321693122,20.42439979091554 +2019-11-04 07:45:00,25.0,0.306349206,20.423677101096438 +2019-11-04 08:00:00,25.0,0.312169312,20.42295499989457 +2019-11-04 08:15:00,25.0,0.314814815,20.42223348740282 +2019-11-04 08:30:00,25.0,0.321693122,20.421512563713996 +2019-11-04 08:45:00,25.0,0.323809524,20.420792228920817 +2019-11-04 09:00:00,25.0,0.315343915,20.42007248311593 +2019-11-04 09:15:00,25.0,0.302645503,20.41935332639192 +2019-11-04 09:30:00,25.0,0.292592593,20.418634758841286 +2019-11-04 09:45:00,25.0,0.27037037,20.417916780556446 +2019-11-04 10:00:00,25.0,0.261375661,20.41719939162975 +2019-11-04 10:15:00,25.0,0.259259259,20.41648259215347 +2019-11-04 10:30:00,25.0,0.247089947,20.415766382219807 +2019-11-04 10:45:00,25.0,0.22962963,20.415050761920877 +2019-11-04 11:00:00,25.0,0.218518519,20.414335731348725 +2019-11-04 11:15:00,25.0,0.20952381,20.413621290595323 +2019-11-04 11:30:00,25.0,0.188888889,20.41290743975256 +2019-11-04 11:45:00,25.0,0.174603175,20.41219417891225 +2019-11-04 12:00:00,25.0,0.17037037,20.411481508166148 +2019-11-04 12:15:00,25.0,0.16984127,20.410769427605906 +2019-11-04 12:30:00,25.0,0.161375661,20.410057937323117 +2019-11-04 12:45:00,25.0,0.156613757,20.409347037409294 +2019-11-04 13:00:00,25.0,0.151322751,20.40863672795588 +2019-11-04 13:15:00,25.0,0.140740741,20.40792700905423 +2019-11-04 13:30:00,25.0,0.133333333,20.407217880795635 +2019-11-04 13:45:00,25.0,0.12962963,20.406509343271303 +2019-11-04 14:00:00,25.0,0.123280423,20.405801396572365 +2019-11-04 14:15:00,25.0,0.116931217,20.405094040789876 +2019-11-04 14:30:00,25.0,0.11005291,20.404387276014827 +2019-11-04 14:45:00,25.0,0.104761905,20.40368110233812 +2019-11-04 15:00:00,25.0,0.095238095,20.40297551985058 +2019-11-04 15:15:00,25.0,0.082010582,20.402270528642966 +2019-11-04 15:30:00,25.0,0.073015873,20.401566128805957 +2019-11-04 15:45:00,25.0,0.07037037,20.40086232043015 +2019-11-04 16:00:00,25.0,0.070899471,20.400159103606068 +2019-11-04 16:15:00,25.0,0.073015873,20.399456478424167 +2019-11-04 16:30:00,25.0,0.073544974,20.39875444497482 +2019-11-04 16:45:00,25.0,0.073544974,20.39805300334832 +2019-11-04 17:00:00,25.0,0.071428571,20.397352153634888 +2019-11-04 17:15:00,25.0,0.06984127,20.396651895924673 +2019-11-04 17:30:00,25.0,0.068253968,20.395952230307742 +2019-11-04 17:45:00,25.0,0.062962963,20.395253156874084 +2019-11-04 18:00:00,25.0,0.061375661,20.394554675713618 +2019-11-04 18:15:00,25.0,0.066666667,20.39385678691619 +2019-11-04 18:30:00,25.0,0.077777778,20.393159490571556 +2019-11-04 18:45:00,25.0,0.098941799,20.392462786769407 +2019-11-04 19:00:00,25.0,0.114285714,20.391766675599357 +2019-11-04 19:15:00,25.0,0.117989418,20.391071157150932 +2019-11-04 19:30:00,25.0,0.124867725,20.390376231513603 +2019-11-04 19:45:00,25.0,0.132275132,20.38968189877675 +2019-11-04 20:00:00,25.0,0.131216931,20.388988159029672 +2019-11-04 20:15:00,25.0,0.111111111,20.388295012361606 +2019-11-04 20:30:00,25.0,0.105291005,20.387602458861707 +2019-11-04 20:45:00,25.0,0.132804233,20.386910498619052 +2019-11-04 21:00:00,25.0,0.157142857,20.38621913172264 +2019-11-04 21:15:00,25.0,0.171957672,20.3855283582614 +2019-11-04 21:30:00,25.0,0.196825397,20.38483817832418 +2019-11-04 21:45:00,25.0,0.215343915,20.384148591999747 +2019-11-04 22:00:00,25.0,0.228571429,20.3834595993768 +2019-11-04 22:15:00,25.0,0.235449735,20.382771200543964 +2019-11-04 22:30:00,25.0,0.233333333,20.38208339558978 +2019-11-04 22:45:00,25.0,0.240740741,20.381396184602707 +2019-11-04 23:00:00,25.0,0.24973545,20.380709567671147 +2019-11-04 23:15:00,25.0,0.252380952,20.380023544883414 +2019-11-04 23:30:00,25.0,0.252910053,20.379338116327734 +2019-11-04 23:45:00,25.0,0.259259259,20.37865328209228 +2019-11-05 00:00:00,25.0,0.254497354,20.37796904226513 +2019-11-05 00:15:00,25.0,0.251851852,20.377285396934298 +2019-11-05 00:30:00,25.0,0.246031746,20.37660234618771 +2019-11-05 00:45:00,25.0,0.237566138,20.375919890113227 +2019-11-05 01:00:00,25.0,0.232275132,20.37523802879863 +2019-11-05 01:15:00,25.0,0.231746032,20.374556762331615 +2019-11-05 01:30:00,25.0,0.23015873,20.373876090799804 +2019-11-05 01:45:00,25.0,0.227513228,20.373196014290762 +2019-11-05 02:00:00,25.0,0.228571429,20.37251653289195 +2019-11-05 02:15:00,25.0,0.227513228,20.371837646690768 +2019-11-05 02:30:00,25.0,0.224867725,20.371159355774534 +2019-11-05 02:45:00,25.0,0.220634921,20.370481660230496 +2019-11-05 03:00:00,25.0,0.212169312,20.369804560145816 +2019-11-05 03:15:00,25.0,0.204232804,20.369128055607586 +2019-11-05 03:30:00,25.0,0.2,20.36845214670282 +2019-11-05 03:45:00,25.0,0.198941799,20.367776833518455 +2019-11-05 04:00:00,25.0,0.199470899,20.36710211614135 +2019-11-05 04:15:00,25.0,0.202116402,20.366427994658288 +2019-11-05 04:30:00,25.0,0.205291005,20.365754469155984 +2019-11-05 04:45:00,25.0,0.212169312,20.365081539721054 +2019-11-05 05:00:00,25.0,0.216931217,20.364409206440065 +2019-11-05 05:15:00,25.0,0.222751323,20.363737469399485 +2019-11-05 05:30:00,25.0,0.227513228,20.363066328685722 +2019-11-05 05:45:00,25.0,0.235978836,20.362395784385093 +2019-11-05 06:00:00,25.0,0.23968254,20.361725836583847 +2019-11-05 06:15:00,25.0,0.240740741,20.36105648536816 +2019-11-05 06:30:00,25.0,0.250793651,20.360387730824115 +2019-11-05 06:45:00,25.0,0.261375661,20.359719573037736 +2019-11-05 07:00:00,25.0,0.26984127,20.359052012094963 +2019-11-05 07:15:00,25.0,0.276719577,20.358385048081658 +2019-11-05 07:30:00,25.0,0.287830688,20.357718681083604 +2019-11-05 07:45:00,25.0,0.306349206,20.357052911186518 +2019-11-05 08:00:00,25.0,0.316931217,20.356387738476027 +2019-11-05 08:15:00,25.0,0.324338624,20.355723163037688 +2019-11-05 08:30:00,25.0,0.335978836,20.35505918495698 +2019-11-05 08:45:00,25.0,0.352910053,20.354395804319303 +2019-11-05 09:00:00,25.0,0.372486772,20.35373302120999 +2019-11-05 09:15:00,25.0,0.393121693,20.353070835714284 +2019-11-05 09:30:00,25.0,0.412698413,20.35240924791736 +2019-11-05 09:45:00,25.0,0.432275132,20.351748257904312 +2019-11-05 10:00:00,25.0,0.447089947,20.351087865760157 +2019-11-05 10:15:00,25.0,0.465079365,20.350428071569834 +2019-11-05 10:30:00,25.0,0.483597884,20.34976887541821 +2019-11-05 10:45:00,25.0,0.495767196,20.349110277390075 +2019-11-05 11:00:00,25.0,0.501058201,20.348452277570132 +2019-11-05 11:15:00,25.0,0.498412698,20.34779487604302 +2019-11-05 11:30:00,25.0,0.487301587,20.347138072893298 +2019-11-05 11:45:00,25.0,0.466666667,20.34648186820544 +2019-11-05 12:00:00,25.0,0.444973545,20.34582626206385 +2019-11-05 12:15:00,25.0,0.420634921,20.345171254552852 +2019-11-05 12:30:00,25.0,0.368783069,20.3445168457567 +2019-11-05 12:45:00,25.0,0.344973545,20.34386303575956 +2019-11-05 13:00:00,25.0,0.340740741,20.343209824645534 +2019-11-05 13:15:00,25.0,0.341798942,20.342557212498633 +2019-11-05 13:30:00,25.0,0.342857143,20.341905199402795 +2019-11-05 13:45:00,25.0,0.347619048,20.341253785441886 +2019-11-05 14:00:00,25.0,0.34973545,20.3406029706997 +2019-11-05 14:15:00,25.0,0.34973545,20.339952755259937 +2019-11-05 14:30:00,25.0,0.35026455,20.33930313920623 +2019-11-05 14:45:00,25.0,0.338095238,20.338654122622135 +2019-11-05 15:00:00,25.0,0.324867725,20.338005705591137 +2019-11-05 15:15:00,25.0,0.322751323,20.337357888196628 +2019-11-05 15:30:00,25.0,0.313756614,20.33671067052193 +2019-11-05 15:45:00,25.0,0.313756614,20.336064052650304 +2019-11-05 16:00:00,25.0,0.307936508,20.335418034664904 +2019-11-05 16:15:00,25.0,0.305291005,20.33477261664883 +2019-11-05 16:30:00,25.0,0.301058201,20.334127798685095 +2019-11-05 16:45:00,25.0,0.308994709,20.333483580856644 +2019-11-05 17:00:00,25.0,0.311640212,20.33283996324632 +2019-11-05 17:15:00,25.0,0.306878307,20.332196945936925 +2019-11-05 17:30:00,25.0,0.307936508,20.33155452901116 +2019-11-05 17:45:00,25.0,0.314285714,20.330912712551648 +2019-11-05 18:00:00,25.0,0.313227513,20.330271496640947 +2019-11-05 18:15:00,25.0,0.306349206,20.329630881361528 +2019-11-05 18:30:00,25.0,0.305820106,20.328990866795795 +2019-11-05 18:45:00,25.0,0.30952381,20.32835145302606 +2019-11-05 19:00:00,25.0,0.308994709,20.32771264013457 +2019-11-05 19:15:00,25.0,0.303703704,20.327074428203492 +2019-11-05 19:30:00,25.0,0.307936508,20.32643681731491 +2019-11-05 19:45:00,25.0,0.304761905,20.325799807550837 +2019-11-05 20:00:00,25.0,0.305820106,20.325163398993208 +2019-11-05 20:15:00,25.0,0.297883598,20.32452759172388 +2019-11-05 20:30:00,25.0,0.295238095,20.323892385824628 +2019-11-05 20:45:00,25.0,0.3,20.32325778137716 +2019-11-05 21:00:00,25.0,0.291005291,20.322623778463093 +2019-11-05 21:15:00,25.0,0.28994709,20.321990377163978 +2019-11-05 21:30:00,25.0,0.284656085,20.32135757756128 +2019-11-05 21:45:00,25.0,0.293121693,20.3207253797364 +2019-11-05 22:00:00,25.0,0.291534392,20.320093783770645 +2019-11-05 22:15:00,25.0,0.284126984,20.319462789745256 +2019-11-05 22:30:00,25.0,0.271428571,20.318832397741392 +2019-11-05 22:45:00,25.0,0.276190476,20.31820260784014 +2019-11-05 23:00:00,25.0,0.278835979,20.317573420122493 +2019-11-05 23:15:00,25.0,0.286772487,20.316944834669386 +2019-11-05 23:30:00,25.0,0.286772487,20.316316851561673 +2019-11-05 23:45:00,25.0,0.26984127,20.315689470880123 +2019-11-06 00:00:00,25.0,0.241798942,20.31506269270543 +2019-11-06 00:15:00,25.0,0.217989418,20.31443651711821 +2019-11-06 00:30:00,25.0,0.206349206,20.313810944199012 +2019-11-06 00:45:00,25.0,0.201058201,20.313185974028286 +2019-11-06 01:00:00,25.0,0.197354497,20.312561606686426 +2019-11-06 01:15:00,25.0,0.194179894,20.311937842253734 +2019-11-06 01:30:00,25.0,0.184656085,20.311314680810447 +2019-11-06 01:45:00,25.0,0.172486772,20.310692122436713 +2019-11-06 02:00:00,25.0,0.156613757,20.310070167212608 +2019-11-06 02:15:00,25.0,0.144444444,20.30944881521813 +2019-11-06 02:30:00,25.0,0.140740741,20.308828066533195 +2019-11-06 02:45:00,25.0,0.151851852,20.308207921237646 +2019-11-06 03:00:00,25.0,0.158201058,20.30758837941125 +2019-11-06 03:15:00,25.0,0.157671958,20.306969441133695 +2019-11-06 03:30:00,25.0,0.152380952,20.306351106484588 +2019-11-06 03:45:00,25.0,0.156084656,20.30573337554346 +2019-11-06 04:00:00,25.0,0.16031746,20.30511624838977 +2019-11-06 04:15:00,25.0,0.146031746,20.304499725102882 +2019-11-06 04:30:00,25.0,0.137037037,20.30388380576211 +2019-11-06 04:45:00,25.0,0.14021164,20.303268490446662 +2019-11-06 05:00:00,25.0,0.14973545,20.302653779235694 +2019-11-06 05:15:00,25.0,0.158201058,20.30203967220826 +2019-11-06 05:30:00,25.0,0.151322751,20.301426169443353 +2019-11-06 05:45:00,25.0,0.139153439,20.300813271019887 +2019-11-06 06:00:00,25.0,0.131746032,20.300200977016686 +2019-11-06 06:15:00,25.0,0.13968254,20.299589287512507 +2019-11-06 06:30:00,25.0,0.153968254,20.29897820258603 +2019-11-06 06:45:00,25.0,0.135449735,20.29836772231586 +2019-11-06 07:00:00,25.0,0.12962963,20.297757846780502 +2019-11-06 07:15:00,25.0,0.156613757,20.29714857605841 +2019-11-06 07:30:00,25.0,0.125396825,20.296539910227956 +2019-11-06 07:45:00,25.0,0.10952381,20.295931849367417 +2019-11-06 08:00:00,25.0,0.121693122,20.295324393555006 +2019-11-06 08:15:00,25.0,0.127513228,20.294717542868856 +2019-11-06 08:30:00,25.0,0.118518519,20.294111297387023 +2019-11-06 08:45:00,25.0,0.117989418,20.29350565718748 +2019-11-06 09:00:00,25.0,0.126984127,20.292900622348128 +2019-11-06 09:15:00,25.0,0.117460317,20.292296192946793 +2019-11-06 09:30:00,25.0,0.107936508,20.29169236906121 +2019-11-06 09:45:00,25.0,0.089417989,20.291089150769047 +2019-11-06 10:00:00,25.0,0.080952381,20.290486538147896 +2019-11-06 10:15:00,25.0,0.079365079,20.28988453127526 +2019-11-06 10:30:00,25.0,0.086772487,20.289283130228572 +2019-11-06 10:45:00,25.0,0.094708995,20.288682335085188 +2019-11-06 11:00:00,25.0,0.085185185,20.28808214592238 +2019-11-06 11:15:00,25.0,0.07989418,20.287482562817353 +2019-11-06 11:30:00,25.0,0.078306878,20.286883585847217 +2019-11-06 11:45:00,25.0,0.086243386,20.28628521508902 +2019-11-06 12:00:00,25.0,0.083068783,20.285687450619726 +2019-11-06 12:15:00,25.0,0.061904762,20.285090292516216 +2019-11-06 12:30:00,25.0,0.056084656,20.2844937408553 +2019-11-06 12:45:00,25.0,0.056084656,20.283897795713713 +2019-11-06 13:00:00,25.0,0.048148148,20.2833024571681 +2019-11-06 13:15:00,25.0,0.05026455,20.28270772529504 +2019-11-06 13:30:00,25.0,0.046560847,20.282113600171026 +2019-11-06 13:45:00,25.0,0.042328042,20.281520081872475 +2019-11-06 14:00:00,25.0,0.047619048,20.280927170475728 +2019-11-06 14:15:00,25.0,0.045502646,20.280334866057046 +2019-11-06 14:30:00,25.0,0.037037037,20.279743168692615 +2019-11-06 14:45:00,25.0,0.030687831,20.279152078458537 +2019-11-06 15:00:00,25.0,0.032275132,20.278561595430837 +2019-11-06 15:15:00,25.0,0.03968254,20.277971719685475 +2019-11-06 15:30:00,25.0,0.041269841,20.277382451298312 +2019-11-06 15:45:00,25.0,0.034920635,20.276793790345145 +2019-11-06 16:00:00,25.0,0.028042328,20.276205736901687 +2019-11-06 16:15:00,25.0,0.023809524,20.27561829104358 +2019-11-06 16:30:00,25.0,0.02010582,20.275031452846374 +2019-11-06 16:45:00,25.0,0.01957672,20.274445222385555 +2019-11-06 17:00:00,25.0,0.017460317,20.27385959973653 +2019-11-06 17:15:00,25.0,0.014814815,20.27327458497461 +2019-11-06 17:30:00,25.0,0.014285714,20.27269017817505 +2019-11-06 17:45:00,25.0,0.015873016,20.272106379413017 +2019-11-06 18:00:00,25.0,0.02010582,20.271523188763606 +2019-11-06 18:15:00,25.0,0.020634921,20.270940606301817 +2019-11-06 18:30:00,25.0,0.018518519,20.27035863210259 +2019-11-06 18:45:00,25.0,0.014814815,20.26977726624078 +2019-11-06 19:00:00,25.0,0.011111111,20.269196508791158 +2019-11-06 19:15:00,25.0,0.004761905,20.268616359828428 +2019-11-06 19:30:00,25.0,0.003174603,20.268036819427206 +2019-11-06 19:45:00,25.0,0.005291005,20.26745788766204 +2019-11-06 20:00:00,25.0,0.006878307,20.26687956460739 +2019-11-06 20:15:00,25.0,0.005291005,20.266301850337637 +2019-11-06 20:30:00,25.0,0.003174603,20.2657247449271 +2019-11-06 20:45:00,25.0,0.002116402,20.26514824844999 +2019-11-06 21:00:00,25.0,0.001587302,20.26457236098047 +2019-11-06 21:15:00,25.0,0.001058201,20.26399708259261 +2019-11-06 21:30:00,25.0,0.002116402,20.263422413360402 +2019-11-06 21:45:00,25.0,0.002116402,20.26284835335776 +2019-11-06 22:00:00,25.0,0.001587302,20.262274902658525 +2019-11-06 22:15:00,25.0,0.001058201,20.261702061336457 +2019-11-06 22:30:00,25.0,0.000529101,20.261129829465226 +2019-11-06 22:45:00,25.0,0.000529101,20.260558207118443 +2019-11-06 23:00:00,25.0,0.001058201,20.259987194369625 +2019-11-06 23:15:00,25.0,0.001058201,20.259416791292225 +2019-11-06 23:30:00,25.0,0.001058201,20.258846997959605 +2019-11-06 23:45:00,25.0,0.001058201,20.25827781444505 +2019-11-07 00:00:00,25.0,0.001587302,20.25770924082178 +2019-11-07 00:15:00,25.0,0.002645503,20.257141277162912 +2019-11-07 00:30:00,25.0,0.003703704,20.25657392354151 +2019-11-07 00:45:00,25.0,0.005291005,20.25600718003054 +2019-11-07 01:00:00,25.0,0.005820106,20.255441046702906 +2019-11-07 01:15:00,25.0,0.007407407,20.25487552363142 +2019-11-07 01:30:00,25.0,0.008465608,20.254310610888822 +2019-11-07 01:45:00,25.0,0.012169312,20.25374630854778 +2019-11-07 02:00:00,25.0,0.015873016,20.25318261668086 +2019-11-07 02:15:00,25.0,0.014285714,20.252619535360576 +2019-11-07 02:30:00,25.0,0.013227513,20.252057064659354 +2019-11-07 02:45:00,25.0,0.018518519,20.251495204649537 +2019-11-07 03:00:00,25.0,0.021693122,20.25093395540339 +2019-11-07 03:15:00,25.0,0.021693122,20.250373316993105 +2019-11-07 03:30:00,25.0,0.023280423,20.249813289490795 +2019-11-07 03:45:00,25.0,0.028042328,20.249253872968488 +2019-11-07 04:00:00,25.0,0.037566138,20.24869506749814 +2019-11-07 04:15:00,25.0,0.046560847,20.24813687315163 +2019-11-07 04:30:00,25.0,0.048677249,20.247579290000743 +2019-11-07 04:45:00,25.0,0.04973545,20.247022318117203 +2019-11-07 05:00:00,25.0,0.055026455,20.246465957572653 +2019-11-07 05:15:00,25.0,0.061904762,20.245910208438648 +2019-11-07 05:30:00,25.0,0.065079365,20.24535507078667 +2019-11-07 05:45:00,25.0,0.071428571,20.244800544688122 +2019-11-07 06:00:00,25.0,0.076719577,20.244246630214334 +2019-11-07 06:15:00,25.0,0.076719577,20.243693327436542 +2019-11-07 06:30:00,25.0,0.07989418,20.24314063642592 +2019-11-07 06:45:00,25.0,0.09047619,20.242588557253555 +2019-11-07 07:00:00,25.0,0.105291005,20.24203708999046 +2019-11-07 07:15:00,25.0,0.122751323,20.24148623470756 +2019-11-07 07:30:00,25.0,0.134391534,20.24093599147571 +2019-11-07 07:45:00,25.0,0.141798942,20.240386360365683 +2019-11-07 08:00:00,25.0,0.14021164,20.239837341448172 +2019-11-07 08:15:00,25.0,0.144973545,20.239288934793798 +2019-11-07 08:30:00,25.0,0.158730159,20.238741140473095 +2019-11-07 08:45:00,25.0,0.173544974,20.238193958556526 +2019-11-07 09:00:00,25.0,0.185714286,20.23764738911446 +2019-11-07 09:15:00,25.0,0.204761905,20.23710143221721 +2019-11-07 09:30:00,25.0,0.225925926,20.236556087934993 +2019-11-07 09:45:00,25.0,0.247619048,20.23601135633795 +2019-11-07 10:00:00,25.0,0.279365079,20.235467237496152 +2019-11-07 10:15:00,25.0,0.311640212,20.234923731479576 +2019-11-07 10:30:00,25.0,0.342328042,20.234380838358142 +2019-11-07 10:45:00,25.0,0.373015873,20.23383855820166 +2019-11-07 11:00:00,25.0,0.387830688,20.2332968910799 +2019-11-07 11:15:00,25.0,0.4,20.23275583706252 +2019-11-07 11:30:00,25.0,0.417989418,20.232215396219107 +2019-11-07 11:45:00,25.0,0.427513228,20.231675568619185 +2019-11-07 12:00:00,25.0,0.439153439,20.231136354332182 +2019-11-07 12:15:00,25.0,0.450793651,20.23059775342746 +2019-11-07 12:30:00,25.0,0.458201058,20.230059765974282 +2019-11-07 12:45:00,25.0,0.467195767,20.229522392041858 +2019-11-07 13:00:00,25.0,0.471428571,20.2289856316993 +2019-11-07 13:15:00,25.0,0.476719577,20.228449485015645 +2019-11-07 13:30:00,25.0,0.484126984,20.227913952059858 +2019-11-07 13:45:00,25.0,0.493121693,20.22737903290082 +2019-11-07 14:00:00,25.0,0.501058201,20.226844727607336 +2019-11-07 14:15:00,25.0,0.498941799,20.22631103624812 +2019-11-07 14:30:00,25.0,0.499470899,20.225777958891825 +2019-11-07 14:45:00,25.0,0.507407407,20.22524549560702 +2019-11-07 15:00:00,25.0,0.515873016,20.22471364646218 +2019-11-07 15:15:00,25.0,0.524338624,20.224182411525724 +2019-11-07 15:30:00,25.0,0.533333333,20.223651790865972 +2019-11-07 15:45:00,25.0,0.542328042,20.22312178455118 +2019-11-07 16:00:00,25.0,0.555026455,20.22259239264951 +2019-11-07 16:15:00,25.0,0.562962963,20.222063615229064 +2019-11-07 16:30:00,25.0,0.569312169,20.221535452357852 +2019-11-07 16:45:00,25.0,0.575132275,20.221007904103804 +2019-11-07 17:00:00,25.0,0.581481481,20.220480970534773 +2019-11-07 17:15:00,25.0,0.582539683,20.21995465171854 +2019-11-07 17:30:00,25.0,0.583597884,20.2194289477228 +2019-11-07 17:45:00,25.0,0.588359788,20.218903858615167 +2019-11-07 18:00:00,25.0,0.588888889,20.218379384463184 +2019-11-07 18:15:00,25.0,0.593121693,20.217855525334304 +2019-11-07 18:30:00,25.0,0.591534392,20.21733228129591 +2019-11-07 18:45:00,25.0,0.587301587,20.216809652415307 +2019-11-07 19:00:00,25.0,0.588888889,20.21628763875971 +2019-11-07 19:15:00,25.0,0.587301587,20.215766240396267 +2019-11-07 19:30:00,25.0,0.586772487,20.215245457392037 +2019-11-07 19:45:00,25.0,0.577248677,20.214725289814005 +2019-11-07 20:00:00,25.0,0.564021164,20.21420573772908 +2019-11-07 20:15:00,25.0,0.576190476,20.213686801204087 +2019-11-07 20:30:00,25.0,0.564550265,20.213168480305768 +2019-11-07 20:45:00,25.0,0.56031746,20.212650775100798 +2019-11-07 21:00:00,25.0,0.541798942,20.212133685655758 +2019-11-07 21:15:00,25.0,0.477248677,20.21161721203716 +2019-11-07 21:30:00,25.0,0.426984127,20.211101354311435 +2019-11-07 21:45:00,25.0,0.410582011,20.210586112544938 +2019-11-07 22:00:00,25.0,0.415873016,20.21007148680393 +2019-11-07 22:15:00,25.0,0.443386243,20.20955747715461 +2019-11-07 22:30:00,25.0,0.493121693,20.209044083663095 +2019-11-07 22:45:00,25.0,0.543386243,20.20853130639541 +2019-11-07 23:00:00,25.0,0.562433862,20.208019145417516 +2019-11-07 23:15:00,25.0,0.557142857,20.207507600795285 +2019-11-07 23:30:00,25.0,0.562962963,20.206996672594517 +2019-11-07 23:45:00,25.0,0.575132275,20.206486360880923 +2019-11-08 00:00:00,25.0,0.569312169,20.205976665720144 +2019-11-08 00:15:00,25.0,0.547089947,20.205467587177743 +2019-11-08 00:30:00,25.0,0.556613757,20.204959125319185 +2019-11-08 00:45:00,25.0,0.54973545,20.204451280209884 +2019-11-08 01:00:00,25.0,0.529100529,20.20394405191515 +2019-11-08 01:15:00,25.0,0.536507937,20.203437440500235 +2019-11-08 01:30:00,25.0,0.556084656,20.202931446030288 +2019-11-08 01:45:00,25.0,0.548677249,20.2024260685704 +2019-11-08 02:00:00,25.0,0.523280423,20.20192130818557 +2019-11-08 02:15:00,25.0,0.517460317,20.20141716494072 +2019-11-08 02:30:00,25.0,0.516931217,20.2009136389007 +2019-11-08 02:45:00,25.0,0.525396825,20.20041073013027 +2019-11-08 03:00:00,25.0,0.535978836,20.199908438694116 +2019-11-08 03:15:00,25.0,0.549206349,20.199406764656842 +2019-11-08 03:30:00,25.0,0.534391534,20.19890570808298 +2019-11-08 03:45:00,25.0,0.533333333,20.19840526903697 +2019-11-08 04:00:00,25.0,0.538624339,20.197905447583185 +2019-11-08 04:15:00,25.0,0.517989418,20.197406243785913 +2019-11-08 04:30:00,25.0,0.517989418,20.19690765770936 +2019-11-08 04:45:00,25.0,0.531746032,20.196409689417656 +2019-11-08 05:00:00,25.0,0.504232804,20.19591233897485 +2019-11-08 05:15:00,25.0,0.474603175,20.195415606444918 +2019-11-08 05:30:00,25.0,0.476719577,20.194919491891746 +2019-11-08 05:45:00,25.0,0.493650794,20.194423995379143 +2019-11-08 06:00:00,25.0,0.488888889,20.193929116970843 +2019-11-08 06:15:00,25.0,0.468253968,20.1934348567305 +2019-11-08 06:30:00,25.0,0.448148148,20.192941214721692 +2019-11-08 06:45:00,25.0,0.468253968,20.1924481910079 +2019-11-08 07:00:00,25.0,0.466666667,20.19195578565255 +2019-11-08 07:15:00,25.0,0.451322751,20.191463998718966 +2019-11-08 07:30:00,25.0,0.408465608,20.19097283027041 +2019-11-08 07:45:00,25.0,0.394708995,20.190482280370055 +2019-11-08 08:00:00,25.0,0.408465608,20.189992349080995 +2019-11-08 08:15:00,25.0,0.433862434,20.18950303646625 +2019-11-08 08:30:00,25.0,0.423809524,20.189014342588752 +2019-11-08 08:45:00,25.0,0.428042328,20.18852626751136 +2019-11-08 09:00:00,25.0,0.433333333,20.188038811296853 +2019-11-08 09:15:00,25.0,0.410582011,20.187551974007924 +2019-11-08 09:30:00,25.0,0.396825397,20.187065755707195 +2019-11-08 09:45:00,25.0,0.379365079,20.186580156457204 +2019-11-08 10:00:00,25.0,0.360846561,20.186095176320414 +2019-11-08 10:15:00,25.0,0.33015873,20.185610815359194 +2019-11-08 10:30:00,25.0,0.320634921,20.185127073635854 +2019-11-08 10:45:00,25.0,0.310582011,20.184643951212607 +2019-11-08 11:00:00,25.0,0.288359788,20.184161448151595 +2019-11-08 11:15:00,25.0,0.271957672,20.183679564514883 +2019-11-08 11:30:00,25.0,0.248677249,20.183198300364445 +2019-11-08 11:45:00,25.0,0.239153439,20.18271765576219 +2019-11-08 12:00:00,25.0,0.236507937,20.18223763076993 +2019-11-08 12:15:00,25.0,0.217989418,20.181758225449414 +2019-11-08 12:30:00,25.0,0.194179894,20.181279439862305 +2019-11-08 12:45:00,25.0,0.182010582,20.18080127407018 +2019-11-08 13:00:00,25.0,0.171428571,20.180323728134546 +2019-11-08 13:15:00,25.0,0.163492063,20.179846802116828 +2019-11-08 13:30:00,25.0,0.153968254,20.179370496078363 +2019-11-08 13:45:00,25.0,0.135449735,20.17889481008042 +2019-11-08 14:00:00,25.0,0.116931217,20.178419744184175 +2019-11-08 14:15:00,25.0,0.103174603,20.177945298450744 +2019-11-08 14:30:00,25.0,0.092592593,20.177471472941143 +2019-11-08 14:45:00,25.0,0.083068783,20.176998267716318 +2019-11-08 15:00:00,25.0,0.06984127,20.176525682837138 +2019-11-08 15:15:00,25.0,0.060846561,20.17605371836438 +2019-11-08 15:30:00,25.0,0.052380952,20.175582374358754 +2019-11-08 15:45:00,25.0,0.046560847,20.175111650880886 +2019-11-08 16:00:00,25.0,0.046031746,20.17464154799132 +2019-11-08 16:15:00,25.0,0.046560847,20.174172065750522 +2019-11-08 16:30:00,25.0,0.049206349,20.173703204218878 +2019-11-08 16:45:00,25.0,0.046031746,20.173234963456697 +2019-11-08 17:00:00,25.0,0.045502646,20.1727673435242 +2019-11-08 17:15:00,25.0,0.041269841,20.172300344481535 +2019-11-08 17:30:00,25.0,0.03968254,20.171833966388768 +2019-11-08 17:45:00,25.0,0.042857143,20.17136820930589 +2019-11-08 18:00:00,25.0,0.041798942,20.1709030732928 +2019-11-08 18:15:00,25.0,0.03968254,20.17043855840933 +2019-11-08 18:30:00,25.0,0.034920635,20.16997466471523 +2019-11-08 18:45:00,25.0,0.033862434,20.169511392270163 +2019-11-08 19:00:00,25.0,0.035978836,20.169048741133714 +2019-11-08 19:15:00,25.0,0.033862434,20.168586711365393 +2019-11-08 19:30:00,25.0,0.034391534,20.16812530302463 +2019-11-08 19:45:00,25.0,0.037037037,20.167664516170767 +2019-11-08 20:00:00,25.0,0.039153439,20.167204350863074 +2019-11-08 20:15:00,25.0,0.044973545,20.166744807160743 +2019-11-08 20:30:00,25.0,0.046031746,20.16628588512287 +2019-11-08 20:45:00,25.0,0.044444444,20.165827584808497 +2019-11-08 21:00:00,25.0,0.046031746,20.16536990627656 +2019-11-08 21:15:00,25.0,0.046031746,20.16491284958593 +2019-11-08 21:30:00,25.0,0.042857143,20.1644564147954 +2019-11-08 21:45:00,25.0,0.037037037,20.16400060196367 +2019-11-08 22:00:00,25.0,0.041269841,20.163545411149375 +2019-11-08 22:15:00,25.0,0.043915344,20.163090842411055 +2019-11-08 22:30:00,25.0,0.042857143,20.162636895807182 +2019-11-08 22:45:00,25.0,0.041798942,20.162183571396145 +2019-11-08 23:00:00,25.0,0.035978836,20.16173086923625 +2019-11-08 23:15:00,25.0,0.038095238,20.161278789385722 +2019-11-08 23:30:00,25.0,0.037566138,20.160827331902713 +2019-11-08 23:45:00,25.0,0.042328042,20.160376496845288 +2019-11-09 00:00:00,25.0,0.045502646,20.159926284271435 +2019-11-09 00:15:00,25.0,0.038624339,20.15947669423906 +2019-11-09 00:30:00,25.0,0.034920635,20.159027726805995 +2019-11-09 00:45:00,25.0,0.033333333,20.158579382029984 +2019-11-09 01:00:00,25.0,0.03015873,20.158131659968692 +2019-11-09 01:15:00,25.0,0.026984127,20.157684560679705 +2019-11-09 01:30:00,25.0,0.028042328,20.15723808422054 +2019-11-09 01:45:00,25.0,0.034391534,20.156792230648612 +2019-11-09 02:00:00,25.0,0.040740741,20.156347000021274 +2019-11-09 02:15:00,25.0,0.043386243,20.155902392395788 +2019-11-09 02:30:00,25.0,0.040740741,20.15545840782935 +2019-11-09 02:45:00,25.0,0.037037037,20.155015046379056 +2019-11-09 03:00:00,25.0,0.030687831,20.154572308101937 +2019-11-09 03:15:00,25.0,0.03015873,20.15413019305494 +2019-11-09 03:30:00,25.0,0.032275132,20.153688701294925 +2019-11-09 03:45:00,25.0,0.034391534,20.153247832878684 +2019-11-09 04:00:00,25.0,0.032804233,20.15280758786292 +2019-11-09 04:15:00,25.0,0.037037037,20.15236796630426 +2019-11-09 04:30:00,25.0,0.041269841,20.151928968259245 +2019-11-09 04:45:00,25.0,0.046560847,20.151490593784345 +2019-11-09 05:00:00,25.0,0.052380952,20.15105284293594 +2019-11-09 05:15:00,25.0,0.055026455,20.15061571577034 +2019-11-09 05:30:00,25.0,0.05978836,20.15017921234376 +2019-11-09 05:45:00,25.0,0.05978836,20.149743332712355 +2019-11-09 06:00:00,25.0,0.057142857,20.149308076932186 +2019-11-09 06:15:00,25.0,0.05978836,20.148873445059234 +2019-11-09 06:30:00,25.0,0.065079365,20.1484394371494 +2019-11-09 06:45:00,25.0,0.068783069,20.148006053258513 +2019-11-09 07:00:00,25.0,0.076190476,20.147573293442314 +2019-11-09 07:15:00,25.0,0.083068783,20.147141157756458 +2019-11-09 07:30:00,25.0,0.09047619,20.14670964625654 +2019-11-09 07:45:00,25.0,0.101587302,20.146278758998058 +2019-11-09 08:00:00,25.0,0.108994709,20.145848496036425 +2019-11-09 08:15:00,25.0,0.111640212,20.145418857426993 +2019-11-09 08:30:00,25.0,0.117989418,20.14498984322502 +2019-11-09 08:45:00,25.0,0.121693122,20.144561453485682 +2019-11-09 09:00:00,25.0,0.124867725,20.144133688264084 +2019-11-09 09:15:00,25.0,0.131216931,20.143706547615253 +2019-11-09 09:30:00,25.0,0.135449735,20.143280031594113 +2019-11-09 09:45:00,25.0,0.137037037,20.142854140255533 +2019-11-09 10:00:00,25.0,0.141269841,20.142428873654293 +2019-11-09 10:15:00,25.0,0.15026455,20.142004231845092 +2019-11-09 10:30:00,25.0,0.153439153,20.141580214882545 +2019-11-09 10:45:00,25.0,0.156084656,20.141156822821188 +2019-11-09 11:00:00,25.0,0.156084656,20.140734055715484 +2019-11-09 11:15:00,25.0,0.158730159,20.140311913619808 +2019-11-09 11:30:00,25.0,0.152380952,20.139890396588456 +2019-11-09 11:45:00,25.0,0.15026455,20.13946950467565 +2019-11-09 12:00:00,25.0,0.148148148,20.139049237935517 +2019-11-09 12:15:00,25.0,0.141269841,20.13862959642212 +2019-11-09 12:30:00,25.0,0.132275132,20.13821058018943 +2019-11-09 12:45:00,25.0,0.131746032,20.137792189291346 +2019-11-09 13:00:00,25.0,0.13968254,20.137374423781676 +2019-11-09 13:15:00,25.0,0.13968254,20.13695728371416 +2019-11-09 13:30:00,25.0,0.150793651,20.13654076914245 +2019-11-09 13:45:00,25.0,0.16031746,20.136124880120114 +2019-11-09 14:00:00,25.0,0.164550265,20.135709616700655 +2019-11-09 14:15:00,25.0,0.15978836,20.135294978937477 +2019-11-09 14:30:00,25.0,0.158730159,20.134880966883912 +2019-11-09 14:45:00,25.0,0.158730159,20.134467580593217 +2019-11-09 15:00:00,25.0,0.17037037,20.134054820118557 +2019-11-09 15:15:00,25.0,0.192592593,20.13364268551302 +2019-11-09 15:30:00,25.0,0.210582011,20.133231176829625 +2019-11-09 15:45:00,25.0,0.229100529,20.132820294121295 +2019-11-09 16:00:00,25.0,0.246031746,20.132410037440877 +2019-11-09 16:15:00,25.0,0.251851852,20.132000406841144 +2019-11-09 16:30:00,25.0,0.28042328,20.13159140237478 +2019-11-09 16:45:00,25.0,0.303703704,20.13118302409439 +2019-11-09 17:00:00,25.0,0.318518519,20.13077527205251 +2019-11-09 17:15:00,25.0,0.338095238,20.130368146301578 +2019-11-09 17:30:00,25.0,0.35978836,20.12996164689396 +2019-11-09 17:45:00,25.0,0.373015873,20.129555773881947 +2019-11-09 18:00:00,25.0,0.384656085,20.129150527317734 +2019-11-09 18:15:00,25.0,0.396825397,20.12874590725345 +2019-11-09 18:30:00,25.0,0.395767196,20.12834191374114 +2019-11-09 18:45:00,25.0,0.395238095,20.12793854683276 +2019-11-09 19:00:00,25.0,0.408465608,20.127535806580198 +2019-11-09 19:15:00,25.0,0.434391534,20.127133693035255 +2019-11-09 19:30:00,25.0,0.428571429,20.12673220624965 +2019-11-09 19:45:00,25.0,0.425925926,20.126331346275023 +2019-11-09 20:00:00,25.0,0.426455026,20.125931113162935 +2019-11-09 20:15:00,25.0,0.423809524,20.12553150696486 +2019-11-09 20:30:00,25.0,0.408994709,20.125132527732205 +2019-11-09 20:45:00,25.0,0.391534392,20.12473417551628 +2019-11-09 21:00:00,25.0,0.37989418,20.124336450368325 +2019-11-09 21:15:00,25.0,0.351322751,20.123939352339498 +2019-11-09 21:30:00,25.0,0.332275132,20.123542881480873 +2019-11-09 21:45:00,25.0,0.32962963,20.123147037843445 +2019-11-09 22:00:00,25.0,0.337037037,20.122751821478126 +2019-11-09 22:15:00,25.0,0.324867725,20.122357232435753 +2019-11-09 22:30:00,25.0,0.313756614,20.121963270767075 +2019-11-09 22:45:00,25.0,0.303174603,20.12156993652277 +2019-11-09 23:00:00,25.0,0.300529101,20.121177229753425 +2019-11-09 23:15:00,25.0,0.311111111,20.120785150509555 +2019-11-09 23:30:00,25.0,0.315873016,20.120393698841585 +2019-11-09 23:45:00,25.0,0.313227513,20.120002874799866 +2019-11-10 00:00:00,25.0,0.308994709,20.11961267843467 +2019-11-10 00:15:00,25.0,0.315343915,20.119223109796184 +2019-11-10 00:30:00,25.0,0.319047619,20.118834168934512 +2019-11-10 00:45:00,25.0,0.323809524,20.11844585589968 +2019-11-10 01:00:00,25.0,0.336507937,20.11805817074164 +2019-11-10 01:15:00,25.0,0.341798942,20.11767111351025 +2019-11-10 01:30:00,25.0,0.351322751,20.1172846842553 +2019-11-10 01:45:00,25.0,0.366666667,20.116898883026487 +2019-11-10 02:00:00,25.0,0.362962963,20.11651370987344 +2019-11-10 02:15:00,25.0,0.334391534,20.116129164845695 +2019-11-10 02:30:00,25.0,0.316402116,20.11574524799272 +2019-11-10 02:45:00,25.0,0.306878307,20.11536195936389 +2019-11-10 03:00:00,25.0,0.308994709,20.114979299008507 +2019-11-10 03:15:00,25.0,0.30952381,20.11459726697579 +2019-11-10 03:30:00,25.0,0.313227513,20.11421586331487 +2019-11-10 03:45:00,25.0,0.316931217,20.113835088074815 +2019-11-10 04:00:00,25.0,0.311640212,20.113454941304592 +2019-11-10 04:15:00,25.0,0.307936508,20.1130754230531 +2019-11-10 04:30:00,25.0,0.31005291,20.112696533369157 +2019-11-10 04:45:00,25.0,0.316931217,20.11231827230149 +2019-11-10 05:00:00,25.0,0.324867725,20.111940639898755 +2019-11-10 05:15:00,25.0,0.312169312,20.111563636209524 +2019-11-10 05:30:00,25.0,0.303174603,20.11118726128229 +2019-11-10 05:45:00,25.0,0.293650794,20.11081151516546 +2019-11-10 06:00:00,25.0,0.293650794,20.110436397907364 +2019-11-10 06:15:00,25.0,0.288888889,20.110061909556254 +2019-11-10 06:30:00,25.0,0.27989418,20.109688050160294 +2019-11-10 06:45:00,25.0,0.271428571,20.10931481976757 +2019-11-10 07:00:00,25.0,0.256613757,20.108942218426087 +2019-11-10 07:15:00,25.0,0.24973545,20.108570246183774 +2019-11-10 07:30:00,25.0,0.247619048,20.10819890308847 +2019-11-10 07:45:00,25.0,0.243386243,20.107828189187945 +2019-11-10 08:00:00,25.0,0.233862434,20.107458104529876 +2019-11-10 08:15:00,25.0,0.222751323,20.107088649161863 +2019-11-10 08:30:00,25.0,0.212698413,20.106719823131428 +2019-11-10 08:45:00,25.0,0.197354497,20.106351626486013 +2019-11-10 09:00:00,25.0,0.185185185,20.105984059272973 +2019-11-10 09:15:00,25.0,0.201058201,20.105617121539588 +2019-11-10 09:30:00,25.0,0.217460317,20.105250813333047 +2019-11-10 09:45:00,25.0,0.22962963,20.104885134700474 +2019-11-10 10:00:00,25.0,0.232275132,20.104520085688904 +2019-11-10 10:15:00,25.0,0.236507937,20.10415566634528 +2019-11-10 10:30:00,25.0,0.256084656,20.103791876716485 +2019-11-10 10:45:00,25.0,0.262962963,20.103428716849308 +2019-11-10 11:00:00,25.0,0.255026455,20.103066186790457 +2019-11-10 11:15:00,25.0,0.246560847,20.10270428658656 +2019-11-10 11:30:00,25.0,0.243915344,20.102343016284173 +2019-11-10 11:45:00,25.0,0.248677249,20.101982375929758 +2019-11-10 12:00:00,25.0,0.258730159,20.101622365569696 +2019-11-10 12:15:00,25.0,0.271428571,20.101262985250305 +2019-11-10 12:30:00,25.0,0.274074074,20.1009042350178 +2019-11-10 12:45:00,25.0,0.275661376,20.100546114918327 +2019-11-10 13:00:00,25.0,0.265608466,20.100188624997948 +2019-11-10 13:15:00,25.0,0.261904762,20.099831765302643 +2019-11-10 13:30:00,25.0,0.253968254,20.099475535878312 +2019-11-10 13:45:00,25.0,0.250793651,20.09911993677078 +2019-11-10 14:00:00,25.0,0.237037037,20.09876496802578 +2019-11-10 14:15:00,25.0,0.231216931,20.098410629688967 +2019-11-10 14:30:00,25.0,0.229100529,20.09805692180592 +2019-11-10 14:45:00,25.0,0.239153439,20.097703844422135 +2019-11-10 15:00:00,25.0,0.238095238,20.09735139758302 +2019-11-10 15:15:00,25.0,0.234920635,20.09699958133391 +2019-11-10 15:30:00,25.0,0.230687831,20.096648395720063 +2019-11-10 15:45:00,25.0,0.216402116,20.09629784078664 +2019-11-10 16:00:00,25.0,0.194179894,20.095947916578737 +2019-11-10 16:15:00,25.0,0.18994709,20.095598623141356 +2019-11-10 16:30:00,25.0,0.186772487,20.095249960519425 +2019-11-10 16:45:00,25.0,0.177777778,20.0949019287578 +2019-11-10 17:00:00,25.0,0.186243386,20.09455452790123 +2019-11-10 17:15:00,25.0,0.195238095,20.094207757994408 +2019-11-10 17:30:00,25.0,0.199470899,20.093861619081935 +2019-11-10 17:45:00,25.0,0.188888889,20.09351611120833 +2019-11-10 18:00:00,25.0,0.182010582,20.093171234418033 +2019-11-10 18:15:00,25.0,0.185714286,20.092826988755405 +2019-11-10 18:30:00,25.0,0.192592593,20.092483374264727 +2019-11-10 18:45:00,25.0,0.197354497,20.09214039099019 +2019-11-10 19:00:00,25.0,0.192063492,20.09179803897591 +2019-11-10 19:15:00,25.0,0.186772487,20.091456318265923 +2019-11-10 19:30:00,25.0,0.183068783,20.09111522890418 +2019-11-10 19:45:00,25.0,0.195238095,20.09077477093455 +2019-11-10 20:00:00,25.0,0.210582011,20.090434944400833 +2019-11-10 20:15:00,25.0,0.218518519,20.090095749346727 +2019-11-10 20:30:00,25.0,0.231216931,20.089757185815866 +2019-11-10 20:45:00,25.0,0.252910053,20.0894192538518 +2019-11-10 21:00:00,25.0,0.255555556,20.08908195349799 +2019-11-10 21:15:00,25.0,0.268253968,20.088745284797817 +2019-11-10 21:30:00,25.0,0.284656085,20.08840924779459 +2019-11-10 21:45:00,25.0,0.273544974,20.088073842531532 +2019-11-10 22:00:00,25.0,0.282010582,20.08773906905178 +2019-11-10 22:15:00,25.0,0.292063492,20.08740492739839 +2019-11-10 22:30:00,25.0,0.315343915,20.087071417614347 +2019-11-10 22:45:00,25.0,0.323809524,20.086738539742544 +2019-11-10 23:00:00,25.0,0.334391534,20.0864062938258 +2019-11-10 23:15:00,25.0,0.333333333,20.086074679906844 +2019-11-10 23:30:00,25.0,0.323280423,20.08574369802833 +2019-11-10 23:45:00,25.0,0.349206349,20.085413348232834 +2019-11-11 00:00:00,25.0,0.378306878,20.085083630562842 +2019-11-11 00:15:00,25.0,0.370899471,20.08475454506077 +2019-11-11 00:30:00,25.0,0.366137566,20.084426091768933 +2019-11-11 00:45:00,25.0,0.381481481,20.084098270729587 +2019-11-11 01:00:00,25.0,0.395767196,20.083771081984896 +2019-11-11 01:15:00,25.0,0.404232804,20.083444525576944 +2019-11-11 01:30:00,25.0,0.425396825,20.08311860154773 +2019-11-11 01:45:00,25.0,0.437566138,20.082793309939177 +2019-11-11 02:00:00,25.0,0.432275132,20.082468650793125 +2019-11-11 02:15:00,25.0,0.432804233,20.082144624151333 +2019-11-11 02:30:00,25.0,0.435978836,20.08182123005548 +2019-11-11 02:45:00,25.0,0.433862434,20.081498468547153 +2019-11-11 03:00:00,25.0,0.432804233,20.08117633966788 +2019-11-11 03:15:00,25.0,0.431216931,20.08085484345908 +2019-11-11 03:30:00,25.0,0.425396825,20.080533979962116 +2019-11-11 03:45:00,25.0,0.408465608,20.08021374921825 +2019-11-11 04:00:00,25.0,0.416402116,20.079894151268675 +2019-11-11 04:15:00,25.0,0.443386243,20.079575186154496 +2019-11-11 04:30:00,25.0,0.414285714,20.079256853916743 +2019-11-11 04:45:00,25.0,0.386772487,20.078939154596355 +2019-11-11 05:00:00,25.0,0.36031746,20.0786220882342 +2019-11-11 05:15:00,25.0,0.352380952,20.07830565487106 +2019-11-11 05:30:00,25.0,0.382539683,20.07798985454763 +2019-11-11 05:45:00,25.0,0.435449735,20.077674687304537 +2019-11-11 06:00:00,25.0,0.457671958,20.077360153182312 +2019-11-11 06:15:00,25.0,0.445502646,20.077046252221415 +2019-11-11 06:30:00,25.0,0.459259259,20.076732984462215 +2019-11-11 06:45:00,25.0,0.49047619,20.07642034994501 +2019-11-11 07:00:00,25.0,0.514285714,20.07610834871001 +2019-11-11 07:15:00,25.0,0.523280423,20.07579698079735 +2019-11-11 07:30:00,25.0,0.523809524,20.075486246247074 +2019-11-11 07:45:00,25.0,0.531746032,20.07517614509915 +2019-11-11 08:00:00,25.0,0.54973545,20.074866677393462 +2019-11-11 08:15:00,25.0,0.557142857,20.07455784316982 +2019-11-11 08:30:00,25.0,0.563492063,20.07424964246794 +2019-11-11 08:45:00,25.0,0.584126984,20.07394207532747 +2019-11-11 09:00:00,25.0,0.596296296,20.073635141787967 +2019-11-11 09:15:00,25.0,0.588888889,20.07332884188891 +2019-11-11 09:30:00,25.0,0.59047619,20.073023175669693 +2019-11-11 09:45:00,25.0,0.615873016,20.072718143169638 +2019-11-11 10:00:00,25.0,0.635978836,20.072413744427973 +2019-11-11 10:15:00,25.0,0.659259259,20.072109979483855 +2019-11-11 10:30:00,25.0,0.647089947,20.071806848376347 +2019-11-11 10:45:00,25.0,0.649206349,20.07150435114445 +2019-11-11 11:00:00,25.0,0.652380952,20.071202487827065 +2019-11-11 11:15:00,25.0,0.658201058,20.070901258463017 +2019-11-11 11:30:00,25.0,0.651851852,20.070600663091057 +2019-11-11 11:45:00,25.0,0.65026455,20.070300701749844 +2019-11-11 12:00:00,25.0,0.654497354,20.070001374477954 +2019-11-11 12:15:00,25.0,0.663492063,20.0697026813139 +2019-11-11 12:30:00,25.0,0.669312169,20.06940462229609 +2019-11-11 12:45:00,25.0,0.686243386,20.069107197462866 +2019-11-11 13:00:00,25.0,0.688359788,20.068810406852485 +2019-11-11 13:15:00,25.0,0.686243386,20.068514250503114 +2019-11-11 13:30:00,25.0,0.691534392,20.06821872845285 +2019-11-11 13:45:00,25.0,0.703174603,20.06792384073971 +2019-11-11 14:00:00,25.0,0.708994709,20.06762958740161 +2019-11-11 14:15:00,25.0,0.704761905,20.067335968476407 +2019-11-11 14:30:00,25.0,0.705291005,20.067042984001862 +2019-11-11 14:45:00,25.0,0.698412698,20.066750634015662 +2019-11-11 15:00:00,25.0,0.700529101,20.06645891855541 +2019-11-11 15:15:00,25.0,0.706349206,20.066167837658625 +2019-11-11 15:30:00,25.0,0.707936508,20.065877391362747 +2019-11-11 15:45:00,25.0,0.708465608,20.065587579705134 +2019-11-11 16:00:00,25.0,0.691534392,20.065298402723066 +2019-11-11 16:15:00,25.0,0.674603175,20.06500986045373 +2019-11-11 16:30:00,25.0,0.678835979,20.06472195293425 +2019-11-11 16:45:00,25.0,0.676719577,20.064434680201643 +2019-11-11 17:00:00,25.0,0.678306878,20.064148042292874 +2019-11-11 17:15:00,25.0,0.672486772,20.0638620392448 +2019-11-11 17:30:00,25.0,0.663492063,20.06357667109421 +2019-11-11 17:45:00,25.0,0.666666667,20.06329193787781 +2019-11-11 18:00:00,25.0,0.668783069,20.06300783963222 +2019-11-11 18:15:00,25.0,0.673544974,20.062724376393987 +2019-11-11 18:30:00,25.0,0.675132275,20.06244154819957 +2019-11-11 18:45:00,25.0,0.676719577,20.062159355085342 +2019-11-11 19:00:00,25.0,0.676719577,20.061877797087604 +2019-11-11 19:15:00,25.0,0.688888889,20.061596874242564 +2019-11-11 19:30:00,25.0,0.691534392,20.061316586586365 +2019-11-11 19:45:00,25.0,0.691534392,20.061036934155048 +2019-11-11 20:00:00,25.0,0.692592593,20.06075791698459 +2019-11-11 20:15:00,25.0,0.694179894,20.060479535110872 +2019-11-11 20:30:00,25.0,0.694179894,20.06020178856971 +2019-11-11 20:45:00,25.0,0.689417989,20.059924677396822 +2019-11-11 21:00:00,25.0,0.669312169,20.059648201627848 +2019-11-11 21:15:00,25.0,0.650793651,20.059372361298358 +2019-11-11 21:30:00,25.0,0.653439153,20.05909715644382 +2019-11-11 21:45:00,25.0,0.673015873,20.05882258709964 +2019-11-11 22:00:00,25.0,0.669312169,20.058548653301127 +2019-11-11 22:15:00,25.0,0.685185185,20.058275355083524 +2019-11-11 22:30:00,25.0,0.71005291,20.058002692481978 +2019-11-11 22:45:00,25.0,0.707407407,20.057730665531555 +2019-11-11 23:00:00,25.0,0.665079365,20.057459274267252 +2019-11-11 23:15:00,25.0,0.728571429,20.05718851872397 +2019-11-11 23:30:00,25.0,0.759259259,20.05691839893654 +2019-11-11 23:45:00,25.0,0.741269841,20.056648914939696 +2019-11-12 00:00:00,25.0,0.747619048,20.05638006676811 +2019-11-12 00:15:00,25.0,0.787301587,20.056111854456354 +2019-11-12 00:30:00,25.0,0.780952381,20.055844278038933 +2019-11-12 00:45:00,25.0,0.719047619,20.05557733755026 +2019-11-12 01:00:00,25.0,0.722222222,20.055311033024665 +2019-11-12 01:15:00,25.0,0.745502646,20.055045364496408 +2019-11-12 01:30:00,25.0,0.742328042,20.05478033199966 +2019-11-12 01:45:00,25.0,0.731746032,20.054515935568503 +2019-11-12 02:00:00,25.0,0.734920635,20.054252175236947 +2019-11-12 02:15:00,25.0,0.742857143,20.053989051038922 +2019-11-12 02:30:00,25.0,0.737037037,20.05372656300827 +2019-11-12 02:45:00,25.0,0.71957672,20.053464711178748 +2019-11-12 03:00:00,25.0,0.694708995,20.053203495584036 +2019-11-12 03:15:00,25.0,0.702645503,20.05294291625774 +2019-11-12 03:30:00,25.0,0.705291005,20.052682973233374 +2019-11-12 03:45:00,25.0,0.713756614,20.052423666544364 +2019-11-12 04:00:00,25.0,0.705820106,20.05216499622407 +2019-11-12 04:15:00,25.0,0.691534392,20.051906962305765 +2019-11-12 04:30:00,25.0,0.716402116,20.051649564822632 +2019-11-12 04:45:00,25.0,0.719047619,20.051392803807783 +2019-11-12 05:00:00,25.0,0.717460317,20.05113667929424 +2019-11-12 05:15:00,25.0,0.712698413,20.050881191314943 +2019-11-12 05:30:00,25.0,0.722222222,20.050626339902763 +2019-11-12 05:45:00,25.0,0.726984127,20.05037212509047 +2019-11-12 06:00:00,25.0,0.726984127,20.050118546910767 +2019-11-12 06:15:00,25.0,0.718518519,20.04986560539627 +2019-11-12 06:30:00,25.0,0.715343915,20.04961330057951 +2019-11-12 06:45:00,25.0,0.721693122,20.04936163249294 +2019-11-12 07:00:00,25.0,0.726984127,20.049110601168934 +2019-11-12 07:15:00,25.0,0.716402116,20.048860206639773 +2019-11-12 07:30:00,25.0,0.700529101,20.04861044893767 +2019-11-12 07:45:00,25.0,0.707936508,20.048361328094746 +2019-11-12 08:00:00,25.0,0.718518519,20.048112844143045 +2019-11-12 08:15:00,25.0,0.714814815,20.047864997114523 +2019-11-12 08:30:00,25.0,0.696825397,20.047617787041066 +2019-11-12 08:45:00,25.0,0.694708995,20.047371213954467 +2019-11-12 09:00:00,25.0,0.657142857,20.04712527788644 +2019-11-12 09:15:00,25.0,0.651851852,20.046879978868617 +2019-11-12 09:30:00,25.0,0.651322751,20.046635316932555 +2019-11-12 09:45:00,25.0,0.651851852,20.046391292109714 +2019-11-12 10:00:00,25.0,0.644444444,20.04614790443149 +2019-11-12 10:15:00,25.0,0.63968254,20.04590515392918 +2019-11-12 10:30:00,25.0,0.650793651,20.04566304063401 +2019-11-12 10:45:00,25.0,0.634391534,20.045421564577126 +2019-11-12 11:00:00,25.0,0.634920635,20.045180725789585 +2019-11-12 11:15:00,25.0,0.645502646,20.04494052430236 +2019-11-12 11:30:00,25.0,0.642328042,20.044700960146347 +2019-11-12 11:45:00,25.0,0.638624339,20.04446203335236 +2019-11-12 12:00:00,25.0,0.667724868,20.044223743951136 +2019-11-12 12:15:00,25.0,0.673544974,20.04398609197332 +2019-11-12 12:30:00,25.0,0.702116402,20.043749077449476 +2019-11-12 12:45:00,25.0,0.711111111,20.04351270041009 +2019-11-12 13:00:00,25.0,0.71005291,20.043276960885574 +2019-11-12 13:15:00,25.0,0.705291005,20.043041858906243 +2019-11-12 13:30:00,25.0,0.698412698,20.042807394502333 +2019-11-12 13:45:00,25.0,0.695767196,20.042573567704004 +2019-11-12 14:00:00,25.0,0.692592593,20.042340378541336 +2019-11-12 14:15:00,25.0,0.692592593,20.042107827044315 +2019-11-12 14:30:00,25.0,0.693650794,20.04187591324286 +2019-11-12 14:45:00,25.0,0.704761905,20.041644637166794 +2019-11-12 15:00:00,25.0,0.714814815,20.04141399884587 +2019-11-12 15:15:00,25.0,0.717989418,20.04118399830974 +2019-11-12 15:30:00,25.0,0.717460317,20.040954635588008 +2019-11-12 15:45:00,25.0,0.718518519,20.040725910710158 +2019-11-12 16:00:00,25.0,0.715873016,20.040497823705614 +2019-11-12 16:15:00,25.0,0.733862434,20.04027037460372 +2019-11-12 16:30:00,25.0,0.726455026,20.04004356343372 +2019-11-12 16:45:00,25.0,0.722751323,20.039817390224798 +2019-11-12 17:00:00,25.0,0.733333333,20.039591855006034 +2019-11-12 17:15:00,25.0,0.733333333,20.039366957806443 +2019-11-12 17:30:00,25.0,0.731746032,20.039142698654953 +2019-11-12 17:45:00,25.0,0.715873016,20.038919077580402 +2019-11-12 18:00:00,25.0,0.71005291,20.038696094611563 +2019-11-12 18:15:00,25.0,0.715343915,20.038473749777108 +2019-11-12 18:30:00,25.0,0.710582011,20.038252043105636 +2019-11-12 18:45:00,25.0,0.707936508,20.03803097462567 +2019-11-12 19:00:00,25.0,0.714285714,20.03781054436564 +2019-11-12 19:15:00,25.0,0.720634921,20.037590752353896 +2019-11-12 19:30:00,25.0,0.71005291,20.037371598618712 +2019-11-12 19:45:00,25.0,0.710582011,20.037153083188272 +2019-11-12 20:00:00,25.0,0.724867725,20.03693520609069 +2019-11-12 20:15:00,25.0,0.733862434,20.03671796735398 +2019-11-12 20:30:00,25.0,0.735978836,20.036501367006085 +2019-11-12 20:45:00,25.0,0.75026455,20.036285405074874 +2019-11-12 21:00:00,25.0,0.758201058,20.036070081588115 +2019-11-12 21:15:00,25.0,0.758201058,20.03585539657351 +2019-11-12 21:30:00,25.0,0.749206349,20.035641350058665 +2019-11-12 21:45:00,25.0,0.743386243,20.035427942071117 +2019-11-12 22:00:00,25.0,0.743386243,20.035215172638313 +2019-11-12 22:15:00,25.0,0.738095238,20.035003041787622 +2019-11-12 22:30:00,25.0,0.726984127,20.034791549546323 +2019-11-12 22:45:00,25.0,0.70952381,20.034580695941624 +2019-11-12 23:00:00,25.0,0.698941799,20.034370481000646 +2019-11-12 23:15:00,25.0,0.685185185,20.034160904750422 +2019-11-12 23:30:00,25.0,0.683597884,20.033951967217916 +2019-11-12 23:45:00,25.0,0.692592593,20.03374366842999 +2019-11-13 00:00:00,25.0,0.702645503,20.03353600841345 +2019-11-13 00:15:00,25.0,0.703703704,20.033328987195 +2019-11-13 00:30:00,25.0,0.707407407,20.033122604801264 +2019-11-13 00:45:00,25.0,0.715343915,20.032916861258787 +2019-11-13 01:00:00,25.0,0.722751323,20.03271175659404 +2019-11-13 01:15:00,25.0,0.720634921,20.032507290833397 +2019-11-13 01:30:00,25.0,0.721164021,20.032303464003157 +2019-11-13 01:45:00,25.0,0.724867725,20.03210027612954 +2019-11-13 02:00:00,25.0,0.727513228,20.031897727238682 +2019-11-13 02:15:00,25.0,0.725925926,20.03169581735663 +2019-11-13 02:30:00,25.0,0.719047619,20.031494546509357 +2019-11-13 02:45:00,25.0,0.714814815,20.031293914722752 +2019-11-13 03:00:00,25.0,0.713227513,20.03109392202262 +2019-11-13 03:15:00,25.0,0.717460317,20.030894568434682 +2019-11-13 03:30:00,25.0,0.713756614,20.030695853984582 +2019-11-13 03:45:00,25.0,0.698412698,20.030497778697878 +2019-11-13 04:00:00,25.0,0.697883598,20.030300342600047 +2019-11-13 04:15:00,25.0,0.696825397,20.030103545716486 +2019-11-13 04:30:00,25.0,0.695238095,20.029907388072502 +2019-11-13 04:45:00,25.0,0.695767196,20.02971186969333 +2019-11-13 05:00:00,25.0,0.696296296,20.029516990604115 +2019-11-13 05:15:00,25.0,0.691534392,20.029322750829927 +2019-11-13 05:30:00,25.0,0.676190476,20.029129150395747 +2019-11-13 05:45:00,25.0,0.621164021,20.028936189326473 +2019-11-13 06:00:00,25.0,0.578306878,20.02874386764693 +2019-11-13 06:15:00,25.0,0.571428571,20.028552185381855 +2019-11-13 06:30:00,25.0,0.570899471,20.028361142555895 +2019-11-13 06:45:00,25.0,0.580952381,20.02817073919363 +2019-11-13 07:00:00,25.0,0.593650794,20.027980975319544 +2019-11-13 07:15:00,25.0,0.605291005,20.027791850958053 +2019-11-13 07:30:00,25.0,0.60952381,20.027603366133476 +2019-11-13 07:45:00,25.0,0.607407407,20.027415520870058 +2019-11-13 08:00:00,25.0,0.599470899,20.027228315191962 +2019-11-13 08:15:00,25.0,0.582539683,20.027041749123264 +2019-11-13 08:30:00,25.0,0.545502646,20.02685582268796 +2019-11-13 08:45:00,25.0,0.531746032,20.026670535909965 +2019-11-13 09:00:00,25.0,0.531216931,20.026485888813117 +2019-11-13 09:15:00,25.0,0.53968254,20.02630188142116 +2019-11-13 09:30:00,25.0,0.540740741,20.02611851375776 +2019-11-13 09:45:00,25.0,0.558730159,20.025935785846503 +2019-11-13 10:00:00,25.0,0.576190476,20.025753697710897 +2019-11-13 10:15:00,25.0,0.584126984,20.025572249374356 +2019-11-13 10:30:00,25.0,0.573015873,20.02539144086022 +2019-11-13 10:45:00,25.0,0.56031746,20.025211272191747 +2019-11-13 11:00:00,25.0,0.553968254,20.025031743392113 +2019-11-13 11:15:00,25.0,0.533333333,20.024852854484404 +2019-11-13 11:30:00,25.0,0.513756614,20.024674605491633 +2019-11-13 11:45:00,25.0,0.514285714,20.024496996436724 +2019-11-13 12:00:00,25.0,0.513756614,20.024320027342522 +2019-11-13 12:15:00,25.0,0.488359788,20.02414369823179 +2019-11-13 12:30:00,25.0,0.464021164,20.02396800912721 +2019-11-13 12:45:00,25.0,0.466137566,20.023792960051374 +2019-11-13 13:00:00,25.0,0.47989418,20.023618551026804 +2019-11-13 13:15:00,25.0,0.468253968,20.023444782075927 +2019-11-13 13:30:00,25.0,0.443915344,20.023271653221094 +2019-11-13 13:45:00,25.0,0.471957672,20.02309916448458 +2019-11-13 14:00:00,25.0,0.475132275,20.022927315888563 +2019-11-13 14:15:00,25.0,0.5,20.02275610745515 +2019-11-13 14:30:00,25.0,0.476190476,20.022585539206364 +2019-11-13 14:45:00,25.0,0.44021164,20.02241561116414 +2019-11-13 15:00:00,25.0,0.451851852,20.022246323350338 +2019-11-13 15:15:00,25.0,0.471957672,20.022077675786726 +2019-11-13 15:30:00,25.0,0.498941799,20.021909668495006 +2019-11-13 15:45:00,25.0,0.480952381,20.021742301496776 +2019-11-13 16:00:00,25.0,0.481481481,20.021575574813575 +2019-11-13 16:15:00,25.0,0.472486772,20.021409488466837 +2019-11-13 16:30:00,25.0,0.500529101,20.021244042477928 +2019-11-13 16:45:00,25.0,0.472486772,20.021079236868133 +2019-11-13 17:00:00,25.0,0.446031746,20.020915071658646 +2019-11-13 17:15:00,25.0,0.471957672,20.020751546870578 +2019-11-13 17:30:00,25.0,0.434920635,20.020588662524972 +2019-11-13 17:45:00,25.0,0.383068783,20.02042641864277 +2019-11-13 18:00:00,25.0,0.357671958,20.02026481524484 +2019-11-13 18:15:00,25.0,0.296825397,20.020103852351973 +2019-11-13 18:30:00,25.0,0.291534392,20.01994352998487 +2019-11-13 18:45:00,25.0,0.321693122,20.019783848164153 +2019-11-13 19:00:00,25.0,0.32010582,20.019624806910358 +2019-11-13 19:15:00,25.0,0.30952381,20.019466406243943 +2019-11-13 19:30:00,25.0,0.262962963,20.019308646185284 +2019-11-13 19:45:00,25.0,0.274603175,20.01915152675467 +2019-11-13 20:00:00,25.0,0.27989418,20.01899504797231 +2019-11-13 20:15:00,25.0,0.320634921,20.018839209858328 +2019-11-13 20:30:00,25.0,0.293650794,20.018684012432775 +2019-11-13 20:45:00,25.0,0.284126984,20.01852945571561 +2019-11-13 21:00:00,25.0,0.302116402,20.01837553972671 +2019-11-13 21:15:00,25.0,0.355555556,20.01822226448587 +2019-11-13 21:30:00,25.0,0.351851852,20.01806963001281 +2019-11-13 21:45:00,25.0,0.34021164,20.017917636327162 +2019-11-13 22:00:00,25.0,0.344973545,20.017766283448477 +2019-11-13 22:15:00,25.0,0.326455026,20.017615571396217 +2019-11-13 22:30:00,25.0,0.291005291,20.01746550018977 +2019-11-13 22:45:00,25.0,0.288888889,20.017316069848434 +2019-11-13 23:00:00,25.0,0.28994709,20.017167280391437 +2019-11-13 23:15:00,25.0,0.26984127,20.017019131837912 +2019-11-13 23:30:00,25.0,0.263492063,20.016871624206914 +2019-11-13 23:45:00,25.0,0.271957672,20.01672475751742 +2019-11-14 00:00:00,25.0,0.277777778,20.016578531788312 +2019-11-14 00:15:00,25.0,0.269312169,20.016432947038407 +2019-11-14 00:30:00,25.0,0.241269841,20.016288003286427 +2019-11-14 00:45:00,25.0,0.212169312,20.016143700551012 +2019-11-14 01:00:00,25.0,0.193650794,20.016000038850724 +2019-11-14 01:15:00,25.0,0.166666667,20.015857018204045 +2019-11-14 01:30:00,25.0,0.166666667,20.015714638629365 +2019-11-14 01:45:00,25.0,0.152910053,20.015572900145003 +2019-11-14 02:00:00,25.0,0.143386243,20.015431802769182 +2019-11-14 02:15:00,25.0,0.144973545,20.01529134652006 +2019-11-14 02:30:00,25.0,0.138095238,20.015151531415693 +2019-11-14 02:45:00,25.0,0.141269841,20.01501235747407 +2019-11-14 03:00:00,25.0,0.140740741,20.014873824713092 +2019-11-14 03:15:00,25.0,0.135978836,20.014735933150575 +2019-11-14 03:30:00,25.0,0.131746032,20.01459868280426 +2019-11-14 03:45:00,25.0,0.144973545,20.014462073691796 +2019-11-14 04:00:00,25.0,0.169312169,20.01432610583075 +2019-11-14 04:15:00,25.0,0.176719577,20.014190779238618 +2019-11-14 04:30:00,25.0,0.157671958,20.014056093932805 +2019-11-14 04:45:00,25.0,0.153968254,20.01392204993063 +2019-11-14 05:00:00,25.0,0.160846561,20.01378864724934 +2019-11-14 05:15:00,25.0,0.149206349,20.013655885906086 +2019-11-14 05:30:00,25.0,0.131746032,20.013523765917952 +2019-11-14 05:45:00,25.0,0.12010582,20.013392287301926 +2019-11-14 06:00:00,25.0,0.11005291,20.01326145007492 +2019-11-14 06:15:00,25.0,0.105291005,20.013131254253768 +2019-11-14 06:30:00,25.0,0.122751323,20.01300169985521 +2019-11-14 06:45:00,25.0,0.152910053,20.012872786895908 +2019-11-14 07:00:00,25.0,0.170899471,20.01274451539245 +2019-11-14 07:15:00,25.0,0.178835979,20.012616885361332 +2019-11-14 07:30:00,25.0,0.175132275,20.012489896818966 +2019-11-14 07:45:00,25.0,0.167195767,20.01236354978169 +2019-11-14 08:00:00,25.0,0.182539683,20.01223784426575 +2019-11-14 08:15:00,25.0,0.191534392,20.012112780287325 +2019-11-14 08:30:00,25.0,0.188888889,20.01198835786249 +2019-11-14 08:45:00,25.0,0.178835979,20.011864577007252 +2019-11-14 09:00:00,25.0,0.164021164,20.011741437737534 +2019-11-14 09:15:00,25.0,0.156084656,20.011618940069177 +2019-11-14 09:30:00,25.0,0.161375661,20.011497084017925 +2019-11-14 09:45:00,25.0,0.165079365,20.011375869599465 +2019-11-14 10:00:00,25.0,0.176190476,20.011255296829383 +2019-11-14 10:15:00,25.0,0.191005291,20.011135365723185 +2019-11-14 10:30:00,25.0,0.201587302,20.0110160762963 +2019-11-14 10:45:00,25.0,0.213227513,20.010897428564068 +2019-11-14 11:00:00,25.0,0.211111111,20.010779422541752 +2019-11-14 11:15:00,25.0,0.195767196,20.010662058244527 +2019-11-14 11:30:00,25.0,0.204761905,20.010545335687496 +2019-11-14 11:45:00,25.0,0.233862434,20.010429254885665 +2019-11-14 12:00:00,25.0,0.22010582,20.01031381585397 +2019-11-14 12:15:00,25.0,0.199470899,20.010199018607253 +2019-11-14 12:30:00,25.0,0.180952381,20.010084863160284 +2019-11-14 12:45:00,25.0,0.178835979,20.009971349527746 +2019-11-14 13:00:00,25.0,0.185714286,20.009858477724237 +2019-11-14 13:15:00,25.0,0.182539683,20.009746247764276 +2019-11-14 13:30:00,25.0,0.18042328,20.009634659662296 +2019-11-14 13:45:00,25.0,0.185714286,20.009523713432653 +2019-11-14 14:00:00,25.0,0.183068783,20.009413409089618 +2019-11-14 14:15:00,25.0,0.170899471,20.009303746647376 +2019-11-14 14:30:00,25.0,0.160846561,20.00919472612003 +2019-11-14 14:45:00,25.0,0.16984127,20.009086347521606 +2019-11-14 15:00:00,25.0,0.171957672,20.008978610866045 +2019-11-14 15:15:00,25.0,0.183597884,20.0088715161672 +2019-11-14 15:30:00,25.0,0.210582011,20.00876506343885 +2019-11-14 15:45:00,25.0,0.246031746,20.008659252694684 +2019-11-14 16:00:00,25.0,0.282539683,20.008554083948315 +2019-11-14 16:15:00,25.0,0.34021164,20.008449557213268 +2019-11-14 16:30:00,25.0,0.325396825,20.008345672502983 +2019-11-14 16:45:00,25.0,0.308465608,20.00824242983083 +2019-11-14 17:00:00,25.0,0.337566138,20.008139829210084 +2019-11-14 17:15:00,25.0,0.314814815,20.008037870653943 +2019-11-14 17:30:00,25.0,0.321164021,20.00793655417552 +2019-11-14 17:45:00,25.0,0.328571429,20.007835879787848 +2019-11-14 18:00:00,25.0,0.333862434,20.007735847503874 +2019-11-14 18:15:00,25.0,0.423280423,20.007636457336464 +2019-11-14 18:30:00,25.0,0.530687831,20.007537709298404 +2019-11-14 18:45:00,25.0,0.617989418,20.007439603402396 +2019-11-14 19:00:00,25.0,0.617989418,20.007342139661056 +2019-11-14 19:15:00,25.0,0.610582011,20.007245318086923 +2019-11-14 19:30:00,25.0,0.605291005,20.007149138692448 +2019-11-14 19:45:00,25.0,0.607407407,20.00705360149 +2019-11-14 20:00:00,25.0,0.616931217,20.00695870649187 +2019-11-14 20:15:00,25.0,0.604761905,20.006864453710264 +2019-11-14 20:30:00,25.0,0.597883598,20.006770843157305 +2019-11-14 20:45:00,25.0,0.603174603,20.006677874845032 +2019-11-14 21:00:00,25.0,0.606878307,20.006585548785402 +2019-11-14 21:15:00,25.0,0.608465608,20.00649386499029 +2019-11-14 21:30:00,25.0,0.608465608,20.006402823471493 +2019-11-14 21:45:00,25.0,0.62010582,20.00631242424072 +2019-11-14 22:00:00,25.0,0.634391534,20.006222667309594 +2019-11-14 22:15:00,25.0,0.63968254,20.00613355268966 +2019-11-14 22:30:00,25.0,0.644444444,20.006045080392386 +2019-11-14 22:45:00,25.0,0.627513228,20.005957250429145 +2019-11-14 23:00:00,25.0,0.600529101,20.00587006281124 +2019-11-14 23:15:00,25.0,0.583068783,20.00578351754988 +2019-11-14 23:30:00,25.0,0.570899471,20.0056976146562 +2019-11-14 23:45:00,25.0,0.567724868,20.005612354141242 +2019-11-15 00:00:00,25.0,0.579365079,20.005527736015985 +2019-11-15 00:15:00,25.0,0.604761905,20.005443760291303 +2019-11-15 00:30:00,25.0,0.598412698,20.005360426978 +2019-11-15 00:45:00,25.0,0.594179894,20.005277736086796 +2019-11-15 01:00:00,25.0,0.607407407,20.005195687628323 +2019-11-15 01:15:00,25.0,0.631746032,20.00511428161314 +2019-11-15 01:30:00,25.0,0.665608466,20.00503351805171 +2019-11-15 01:45:00,25.0,0.688359788,20.004953396954427 +2019-11-15 02:00:00,25.0,0.692592593,20.004873918331597 +2019-11-15 02:15:00,25.0,0.7,20.00479508219344 +2019-11-15 02:30:00,25.0,0.697354497,20.004716888550092 +2019-11-15 02:45:00,25.0,0.701587302,20.00463933741162 +2019-11-15 03:00:00,25.0,0.715873016,20.00456242878799 +2019-11-15 03:15:00,25.0,0.746560847,20.0044861626891 +2019-11-15 03:30:00,25.0,0.771428571,20.00441053912476 +2019-11-15 03:45:00,25.0,0.78994709,20.004335558104692 +2019-11-15 04:00:00,25.0,0.772486772,20.004261219638543 +2019-11-15 04:15:00,25.0,0.759259259,20.004187523735872 +2019-11-15 04:30:00,25.0,0.737566138,20.00411447040616 +2019-11-15 04:45:00,25.0,0.739153439,20.004042059658808 +2019-11-15 05:00:00,25.0,0.73968254,20.00397029150312 +2019-11-15 05:15:00,25.0,0.738095238,20.003899165948333 +2019-11-15 05:30:00,25.0,0.740740741,20.003828683003597 +2019-11-15 05:45:00,25.0,0.74021164,20.00375884267797 +2019-11-15 06:00:00,25.0,0.739153439,20.003689644980444 +2019-11-15 06:15:00,25.0,0.73968254,20.003621089919914 +2019-11-15 06:30:00,25.0,0.74021164,20.0035531775052 +2019-11-15 06:45:00,25.0,0.74021164,20.003485907745038 +2019-11-15 07:00:00,25.0,0.738624339,20.003419280648075 +2019-11-15 07:15:00,25.0,0.738624339,20.003353296222883 +2019-11-15 07:30:00,25.0,0.73968254,20.003287954477955 +2019-11-15 07:45:00,25.0,0.738624339,20.003223255421688 +2019-11-15 08:00:00,25.0,0.735978836,20.003159199062406 +2019-11-15 08:15:00,25.0,0.735449735,20.003095785408348 +2019-11-15 08:30:00,25.0,0.737566138,20.003033014467675 +2019-11-15 08:45:00,25.0,0.737566138,20.002970886248455 +2019-11-15 09:00:00,25.0,0.738095238,20.00290940075868 +2019-11-15 09:15:00,25.0,0.742328042,20.002848558006256 +2019-11-15 09:30:00,25.0,0.776190476,20.002788357999016 +2019-11-15 09:45:00,25.0,0.773015873,20.0027288007447 +2019-11-15 10:00:00,25.0,0.773544974,20.002669886250963 +2019-11-15 10:15:00,25.0,0.775132275,20.002611614525392 +2019-11-15 10:30:00,25.0,0.774603175,20.002553985575474 +2019-11-15 10:45:00,25.0,0.773015873,20.002496999408628 +2019-11-15 11:00:00,25.0,0.782010582,20.002440656032178 +2019-11-15 11:15:00,25.0,0.775661376,20.002384955453373 +2019-11-15 11:30:00,25.0,0.774074074,20.002329897679374 +2019-11-15 11:45:00,25.0,0.776719577,20.002275482717273 +2019-11-15 12:00:00,25.0,0.776719577,20.002221710574055 +2019-11-15 12:15:00,25.0,0.768783069,20.002168581256647 +2019-11-15 12:30:00,25.0,0.768783069,20.002116094771882 +2019-11-15 12:45:00,25.0,0.779365079,20.002064251126505 +2019-11-15 13:00:00,25.0,0.787830688,20.00201305032719 +2019-11-15 13:15:00,25.0,0.789417989,20.001962492380514 +2019-11-15 13:30:00,25.0,0.799470899,20.00191257729299 +2019-11-15 13:45:00,25.0,0.801587302,20.001863305071033 +2019-11-15 14:00:00,25.0,0.799470899,20.001814675720983 +2019-11-15 14:15:00,25.0,0.796825397,20.00176668924909 +2019-11-15 14:30:00,25.0,0.796825397,20.001719345661535 +2019-11-15 14:45:00,25.0,0.796825397,20.001672644964398 +2019-11-15 15:00:00,25.0,0.796825397,20.00162658716369 +2019-11-15 15:15:00,25.0,0.777248677,20.001581172265332 +2019-11-15 15:30:00,25.0,0.76984127,20.00153640027517 +2019-11-15 15:45:00,25.0,0.75978836,20.001492271198963 +2019-11-15 16:00:00,25.0,0.766666667,20.001448785042385 +2019-11-15 16:15:00,25.0,0.769312169,20.001405941811026 +2019-11-15 16:30:00,25.0,0.766666667,20.0013637415104 +2019-11-15 16:45:00,25.0,0.755555556,20.001322184145934 +2019-11-15 17:00:00,25.0,0.744444444,20.001281269722977 +2019-11-15 17:15:00,25.0,0.728042328,20.001240998246786 +2019-11-15 17:30:00,25.0,0.714285714,20.00120136972254 +2019-11-15 17:45:00,25.0,0.732275132,20.001162384155343 +2019-11-15 18:00:00,25.0,0.745502646,20.001124041550206 +2019-11-15 18:15:00,25.0,0.73968254,20.001086341912057 +2019-11-15 18:30:00,25.0,0.726984127,20.00104928524575 +2019-11-15 18:45:00,25.0,0.696825397,20.00101287155605 +2019-11-15 19:00:00,25.0,0.648148148,20.00097710084764 +2019-11-15 19:15:00,25.0,0.585714286,20.00094197312512 +2019-11-15 19:30:00,25.0,0.542857143,20.00090748839301 +2019-11-15 19:45:00,25.0,0.506349206,20.000873646655744 +2019-11-15 20:00:00,25.0,0.467724868,20.00084044791768 +2019-11-15 20:15:00,25.0,0.435449735,20.000807892183076 +2019-11-15 20:30:00,25.0,0.402116402,20.000775979456133 +2019-11-15 20:45:00,25.0,0.376190476,20.00074470974095 +2019-11-15 21:00:00,25.0,0.347089947,20.000714083041544 +2019-11-15 21:15:00,25.0,0.316931217,20.000684099361862 +2019-11-15 21:30:00,25.0,0.28994709,20.000654758705757 +2019-11-15 21:45:00,25.0,0.264550265,20.000626061077007 +2019-11-15 22:00:00,25.0,0.245502646,20.000598006479294 +2019-11-15 22:15:00,25.0,0.23015873,20.000570594916233 +2019-11-15 22:30:00,25.0,0.215873016,20.000543826391354 +2019-11-15 22:45:00,25.0,0.194708995,20.00051770090809 +2019-11-15 23:00:00,25.0,0.183597884,20.00049221846981 +2019-11-15 23:15:00,25.0,0.171428571,20.000467379079783 +2019-11-15 23:30:00,25.0,0.16031746,20.00044318274121 +2019-11-15 23:45:00,25.0,0.150793651,20.000419629457205 +2019-11-16 00:00:00,25.0,0.148677249,20.000396719230793 +2019-11-16 00:15:00,25.0,0.140740741,20.000374452064918 +2019-11-16 00:30:00,25.0,0.142328042,20.000352827962452 +2019-11-16 00:45:00,25.0,0.143386243,20.000331846926173 +2019-11-16 01:00:00,25.0,0.143386243,20.000311508958777 +2019-11-16 01:15:00,25.0,0.142857143,20.000291814062884 +2019-11-16 01:30:00,25.0,0.146031746,20.000272762241025 +2019-11-16 01:45:00,25.0,0.149206349,20.00025435349565 +2019-11-16 02:00:00,25.0,0.146031746,20.00023658782913 +2019-11-16 02:15:00,25.0,0.140740741,20.00021946524374 +2019-11-16 02:30:00,25.0,0.136507937,20.000202985741698 +2019-11-16 02:45:00,25.0,0.128571429,20.000187149325114 +2019-11-16 03:00:00,25.0,0.113227513,20.000171955996024 +2019-11-16 03:15:00,25.0,0.111111111,20.000157405756386 +2019-11-16 03:30:00,25.0,0.11005291,20.000143498608068 +2019-11-16 03:45:00,25.0,0.113227513,20.000130234552863 +2019-11-16 04:00:00,25.0,0.118518519,20.000117613592476 +2019-11-16 04:15:00,25.0,0.12010582,20.00010563572853 +2019-11-16 04:30:00,25.0,0.112698413,20.000094300962562 +2019-11-16 04:45:00,25.0,0.103703704,20.000083609296034 +2019-11-16 05:00:00,25.0,0.097354497,20.00007356073032 +2019-11-16 05:15:00,25.0,0.082010582,20.000064155266713 +2019-11-16 05:30:00,25.0,0.067724868,20.00005539290642 +2019-11-16 05:45:00,25.0,0.075132275,20.000047273650573 +2019-11-16 06:00:00,25.0,0.085714286,20.000039797500214 +2019-11-16 06:15:00,25.0,0.097354497,20.000032964456302 +2019-11-16 06:30:00,25.0,0.112698413,20.00002677451972 +2019-11-16 06:45:00,25.0,0.119047619,20.000021227691263 +2019-11-16 07:00:00,25.0,0.122751323,20.000016323971643 +2019-11-16 07:15:00,25.0,0.112169312,20.00001206336149 +2019-11-16 07:30:00,25.0,0.093121693,20.000008445861354 +2019-11-16 07:45:00,25.0,0.083068783,20.0000054714717 +2019-11-16 08:00:00,25.0,0.086243386,20.00000314019291 +2019-11-16 08:15:00,25.0,0.104232804,20.000001452025284 +2019-11-16 08:30:00,25.0,0.119047619,20.000000406969036 +2019-11-16 08:45:00,25.0,0.128042328,20.000000005024308 +2019-11-16 09:00:00,25.0,0.138624339,20.00000024619115 +2019-11-16 09:15:00,25.0,0.141269841,20.000001130469524 +2019-11-16 09:30:00,25.0,0.143386243,20.00000265785932 +2019-11-16 09:45:00,25.0,0.141798942,20.000004828360346 +2019-11-16 10:00:00,25.0,0.158201058,20.000007641972317 +2019-11-16 10:15:00,25.0,0.165608466,20.00001109869487 +2019-11-16 10:30:00,25.0,0.179365079,20.000015198527567 +2019-11-16 10:45:00,25.0,0.213227513,20.000019941469876 +2019-11-16 11:00:00,25.0,0.248148148,20.00002532752119 +2019-11-16 11:15:00,25.0,0.29047619,20.000031356680815 +2019-11-16 11:30:00,25.0,0.316402116,20.00003802894797 +2019-11-16 11:45:00,25.0,0.360846561,20.000045344321805 +2019-11-16 12:00:00,25.0,0.393650794,20.000053302801376 +2019-11-16 12:15:00,25.0,0.407936508,20.00006190438566 +2019-11-16 12:30:00,25.0,0.416931217,20.00007114907355 +2019-11-16 12:45:00,25.0,0.424338624,20.000081036863854 +2019-11-16 13:00:00,25.0,0.433333333,20.000091567755305 +2019-11-16 13:15:00,25.0,0.446031746,20.000102741746545 +2019-11-16 13:30:00,25.0,0.449206349,20.000114558836138 +2019-11-16 13:45:00,25.0,0.447089947,20.000127019022564 +2019-11-16 14:00:00,25.0,0.426984127,20.00014012230422 +2019-11-16 14:15:00,25.0,0.438624339,20.000153868679423 +2019-11-16 14:30:00,25.0,0.471957672,20.000168258146402 +2019-11-16 14:45:00,25.0,0.505820106,20.000183290703312 +2019-11-16 15:00:00,25.0,0.534391534,20.000198966348208 +2019-11-16 15:15:00,25.0,0.532804233,20.000215285079083 +2019-11-16 15:30:00,25.0,0.538624339,20.000232246893837 +2019-11-16 15:45:00,25.0,0.584126984,20.000249851790286 +2019-11-16 16:00:00,25.0,0.634391534,20.000268099766167 +2019-11-16 16:15:00,25.0,0.662433862,20.00028699081913 +2019-11-16 16:30:00,25.0,0.676190476,20.00030652494675 +2019-11-16 16:45:00,25.0,0.681481481,20.000326702146513 +2019-11-16 17:00:00,25.0,0.68042328,20.000347522415822 +2019-11-16 17:15:00,25.0,0.69047619,20.000368985751997 +2019-11-16 17:30:00,25.0,0.702645503,20.000391092152285 +2019-11-16 17:45:00,25.0,0.715873016,20.000413841613835 +2019-11-16 18:00:00,25.0,0.733862434,20.000437234133724 +2019-11-16 18:15:00,25.0,0.753439153,20.000461269708943 +2019-11-16 18:30:00,25.0,0.767195767,20.0004859483364 +2019-11-16 18:45:00,25.0,0.768783069,20.00051127001292 +2019-11-16 19:00:00,25.0,0.778306878,20.000537234735255 +2019-11-16 19:15:00,25.0,0.791005291,20.00056384250005 +2019-11-16 19:30:00,25.0,0.8,20.000591093303893 +2019-11-16 19:45:00,25.0,0.804232804,20.000618987143277 +2019-11-16 20:00:00,25.0,0.806878307,20.00064752401461 +2019-11-16 20:15:00,25.0,0.807936508,20.000676703914227 +2019-11-16 20:30:00,25.0,0.806349206,20.00070652683837 +2019-11-16 20:45:00,25.0,0.805820106,20.00073699278321 +2019-11-16 21:00:00,25.0,0.805820106,20.000768101744825 +2019-11-16 21:15:00,25.0,0.811640212,20.00079985371921 +2019-11-16 21:30:00,25.0,0.814285714,20.000832248702288 +2019-11-16 21:45:00,25.0,0.817989418,20.000865286689887 +2019-11-16 22:00:00,25.0,0.817460317,20.000898967677756 +2019-11-16 22:15:00,25.0,0.814814815,20.000933291661568 +2019-11-16 22:30:00,25.0,0.813756614,20.000968258636902 +2019-11-16 22:45:00,25.0,0.816402116,20.00100386859927 +2019-11-16 23:00:00,25.0,0.814814815,20.001040121544083 +2019-11-16 23:15:00,25.0,0.815343915,20.001077017466685 +2019-11-16 23:30:00,25.0,0.815343915,20.00111455636232 +2019-11-16 23:45:00,25.0,0.814814815,20.00115273822617 +2019-11-17 00:00:00,25.0,0.813227513,20.00119156305332 +2019-11-17 00:15:00,25.0,0.808994709,20.001231030838778 +2019-11-17 00:30:00,25.0,0.808465608,20.001271141577465 +2019-11-17 00:45:00,25.0,0.808465608,20.001311895264223 +2019-11-17 01:00:00,25.0,0.806878307,20.001353291893807 +2019-11-17 01:15:00,25.0,0.799470899,20.0013953314609 +2019-11-17 01:30:00,25.0,0.788888889,20.001438013960087 +2019-11-17 01:45:00,25.0,0.77037037,20.001481339385883 +2019-11-17 02:00:00,25.0,0.757142857,20.001525307732713 +2019-11-17 02:15:00,25.0,0.753968254,20.001569918994925 +2019-11-17 02:30:00,25.0,0.747089947,20.001615173166776 +2019-11-17 02:45:00,25.0,0.744973545,20.00166107024245 +2019-11-17 03:00:00,25.0,0.731746032,20.001707610216037 +2019-11-17 03:15:00,25.0,0.721164021,20.001754793081556 +2019-11-17 03:30:00,25.0,0.715873016,20.00180261883294 +2019-11-17 03:45:00,25.0,0.704761905,20.001851087464033 +2019-11-17 04:00:00,25.0,0.687301587,20.001900198968606 +2019-11-17 04:15:00,25.0,0.676719577,20.001949953340336 +2019-11-17 04:30:00,25.0,0.661375661,20.00200035057283 +2019-11-17 04:45:00,25.0,0.649206349,20.0020513906596 +2019-11-17 05:00:00,25.0,0.65026455,20.002103073594082 +2019-11-17 05:15:00,25.0,0.642328042,20.00215539936963 +2019-11-17 05:30:00,25.0,0.624338624,20.002208367979517 +2019-11-17 05:45:00,25.0,0.612169312,20.002261979416925 +2019-11-17 06:00:00,25.0,0.586772487,20.00231623367496 +2019-11-17 06:15:00,25.0,0.555026455,20.002371130746642 +2019-11-17 06:30:00,25.0,0.532275132,20.002426670624914 +2019-11-17 06:45:00,25.0,0.519047619,20.00248285330263 +2019-11-17 07:00:00,25.0,0.508994709,20.002539678772564 +2019-11-17 07:15:00,25.0,0.460846561,20.002597147027405 +2019-11-17 07:30:00,25.0,0.427513228,20.00265525805976 +2019-11-17 07:45:00,25.0,0.386772487,20.002714011862164 +2019-11-17 08:00:00,25.0,0.358730159,20.00277340842705 +2019-11-17 08:15:00,25.0,0.334920635,20.002833447746784 +2019-11-17 08:30:00,25.0,0.325396825,20.00289412981364 +2019-11-17 08:45:00,25.0,0.326984127,20.002955454619816 +2019-11-17 09:00:00,25.0,0.321693122,20.00301742215742 +2019-11-17 09:15:00,25.0,0.301058201,20.003080032418485 +2019-11-17 09:30:00,25.0,0.291534392,20.003143285394955 +2019-11-17 09:45:00,25.0,0.266137566,20.0032071810787 +2019-11-17 10:00:00,25.0,0.234391534,20.003271719461498 +2019-11-17 10:15:00,25.0,0.214285714,20.003336900535047 +2019-11-17 10:30:00,25.0,0.204761905,20.003402724290964 +2019-11-17 10:45:00,25.0,0.198941799,20.003469190720782 +2019-11-17 11:00:00,25.0,0.196825397,20.003536299815956 +2019-11-17 11:15:00,25.0,0.17989418,20.003604051567848 +2019-11-17 11:30:00,25.0,0.16031746,20.003672445967748 +2019-11-17 11:45:00,25.0,0.141798942,20.003741483006856 +2019-11-17 12:00:00,25.0,0.133333333,20.003811162676293 +2019-11-17 12:15:00,25.0,0.123280423,20.003881484967103 +2019-11-17 12:30:00,25.0,0.107936508,20.00395244987023 +2019-11-17 12:45:00,25.0,0.089417989,20.004024057376554 +2019-11-17 13:00:00,25.0,0.077248677,20.00409630747686 +2019-11-17 13:15:00,25.0,0.066137566,20.00416920016186 +2019-11-17 13:30:00,25.0,0.052910053,20.004242735422174 +2019-11-17 13:45:00,25.0,0.043386243,20.00431691324835 +2019-11-17 14:00:00,25.0,0.039153439,20.00439173363084 +2019-11-17 14:15:00,25.0,0.038624339,20.00446719656002 +2019-11-17 14:30:00,25.0,0.035978836,20.004543302026192 +2019-11-17 14:45:00,25.0,0.034391534,20.004620050019557 +2019-11-17 15:00:00,25.0,0.034920635,20.004697440530254 +2019-11-17 15:15:00,25.0,0.04021164,20.00477547354832 +2019-11-17 15:30:00,25.0,0.047619048,20.00485414906372 +2019-11-17 15:45:00,25.0,0.050793651,20.00493346706634 +2019-11-17 16:00:00,25.0,0.057671958,20.005013427545972 +2019-11-17 16:15:00,25.0,0.060846561,20.005094030492334 +2019-11-17 16:30:00,25.0,0.068253968,20.00517527589506 +2019-11-17 16:45:00,25.0,0.071428571,20.005257163743693 +2019-11-17 17:00:00,25.0,0.073544974,20.00533969402771 +2019-11-17 17:15:00,25.0,0.076719577,20.005422866736488 +2019-11-17 17:30:00,25.0,0.086772487,20.005506681859337 +2019-11-17 17:45:00,25.0,0.099470899,20.00559113938547 +2019-11-17 18:00:00,25.0,0.10952381,20.005676239304023 +2019-11-17 18:15:00,25.0,0.117989418,20.005761981604053 +2019-11-17 18:30:00,25.0,0.120634921,20.005848366274535 +2019-11-17 18:45:00,25.0,0.124867725,20.005935393304355 +2019-11-17 19:00:00,25.0,0.131746032,20.006023062682317 +2019-11-17 19:15:00,25.0,0.134391534,20.006111374397147 +2019-11-17 19:30:00,25.0,0.137037037,20.006200328437487 +2019-11-17 19:45:00,25.0,0.143915344,20.006289924791893 +2019-11-17 20:00:00,25.0,0.152380952,20.006380163448842 +2019-11-17 20:15:00,25.0,0.157671958,20.00647104439673 +2019-11-17 20:30:00,25.0,0.161375661,20.006562567623863 +2019-11-17 20:45:00,25.0,0.172486772,20.00665473311847 +2019-11-17 21:00:00,25.0,0.18042328,20.0067475408687 +2019-11-17 21:15:00,25.0,0.191534392,20.006840990862617 +2019-11-17 21:30:00,25.0,0.2,20.006935083088194 +2019-11-17 21:45:00,25.0,0.213227513,20.007029817533333 +2019-11-17 22:00:00,25.0,0.228571429,20.00712519418585 +2019-11-17 22:15:00,25.0,0.241798942,20.007221213033475 +2019-11-17 22:30:00,25.0,0.253439153,20.007317874063858 +2019-11-17 22:45:00,25.0,0.26984127,20.00741517726457 +2019-11-17 23:00:00,25.0,0.276719577,20.00751312262309 +2019-11-17 23:15:00,25.0,0.283597884,20.007611710126824 +2019-11-17 23:30:00,25.0,0.299470899,20.007710939763093 +2019-11-17 23:45:00,25.0,0.321693122,20.00781081151913 +2019-11-18 00:00:00,25.0,0.348677249,20.007911325382086 +2019-11-18 00:15:00,25.0,0.372486772,20.00801248133904 +2019-11-18 00:30:00,25.0,0.394179894,20.008114279376976 +2019-11-18 00:45:00,25.0,0.428042328,20.008216719482807 +2019-11-18 01:00:00,25.0,0.458201058,20.00831980164335 +2019-11-18 01:15:00,25.0,0.476719577,20.00842352584535 +2019-11-18 01:30:00,25.0,0.515873016,20.008527892075463 +2019-11-18 01:45:00,25.0,0.584126984,20.00863290032027 +2019-11-18 02:00:00,25.0,0.624867725,20.008738550566257 +2019-11-18 02:15:00,25.0,0.637037037,20.008844842799842 +2019-11-18 02:30:00,25.0,0.648148148,20.00895177700735 +2019-11-18 02:45:00,25.0,0.668783069,20.00905935317503 +2019-11-18 03:00:00,25.0,0.67037037,20.00916757128904 +2019-11-18 03:15:00,25.0,0.684126984,20.009276431335465 +2019-11-18 03:30:00,25.0,0.712169312,20.009385933300305 +2019-11-18 03:45:00,25.0,0.725396825,20.00949607716947 +2019-11-18 04:00:00,25.0,0.72962963,20.009606862928795 +2019-11-18 04:15:00,25.0,0.725925926,20.00971829056403 +2019-11-18 04:30:00,25.0,0.738624339,20.009830360060846 +2019-11-18 04:45:00,25.0,0.752910053,20.009943071404827 +2019-11-18 05:00:00,25.0,0.754497354,20.010056424581474 +2019-11-18 05:15:00,25.0,0.753968254,20.010170419576212 +2019-11-18 05:30:00,25.0,0.752910053,20.01028505637437 +2019-11-18 05:45:00,25.0,0.73968254,20.01040033496121 +2019-11-18 06:00:00,25.0,0.744973545,20.010516255321903 +2019-11-18 06:15:00,25.0,0.769312169,20.01063281744154 +2019-11-18 06:30:00,25.0,0.780952381,20.010750021305128 +2019-11-18 06:45:00,25.0,0.782010582,20.010867866897588 +2019-11-18 07:00:00,25.0,0.768783069,20.01098635420377 +2019-11-18 07:15:00,25.0,0.758730159,20.011105483208425 +2019-11-18 07:30:00,25.0,0.753968254,20.01122525389624 +2019-11-18 07:45:00,25.0,0.756613757,20.011345666251803 +2019-11-18 08:00:00,25.0,0.755555556,20.011466720259627 +2019-11-18 08:15:00,25.0,0.748677249,20.011588415904143 +2019-11-18 08:30:00,25.0,0.74021164,20.0117107531697 +2019-11-18 08:45:00,25.0,0.733862434,20.01183373204056 +2019-11-18 09:00:00,25.0,0.726984127,20.011957352500907 +2019-11-18 09:15:00,25.0,0.721164021,20.01208161453484 +2019-11-18 09:30:00,25.0,0.717460317,20.012206518126373 +2019-11-18 09:45:00,25.0,0.704232804,20.012332063259446 +2019-11-18 10:00:00,25.0,0.685185185,20.012458249917906 +2019-11-18 10:15:00,25.0,0.674603175,20.01258507808553 +2019-11-18 10:30:00,25.0,0.658201058,20.012712547745995 +2019-11-18 10:45:00,25.0,0.632804233,20.01284065888291 +2019-11-18 11:00:00,25.0,0.604232804,20.012969411479805 +2019-11-18 11:15:00,25.0,0.572486772,20.01309880552011 +2019-11-18 11:30:00,25.0,0.546560847,20.01322884098718 +2019-11-18 11:45:00,25.0,0.531216931,20.013359517864295 +2019-11-18 12:00:00,25.0,0.529100529,20.013490836134647 +2019-11-18 12:15:00,25.0,0.508994709,20.013622795781345 +2019-11-18 12:30:00,25.0,0.511640212,20.013755396787417 +2019-11-18 12:45:00,25.0,0.528042328,20.013888639135804 +2019-11-18 13:00:00,25.0,0.54973545,20.01402252280937 +2019-11-18 13:15:00,25.0,0.561904762,20.014157047790896 +2019-11-18 13:30:00,25.0,0.567195767,20.014292214063076 +2019-11-18 13:45:00,25.0,0.569312169,20.014428021608527 +2019-11-18 14:00:00,25.0,0.576719577,20.01456447040978 +2019-11-18 14:15:00,25.0,0.582539683,20.01470156044929 +2019-11-18 14:30:00,25.0,0.582539683,20.014839291709414 +2019-11-18 14:45:00,25.0,0.597883598,20.01497766417244 +2019-11-18 15:00:00,25.0,0.605291005,20.01511667782058 +2019-11-18 15:15:00,25.0,0.612169312,20.015256332635943 +2019-11-18 15:30:00,25.0,0.60952381,20.015396628600566 +2019-11-18 15:45:00,25.0,0.602645503,20.01553756569641 +2019-11-18 16:00:00,25.0,0.600529101,20.01567914390534 +2019-11-18 16:15:00,25.0,0.600529101,20.015821363209156 +2019-11-18 16:30:00,25.0,0.604761905,20.015964223589556 +2019-11-18 16:45:00,25.0,0.617989418,20.01610772502817 +2019-11-18 17:00:00,25.0,0.63015873,20.01625186750654 +2019-11-18 17:15:00,25.0,0.640740741,20.016396651006126 +2019-11-18 17:30:00,25.0,0.653439153,20.016542075508305 +2019-11-18 17:45:00,25.0,0.67037037,20.01668814099437 +2019-11-18 18:00:00,25.0,0.691534392,20.016834847445537 +2019-11-18 18:15:00,25.0,0.706878307,20.01698219484293 +2019-11-18 18:30:00,25.0,0.719047619,20.01713018316761 +2019-11-18 18:45:00,25.0,0.72962963,20.01727881240053 +2019-11-18 19:00:00,25.0,0.731216931,20.017428082522578 +2019-11-18 19:15:00,25.0,0.718518519,20.017577993514553 +2019-11-18 19:30:00,25.0,0.711111111,20.017728545357173 +2019-11-18 19:45:00,25.0,0.713756614,20.017879738031077 +2019-11-18 20:00:00,25.0,0.723809524,20.018031571516815 +2019-11-18 20:15:00,25.0,0.746031746,20.018184045794857 +2019-11-18 20:30:00,25.0,0.759259259,20.018337160845597 +2019-11-18 20:45:00,25.0,0.784126984,20.018490916649334 +2019-11-18 21:00:00,25.0,0.797883598,20.018645313186294 +2019-11-18 21:15:00,25.0,0.804761905,20.01880035043662 +2019-11-18 21:30:00,25.0,0.807407407,20.01895602838037 +2019-11-18 21:45:00,25.0,0.807936508,20.019112346997517 +2019-11-18 22:00:00,25.0,0.807407407,20.019269306267958 +2019-11-18 22:15:00,25.0,0.804232804,20.019426906171507 +2019-11-18 22:30:00,25.0,0.8,20.01958514668789 +2019-11-18 22:45:00,25.0,0.779365079,20.019744027796754 +2019-11-18 23:00:00,25.0,0.76031746,20.019903549477664 +2019-11-18 23:15:00,25.0,0.753439153,20.0200637117101 +2019-11-18 23:30:00,25.0,0.746031746,20.020224514473465 +2019-11-18 23:45:00,25.0,0.746560847,20.020385957747074 +2019-11-19 00:00:00,25.0,0.775132275,20.02054804151016 +2019-11-19 00:15:00,25.0,0.792592593,20.020710765741878 +2019-11-19 00:30:00,25.0,0.798412698,20.020874130421298 +2019-11-19 00:45:00,25.0,0.802116402,20.021038135527405 +2019-11-19 01:00:00,25.0,0.803703704,20.021202781039108 +2019-11-19 01:15:00,25.0,0.812169312,20.02136806693523 +2019-11-19 01:30:00,25.0,0.800529101,20.02153399319451 +2019-11-19 01:45:00,25.0,0.782010582,20.0217005597956 +2019-11-19 02:00:00,25.0,0.782539683,20.021867766717087 +2019-11-19 02:15:00,25.0,0.783068783,20.02203561393746 +2019-11-19 02:30:00,25.0,0.783068783,20.02220410143513 +2019-11-19 02:45:00,25.0,0.783597884,20.02237322918842 +2019-11-19 03:00:00,25.0,0.782010582,20.022542997175584 +2019-11-19 03:15:00,25.0,0.782010582,20.022713405374787 +2019-11-19 03:30:00,25.0,0.782010582,20.022884453764103 +2019-11-19 03:45:00,25.0,0.78042328,20.02305614232154 +2019-11-19 04:00:00,25.0,0.78042328,20.023228471025007 +2019-11-19 04:15:00,25.0,0.78042328,20.023401439852343 +2019-11-19 04:30:00,25.0,0.77989418,20.0235750487813 +2019-11-19 04:45:00,25.0,0.780952381,20.023749297789546 +2019-11-19 05:00:00,25.0,0.78042328,20.023924186854675 +2019-11-19 05:15:00,25.0,0.787830688,20.024099715954186 +2019-11-19 05:30:00,25.0,0.796825397,20.024275885065503 +2019-11-19 05:45:00,25.0,0.811640212,20.024452694165966 +2019-11-19 06:00:00,25.0,0.807407407,20.024630143232837 +2019-11-19 06:15:00,25.0,0.807936508,20.024808232243288 +2019-11-19 06:30:00,25.0,0.813227513,20.024986961174417 +2019-11-19 06:45:00,25.0,0.814285714,20.02516633000323 +2019-11-19 07:00:00,25.0,0.812698413,20.025346338706665 +2019-11-19 07:15:00,25.0,0.807936508,20.02552698726156 +2019-11-19 07:30:00,25.0,0.81005291,20.025708275644682 +2019-11-19 07:45:00,25.0,0.806878307,20.025890203832716 +2019-11-19 08:00:00,25.0,0.796825397,20.026072771802262 +2019-11-19 08:15:00,25.0,0.805291005,20.026255979529832 +2019-11-19 08:30:00,25.0,0.802116402,20.02643982699187 +2019-11-19 08:45:00,25.0,0.796825397,20.026624314164717 +2019-11-19 09:00:00,25.0,0.787830688,20.026809441024657 +2019-11-19 09:15:00,25.0,0.717989418,20.02699520754787 +2019-11-19 09:30:00,25.0,0.714814815,20.027181613710464 +2019-11-19 09:45:00,25.0,0.716931217,20.027368659488467 +2019-11-19 10:00:00,25.0,0.681481481,20.027556344857818 +2019-11-19 10:15:00,25.0,0.674074074,20.027744669794373 +2019-11-19 10:30:00,25.0,0.65978836,20.027933634273914 +2019-11-19 10:45:00,25.0,0.642328042,20.028123238272137 +2019-11-19 11:00:00,25.0,0.636507937,20.02831348176465 +2019-11-19 11:15:00,25.0,0.657142857,20.028504364726984 +2019-11-19 11:30:00,25.0,0.652380952,20.02869588713459 +2019-11-19 11:45:00,25.0,0.633862434,20.028888048962834 +2019-11-19 12:00:00,25.0,0.617460317,20.029080850186997 +2019-11-19 12:15:00,25.0,0.595238095,20.029274290782283 +2019-11-19 12:30:00,25.0,0.576190476,20.029468370723805 +2019-11-19 12:45:00,25.0,0.568253968,20.02966308998661 +2019-11-19 13:00:00,25.0,0.593650794,20.029858448545646 +2019-11-19 13:15:00,25.0,0.593650794,20.03005444637579 +2019-11-19 13:30:00,25.0,0.568783069,20.030251083451827 +2019-11-19 13:45:00,25.0,0.564550265,20.03044835974847 +2019-11-19 14:00:00,25.0,0.568253968,20.03064627524034 +2019-11-19 14:15:00,25.0,0.564550265,20.030844829901984 +2019-11-19 14:30:00,25.0,0.546031746,20.031044023707864 +2019-11-19 14:45:00,25.0,0.492592593,20.031243856632358 +2019-11-19 15:00:00,25.0,0.476190476,20.031444328649762 +2019-11-19 15:15:00,25.0,0.507407407,20.03164543973429 +2019-11-19 15:30:00,25.0,0.511111111,20.031847189860077 +2019-11-19 15:45:00,25.0,0.473544974,20.032049579001175 +2019-11-19 16:00:00,25.0,0.435978836,20.032252607131547 +2019-11-19 16:15:00,25.0,0.4,20.032456274225083 +2019-11-19 16:30:00,25.0,0.376190476,20.032660580255587 +2019-11-19 16:45:00,25.0,0.393650794,20.032865525196783 +2019-11-19 17:00:00,25.0,0.405820106,20.033071109022302 +2019-11-19 17:15:00,25.0,0.379365079,20.03327733170571 +2019-11-19 17:30:00,25.0,0.350793651,20.033484193220474 +2019-11-19 17:45:00,25.0,0.331216931,20.033691693539996 +2019-11-19 18:00:00,25.0,0.320634921,20.03389983263758 +2019-11-19 18:15:00,25.0,0.322222222,20.03410861048646 +2019-11-19 18:30:00,25.0,0.310582011,20.034318027059776 +2019-11-19 18:45:00,25.0,0.295767196,20.034528082330596 +2019-11-19 19:00:00,25.0,0.286772487,20.034738776271908 +2019-11-19 19:15:00,25.0,0.28994709,20.0349501088566 +2019-11-19 19:30:00,25.0,0.284126984,20.0351620800575 +2019-11-19 19:45:00,25.0,0.271957672,20.035374689847337 +2019-11-19 20:00:00,25.0,0.25978836,20.03558793819877 +2019-11-19 20:15:00,25.0,0.24021164,20.035801825084366 +2019-11-19 20:30:00,25.0,0.229100529,20.03601635047662 +2019-11-19 20:45:00,25.0,0.214285714,20.036231514347932 +2019-11-19 21:00:00,25.0,0.195238095,20.036447316670632 +2019-11-19 21:15:00,25.0,0.175132275,20.03666375741696 +2019-11-19 21:30:00,25.0,0.169312169,20.036880836559085 +2019-11-19 21:45:00,25.0,0.156613757,20.037098554069075 +2019-11-19 22:00:00,25.0,0.134920635,20.037316909918932 +2019-11-19 22:15:00,25.0,0.12010582,20.037535904080567 +2019-11-19 22:30:00,25.0,0.107407407,20.037755536525818 +2019-11-19 22:45:00,25.0,0.095238095,20.037975807226434 +2019-11-19 23:00:00,25.0,0.086243386,20.03819671615408 +2019-11-19 23:15:00,25.0,0.078306878,20.03841826328034 +2019-11-19 23:30:00,25.0,0.073015873,20.03864044857673 +2019-11-19 23:45:00,25.0,0.060846561,20.03886327201466 +2019-11-20 00:00:00,25.0,0.047619048,20.039086733565476 +2019-11-20 00:15:00,25.0,0.037566138,20.03931083320043 +2019-11-20 00:30:00,25.0,0.032275132,20.039535570890706 +2019-11-20 00:45:00,25.0,0.025396825,20.03976094660739 +2019-11-20 01:00:00,25.0,0.01957672,20.0399869603215 +2019-11-20 01:15:00,25.0,0.017989418,20.04021361200396 +2019-11-20 01:30:00,25.0,0.014814815,20.040440901625622 +2019-11-20 01:45:00,25.0,0.010582011,20.04066882915725 +2019-11-20 02:00:00,25.0,0.005820106,20.040897394569527 +2019-11-20 02:15:00,25.0,0.003174603,20.041126597833056 +2019-11-20 02:30:00,25.0,0.002645503,20.041356438918353 +2019-11-20 02:45:00,25.0,0.001058201,20.041586917795854 +2019-11-20 03:00:00,25.0,0.001058201,20.041818034435924 +2019-11-20 03:15:00,25.0,0.001587302,20.042049788808825 +2019-11-20 03:30:00,25.0,0.001058201,20.042282180884754 +2019-11-20 03:45:00,25.0,0.000529101,20.042515210633823 +2019-11-20 04:00:00,25.0,0.0,20.04274887802605 +2019-11-20 04:15:00,25.0,0.0,20.04298318303139 +2019-11-20 04:30:00,25.0,0.0,20.043218125619696 +2019-11-20 04:45:00,25.0,0.0,20.043453705760758 +2019-11-20 05:00:00,25.0,0.0,20.04368992342427 +2019-11-20 05:15:00,25.0,0.0,20.043926778579852 +2019-11-20 05:30:00,25.0,0.0,20.04416427119704 +2019-11-20 05:45:00,25.0,0.001058201,20.044402401245286 +2019-11-20 06:00:00,25.0,0.002116402,20.044641168693957 +2019-11-20 06:15:00,25.0,0.002645503,20.044880573512348 +2019-11-20 06:30:00,25.0,0.002645503,20.045120615669664 +2019-11-20 06:45:00,25.0,0.004232804,20.045361295135027 +2019-11-20 07:00:00,25.0,0.006878307,20.045602611877484 +2019-11-20 07:15:00,25.0,0.014814815,20.045844565866 +2019-11-20 07:30:00,25.0,0.017989418,20.046087157069447 +2019-11-20 07:45:00,25.0,0.020634921,20.046330385456624 +2019-11-20 08:00:00,25.0,0.024867725,20.04657425099625 +2019-11-20 08:15:00,25.0,0.03015873,20.046818753656957 +2019-11-20 08:30:00,25.0,0.028571429,20.04706389340729 +2019-11-20 08:45:00,25.0,0.028571429,20.047309670215732 +2019-11-20 09:00:00,25.0,0.028042328,20.047556084050655 +2019-11-20 09:15:00,25.0,0.033333333,20.04780313488038 +2019-11-20 09:30:00,25.0,0.041798942,20.04805082267312 +2019-11-20 09:45:00,25.0,0.051851852,20.048299147397017 +2019-11-20 10:00:00,25.0,0.047619048,20.04854810902014 +2019-11-20 10:15:00,25.0,0.050793651,20.048797707510456 +2019-11-20 10:30:00,25.0,0.055555556,20.049047942835866 +2019-11-20 10:45:00,25.0,0.057142857,20.049298814964185 +2019-11-20 11:00:00,25.0,0.056613757,20.049550323863148 +2019-11-20 11:15:00,25.0,0.068253968,20.049802469500396 +2019-11-20 11:30:00,25.0,0.061904762,20.050055251843506 +2019-11-20 11:45:00,25.0,0.057671958,20.050308670859962 +2019-11-20 12:00:00,25.0,0.056084656,20.05056272651717 +2019-11-20 12:15:00,25.0,0.060846561,20.05081741878245 +2019-11-20 12:30:00,25.0,0.058730159,20.051072747623042 +2019-11-20 12:45:00,25.0,0.048677249,20.05132871300611 +2019-11-20 13:00:00,25.0,0.046560847,20.051585314898727 +2019-11-20 13:15:00,25.0,0.046560847,20.05184255326789 +2019-11-20 13:30:00,25.0,0.049206349,20.05210042808051 +2019-11-20 13:45:00,25.0,0.064550265,20.052358939303424 +2019-11-20 14:00:00,25.0,0.058201058,20.052618086903372 +2019-11-20 14:15:00,25.0,0.04973545,20.052877870847034 +2019-11-20 14:30:00,25.0,0.046560847,20.05313829110099 +2019-11-20 14:45:00,25.0,0.046031746,20.05339934763174 +2019-11-20 15:00:00,25.0,0.051851852,20.053661040405714 +2019-11-20 15:15:00,25.0,0.057671958,20.053923369389246 +2019-11-20 15:30:00,25.0,0.057671958,20.054186334548596 +2019-11-20 15:45:00,25.0,0.051322751,20.054449935849945 +2019-11-20 16:00:00,25.0,0.055026455,20.054714173259388 +2019-11-20 16:15:00,25.0,0.055026455,20.054979046742936 +2019-11-20 16:30:00,25.0,0.053968254,20.055244556266516 +2019-11-20 16:45:00,25.0,0.055555556,20.05551070179598 +2019-11-20 17:00:00,25.0,0.054497354,20.0557774832971 +2019-11-20 17:15:00,25.0,0.055555556,20.056044900735557 +2019-11-20 17:30:00,25.0,0.057671958,20.056312954076958 +2019-11-20 17:45:00,25.0,0.067195767,20.056581643286826 +2019-11-20 18:00:00,25.0,0.077777778,20.0568509683306 +2019-11-20 18:15:00,25.0,0.079365079,20.057120929173642 +2019-11-20 18:30:00,25.0,0.087830688,20.05739152578122 +2019-11-20 18:45:00,25.0,0.094708995,20.05766275811854 +2019-11-20 19:00:00,25.0,0.105820106,20.057934626150708 +2019-11-20 19:15:00,25.0,0.113756614,20.058207129842756 +2019-11-20 19:30:00,25.0,0.11957672,20.05848026915964 +2019-11-20 19:45:00,25.0,0.120634921,20.058754044066227 +2019-11-20 20:00:00,25.0,0.120634921,20.059028454527297 +2019-11-20 20:15:00,25.0,0.116931217,20.05930350050756 +2019-11-20 20:30:00,25.0,0.114814815,20.059579181971635 +2019-11-20 20:45:00,25.0,0.104232804,20.05985549888407 +2019-11-20 21:00:00,25.0,0.107407407,20.060132451209316 +2019-11-20 21:15:00,25.0,0.103703704,20.06041003891176 +2019-11-20 21:30:00,25.0,0.096296296,20.06068826195569 +2019-11-20 21:45:00,25.0,0.086243386,20.06096712030532 +2019-11-20 22:00:00,25.0,0.075132275,20.061246613924794 +2019-11-20 22:15:00,25.0,0.069312169,20.06152674277815 +2019-11-20 22:30:00,25.0,0.062433862,20.06180750682936 +2019-11-20 22:45:00,25.0,0.055026455,20.06208890604232 +2019-11-20 23:00:00,25.0,0.052910053,20.062370940380823 +2019-11-20 23:15:00,25.0,0.057142857,20.062653609808603 +2019-11-20 23:30:00,25.0,0.05026455,20.062936914289295 +2019-11-20 23:45:00,25.0,0.04021164,20.06322085378647 +2019-11-21 00:00:00,25.0,0.035449735,20.063505428263596 +2019-11-21 00:15:00,25.0,0.033862434,20.063790637684075 +2019-11-21 00:30:00,25.0,0.031216931,20.064076482011224 +2019-11-21 00:45:00,25.0,0.028571429,20.064362961208275 +2019-11-21 01:00:00,25.0,0.024867725,20.064650075238383 +2019-11-21 01:15:00,25.0,0.02010582,20.064937824064614 +2019-11-21 01:30:00,25.0,0.021164021,20.06522620764996 +2019-11-21 01:45:00,25.0,0.022222222,20.06551522595733 +2019-11-21 02:00:00,25.0,0.022222222,20.065804878949546 +2019-11-21 02:15:00,25.0,0.020634921,20.066095166589356 +2019-11-21 02:30:00,25.0,0.016402116,20.066386088839423 +2019-11-21 02:45:00,25.0,0.016931217,20.066677645662324 +2019-11-21 03:00:00,25.0,0.017989418,20.066969837020558 +2019-11-21 03:15:00,25.0,0.026984127,20.067262662876544 +2019-11-21 03:30:00,25.0,0.023280423,20.06755612319262 +2019-11-21 03:45:00,25.0,0.01957672,20.06785021793104 +2019-11-21 04:00:00,25.0,0.028571429,20.068144947053977 +2019-11-21 04:15:00,25.0,0.039153439,20.06844031052352 +2019-11-21 04:30:00,25.0,0.042857143,20.06873630830168 +2019-11-21 04:45:00,25.0,0.043386243,20.069032940350386 +2019-11-21 05:00:00,25.0,0.047089947,20.069330206631484 +2019-11-21 05:15:00,25.0,0.050793651,20.069628107106738 +2019-11-21 05:30:00,25.0,0.048677249,20.06992664173783 +2019-11-21 05:45:00,25.0,0.061375661,20.070225810486363 +2019-11-21 06:00:00,25.0,0.082539683,20.070525613313862 +2019-11-21 06:15:00,25.0,0.098412698,20.070826050181758 +2019-11-21 06:30:00,25.0,0.104761905,20.07112712105141 +2019-11-21 06:45:00,25.0,0.106349206,20.071428825884098 +2019-11-21 07:00:00,25.0,0.117460317,20.071731164641015 +2019-11-21 07:15:00,25.0,0.125396825,20.072034137283268 +2019-11-21 07:30:00,25.0,0.141798942,20.072337743771893 +2019-11-21 07:45:00,25.0,0.159259259,20.07264198406784 +2019-11-21 08:00:00,25.0,0.177777778,20.072946858131974 +2019-11-21 08:15:00,25.0,0.201058201,20.07325236592508 +2019-11-21 08:30:00,25.0,0.233333333,20.073558507407867 +2019-11-21 08:45:00,25.0,0.256613757,20.073865282540957 +2019-11-21 09:00:00,25.0,0.268783069,20.074172691284893 +2019-11-21 09:15:00,25.0,0.284126984,20.074480733600133 +2019-11-21 09:30:00,25.0,0.270899471,20.074789409447057 +2019-11-21 09:45:00,25.0,0.244973545,20.07509871878596 +2019-11-21 10:00:00,25.0,0.241269841,20.07540866157706 +2019-11-21 10:15:00,25.0,0.243915344,20.075719237780493 +2019-11-21 10:30:00,25.0,0.240740741,20.07603044735631 +2019-11-21 10:45:00,25.0,0.258730159,20.076342290264485 +2019-11-21 11:00:00,25.0,0.27037037,20.076654766464905 +2019-11-21 11:15:00,25.0,0.267195767,20.076967875917376 +2019-11-21 11:30:00,25.0,0.280952381,20.077281618581633 +2019-11-21 11:45:00,25.0,0.284656085,20.077595994417315 +2019-11-21 12:00:00,25.0,0.258730159,20.077911003383992 +2019-11-21 12:15:00,25.0,0.26031746,20.07822664544114 +2019-11-21 12:30:00,25.0,0.278835979,20.078542920548166 +2019-11-21 12:45:00,25.0,0.301058201,20.07885982866439 +2019-11-21 13:00:00,25.0,0.333333333,20.079177369749043 +2019-11-21 13:15:00,25.0,0.362962963,20.07949554376129 +2019-11-21 13:30:00,25.0,0.365608466,20.079814350660207 +2019-11-21 13:45:00,25.0,0.351322751,20.080133790404783 +2019-11-21 14:00:00,25.0,0.341798942,20.080453862953934 +2019-11-21 14:15:00,25.0,0.343386243,20.08077456826649 +2019-11-21 14:30:00,25.0,0.356613757,20.081095906301204 +2019-11-21 14:45:00,25.0,0.366137566,20.08141787701674 +2019-11-21 15:00:00,25.0,0.374074074,20.081740480371693 +2019-11-21 15:15:00,25.0,0.385185185,20.082063716324562 +2019-11-21 15:30:00,25.0,0.401587302,20.082387584833775 +2019-11-21 15:45:00,25.0,0.405291005,20.082712085857672 +2019-11-21 16:00:00,25.0,0.417460317,20.083037219354516 +2019-11-21 16:15:00,25.0,0.431746032,20.08336298528249 +2019-11-21 16:30:00,25.0,0.436507937,20.083689383599697 +2019-11-21 16:45:00,25.0,0.449206349,20.084016414264145 +2019-11-21 17:00:00,25.0,0.465608466,20.084344077233776 +2019-11-21 17:15:00,25.0,0.482010582,20.084672372466443 +2019-11-21 17:30:00,25.0,0.497354497,20.085001299919927 +2019-11-21 17:45:00,25.0,0.508465608,20.08533085955191 +2019-11-21 18:00:00,25.0,0.50952381,20.08566105132001 +2019-11-21 18:15:00,25.0,0.505291005,20.085991875181758 +2019-11-21 18:30:00,25.0,0.503703704,20.086323331094597 +2019-11-21 18:45:00,25.0,0.517989418,20.086655419015898 +2019-11-21 19:00:00,25.0,0.517989418,20.08698813890295 +2019-11-21 19:15:00,25.0,0.507936508,20.087321490712952 +2019-11-21 19:30:00,25.0,0.506878307,20.08765547440303 +2019-11-21 19:45:00,25.0,0.497883598,20.087990089930223 +2019-11-21 20:00:00,25.0,0.487830688,20.088325337251497 +2019-11-21 20:15:00,25.0,0.478835979,20.08866121632373 +2019-11-21 20:30:00,25.0,0.477777778,20.088997727103724 +2019-11-21 20:45:00,25.0,0.466137566,20.08933486954819 +2019-11-21 21:00:00,25.0,0.452380952,20.089672643613763 +2019-11-21 21:15:00,25.0,0.446031746,20.090011049257004 +2019-11-21 21:30:00,25.0,0.448677249,20.090350086434384 +2019-11-21 21:45:00,25.0,0.443915344,20.090689755102296 +2019-11-21 22:00:00,25.0,0.437566138,20.091030055217047 +2019-11-21 22:15:00,25.0,0.431746032,20.09137098673487 +2019-11-21 22:30:00,25.0,0.430687831,20.091712549611916 +2019-11-21 22:45:00,25.0,0.411111111,20.092054743804248 +2019-11-21 23:00:00,25.0,0.402116402,20.092397569267852 +2019-11-21 23:15:00,25.0,0.385714286,20.092741025958638 +2019-11-21 23:30:00,25.0,0.367195767,20.093085113832426 +2019-11-21 23:45:00,25.0,0.34973545,20.093429832844958 +2019-11-22 00:00:00,25.0,0.342328042,20.093775182951898 +2019-11-22 00:15:00,25.0,0.34021164,20.094121164108827 +2019-11-22 00:30:00,25.0,0.34021164,20.09446777627124 +2019-11-22 00:45:00,25.0,0.346031746,20.094815019394556 +2019-11-22 01:00:00,25.0,0.338095238,20.095162893434114 +2019-11-22 01:15:00,25.0,0.331746032,20.09551139834517 +2019-11-22 01:30:00,25.0,0.327513228,20.095860534082895 +2019-11-22 01:45:00,25.0,0.331216931,20.096210300602387 +2019-11-22 02:00:00,25.0,0.329100529,20.096560697858653 +2019-11-22 02:15:00,25.0,0.322751323,20.096911725806628 +2019-11-22 02:30:00,25.0,0.313227513,20.09726338440116 +2019-11-22 02:45:00,25.0,0.305291005,20.09761567359702 +2019-11-22 03:00:00,25.0,0.296825397,20.09796859334889 +2019-11-22 03:15:00,25.0,0.287830688,20.098322143611384 +2019-11-22 03:30:00,25.0,0.282010582,20.098676324339024 +2019-11-22 03:45:00,25.0,0.276190476,20.099031135486257 +2019-11-22 04:00:00,25.0,0.267195767,20.09938657700744 +2019-11-22 04:15:00,25.0,0.260846561,20.099742648856864 +2019-11-22 04:30:00,25.0,0.265079365,20.100099350988724 +2019-11-22 04:45:00,25.0,0.27037037,20.100456683357145 +2019-11-22 05:00:00,25.0,0.268253968,20.100814645916156 +2019-11-22 05:15:00,25.0,0.273544974,20.101173238619726 +2019-11-22 05:30:00,25.0,0.284656085,20.10153246142173 +2019-11-22 05:45:00,25.0,0.292063492,20.101892314275958 +2019-11-22 06:00:00,25.0,0.298941799,20.10225279713613 +2019-11-22 06:15:00,25.0,0.295238095,20.10261390995588 +2019-11-22 06:30:00,25.0,0.311640212,20.102975652688762 +2019-11-22 06:45:00,25.0,0.324338624,20.103338025288238 +2019-11-22 07:00:00,25.0,0.33015873,20.103701027707714 +2019-11-22 07:15:00,25.0,0.337566138,20.104064659900487 +2019-11-22 07:30:00,25.0,0.32010582,20.104428921819792 +2019-11-22 07:45:00,25.0,0.32010582,20.104793813418777 +2019-11-22 08:00:00,25.0,0.33968254,20.105159334650505 +2019-11-22 08:15:00,25.0,0.37037037,20.105525485467965 +2019-11-22 08:30:00,25.0,0.379365079,20.10589226582406 +2019-11-22 08:45:00,25.0,0.373544974,20.106259675671616 +2019-11-22 09:00:00,25.0,0.411640212,20.106627714963377 +2019-11-22 09:15:00,25.0,0.437566138,20.106996383652 +2019-11-22 09:30:00,25.0,0.403703704,20.10736568169007 +2019-11-22 09:45:00,25.0,0.365608466,20.107735609030087 +2019-11-22 10:00:00,25.0,0.382010582,20.108106165624463 +2019-11-22 10:15:00,25.0,0.381481481,20.108477351425545 +2019-11-22 10:30:00,25.0,0.375132275,20.10884916638559 +2019-11-22 10:45:00,25.0,0.364021164,20.109221610456768 +2019-11-22 11:00:00,25.0,0.357671958,20.109594683591176 +2019-11-22 11:15:00,25.0,0.393121693,20.109968385740835 +2019-11-22 11:30:00,25.0,0.423280423,20.110342716857673 +2019-11-22 11:45:00,25.0,0.425396825,20.110717676893543 +2019-11-22 12:00:00,25.0,0.438095238,20.111093265800214 +2019-11-22 12:15:00,25.0,0.434920635,20.111469483529383 +2019-11-22 12:30:00,25.0,0.406878307,20.11184633003266 +2019-11-22 12:45:00,25.0,0.393650794,20.112223805261568 +2019-11-22 13:00:00,25.0,0.405291005,20.11260190916756 +2019-11-22 13:15:00,25.0,0.374074074,20.112980641702002 +2019-11-22 13:30:00,25.0,0.308994709,20.11336000281618 +2019-11-22 13:45:00,25.0,0.303174603,20.113739992461298 +2019-11-22 14:00:00,25.0,0.286243386,20.114120610588486 +2019-11-22 14:15:00,25.0,0.273544974,20.11450185714878 +2019-11-22 14:30:00,25.0,0.261375661,20.114883732093155 +2019-11-22 14:45:00,25.0,0.270899471,20.115266235372484 +2019-11-22 15:00:00,25.0,0.281481481,20.11564936693757 +2019-11-22 15:15:00,25.0,0.295767196,20.11603312673914 +2019-11-22 15:30:00,25.0,0.294708995,20.11641751472782 +2019-11-22 15:45:00,25.0,0.300529101,20.116802530854184 +2019-11-22 16:00:00,25.0,0.321693122,20.117188175068705 +2019-11-22 16:15:00,25.0,0.337037037,20.117574447321775 +2019-11-22 16:30:00,25.0,0.351851852,20.11796134756372 +2019-11-22 16:45:00,25.0,0.385714286,20.118348875744772 +2019-11-22 17:00:00,25.0,0.417989418,20.118737031815083 +2019-11-22 17:15:00,25.0,0.425396825,20.11912581572473 +2019-11-22 17:30:00,25.0,0.426455026,20.11951522742371 +2019-11-22 17:45:00,25.0,0.422222222,20.11990526686193 +2019-11-22 18:00:00,25.0,0.428042328,20.120295933989226 +2019-11-22 18:15:00,25.0,0.423280423,20.12068722875535 +2019-11-22 18:30:00,25.0,0.398941799,20.121079151109974 +2019-11-22 18:45:00,25.0,0.387830688,20.121471701002683 +2019-11-22 19:00:00,25.0,0.367195767,20.121864878382986 +2019-11-22 19:15:00,25.0,0.36031746,20.122258683200315 +2019-11-22 19:30:00,25.0,0.36031746,20.12265311540402 +2019-11-22 19:45:00,25.0,0.375661376,20.123048174943364 +2019-11-22 20:00:00,25.0,0.408994709,20.123443861767534 +2019-11-22 20:15:00,25.0,0.41957672,20.12384017582564 +2019-11-22 20:30:00,25.0,0.41957672,20.124237117066706 +2019-11-22 20:45:00,25.0,0.413227513,20.124634685439666 +2019-11-22 21:00:00,25.0,0.438624339,20.1250328808934 +2019-11-22 21:15:00,25.0,0.472486772,20.125431703376684 +2019-11-22 21:30:00,25.0,0.476190476,20.125831152838217 +2019-11-22 21:45:00,25.0,0.497883598,20.126231229226626 +2019-11-22 22:00:00,25.0,0.503703704,20.126631932490447 +2019-11-22 22:15:00,25.0,0.50952381,20.127033262578145 +2019-11-22 22:30:00,25.0,0.51005291,20.127435219438098 +2019-11-22 22:45:00,25.0,0.489417989,20.12783780301861 +2019-11-22 23:00:00,25.0,0.493650794,20.128241013267896 +2019-11-22 23:15:00,25.0,0.495767196,20.12864485013409 +2019-11-22 23:30:00,25.0,0.485714286,20.129049313565258 +2019-11-22 23:45:00,25.0,0.494708995,20.12945440350937 +2019-11-23 00:00:00,25.0,0.487830688,20.129860119914326 +2019-11-23 00:15:00,25.0,0.494708995,20.130266462727942 +2019-11-23 00:30:00,25.0,0.498941799,20.130673431897954 +2019-11-23 00:45:00,25.0,0.539153439,20.131081027372012 +2019-11-23 01:00:00,25.0,0.55978836,20.13148924909769 +2019-11-23 01:15:00,25.0,0.592063492,20.13189809702249 +2019-11-23 01:30:00,25.0,0.608994709,20.13230757109382 +2019-11-23 01:45:00,25.0,0.637566138,20.132717671259005 +2019-11-23 02:00:00,25.0,0.664550265,20.13312839746531 +2019-11-23 02:15:00,25.0,0.691534392,20.1335397496599 +2019-11-23 02:30:00,25.0,0.695767196,20.133951727789867 +2019-11-23 02:45:00,25.0,0.710582011,20.134364331802217 +2019-11-23 03:00:00,25.0,0.722222222,20.13477756164389 +2019-11-23 03:15:00,25.0,0.735978836,20.135191417261726 +2019-11-23 03:30:00,25.0,0.738095238,20.135605898602496 +2019-11-23 03:45:00,25.0,0.736507937,20.13602100561289 +2019-11-23 04:00:00,25.0,0.747619048,20.136436738239517 +2019-11-23 04:15:00,25.0,0.755555556,20.136853096428904 +2019-11-23 04:30:00,25.0,0.754497354,20.137270080127493 +2019-11-23 04:45:00,25.0,0.755555556,20.13768768928166 +2019-11-23 05:00:00,25.0,0.756613757,20.138105923837685 +2019-11-23 05:15:00,25.0,0.756613757,20.138524783741772 +2019-11-23 05:30:00,25.0,0.762433862,20.13894426894005 +2019-11-23 05:45:00,25.0,0.769312169,20.139364379378563 +2019-11-23 06:00:00,25.0,0.774074074,20.139785115003274 +2019-11-23 06:15:00,25.0,0.773544974,20.140206475760067 +2019-11-23 06:30:00,25.0,0.776719577,20.14062846159475 +2019-11-23 06:45:00,25.0,0.785185185,20.141051072453042 +2019-11-23 07:00:00,25.0,0.786243386,20.141474308280586 +2019-11-23 07:15:00,25.0,0.791534392,20.141898169022944 +2019-11-23 07:30:00,25.0,0.793650794,20.142322654625602 +2019-11-23 07:45:00,25.0,0.792063492,20.14274776503396 +2019-11-23 08:00:00,25.0,0.795767196,20.143173500193335 +2019-11-23 08:15:00,25.0,0.795767196,20.143599860048973 +2019-11-23 08:30:00,25.0,0.800529101,20.144026844546033 +2019-11-23 08:45:00,25.0,0.8,20.144454453629592 +2019-11-23 09:00:00,25.0,0.797354497,20.144882687244657 +2019-11-23 09:15:00,25.0,0.796296296,20.145311545336142 +2019-11-23 09:30:00,25.0,0.795238095,20.14574102784889 +2019-11-23 09:45:00,25.0,0.793650794,20.146171134727652 +2019-11-23 10:00:00,25.0,0.793121693,20.146601865917116 +2019-11-23 10:15:00,25.0,0.794708995,20.14703322136188 +2019-11-23 10:30:00,25.0,0.792592593,20.147465201006455 +2019-11-23 10:45:00,25.0,0.791534392,20.14789780479528 +2019-11-23 11:00:00,25.0,0.791534392,20.148331032672722 +2019-11-23 11:15:00,25.0,0.793121693,20.14876488458305 +2019-11-23 11:30:00,25.0,0.792592593,20.14919936047046 +2019-11-23 11:45:00,25.0,0.792063492,20.14963446027907 +2019-11-23 12:00:00,25.0,0.792063492,20.15007018395292 +2019-11-23 12:15:00,25.0,0.792063492,20.150506531435962 +2019-11-23 12:30:00,25.0,0.793121693,20.150943502672078 +2019-11-23 12:45:00,25.0,0.786243386,20.151381097605057 +2019-11-23 13:00:00,25.0,0.788359788,20.151819316178617 +2019-11-23 13:15:00,25.0,0.792592593,20.15225815833639 +2019-11-23 13:30:00,25.0,0.792063492,20.15269762402194 +2019-11-23 13:45:00,25.0,0.793650794,20.153137713178733 +2019-11-23 14:00:00,25.0,0.796296296,20.15357842575017 +2019-11-23 14:15:00,25.0,0.792063492,20.154019761679557 +2019-11-23 14:30:00,25.0,0.787830688,20.15446172091014 +2019-11-23 14:45:00,25.0,0.793121693,20.154904303385067 +2019-11-23 15:00:00,25.0,0.793121693,20.155347509047406 +2019-11-23 15:15:00,25.0,0.796296296,20.155791337840164 +2019-11-23 15:30:00,25.0,0.797883598,20.156235789706244 +2019-11-23 15:45:00,25.0,0.801058201,20.15668086458848 +2019-11-23 16:00:00,25.0,0.804232804,20.157126562429635 +2019-11-23 16:15:00,25.0,0.806878307,20.157572883172374 +2019-11-23 16:30:00,25.0,0.805291005,20.15801982675929 +2019-11-23 16:45:00,25.0,0.805291005,20.158467393132902 +2019-11-23 17:00:00,25.0,0.805291005,20.158915582235636 +2019-11-23 17:15:00,25.0,0.806878307,20.159364394009852 +2019-11-23 17:30:00,25.0,0.804232804,20.159813828397816 +2019-11-23 17:45:00,25.0,0.798412698,20.160263885341724 +2019-11-23 18:00:00,25.0,0.796825397,20.16071456478369 +2019-11-23 18:15:00,25.0,0.798412698,20.161165866665744 +2019-11-23 18:30:00,25.0,0.806349206,20.16161779092984 +2019-11-23 18:45:00,25.0,0.808465608,20.162070337517846 +2019-11-23 19:00:00,25.0,0.807936508,20.162523506371564 +2019-11-23 19:15:00,25.0,0.805820106,20.162977297432697 +2019-11-23 19:30:00,25.0,0.802116402,20.163431710642882 +2019-11-23 19:45:00,25.0,0.838624339,20.16388674594367 +2019-11-23 20:00:00,25.0,0.858201058,20.164342403276535 +2019-11-23 20:15:00,25.0,0.861904762,20.164798682582866 +2019-11-23 20:30:00,25.0,0.85978836,20.16525558380398 +2019-11-23 20:45:00,25.0,0.852910053,20.165713106881107 +2019-11-23 21:00:00,25.0,0.854497354,20.166171251755394 +2019-11-23 21:15:00,25.0,0.857671958,20.16663001836792 +2019-11-23 21:30:00,25.0,0.862962963,20.167089406659677 +2019-11-23 21:45:00,25.0,0.865608466,20.167549416571575 +2019-11-23 22:00:00,25.0,0.865608466,20.168010048044447 +2019-11-23 22:15:00,25.0,0.865608466,20.168471301019046 +2019-11-23 22:30:00,25.0,0.871428571,20.16893317543605 +2019-11-23 22:45:00,25.0,0.871957672,20.16939567123604 +2019-11-23 23:00:00,25.0,0.873015873,20.169858788359534 +2019-11-23 23:15:00,25.0,0.86984127,20.17032252674697 +2019-11-23 23:30:00,25.0,0.865608466,20.170786886338693 +2019-11-23 23:45:00,25.0,0.865608466,20.171251867074982 +2019-11-24 00:00:00,25.0,0.868253968,20.171717468896027 +2019-11-24 00:15:00,25.0,0.875132275,20.172183691741942 +2019-11-24 00:30:00,25.0,0.876190476,20.17265053555276 +2019-11-24 00:45:00,25.0,0.875661376,20.173118000268435 +2019-11-24 01:00:00,25.0,0.873015873,20.17358608582884 +2019-11-24 01:15:00,25.0,0.872486772,20.17405479217377 +2019-11-24 01:30:00,25.0,0.873015873,20.174524119242935 +2019-11-24 01:45:00,25.0,0.875132275,20.174994066975977 +2019-11-24 02:00:00,25.0,0.874603175,20.175464635312444 +2019-11-24 02:15:00,25.0,0.876719577,20.175935824191807 +2019-11-24 02:30:00,25.0,0.877248677,20.17640763355347 +2019-11-24 02:45:00,25.0,0.873015873,20.176880063336743 +2019-11-24 03:00:00,25.0,0.868253968,20.17735311348086 +2019-11-24 03:15:00,25.0,0.870899471,20.177826783924974 +2019-11-24 03:30:00,25.0,0.87989418,20.178301074608168 +2019-11-24 03:45:00,25.0,0.882010582,20.178775985469436 +2019-11-24 04:00:00,25.0,0.88042328,20.179251516447685 +2019-11-24 04:15:00,25.0,0.879365079,20.179727667481757 +2019-11-24 04:30:00,25.0,0.875132275,20.180204438510415 +2019-11-24 04:45:00,25.0,0.871957672,20.18068182947232 +2019-11-24 05:00:00,25.0,0.868783069,20.181159840306087 +2019-11-24 05:15:00,25.0,0.866137566,20.181638470950222 +2019-11-24 05:30:00,25.0,0.862433862,20.182117721343165 +2019-11-24 05:45:00,25.0,0.855555556,20.182597591423267 +2019-11-24 06:00:00,25.0,0.848148148,20.18307808112882 +2019-11-24 06:15:00,25.0,0.848148148,20.183559190398014 +2019-11-24 06:30:00,25.0,0.850793651,20.184040919168964 +2019-11-24 06:45:00,25.0,0.850793651,20.184523267379717 +2019-11-24 07:00:00,25.0,0.851322751,20.185006234968228 +2019-11-24 07:15:00,25.0,0.844444444,20.185489821872373 +2019-11-24 07:30:00,25.0,0.835449735,20.18597402802996 +2019-11-24 07:45:00,25.0,0.828042328,20.186458853378703 +2019-11-24 08:00:00,25.0,0.821693122,20.18694429785625 +2019-11-24 08:15:00,25.0,0.816402116,20.18743036140015 +2019-11-24 08:30:00,25.0,0.807936508,20.1879170439479 +2019-11-24 08:45:00,25.0,0.797354497,20.188404345436886 +2019-11-24 09:00:00,25.0,0.786772487,20.188892265804437 +2019-11-24 09:15:00,25.0,0.773544974,20.1893808049878 +2019-11-24 09:30:00,25.0,0.768783069,20.18986996292413 +2019-11-24 09:45:00,25.0,0.757142857,20.190359739550516 +2019-11-24 10:00:00,25.0,0.741269841,20.19085013480396 +2019-11-24 10:15:00,25.0,0.714814815,20.191341148621383 +2019-11-24 10:30:00,25.0,0.694708995,20.191832780939638 +2019-11-24 10:45:00,25.0,0.685185185,20.192325031695482 +2019-11-24 11:00:00,25.0,0.657671958,20.192817900825602 +2019-11-24 11:15:00,25.0,0.638624339,20.19331138826661 +2019-11-24 11:30:00,25.0,0.617460317,20.193805493955026 +2019-11-24 11:45:00,25.0,0.6,20.194300217827298 +2019-11-24 12:00:00,25.0,0.585714286,20.194795559819795 +2019-11-24 12:15:00,25.0,0.575132275,20.195291519868807 +2019-11-24 12:30:00,25.0,0.557671958,20.195788097910537 +2019-11-24 12:45:00,25.0,0.552380952,20.196285293881118 +2019-11-24 13:00:00,25.0,0.54973545,20.1967831077166 +2019-11-24 13:15:00,25.0,0.544444444,20.19728153935295 +2019-11-24 13:30:00,25.0,0.540740741,20.197780588726054 +2019-11-24 13:45:00,25.0,0.538095238,20.19828025577174 +2019-11-24 14:00:00,25.0,0.523809524,20.198780540425723 +2019-11-24 14:15:00,25.0,0.50952381,20.199281442623658 +2019-11-24 14:30:00,25.0,0.510582011,20.199782962301125 +2019-11-24 14:45:00,25.0,0.49047619,20.200285099393614 +2019-11-24 15:00:00,25.0,0.473015873,20.200787853836538 +2019-11-24 15:15:00,25.0,0.468253968,20.201291225565228 +2019-11-24 15:30:00,25.0,0.465608466,20.201795214514945 +2019-11-24 15:45:00,25.0,0.454497354,20.202299820620865 +2019-11-24 16:00:00,25.0,0.444973545,20.20280504381808 +2019-11-24 16:15:00,25.0,0.440740741,20.20331088404161 +2019-11-24 16:30:00,25.0,0.437566138,20.20381734122639 +2019-11-24 16:45:00,25.0,0.452910053,20.204324415307283 +2019-11-24 17:00:00,25.0,0.45026455,20.20483210621906 +2019-11-24 17:15:00,25.0,0.441798942,20.205340413896433 +2019-11-24 17:30:00,25.0,0.425925926,20.20584933827401 +2019-11-24 17:45:00,25.0,0.417460317,20.206358879286338 +2019-11-24 18:00:00,25.0,0.406878307,20.20686903686788 +2019-11-24 18:15:00,25.0,0.392592593,20.20737981095301 +2019-11-24 18:30:00,25.0,0.392063492,20.20789120147604 +2019-11-24 18:45:00,25.0,0.385185185,20.20840320837119 +2019-11-24 19:00:00,25.0,0.353968254,20.208915831572607 +2019-11-24 19:15:00,25.0,0.334391534,20.209429071014355 +2019-11-24 19:30:00,25.0,0.307407407,20.20994292663042 +2019-11-24 19:45:00,25.0,0.284126984,20.210457398354706 +2019-11-24 20:00:00,25.0,0.270899471,20.210972486121044 +2019-11-24 20:15:00,25.0,0.250793651,20.21148818986318 +2019-11-24 20:30:00,25.0,0.240740741,20.212004509514777 +2019-11-24 20:45:00,25.0,0.223809524,20.21252144500944 +2019-11-24 21:00:00,25.0,0.221164021,20.21303899628067 +2019-11-24 21:15:00,25.0,0.219047619,20.213557163261896 +2019-11-24 21:30:00,25.0,0.218518519,20.214075945886478 +2019-11-24 21:45:00,25.0,0.204232804,20.214595344087684 +2019-11-24 22:00:00,25.0,0.186772487,20.21511535779871 +2019-11-24 22:15:00,25.0,0.184126984,20.215635986952663 +2019-11-24 22:30:00,25.0,0.185185185,20.216157231482587 +2019-11-24 22:45:00,25.0,0.181481481,20.21667909132144 +2019-11-24 23:00:00,25.0,0.16984127,20.21720156640209 +2019-11-24 23:15:00,25.0,0.161904762,20.21772465665734 +2019-11-24 23:30:00,25.0,0.15978836,20.21824836201991 +2019-11-24 23:45:00,25.0,0.147619048,20.21877268242244 +2019-11-25 00:00:00,25.0,0.14021164,20.219297617797487 +2019-11-25 00:15:00,25.0,0.131746032,20.21982316807754 +2019-11-25 00:30:00,25.0,0.12962963,20.220349333194992 +2019-11-25 00:45:00,25.0,0.123280423,20.22087611308217 +2019-11-25 01:00:00,25.0,0.116931217,20.221403507671326 +2019-11-25 01:15:00,25.0,0.114285714,20.221931516894614 +2019-11-25 01:30:00,25.0,0.108465608,20.222460140684127 +2019-11-25 01:45:00,25.0,0.100529101,20.222989378971867 +2019-11-25 02:00:00,25.0,0.092592593,20.223519231689767 +2019-11-25 02:15:00,25.0,0.085714286,20.224049698769676 +2019-11-25 02:30:00,25.0,0.082539683,20.224580780143356 +2019-11-25 02:45:00,25.0,0.084656085,20.225112475742513 +2019-11-25 03:00:00,25.0,0.080952381,20.225644785498744 +2019-11-25 03:15:00,25.0,0.078306878,20.226177709343595 +2019-11-25 03:30:00,25.0,0.078835979,20.226711247208506 +2019-11-25 03:45:00,25.0,0.077777778,20.227245399024866 +2019-11-25 04:00:00,25.0,0.078835979,20.227780164723963 +2019-11-25 04:15:00,25.0,0.082010582,20.228315544237017 +2019-11-25 04:30:00,25.0,0.085714286,20.228851537495164 +2019-11-25 04:45:00,25.0,0.086243386,20.229388144429468 +2019-11-25 05:00:00,25.0,0.092063492,20.229925364970903 +2019-11-25 05:15:00,25.0,0.101587302,20.230463199050373 +2019-11-25 05:30:00,25.0,0.105291005,20.231001646598706 +2019-11-25 05:45:00,25.0,0.1,20.231540707546635 +2019-11-25 06:00:00,25.0,0.103703704,20.232080381824833 +2019-11-25 06:15:00,25.0,0.103703704,20.232620669363882 +2019-11-25 06:30:00,25.0,0.103703704,20.233161570094296 +2019-11-25 06:45:00,25.0,0.108465608,20.23370308394649 +2019-11-25 07:00:00,25.0,0.108465608,20.234245210850826 +2019-11-25 07:15:00,25.0,0.111640212,20.23478795073757 +2019-11-25 07:30:00,25.0,0.111111111,20.23533130353691 +2019-11-25 07:45:00,25.0,0.100529101,20.23587526917896 +2019-11-25 08:00:00,25.0,0.089417989,20.236419847593755 +2019-11-25 08:15:00,25.0,0.082010582,20.236965038711254 +2019-11-25 08:30:00,25.0,0.07989418,20.237510842461326 +2019-11-25 08:45:00,25.0,0.076190476,20.23805725877377 +2019-11-25 09:00:00,25.0,0.081481481,20.238604287578312 +2019-11-25 09:15:00,25.0,0.082539683,20.23915192880459 +2019-11-25 09:30:00,25.0,0.082539683,20.23970018238215 +2019-11-25 09:45:00,25.0,0.085714286,20.240249048240493 +2019-11-25 10:00:00,25.0,0.084126984,20.240798526309014 +2019-11-25 10:15:00,25.0,0.082539683,20.24134861651704 +2019-11-25 10:30:00,25.0,0.075661376,20.24189931879382 +2019-11-25 10:45:00,25.0,0.073544974,20.242450633068515 +2019-11-25 11:00:00,25.0,0.072486772,20.243002559270217 +2019-11-25 11:15:00,25.0,0.071957672,20.243555097327935 +2019-11-25 11:30:00,25.0,0.073544974,20.2441082471706 +2019-11-25 11:45:00,25.0,0.075132275,20.24466200872707 +2019-11-25 12:00:00,25.0,0.070899471,20.245216381926106 +2019-11-25 12:15:00,25.0,0.070899471,20.245771366696417 +2019-11-25 12:30:00,25.0,0.071428571,20.246326962966616 +2019-11-25 12:45:00,25.0,0.070899471,20.24688317066524 +2019-11-25 13:00:00,25.0,0.069312169,20.24743998972074 +2019-11-25 13:15:00,25.0,0.072486772,20.24799742006151 +2019-11-25 13:30:00,25.0,0.073544974,20.248555461615847 +2019-11-25 13:45:00,25.0,0.066666667,20.24911411431197 +2019-11-25 14:00:00,25.0,0.063492063,20.24967337807803 +2019-11-25 14:15:00,25.0,0.059259259,20.25023325284209 +2019-11-25 14:30:00,25.0,0.059259259,20.25079373853214 +2019-11-25 14:45:00,25.0,0.057671958,20.25135483507608 +2019-11-25 15:00:00,25.0,0.052380952,20.25191654240175 +2019-11-25 15:15:00,25.0,0.053968254,20.252478860436906 +2019-11-25 15:30:00,25.0,0.055555556,20.253041789109208 +2019-11-25 15:45:00,25.0,0.057671958,20.25360532834626 +2019-11-25 16:00:00,25.0,0.05978836,20.25416947807558 +2019-11-25 16:15:00,25.0,0.05978836,20.2547342382246 +2019-11-25 16:30:00,25.0,0.062433862,20.255299608720676 +2019-11-25 16:45:00,25.0,0.06984127,20.255865589491098 +2019-11-25 17:00:00,25.0,0.077777778,20.25643218046306 +2019-11-25 17:15:00,25.0,0.087830688,20.256999381563695 +2019-11-25 17:30:00,25.0,0.088888889,20.25756719272004 +2019-11-25 17:45:00,25.0,0.087301587,20.258135613859068 +2019-11-25 18:00:00,25.0,0.091005291,20.25870464490766 +2019-11-25 18:15:00,25.0,0.08994709,20.25927428579263 +2019-11-25 18:30:00,25.0,0.084126984,20.25984453644071 +2019-11-25 18:45:00,25.0,0.083597884,20.260415396778555 +2019-11-25 19:00:00,25.0,0.087301587,20.260986866732736 +2019-11-25 19:15:00,25.0,0.091534392,20.26155894622975 +2019-11-25 19:30:00,25.0,0.093121693,20.262131635196017 +2019-11-25 19:45:00,25.0,0.096825397,20.262704933557874 +2019-11-25 20:00:00,25.0,0.097354497,20.26327884124158 +2019-11-25 20:15:00,25.0,0.103703704,20.26385335817332 +2019-11-25 20:30:00,25.0,0.10952381,20.264428484279208 +2019-11-25 20:45:00,25.0,0.111640212,20.26500421948525 +2019-11-25 21:00:00,25.0,0.11957672,20.265580563717407 +2019-11-25 21:15:00,25.0,0.129100529,20.26615751690155 +2019-11-25 21:30:00,25.0,0.138624339,20.26673507896346 +2019-11-25 21:45:00,25.0,0.152910053,20.267313249828856 +2019-11-25 22:00:00,25.0,0.157142857,20.267892029423372 +2019-11-25 22:15:00,25.0,0.145502646,20.268471417672565 +2019-11-25 22:30:00,25.0,0.135978836,20.26905141450191 +2019-11-25 22:45:00,25.0,0.143915344,20.269632019836806 +2019-11-25 23:00:00,25.0,0.14973545,20.27021323360258 +2019-11-25 23:15:00,25.0,0.160846561,20.270795055724466 +2019-11-25 23:30:00,25.0,0.166666667,20.271377486127637 +2019-11-25 23:45:00,25.0,0.156084656,20.271960524737175 +2019-11-26 00:00:00,25.0,0.146560847,20.27254417147809 +2019-11-26 00:15:00,25.0,0.153439153,20.273128426275306 +2019-11-26 00:30:00,25.0,0.154497354,20.27371328905369 +2019-11-26 00:45:00,25.0,0.151322751,20.274298759737995 +2019-11-26 01:00:00,25.0,0.144444444,20.27488483825293 +2019-11-26 01:15:00,25.0,0.144973545,20.275471524523113 +2019-11-26 01:30:00,25.0,0.153439153,20.27605881847308 +2019-11-26 01:45:00,25.0,0.14973545,20.276646720027287 +2019-11-26 02:00:00,25.0,0.146031746,20.27723522911012 +2019-11-26 02:15:00,25.0,0.13968254,20.277824345645886 +2019-11-26 02:30:00,25.0,0.142857143,20.278414069558814 +2019-11-26 02:45:00,25.0,0.149206349,20.27900440077304 +2019-11-26 03:00:00,25.0,0.153968254,20.279595339212648 +2019-11-26 03:15:00,25.0,0.155555556,20.280186884801623 +2019-11-26 03:30:00,25.0,0.166137566,20.280779037463883 +2019-11-26 03:45:00,25.0,0.181481481,20.28137179712326 +2019-11-26 04:00:00,25.0,0.188888889,20.281965163703514 +2019-11-26 04:15:00,25.0,0.188888889,20.282559137128324 +2019-11-26 04:30:00,25.0,0.192063492,20.28315371732129 +2019-11-26 04:45:00,25.0,0.202645503,20.283748904205943 +2019-11-26 05:00:00,25.0,0.214285714,20.28434469770572 +2019-11-26 05:15:00,25.0,0.218518519,20.284941097743996 +2019-11-26 05:30:00,25.0,0.226455026,20.285538104244047 +2019-11-26 05:45:00,25.0,0.237566138,20.286135717129103 +2019-11-26 06:00:00,25.0,0.243915344,20.28673393632229 +2019-11-26 06:15:00,25.0,0.251322751,20.287332761746654 +2019-11-26 06:30:00,25.0,0.25978836,20.28793219332519 +2019-11-26 06:45:00,25.0,0.271957672,20.28853223098079 +2019-11-26 07:00:00,25.0,0.273015873,20.28913287463627 +2019-11-26 07:15:00,25.0,0.262962963,20.289734124214377 +2019-11-26 07:30:00,25.0,0.267724868,20.29033597963778 +2019-11-26 07:45:00,25.0,0.280952381,20.290938440829073 +2019-11-26 08:00:00,25.0,0.289417989,20.29154150771075 +2019-11-26 08:15:00,25.0,0.288359788,20.292145180205257 +2019-11-26 08:30:00,25.0,0.288888889,20.29274945823494 +2019-11-26 08:45:00,25.0,0.293650794,20.293354341722083 +2019-11-26 09:00:00,25.0,0.307407407,20.29395983058887 +2019-11-26 09:15:00,25.0,0.313227513,20.294565924757443 +2019-11-26 09:30:00,25.0,0.317989418,20.295172624149828 +2019-11-26 09:45:00,25.0,0.316931217,20.295779928687992 +2019-11-26 10:00:00,25.0,0.315343915,20.296387838293832 +2019-11-26 10:15:00,25.0,0.308465608,20.296996352889145 +2019-11-26 10:30:00,25.0,0.317989418,20.297605472395674 +2019-11-26 10:45:00,25.0,0.316402116,20.29821519673506 +2019-11-26 11:00:00,25.0,0.319047619,20.29882552582889 +2019-11-26 11:15:00,25.0,0.311640212,20.299436459598656 +2019-11-26 11:30:00,25.0,0.332275132,20.300047997965777 +2019-11-26 11:45:00,25.0,0.342857143,20.300660140851605 +2019-11-26 12:00:00,25.0,0.334391534,20.301272888177394 +2019-11-26 12:15:00,25.0,0.331746032,20.301886239864338 +2019-11-26 12:30:00,25.0,0.319047619,20.302500195833538 +2019-11-26 12:45:00,25.0,0.324338624,20.303114756006035 +2019-11-26 13:00:00,25.0,0.329100529,20.30372992030278 +2019-11-26 13:15:00,25.0,0.34973545,20.30434568864464 +2019-11-26 13:30:00,25.0,0.340740741,20.30496206095243 +2019-11-26 13:45:00,25.0,0.339153439,20.30557903714686 +2019-11-26 14:00:00,25.0,0.351851852,20.306196617148576 +2019-11-26 14:15:00,25.0,0.362433862,20.30681480087814 +2019-11-26 14:30:00,25.0,0.357671958,20.307433588256046 +2019-11-26 14:45:00,25.0,0.344444444,20.3080529792027 +2019-11-26 15:00:00,25.0,0.329100529,20.30867297363843 +2019-11-26 15:15:00,25.0,0.315873016,20.3092935714835 +2019-11-26 15:30:00,25.0,0.321164021,20.309914772658086 +2019-11-26 15:45:00,25.0,0.327513228,20.310536577082278 +2019-11-26 16:00:00,25.0,0.324338624,20.311158984676112 +2019-11-26 16:15:00,25.0,0.341269841,20.311781995359524 +2019-11-26 16:30:00,25.0,0.339153439,20.31240560905238 +2019-11-26 16:45:00,25.0,0.333862434,20.313029825674473 +2019-11-26 17:00:00,25.0,0.337566138,20.313654645145512 +2019-11-26 17:15:00,25.0,0.335978836,20.314280067385138 +2019-11-26 17:30:00,25.0,0.324338624,20.314906092312896 +2019-11-26 17:45:00,25.0,0.323809524,20.315532719848278 +2019-11-26 18:00:00,25.0,0.32962963,20.316159949910677 +2019-11-26 18:15:00,25.0,0.347089947,20.316787782419418 +2019-11-26 18:30:00,25.0,0.371428571,20.31741621729375 +2019-11-26 18:45:00,25.0,0.388359788,20.318045254452844 +2019-11-26 19:00:00,25.0,0.401058201,20.31867489381579 +2019-11-26 19:15:00,25.0,0.416402116,20.319305135301597 +2019-11-26 19:30:00,25.0,0.418518519,20.319935978829214 +2019-11-26 19:45:00,25.0,0.436507937,20.32056742431749 +2019-11-26 20:00:00,25.0,0.450793651,20.321199471685212 +2019-11-26 20:15:00,25.0,0.45026455,20.321832120851077 +2019-11-26 20:30:00,25.0,0.466137566,20.322465371733724 +2019-11-26 20:45:00,25.0,0.466137566,20.323099224251695 +2019-11-26 21:00:00,25.0,0.466666667,20.323733678323464 +2019-11-26 21:15:00,25.0,0.475661376,20.324368733867423 +2019-11-26 21:30:00,25.0,0.488359788,20.3250043908019 +2019-11-26 21:45:00,25.0,0.487301587,20.325640649045127 +2019-11-26 22:00:00,25.0,0.475132275,20.32627750851526 +2019-11-26 22:15:00,25.0,0.466137566,20.326914969130403 +2019-11-26 22:30:00,25.0,0.465608466,20.327553030808552 +2019-11-26 22:45:00,25.0,0.459259259,20.328191693467637 +2019-11-26 23:00:00,25.0,0.455555556,20.328830957025517 +2019-11-26 23:15:00,25.0,0.458730159,20.32947082139997 +2019-11-26 23:30:00,25.0,0.457142857,20.33011128650869 +2019-11-26 23:45:00,25.0,0.431746032,20.330752352269293 +2019-11-27 00:00:00,25.0,0.41957672,20.33139401859934 +2019-11-27 00:15:00,25.0,0.413227513,20.332036285416287 +2019-11-27 00:30:00,25.0,0.396296296,20.332679152637525 +2019-11-27 00:45:00,25.0,0.355555556,20.333322620180372 +2019-11-27 01:00:00,25.0,0.325396825,20.33396668796206 +2019-11-27 01:15:00,25.0,0.294708995,20.33461135589975 +2019-11-27 01:30:00,25.0,0.297354497,20.335256623910514 +2019-11-27 01:45:00,25.0,0.316931217,20.33590249191137 +2019-11-27 02:00:00,25.0,0.335978836,20.336548959819236 +2019-11-27 02:15:00,25.0,0.328042328,20.337196027550963 +2019-11-27 02:30:00,25.0,0.297354497,20.337843695023327 +2019-11-27 02:45:00,25.0,0.297354497,20.33849196215302 +2019-11-27 03:00:00,25.0,0.302116402,20.339140828856664 +2019-11-27 03:15:00,25.0,0.275661376,20.339790295050797 +2019-11-27 03:30:00,25.0,0.268783069,20.340440360651883 +2019-11-27 03:45:00,25.0,0.273544974,20.34109102557631 +2019-11-27 04:00:00,25.0,0.291005291,20.341742289740388 +2019-11-27 04:15:00,25.0,0.294708995,20.34239415306035 +2019-11-27 04:30:00,25.0,0.288359788,20.343046615452355 +2019-11-27 04:45:00,25.0,0.281481481,20.34369967683248 +2019-11-27 05:00:00,25.0,0.270899471,20.34435333711672 +2019-11-27 05:15:00,25.0,0.262433862,20.345007596221006 +2019-11-27 05:30:00,25.0,0.283068783,20.345662454061188 +2019-11-27 05:45:00,25.0,0.279365079,20.34631791055303 +2019-11-27 06:00:00,25.0,0.285714286,20.346973965612232 +2019-11-27 06:15:00,25.0,0.285185185,20.34763061915441 +2019-11-27 06:30:00,25.0,0.285185185,20.348287871095096 +2019-11-27 06:45:00,25.0,0.275661376,20.348945721349757 +2019-11-27 07:00:00,25.0,0.313227513,20.349604169833786 +2019-11-27 07:15:00,25.0,0.363492063,20.350263216462483 +2019-11-27 07:30:00,25.0,0.367724868,20.350922861151084 +2019-11-27 07:45:00,25.0,0.371957672,20.35158310381474 +2019-11-27 08:00:00,25.0,0.394179894,20.352243944368535 +2019-11-27 08:15:00,25.0,0.415873016,20.352905382727467 +2019-11-27 08:30:00,25.0,0.416402116,20.353567418806456 +2019-11-27 08:45:00,25.0,0.406349206,20.354230052520357 +2019-11-27 09:00:00,25.0,0.399470899,20.354893283783937 +2019-11-27 09:15:00,25.0,0.415873016,20.35555711251189 +2019-11-27 09:30:00,25.0,0.453968254,20.356221538618833 +2019-11-27 09:45:00,25.0,0.464550265,20.356886562019305 +2019-11-27 10:00:00,25.0,0.485714286,20.357552182627767 +2019-11-27 10:15:00,25.0,0.55978836,20.358218400358613 +2019-11-27 10:30:00,25.0,0.614814815,20.358885215126143 +2019-11-27 10:45:00,25.0,0.603703704,20.3595526268446 +2019-11-27 11:00:00,25.0,0.630687831,20.360220635428128 +2019-11-27 11:15:00,25.0,0.656613757,20.36088924079082 +2019-11-27 11:30:00,25.0,0.640740741,20.361558442846665 +2019-11-27 11:45:00,25.0,0.652910053,20.36222824150959 +2019-11-27 12:00:00,25.0,0.661904762,20.36289863669346 +2019-11-27 12:15:00,25.0,0.66984127,20.363569628312028 +2019-11-27 12:30:00,25.0,0.673015873,20.364241216279 +2019-11-27 12:45:00,25.0,0.648148148,20.36491340050799 +2019-11-27 13:00:00,25.0,0.612698413,20.365586180912548 +2019-11-27 13:15:00,25.0,0.561904762,20.36625955740613 +2019-11-27 13:30:00,25.0,0.537037037,20.366933529902127 +2019-11-27 13:45:00,25.0,0.518518519,20.367608098313852 +2019-11-27 14:00:00,25.0,0.498412698,20.368283262554545 +2019-11-27 14:15:00,25.0,0.518518519,20.36895902253736 +2019-11-27 14:30:00,25.0,0.519047619,20.369635378175374 +2019-11-27 14:45:00,25.0,0.504761905,20.370312329381605 +2019-11-27 15:00:00,25.0,0.498941799,20.370989876068975 +2019-11-27 15:15:00,25.0,0.499470899,20.37166801815033 +2019-11-27 15:30:00,25.0,0.49047619,20.37234675553846 +2019-11-27 15:45:00,25.0,0.476190476,20.373026088146055 +2019-11-27 16:00:00,25.0,0.505820106,20.37370601588574 +2019-11-27 16:15:00,25.0,0.535449735,20.37438653867006 +2019-11-27 16:30:00,25.0,0.561375661,20.375067656411485 +2019-11-27 16:45:00,25.0,0.577777778,20.375749369022408 +2019-11-27 17:00:00,25.0,0.570899471,20.376431676415145 +2019-11-27 17:15:00,25.0,0.564550265,20.37711457850194 +2019-11-27 17:30:00,25.0,0.555026455,20.377798075194953 +2019-11-27 17:45:00,25.0,0.548148148,20.378482166406272 +2019-11-27 18:00:00,25.0,0.526455026,20.379166852047902 +2019-11-27 18:15:00,25.0,0.535449735,20.379852132031786 +2019-11-27 18:30:00,25.0,0.53015873,20.38053800626978 +2019-11-27 18:45:00,25.0,0.553439153,20.381224474673658 +2019-11-27 19:00:00,25.0,0.528571429,20.381911537155133 +2019-11-27 19:15:00,25.0,0.525925926,20.382599193625833 +2019-11-27 19:30:00,25.0,0.515343915,20.383287443997308 +2019-11-27 19:45:00,25.0,0.534391534,20.383976288181028 +2019-11-27 20:00:00,25.0,0.521693122,20.3846657260884 +2019-11-27 20:15:00,25.0,0.517989418,20.385355757630748 +2019-11-27 20:30:00,25.0,0.535978836,20.386046382719307 +2019-11-27 20:45:00,25.0,0.540740741,20.38673760126526 +2019-11-27 21:00:00,25.0,0.537566138,20.387429413179696 +2019-11-27 21:15:00,25.0,0.525396825,20.388121818373634 +2019-11-27 21:30:00,25.0,0.528042328,20.38881481675801 +2019-11-27 21:45:00,25.0,0.524867725,20.389508408243696 +2019-11-27 22:00:00,25.0,0.521693122,20.390202592741478 +2019-11-27 22:15:00,25.0,0.515873016,20.39089737016206 +2019-11-27 22:30:00,25.0,0.495767196,20.391592740416094 +2019-11-27 22:45:00,25.0,0.484126984,20.39228870341413 +2019-11-27 23:00:00,25.0,0.476190476,20.392985259066656 +2019-11-27 23:15:00,25.0,0.46984127,20.39368240728407 +2019-11-27 23:30:00,25.0,0.463492063,20.39438014797672 +2019-11-27 23:45:00,25.0,0.454497354,20.395078481054842 +2019-11-28 00:00:00,25.0,0.446560847,20.395777406428625 +2019-11-28 00:15:00,25.0,0.449206349,20.396476924008173 +2019-11-28 00:30:00,25.0,0.433862434,20.39717703370351 +2019-11-28 00:45:00,25.0,0.412698413,20.397877735424586 +2019-11-28 01:00:00,25.0,0.396296296,20.398579029081272 +2019-11-28 01:15:00,25.0,0.37989418,20.399280914583372 +2019-11-28 01:30:00,25.0,0.345502646,20.399983391840607 +2019-11-28 01:45:00,25.0,0.332275132,20.400686460762614 +2019-11-28 02:00:00,25.0,0.320634921,20.401390121258974 +2019-11-28 02:15:00,25.0,0.312169312,20.402094373239176 +2019-11-28 02:30:00,25.0,0.313756614,20.40279921661264 +2019-11-28 02:45:00,25.0,0.321164021,20.4035046512887 +2019-11-28 03:00:00,25.0,0.323280423,20.40421067717663 +2019-11-28 03:15:00,25.0,0.330687831,20.404917294185612 +2019-11-28 03:30:00,25.0,0.337037037,20.405624502224764 +2019-11-28 03:45:00,25.0,0.344444444,20.406332301203122 +2019-11-28 04:00:00,25.0,0.346560847,20.40704069102965 +2019-11-28 04:15:00,25.0,0.353439153,20.407749671613225 +2019-11-28 04:30:00,25.0,0.36031746,20.40845924286267 +2019-11-28 04:45:00,25.0,0.371428571,20.409169404686708 +2019-11-28 05:00:00,25.0,0.416931217,20.409880156993996 +2019-11-28 05:15:00,25.0,0.450793651,20.410591499693115 +2019-11-28 05:30:00,25.0,0.466137566,20.411303432692577 +2019-11-28 05:45:00,25.0,0.491005291,20.41201595590081 +2019-11-28 06:00:00,25.0,0.495238095,20.41272906922616 +2019-11-28 06:15:00,25.0,0.494179894,20.413442772576914 +2019-11-28 06:30:00,25.0,0.491005291,20.41415706586127 +2019-11-28 06:45:00,25.0,0.475132275,20.414871948987358 +2019-11-28 07:00:00,25.0,0.462433862,20.415587421863215 +2019-11-28 07:15:00,25.0,0.446031746,20.41630348439683 +2019-11-28 07:30:00,25.0,0.43968254,20.4170201364961 +2019-11-28 07:45:00,25.0,0.423280423,20.417737378068836 +2019-11-28 08:00:00,25.0,0.414814815,20.418455209022795 +2019-11-28 08:15:00,25.0,0.407407407,20.419173629265643 +2019-11-28 08:30:00,25.0,0.383068783,20.41989263870498 +2019-11-28 08:45:00,25.0,0.350793651,20.420612237248317 +2019-11-28 09:00:00,25.0,0.322222222,20.421332424803108 +2019-11-28 09:15:00,25.0,0.305291005,20.422053201276718 +2019-11-28 09:30:00,25.0,0.301587302,20.42277456657643 +2019-11-28 09:45:00,25.0,0.291005291,20.423496520609472 +2019-11-28 10:00:00,25.0,0.273015873,20.424219063282976 +2019-11-28 10:15:00,25.0,0.256084656,20.424942194504016 +2019-11-28 10:30:00,25.0,0.247089947,20.42566591417957 +2019-11-28 10:45:00,25.0,0.255026455,20.42639022221656 +2019-11-28 11:00:00,25.0,0.264550265,20.427115118521826 +2019-11-28 11:15:00,25.0,0.276190476,20.427840603002117 +2019-11-28 11:30:00,25.0,0.3,20.42856667556413 +2019-11-28 11:45:00,25.0,0.316931217,20.429293336114476 +2019-11-28 12:00:00,25.0,0.322222222,20.430020584559692 +2019-11-28 12:15:00,25.0,0.356613757,20.430748420806225 +2019-11-28 12:30:00,25.0,0.376190476,20.43147684476047 +2019-11-28 12:45:00,25.0,0.422751323,20.432205856328736 +2019-11-28 13:00:00,25.0,0.48042328,20.43293545541725 +2019-11-28 13:15:00,25.0,0.523280423,20.433665641932173 +2019-11-28 13:30:00,25.0,0.575661376,20.434396415779588 +2019-11-28 13:45:00,25.0,0.589417989,20.4351277768655 +2019-11-28 14:00:00,25.0,0.588888889,20.43585972509583 +2019-11-28 14:15:00,25.0,0.656084656,20.43659226037645 +2019-11-28 14:30:00,25.0,0.717989418,20.437325382613132 +2019-11-28 14:45:00,25.0,0.750793651,20.438059091711573 +2019-11-28 15:00:00,25.0,0.756084656,20.438793387577412 +2019-11-28 15:15:00,25.0,0.769312169,20.4395282701162 +2019-11-28 15:30:00,25.0,0.782539683,20.440263739233412 +2019-11-28 15:45:00,25.0,0.813756614,20.440999794834447 +2019-11-28 16:00:00,25.0,0.875132275,20.44173643682464 +2019-11-28 16:15:00,25.0,0.883068783,20.44247366510924 +2019-11-28 16:30:00,25.0,0.874603175,20.44321147959342 +2019-11-28 16:45:00,25.0,0.868253968,20.44394988018228 +2019-11-28 17:00:00,25.0,0.884656085,20.44468886678085 +2019-11-28 17:15:00,25.0,0.886772487,20.44542843929408 +2019-11-28 17:30:00,25.0,0.874603175,20.446168597626833 +2019-11-28 17:45:00,25.0,0.846031746,20.446909341683924 +2019-11-28 18:00:00,25.0,0.846560847,20.44765067137007 +2019-11-28 18:15:00,25.0,0.873544974,20.44839258658991 +2019-11-28 18:30:00,25.0,0.860846561,20.449135087248038 +2019-11-28 18:45:00,25.0,0.862962963,20.449878173248933 +2019-11-28 19:00:00,25.0,0.889417989,20.45062184449703 +2019-11-28 19:15:00,25.0,0.893121693,20.451366100896664 +2019-11-28 19:30:00,25.0,0.904761905,20.452110942352117 +2019-11-28 19:45:00,25.0,0.902645503,20.452856368767584 +2019-11-28 20:00:00,25.0,0.901587302,20.45360238004718 +2019-11-28 20:15:00,25.0,0.903174603,20.454348976094963 +2019-11-28 20:30:00,25.0,0.900529101,20.455096156814896 +2019-11-28 20:45:00,25.0,0.899470899,20.455843922110873 +2019-11-28 21:00:00,25.0,0.89047619,20.45659227188672 +2019-11-28 21:15:00,25.0,0.878835979,20.45734120604618 +2019-11-28 21:30:00,25.0,0.876190476,20.458090724492926 +2019-11-28 21:45:00,25.0,0.867724868,20.45884082713055 +2019-11-28 22:00:00,25.0,0.862433862,20.459591513862573 +2019-11-28 22:15:00,25.0,0.860846561,20.46034278459244 +2019-11-28 22:30:00,25.0,0.860846561,20.46109463922352 +2019-11-28 22:45:00,25.0,0.858730159,20.461847077659115 +2019-11-28 23:00:00,25.0,0.881481481,20.462600099802433 +2019-11-28 23:15:00,25.0,0.892592593,20.463353705556628 +2019-11-28 23:30:00,25.0,0.891534392,20.464107894824757 +2019-11-28 23:45:00,25.0,0.891534392,20.46486266750983 +2019-11-29 00:00:00,25.0,0.864550265,20.46561802351476 +2019-11-29 00:15:00,25.0,0.81957672,20.466373962742384 +2019-11-29 00:30:00,25.0,0.792592593,20.467130485095485 +2019-11-29 00:45:00,25.0,0.801058201,20.46788759047675 +2019-11-29 01:00:00,25.0,0.804761905,20.468645278788795 +2019-11-29 01:15:00,25.0,0.765079365,20.469403549934167 +2019-11-29 01:30:00,25.0,0.752910053,20.470162403815337 +2019-11-29 01:45:00,25.0,0.751851852,20.470921840334704 +2019-11-29 02:00:00,25.0,0.767724868,20.471681859394575 +2019-11-29 02:15:00,25.0,0.769312169,20.472442460897206 +2019-11-29 02:30:00,25.0,0.75978836,20.473203644744764 +2019-11-29 02:45:00,25.0,0.73968254,20.473965410839345 +2019-11-29 03:00:00,25.0,0.739153439,20.47472775908296 +2019-11-29 03:15:00,25.0,0.738624339,20.475490689377562 +2019-11-29 03:30:00,25.0,0.737037037,20.47625420162502 +2019-11-29 03:45:00,25.0,0.738624339,20.477018295727127 +2019-11-29 04:00:00,25.0,0.745502646,20.477782971585608 +2019-11-29 04:15:00,25.0,0.751851852,20.478548229102106 +2019-11-29 04:30:00,25.0,0.75978836,20.479314068178194 +2019-11-29 04:45:00,25.0,0.756613757,20.48008048871536 +2019-11-29 05:00:00,25.0,0.759259259,20.480847490615034 +2019-11-29 05:15:00,25.0,0.774074074,20.48161507377856 +2019-11-29 05:30:00,25.0,0.794708995,20.482383238107204 +2019-11-29 05:45:00,25.0,0.797354497,20.48315198350217 +2019-11-29 06:00:00,25.0,0.797883598,20.483921309864584 +2019-11-29 06:15:00,25.0,0.8,20.48469121709548 +2019-11-29 06:30:00,25.0,0.805820106,20.485461705095844 +2019-11-29 06:45:00,25.0,0.801587302,20.486232773766567 +2019-11-29 07:00:00,25.0,0.801058201,20.48700442300847 +2019-11-29 07:15:00,25.0,0.804232804,20.487776652722307 +2019-11-29 07:30:00,25.0,0.802116402,20.488549462808752 +2019-11-29 07:45:00,25.0,0.803174603,20.489322853168403 +2019-11-29 08:00:00,25.0,0.802645503,20.490096823701787 +2019-11-29 08:15:00,25.0,0.803174603,20.490871374309346 +2019-11-29 08:30:00,25.0,0.804761905,20.491646504891463 +2019-11-29 08:45:00,25.0,0.805291005,20.49242221534844 +2019-11-29 09:00:00,25.0,0.803703704,20.493198505580494 +2019-11-29 09:15:00,25.0,0.802645503,20.493975375487793 +2019-11-29 09:30:00,25.0,0.802645503,20.494752824970398 +2019-11-29 09:45:00,25.0,0.798412698,20.495530853928322 +2019-11-29 10:00:00,25.0,0.795767196,20.496309462261483 +2019-11-29 10:15:00,25.0,0.792592593,20.497088649869745 +2019-11-29 10:30:00,25.0,0.785185185,20.49786841665288 +2019-11-29 10:45:00,25.0,0.775661376,20.498648762510598 +2019-11-29 11:00:00,25.0,0.775661376,20.499429687342527 +2019-11-29 11:15:00,25.0,0.764021164,20.50021119104822 +2019-11-29 11:30:00,25.0,0.763492063,20.500993273527165 +2019-11-29 11:45:00,25.0,0.762962963,20.501775934678754 +2019-11-29 12:00:00,25.0,0.726455026,20.50255917440234 +2019-11-29 12:15:00,25.0,0.733862434,20.503342992597165 +2019-11-29 12:30:00,25.0,0.677248677,20.504127389162417 +2019-11-29 12:45:00,25.0,0.688888889,20.50491236399721 +2019-11-29 13:00:00,25.0,0.725925926,20.505697917000575 +2019-11-29 13:15:00,25.0,0.706349206,20.50648404807147 +2019-11-29 13:30:00,25.0,0.712169312,20.507270757108778 +2019-11-29 13:45:00,25.0,0.673544974,20.50805804401132 +2019-11-29 14:00:00,25.0,0.591534392,20.50884590867783 +2019-11-29 14:15:00,25.0,0.623280423,20.50963435100697 +2019-11-29 14:30:00,25.0,0.668253968,20.51042337089733 +2019-11-29 14:45:00,25.0,0.707936508,20.51121296824742 +2019-11-29 15:00:00,25.0,0.707936508,20.512003142955685 +2019-11-29 15:15:00,25.0,0.682539683,20.512793894920485 +2019-11-29 15:30:00,25.0,0.653968254,20.51358522404012 +2019-11-29 15:45:00,25.0,0.689417989,20.514377130212807 +2019-11-29 16:00:00,25.0,0.724867725,20.515169613336678 +2019-11-29 16:15:00,25.0,0.753968254,20.515962673309815 +2019-11-29 16:30:00,25.0,0.746031746,20.516756310030203 +2019-11-29 16:45:00,25.0,0.796296296,20.51755052339577 +2019-11-29 17:00:00,25.0,0.818518519,20.51834531330436 +2019-11-29 17:15:00,25.0,0.805291005,20.51914067965374 +2019-11-29 17:30:00,25.0,0.758730159,20.519936622341618 +2019-11-29 17:45:00,25.0,0.740740741,20.52073314126561 +2019-11-29 18:00:00,25.0,0.765608466,20.52153023632327 +2019-11-29 18:15:00,25.0,0.76984127,20.52232790741207 +2019-11-29 18:30:00,25.0,0.734391534,20.523126154429413 +2019-11-29 18:45:00,25.0,0.742328042,20.52392497727263 +2019-11-29 19:00:00,25.0,0.732804233,20.52472437583898 +2019-11-29 19:15:00,25.0,0.702116402,20.525524350025627 +2019-11-29 19:30:00,25.0,0.702116402,20.52632489972968 +2019-11-29 19:45:00,25.0,0.698941799,20.52712602484818 +2019-11-29 20:00:00,25.0,0.749206349,20.52792772527808 +2019-11-29 20:15:00,25.0,0.754497354,20.52873000091626 +2019-11-29 20:30:00,25.0,0.667724868,20.529532851659535 +2019-11-29 20:45:00,25.0,0.617989418,20.530336277404636 +2019-11-29 21:00:00,25.0,0.644973545,20.531140278048227 +2019-11-29 21:15:00,25.0,0.686243386,20.53194485348689 +2019-11-29 21:30:00,25.0,0.68994709,20.53275000361715 +2019-11-29 21:45:00,25.0,0.648148148,20.533555728335436 +2019-11-29 22:00:00,25.0,0.667724868,20.534362027538116 +2019-11-29 22:15:00,25.0,0.676719577,20.53516890112149 +2019-11-29 22:30:00,25.0,0.691005291,20.53597634898177 +2019-11-29 22:45:00,25.0,0.639153439,20.536784371015095 +2019-11-29 23:00:00,25.0,0.65978836,20.53759296711754 +2019-11-29 23:15:00,25.0,0.631746032,20.538402137185102 +2019-11-29 23:30:00,25.0,0.615873016,20.539211881113708 +2019-11-29 23:45:00,25.0,0.586772487,20.540022198799196 +2019-11-30 00:00:00,25.0,0.583597884,20.540833090137355 +2019-11-30 00:15:00,25.0,0.615873016,20.541644555023872 +2019-11-30 00:30:00,25.0,0.599470899,20.542456593354387 +2019-11-30 00:45:00,25.0,0.597883598,20.543269205024444 +2019-11-30 01:00:00,25.0,0.585185185,20.544082389929528 +2019-11-30 01:15:00,25.0,0.560846561,20.544896147965044 +2019-11-30 01:30:00,25.0,0.497354497,20.545710479026322 +2019-11-30 01:45:00,25.0,0.487301587,20.54652538300863 +2019-11-30 02:00:00,25.0,0.484656085,20.547340859807143 +2019-11-30 02:15:00,25.0,0.446560847,20.54815690931698 +2019-11-30 02:30:00,25.0,0.422751323,20.54897353143317 +2019-11-30 02:45:00,25.0,0.40952381,20.549790726050684 +2019-11-30 03:00:00,25.0,0.447089947,20.550608493064413 +2019-11-30 03:15:00,25.0,0.406349206,20.551426832369167 +2019-11-30 03:30:00,25.0,0.411111111,20.5522457438597 +2019-11-30 03:45:00,25.0,0.402116402,20.55306522743067 +2019-11-30 04:00:00,25.0,0.427513228,20.553885282976687 +2019-11-30 04:15:00,25.0,0.426455026,20.554705910392258 +2019-11-30 04:30:00,25.0,0.401587302,20.55552710957184 +2019-11-30 04:45:00,25.0,0.423809524,20.556348880409814 +2019-11-30 05:00:00,25.0,0.447619048,20.557171222800466 +2019-11-30 05:15:00,25.0,0.391005291,20.557994136638044 +2019-11-30 05:30:00,25.0,0.341798942,20.558817621816686 +2019-11-30 05:45:00,25.0,0.32962963,20.559641678230488 +2019-11-30 06:00:00,25.0,0.362433862,20.560466305773442 +2019-11-30 06:15:00,25.0,0.363492063,20.561291504339497 +2019-11-30 06:30:00,25.0,0.355555556,20.56211727382251 +2019-11-30 06:45:00,25.0,0.371957672,20.56294361411626 +2019-11-30 07:00:00,25.0,0.343386243,20.56377052511447 +2019-11-30 07:15:00,25.0,0.346560847,20.56459800671078 +2019-11-30 07:30:00,25.0,0.380952381,20.565426058798764 +2019-11-30 07:45:00,25.0,0.345502646,20.566254681271896 +2019-11-30 08:00:00,25.0,0.300529101,20.567083874023613 +2019-11-30 08:15:00,25.0,0.284656085,20.56791363694726 +2019-11-30 08:30:00,25.0,0.275132275,20.568743969936108 +2019-11-30 08:45:00,25.0,0.28042328,20.569574872883358 +2019-11-30 09:00:00,25.0,0.269312169,20.570406345682137 +2019-11-30 09:15:00,25.0,0.278306878,20.571238388225506 +2019-11-30 09:30:00,25.0,0.292592593,20.57207100040643 +2019-11-30 09:45:00,25.0,0.316931217,20.57290418211784 +2019-11-30 10:00:00,25.0,0.304232804,20.573737933252545 +2019-11-30 10:15:00,25.0,0.301058201,20.57457225370332 +2019-11-30 10:30:00,25.0,0.272486772,20.575407143362852 +2019-11-30 10:45:00,25.0,0.274603175,20.576242602123756 +2019-11-30 11:00:00,25.0,0.282010582,20.577078629878567 +2019-11-30 11:15:00,25.0,0.267195767,20.577915226519764 +2019-11-30 11:30:00,25.0,0.210582011,20.57875239193973 +2019-11-30 11:45:00,25.0,0.187830688,20.579590126030794 +2019-11-30 12:00:00,25.0,0.195238095,20.580428428685202 +2019-11-30 12:15:00,25.0,0.213756614,20.581267299795133 +2019-11-30 12:30:00,25.0,0.188359788,20.582106739252687 +2019-11-30 12:45:00,25.0,0.177248677,20.58294674694989 +2019-11-30 13:00:00,25.0,0.185714286,20.583787322778704 +2019-11-30 13:15:00,25.0,0.183068783,20.58462846663101 +2019-11-30 13:30:00,25.0,0.193650794,20.585470178398623 +2019-11-30 13:45:00,25.0,0.215873016,20.586312457973264 +2019-11-30 14:00:00,25.0,0.23968254,20.58715530524662 +2019-11-30 14:15:00,25.0,0.231216931,20.587998720110264 +2019-11-30 14:30:00,25.0,0.227513228,20.588842702455718 +2019-11-30 14:45:00,25.0,0.211111111,20.589687252174436 +2019-11-30 15:00:00,25.0,0.185185185,20.590532369157778 +2019-11-30 15:15:00,25.0,0.198941799,20.591378053297053 +2019-11-30 15:30:00,25.0,0.228042328,20.592224304483477 +2019-11-30 15:45:00,25.0,0.224338624,20.59307112260821 +2019-11-30 16:00:00,25.0,0.198941799,20.593918507562336 +2019-11-30 16:15:00,25.0,0.192063492,20.59476645923685 +2019-11-30 16:30:00,25.0,0.226455026,20.5956149775227 +2019-11-30 16:45:00,25.0,0.236507937,20.596464062310744 +2019-11-30 17:00:00,25.0,0.210582011,20.597313713491765 +2019-11-30 17:15:00,25.0,0.21005291,20.598163930956478 +2019-11-30 17:30:00,25.0,0.204232804,20.599014714595533 +2019-11-30 17:45:00,25.0,0.207936508,20.5998660642995 +2019-11-30 18:00:00,25.0,0.203174603,20.600717979958873 +2019-11-30 18:15:00,25.0,0.186772487,20.601570461464078 +2019-11-30 18:30:00,25.0,0.156613757,20.602423508705463 +2019-11-30 18:45:00,25.0,0.129100529,20.603277121573317 +2019-11-30 19:00:00,25.0,0.12962963,20.604131299957835 +2019-11-30 19:15:00,25.0,0.126984127,20.604986043749157 +2019-11-30 19:30:00,25.0,0.127513228,20.60584135283734 +2019-11-30 19:45:00,25.0,0.105820106,20.606697227112377 +2019-11-30 20:00:00,25.0,0.083597884,20.60755366646418 +2019-11-30 20:15:00,25.0,0.080952381,20.608410670782597 +2019-11-30 20:30:00,25.0,0.088888889,20.60926823995739 +2019-11-30 20:45:00,25.0,0.084656085,20.61012637387826 +2019-11-30 21:00:00,25.0,0.064550265,20.610985072434833 +2019-11-30 21:15:00,25.0,0.055555556,20.61184433551666 +2019-11-30 21:30:00,25.0,0.049206349,20.61270416301322 +2019-11-30 21:45:00,25.0,0.045502646,20.613564554813927 +2019-11-30 22:00:00,25.0,0.046031746,20.614425510808104 +2019-11-30 22:15:00,25.0,0.036507937,20.61528703088502 +2019-11-30 22:30:00,25.0,0.031216931,20.61614911493386 +2019-11-30 22:45:00,25.0,0.031746032,20.617011762843745 +2019-11-30 23:00:00,25.0,0.036507937,20.61787497450372 +2019-11-30 23:15:00,25.0,0.039153439,20.618738749802752 +2019-11-30 23:30:00,25.0,0.044444444,20.619603088629745 +2019-11-30 23:45:00,25.0,0.04021164,20.62046799087352 +2019-12-01 00:00:00,25.0,0.038095238,20.62133345642284 +2019-12-01 00:15:00,25.0,0.042857143,20.622199485166373 +2019-12-01 00:30:00,25.0,0.043386243,20.623066076992743 +2019-12-01 00:45:00,25.0,0.038624339,20.62393323179048 +2019-12-01 01:00:00,25.0,0.044973545,20.624800949448044 +2019-12-01 01:15:00,25.0,0.055026455,20.625669229853838 +2019-12-01 01:30:00,25.0,0.047619048,20.626538072896174 +2019-12-01 01:45:00,25.0,0.033862434,20.627407478463304 +2019-12-01 02:00:00,25.0,0.03015873,20.628277446443395 +2019-12-01 02:15:00,25.0,0.036507937,20.62914797672456 +2019-12-01 02:30:00,25.0,0.048148148,20.630019069194827 +2019-12-01 02:45:00,25.0,0.044444444,20.630890723742144 +2019-12-01 03:00:00,25.0,0.037037037,20.63176294025441 +2019-12-01 03:15:00,25.0,0.035978836,20.632635718619433 +2019-12-01 03:30:00,25.0,0.038095238,20.633509058724954 +2019-12-01 03:45:00,25.0,0.037566138,20.634382960458638 +2019-12-01 04:00:00,25.0,0.037037037,20.63525742370809 +2019-12-01 04:15:00,25.0,0.036507937,20.636132448360833 +2019-12-01 04:30:00,25.0,0.044444444,20.63700803430431 +2019-12-01 04:45:00,25.0,0.049206349,20.637884181425914 +2019-12-01 05:00:00,25.0,0.047089947,20.638760889612946 +2019-12-01 05:15:00,25.0,0.052380952,20.63963815875264 +2019-12-01 05:30:00,25.0,0.057142857,20.64051598873216 +2019-12-01 05:45:00,25.0,0.053968254,20.641394379438605 +2019-12-01 06:00:00,25.0,0.039153439,20.64227333075899 +2019-12-01 06:15:00,25.0,0.039153439,20.643152842580253 +2019-12-01 06:30:00,25.0,0.064021164,20.644032914789285 +2019-12-01 06:45:00,25.0,0.082010582,20.64491354727288 +2019-12-01 07:00:00,25.0,0.071957672,20.64579473991777 +2019-12-01 07:15:00,25.0,0.062962963,20.646676492610613 +2019-12-01 07:30:00,25.0,0.071428571,20.647558805238 +2019-12-01 07:45:00,25.0,0.066137566,20.648441677686442 +2019-12-01 08:00:00,25.0,0.073015873,20.64932510984238 +2019-12-01 08:15:00,25.0,0.079365079,20.650209101592193 +2019-12-01 08:30:00,25.0,0.077248677,20.651093652822176 +2019-12-01 08:45:00,25.0,0.072486772,20.651978763418548 +2019-12-01 09:00:00,25.0,0.06984127,20.652864433267474 +2019-12-01 09:15:00,25.0,0.070899471,20.65375066225504 +2019-12-01 09:30:00,25.0,0.075132275,20.65463745026725 +2019-12-01 09:45:00,25.0,0.083597884,20.655524797190036 +2019-12-01 10:00:00,25.0,0.092592593,20.656412702909282 +2019-12-01 10:15:00,25.0,0.082539683,20.657301167310774 +2019-12-01 10:30:00,25.0,0.085185185,20.658190190280234 +2019-12-01 10:45:00,25.0,0.096825397,20.65907977170332 +2019-12-01 11:00:00,25.0,0.097354497,20.65996991146561 +2019-12-01 11:15:00,25.0,0.084126984,20.660860609452612 +2019-12-01 11:30:00,25.0,0.084656085,20.661751865549753 +2019-12-01 11:45:00,25.0,0.084656085,20.662643679642414 +2019-12-01 12:00:00,25.0,0.091005291,20.66353605161588 +2019-12-01 12:15:00,25.0,0.085185185,20.664428981355364 +2019-12-01 12:30:00,25.0,0.087301587,20.665322468746034 +2019-12-01 12:45:00,25.0,0.088359788,20.66621651367295 +2019-12-01 13:00:00,25.0,0.084656085,20.66711111602113 +2019-12-01 13:15:00,25.0,0.08042328,20.668006275675495 +2019-12-01 13:30:00,25.0,0.085714286,20.668901992520922 +2019-12-01 13:45:00,25.0,0.092592593,20.669798266442193 +2019-12-01 14:00:00,25.0,0.096296296,20.670695097324028 +2019-12-01 14:15:00,25.0,0.103703704,20.67159248505108 +2019-12-01 14:30:00,25.0,0.100529101,20.672490429507917 +2019-12-01 14:45:00,25.0,0.10952381,20.67338893057905 +2019-12-01 15:00:00,25.0,0.112698413,20.674287988148905 +2019-12-01 15:15:00,25.0,0.125925926,20.67518760210185 +2019-12-01 15:30:00,25.0,0.147619048,20.676087772322173 +2019-12-01 15:45:00,25.0,0.158201058,20.676988498694087 +2019-12-01 16:00:00,25.0,0.170899471,20.67788978110174 +2019-12-01 16:15:00,25.0,0.187301587,20.678791619429216 +2019-12-01 16:30:00,25.0,0.186243386,20.679694013560507 +2019-12-01 16:45:00,25.0,0.192592593,20.68059696337955 +2019-12-01 17:00:00,25.0,0.2,20.681500468770206 +2019-12-01 17:15:00,25.0,0.216402116,20.682404529616264 +2019-12-01 17:30:00,25.0,0.228042328,20.683309145801434 +2019-12-01 17:45:00,25.0,0.257142857,20.684214317209378 +2019-12-01 18:00:00,25.0,0.269312169,20.685120043723657 +2019-12-01 18:15:00,25.0,0.285714286,20.68602632522778 +2019-12-01 18:30:00,25.0,0.280952381,20.686933161605175 +2019-12-01 18:45:00,25.0,0.280952381,20.68784055273921 +2019-12-01 19:00:00,25.0,0.299470899,20.688748498513167 +2019-12-01 19:15:00,25.0,0.315873016,20.689656998810264 +2019-12-01 19:30:00,25.0,0.311111111,20.690566053513656 +2019-12-01 19:45:00,25.0,0.325396825,20.691475662506413 +2019-12-01 20:00:00,25.0,0.380952381,20.692385825671536 +2019-12-01 20:15:00,25.0,0.352910053,20.693296542891957 +2019-12-01 20:30:00,25.0,0.314814815,20.694207814050543 +2019-12-01 20:45:00,25.0,0.32962963,20.695119639030086 +2019-12-01 21:00:00,25.0,0.313227513,20.696032017713293 +2019-12-01 21:15:00,25.0,0.341798942,20.696944949982825 +2019-12-01 21:30:00,25.0,0.377777778,20.69785843572125 +2019-12-01 21:45:00,25.0,0.42010582,20.698772474811083 +2019-12-01 22:00:00,25.0,0.453439153,20.699687067134743 +2019-12-01 22:15:00,25.0,0.467724868,20.70060221257461 +2019-12-01 22:30:00,25.0,0.435978836,20.701517911012964 +2019-12-01 22:45:00,25.0,0.393650794,20.702434162332025 +2019-12-01 23:00:00,25.0,0.442857143,20.70335096641395 +2019-12-01 23:15:00,25.0,0.43968254,20.704268323140816 +2019-12-01 23:30:00,25.0,0.477777778,20.705186232394627 +2019-12-01 23:45:00,25.0,0.48994709,20.706104694057323 +2019-12-02 00:00:00,25.0,0.485714286,20.70702370801077 +2019-12-02 00:15:00,25.0,0.537037037,20.707943274136756 +2019-12-02 00:30:00,25.0,0.536507937,20.708863392317006 +2019-12-02 00:45:00,25.0,0.541269841,20.70978406243318 +2019-12-02 01:00:00,25.0,0.550793651,20.710705284366853 +2019-12-02 01:15:00,25.0,0.562433862,20.71162705799953 +2019-12-02 01:30:00,25.0,0.608994709,20.71254938321266 +2019-12-02 01:45:00,25.0,0.662433862,20.713472259887613 +2019-12-02 02:00:00,25.0,0.661904762,20.71439568790568 +2019-12-02 02:15:00,25.0,0.687830688,20.71531966714808 +2019-12-02 02:30:00,25.0,0.698412698,20.716244197495985 +2019-12-02 02:45:00,25.0,0.687301587,20.717169278830475 +2019-12-02 03:00:00,25.0,0.674603175,20.71809491103255 +2019-12-02 03:15:00,25.0,0.696825397,20.719021093983173 +2019-12-02 03:30:00,25.0,0.701587302,20.71994782756321 +2019-12-02 03:45:00,25.0,0.704761905,20.720875111653456 +2019-12-02 04:00:00,25.0,0.687830688,20.72180294613464 +2019-12-02 04:15:00,25.0,0.696296296,20.722731330887434 +2019-12-02 04:30:00,25.0,0.671957672,20.723660265792418 +2019-12-02 04:45:00,25.0,0.602116402,20.72458975073011 +2019-12-02 05:00:00,25.0,0.58994709,20.725519785580964 +2019-12-02 05:15:00,25.0,0.6,20.72645037022535 +2019-12-02 05:30:00,25.0,0.667724868,20.72738150454358 +2019-12-02 05:45:00,25.0,0.726455026,20.728313188415882 +2019-12-02 06:00:00,25.0,0.719047619,20.72924542172243 +2019-12-02 06:15:00,25.0,0.753968254,20.730178204343307 +2019-12-02 06:30:00,25.0,0.748677249,20.73111153615854 +2019-12-02 06:45:00,25.0,0.74973545,20.73204541704809 +2019-12-02 07:00:00,25.0,0.764550265,20.732979846891833 +2019-12-02 07:15:00,25.0,0.805820106,20.73391482556958 +2019-12-02 07:30:00,25.0,0.83015873,20.734850352961068 +2019-12-02 07:45:00,25.0,0.824338624,20.735786428945975 +2019-12-02 08:00:00,25.0,0.848677249,20.736723053403896 +2019-12-02 08:15:00,25.0,0.874074074,20.73766022621436 +2019-12-02 08:30:00,25.0,0.889417989,20.738597947256828 +2019-12-02 08:45:00,25.0,0.879365079,20.73953621641069 +2019-12-02 09:00:00,25.0,0.877248677,20.74047503355526 +2019-12-02 09:15:00,25.0,0.864550265,20.74141439856978 +2019-12-02 09:30:00,25.0,0.871428571,20.74235431133344 +2019-12-02 09:45:00,25.0,0.882010582,20.74329477172534 +2019-12-02 10:00:00,25.0,0.859259259,20.744235779624507 +2019-12-02 10:15:00,25.0,0.834920635,20.74517733490992 +2019-12-02 10:30:00,25.0,0.834391534,20.746119437460468 +2019-12-02 10:45:00,25.0,0.826455026,20.747062087154976 +2019-12-02 11:00:00,25.0,0.821164021,20.748005283872196 +2019-12-02 11:15:00,25.0,0.826455026,20.748949027490813 +2019-12-02 11:30:00,25.0,0.820634921,20.749893317889445 +2019-12-02 11:45:00,25.0,0.808465608,20.750838154946628 +2019-12-02 12:00:00,25.0,0.782010582,20.75178353854084 +2019-12-02 12:15:00,25.0,0.782010582,20.752729468550484 +2019-12-02 12:30:00,25.0,0.812698413,20.75367594485389 +2019-12-02 12:45:00,25.0,0.76984127,20.754622967329315 +2019-12-02 13:00:00,25.0,0.728571429,20.755570535854957 +2019-12-02 13:15:00,25.0,0.647089947,20.75651865030894 +2019-12-02 13:30:00,25.0,0.619047619,20.75746731056931 +2019-12-02 13:45:00,25.0,0.620634921,20.758416516514053 +2019-12-02 14:00:00,25.0,0.624338624,20.759366268021076 +2019-12-02 14:15:00,25.0,0.574074074,20.76031656496822 +2019-12-02 14:30:00,25.0,0.576719577,20.761267407233255 +2019-12-02 14:45:00,25.0,0.556613757,20.762218794693887 +2019-12-02 15:00:00,25.0,0.518518519,20.76317072722774 +2019-12-02 15:15:00,25.0,0.455555556,20.764123204712373 +2019-12-02 15:30:00,25.0,0.46984127,20.765076227025283 +2019-12-02 15:45:00,25.0,0.478835979,20.766029794043888 +2019-12-02 16:00:00,25.0,0.452910053,20.76698390564554 +2019-12-02 16:15:00,25.0,0.45978836,20.767938561707503 +2019-12-02 16:30:00,25.0,0.413227513,20.76889376210701 +2019-12-02 16:45:00,25.0,0.33968254,20.769849506721187 +2019-12-02 17:00:00,25.0,0.322222222,20.770805795427105 +2019-12-02 17:15:00,25.0,0.31005291,20.77176262810177 +2019-12-02 17:30:00,25.0,0.28994709,20.77272000462211 +2019-12-02 17:45:00,25.0,0.26984127,20.773677924864977 +2019-12-02 18:00:00,25.0,0.254497354,20.774636388707172 +2019-12-02 18:15:00,25.0,0.235978836,20.775595396025412 +2019-12-02 18:30:00,25.0,0.232804233,20.776554946696344 +2019-12-02 18:45:00,25.0,0.234920635,20.777515040596548 +2019-12-02 19:00:00,25.0,0.233333333,20.778475677602536 +2019-12-02 19:15:00,25.0,0.226455026,20.779436857590756 +2019-12-02 19:30:00,25.0,0.221164021,20.780398580437563 +2019-12-02 19:45:00,25.0,0.211640212,20.781360846019275 +2019-12-02 20:00:00,25.0,0.195238095,20.782323654212114 +2019-12-02 20:15:00,25.0,0.16984127,20.78328700489224 +2019-12-02 20:30:00,25.0,0.161904762,20.784250897935745 +2019-12-02 20:45:00,25.0,0.167724868,20.78521533321866 +2019-12-02 21:00:00,25.0,0.17037037,20.786180310616924 +2019-12-02 21:15:00,25.0,0.17989418,20.787145830006423 +2019-12-02 21:30:00,25.0,0.182539683,20.78811189126298 +2019-12-02 21:45:00,25.0,0.177777778,20.78907849426233 +2019-12-02 22:00:00,25.0,0.172486772,20.790045638880144 +2019-12-02 22:15:00,25.0,0.158730159,20.791013324992026 +2019-12-02 22:30:00,25.0,0.156613757,20.791981552473516 +2019-12-02 22:45:00,25.0,0.144444444,20.792950321200074 +2019-12-02 23:00:00,25.0,0.133862434,20.79391963104709 +2019-12-02 23:15:00,25.0,0.134920635,20.7948894818899 +2019-12-02 23:30:00,25.0,0.150793651,20.795859873603753 +2019-12-02 23:45:00,25.0,0.163492063,20.796830806063834 +2019-12-03 00:00:00,25.0,0.169312169,20.79780227914526 +2019-12-03 00:15:00,25.0,0.163492063,20.79877429272308 +2019-12-03 00:30:00,25.0,0.161904762,20.799746846672274 +2019-12-03 00:45:00,25.0,0.158730159,20.80071994086774 +2019-12-03 01:00:00,25.0,0.161375661,20.80169357518433 +2019-12-03 01:15:00,25.0,0.164550265,20.802667749496802 +2019-12-03 01:30:00,25.0,0.181481481,20.80364246367986 +2019-12-03 01:45:00,25.0,0.205820106,20.80461771760813 +2019-12-03 02:00:00,25.0,0.226455026,20.80559351115618 +2019-12-03 02:15:00,25.0,0.207407407,20.806569844198496 +2019-12-03 02:30:00,25.0,0.193650794,20.807546716609494 +2019-12-03 02:45:00,25.0,0.19047619,20.808524128263542 +2019-12-03 03:00:00,25.0,0.184656085,20.80950207903491 +2019-12-03 03:15:00,25.0,0.196825397,20.810480568797818 +2019-12-03 03:30:00,25.0,0.193121693,20.811459597426403 +2019-12-03 03:45:00,25.0,0.201587302,20.81243916479475 +2019-12-03 04:00:00,25.0,0.222751323,20.813419270776862 +2019-12-03 04:15:00,25.0,0.227513228,20.814399915246664 +2019-12-03 04:30:00,25.0,0.229100529,20.815381098078042 +2019-12-03 04:45:00,25.0,0.24021164,20.816362819144782 +2019-12-03 05:00:00,25.0,0.247619048,20.817345078320617 +2019-12-03 05:15:00,25.0,0.22962963,20.8183278754792 +2019-12-03 05:30:00,25.0,0.223280423,20.81931121049413 +2019-12-03 05:45:00,25.0,0.221693122,20.820295083238925 +2019-12-03 06:00:00,25.0,0.217989418,20.821279493587035 +2019-12-03 06:15:00,25.0,0.235978836,20.822264441411846 +2019-12-03 06:30:00,25.0,0.253968254,20.82324992658667 +2019-12-03 06:45:00,25.0,0.261375661,20.82423594898475 +2019-12-03 07:00:00,25.0,0.256084656,20.825222508479264 +2019-12-03 07:15:00,25.0,0.266137566,20.82620960494332 +2019-12-03 07:30:00,25.0,0.300529101,20.82719723824995 +2019-12-03 07:45:00,25.0,0.328571429,20.828185408272127 +2019-12-03 08:00:00,25.0,0.367724868,20.829174114882747 +2019-12-03 08:15:00,25.0,0.386772487,20.830163357954646 +2019-12-03 08:30:00,25.0,0.405291005,20.83115313736058 +2019-12-03 08:45:00,25.0,0.417989418,20.83214345297324 +2019-12-03 09:00:00,25.0,0.416402116,20.833134304665254 +2019-12-03 09:15:00,25.0,0.444444444,20.834125692309176 +2019-12-03 09:30:00,25.0,0.488888889,20.835117615777484 +2019-12-03 09:45:00,25.0,0.531746032,20.836110074942603 +2019-12-03 10:00:00,25.0,0.554497354,20.837103069676882 +2019-12-03 10:15:00,25.0,0.55978836,20.83809659985259 +2019-12-03 10:30:00,25.0,0.582539683,20.839090665341942 +2019-12-03 10:45:00,25.0,0.597883598,20.840085266017084 +2019-12-03 11:00:00,25.0,0.644973545,20.841080401750084 +2019-12-03 11:15:00,25.0,0.701587302,20.842076072412937 +2019-12-03 11:30:00,25.0,0.697354497,20.843072277877592 +2019-12-03 11:45:00,25.0,0.688359788,20.844069018015908 +2019-12-03 12:00:00,25.0,0.687301587,20.845066292699677 +2019-12-03 12:15:00,25.0,0.680952381,20.846064101800636 +2019-12-03 12:30:00,25.0,0.683068783,20.847062445190446 +2019-12-03 12:45:00,25.0,0.678306878,20.848061322740687 +2019-12-03 13:00:00,25.0,0.692592593,20.849060734322883 +2019-12-03 13:15:00,25.0,0.705291005,20.850060679808497 +2019-12-03 13:30:00,25.0,0.696825397,20.851061159068905 +2019-12-03 13:45:00,25.0,0.699470899,20.852062171975426 +2019-12-03 14:00:00,25.0,0.726455026,20.853063718399305 +2019-12-03 14:15:00,25.0,0.728042328,20.854065798211728 +2019-12-03 14:30:00,25.0,0.717460317,20.8550684112838 +2019-12-03 14:45:00,25.0,0.70952381,20.85607155748656 +2019-12-03 15:00:00,25.0,0.707407407,20.85707523669098 +2019-12-03 15:15:00,25.0,0.704761905,20.858079448767974 +2019-12-03 15:30:00,25.0,0.711640212,20.85908419358837 +2019-12-03 15:45:00,25.0,0.70952381,20.86008947102294 +2019-12-03 16:00:00,25.0,0.695238095,20.86109528094238 +2019-12-03 16:15:00,25.0,0.682010582,20.86210162321732 +2019-12-03 16:30:00,25.0,0.67037037,20.863108497718315 +2019-12-03 16:45:00,25.0,0.665079365,20.864115904315874 +2019-12-03 17:00:00,25.0,0.655555556,20.865123842880415 +2019-12-03 17:15:00,25.0,0.626984127,20.86613231328229 +2019-12-03 17:30:00,25.0,0.606878307,20.867141315391795 +2019-12-03 17:45:00,25.0,0.6,20.868150849079143 +2019-12-03 18:00:00,25.0,0.581481481,20.86916091421449 +2019-12-03 18:15:00,25.0,0.587830688,20.870171510667916 +2019-12-03 18:30:00,25.0,0.594708995,20.87118263830944 +2019-12-03 18:45:00,25.0,0.595767196,20.872194297009003 +2019-12-03 19:00:00,25.0,0.596296296,20.87320648663648 +2019-12-03 19:15:00,25.0,0.601058201,20.874219207061696 +2019-12-03 19:30:00,25.0,0.611640212,20.87523245815438 +2019-12-03 19:45:00,25.0,0.602116402,20.87624623978421 +2019-12-03 20:00:00,25.0,0.578306878,20.877260551820783 +2019-12-03 20:15:00,25.0,0.568253968,20.878275394133645 +2019-12-03 20:30:00,25.0,0.579365079,20.879290766592266 +2019-12-03 20:45:00,25.0,0.588359788,20.880306669066037 +2019-12-03 21:00:00,25.0,0.600529101,20.8813231014243 +2019-12-03 21:15:00,25.0,0.61957672,20.88234006353631 +2019-12-03 21:30:00,25.0,0.65026455,20.883357555271274 +2019-12-03 21:45:00,25.0,0.653968254,20.884375576498307 +2019-12-03 22:00:00,25.0,0.655026455,20.88539412708648 +2019-12-03 22:15:00,25.0,0.642857143,20.88641320690478 +2019-12-03 22:30:00,25.0,0.644444444,20.887432815822127 +2019-12-03 22:45:00,25.0,0.643915344,20.888452953707382 +2019-12-03 23:00:00,25.0,0.657671958,20.88947362042933 +2019-12-03 23:15:00,25.0,0.657142857,20.890494815856695 +2019-12-03 23:30:00,25.0,0.668253968,20.891516539858117 +2019-12-03 23:45:00,25.0,0.663492063,20.892538792302194 +2019-12-04 00:00:00,25.0,0.657142857,20.893561573057433 +2019-12-04 00:15:00,25.0,0.668253968,20.89458488199228 +2019-12-04 00:30:00,25.0,0.649206349,20.89560871897512 +2019-12-04 00:45:00,25.0,0.63015873,20.896633083874264 +2019-12-04 01:00:00,25.0,0.630687831,20.897657976557955 +2019-12-04 01:15:00,25.0,0.626984127,20.898683396894363 +2019-12-04 01:30:00,25.0,0.601587302,20.899709344751606 +2019-12-04 01:45:00,25.0,0.58994709,20.90073581999772 +2019-12-04 02:00:00,25.0,0.580952381,20.90176282250067 +2019-12-04 02:15:00,25.0,0.570899471,20.902790352128374 +2019-12-04 02:30:00,25.0,0.549206349,20.903818408748663 +2019-12-04 02:45:00,25.0,0.555555556,20.904846992229302 +2019-12-04 03:00:00,25.0,0.541269841,20.905876102437993 +2019-12-04 03:15:00,25.0,0.533333333,20.906905739242376 +2019-12-04 03:30:00,25.0,0.533333333,20.907935902510015 +2019-12-04 03:45:00,25.0,0.536507937,20.9089665921084 +2019-12-04 04:00:00,25.0,0.534391534,20.909997807904972 +2019-12-04 04:15:00,25.0,0.523280423,20.911029549767086 +2019-12-04 04:30:00,25.0,0.518518519,20.91206181756204 +2019-12-04 04:45:00,25.0,0.521693122,20.913094611157057 +2019-12-04 05:00:00,25.0,0.519047619,20.91412793041931 +2019-12-04 05:15:00,25.0,0.515343915,20.915161775215875 +2019-12-04 05:30:00,25.0,0.523280423,20.91619614541378 +2019-12-04 05:45:00,25.0,0.517460317,20.91723104087999 +2019-12-04 06:00:00,25.0,0.500529101,20.918266461481394 +2019-12-04 06:15:00,25.0,0.48994709,20.9193024070848 +2019-12-04 06:30:00,25.0,0.478306878,20.920338877556976 +2019-12-04 06:45:00,25.0,0.467724868,20.921375872764607 +2019-12-04 07:00:00,25.0,0.449206349,20.922413392574306 +2019-12-04 07:15:00,25.0,0.434920635,20.923451436852627 +2019-12-04 07:30:00,25.0,0.426984127,20.92449000546606 +2019-12-04 07:45:00,25.0,0.426984127,20.925529098281014 +2019-12-04 08:00:00,25.0,0.428571429,20.926568715163842 +2019-12-04 08:15:00,25.0,0.424867725,20.92760885598083 +2019-12-04 08:30:00,25.0,0.425925926,20.928649520598185 +2019-12-04 08:45:00,25.0,0.422222222,20.929690708882063 +2019-12-04 09:00:00,25.0,0.422222222,20.930732420698533 +2019-12-04 09:15:00,25.0,0.427513228,20.931774655913618 +2019-12-04 09:30:00,25.0,0.431216931,20.93281741439326 +2019-12-04 09:45:00,25.0,0.441798942,20.93386069600333 +2019-12-04 10:00:00,25.0,0.443386243,20.934904500609647 +2019-12-04 10:15:00,25.0,0.452910053,20.935948828077954 +2019-12-04 10:30:00,25.0,0.473544974,20.93699367827393 +2019-12-04 10:45:00,25.0,0.493650794,20.93803905106317 +2019-12-04 11:00:00,25.0,0.51957672,20.939084946311233 +2019-12-04 11:15:00,25.0,0.536507937,20.94013136388358 +2019-12-04 11:30:00,25.0,0.538095238,20.941178303645625 +2019-12-04 11:45:00,25.0,0.549206349,20.94222576546271 +2019-12-04 12:00:00,25.0,0.558201058,20.943273749200102 +2019-12-04 12:15:00,25.0,0.547619048,20.944322254723012 +2019-12-04 12:30:00,25.0,0.545502646,20.945371281896573 +2019-12-04 12:45:00,25.0,0.567195767,20.946420830585865 +2019-12-04 13:00:00,25.0,0.57037037,20.94747090065589 +2019-12-04 13:15:00,25.0,0.568253968,20.948521491971576 +2019-12-04 13:30:00,25.0,0.557671958,20.949572604397808 +2019-12-04 13:45:00,25.0,0.544444444,20.95062423779938 +2019-12-04 14:00:00,25.0,0.545502646,20.951676392041037 +2019-12-04 14:15:00,25.0,0.556613757,20.952729066987434 +2019-12-04 14:30:00,25.0,0.558730159,20.953782262503186 +2019-12-04 14:45:00,25.0,0.569312169,20.954835978452827 +2019-12-04 15:00:00,25.0,0.582539683,20.955890214700815 +2019-12-04 15:15:00,25.0,0.599470899,20.956944971111568 +2019-12-04 15:30:00,25.0,0.602645503,20.958000247549414 +2019-12-04 15:45:00,25.0,0.601587302,20.95905604387862 +2019-12-04 16:00:00,25.0,0.592592593,20.960112359963375 +2019-12-04 16:15:00,25.0,0.57037037,20.961169195667836 +2019-12-04 16:30:00,25.0,0.553439153,20.96222655085606 +2019-12-04 16:45:00,25.0,0.544973545,20.96328442539204 +2019-12-04 17:00:00,25.0,0.539153439,20.964342819139723 +2019-12-04 17:15:00,25.0,0.537037037,20.965401731962967 +2019-12-04 17:30:00,25.0,0.526455026,20.966461163725576 +2019-12-04 17:45:00,25.0,0.511111111,20.967521114291277 +2019-12-04 18:00:00,25.0,0.486772487,20.968581583523747 +2019-12-04 18:15:00,25.0,0.483068783,20.96964257128658 +2019-12-04 18:30:00,25.0,0.48042328,20.970704077443308 +2019-12-04 18:45:00,25.0,0.478306878,20.9717661018574 +2019-12-04 19:00:00,25.0,0.481481481,20.97282864439226 +2019-12-04 19:15:00,25.0,0.471957672,20.973891704911217 +2019-12-04 19:30:00,25.0,0.478835979,20.97495528327753 +2019-12-04 19:45:00,25.0,0.477777778,20.976019379354412 +2019-12-04 20:00:00,25.0,0.488888889,20.977083993004996 +2019-12-04 20:15:00,25.0,0.499470899,20.978149124092333 +2019-12-04 20:30:00,25.0,0.510582011,20.979214772479445 +2019-12-04 20:45:00,25.0,0.505291005,20.980280938029253 +2019-12-04 21:00:00,25.0,0.511111111,20.981347620604627 +2019-12-04 21:15:00,25.0,0.50952381,20.98241482006836 +2019-12-04 21:30:00,25.0,0.515343915,20.9834825362832 +2019-12-04 21:45:00,25.0,0.530687831,20.984550769111813 +2019-12-04 22:00:00,25.0,0.524867725,20.98561951841679 +2019-12-04 22:15:00,25.0,0.514285714,20.986688784060675 +2019-12-04 22:30:00,25.0,0.525925926,20.987758565905935 +2019-12-04 22:45:00,25.0,0.532804233,20.988828863814966 +2019-12-04 23:00:00,25.0,0.542857143,20.98989967765011 +2019-12-04 23:15:00,25.0,0.555026455,20.990971007273643 +2019-12-04 23:30:00,25.0,0.56984127,20.992042852547755 +2019-12-04 23:45:00,25.0,0.568253968,20.993115213334583 +2019-12-05 00:00:00,25.0,0.571957672,20.99418808949621 +2019-12-05 00:15:00,25.0,0.582539683,20.995261480894634 +2019-12-05 00:30:00,25.0,0.595767196,20.99633538739178 +2019-12-05 00:45:00,25.0,0.589417989,20.997409808849543 +2019-12-05 01:00:00,25.0,0.575132275,20.998484745129716 +2019-12-05 01:15:00,25.0,0.567724868,20.999560196094038 +2019-12-05 01:30:00,25.0,0.579365079,21.000636161604177 +2019-12-05 01:45:00,25.0,0.601587302,21.001712641521753 +2019-12-05 02:00:00,25.0,0.626455026,21.002789635708297 +2019-12-05 02:15:00,25.0,0.64973545,21.003867144025282 +2019-12-05 02:30:00,25.0,0.655555556,21.004945166334124 +2019-12-05 02:45:00,25.0,0.637037037,21.006023702496165 +2019-12-05 03:00:00,25.0,0.606349206,21.007102752372678 +2019-12-05 03:15:00,25.0,0.597354497,21.008182315824865 +2019-12-05 03:30:00,25.0,0.6,21.009262392713886 +2019-12-05 03:45:00,25.0,0.600529101,21.01034298290081 +2019-12-05 04:00:00,25.0,0.595767196,21.01142408624664 +2019-12-05 04:15:00,25.0,0.564021164,21.012505702612344 +2019-12-05 04:30:00,25.0,0.531746032,21.013587831858786 +2019-12-05 04:45:00,25.0,0.532275132,21.014670473846788 +2019-12-05 05:00:00,25.0,0.534391534,21.015753628437086 +2019-12-05 05:15:00,25.0,0.546560847,21.016837295490376 +2019-12-05 05:30:00,25.0,0.559259259,21.01792147486727 +2019-12-05 05:45:00,25.0,0.574074074,21.01900616642831 +2019-12-05 06:00:00,25.0,0.570899471,21.02009137003399 +2019-12-05 06:15:00,25.0,0.563492063,21.021177085544732 +2019-12-05 06:30:00,25.0,0.557142857,21.02226331282088 +2019-12-05 06:45:00,25.0,0.544444444,21.023350051722716 +2019-12-05 07:00:00,25.0,0.53968254,21.024437302110478 +2019-12-05 07:15:00,25.0,0.533333333,21.02552506384431 +2019-12-05 07:30:00,25.0,0.534391534,21.026613336784298 +2019-12-05 07:45:00,25.0,0.558730159,21.027702120790476 +2019-12-05 08:00:00,25.0,0.596825397,21.0287914157228 +2019-12-05 08:15:00,25.0,0.626984127,21.02988122144116 +2019-12-05 08:30:00,25.0,0.644444444,21.030971537805375 +2019-12-05 08:45:00,25.0,0.652910053,21.03206236467522 +2019-12-05 09:00:00,25.0,0.662433862,21.033153701910386 +2019-12-05 09:15:00,25.0,0.677248677,21.034245549370493 +2019-12-05 09:30:00,25.0,0.696296296,21.035337906915117 +2019-12-05 09:45:00,25.0,0.706349206,21.036430774403755 +2019-12-05 10:00:00,25.0,0.713756614,21.037524151695834 +2019-12-05 10:15:00,25.0,0.707936508,21.03861803865072 +2019-12-05 10:30:00,25.0,0.697354497,21.039712435127726 +2019-12-05 10:45:00,25.0,0.706349206,21.040807340986078 +2019-12-05 11:00:00,25.0,0.713227513,21.041902756084948 +2019-12-05 11:15:00,25.0,0.724867725,21.042998680283446 +2019-12-05 11:30:00,25.0,0.717989418,21.04409511344061 +2019-12-05 11:45:00,25.0,0.71957672,21.045192055415413 +2019-12-05 12:00:00,25.0,0.723280423,21.046289506066756 +2019-12-05 12:15:00,25.0,0.731216931,21.047387465253497 +2019-12-05 12:30:00,25.0,0.738624339,21.048485932834406 +2019-12-05 12:45:00,25.0,0.747619048,21.049584908668194 +2019-12-05 13:00:00,25.0,0.768253968,21.050684392613512 +2019-12-05 13:15:00,25.0,0.784656085,21.051784384528943 +2019-12-05 13:30:00,25.0,0.816931217,21.052884884273002 +2019-12-05 13:45:00,25.0,0.824867725,21.053985891704134 +2019-12-05 14:00:00,25.0,0.834391534,21.055087406680734 +2019-12-05 14:15:00,25.0,0.842328042,21.05618942906112 +2019-12-05 14:30:00,25.0,0.855026455,21.057291958703537 +2019-12-05 14:45:00,25.0,0.861375661,21.058394995466195 +2019-12-05 15:00:00,25.0,0.868783069,21.059498539207205 +2019-12-05 15:15:00,25.0,0.878835979,21.06060258978463 +2019-12-05 15:30:00,25.0,0.887301587,21.06170714705646 +2019-12-05 15:45:00,25.0,0.897883598,21.062812210880633 +2019-12-05 16:00:00,25.0,0.898941799,21.06391778111501 +2019-12-05 16:15:00,25.0,0.900529101,21.06502385761738 +2019-12-05 16:30:00,25.0,0.903703704,21.06613044024549 +2019-12-05 16:45:00,25.0,0.907936508,21.067237528857007 +2019-12-05 17:00:00,25.0,0.912698413,21.068345123309527 +2019-12-05 17:15:00,25.0,0.863492063,21.0694532234606 +2019-12-05 17:30:00,25.0,0.860846561,21.07056182916769 +2019-12-05 17:45:00,25.0,0.862433862,21.07167094028821 +2019-12-05 18:00:00,25.0,0.863492063,21.072780556679497 +2019-12-05 18:15:00,25.0,0.863492063,21.07389067819884 +2019-12-05 18:30:00,25.0,0.864021164,21.07500130470345 +2019-12-05 18:45:00,25.0,0.864550265,21.07611243605046 +2019-12-05 19:00:00,25.0,0.867195767,21.077224072096982 +2019-12-05 19:15:00,25.0,0.867724868,21.078336212700012 +2019-12-05 19:30:00,25.0,0.83968254,21.079448857716514 +2019-12-05 19:45:00,25.0,0.83015873,21.080562007003373 +2019-12-05 20:00:00,25.0,0.831746032,21.081675660417417 +2019-12-05 20:15:00,25.0,0.832804233,21.082789817815403 +2019-12-05 20:30:00,25.0,0.831746032,21.08390447905402 +2019-12-05 20:45:00,25.0,0.829100529,21.08501964398991 +2019-12-05 21:00:00,25.0,0.824867725,21.086135312479627 +2019-12-05 21:15:00,25.0,0.811111111,21.087251484379678 +2019-12-05 21:30:00,25.0,0.722751323,21.08836815954649 +2019-12-05 21:45:00,25.0,0.692592593,21.089485337836447 +2019-12-05 22:00:00,25.0,0.692592593,21.090603019105846 +2019-12-05 22:15:00,25.0,0.692063492,21.091721203210923 +2019-12-05 22:30:00,25.0,0.691005291,21.092839890007866 +2019-12-05 22:45:00,25.0,0.716931217,21.093959079352782 +2019-12-05 23:00:00,25.0,0.705291005,21.09507877110172 +2019-12-05 23:15:00,25.0,0.673544974,21.096198965110656 +2019-12-05 23:30:00,25.0,0.673544974,21.097319661235517 +2019-12-05 23:45:00,25.0,0.592592593,21.09844085933215 +2019-12-06 00:00:00,25.0,0.582539683,21.099562559256345 +2019-12-06 00:15:00,25.0,0.580952381,21.10068476086383 +2019-12-06 00:30:00,25.0,0.575132275,21.101807464010264 +2019-12-06 00:45:00,25.0,0.567724868,21.10293066855124 +2019-12-06 01:00:00,25.0,0.513756614,21.10405437434229 +2019-12-06 01:15:00,25.0,0.514814815,21.105178581238878 +2019-12-06 01:30:00,25.0,0.516402116,21.106303289096413 +2019-12-06 01:45:00,25.0,0.516402116,21.10742849777022 +2019-12-06 02:00:00,25.0,0.517460317,21.108554207115585 +2019-12-06 02:15:00,25.0,0.517460317,21.10968041698771 +2019-12-06 02:30:00,25.0,0.517989418,21.110807127241742 +2019-12-06 02:45:00,25.0,0.517989418,21.111934337732755 +2019-12-06 03:00:00,25.0,0.517460317,21.113062048315772 +2019-12-06 03:15:00,25.0,0.516931217,21.114190258845742 +2019-12-06 03:30:00,25.0,0.517460317,21.115318969177544 +2019-12-06 03:45:00,25.0,0.517989418,21.116448179166017 +2019-12-06 04:00:00,25.0,0.517989418,21.117577888665906 +2019-12-06 04:15:00,25.0,0.517989418,21.118708097531915 +2019-12-06 04:30:00,25.0,0.517989418,21.119838805618656 +2019-12-06 04:45:00,25.0,0.518518519,21.120970012780717 +2019-12-06 05:00:00,25.0,0.518518519,21.12210171887259 +2019-12-06 05:15:00,25.0,0.518518519,21.123233923748703 +2019-12-06 05:30:00,25.0,0.518518519,21.12436662726345 +2019-12-06 05:45:00,25.0,0.518518519,21.12549982927112 +2019-12-06 06:00:00,25.0,0.518518519,21.12663352962597 +2019-12-06 06:15:00,25.0,0.518518519,21.12776772818217 +2019-12-06 06:30:00,25.0,0.517989418,21.12890242479385 +2019-12-06 06:45:00,25.0,0.518518519,21.130037619315058 +2019-12-06 07:00:00,25.0,0.518518519,21.131173311599774 +2019-12-06 07:15:00,25.0,0.518518519,21.132309501501933 +2019-12-06 07:30:00,25.0,0.519047619,21.133446188875396 +2019-12-06 07:45:00,25.0,0.519047619,21.134583373573953 +2019-12-06 08:00:00,25.0,0.517989418,21.135721055451334 +2019-12-06 08:15:00,25.0,0.519047619,21.13685923436122 +2019-12-06 08:30:00,25.0,0.518518519,21.13799791015721 +2019-12-06 08:45:00,25.0,0.518518519,21.139137082692837 +2019-12-06 09:00:00,25.0,0.518518519,21.140276751821595 +2019-12-06 09:15:00,25.0,0.518518519,21.14141691739688 +2019-12-06 09:30:00,25.0,0.519047619,21.14255757927205 +2019-12-06 09:45:00,25.0,0.519047619,21.143698737300387 +2019-12-06 10:00:00,25.0,0.547619048,21.14484039133512 +2019-12-06 10:15:00,25.0,0.6,21.145982541229397 +2019-12-06 10:30:00,25.0,0.622222222,21.147125186836313 +2019-12-06 10:45:00,25.0,0.642857143,21.148268328008907 +2019-12-06 11:00:00,25.0,0.614814815,21.14941196460014 +2019-12-06 11:15:00,25.0,0.603174603,21.150556096462907 +2019-12-06 11:30:00,25.0,0.602645503,21.151700723450062 +2019-12-06 11:45:00,25.0,0.602645503,21.152845845414376 +2019-12-06 12:00:00,25.0,0.621693122,21.153991462208555 +2019-12-06 12:15:00,25.0,0.683068783,21.15513757368525 +2019-12-06 12:30:00,25.0,0.688888889,21.156284179697046 +2019-12-06 12:45:00,25.0,0.688888889,21.157431280096464 +2019-12-06 13:00:00,25.0,0.689417989,21.158578874735955 +2019-12-06 13:15:00,25.0,0.710582011,21.159726963467925 +2019-12-06 13:30:00,25.0,0.711111111,21.160875546144702 +2019-12-06 13:45:00,25.0,0.71005291,21.162024622618542 +2019-12-06 14:00:00,25.0,0.707936508,21.163174192741653 +2019-12-06 14:15:00,25.0,0.670899471,21.164324256366182 +2019-12-06 14:30:00,25.0,0.66984127,21.165474813344197 +2019-12-06 14:45:00,25.0,0.669312169,21.16662586352771 +2019-12-06 15:00:00,25.0,0.668783069,21.16777740676868 +2019-12-06 15:15:00,25.0,0.668253968,21.16892944291898 +2019-12-06 15:30:00,25.0,0.666666667,21.17008197183044 +2019-12-06 15:45:00,25.0,0.668253968,21.17123499335482 +2019-12-06 16:00:00,25.0,0.668783069,21.17238850734381 +2019-12-06 16:15:00,25.0,0.669312169,21.17354251364905 +2019-12-06 16:30:00,25.0,0.66984127,21.1746970121221 +2019-12-06 16:45:00,25.0,0.67037037,21.175852002614477 +2019-12-06 17:00:00,25.0,0.668253968,21.17700748497761 +2019-12-06 17:15:00,25.0,0.668783069,21.178163459062894 +2019-12-06 17:30:00,25.0,0.67037037,21.179319924721625 +2019-12-06 17:45:00,25.0,0.671957672,21.180476881805074 +2019-12-06 18:00:00,25.0,0.671957672,21.181634330164425 +2019-12-06 18:15:00,25.0,0.671957672,21.182792269650797 +2019-12-06 18:30:00,25.0,0.670899471,21.18395070011526 +2019-12-06 18:45:00,25.0,0.670899471,21.185109621408817 +2019-12-06 19:00:00,25.0,0.670899471,21.186269033382402 +2019-12-06 19:15:00,25.0,0.670899471,21.187428935886878 +2019-12-06 19:30:00,25.0,0.671957672,21.18858932877307 +2019-12-06 19:45:00,25.0,0.671428571,21.189750211891724 +2019-12-06 20:00:00,25.0,0.672486772,21.190911585093513 +2019-12-06 20:15:00,25.0,0.658201058,21.192073448229074 +2019-12-06 20:30:00,25.0,0.65026455,21.19323580114896 +2019-12-06 20:45:00,25.0,0.668783069,21.19439864370366 +2019-12-06 21:00:00,25.0,0.673544974,21.19556197574361 +2019-12-06 21:15:00,25.0,0.667724868,21.196725797119182 +2019-12-06 21:30:00,25.0,0.653439153,21.197890107680685 +2019-12-06 21:45:00,25.0,0.617989418,21.199054907278352 +2019-12-06 22:00:00,25.0,0.584126984,21.200220195762377 +2019-12-06 22:15:00,25.0,0.636507937,21.20138597298287 +2019-12-06 22:30:00,25.0,0.678835979,21.202552238789888 +2019-12-06 22:45:00,25.0,0.676190476,21.203718993033416 +2019-12-06 23:00:00,25.0,0.675661376,21.2048862355634 +2019-12-06 23:15:00,25.0,0.676190476,21.206053966229693 +2019-12-06 23:30:00,25.0,0.702116402,21.2072221848821 +2019-12-06 23:45:00,25.0,0.736507937,21.208390891370367 +2019-12-07 00:00:00,25.0,0.765079365,21.20956008554417 +2019-12-07 00:15:00,25.0,0.778306878,21.210729767253127 +2019-12-07 00:30:00,25.0,0.812698413,21.211899936346782 +2019-12-07 00:45:00,25.0,0.821693122,21.213070592674633 +2019-12-07 01:00:00,25.0,0.831746032,21.21424173608611 +2019-12-07 01:15:00,25.0,0.836507937,21.215413366430568 +2019-12-07 01:30:00,25.0,0.844973545,21.21658548355732 +2019-12-07 01:45:00,25.0,0.848148148,21.2177580873156 +2019-12-07 02:00:00,25.0,0.848677249,21.218931177554587 +2019-12-07 02:15:00,25.0,0.842857143,21.220104754123387 +2019-12-07 02:30:00,25.0,0.847619048,21.221278816871063 +2019-12-07 02:45:00,25.0,0.849206349,21.2224533656466 +2019-12-07 03:00:00,25.0,0.850793651,21.22362840029892 +2019-12-07 03:15:00,25.0,0.851851852,21.2248039206769 +2019-12-07 03:30:00,25.0,0.851322751,21.225979926629332 +2019-12-07 03:45:00,25.0,0.85026455,21.22715641800496 +2019-12-07 04:00:00,25.0,0.851322751,21.22833339465245 +2019-12-07 04:15:00,25.0,0.850793651,21.22951085642043 +2019-12-07 04:30:00,25.0,0.848148148,21.23068880315745 +2019-12-07 04:45:00,25.0,0.849206349,21.231867234711988 +2019-12-07 05:00:00,25.0,0.808994709,21.233046150932488 +2019-12-07 05:15:00,25.0,0.808994709,21.234225551667308 +2019-12-07 05:30:00,25.0,0.806878307,21.235405436764744 +2019-12-07 05:45:00,25.0,0.8,21.236585806073045 +2019-12-07 06:00:00,25.0,0.801587302,21.23776665944039 +2019-12-07 06:15:00,25.0,0.79047619,21.23894799671489 +2019-12-07 06:30:00,25.0,0.784656085,21.240129817744595 +2019-12-07 06:45:00,25.0,0.768253968,21.241312122377508 +2019-12-07 07:00:00,25.0,0.77037037,21.242494910461552 +2019-12-07 07:15:00,25.0,0.774603175,21.243678181844587 +2019-12-07 07:30:00,25.0,0.764550265,21.244861936374434 +2019-12-07 07:45:00,25.0,0.744973545,21.246046173898826 +2019-12-07 08:00:00,25.0,0.743915344,21.247230894265442 +2019-12-07 08:15:00,25.0,0.744444444,21.248416097321897 +2019-12-07 08:30:00,25.0,0.773015873,21.24960178291576 +2019-12-07 08:45:00,25.0,0.776719577,21.25078795089452 +2019-12-07 09:00:00,25.0,0.792592593,21.251974601105598 +2019-12-07 09:15:00,25.0,0.763492063,21.253161733396382 +2019-12-07 09:30:00,25.0,0.768783069,21.254349347614173 +2019-12-07 09:45:00,25.0,0.794708995,21.25553744360622 +2019-12-07 10:00:00,25.0,0.812698413,21.256726021219695 +2019-12-07 10:15:00,25.0,0.775661376,21.257915080301736 +2019-12-07 10:30:00,25.0,0.783068783,21.259104620699397 +2019-12-07 10:45:00,25.0,0.802645503,21.26029464225967 +2019-12-07 11:00:00,25.0,0.798941799,21.261485144829507 +2019-12-07 11:15:00,25.0,0.781481481,21.26267612825577 +2019-12-07 11:30:00,25.0,0.751851852,21.263867592385278 +2019-12-07 11:45:00,25.0,0.782539683,21.265059537064776 +2019-12-07 12:00:00,25.0,0.798941799,21.266251962140963 +2019-12-07 12:15:00,25.0,0.793650794,21.26744486746046 +2019-12-07 12:30:00,25.0,0.738624339,21.268638252869827 +2019-12-07 12:45:00,25.0,0.733862434,21.269832118215582 +2019-12-07 13:00:00,25.0,0.71005291,21.27102646334416 +2019-12-07 13:15:00,25.0,0.665079365,21.272221288101942 +2019-12-07 13:30:00,25.0,0.652380952,21.27341659233524 +2019-12-07 13:45:00,25.0,0.658201058,21.274612375890325 +2019-12-07 14:00:00,25.0,0.694708995,21.275808638613384 +2019-12-07 14:15:00,25.0,0.746031746,21.277005380350545 +2019-12-07 14:30:00,25.0,0.778835979,21.278202600947896 +2019-12-07 14:45:00,25.0,0.796825397,21.27940030025144 +2019-12-07 15:00:00,25.0,0.775132275,21.280598478107123 +2019-12-07 15:15:00,25.0,0.771957672,21.28179713436083 +2019-12-07 15:30:00,25.0,0.764550265,21.282996268858398 +2019-12-07 15:45:00,25.0,0.767195767,21.284195881445584 +2019-12-07 16:00:00,25.0,0.765079365,21.28539597196809 +2019-12-07 16:15:00,25.0,0.751322751,21.286596540271564 +2019-12-07 16:30:00,25.0,0.72962963,21.28779758620158 +2019-12-07 16:45:00,25.0,0.716931217,21.288999109603665 +2019-12-07 17:00:00,25.0,0.688888889,21.29020111032326 +2019-12-07 17:15:00,25.0,0.669312169,21.291403588205778 +2019-12-07 17:30:00,25.0,0.669312169,21.292606543096547 +2019-12-07 17:45:00,25.0,0.678835979,21.293809974840833 +2019-12-07 18:00:00,25.0,0.712698413,21.295013883283865 +2019-12-07 18:15:00,25.0,0.757142857,21.296218268270778 +2019-12-07 18:30:00,25.0,0.766137566,21.297423129646667 +2019-12-07 18:45:00,25.0,0.761904762,21.298628467256556 +2019-12-07 19:00:00,25.0,0.767195767,21.29983428094542 +2019-12-07 19:15:00,25.0,0.753968254,21.301040570558158 +2019-12-07 19:30:00,25.0,0.738095238,21.30224733593961 +2019-12-07 19:45:00,25.0,0.750793651,21.303454576934577 +2019-12-07 20:00:00,25.0,0.768783069,21.30466229338776 +2019-12-07 20:15:00,25.0,0.787301587,21.305870485143835 +2019-12-07 20:30:00,25.0,0.795767196,21.307079152047386 +2019-12-07 20:45:00,25.0,0.795767196,21.308288293942965 +2019-12-07 21:00:00,25.0,0.794708995,21.309497910675045 +2019-12-07 21:15:00,25.0,0.792592593,21.310708002088038 +2019-12-07 21:30:00,25.0,0.796825397,21.31191856802631 +2019-12-07 21:45:00,25.0,0.802645503,21.313129608334147 +2019-12-07 22:00:00,25.0,0.804232804,21.314341122855783 +2019-12-07 22:15:00,25.0,0.799470899,21.315553111435385 +2019-12-07 22:30:00,25.0,0.793121693,21.31676557391708 +2019-12-07 22:45:00,25.0,0.787301587,21.317978510144904 +2019-12-07 23:00:00,25.0,0.792063492,21.319191919962847 +2019-12-07 23:15:00,25.0,0.791534392,21.320405803214847 +2019-12-07 23:30:00,25.0,0.783068783,21.321620159744764 +2019-12-07 23:45:00,25.0,0.779365079,21.322834989396405 +2019-12-08 00:00:00,25.0,0.774603175,21.324050292013517 +2019-12-08 00:15:00,25.0,0.762433862,21.32526606743979 +2019-12-08 00:30:00,25.0,0.762433862,21.32648231551884 +2019-12-08 00:45:00,25.0,0.774603175,21.32769903609423 +2019-12-08 01:00:00,25.0,0.742857143,21.328916229009472 +2019-12-08 01:15:00,25.0,0.69047619,21.330133894108002 +2019-12-08 01:30:00,25.0,0.688888889,21.331352031233195 +2019-12-08 01:45:00,25.0,0.693650794,21.332570640228383 +2019-12-08 02:00:00,25.0,0.642857143,21.33378972093682 +2019-12-08 02:15:00,25.0,0.638624339,21.335009273201706 +2019-12-08 02:30:00,25.0,0.63015873,21.336229296866172 +2019-12-08 02:45:00,25.0,0.635978836,21.33744979177331 +2019-12-08 03:00:00,25.0,0.642328042,21.338670757766128 +2019-12-08 03:15:00,25.0,0.637566138,21.33989219468758 +2019-12-08 03:30:00,25.0,0.638624339,21.34111410238057 +2019-12-08 03:45:00,25.0,0.635978836,21.342336480687926 +2019-12-08 04:00:00,25.0,0.615873016,21.343559329452432 +2019-12-08 04:15:00,25.0,0.572486772,21.344782648516787 +2019-12-08 04:30:00,25.0,0.564550265,21.346006437723663 +2019-12-08 04:45:00,25.0,0.562433862,21.347230696915645 +2019-12-08 05:00:00,25.0,0.553439153,21.34845542593526 +2019-12-08 05:15:00,25.0,0.535449735,21.34968062462499 +2019-12-08 05:30:00,25.0,0.528042328,21.350906292827244 +2019-12-08 05:45:00,25.0,0.53015873,21.352132430384373 +2019-12-08 06:00:00,25.0,0.537037037,21.353359037138667 +2019-12-08 06:15:00,25.0,0.541269841,21.35458611293236 +2019-12-08 06:30:00,25.0,0.531746032,21.355813657607623 +2019-12-08 06:45:00,25.0,0.517989418,21.357041671006556 +2019-12-08 07:00:00,25.0,0.511111111,21.358270152971226 +2019-12-08 07:15:00,25.0,0.484656085,21.359499103343616 +2019-12-08 07:30:00,25.0,0.437566138,21.36072852196565 +2019-12-08 07:45:00,25.0,0.424867725,21.361958408679197 +2019-12-08 08:00:00,25.0,0.450793651,21.36318876332608 +2019-12-08 08:15:00,25.0,0.473015873,21.36441958574803 +2019-12-08 08:30:00,25.0,0.52010582,21.365650875786745 +2019-12-08 08:45:00,25.0,0.498412698,21.366882633283858 +2019-12-08 09:00:00,25.0,0.486772487,21.368114858080933 +2019-12-08 09:15:00,25.0,0.486772487,21.369347550019477 +2019-12-08 09:30:00,25.0,0.525396825,21.37058070894093 +2019-12-08 09:45:00,25.0,0.525925926,21.3718143346867 +2019-12-08 10:00:00,25.0,0.520634921,21.3730484270981 +2019-12-08 10:15:00,25.0,0.544444444,21.3742829860164 +2019-12-08 10:30:00,25.0,0.546031746,21.375518011282818 +2019-12-08 10:45:00,25.0,0.551322751,21.37675350273849 +2019-12-08 11:00:00,25.0,0.556084656,21.377989460224512 +2019-12-08 11:15:00,25.0,0.561904762,21.379225883581903 +2019-12-08 11:30:00,25.0,0.568783069,21.380462772651647 +2019-12-08 11:45:00,25.0,0.586772487,21.38170012727464 +2019-12-08 12:00:00,25.0,0.587301587,21.38293794729173 +2019-12-08 12:15:00,25.0,0.588888889,21.384176232543712 +2019-12-08 12:30:00,25.0,0.580952381,21.385414982871318 +2019-12-08 12:45:00,25.0,0.589417989,21.386654198115206 +2019-12-08 13:00:00,25.0,0.589417989,21.38789387811599 +2019-12-08 13:15:00,25.0,0.585714286,21.389134022714224 +2019-12-08 13:30:00,25.0,0.579365079,21.390374631750394 +2019-12-08 13:45:00,25.0,0.594708995,21.391615705064922 +2019-12-08 14:00:00,25.0,0.633862434,21.392857242498195 +2019-12-08 14:15:00,25.0,0.628042328,21.394099243890516 +2019-12-08 14:30:00,25.0,0.641798942,21.395341709082135 +2019-12-08 14:45:00,25.0,0.666137566,21.396584637913236 +2019-12-08 15:00:00,25.0,0.752910053,21.397828030223963 +2019-12-08 15:15:00,25.0,0.765079365,21.399071885854383 +2019-12-08 15:30:00,25.0,0.785185185,21.400316204644504 +2019-12-08 15:45:00,25.0,0.827513228,21.401560986434287 +2019-12-08 16:00:00,25.0,0.829100529,21.40280623106362 +2019-12-08 16:15:00,25.0,0.830687831,21.40405193837234 +2019-12-08 16:30:00,25.0,0.830687831,21.405298108200213 +2019-12-08 16:45:00,25.0,0.829100529,21.40654474038697 +2019-12-08 17:00:00,25.0,0.82962963,21.40779183477225 +2019-12-08 17:15:00,25.0,0.831746032,21.409039391195652 +2019-12-08 17:30:00,25.0,0.831746032,21.41028740949672 +2019-12-08 17:45:00,25.0,0.832804233,21.41153588951493 +2019-12-08 18:00:00,25.0,0.832275132,21.412784831089688 +2019-12-08 18:15:00,25.0,0.832275132,21.414034234060367 +2019-12-08 18:30:00,25.0,0.832275132,21.41528409826626 +2019-12-08 18:45:00,25.0,0.832275132,21.416534423546604 +2019-12-08 19:00:00,25.0,0.82962963,21.417785209740575 +2019-12-08 19:15:00,25.0,0.832275132,21.41903645668731 +2019-12-08 19:30:00,25.0,0.833333333,21.42028816422586 +2019-12-08 19:45:00,25.0,0.831746032,21.421540332195217 +2019-12-08 20:00:00,25.0,0.832804233,21.422792960434347 +2019-12-08 20:15:00,25.0,0.833862434,21.42404604878212 +2019-12-08 20:30:00,25.0,0.834920635,21.425299597077366 +2019-12-08 20:45:00,25.0,0.833862434,21.42655360515884 +2019-12-08 21:00:00,25.0,0.832275132,21.42780807286526 +2019-12-08 21:15:00,25.0,0.828571429,21.429063000035278 +2019-12-08 21:30:00,25.0,0.857142857,21.430318386507466 +2019-12-08 21:45:00,25.0,0.860846561,21.431574232120365 +2019-12-08 22:00:00,25.0,0.859259259,21.432830536712444 +2019-12-08 22:15:00,25.0,0.858201058,21.434087300122112 +2019-12-08 22:30:00,25.0,0.858201058,21.435344522187716 +2019-12-08 22:45:00,25.0,0.859259259,21.43660220274756 +2019-12-08 23:00:00,25.0,0.766666667,21.437860341639876 +2019-12-08 23:15:00,25.0,0.748148148,21.439118938702826 +2019-12-08 23:30:00,25.0,0.748677249,21.440377993774547 +2019-12-08 23:45:00,25.0,0.748148148,21.441637506693084 +2019-12-09 00:00:00,25.0,0.748677249,21.442897477296437 +2019-12-09 00:15:00,25.0,0.74021164,21.44415790542254 +2019-12-09 00:30:00,25.0,0.732275132,21.445418790909287 +2019-12-09 00:45:00,25.0,0.729100529,21.44668013359449 +2019-12-09 01:00:00,25.0,0.614814815,21.447941933315914 +2019-12-09 01:15:00,25.0,0.598941799,21.449204189911267 +2019-12-09 01:30:00,25.0,0.596296296,21.450466903218192 +2019-12-09 01:45:00,25.0,0.597354497,21.45173007307428 +2019-12-09 02:00:00,25.0,0.585185185,21.452993699317048 +2019-12-09 02:15:00,25.0,0.579365079,21.454257781783976 +2019-12-09 02:30:00,25.0,0.578835979,21.455522320312475 +2019-12-09 02:45:00,25.0,0.578306878,21.456787314739884 +2019-12-09 03:00:00,25.0,0.588359788,21.458052764903513 +2019-12-09 03:15:00,25.0,0.594708995,21.45931867064059 +2019-12-09 03:30:00,25.0,0.599470899,21.4605850317883 +2019-12-09 03:45:00,25.0,0.604232804,21.461851848183734 +2019-12-09 04:00:00,25.0,0.643386243,21.463119119663983 +2019-12-09 04:15:00,25.0,0.667195767,21.464386846066027 +2019-12-09 04:30:00,25.0,0.667724868,21.465655027226816 +2019-12-09 04:45:00,25.0,0.671428571,21.466923662983234 +2019-12-09 05:00:00,25.0,0.728571429,21.468192753172104 +2019-12-09 05:15:00,25.0,0.731216931,21.469462297630198 +2019-12-09 05:30:00,25.0,0.749206349,21.47073229619421 +2019-12-09 05:45:00,25.0,0.763492063,21.472002748700806 +2019-12-09 06:00:00,25.0,0.807407407,21.47327365498657 +2019-12-09 06:15:00,25.0,0.837037037,21.47454501488803 +2019-12-09 06:30:00,25.0,0.846031746,21.475816828241676 +2019-12-09 06:45:00,25.0,0.843386243,21.47708909488391 +2019-12-09 07:00:00,25.0,0.842857143,21.4783618146511 +2019-12-09 07:15:00,25.0,0.852380952,21.479634987379534 +2019-12-09 07:30:00,25.0,0.848677249,21.480908612905466 +2019-12-09 07:45:00,25.0,0.841798942,21.482182691065073 +2019-12-09 08:00:00,25.0,0.842857143,21.483457221694476 +2019-12-09 08:15:00,25.0,0.839153439,21.484732204629754 +2019-12-09 08:30:00,25.0,0.814285714,21.48600763970691 +2019-12-09 08:45:00,25.0,0.78994709,21.48728352676189 +2019-12-09 09:00:00,25.0,0.757142857,21.488559865630585 +2019-12-09 09:15:00,25.0,0.755555556,21.48983665614884 +2019-12-09 09:30:00,25.0,0.746031746,21.491113898152424 +2019-12-09 09:45:00,25.0,0.717460317,21.492391591477052 +2019-12-09 10:00:00,25.0,0.647619048,21.493669735958395 +2019-12-09 10:15:00,25.0,0.647619048,21.49494833143205 +2019-12-09 10:30:00,25.0,0.615343915,21.49622737773356 +2019-12-09 10:45:00,25.0,0.578835979,21.497506874698402 +2019-12-09 11:00:00,25.0,0.584656085,21.49878682216202 +2019-12-09 11:15:00,25.0,0.582010582,21.50006721995978 +2019-12-09 11:30:00,25.0,0.611111111,21.501348067926983 +2019-12-09 11:45:00,25.0,0.631746032,21.5026293658989 +2019-12-09 12:00:00,25.0,0.641269841,21.50391111371072 +2019-12-09 12:15:00,25.0,0.66984127,21.505193311197573 +2019-12-09 12:30:00,25.0,0.731746032,21.506475958194557 +2019-12-09 12:45:00,25.0,0.738624339,21.507759054536685 +2019-12-09 13:00:00,25.0,0.744973545,21.50904260005892 +2019-12-09 13:15:00,25.0,0.780952381,21.51032659459617 +2019-12-09 13:30:00,25.0,0.77989418,21.51161103798329 +2019-12-09 13:45:00,25.0,0.773544974,21.51289593005507 +2019-12-09 14:00:00,25.0,0.772486772,21.514181270646237 +2019-12-09 14:15:00,25.0,0.805820106,21.51546705959148 +2019-12-09 14:30:00,25.0,0.823280423,21.516753296725412 +2019-12-09 14:45:00,25.0,0.829100529,21.518039981882595 +2019-12-09 15:00:00,25.0,0.83968254,21.519327114897525 +2019-12-09 15:15:00,25.0,0.834391534,21.52061469560466 +2019-12-09 15:30:00,25.0,0.833862434,21.521902723838384 +2019-12-09 15:45:00,25.0,0.834391534,21.52319119943302 +2019-12-09 16:00:00,25.0,0.834920635,21.52448012222285 +2019-12-09 16:15:00,25.0,0.79047619,21.52576949204209 +2019-12-09 16:30:00,25.0,0.773015873,21.5270593087249 +2019-12-09 16:45:00,25.0,0.773015873,21.528349572105366 +2019-12-09 17:00:00,25.0,0.771957672,21.52964028201755 +2019-12-09 17:15:00,25.0,0.77037037,21.530931438295433 +2019-12-09 17:30:00,25.0,0.76984127,21.53222304077293 +2019-12-09 17:45:00,25.0,0.767724868,21.533515089283927 +2019-12-09 18:00:00,25.0,0.761375661,21.534807583662236 +2019-12-09 18:15:00,25.0,0.768253968,21.536100523741613 +2019-12-09 18:30:00,25.0,0.771957672,21.537393909355746 +2019-12-09 18:45:00,25.0,0.768253968,21.538687740338293 +2019-12-09 19:00:00,25.0,0.768783069,21.539982016522828 +2019-12-09 19:15:00,25.0,0.767724868,21.541276737742876 +2019-12-09 19:30:00,25.0,0.767195767,21.54257190383192 +2019-12-09 19:45:00,25.0,0.767724868,21.543867514623365 +2019-12-09 20:00:00,25.0,0.769312169,21.545163569950567 +2019-12-09 20:15:00,25.0,0.770899471,21.546460069646816 +2019-12-09 20:30:00,25.0,0.77037037,21.547757013545368 +2019-12-09 20:45:00,25.0,0.771428571,21.5490544014794 +2019-12-09 21:00:00,25.0,0.772486772,21.550352233282034 +2019-12-09 21:15:00,25.0,0.773015873,21.55165050878635 +2019-12-09 21:30:00,25.0,0.771957672,21.55294922782535 +2019-12-09 21:45:00,25.0,0.771428571,21.554248390232004 +2019-12-09 22:00:00,25.0,0.770899471,21.55554799583919 +2019-12-09 22:15:00,25.0,0.773015873,21.55684804447977 +2019-12-09 22:30:00,25.0,0.774603175,21.558148535986525 +2019-12-09 22:45:00,25.0,0.773015873,21.559449470192167 +2019-12-09 23:00:00,25.0,0.773544974,21.560750846929388 +2019-12-09 23:15:00,25.0,0.774074074,21.562052666030787 +2019-12-09 23:30:00,25.0,0.771957672,21.56335492732893 +2019-12-09 23:45:00,25.0,0.773015873,21.564657630656306 +2019-12-10 00:00:00,25.0,0.771428571,21.565960775845372 +2019-12-10 00:15:00,25.0,0.771428571,21.56726436272851 +2019-12-10 00:30:00,25.0,0.753968254,21.56856839113804 +2019-12-10 00:45:00,25.0,0.744444444,21.569872860906248 +2019-12-10 01:00:00,25.0,0.760846561,21.571177771865344 +2019-12-10 01:15:00,25.0,0.763492063,21.57248312384749 +2019-12-10 01:30:00,25.0,0.76031746,21.57378891668478 +2019-12-10 01:45:00,25.0,0.746031746,21.575095150209272 +2019-12-10 02:00:00,25.0,0.72010582,21.57640182425295 +2019-12-10 02:15:00,25.0,0.703703704,21.57770893864774 +2019-12-10 02:30:00,25.0,0.712169312,21.57901649322553 +2019-12-10 02:45:00,25.0,0.711640212,21.58032448781813 +2019-12-10 03:00:00,25.0,0.697883598,21.581632922257313 +2019-12-10 03:15:00,25.0,0.691005291,21.58294179637477 +2019-12-10 03:30:00,25.0,0.662433862,21.584251110002164 +2019-12-10 03:45:00,25.0,0.638095238,21.585560862971082 +2019-12-10 04:00:00,25.0,0.615343915,21.586871055113058 +2019-12-10 04:15:00,25.0,0.57989418,21.588181686259578 +2019-12-10 04:30:00,25.0,0.526984127,21.589492756242066 +2019-12-10 04:45:00,25.0,0.478306878,21.590804264891887 +2019-12-10 05:00:00,25.0,0.437037037,21.59211621204034 +2019-12-10 05:15:00,25.0,0.417460317,21.593428597518702 +2019-12-10 05:30:00,25.0,0.388359788,21.594741421158155 +2019-12-10 05:45:00,25.0,0.373544974,21.59605468278984 +2019-12-10 06:00:00,25.0,0.344973545,21.597368382244856 +2019-12-10 06:15:00,25.0,0.317989418,21.59868251935422 +2019-12-10 06:30:00,25.0,0.282539683,21.599997093948904 +2019-12-10 06:45:00,25.0,0.248148148,21.601312105859833 +2019-12-10 07:00:00,25.0,0.257142857,21.60262755491786 +2019-12-10 07:15:00,25.0,0.274074074,21.603943440953792 +2019-12-10 07:30:00,25.0,0.273544974,21.605259763798372 +2019-12-10 07:45:00,25.0,0.230687831,21.6065765232823 +2019-12-10 08:00:00,25.0,0.213227513,21.607893719236205 +2019-12-10 08:15:00,25.0,0.223280423,21.609211351490664 +2019-12-10 08:30:00,25.0,0.255026455,21.61052941987621 +2019-12-10 08:45:00,25.0,0.261375661,21.611847924223305 +2019-12-10 09:00:00,25.0,0.287830688,21.613166864362356 +2019-12-10 09:15:00,25.0,0.335449735,21.614486240123718 +2019-12-10 09:30:00,25.0,0.402116402,21.615806051337696 +2019-12-10 09:45:00,25.0,0.450793651,21.61712629783453 +2019-12-10 10:00:00,25.0,0.503703704,21.6184469794444 +2019-12-10 10:15:00,25.0,0.555026455,21.61976809599745 +2019-12-10 10:30:00,25.0,0.594179894,21.621089647323746 +2019-12-10 10:45:00,25.0,0.624338624,21.62241163325331 +2019-12-10 11:00:00,25.0,0.626455026,21.623734053616097 +2019-12-10 11:15:00,25.0,0.639153439,21.62505690824203 +2019-12-10 11:30:00,25.0,0.660846561,21.62638019696095 +2019-12-10 11:45:00,25.0,0.688888889,21.62770391960265 +2019-12-10 12:00:00,25.0,0.695767196,21.629028075996878 +2019-12-10 12:15:00,25.0,0.695238095,21.630352665973316 +2019-12-10 12:30:00,25.0,0.699470899,21.631677689361588 +2019-12-10 12:45:00,25.0,0.703703704,21.633003145991264 +2019-12-10 13:00:00,25.0,0.705291005,21.634329035691874 +2019-12-10 13:15:00,25.0,0.708994709,21.635655358292865 +2019-12-10 13:30:00,25.0,0.712169312,21.636982113623645 +2019-12-10 13:45:00,25.0,0.714285714,21.638309301513573 +2019-12-10 14:00:00,25.0,0.716931217,21.639636921791933 +2019-12-10 14:15:00,25.0,0.721164021,21.640964974287968 +2019-12-10 14:30:00,25.0,0.728571429,21.642293458830853 +2019-12-10 14:45:00,25.0,0.728571429,21.643622375249727 +2019-12-10 15:00:00,25.0,0.729100529,21.64495172337366 +2019-12-10 15:15:00,25.0,0.698941799,21.646281503031656 +2019-12-10 15:30:00,25.0,0.643915344,21.64761171405269 +2019-12-10 15:45:00,25.0,0.595767196,21.648942356265664 +2019-12-10 16:00:00,25.0,0.593121693,21.65027342949942 +2019-12-10 16:15:00,25.0,0.597354497,21.651604933582757 +2019-12-10 16:30:00,25.0,0.599470899,21.65293686834442 +2019-12-10 16:45:00,25.0,0.602116402,21.654269233613086 +2019-12-10 17:00:00,25.0,0.603703704,21.655602029217373 +2019-12-10 17:15:00,25.0,0.615343915,21.656935254985875 +2019-12-10 17:30:00,25.0,0.619047619,21.6582689107471 +2019-12-10 17:45:00,25.0,0.561904762,21.659602996329507 +2019-12-10 18:00:00,25.0,0.554497354,21.6609375115615 +2019-12-10 18:15:00,25.0,0.551322751,21.66227245627144 +2019-12-10 18:30:00,25.0,0.544444444,21.66360783028762 +2019-12-10 18:45:00,25.0,0.541269841,21.664943633438277 +2019-12-10 19:00:00,25.0,0.54021164,21.6662798655516 +2019-12-10 19:15:00,25.0,0.566666667,21.667616526455724 +2019-12-10 19:30:00,25.0,0.573544974,21.66895361597872 +2019-12-10 19:45:00,25.0,0.580952381,21.670291133948602 +2019-12-10 20:00:00,25.0,0.604761905,21.671629080193348 +2019-12-10 20:15:00,25.0,0.622222222,21.67296745454086 +2019-12-10 20:30:00,25.0,0.627513228,21.67430625681899 +2019-12-10 20:45:00,25.0,0.628042328,21.67564548685555 +2019-12-10 21:00:00,25.0,0.622222222,21.676985144478284 +2019-12-10 21:15:00,25.0,0.615343915,21.678325229514872 +2019-12-10 21:30:00,25.0,0.607936508,21.679665741792945 +2019-12-10 21:45:00,25.0,0.612169312,21.681006681140104 +2019-12-10 22:00:00,25.0,0.61957672,21.68234804738386 +2019-12-10 22:15:00,25.0,0.635978836,21.68368984035168 +2019-12-10 22:30:00,25.0,0.636507937,21.68503205987099 +2019-12-10 22:45:00,25.0,0.644973545,21.68637470576915 +2019-12-10 23:00:00,25.0,0.649206349,21.68771777787346 +2019-12-10 23:15:00,25.0,0.652380952,21.689061276011167 +2019-12-10 23:30:00,25.0,0.656613757,21.690405200009476 +2019-12-10 23:45:00,25.0,0.658201058,21.69174954969553 +2019-12-11 00:00:00,25.0,0.66031746,21.6930943248964 +2019-12-11 00:15:00,25.0,0.631216931,21.694439525439137 +2019-12-11 00:30:00,25.0,0.625396825,21.695785151150712 +2019-12-11 00:45:00,25.0,0.62962963,21.697131201858035 +2019-12-11 01:00:00,25.0,0.635978836,21.698477677387995 +2019-12-11 01:15:00,25.0,0.645502646,21.69982457756739 +2019-12-11 01:30:00,25.0,0.653439153,21.70117190222299 +2019-12-11 01:45:00,25.0,0.658201058,21.70251965118148 +2019-12-11 02:00:00,25.0,0.657671958,21.70386782426953 +2019-12-11 02:15:00,25.0,0.66031746,21.705216421313725 +2019-12-11 02:30:00,25.0,0.656084656,21.7065654421406 +2019-12-11 02:45:00,25.0,0.652910053,21.707914886576656 +2019-12-11 03:00:00,25.0,0.662433862,21.709264754448316 +2019-12-11 03:15:00,25.0,0.663492063,21.710615045581957 +2019-12-11 03:30:00,25.0,0.664021164,21.711965759803892 +2019-12-11 03:45:00,25.0,0.663492063,21.71331689694041 +2019-12-11 04:00:00,25.0,0.663492063,21.714668456817705 +2019-12-11 04:15:00,25.0,0.662433862,21.716020439261943 +2019-12-11 04:30:00,25.0,0.660846561,21.717372844099238 +2019-12-11 04:45:00,25.0,0.655026455,21.718725671155628 +2019-12-11 05:00:00,25.0,0.656613757,21.720078920257116 +2019-12-11 05:15:00,25.0,0.662962963,21.721432591229636 +2019-12-11 05:30:00,25.0,0.658730159,21.722786683899084 +2019-12-11 05:45:00,25.0,0.683597884,21.724141198091296 +2019-12-11 06:00:00,25.0,0.692592593,21.725496133632035 +2019-12-11 06:15:00,25.0,0.689417989,21.726851490347045 +2019-12-11 06:30:00,25.0,0.677777778,21.728207268061993 +2019-12-11 06:45:00,25.0,0.665079365,21.72956346660249 +2019-12-11 07:00:00,25.0,0.68994709,21.73092008579409 +2019-12-11 07:15:00,25.0,0.685714286,21.73227712546232 +2019-12-11 07:30:00,25.0,0.695767196,21.73363458543263 +2019-12-11 07:45:00,25.0,0.667195767,21.734992465530407 +2019-12-11 08:00:00,25.0,0.625396825,21.736350765581015 +2019-12-11 08:15:00,25.0,0.612698413,21.737709485409738 +2019-12-11 08:30:00,25.0,0.580952381,21.739068624841813 +2019-12-11 08:45:00,25.0,0.559259259,21.740428183702424 +2019-12-11 09:00:00,25.0,0.565608466,21.741788161816707 +2019-12-11 09:15:00,25.0,0.526455026,21.743148559009732 +2019-12-11 09:30:00,25.0,0.492063492,21.74450937510652 +2019-12-11 09:45:00,25.0,0.477248677,21.745870609932055 +2019-12-11 10:00:00,25.0,0.457671958,21.747232263311236 +2019-12-11 10:15:00,25.0,0.445502646,21.74859433506893 +2019-12-11 10:30:00,25.0,0.451851852,21.749956825029937 +2019-12-11 10:45:00,25.0,0.462433862,21.751319733019024 +2019-12-11 11:00:00,25.0,0.46984127,21.75268305886088 +2019-12-11 11:15:00,25.0,0.475661376,21.75404680238015 +2019-12-11 11:30:00,25.0,0.474603175,21.755410963401435 +2019-12-11 11:45:00,25.0,0.475132275,21.75677554174927 +2019-12-11 12:00:00,25.0,0.46031746,21.75814053724814 +2019-12-11 12:15:00,25.0,0.458201058,21.759505949722463 +2019-12-11 12:30:00,25.0,0.475132275,21.760871778996638 +2019-12-11 12:45:00,25.0,0.486243386,21.76223802489498 +2019-12-11 13:00:00,25.0,0.467724868,21.76360468724175 +2019-12-11 13:15:00,25.0,0.47037037,21.76497176586118 +2019-12-11 13:30:00,25.0,0.475661376,21.766339260577425 +2019-12-11 13:45:00,25.0,0.452910053,21.767707171214596 +2019-12-11 14:00:00,25.0,0.44021164,21.76907549759674 +2019-12-11 14:15:00,25.0,0.424338624,21.77044423954788 +2019-12-11 14:30:00,25.0,0.404232804,21.771813396891954 +2019-12-11 14:45:00,25.0,0.382539683,21.773182969452847 +2019-12-11 15:00:00,25.0,0.363492063,21.77455295705442 +2019-12-11 15:15:00,25.0,0.354497354,21.775923359520455 +2019-12-11 15:30:00,25.0,0.341269841,21.777294176674687 +2019-12-11 15:45:00,25.0,0.337037037,21.77866540834079 +2019-12-11 16:00:00,25.0,0.33015873,21.780037054342408 +2019-12-11 16:15:00,25.0,0.324338624,21.781409114503113 +2019-12-11 16:30:00,25.0,0.327513228,21.78278158864641 +2019-12-11 16:45:00,25.0,0.335449735,21.784154476595795 +2019-12-11 17:00:00,25.0,0.336507937,21.78552777817467 +2019-12-11 17:15:00,25.0,0.336507937,21.7869014932064 +2019-12-11 17:30:00,25.0,0.332804233,21.788275621514288 +2019-12-11 17:45:00,25.0,0.32010582,21.789650162921603 +2019-12-11 18:00:00,25.0,0.31957672,21.79102511725154 +2019-12-11 18:15:00,25.0,0.32010582,21.792400484327242 +2019-12-11 18:30:00,25.0,0.329100529,21.793776263971825 +2019-12-11 18:45:00,25.0,0.323280423,21.79515245600832 +2019-12-11 19:00:00,25.0,0.325396825,21.79652906025972 +2019-12-11 19:15:00,25.0,0.325396825,21.797906076548966 +2019-12-11 19:30:00,25.0,0.322751323,21.79928350469894 +2019-12-11 19:45:00,25.0,0.329100529,21.800661344532475 +2019-12-11 20:00:00,25.0,0.342857143,21.802039595872344 +2019-12-11 20:15:00,25.0,0.334920635,21.80341825854129 +2019-12-11 20:30:00,25.0,0.337037037,21.804797332361968 +2019-12-11 20:45:00,25.0,0.340740741,21.806176817157002 +2019-12-11 21:00:00,25.0,0.352910053,21.80755671274897 +2019-12-11 21:15:00,25.0,0.36031746,21.80893701896038 +2019-12-11 21:30:00,25.0,0.360846561,21.810317735613694 +2019-12-11 21:45:00,25.0,0.351851852,21.811698862531312 +2019-12-11 22:00:00,25.0,0.353968254,21.813080399535608 +2019-12-11 22:15:00,25.0,0.371428571,21.814462346448874 +2019-12-11 22:30:00,25.0,0.367724868,21.815844703093358 +2019-12-11 22:45:00,25.0,0.344444444,21.817227469291268 +2019-12-11 23:00:00,25.0,0.357671958,21.818610644864744 +2019-12-11 23:15:00,25.0,0.385185185,21.81999422963588 +2019-12-11 23:30:00,25.0,0.408465608,21.821378223426713 +2019-12-11 23:45:00,25.0,0.406349206,21.822762626059234 +2019-12-12 00:00:00,25.0,0.379365079,21.824147437355382 +2019-12-12 00:15:00,25.0,0.352910053,21.825532657137025 +2019-12-12 00:30:00,25.0,0.352380952,21.826918285226007 +2019-12-12 00:45:00,25.0,0.396296296,21.8283043214441 +2019-12-12 01:00:00,25.0,0.431216931,21.829690765613034 +2019-12-12 01:15:00,25.0,0.453968254,21.831077617554467 +2019-12-12 01:30:00,25.0,0.459259259,21.832464877090036 +2019-12-12 01:45:00,25.0,0.466666667,21.8338525440413 +2019-12-12 02:00:00,25.0,0.43968254,21.83524061822977 +2019-12-12 02:15:00,25.0,0.424867725,21.83662909947692 +2019-12-12 02:30:00,25.0,0.424338624,21.83801798760415 +2019-12-12 02:45:00,25.0,0.401587302,21.839407282432827 +2019-12-12 03:00:00,25.0,0.387830688,21.840796983784244 +2019-12-12 03:15:00,25.0,0.406878307,21.842187091479666 +2019-12-12 03:30:00,25.0,0.40952381,21.843577605340293 +2019-12-12 03:45:00,25.0,0.421693122,21.844968525187266 +2019-12-12 04:00:00,25.0,0.44973545,21.84635985084169 +2019-12-12 04:15:00,25.0,0.47037037,21.84775158212461 +2019-12-12 04:30:00,25.0,0.46984127,21.84914371885701 +2019-12-12 04:45:00,25.0,0.495767196,21.85053626085983 +2019-12-12 05:00:00,25.0,0.494708995,21.85192920795397 +2019-12-12 05:15:00,25.0,0.467724868,21.853322559960258 +2019-12-12 05:30:00,25.0,0.453439153,21.854716316699474 +2019-12-12 05:45:00,25.0,0.468783069,21.856110477992356 +2019-12-12 06:00:00,25.0,0.486243386,21.857505043659586 +2019-12-12 06:15:00,25.0,0.502116402,21.858900013521787 +2019-12-12 06:30:00,25.0,0.507936508,21.86029538739953 +2019-12-12 06:45:00,25.0,0.548148148,21.86169116511335 +2019-12-12 07:00:00,25.0,0.510582011,21.863087346483713 +2019-12-12 07:15:00,25.0,0.496825397,21.86448393133103 +2019-12-12 07:30:00,25.0,0.493650794,21.86588091947569 +2019-12-12 07:45:00,25.0,0.517989418,21.867278310737994 +2019-12-12 08:00:00,25.0,0.505291005,21.86867610493821 +2019-12-12 08:15:00,25.0,0.456084656,21.870074301896544 +2019-12-12 08:30:00,25.0,0.477777778,21.87147290143317 +2019-12-12 08:45:00,25.0,0.505291005,21.872871903368186 +2019-12-12 09:00:00,25.0,0.484656085,21.87427130752165 +2019-12-12 09:15:00,25.0,0.446031746,21.875671113713576 +2019-12-12 09:30:00,25.0,0.455026455,21.87707132176391 +2019-12-12 09:45:00,25.0,0.486243386,21.87847193149256 +2019-12-12 10:00:00,25.0,0.477777778,21.87987294271936 +2019-12-12 10:15:00,25.0,0.462962963,21.881274355264132 +2019-12-12 10:30:00,25.0,0.439153439,21.88267616894661 +2019-12-12 10:45:00,25.0,0.452380952,21.884078383586484 +2019-12-12 11:00:00,25.0,0.434391534,21.885480999003413 +2019-12-12 11:15:00,25.0,0.432804233,21.88688401501698 +2019-12-12 11:30:00,25.0,0.443915344,21.888287431446724 +2019-12-12 11:45:00,25.0,0.468253968,21.889691248112143 +2019-12-12 12:00:00,25.0,0.473544974,21.891095464832667 +2019-12-12 12:15:00,25.0,0.485714286,21.89250008142769 +2019-12-12 12:30:00,25.0,0.488888889,21.893905097716534 +2019-12-12 12:45:00,25.0,0.476190476,21.895310513518496 +2019-12-12 13:00:00,25.0,0.488888889,21.8967163286528 +2019-12-12 13:15:00,25.0,0.50952381,21.89812254293863 +2019-12-12 13:30:00,25.0,0.521693122,21.899529156195115 +2019-12-12 13:45:00,25.0,0.511111111,21.900936168241337 +2019-12-12 14:00:00,25.0,0.512169312,21.902343578896318 +2019-12-12 14:15:00,25.0,0.544444444,21.903751387979028 +2019-12-12 14:30:00,25.0,0.587830688,21.905159595308405 +2019-12-12 14:45:00,25.0,0.616931217,21.906568200703315 +2019-12-12 15:00:00,25.0,0.613756614,21.907977203982576 +2019-12-12 15:15:00,25.0,0.622222222,21.909386604964965 +2019-12-12 15:30:00,25.0,0.641269841,21.910796403469202 +2019-12-12 15:45:00,25.0,0.643915344,21.91220659931395 +2019-12-12 16:00:00,25.0,0.63968254,21.913617192317826 +2019-12-12 16:15:00,25.0,0.611640212,21.9150281822994 +2019-12-12 16:30:00,25.0,0.611640212,21.916439569077195 +2019-12-12 16:45:00,25.0,0.597354497,21.917851352469654 +2019-12-12 17:00:00,25.0,0.585185185,21.919263532295215 +2019-12-12 17:15:00,25.0,0.594708995,21.920676108372223 +2019-12-12 17:30:00,25.0,0.613756614,21.922089080518997 +2019-12-12 17:45:00,25.0,0.619047619,21.923502448553787 +2019-12-12 18:00:00,25.0,0.658730159,21.924916212294818 +2019-12-12 18:15:00,25.0,0.725396825,21.926330371560237 +2019-12-12 18:30:00,25.0,0.735978836,21.927744926168153 +2019-12-12 18:45:00,25.0,0.726984127,21.929159875936627 +2019-12-12 19:00:00,25.0,0.719047619,21.930575220683664 +2019-12-12 19:15:00,25.0,0.724867725,21.931990960227218 +2019-12-12 19:30:00,25.0,0.725925926,21.933407094385185 +2019-12-12 19:45:00,25.0,0.743915344,21.934823622975433 +2019-12-12 20:00:00,25.0,0.744444444,21.93624054581576 +2019-12-12 20:15:00,25.0,0.736507937,21.93765786272391 +2019-12-12 20:30:00,25.0,0.711640212,21.939075573517595 +2019-12-12 20:45:00,25.0,0.711111111,21.940493678014462 +2019-12-12 21:00:00,25.0,0.715343915,21.941912176032112 +2019-12-12 21:15:00,25.0,0.713227513,21.943331067388087 +2019-12-12 21:30:00,25.0,0.711111111,21.9447503518999 +2019-12-12 21:45:00,25.0,0.71005291,21.946170029384987 +2019-12-12 22:00:00,25.0,0.70952381,21.947590099660744 +2019-12-12 22:15:00,25.0,0.707936508,21.949010562544533 +2019-12-12 22:30:00,25.0,0.700529101,21.950431417853643 +2019-12-12 22:45:00,25.0,0.694708995,21.95185266540532 +2019-12-12 23:00:00,25.0,0.693650794,21.95327430501675 +2019-12-12 23:15:00,25.0,0.696825397,21.954696336505094 +2019-12-12 23:30:00,25.0,0.693121693,21.956118759687442 +2019-12-12 23:45:00,25.0,0.691005291,21.957541574380834 +2019-12-13 00:00:00,25.0,0.69047619,21.95896478040227 +2019-12-13 00:15:00,25.0,0.691534392,21.960388377568695 +2019-12-13 00:30:00,25.0,0.703174603,21.961812365696996 +2019-12-13 00:45:00,25.0,0.710582011,21.963236744604014 +2019-12-13 01:00:00,25.0,0.711640212,21.964661514106556 +2019-12-13 01:15:00,25.0,0.710582011,21.966086674021355 +2019-12-13 01:30:00,25.0,0.70952381,21.9675122241651 +2019-12-13 01:45:00,25.0,0.71005291,21.968938164354444 +2019-12-13 02:00:00,25.0,0.720634921,21.970364494405977 +2019-12-13 02:15:00,25.0,0.68994709,21.971791214136235 +2019-12-13 02:30:00,25.0,0.669312169,21.973218323361706 +2019-12-13 02:45:00,25.0,0.675661376,21.97464582189885 +2019-12-13 03:00:00,25.0,0.688359788,21.976073709564044 +2019-12-13 03:15:00,25.0,0.69047619,21.97750198617363 +2019-12-13 03:30:00,25.0,0.689417989,21.97893065154391 +2019-12-13 03:45:00,25.0,0.682539683,21.980359705491114 +2019-12-13 04:00:00,25.0,0.671428571,21.981789147831442 +2019-12-13 04:15:00,25.0,0.66984127,21.98321897838103 +2019-12-13 04:30:00,25.0,0.682010582,21.984649196955974 +2019-12-13 04:45:00,25.0,0.69047619,21.986079803372316 +2019-12-13 05:00:00,25.0,0.686243386,21.987510797446042 +2019-12-13 05:15:00,25.0,0.683597884,21.988942178993103 +2019-12-13 05:30:00,25.0,0.684656085,21.99037394782939 +2019-12-13 05:45:00,25.0,0.682010582,21.991806103770735 +2019-12-13 06:00:00,25.0,0.682010582,21.993238646632946 +2019-12-13 06:15:00,25.0,0.67989418,21.994671576231756 +2019-12-13 06:30:00,25.0,0.687301587,21.996104892382863 +2019-12-13 06:45:00,25.0,0.692063492,21.9975385949019 +2019-12-13 07:00:00,25.0,0.684656085,21.99897268360448 +2019-12-13 07:15:00,25.0,0.658201058,22.000407158306135 +2019-12-13 07:30:00,25.0,0.652910053,22.001842018822355 +2019-12-13 07:45:00,25.0,0.656613757,22.003277264968595 +2019-12-13 08:00:00,25.0,0.651322751,22.00471289656025 +2019-12-13 08:15:00,25.0,0.644973545,22.00614891341266 +2019-12-13 08:30:00,25.0,0.643386243,22.007585315341117 +2019-12-13 08:45:00,25.0,0.646031746,22.00902210216088 +2019-12-13 09:00:00,25.0,0.649206349,22.010459273687143 +2019-12-13 09:15:00,25.0,0.647619048,22.011896829735043 +2019-12-13 09:30:00,25.0,0.648677249,22.01333477011969 +2019-12-13 09:45:00,25.0,0.641269841,22.01477309465613 +2019-12-13 10:00:00,25.0,0.633333333,22.016211803159365 +2019-12-13 10:15:00,25.0,0.624867725,22.01765089544433 +2019-12-13 10:30:00,25.0,0.612698413,22.019090371325944 +2019-12-13 10:45:00,25.0,0.596825397,22.020530230619055 +2019-12-13 11:00:00,25.0,0.587830688,22.021970473138452 +2019-12-13 11:15:00,25.0,0.571428571,22.0234110986989 +2019-12-13 11:30:00,25.0,0.543915344,22.024852107115105 +2019-12-13 11:45:00,25.0,0.51005291,22.026293498201714 +2019-12-13 12:00:00,25.0,0.47037037,22.027735271773324 +2019-12-13 12:15:00,25.0,0.428042328,22.029177427644505 +2019-12-13 12:30:00,25.0,0.392592593,22.030619965629764 +2019-12-13 12:45:00,25.0,0.362433862,22.032062885543542 +2019-12-13 13:00:00,25.0,0.35026455,22.033506187200267 +2019-12-13 13:15:00,25.0,0.340740741,22.03494987041429 +2019-12-13 13:30:00,25.0,0.336507937,22.03639393499992 +2019-12-13 13:45:00,25.0,0.325396825,22.03783838077141 +2019-12-13 14:00:00,25.0,0.316402116,22.039283207542994 +2019-12-13 14:15:00,25.0,0.303174603,22.040728415128815 +2019-12-13 14:30:00,25.0,0.288888889,22.04217400334299 +2019-12-13 14:45:00,25.0,0.267195767,22.043619971999593 +2019-12-13 15:00:00,25.0,0.246031746,22.045066320912635 +2019-12-13 15:15:00,25.0,0.235978836,22.046513049896085 +2019-12-13 15:30:00,25.0,0.224867725,22.047960158763853 +2019-12-13 15:45:00,25.0,0.222751323,22.049407647329822 +2019-12-13 16:00:00,25.0,0.224338624,22.050855515407807 +2019-12-13 16:15:00,25.0,0.224338624,22.05230376281157 +2019-12-13 16:30:00,25.0,0.210582011,22.053752389354848 +2019-12-13 16:45:00,25.0,0.199470899,22.055201394851313 +2019-12-13 17:00:00,25.0,0.197354497,22.056650779114587 +2019-12-13 17:15:00,25.0,0.2,22.05810054195824 +2019-12-13 17:30:00,25.0,0.204761905,22.059550683195816 +2019-12-13 17:45:00,25.0,0.212698413,22.061001202640785 +2019-12-13 18:00:00,25.0,0.212169312,22.062452100106572 +2019-12-13 18:15:00,25.0,0.205820106,22.063903375406575 +2019-12-13 18:30:00,25.0,0.201058201,22.06535502835412 +2019-12-13 18:45:00,25.0,0.197883598,22.066807058762485 +2019-12-13 19:00:00,25.0,0.202645503,22.06825946644491 +2019-12-13 19:15:00,25.0,0.210582011,22.06971225121459 +2019-12-13 19:30:00,25.0,0.211640212,22.07116541288466 +2019-12-13 19:45:00,25.0,0.204232804,22.072618951268208 +2019-12-13 20:00:00,25.0,0.212169312,22.074072866178284 +2019-12-13 20:15:00,25.0,0.215873016,22.075527157427874 +2019-12-13 20:30:00,25.0,0.23968254,22.07698182482993 +2019-12-13 20:45:00,25.0,0.257671958,22.07843686819734 +2019-12-13 21:00:00,25.0,0.271957672,22.079892287342965 +2019-12-13 21:15:00,25.0,0.287830688,22.0813480820796 +2019-12-13 21:30:00,25.0,0.272486772,22.08280425221999 +2019-12-13 21:45:00,25.0,0.26984127,22.084260797576853 +2019-12-13 22:00:00,25.0,0.292592593,22.08571771796284 +2019-12-13 22:15:00,25.0,0.300529101,22.087175013190556 +2019-12-13 22:30:00,25.0,0.321693122,22.088632683072554 +2019-12-13 22:45:00,25.0,0.34021164,22.09009072742136 +2019-12-13 23:00:00,25.0,0.331746032,22.091549146049427 +2019-12-13 23:15:00,25.0,0.330687831,22.093007938769166 +2019-12-13 23:30:00,25.0,0.321693122,22.094467105392955 +2019-12-13 23:45:00,25.0,0.336507937,22.09592664573311 +2019-12-14 00:00:00,25.0,0.388888889,22.097386559601887 +2019-12-14 00:15:00,25.0,0.42962963,22.098846846811533 +2019-12-14 00:30:00,25.0,0.438624339,22.100307507174207 +2019-12-14 00:45:00,25.0,0.460846561,22.101768540502036 +2019-12-14 01:00:00,25.0,0.506878307,22.103229946607097 +2019-12-14 01:15:00,25.0,0.521693122,22.104691725301432 +2019-12-14 01:30:00,25.0,0.511640212,22.106153876397013 +2019-12-14 01:45:00,25.0,0.485714286,22.107616399705773 +2019-12-14 02:00:00,25.0,0.439153439,22.109079295039606 +2019-12-14 02:15:00,25.0,0.478835979,22.110542562210355 +2019-12-14 02:30:00,25.0,0.533333333,22.1120062010298 +2019-12-14 02:45:00,25.0,0.546031746,22.113470211309682 +2019-12-14 03:00:00,25.0,0.574074074,22.114934592861715 +2019-12-14 03:15:00,25.0,0.595238095,22.116399345497534 +2019-12-14 03:30:00,25.0,0.532275132,22.11786446902873 +2019-12-14 03:45:00,25.0,0.56984127,22.11932996326688 +2019-12-14 04:00:00,25.0,0.634920635,22.120795828023468 +2019-12-14 04:15:00,25.0,0.657142857,22.12226206310996 +2019-12-14 04:30:00,25.0,0.656613757,22.12372866833776 +2019-12-14 04:45:00,25.0,0.662433862,22.125195643518236 +2019-12-14 05:00:00,25.0,0.661904762,22.126662988462698 +2019-12-14 05:15:00,25.0,0.661375661,22.12813070298241 +2019-12-14 05:30:00,25.0,0.681481481,22.129598786888604 +2019-12-14 05:45:00,25.0,0.676719577,22.13106723999244 +2019-12-14 06:00:00,25.0,0.667195767,22.132536062105046 +2019-12-14 06:15:00,25.0,0.705291005,22.134005253037493 +2019-12-14 06:30:00,25.0,0.701058201,22.135474812600823 +2019-12-14 06:45:00,25.0,0.712169312,22.136944740606005 +2019-12-14 07:00:00,25.0,0.715873016,22.138415036863975 +2019-12-14 07:15:00,25.0,0.724867725,22.13988570118563 +2019-12-14 07:30:00,25.0,0.725925926,22.141356733381805 +2019-12-14 07:45:00,25.0,0.733333333,22.142828133263286 +2019-12-14 08:00:00,25.0,0.735449735,22.14429990064082 +2019-12-14 08:15:00,25.0,0.734391534,22.145772035325113 +2019-12-14 08:30:00,25.0,0.735978836,22.14724453712681 +2019-12-14 08:45:00,25.0,0.741269841,22.14871740585651 +2019-12-14 09:00:00,25.0,0.748148148,22.15019064132478 +2019-12-14 09:15:00,25.0,0.748148148,22.151664243342122 +2019-12-14 09:30:00,25.0,0.744973545,22.153138211719 +2019-12-14 09:45:00,25.0,0.746560847,22.15461254626582 +2019-12-14 10:00:00,25.0,0.735978836,22.156087246792964 +2019-12-14 10:15:00,25.0,0.753439153,22.15756231311075 +2019-12-14 10:30:00,25.0,0.763492063,22.159037745029433 +2019-12-14 10:45:00,25.0,0.765608466,22.16051354235927 +2019-12-14 11:00:00,25.0,0.776719577,22.161989704910418 +2019-12-14 11:15:00,25.0,0.774074074,22.16346623249302 +2019-12-14 11:30:00,25.0,0.784656085,22.164943124917148 +2019-12-14 11:45:00,25.0,0.792592593,22.166420381992857 +2019-12-14 12:00:00,25.0,0.795767196,22.167898003530134 +2019-12-14 12:15:00,25.0,0.796825397,22.169375989338917 +2019-12-14 12:30:00,25.0,0.768783069,22.170854339229113 +2019-12-14 12:45:00,25.0,0.782010582,22.172333053010572 +2019-12-14 13:00:00,25.0,0.767195767,22.173812130493094 +2019-12-14 13:15:00,25.0,0.748148148,22.175291571486433 +2019-12-14 13:30:00,25.0,0.744444444,22.17677137580031 +2019-12-14 13:45:00,25.0,0.757671958,22.178251543244386 +2019-12-14 14:00:00,25.0,0.759259259,22.17973207362827 +2019-12-14 14:15:00,25.0,0.765608466,22.181212966761546 +2019-12-14 14:30:00,25.0,0.761375661,22.182694222453733 +2019-12-14 14:45:00,25.0,0.761375661,22.184175840514307 +2019-12-14 15:00:00,25.0,0.763492063,22.18565782075269 +2019-12-14 15:15:00,25.0,0.760846561,22.187140162978288 +2019-12-14 15:30:00,25.0,0.762433862,22.18862286700042 +2019-12-14 15:45:00,25.0,0.76031746,22.190105932628377 +2019-12-14 16:00:00,25.0,0.76031746,22.19158935967142 +2019-12-14 16:15:00,25.0,0.768783069,22.193073147938737 +2019-12-14 16:30:00,25.0,0.767724868,22.194557297239477 +2019-12-14 16:45:00,25.0,0.768783069,22.19604180738274 +2019-12-14 17:00:00,25.0,0.780952381,22.197526678177606 +2019-12-14 17:15:00,25.0,0.784656085,22.19901190943307 +2019-12-14 17:30:00,25.0,0.774074074,22.200497500958097 +2019-12-14 17:45:00,25.0,0.776719577,22.20198345256162 +2019-12-14 18:00:00,25.0,0.778306878,22.203469764052503 +2019-12-14 18:15:00,25.0,0.816931217,22.20495643523957 +2019-12-14 18:30:00,25.0,0.825396825,22.206443465931613 +2019-12-14 18:45:00,25.0,0.83015873,22.20793085593736 +2019-12-14 19:00:00,25.0,0.854497354,22.2094186050655 +2019-12-14 19:15:00,25.0,0.851322751,22.21090671312467 +2019-12-14 19:30:00,25.0,0.855026455,22.212395179923476 +2019-12-14 19:45:00,25.0,0.856084656,22.213884005270465 +2019-12-14 20:00:00,25.0,0.856084656,22.215373188974134 +2019-12-14 20:15:00,25.0,0.852910053,22.216862730842948 +2019-12-14 20:30:00,25.0,0.814814815,22.21835263068532 +2019-12-14 20:45:00,25.0,0.81005291,22.219842888309614 +2019-12-14 21:00:00,25.0,0.776719577,22.221333503524136 +2019-12-14 21:15:00,25.0,0.775661376,22.222824476137184 +2019-12-14 21:30:00,25.0,0.775661376,22.22431580595697 +2019-12-14 21:45:00,25.0,0.776719577,22.225807492791674 +2019-12-14 22:00:00,25.0,0.777248677,22.22729953644944 +2019-12-14 22:15:00,25.0,0.782539683,22.228791936738357 +2019-12-14 22:30:00,25.0,0.784126984,22.230284693466466 +2019-12-14 22:45:00,25.0,0.784656085,22.23177780644176 +2019-12-14 23:00:00,25.0,0.784126984,22.2332712754722 +2019-12-14 23:15:00,25.0,0.784126984,22.234765100365696 +2019-12-14 23:30:00,25.0,0.782539683,22.236259280930092 +2019-12-14 23:45:00,25.0,0.781481481,22.23775381697322 +2019-12-15 00:00:00,25.0,0.780952381,22.239248708302846 +2019-12-15 00:15:00,25.0,0.77989418,22.24074395472669 +2019-12-15 00:30:00,25.0,0.779365079,22.242239556052418 +2019-12-15 00:45:00,25.0,0.782010582,22.243735512087685 +2019-12-15 01:00:00,25.0,0.786243386,22.24523182264007 +2019-12-15 01:15:00,25.0,0.787830688,22.2467284875171 +2019-12-15 01:30:00,25.0,0.802116402,22.248225506526293 +2019-12-15 01:45:00,25.0,0.76984127,22.249722879475083 +2019-12-15 02:00:00,25.0,0.717460317,22.251220606170882 +2019-12-15 02:15:00,25.0,0.74021164,22.25271868642104 +2019-12-15 02:30:00,25.0,0.784126984,22.254217120032884 +2019-12-15 02:45:00,25.0,0.806878307,22.255715906813673 +2019-12-15 03:00:00,25.0,0.831216931,22.257215046570625 +2019-12-15 03:15:00,25.0,0.84973545,22.25871453911093 +2019-12-15 03:30:00,25.0,0.836507937,22.260214384241714 +2019-12-15 03:45:00,25.0,0.811111111,22.261714581770065 +2019-12-15 04:00:00,25.0,0.822751323,22.26321513150301 +2019-12-15 04:15:00,25.0,0.853968254,22.264716033247566 +2019-12-15 04:30:00,25.0,0.858730159,22.266217286810676 +2019-12-15 04:45:00,25.0,0.857142857,22.267718891999234 +2019-12-15 05:00:00,25.0,0.858730159,22.269220848620115 +2019-12-15 05:15:00,25.0,0.849206349,22.27072315648013 +2019-12-15 05:30:00,25.0,0.850793651,22.27222581538605 +2019-12-15 05:45:00,25.0,0.849206349,22.273728825144588 +2019-12-15 06:00:00,25.0,0.844444444,22.275232185562437 +2019-12-15 06:15:00,25.0,0.843915344,22.276735896446226 +2019-12-15 06:30:00,25.0,0.833333333,22.27823995760254 +2019-12-15 06:45:00,25.0,0.798941799,22.279744368837935 +2019-12-15 07:00:00,25.0,0.808994709,22.2812491299589 +2019-12-15 07:15:00,25.0,0.817989418,22.282754240771897 +2019-12-15 07:30:00,25.0,0.827513228,22.284259701083318 +2019-12-15 07:45:00,25.0,0.827513228,22.285765510699548 +2019-12-15 08:00:00,25.0,0.81957672,22.2872716694269 +2019-12-15 08:15:00,25.0,0.78994709,22.288778177071638 +2019-12-15 08:30:00,25.0,0.752910053,22.290285033440004 +2019-12-15 08:45:00,25.0,0.74021164,22.291792238338182 +2019-12-15 09:00:00,25.0,0.729100529,22.293299791572306 +2019-12-15 09:15:00,25.0,0.732275132,22.294807692948467 +2019-12-15 09:30:00,25.0,0.708994709,22.296315942272727 +2019-12-15 09:45:00,25.0,0.716931217,22.297824539351087 +2019-12-15 10:00:00,25.0,0.708465608,22.299333483989496 +2019-12-15 10:15:00,25.0,0.692063492,22.300842775993893 +2019-12-15 10:30:00,25.0,0.677248677,22.302352415170134 +2019-12-15 10:45:00,25.0,0.643915344,22.303862401324047 +2019-12-15 11:00:00,25.0,0.616931217,22.30537273426141 +2019-12-15 11:15:00,25.0,0.594708995,22.306883413787975 +2019-12-15 11:30:00,25.0,0.585185185,22.308394439709428 +2019-12-15 11:45:00,25.0,0.557671958,22.309905811831403 +2019-12-15 12:00:00,25.0,0.542328042,22.311417529959527 +2019-12-15 12:15:00,25.0,0.546031746,22.312929593899348 +2019-12-15 12:30:00,25.0,0.563492063,22.314442003456374 +2019-12-15 12:45:00,25.0,0.585185185,22.31595475843609 +2019-12-15 13:00:00,25.0,0.64021164,22.317467858643916 +2019-12-15 13:15:00,25.0,0.682010582,22.31898130388523 +2019-12-15 13:30:00,25.0,0.726455026,22.320495093965363 +2019-12-15 13:45:00,25.0,0.756613757,22.322009228689627 +2019-12-15 14:00:00,25.0,0.767195767,22.32352370786326 +2019-12-15 14:15:00,25.0,0.787830688,22.325038531291458 +2019-12-15 14:30:00,25.0,0.808465608,22.326553698779396 +2019-12-15 14:45:00,25.0,0.815873016,22.32806921013218 +2019-12-15 15:00:00,25.0,0.828571429,22.329585065154888 +2019-12-15 15:15:00,25.0,0.833862434,22.331101263652535 +2019-12-15 15:30:00,25.0,0.841269841,22.332617805430118 +2019-12-15 15:45:00,25.0,0.848148148,22.334134690292572 +2019-12-15 16:00:00,25.0,0.847619048,22.335651918044782 +2019-12-15 16:15:00,25.0,0.837566138,22.33716948849161 +2019-12-15 16:30:00,25.0,0.814814815,22.338687401437866 +2019-12-15 16:45:00,25.0,0.815343915,22.3402056566883 +2019-12-15 17:00:00,25.0,0.80952381,22.341724254047634 +2019-12-15 17:15:00,25.0,0.808994709,22.343243193320546 +2019-12-15 17:30:00,25.0,0.805291005,22.344762474311672 +2019-12-15 17:45:00,25.0,0.802116402,22.34628209682558 +2019-12-15 18:00:00,25.0,0.785185185,22.347802060666833 +2019-12-15 18:15:00,25.0,0.76984127,22.34932236563992 +2019-12-15 18:30:00,25.0,0.761904762,22.350843011549298 +2019-12-15 18:45:00,25.0,0.774074074,22.35236399819937 +2019-12-15 19:00:00,25.0,0.779365079,22.353885325394515 +2019-12-15 19:15:00,25.0,0.785714286,22.355406992939052 +2019-12-15 19:30:00,25.0,0.78994709,22.356929000637255 +2019-12-15 19:45:00,25.0,0.792063492,22.35845134829337 +2019-12-15 20:00:00,25.0,0.788888889,22.359974035711588 +2019-12-15 20:15:00,25.0,0.78994709,22.361497062696053 +2019-12-15 20:30:00,25.0,0.782539683,22.36302042905086 +2019-12-15 20:45:00,25.0,0.777777778,22.364544134580086 +2019-12-15 21:00:00,25.0,0.780952381,22.366068179087748 +2019-12-15 21:15:00,25.0,0.784126984,22.3675925623778 +2019-12-15 21:30:00,25.0,0.798941799,22.3691172842542 +2019-12-15 21:45:00,25.0,0.791005291,22.370642344520824 +2019-12-15 22:00:00,25.0,0.796296296,22.37216774298151 +2019-12-15 22:15:00,25.0,0.823809524,22.373693479440053 +2019-12-15 22:30:00,25.0,0.828042328,22.375219553700223 +2019-12-15 22:45:00,25.0,0.824338624,22.37674596556573 +2019-12-15 23:00:00,25.0,0.818518519,22.37827271484023 +2019-12-15 23:15:00,25.0,0.823280423,22.379799801327366 +2019-12-15 23:30:00,25.0,0.821693122,22.381327224830716 +2019-12-15 23:45:00,25.0,0.864550265,22.382854985153816 +2019-12-16 00:00:00,25.0,0.873015873,22.384383082100157 +2019-12-16 00:15:00,25.0,0.869312169,22.385911515473204 +2019-12-16 00:30:00,25.0,0.865079365,22.38744028507636 +2019-12-16 00:45:00,25.0,0.865608466,22.38896939071298 +2019-12-16 01:00:00,25.0,0.862433862,22.39049883218641 +2019-12-16 01:15:00,25.0,0.852910053,22.392028609299913 +2019-12-16 01:30:00,25.0,0.858201058,22.393558721856735 +2019-12-16 01:45:00,25.0,0.866137566,22.395089169660054 +2019-12-16 02:00:00,25.0,0.86984127,22.39661995251304 +2019-12-16 02:15:00,25.0,0.867195767,22.398151070218788 +2019-12-16 02:30:00,25.0,0.871428571,22.39968252258036 +2019-12-16 02:45:00,25.0,0.882539683,22.40121430940079 +2019-12-16 03:00:00,25.0,0.876190476,22.402746430483045 +2019-12-16 03:15:00,25.0,0.873015873,22.404278885630067 +2019-12-16 03:30:00,25.0,0.871428571,22.405811674644735 +2019-12-16 03:45:00,25.0,0.869312169,22.407344797329912 +2019-12-16 04:00:00,25.0,0.866137566,22.408878253488403 +2019-12-16 04:15:00,25.0,0.857671958,22.41041204292296 +2019-12-16 04:30:00,25.0,0.851322751,22.41194616543632 +2019-12-16 04:45:00,25.0,0.84973545,22.41348062083115 +2019-12-16 05:00:00,25.0,0.856613757,22.415015408910087 +2019-12-16 05:15:00,25.0,0.866137566,22.416550529475717 +2019-12-16 05:30:00,25.0,0.867724868,22.418085982330602 +2019-12-16 05:45:00,25.0,0.866137566,22.41962176727724 +2019-12-16 06:00:00,25.0,0.858201058,22.421157884118088 +2019-12-16 06:15:00,25.0,0.812698413,22.422694332655585 +2019-12-16 06:30:00,25.0,0.778835979,22.424231112692098 +2019-12-16 06:45:00,25.0,0.770899471,22.42576822402996 +2019-12-16 07:00:00,25.0,0.758201058,22.427305666471476 +2019-12-16 07:15:00,25.0,0.731746032,22.428843439818884 +2019-12-16 07:30:00,25.0,0.723280423,22.430381543874404 +2019-12-16 07:45:00,25.0,0.708994709,22.431919978440185 +2019-12-16 08:00:00,25.0,0.706878307,22.433458743318365 +2019-12-16 08:15:00,25.0,0.703703704,22.434997838311023 +2019-12-16 08:30:00,25.0,0.722751323,22.436537263220185 +2019-12-16 08:45:00,25.0,0.725396825,22.43807701784786 +2019-12-16 09:00:00,25.0,0.728571429,22.439617101996 +2019-12-16 09:15:00,25.0,0.725925926,22.44115751546651 +2019-12-16 09:30:00,25.0,0.697883598,22.442698258061252 +2019-12-16 09:45:00,25.0,0.700529101,22.44423932958207 +2019-12-16 10:00:00,25.0,0.704761905,22.44578072983074 +2019-12-16 10:15:00,25.0,0.7,22.44732245860899 +2019-12-16 10:30:00,25.0,0.700529101,22.448864515718544 +2019-12-16 10:45:00,25.0,0.700529101,22.450406900961042 +2019-12-16 11:00:00,25.0,0.701587302,22.451949614138105 +2019-12-16 11:15:00,25.0,0.694179894,22.453492655051296 +2019-12-16 11:30:00,25.0,0.688359788,22.45503602350216 +2019-12-16 11:45:00,25.0,0.686772487,22.456579719292183 +2019-12-16 12:00:00,25.0,0.686772487,22.458123742222796 +2019-12-16 12:15:00,25.0,0.714814815,22.45966809209542 +2019-12-16 12:30:00,25.0,0.737037037,22.461212768711412 +2019-12-16 12:45:00,25.0,0.728042328,22.462757771872095 +2019-12-16 13:00:00,25.0,0.744444444,22.464303101378732 +2019-12-16 13:15:00,25.0,0.734920635,22.46584875703258 +2019-12-16 13:30:00,25.0,0.723809524,22.467394738634827 +2019-12-16 13:45:00,25.0,0.721693122,22.46894104598661 +2019-12-16 14:00:00,25.0,0.719047619,22.47048767888906 +2019-12-16 14:15:00,25.0,0.71005291,22.47203463714324 +2019-12-16 14:30:00,25.0,0.702116402,22.47358192055017 +2019-12-16 14:45:00,25.0,0.683068783,22.47512952891083 +2019-12-16 15:00:00,25.0,0.662433862,22.47667746202618 +2019-12-16 15:15:00,25.0,0.637566138,22.478225719697118 +2019-12-16 15:30:00,25.0,0.626984127,22.479774301724486 +2019-12-16 15:45:00,25.0,0.632804233,22.481323207909124 +2019-12-16 16:00:00,25.0,0.638095238,22.482872438051796 +2019-12-16 16:15:00,25.0,0.63015873,22.48442199195324 +2019-12-16 16:30:00,25.0,0.639153439,22.48597186941414 +2019-12-16 16:45:00,25.0,0.636507937,22.487522070235162 +2019-12-16 17:00:00,25.0,0.613756614,22.489072594216907 +2019-12-16 17:15:00,25.0,0.603703704,22.49062344115994 +2019-12-16 17:30:00,25.0,0.587830688,22.492174610864794 +2019-12-16 17:45:00,25.0,0.573015873,22.493726103131955 +2019-12-16 18:00:00,25.0,0.557671958,22.495277917761864 +2019-12-16 18:15:00,25.0,0.553968254,22.496830054554913 +2019-12-16 18:30:00,25.0,0.538624339,22.49838251331148 +2019-12-16 18:45:00,25.0,0.523809524,22.499935293831875 +2019-12-16 19:00:00,25.0,0.492592593,22.50148839591637 +2019-12-16 19:15:00,25.0,0.448677249,22.503041819365215 +2019-12-16 19:30:00,25.0,0.408994709,22.5045955639786 +2019-12-16 19:45:00,25.0,0.387301587,22.506149629556674 +2019-12-16 20:00:00,25.0,0.370899471,22.50770401589955 +2019-12-16 20:15:00,25.0,0.330687831,22.509258722807303 +2019-12-16 20:30:00,25.0,0.312698413,22.510813750079965 +2019-12-16 20:45:00,25.0,0.297883598,22.512369097517514 +2019-12-16 21:00:00,25.0,0.301587302,22.51392476491991 +2019-12-16 21:15:00,25.0,0.286772487,22.515480752087058 +2019-12-16 21:30:00,25.0,0.262433862,22.51703705881882 +2019-12-16 21:45:00,25.0,0.241798942,22.518593684915007 +2019-12-16 22:00:00,25.0,0.213227513,22.52015063017543 +2019-12-16 22:15:00,25.0,0.193650794,22.52170789439981 +2019-12-16 22:30:00,25.0,0.173544974,22.523265477387852 +2019-12-16 22:45:00,25.0,0.159259259,22.524823378939224 +2019-12-16 23:00:00,25.0,0.13015873,22.52638159885354 +2019-12-16 23:15:00,25.0,0.110582011,22.527940136930376 +2019-12-16 23:30:00,25.0,0.102116402,22.529498992969266 +2019-12-16 23:45:00,25.0,0.092063492,22.531058166769718 +2019-12-17 00:00:00,25.0,0.086243386,22.53261765813118 +2019-12-17 00:15:00,25.0,0.08042328,22.53417746685306 +2019-12-17 00:30:00,25.0,0.075661376,22.535737592734748 +2019-12-17 00:45:00,25.0,0.06984127,22.537298035575567 +2019-12-17 01:00:00,25.0,0.055555556,22.538858795174804 +2019-12-17 01:15:00,25.0,0.050793651,22.54041987133172 +2019-12-17 01:30:00,25.0,0.043386243,22.54198126384553 +2019-12-17 01:45:00,25.0,0.043386243,22.54354297251539 +2019-12-17 02:00:00,25.0,0.045502646,22.54510499714043 +2019-12-17 02:15:00,25.0,0.043386243,22.546667337519757 +2019-12-17 02:30:00,25.0,0.037037037,22.548229993452402 +2019-12-17 02:45:00,25.0,0.034920635,22.54979296473737 +2019-12-17 03:00:00,25.0,0.02962963,22.551356251173647 +2019-12-17 03:15:00,25.0,0.03015873,22.552919852560148 +2019-12-17 03:30:00,25.0,0.036507937,22.554483768695757 +2019-12-17 03:45:00,25.0,0.034920635,22.556047999379317 +2019-12-17 04:00:00,25.0,0.041269841,22.557612544409643 +2019-12-17 04:15:00,25.0,0.041798942,22.559177403585494 +2019-12-17 04:30:00,25.0,0.052380952,22.560742576705586 +2019-12-17 04:45:00,25.0,0.064550265,22.562308063568622 +2019-12-17 05:00:00,25.0,0.068783069,22.56387386397323 +2019-12-17 05:15:00,25.0,0.072486772,22.56543997771802 +2019-12-17 05:30:00,25.0,0.086243386,22.567006404601546 +2019-12-17 05:45:00,25.0,0.101058201,22.568573144422345 +2019-12-17 06:00:00,25.0,0.126455026,22.57014019697889 +2019-12-17 06:15:00,25.0,0.134391534,22.57170756206962 +2019-12-17 06:30:00,25.0,0.146560847,22.573275239492947 +2019-12-17 06:45:00,25.0,0.183068783,22.57484322904723 +2019-12-17 07:00:00,25.0,0.204232804,22.576411530530784 +2019-12-17 07:15:00,25.0,0.206878307,22.577980143741886 +2019-12-17 07:30:00,25.0,0.199470899,22.579549068478798 +2019-12-17 07:45:00,25.0,0.180952381,22.581118304539704 +2019-12-17 08:00:00,25.0,0.166666667,22.582687851722763 +2019-12-17 08:15:00,25.0,0.174603175,22.58425770982611 +2019-12-17 08:30:00,25.0,0.174603175,22.585827878647827 +2019-12-17 08:45:00,25.0,0.183597884,22.58739835798594 +2019-12-17 09:00:00,25.0,0.184656085,22.58896914763845 +2019-12-17 09:15:00,25.0,0.188888889,22.59054024740334 +2019-12-17 09:30:00,25.0,0.167724868,22.592111657078515 +2019-12-17 09:45:00,25.0,0.184126984,22.59368337646185 +2019-12-17 10:00:00,25.0,0.194179894,22.595255405351207 +2019-12-17 10:15:00,25.0,0.205291005,22.596827743544374 +2019-12-17 10:30:00,25.0,0.198412698,22.598400390839117 +2019-12-17 10:45:00,25.0,0.206878307,22.599973347033156 +2019-12-17 11:00:00,25.0,0.244973545,22.601546611924178 +2019-12-17 11:15:00,25.0,0.262962963,22.603120185309827 +2019-12-17 11:30:00,25.0,0.286772487,22.60469406698769 +2019-12-17 11:45:00,25.0,0.346031746,22.606268256755357 +2019-12-17 12:00:00,25.0,0.387830688,22.60784275441034 +2019-12-17 12:15:00,25.0,0.40952381,22.609417559750117 +2019-12-17 12:30:00,25.0,0.433333333,22.610992672572134 +2019-12-17 12:45:00,25.0,0.439153439,22.612568092673808 +2019-12-17 13:00:00,25.0,0.427513228,22.614143819852497 +2019-12-17 13:15:00,25.0,0.467724868,22.61571985390552 +2019-12-17 13:30:00,25.0,0.485714286,22.617296194630182 +2019-12-17 13:45:00,25.0,0.492592593,22.618872841823716 +2019-12-17 14:00:00,25.0,0.5,22.62044979528334 +2019-12-17 14:15:00,25.0,0.495767196,22.622027054806203 +2019-12-17 14:30:00,25.0,0.496296296,22.623604620189457 +2019-12-17 14:45:00,25.0,0.512169312,22.625182491230184 +2019-12-17 15:00:00,25.0,0.512698413,22.626760667725424 +2019-12-17 15:15:00,25.0,0.496296296,22.628339149472207 +2019-12-17 15:30:00,25.0,0.503703704,22.629917936267496 +2019-12-17 15:45:00,25.0,0.529100529,22.631497027908225 +2019-12-17 16:00:00,25.0,0.534920635,22.633076424191273 +2019-12-17 16:15:00,25.0,0.55026455,22.63465612491352 +2019-12-17 16:30:00,25.0,0.564021164,22.63623612987177 +2019-12-17 16:45:00,25.0,0.565608466,22.637816438862785 +2019-12-17 17:00:00,25.0,0.565608466,22.639397051683325 +2019-12-17 17:15:00,25.0,0.563492063,22.640977968130077 +2019-12-17 17:30:00,25.0,0.562433862,22.6425591879997 +2019-12-17 17:45:00,25.0,0.561375661,22.64414071108881 +2019-12-17 18:00:00,25.0,0.566137566,22.645722537193997 +2019-12-17 18:15:00,25.0,0.570899471,22.647304666111797 +2019-12-17 18:30:00,25.0,0.576190476,22.64888709763871 +2019-12-17 18:45:00,25.0,0.561375661,22.650469831571208 +2019-12-17 19:00:00,25.0,0.56984127,22.652052867705716 +2019-12-17 19:15:00,25.0,0.560846561,22.653636205838605 +2019-12-17 19:30:00,25.0,0.59047619,22.655219845766243 +2019-12-17 19:45:00,25.0,0.556613757,22.656803787284932 +2019-12-17 20:00:00,25.0,0.507936508,22.658388030190935 +2019-12-17 20:15:00,25.0,0.480952381,22.65997257428048 +2019-12-17 20:30:00,25.0,0.454497354,22.661557419349776 +2019-12-17 20:45:00,25.0,0.435449735,22.663142565194967 +2019-12-17 21:00:00,25.0,0.405291005,22.664728011612162 +2019-12-17 21:15:00,25.0,0.400529101,22.666313758397447 +2019-12-17 21:30:00,25.0,0.376190476,22.667899805346856 +2019-12-17 21:45:00,25.0,0.37989418,22.66948615225639 +2019-12-17 22:00:00,25.0,0.417460317,22.671072798921998 +2019-12-17 22:15:00,25.0,0.447619048,22.67265974513962 +2019-12-17 22:30:00,25.0,0.459259259,22.674246990705125 +2019-12-17 22:45:00,25.0,0.522751323,22.67583453541436 +2019-12-17 23:00:00,25.0,0.583068783,22.67742237906314 +2019-12-17 23:15:00,25.0,0.627513228,22.67901052144723 +2019-12-17 23:30:00,25.0,0.641798942,22.680598962362353 +2019-12-17 23:45:00,25.0,0.611640212,22.682187701604196 +2019-12-18 00:00:00,25.0,0.611111111,22.68377673896843 +2019-12-18 00:15:00,25.0,0.660846561,22.685366074250656 +2019-12-18 00:30:00,25.0,0.675132275,22.686955707246447 +2019-12-18 00:45:00,25.0,0.728042328,22.688545637751353 +2019-12-18 01:00:00,25.0,0.673015873,22.69013586556087 +2019-12-18 01:15:00,25.0,0.682539683,22.69172639047045 +2019-12-18 01:30:00,25.0,0.638624339,22.693317212275517 +2019-12-18 01:45:00,25.0,0.677248677,22.69490833077147 +2019-12-18 02:00:00,25.0,0.687830688,22.696499745753645 +2019-12-18 02:15:00,25.0,0.729100529,22.698091457017345 +2019-12-18 02:30:00,25.0,0.765608466,22.699683464357857 +2019-12-18 02:45:00,25.0,0.799470899,22.7012757675704 +2019-12-18 03:00:00,25.0,0.808465608,22.702868366450176 +2019-12-18 03:15:00,25.0,0.849206349,22.70446126079233 +2019-12-18 03:30:00,25.0,0.867195767,22.706054450391992 +2019-12-18 03:45:00,25.0,0.865079365,22.70764793504424 +2019-12-18 04:00:00,25.0,0.863492063,22.709241714544106 +2019-12-18 04:15:00,25.0,0.867195767,22.71083578868661 +2019-12-18 04:30:00,25.0,0.865079365,22.71243015726671 +2019-12-18 04:45:00,25.0,0.869312169,22.714024820079338 +2019-12-18 05:00:00,25.0,0.868783069,22.71561977691937 +2019-12-18 05:15:00,25.0,0.858201058,22.717215027581688 +2019-12-18 05:30:00,25.0,0.848677249,22.718810571861084 +2019-12-18 05:45:00,25.0,0.835449735,22.720406409552336 +2019-12-18 06:00:00,25.0,0.827513228,22.722002540450198 +2019-12-18 06:15:00,25.0,0.822751323,22.72359896434936 +2019-12-18 06:30:00,25.0,0.804232804,22.725195681044493 +2019-12-18 06:45:00,25.0,0.802645503,22.726792690330214 +2019-12-18 07:00:00,25.0,0.800529101,22.728389992001127 +2019-12-18 07:15:00,25.0,0.779365079,22.72998758585177 +2019-12-18 07:30:00,25.0,0.737037037,22.731585471676656 +2019-12-18 07:45:00,25.0,0.737037037,22.733183649270277 +2019-12-18 08:00:00,25.0,0.733862434,22.73478211842706 +2019-12-18 08:15:00,25.0,0.719047619,22.736380878941407 +2019-12-18 08:30:00,25.0,0.693650794,22.737979930607676 +2019-12-18 08:45:00,25.0,0.67037037,22.739579273220205 +2019-12-18 09:00:00,25.0,0.65978836,22.741178906573282 +2019-12-18 09:15:00,25.0,0.641269841,22.74277883046114 +2019-12-18 09:30:00,25.0,0.630687831,22.74437904467802 +2019-12-18 09:45:00,25.0,0.615873016,22.745979549018084 +2019-12-18 10:00:00,25.0,0.607936508,22.747580343275473 +2019-12-18 10:15:00,25.0,0.622222222,22.749181427244284 +2019-12-18 10:30:00,25.0,0.632804233,22.750782800718593 +2019-12-18 10:45:00,25.0,0.608465608,22.752384463492422 +2019-12-18 11:00:00,25.0,0.58042328,22.753986415359755 +2019-12-18 11:15:00,25.0,0.552910053,22.75558865611456 +2019-12-18 11:30:00,25.0,0.525396825,22.75719118555074 +2019-12-18 11:45:00,25.0,0.5,22.758794003462185 +2019-12-18 12:00:00,25.0,0.472486772,22.76039710964272 +2019-12-18 12:15:00,25.0,0.449206349,22.762000503886167 +2019-12-18 12:30:00,25.0,0.434391534,22.76360418598629 +2019-12-18 12:45:00,25.0,0.444444444,22.765208155736808 +2019-12-18 13:00:00,25.0,0.447089947,22.76681241293143 +2019-12-18 13:15:00,25.0,0.43015873,22.768416957363804 +2019-12-18 13:30:00,25.0,0.41005291,22.77002178882755 +2019-12-18 13:45:00,25.0,0.406878307,22.771626907116257 +2019-12-18 14:00:00,25.0,0.411640212,22.773232312023467 +2019-12-18 14:15:00,25.0,0.415343915,22.774838003342687 +2019-12-18 14:30:00,25.0,0.401058201,22.776443980867384 +2019-12-18 14:45:00,25.0,0.38994709,22.77805024439101 +2019-12-18 15:00:00,25.0,0.372486772,22.779656793706955 +2019-12-18 15:15:00,25.0,0.352910053,22.78126362860857 +2019-12-18 15:30:00,25.0,0.316931217,22.782870748889202 +2019-12-18 15:45:00,25.0,0.282010582,22.784478154342125 +2019-12-18 16:00:00,25.0,0.268253968,22.786085844760596 +2019-12-18 16:15:00,25.0,0.277248677,22.787693819937815 +2019-12-18 16:30:00,25.0,0.286243386,22.789302079666985 +2019-12-18 16:45:00,25.0,0.293650794,22.790910623741237 +2019-12-18 17:00:00,25.0,0.284126984,22.792519451953666 +2019-12-18 17:15:00,25.0,0.297354497,22.794128564097356 +2019-12-18 17:30:00,25.0,0.316931217,22.795737959965336 +2019-12-18 17:45:00,25.0,0.330687831,22.7973476393506 +2019-12-18 18:00:00,25.0,0.348148148,22.798957602046098 +2019-12-18 18:15:00,25.0,0.360846561,22.80056784784477 +2019-12-18 18:30:00,25.0,0.344444444,22.802178376539494 +2019-12-18 18:45:00,25.0,0.34973545,22.803789187923112 +2019-12-18 19:00:00,25.0,0.344973545,22.805400281788454 +2019-12-18 19:15:00,25.0,0.346031746,22.80701165792829 +2019-12-18 19:30:00,25.0,0.352910053,22.808623316135357 +2019-12-18 19:45:00,25.0,0.380952381,22.810235256202358 +2019-12-18 20:00:00,25.0,0.405291005,22.811847477921972 +2019-12-18 20:15:00,25.0,0.408994709,22.81345998108683 +2019-12-18 20:30:00,25.0,0.414814815,22.815072765489514 +2019-12-18 20:45:00,25.0,0.417460317,22.8166858309226 +2019-12-18 21:00:00,25.0,0.406349206,22.81829917717861 +2019-12-18 21:15:00,25.0,0.415873016,22.819912804050023 +2019-12-18 21:30:00,25.0,0.421693122,22.82152671132929 +2019-12-18 21:45:00,25.0,0.452380952,22.823140898808838 +2019-12-18 22:00:00,25.0,0.476719577,22.824755366281043 +2019-12-18 22:15:00,25.0,0.506878307,22.826370113538232 +2019-12-18 22:30:00,25.0,0.530687831,22.82798514037274 +2019-12-18 22:45:00,25.0,0.556613757,22.82960044657682 +2019-12-18 23:00:00,25.0,0.603703704,22.831216031942713 +2019-12-18 23:15:00,25.0,0.608465608,22.83283189626261 +2019-12-18 23:30:00,25.0,0.627513228,22.83444803932869 +2019-12-18 23:45:00,25.0,0.645502646,22.836064460933073 +2019-12-19 00:00:00,25.0,0.653968254,22.837681160867845 +2019-12-19 00:15:00,25.0,0.661375661,22.839298138925077 +2019-12-19 00:30:00,25.0,0.671957672,22.840915394896783 +2019-12-19 00:45:00,25.0,0.677248677,22.842532928574943 +2019-12-19 01:00:00,25.0,0.684126984,22.844150739751502 +2019-12-19 01:15:00,25.0,0.701058201,22.84576882821839 +2019-12-19 01:30:00,25.0,0.705820106,22.847387193767474 +2019-12-19 01:45:00,25.0,0.715873016,22.84900583619059 +2019-12-19 02:00:00,25.0,0.733333333,22.850624755279558 +2019-12-19 02:15:00,25.0,0.747089947,22.852243950826146 +2019-12-19 02:30:00,25.0,0.76031746,22.853863422622084 +2019-12-19 02:45:00,25.0,0.775132275,22.855483170459067 +2019-12-19 03:00:00,25.0,0.783068783,22.857103194128772 +2019-12-19 03:15:00,25.0,0.788888889,22.858723493422826 +2019-12-19 03:30:00,25.0,0.783597884,22.860344068132807 +2019-12-19 03:45:00,25.0,0.778835979,22.861964918050294 +2019-12-19 04:00:00,25.0,0.777248677,22.863586042966798 +2019-12-19 04:15:00,25.0,0.769312169,22.86520744267381 +2019-12-19 04:30:00,25.0,0.761904762,22.86682911696277 +2019-12-19 04:45:00,25.0,0.758201058,22.868451065625113 +2019-12-19 05:00:00,25.0,0.752380952,22.87007328845221 +2019-12-19 05:15:00,25.0,0.757671958,22.871695785235403 +2019-12-19 05:30:00,25.0,0.753968254,22.873318555766016 +2019-12-19 05:45:00,25.0,0.761375661,22.874941599835317 +2019-12-19 06:00:00,25.0,0.767195767,22.876564917234546 +2019-12-19 06:15:00,25.0,0.766137566,22.8781885077549 +2019-12-19 06:30:00,25.0,0.77037037,22.879812371187562 +2019-12-19 06:45:00,25.0,0.778835979,22.881436507323663 +2019-12-19 07:00:00,25.0,0.776719577,22.883060915954296 +2019-12-19 07:15:00,25.0,0.768783069,22.88468559687054 +2019-12-19 07:30:00,25.0,0.782010582,22.886310549863417 +2019-12-19 07:45:00,25.0,0.764550265,22.88793577472391 +2019-12-19 08:00:00,25.0,0.757671958,22.889561271243 +2019-12-19 08:15:00,25.0,0.780952381,22.891187039211605 +2019-12-19 08:30:00,25.0,0.788359788,22.89281307842061 +2019-12-19 08:45:00,25.0,0.785185185,22.89443938866086 +2019-12-19 09:00:00,25.0,0.794708995,22.8960659697232 +2019-12-19 09:15:00,25.0,0.804761905,22.8976928213984 +2019-12-19 09:30:00,25.0,0.810582011,22.89931994347721 +2019-12-19 09:45:00,25.0,0.818518519,22.900947335750352 +2019-12-19 10:00:00,25.0,0.81957672,22.902574998008504 +2019-12-19 10:15:00,25.0,0.814814815,22.904202930042317 +2019-12-19 10:30:00,25.0,0.812169312,22.905831131642387 +2019-12-19 10:45:00,25.0,0.81957672,22.907459602599307 +2019-12-19 11:00:00,25.0,0.826984127,22.90908834270362 +2019-12-19 11:15:00,25.0,0.826984127,22.910717351745816 +2019-12-19 11:30:00,25.0,0.823280423,22.91234662951639 +2019-12-19 11:45:00,25.0,0.821164021,22.913976175805768 +2019-12-19 12:00:00,25.0,0.812698413,22.91560599040436 +2019-12-19 12:15:00,25.0,0.806878307,22.91723607310252 +2019-12-19 12:30:00,25.0,0.812169312,22.918866423690606 +2019-12-19 12:45:00,25.0,0.838624339,22.920497041958907 +2019-12-19 13:00:00,25.0,0.816931217,22.92212792769768 +2019-12-19 13:15:00,25.0,0.811111111,22.923759080697174 +2019-12-19 13:30:00,25.0,0.805291005,22.925390500747582 +2019-12-19 13:45:00,25.0,0.792592593,22.92702218763906 +2019-12-19 14:00:00,25.0,0.783597884,22.928654141161736 +2019-12-19 14:15:00,25.0,0.77989418,22.930286361105715 +2019-12-19 14:30:00,25.0,0.772486772,22.931918847261052 +2019-12-19 14:45:00,25.0,0.761375661,22.93355159941776 +2019-12-19 15:00:00,25.0,0.753968254,22.935184617365852 +2019-12-19 15:15:00,25.0,0.762433862,22.936817900895278 +2019-12-19 15:30:00,25.0,0.758730159,22.938451449795956 +2019-12-19 15:45:00,25.0,0.746031746,22.94008526385777 +2019-12-19 16:00:00,25.0,0.751322751,22.94171934287059 +2019-12-19 16:15:00,25.0,0.755555556,22.943353686624235 +2019-12-19 16:30:00,25.0,0.765608466,22.944988294908477 +2019-12-19 16:45:00,25.0,0.774074074,22.94662316751309 +2019-12-19 17:00:00,25.0,0.744444444,22.948258304227778 +2019-12-19 17:15:00,25.0,0.74021164,22.94989370484223 +2019-12-19 17:30:00,25.0,0.732804233,22.951529369146087 +2019-12-19 17:45:00,25.0,0.701058201,22.953165296928987 +2019-12-19 18:00:00,25.0,0.701058201,22.954801487980504 +2019-12-19 18:15:00,25.0,0.681481481,22.956437942090172 +2019-12-19 18:30:00,25.0,0.702116402,22.958074659047533 +2019-12-19 18:45:00,25.0,0.716402116,22.95971163864205 +2019-12-19 19:00:00,25.0,0.71957672,22.96134888066318 +2019-12-19 19:15:00,25.0,0.751851852,22.962986384900326 +2019-12-19 19:30:00,25.0,0.747619048,22.964624151142885 +2019-12-19 19:45:00,25.0,0.748677249,22.96626217918019 +2019-12-19 20:00:00,25.0,0.744444444,22.967900468801556 +2019-12-19 20:15:00,25.0,0.761904762,22.969539019796272 +2019-12-19 20:30:00,25.0,0.784126984,22.971177831953575 +2019-12-19 20:45:00,25.0,0.774074074,22.97281690506268 +2019-12-19 21:00:00,25.0,0.771428571,22.974456238912758 +2019-12-19 21:15:00,25.0,0.776190476,22.976095833292966 +2019-12-19 21:30:00,25.0,0.774603175,22.977735687992414 +2019-12-19 21:45:00,25.0,0.830687831,22.979375802800167 +2019-12-19 22:00:00,25.0,0.806349206,22.981016177505285 +2019-12-19 22:15:00,25.0,0.792592593,22.982656811896778 +2019-12-19 22:30:00,25.0,0.797354497,22.984297705763616 +2019-12-19 22:45:00,25.0,0.779365079,22.985938858894738 +2019-12-19 23:00:00,25.0,0.755026455,22.98758027107907 +2019-12-19 23:15:00,25.0,0.740740741,22.98922194210549 +2019-12-19 23:30:00,25.0,0.740740741,22.990863871762823 +2019-12-19 23:45:00,25.0,0.750793651,22.992506059839904 +2019-12-20 00:00:00,25.0,0.75026455,22.994148506125498 +2019-12-20 00:15:00,25.0,0.747089947,22.995791210408353 +2019-12-20 00:30:00,25.0,0.757142857,22.99743417247717 +2019-12-20 00:45:00,25.0,0.742328042,22.999077392120647 +2019-12-20 01:00:00,25.0,0.749206349,23.00072086912742 +2019-12-20 01:15:00,25.0,0.764550265,23.00236460328609 +2019-12-20 01:30:00,25.0,0.747089947,23.004008594385255 +2019-12-20 01:45:00,25.0,0.737037037,23.00565284221345 +2019-12-20 02:00:00,25.0,0.738624339,23.007297346559188 +2019-12-20 02:15:00,25.0,0.750793651,23.008942107210956 +2019-12-20 02:30:00,25.0,0.754497354,23.010587123957198 +2019-12-20 02:45:00,25.0,0.767195767,23.012232396586327 +2019-12-20 03:00:00,25.0,0.777777778,23.013877924886714 +2019-12-20 03:15:00,25.0,0.778835979,23.015523708646725 +2019-12-20 03:30:00,25.0,0.780952381,23.01716974765467 +2019-12-20 03:45:00,25.0,0.783068783,23.018816041698823 +2019-12-20 04:00:00,25.0,0.794179894,23.020462590567448 +2019-12-20 04:15:00,25.0,0.801058201,23.02210939404875 +2019-12-20 04:30:00,25.0,0.782010582,23.02375645193092 +2019-12-20 04:45:00,25.0,0.785714286,23.025403764002103 +2019-12-20 05:00:00,25.0,0.792592593,23.027051330050426 +2019-12-20 05:15:00,25.0,0.796296296,23.028699149863975 +2019-12-20 05:30:00,25.0,0.792592593,23.03034722323079 +2019-12-20 05:45:00,25.0,0.798412698,23.031995549938912 +2019-12-20 06:00:00,25.0,0.798941799,23.033644129776317 +2019-12-20 06:15:00,25.0,0.794708995,23.035292962530967 +2019-12-20 06:30:00,25.0,0.805820106,23.03694204799077 +2019-12-20 06:45:00,25.0,0.813227513,23.038591385943636 +2019-12-20 07:00:00,25.0,0.812169312,23.04024097617742 +2019-12-20 07:15:00,25.0,0.814814815,23.04189081847993 +2019-12-20 07:30:00,25.0,0.793650794,23.04354091263899 +2019-12-20 07:45:00,25.0,0.773015873,23.045191258442337 +2019-12-20 08:00:00,25.0,0.774074074,23.04684185567771 +2019-12-20 08:15:00,25.0,0.778306878,23.04849270413279 +2019-12-20 08:30:00,25.0,0.775132275,23.050143803595265 +2019-12-20 08:45:00,25.0,0.774603175,23.05179515385276 +2019-12-20 09:00:00,25.0,0.776719577,23.053446754692853 +2019-12-20 09:15:00,25.0,0.778835979,23.05509860590314 +2019-12-20 09:30:00,25.0,0.774603175,23.056750707271146 +2019-12-20 09:45:00,25.0,0.769312169,23.058403058584368 +2019-12-20 10:00:00,25.0,0.765079365,23.060055659630276 +2019-12-20 10:15:00,25.0,0.761904762,23.06170851019632 +2019-12-20 10:30:00,25.0,0.761375661,23.063361610069897 +2019-12-20 10:45:00,25.0,0.755026455,23.06501495903838 +2019-12-20 11:00:00,25.0,0.752380952,23.066668556889123 +2019-12-20 11:15:00,25.0,0.754497354,23.06832240340943 +2019-12-20 11:30:00,25.0,0.758201058,23.069976498386577 +2019-12-20 11:45:00,25.0,0.757142857,23.071630841607803 +2019-12-20 12:00:00,25.0,0.757671958,23.07328543286034 +2019-12-20 12:15:00,25.0,0.761375661,23.074940271931364 +2019-12-20 12:30:00,25.0,0.763492063,23.076595358608017 +2019-12-20 12:45:00,25.0,0.785714286,23.078250692677432 +2019-12-20 13:00:00,25.0,0.78042328,23.07990627392669 +2019-12-20 13:15:00,25.0,0.774074074,23.081562102142843 +2019-12-20 13:30:00,25.0,0.764021164,23.08321817711291 +2019-12-20 13:45:00,25.0,0.753439153,23.084874498623897 +2019-12-20 14:00:00,25.0,0.749206349,23.086531066462758 +2019-12-20 14:15:00,25.0,0.748148148,23.088187880416413 +2019-12-20 14:30:00,25.0,0.74973545,23.089844940271774 +2019-12-20 14:45:00,25.0,0.751322751,23.091502245815697 +2019-12-20 15:00:00,25.0,0.752910053,23.093159796835014 +2019-12-20 15:15:00,25.0,0.74973545,23.094817593116527 +2019-12-20 15:30:00,25.0,0.751851852,23.096475634447014 +2019-12-20 15:45:00,25.0,0.754497354,23.098133920613208 +2019-12-20 16:00:00,25.0,0.760846561,23.09979245140181 +2019-12-20 16:15:00,25.0,0.768253968,23.10145122659951 +2019-12-20 16:30:00,25.0,0.771428571,23.10311024599295 +2019-12-20 16:45:00,25.0,0.776190476,23.104769509368737 +2019-12-20 17:00:00,25.0,0.79047619,23.106429016513445 +2019-12-20 17:15:00,25.0,0.802116402,23.108088767213644 +2019-12-20 17:30:00,25.0,0.798941799,23.10974876125584 +2019-12-20 17:45:00,25.0,0.799470899,23.11140899842652 +2019-12-20 18:00:00,25.0,0.812698413,23.11306947851215 +2019-12-20 18:15:00,25.0,0.816931217,23.114730201299146 +2019-12-20 18:30:00,25.0,0.816931217,23.1163911665739 +2019-12-20 18:45:00,25.0,0.811111111,23.11805237412279 +2019-12-20 19:00:00,25.0,0.804232804,23.119713823732134 +2019-12-20 19:15:00,25.0,0.795767196,23.12137551518824 +2019-12-20 19:30:00,25.0,0.795238095,23.123037448277366 +2019-12-20 19:45:00,25.0,0.788888889,23.124699622785762 +2019-12-20 20:00:00,25.0,0.77037037,23.126362038499632 +2019-12-20 20:15:00,25.0,0.769312169,23.128024695205145 +2019-12-20 20:30:00,25.0,0.778835979,23.12968759268846 +2019-12-20 20:45:00,25.0,0.798941799,23.131350730735683 +2019-12-20 21:00:00,25.0,0.812698413,23.1330141091329 +2019-12-20 21:15:00,25.0,0.810582011,23.134677727666155 +2019-12-20 21:30:00,25.0,0.819047619,23.136341586121482 +2019-12-20 21:45:00,25.0,0.814814815,23.138005684284867 +2019-12-20 22:00:00,25.0,0.813227513,23.13967002194226 +2019-12-20 22:15:00,25.0,0.816402116,23.141334598879606 +2019-12-20 22:30:00,25.0,0.814285714,23.142999414882798 +2019-12-20 22:45:00,25.0,0.808994709,23.1446644697377 +2019-12-20 23:00:00,25.0,0.807407407,23.146329763230145 +2019-12-20 23:15:00,25.0,0.80952381,23.14799529514595 +2019-12-20 23:30:00,25.0,0.811640212,23.149661065270887 +2019-12-20 23:45:00,25.0,0.80952381,23.15132707339069 +2019-12-21 00:00:00,25.0,0.80952381,23.152993319291088 +2019-12-21 00:15:00,25.0,0.811640212,23.154659802757763 +2019-12-21 00:30:00,25.0,0.817460317,23.15632652357636 +2019-12-21 00:45:00,25.0,0.831216931,23.157993481532497 +2019-12-21 01:00:00,25.0,0.835449735,23.159660676411782 +2019-12-21 01:15:00,25.0,0.84021164,23.161328107999772 +2019-12-21 01:30:00,25.0,0.826984127,23.16299577608198 +2019-12-21 01:45:00,25.0,0.82010582,23.164663680443937 +2019-12-21 02:00:00,25.0,0.82962963,23.166331820871093 +2019-12-21 02:15:00,25.0,0.846031746,23.168000197148896 +2019-12-21 02:30:00,25.0,0.845502646,23.169668809062742 +2019-12-21 02:45:00,25.0,0.848677249,23.171337656398027 +2019-12-21 03:00:00,25.0,0.847089947,23.173006738940096 +2019-12-21 03:15:00,25.0,0.806878307,23.174676056474254 +2019-12-21 03:30:00,25.0,0.794179894,23.176345608785812 +2019-12-21 03:45:00,25.0,0.793650794,23.178015395660015 +2019-12-21 04:00:00,25.0,0.787301587,23.179685416882094 +2019-12-21 04:15:00,25.0,0.780952381,23.18135567223724 +2019-12-21 04:30:00,25.0,0.776719577,23.183026161510632 +2019-12-21 04:45:00,25.0,0.772486772,23.184696884487405 +2019-12-21 05:00:00,25.0,0.769312169,23.186367840952656 +2019-12-21 05:15:00,25.0,0.773544974,23.188039030691478 +2019-12-21 05:30:00,25.0,0.761375661,23.189710453488914 +2019-12-21 05:45:00,25.0,0.753968254,23.19138210912998 +2019-12-21 06:00:00,25.0,0.755026455,23.19305399739965 +2019-12-21 06:15:00,25.0,0.746560847,23.19472611808291 +2019-12-21 06:30:00,25.0,0.74021164,23.196398470964674 +2019-12-21 06:45:00,25.0,0.728571429,23.19807105582983 +2019-12-21 07:00:00,25.0,0.703174603,23.199743872463262 +2019-12-21 07:15:00,25.0,0.68042328,23.2014169206498 +2019-12-21 07:30:00,25.0,0.653968254,23.20309020017426 +2019-12-21 07:45:00,25.0,0.661375661,23.204763710821403 +2019-12-21 08:00:00,25.0,0.648677249,23.206437452376004 +2019-12-21 08:15:00,25.0,0.628571429,23.208111424622768 +2019-12-21 08:30:00,25.0,0.622751323,23.209785627346374 +2019-12-21 08:45:00,25.0,0.62010582,23.211460060331508 +2019-12-21 09:00:00,25.0,0.614285714,23.213134723362785 +2019-12-21 09:15:00,25.0,0.58994709,23.21480961622481 +2019-12-21 09:30:00,25.0,0.585185185,23.21648473870214 +2019-12-21 09:45:00,25.0,0.597354497,23.21816009057934 +2019-12-21 10:00:00,25.0,0.597883598,23.21983567164091 +2019-12-21 10:15:00,25.0,0.599470899,23.221511481671328 +2019-12-21 10:30:00,25.0,0.612698413,23.223187520455063 +2019-12-21 10:45:00,25.0,0.600529101,23.224863787776528 +2019-12-21 11:00:00,25.0,0.588359788,23.22654028342012 +2019-12-21 11:15:00,25.0,0.6,23.228217007170194 +2019-12-21 11:30:00,25.0,0.605820106,23.229893958811108 +2019-12-21 11:45:00,25.0,0.596825397,23.23157113812715 +2019-12-21 12:00:00,25.0,0.571428571,23.2332485449026 +2019-12-21 12:15:00,25.0,0.552910053,23.23492617892172 +2019-12-21 12:30:00,25.0,0.552910053,23.236604039968718 +2019-12-21 12:45:00,25.0,0.549206349,23.238282127827773 +2019-12-21 13:00:00,25.0,0.566137566,23.239960442283067 +2019-12-21 13:15:00,25.0,0.587830688,23.24163898311872 +2019-12-21 13:30:00,25.0,0.591005291,23.243317750118834 +2019-12-21 13:45:00,25.0,0.591005291,23.244996743067475 +2019-12-21 14:00:00,25.0,0.573544974,23.246675961748707 +2019-12-21 14:15:00,25.0,0.561904762,23.24835540594653 +2019-12-21 14:30:00,25.0,0.571428571,23.250035075444927 +2019-12-21 14:45:00,25.0,0.583597884,23.251714970027866 +2019-12-21 15:00:00,25.0,0.586243386,23.253395089479273 +2019-12-21 15:15:00,25.0,0.573544974,23.255075433583045 +2019-12-21 15:30:00,25.0,0.575661376,23.256756002123044 +2019-12-21 15:45:00,25.0,0.561904762,23.258436794883128 +2019-12-21 16:00:00,25.0,0.567195767,23.2601178116471 +2019-12-21 16:15:00,25.0,0.574074074,23.261799052198732 +2019-12-21 16:30:00,25.0,0.553439153,23.263480516321806 +2019-12-21 16:45:00,25.0,0.551322751,23.26516220380003 +2019-12-21 17:00:00,25.0,0.565079365,23.266844114417104 +2019-12-21 17:15:00,25.0,0.58042328,23.268526247956693 +2019-12-21 17:30:00,25.0,0.58994709,23.27020860420245 +2019-12-21 17:45:00,25.0,0.618518519,23.271891182937978 +2019-12-21 18:00:00,25.0,0.623280423,23.27357398394685 +2019-12-21 18:15:00,25.0,0.621693122,23.27525700701264 +2019-12-21 18:30:00,25.0,0.631216931,23.276940251918862 +2019-12-21 18:45:00,25.0,0.641269841,23.27862371844902 +2019-12-21 19:00:00,25.0,0.649206349,23.280307406386566 +2019-12-21 19:15:00,25.0,0.672486772,23.28199131551496 +2019-12-21 19:30:00,25.0,0.687830688,23.283675445617607 +2019-12-21 19:45:00,25.0,0.665608466,23.28535979647788 +2019-12-21 20:00:00,25.0,0.662962963,23.287044367879155 +2019-12-21 20:15:00,25.0,0.666137566,23.288729159604742 +2019-12-21 20:30:00,25.0,0.646031746,23.290414171437945 +2019-12-21 20:45:00,25.0,0.602116402,23.292099403162027 +2019-12-21 21:00:00,25.0,0.568253968,23.29378485456024 +2019-12-21 21:15:00,25.0,0.52962963,23.295470525415794 +2019-12-21 21:30:00,25.0,0.507936508,23.297156415511864 +2019-12-21 21:45:00,25.0,0.516402116,23.298842524631624 +2019-12-21 22:00:00,25.0,0.531216931,23.300528852558195 +2019-12-21 22:15:00,25.0,0.52962963,23.302215399074676 +2019-12-21 22:30:00,25.0,0.527513228,23.303902163964132 +2019-12-21 22:45:00,25.0,0.522222222,23.305589147009623 +2019-12-21 23:00:00,25.0,0.516931217,23.30727634799416 +2019-12-21 23:15:00,25.0,0.519047619,23.30896376670072 +2019-12-21 23:30:00,25.0,0.524867725,23.31065140291228 +2019-12-21 23:45:00,25.0,0.525396825,23.312339256411768 +2019-12-22 00:00:00,25.0,0.522751323,23.314027326982085 +2019-12-22 00:15:00,25.0,0.529100529,23.3157156144061 +2019-12-22 00:30:00,25.0,0.506349206,23.317404118466676 +2019-12-22 00:45:00,25.0,0.469312169,23.319092838946627 +2019-12-22 01:00:00,25.0,0.43968254,23.32078177562874 +2019-12-22 01:15:00,25.0,0.430687831,23.32247092829579 +2019-12-22 01:30:00,25.0,0.432275132,23.324160296730515 +2019-12-22 01:45:00,25.0,0.45026455,23.325849880715616 +2019-12-22 02:00:00,25.0,0.474074074,23.327539680033773 +2019-12-22 02:15:00,25.0,0.492063492,23.329229694467653 +2019-12-22 02:30:00,25.0,0.484656085,23.330919923799875 +2019-12-22 02:45:00,25.0,0.451851852,23.332610367813032 +2019-12-22 03:00:00,25.0,0.398412698,23.334301026289708 +2019-12-22 03:15:00,25.0,0.385185185,23.335991899012438 +2019-12-22 03:30:00,25.0,0.377777778,23.337682985763742 +2019-12-22 03:45:00,25.0,0.388888889,23.3393742863261 +2019-12-22 04:00:00,25.0,0.412169312,23.34106580048198 +2019-12-22 04:15:00,25.0,0.421164021,23.34275752801382 +2019-12-22 04:30:00,25.0,0.412169312,23.344449468704013 +2019-12-22 04:45:00,25.0,0.397883598,23.346141622334954 +2019-12-22 05:00:00,25.0,0.397883598,23.347833988688986 +2019-12-22 05:15:00,25.0,0.404761905,23.34952656754843 +2019-12-22 05:30:00,25.0,0.397883598,23.35121935869558 +2019-12-22 05:45:00,25.0,0.380952381,23.35291236191272 +2019-12-22 06:00:00,25.0,0.381481481,23.35460557698208 +2019-12-22 06:15:00,25.0,0.382539683,23.35629900368587 +2019-12-22 06:30:00,25.0,0.364550265,23.357992641806295 +2019-12-22 06:45:00,25.0,0.350793651,23.359686491125505 +2019-12-22 07:00:00,25.0,0.35978836,23.361380551425622 +2019-12-22 07:15:00,25.0,0.365079365,23.363074822488777 +2019-12-22 07:30:00,25.0,0.366137566,23.36476930409703 +2019-12-22 07:45:00,25.0,0.355026455,23.366463996032444 +2019-12-22 08:00:00,25.0,0.352380952,23.368158898077024 +2019-12-22 08:15:00,25.0,0.377248677,23.369854010012794 +2019-12-22 08:30:00,25.0,0.385185185,23.37154933162171 +2019-12-22 08:45:00,25.0,0.373015873,23.373244862685716 +2019-12-22 09:00:00,25.0,0.365079365,23.374940602986733 +2019-12-22 09:15:00,25.0,0.379365079,23.376636552306653 +2019-12-22 09:30:00,25.0,0.394708995,23.378332710427337 +2019-12-22 09:45:00,25.0,0.398412698,23.380029077130608 +2019-12-22 10:00:00,25.0,0.396825397,23.3817256521983 +2019-12-22 10:15:00,25.0,0.395767196,23.383422435412175 +2019-12-22 10:30:00,25.0,0.387301587,23.385119426553995 +2019-12-22 10:45:00,25.0,0.371957672,23.386816625405494 +2019-12-22 11:00:00,25.0,0.374074074,23.388514031748375 +2019-12-22 11:15:00,25.0,0.378306878,23.390211645364307 +2019-12-22 11:30:00,25.0,0.374074074,23.391909466034935 +2019-12-22 11:45:00,25.0,0.355555556,23.393607493541897 +2019-12-22 12:00:00,25.0,0.343386243,23.395305727666777 +2019-12-22 12:15:00,25.0,0.318518519,23.39700416819114 +2019-12-22 12:30:00,25.0,0.298941799,23.398702814896545 +2019-12-22 12:45:00,25.0,0.297354497,23.400401667564495 +2019-12-22 13:00:00,25.0,0.303174603,23.40210072597649 +2019-12-22 13:15:00,25.0,0.313227513,23.40379998991397 +2019-12-22 13:30:00,25.0,0.31957672,23.405499459158403 +2019-12-22 13:45:00,25.0,0.320634921,23.407199133491183 +2019-12-22 14:00:00,25.0,0.318518519,23.408899012693684 +2019-12-22 14:15:00,25.0,0.317460317,23.410599096547287 +2019-12-22 14:30:00,25.0,0.328571429,23.41229938483331 +2019-12-22 14:45:00,25.0,0.331746032,23.41399987733306 +2019-12-22 15:00:00,25.0,0.331746032,23.415700573827806 +2019-12-22 15:15:00,25.0,0.319047619,23.41740147409882 +2019-12-22 15:30:00,25.0,0.311640212,23.419102577927315 +2019-12-22 15:45:00,25.0,0.307407407,23.42080388509449 +2019-12-22 16:00:00,25.0,0.303703704,23.422505395381528 +2019-12-22 16:15:00,25.0,0.302116402,23.424207108569572 +2019-12-22 16:30:00,25.0,0.300529101,23.425909024439743 +2019-12-22 16:45:00,25.0,0.312698413,23.42761114277313 +2019-12-22 17:00:00,25.0,0.30952381,23.42931346335082 +2019-12-22 17:15:00,25.0,0.305820106,23.43101598595384 +2019-12-22 17:30:00,25.0,0.295238095,23.43271871036321 +2019-12-22 17:45:00,25.0,0.29047619,23.434421636359936 +2019-12-22 18:00:00,25.0,0.293121693,23.43612476372497 +2019-12-22 18:15:00,25.0,0.293650794,23.437828092239258 +2019-12-22 18:30:00,25.0,0.289417989,23.4395316216837 +2019-12-22 18:45:00,25.0,0.293650794,23.441235351839204 +2019-12-22 19:00:00,25.0,0.292063492,23.442939282486623 +2019-12-22 19:15:00,25.0,0.285185185,23.444643413406787 +2019-12-22 19:30:00,25.0,0.268253968,23.44634774438052 +2019-12-22 19:45:00,25.0,0.255026455,23.4480522751886 +2019-12-22 20:00:00,25.0,0.248148148,23.44975700561179 +2019-12-22 20:15:00,25.0,0.237566138,23.45146193543081 +2019-12-22 20:30:00,25.0,0.234391534,23.45316706442639 +2019-12-22 20:45:00,25.0,0.244973545,23.454872392379198 +2019-12-22 21:00:00,25.0,0.251851852,23.456577919069886 +2019-12-22 21:15:00,25.0,0.26031746,23.458283644279103 +2019-12-22 21:30:00,25.0,0.257671958,23.459989567787442 +2019-12-22 21:45:00,25.0,0.258730159,23.461695689375485 +2019-12-22 22:00:00,25.0,0.273015873,23.46340200882378 +2019-12-22 22:15:00,25.0,0.295767196,23.465108525912875 +2019-12-22 22:30:00,25.0,0.327513228,23.466815240423262 +2019-12-22 22:45:00,25.0,0.354497354,23.46852215213541 +2019-12-22 23:00:00,25.0,0.401058201,23.47022926082979 +2019-12-22 23:15:00,25.0,0.45026455,23.47193656628682 +2019-12-22 23:30:00,25.0,0.498941799,23.47364406828691 +2019-12-22 23:45:00,25.0,0.544444444,23.475351766610416 +2019-12-23 00:00:00,25.0,0.570899471,23.477059661037718 +2019-12-23 00:15:00,25.0,0.597354497,23.47876775134913 +2019-12-23 00:30:00,25.0,0.602116402,23.480476037324944 +2019-12-23 00:45:00,25.0,0.614285714,23.482184518745456 +2019-12-23 01:00:00,25.0,0.629100529,23.483893195390902 +2019-12-23 01:15:00,25.0,0.625925926,23.48560206704151 +2019-12-23 01:30:00,25.0,0.623809524,23.487311133477487 +2019-12-23 01:45:00,25.0,0.644973545,23.48902039447901 +2019-12-23 02:00:00,25.0,0.665608466,23.490729849826224 +2019-12-23 02:15:00,25.0,0.661375661,23.49243949929925 +2019-12-23 02:30:00,25.0,0.66984127,23.4941493426782 +2019-12-23 02:45:00,25.0,0.676719577,23.49585937974315 +2019-12-23 03:00:00,25.0,0.670899471,23.497569610274134 +2019-12-23 03:15:00,25.0,0.663492063,23.4992800340512 +2019-12-23 03:30:00,25.0,0.667195767,23.50099065085434 +2019-12-23 03:45:00,25.0,0.69047619,23.502701460463534 +2019-12-23 04:00:00,25.0,0.708994709,23.504412462658717 +2019-12-23 04:15:00,25.0,0.734920635,23.50612365721984 +2019-12-23 04:30:00,25.0,0.758201058,23.507835043926796 +2019-12-23 04:45:00,25.0,0.768253968,23.50954662255945 +2019-12-23 05:00:00,25.0,0.775132275,23.511258392897677 +2019-12-23 05:15:00,25.0,0.764550265,23.512970354721293 +2019-12-23 05:30:00,25.0,0.748677249,23.5146825078101 +2019-12-23 05:45:00,25.0,0.746560847,23.516394851943875 +2019-12-23 06:00:00,25.0,0.726984127,23.518107386902383 +2019-12-23 06:15:00,25.0,0.712169312,23.519820112465347 +2019-12-23 06:30:00,25.0,0.703703704,23.521533028412463 +2019-12-23 06:45:00,25.0,0.693121693,23.523246134523433 +2019-12-23 07:00:00,25.0,0.684656085,23.524959430577898 +2019-12-23 07:15:00,25.0,0.671428571,23.526672916355494 +2019-12-23 07:30:00,25.0,0.648677249,23.528386591635822 +2019-12-23 07:45:00,25.0,0.628571429,23.53010045619848 +2019-12-23 08:00:00,25.0,0.635449735,23.53181450982302 +2019-12-23 08:15:00,25.0,0.634920635,23.533528752288962 +2019-12-23 08:30:00,25.0,0.650793651,23.535243183375837 +2019-12-23 08:45:00,25.0,0.598941799,23.536957802863125 +2019-12-23 09:00:00,25.0,0.607407407,23.538672610530284 +2019-12-23 09:15:00,25.0,0.604232804,23.540387606156745 +2019-12-23 09:30:00,25.0,0.598941799,23.542102789521937 +2019-12-23 09:45:00,25.0,0.607407407,23.543818160405245 +2019-12-23 10:00:00,25.0,0.608994709,23.545533718586018 +2019-12-23 10:15:00,25.0,0.608465608,23.547249463843617 +2019-12-23 10:30:00,25.0,0.583597884,23.548965395957353 +2019-12-23 10:45:00,25.0,0.582010582,23.550681514706515 +2019-12-23 11:00:00,25.0,0.616402116,23.552397819870365 +2019-12-23 11:15:00,25.0,0.620634921,23.55411431122817 +2019-12-23 11:30:00,25.0,0.61005291,23.55583098855913 +2019-12-23 11:45:00,25.0,0.635978836,23.557547851642447 +2019-12-23 12:00:00,25.0,0.635449735,23.559264900257304 +2019-12-23 12:15:00,25.0,0.619047619,23.56098213418284 +2019-12-23 12:30:00,25.0,0.621164021,23.562699553198186 +2019-12-23 12:45:00,25.0,0.623809524,23.56441715708243 +2019-12-23 13:00:00,25.0,0.631216931,23.56613494561467 +2019-12-23 13:15:00,25.0,0.613227513,23.56785291857395 +2019-12-23 13:30:00,25.0,0.59047619,23.569571075739297 +2019-12-23 13:45:00,25.0,0.576719577,23.571289416889726 +2019-12-23 14:00:00,25.0,0.58994709,23.573007941804217 +2019-12-23 14:15:00,25.0,0.569312169,23.574726650261727 +2019-12-23 14:30:00,25.0,0.535978836,23.576445542041185 +2019-12-23 14:45:00,25.0,0.520634921,23.57816461692152 +2019-12-23 15:00:00,25.0,0.514814815,23.57988387468161 +2019-12-23 15:15:00,25.0,0.488359788,23.581603315100317 +2019-12-23 15:30:00,25.0,0.493650794,23.583322937956492 +2019-12-23 15:45:00,25.0,0.521693122,23.58504274302895 +2019-12-23 16:00:00,25.0,0.524867725,23.58676273009648 +2019-12-23 16:15:00,25.0,0.536507937,23.588482898937855 +2019-12-23 16:30:00,25.0,0.564550265,23.59020324933183 +2019-12-23 16:45:00,25.0,0.582010582,23.591923781057126 +2019-12-23 17:00:00,25.0,0.604761905,23.593644493892434 +2019-12-23 17:15:00,25.0,0.638624339,23.59536538761645 +2019-12-23 17:30:00,25.0,0.650793651,23.59708646200782 +2019-12-23 17:45:00,25.0,0.661375661,23.598807716845172 +2019-12-23 18:00:00,25.0,0.669312169,23.60052915190711 +2019-12-23 18:15:00,25.0,0.686772487,23.602250766972237 +2019-12-23 18:30:00,25.0,0.685714286,23.603972561819102 +2019-12-23 18:45:00,25.0,0.705291005,23.60569453622624 +2019-12-23 19:00:00,25.0,0.717460317,23.60741668997218 +2019-12-23 19:15:00,25.0,0.731746032,23.609139022835407 +2019-12-23 19:30:00,25.0,0.755026455,23.61086153459438 +2019-12-23 19:45:00,25.0,0.779365079,23.612584225027568 +2019-12-23 20:00:00,25.0,0.795238095,23.614307093913382 +2019-12-23 20:15:00,25.0,0.799470899,23.616030141030222 +2019-12-23 20:30:00,25.0,0.804761905,23.61775336615646 +2019-12-23 20:45:00,25.0,0.795767196,23.61947676907047 +2019-12-23 21:00:00,25.0,0.798412698,23.621200349550566 +2019-12-23 21:15:00,25.0,0.797883598,23.62292410737506 +2019-12-23 21:30:00,25.0,0.758730159,23.624648042322246 +2019-12-23 21:45:00,25.0,0.746031746,23.626372154170383 +2019-12-23 22:00:00,25.0,0.751851852,23.628096442697714 +2019-12-23 22:15:00,25.0,0.761375661,23.629820907682443 +2019-12-23 22:30:00,25.0,0.796825397,23.631545548902785 +2019-12-23 22:45:00,25.0,0.795238095,23.63327036613691 +2019-12-23 23:00:00,25.0,0.79047619,23.63499535916295 +2019-12-23 23:15:00,25.0,0.822222222,23.636720527759053 +2019-12-23 23:30:00,25.0,0.821164021,23.63844587170332 +2019-12-23 23:45:00,25.0,0.820634921,23.640171390773823 +2019-12-24 00:00:00,25.0,0.825925926,23.641897084748624 +2019-12-24 00:15:00,25.0,0.832275132,23.64362295340577 +2019-12-24 00:30:00,25.0,0.841269841,23.64534899652327 +2019-12-24 00:45:00,25.0,0.84973545,23.64707521387911 +2019-12-24 01:00:00,25.0,0.676190476,23.648801605251272 +2019-12-24 01:15:00,25.0,0.639153439,23.6505281704177 +2019-12-24 01:30:00,25.0,0.625396825,23.652254909156316 +2019-12-24 01:45:00,25.0,0.633862434,23.653981821245015 +2019-12-24 02:00:00,25.0,0.621164021,23.655708906461694 +2019-12-24 02:15:00,25.0,0.577248677,23.657436164584205 +2019-12-24 02:30:00,25.0,0.565079365,23.65916359539037 +2019-12-24 02:45:00,25.0,0.564021164,23.660891198658028 +2019-12-24 03:00:00,25.0,0.573544974,23.66261897416496 +2019-12-24 03:15:00,25.0,0.570899471,23.66434692168893 +2019-12-24 03:30:00,25.0,0.557671958,23.666075041007684 +2019-12-24 03:45:00,25.0,0.554497354,23.66780333189896 +2019-12-24 04:00:00,25.0,0.540740741,23.66953179414045 +2019-12-24 04:15:00,25.0,0.530687831,23.671260427509836 +2019-12-24 04:30:00,25.0,0.521693122,23.672989231784783 +2019-12-24 04:45:00,25.0,0.522751323,23.674718206742927 +2019-12-24 05:00:00,25.0,0.521164021,23.676447352161883 +2019-12-24 05:15:00,25.0,0.546031746,23.678176667819233 +2019-12-24 05:30:00,25.0,0.553439153,23.679906153492567 +2019-12-24 05:45:00,25.0,0.525925926,23.681635808959427 +2019-12-24 06:00:00,25.0,0.510582011,23.68336563399733 +2019-12-24 06:15:00,25.0,0.48994709,23.6850956283838 +2019-12-24 06:30:00,25.0,0.473015873,23.68682579189631 +2019-12-24 06:45:00,25.0,0.495238095,23.688556124312328 +2019-12-24 07:00:00,25.0,0.601587302,23.690286625409282 +2019-12-24 07:15:00,25.0,0.612698413,23.692017294964607 +2019-12-24 07:30:00,25.0,0.610582011,23.693748132755697 +2019-12-24 07:45:00,25.0,0.623280423,23.695479138559914 +2019-12-24 08:00:00,25.0,0.614814815,23.69721031215463 +2019-12-24 08:15:00,25.0,0.575661376,23.69894165331717 +2019-12-24 08:30:00,25.0,0.545502646,23.70067316182485 +2019-12-24 08:45:00,25.0,0.525925926,23.70240483745494 +2019-12-24 09:00:00,25.0,0.51005291,23.704136679984728 +2019-12-24 09:15:00,25.0,0.523809524,23.705868689191462 +2019-12-24 09:30:00,25.0,0.48042328,23.707600864852346 +2019-12-24 09:45:00,25.0,0.435978836,23.709333206744606 +2019-12-24 10:00:00,25.0,0.445502646,23.711065714645414 +2019-12-24 10:15:00,25.0,0.441798942,23.712798388331933 +2019-12-24 10:30:00,25.0,0.458730159,23.714531227581293 +2019-12-24 10:45:00,25.0,0.445502646,23.71626423217063 +2019-12-24 11:00:00,25.0,0.41005291,23.717997401877028 +2019-12-24 11:15:00,25.0,0.37989418,23.719730736477562 +2019-12-24 11:30:00,25.0,0.358730159,23.7214642357493 +2019-12-24 11:45:00,25.0,0.324338624,23.72319789946926 +2019-12-24 12:00:00,25.0,0.300529101,23.724931727414464 +2019-12-24 12:15:00,25.0,0.274603175,23.72666571936189 +2019-12-24 12:30:00,25.0,0.245502646,23.728399875088527 +2019-12-24 12:45:00,25.0,0.228042328,23.730134194371313 +2019-12-24 13:00:00,25.0,0.208994709,23.73186867698717 +2019-12-24 13:15:00,25.0,0.220634921,23.733603322713016 +2019-12-24 13:30:00,25.0,0.210582011,23.735338131325737 +2019-12-24 13:45:00,25.0,0.189417989,23.73707310260218 +2019-12-24 14:00:00,25.0,0.162433862,23.738808236319215 +2019-12-24 14:15:00,25.0,0.138624339,23.740543532253653 +2019-12-24 14:30:00,25.0,0.111111111,23.742278990182296 +2019-12-24 14:45:00,25.0,0.087301587,23.744014609881916 +2019-12-24 15:00:00,25.0,0.071957672,23.745750391129288 +2019-12-24 15:15:00,25.0,0.059259259,23.74748633370115 +2019-12-24 15:30:00,25.0,0.049206349,23.749222437374208 +2019-12-24 15:45:00,25.0,0.042328042,23.750958701925178 +2019-12-24 16:00:00,25.0,0.035449735,23.752695127130732 +2019-12-24 16:15:00,25.0,0.029100529,23.75443171276752 +2019-12-24 16:30:00,25.0,0.024338624,23.75616845861218 +2019-12-24 16:45:00,25.0,0.021164021,23.757905364441335 +2019-12-24 17:00:00,25.0,0.014814815,23.759642430031576 +2019-12-24 17:15:00,25.0,0.010582011,23.76137965515947 +2019-12-24 17:30:00,25.0,0.01005291,23.76311703960159 +2019-12-24 17:45:00,25.0,0.008465608,23.76485458313445 +2019-12-24 18:00:00,25.0,0.007407407,23.76659228553458 +2019-12-24 18:15:00,25.0,0.005820106,23.76833014657845 +2019-12-24 18:30:00,25.0,0.004761905,23.770068166042556 +2019-12-24 18:45:00,25.0,0.003703704,23.77180634370334 +2019-12-24 19:00:00,25.0,0.002645503,23.773544679337224 +2019-12-24 19:15:00,25.0,0.002645503,23.775283172720638 +2019-12-24 19:30:00,25.0,0.002116402,23.777021823629966 +2019-12-24 19:45:00,25.0,0.002116402,23.778760631841575 +2019-12-24 20:00:00,25.0,0.001587302,23.780499597131808 +2019-12-24 20:15:00,25.0,0.001058201,23.78223871927701 +2019-12-24 20:30:00,25.0,0.001058201,23.78397799805349 +2019-12-24 20:45:00,25.0,0.000529101,23.785717433237522 +2019-12-24 21:00:00,25.0,0.000529101,23.7874570246054 +2019-12-24 21:15:00,25.0,0.000529101,23.789196771933355 +2019-12-24 21:30:00,25.0,0.001058201,23.790936674997628 +2019-12-24 21:45:00,25.0,0.001058201,23.79267673357441 +2019-12-24 22:00:00,25.0,0.002645503,23.794416947439913 +2019-12-24 22:15:00,25.0,0.004232804,23.7961573163703 +2019-12-24 22:30:00,25.0,0.006878307,23.797897840141708 +2019-12-24 22:45:00,25.0,0.006878307,23.799638518530287 +2019-12-24 23:00:00,25.0,0.008465608,23.801379351312136 +2019-12-24 23:15:00,25.0,0.011111111,23.803120338263344 +2019-12-24 23:30:00,25.0,0.011111111,23.804861479159978 +2019-12-24 23:45:00,25.0,0.00952381,23.8066027737781 +2019-12-25 00:00:00,25.0,0.010582011,23.808344221893734 +2019-12-25 00:15:00,25.0,0.014285714,23.810085823282886 +2019-12-25 00:30:00,25.0,0.01957672,23.81182757772156 +2019-12-25 00:45:00,25.0,0.026455026,23.813569484985717 +2019-12-25 01:00:00,25.0,0.032275132,23.815311544851312 +2019-12-25 01:15:00,25.0,0.04021164,23.81705375709427 +2019-12-25 01:30:00,25.0,0.046560847,23.818796121490518 +2019-12-25 01:45:00,25.0,0.056084656,23.820538637815943 +2019-12-25 02:00:00,25.0,0.058730159,23.82228130584641 +2019-12-25 02:15:00,25.0,0.065079365,23.824024125357784 +2019-12-25 02:30:00,25.0,0.061904762,23.8257670961259 +2019-12-25 02:45:00,25.0,0.059259259,23.82751021792657 +2019-12-25 03:00:00,25.0,0.060846561,23.829253490535574 +2019-12-25 03:15:00,25.0,0.073544974,23.830996913728715 +2019-12-25 03:30:00,25.0,0.083597884,23.83274048728174 +2019-12-25 03:45:00,25.0,0.088888889,23.83448421097037 +2019-12-25 04:00:00,25.0,0.095238095,23.83622808457035 +2019-12-25 04:15:00,25.0,0.107407407,23.837972107857365 +2019-12-25 04:30:00,25.0,0.103174603,23.839716280607096 +2019-12-25 04:45:00,25.0,0.110582011,23.841460602595195 +2019-12-25 05:00:00,25.0,0.125925926,23.84320507359732 +2019-12-25 05:15:00,25.0,0.143915344,23.844949693389086 +2019-12-25 05:30:00,25.0,0.179365079,23.846694461746083 +2019-12-25 05:45:00,25.0,0.211640212,23.84843937844392 +2019-12-25 06:00:00,25.0,0.179365079,23.850184443258144 +2019-12-25 06:15:00,25.0,0.183068783,23.85192965596431 +2019-12-25 06:30:00,25.0,0.16984127,23.853675016337924 +2019-12-25 06:45:00,25.0,0.137037037,23.855420524154525 +2019-12-25 07:00:00,25.0,0.158201058,23.857166179189583 +2019-12-25 07:15:00,25.0,0.193650794,23.85891198121856 +2019-12-25 07:30:00,25.0,0.206349206,23.860657930016934 +2019-12-25 07:45:00,25.0,0.220634921,23.862404025360114 +2019-12-25 08:00:00,25.0,0.223280423,23.864150267023515 +2019-12-25 08:15:00,25.0,0.203703704,23.865896654782546 +2019-12-25 08:30:00,25.0,0.183597884,23.867643188412572 +2019-12-25 08:45:00,25.0,0.198941799,23.869389867688948 +2019-12-25 09:00:00,25.0,0.248148148,23.87113669238701 +2019-12-25 09:15:00,25.0,0.269312169,23.872883662282092 +2019-12-25 09:30:00,25.0,0.250793651,23.87463077714948 +2019-12-25 09:45:00,25.0,0.251322751,23.876378036764457 +2019-12-25 10:00:00,25.0,0.22962963,23.8781254409023 +2019-12-25 10:15:00,25.0,0.22010582,23.87987298933824 +2019-12-25 10:30:00,25.0,0.214285714,23.881620681847508 +2019-12-25 10:45:00,25.0,0.228042328,23.883368518205305 +2019-12-25 11:00:00,25.0,0.240740741,23.885116498186836 +2019-12-25 11:15:00,25.0,0.24021164,23.886864621567263 +2019-12-25 11:30:00,25.0,0.235449735,23.888612888121727 +2019-12-25 11:45:00,25.0,0.257671958,23.89036129762538 +2019-12-25 12:00:00,25.0,0.256084656,23.892109849853334 +2019-12-25 12:15:00,25.0,0.226984127,23.893858544580677 +2019-12-25 12:30:00,25.0,0.22962963,23.89560738158249 +2019-12-25 12:45:00,25.0,0.229100529,23.897356360633843 +2019-12-25 13:00:00,25.0,0.246560847,23.89910548150977 +2019-12-25 13:15:00,25.0,0.246031746,23.900854743985292 +2019-12-25 13:30:00,25.0,0.231746032,23.902604147835426 +2019-12-25 13:45:00,25.0,0.257671958,23.904353692835155 +2019-12-25 14:00:00,25.0,0.274603175,23.906103378759447 +2019-12-25 14:15:00,25.0,0.277248677,23.907853205383244 +2019-12-25 14:30:00,25.0,0.321164021,23.909603172481496 +2019-12-25 14:45:00,25.0,0.31957672,23.91135327982911 +2019-12-25 15:00:00,25.0,0.320634921,23.913103527200978 +2019-12-25 15:15:00,25.0,0.342857143,23.914853914371992 +2019-12-25 15:30:00,25.0,0.297883598,23.91660444111701 +2019-12-25 15:45:00,25.0,0.27037037,23.918355107210864 +2019-12-25 16:00:00,25.0,0.265608466,23.920105912428383 +2019-12-25 16:15:00,25.0,0.284126984,23.921856856544387 +2019-12-25 16:30:00,25.0,0.295767196,23.923607939333653 +2019-12-25 16:45:00,25.0,0.308465608,23.925359160570952 +2019-12-25 17:00:00,25.0,0.313756614,23.927110520031047 +2019-12-25 17:15:00,25.0,0.308994709,23.928862017488672 +2019-12-25 17:30:00,25.0,0.3,23.93061365271854 +2019-12-25 17:45:00,25.0,0.297354497,23.932365425495348 +2019-12-25 18:00:00,25.0,0.293121693,23.93411733559379 +2019-12-25 18:15:00,25.0,0.301587302,23.93586938278853 +2019-12-25 18:30:00,25.0,0.288888889,23.9376215668542 +2019-12-25 18:45:00,25.0,0.306878307,23.939373887565456 +2019-12-25 19:00:00,25.0,0.312169312,23.94112634469689 +2019-12-25 19:15:00,25.0,0.299470899,23.942878938023107 +2019-12-25 19:30:00,25.0,0.283068783,23.94463166731867 +2019-12-25 19:45:00,25.0,0.287830688,23.946384532358163 +2019-12-25 20:00:00,25.0,0.277777778,23.94813753291611 +2019-12-25 20:15:00,25.0,0.276190476,23.949890668767036 +2019-12-25 20:30:00,25.0,0.296825397,23.95164393968546 +2019-12-25 20:45:00,25.0,0.305820106,23.953397345445868 +2019-12-25 21:00:00,25.0,0.301587302,23.95515088582273 +2019-12-25 21:15:00,25.0,0.305820106,23.95690456059049 +2019-12-25 21:30:00,25.0,0.284656085,23.95865836952361 +2019-12-25 21:45:00,25.0,0.280952381,23.960412312396503 +2019-12-25 22:00:00,25.0,0.292592593,23.962166388983558 +2019-12-25 22:15:00,25.0,0.3,23.963920599059183 +2019-12-25 22:30:00,25.0,0.327513228,23.965674942397737 +2019-12-25 22:45:00,25.0,0.319047619,23.967429418773573 +2019-12-25 23:00:00,25.0,0.306349206,23.969184027961017 +2019-12-25 23:15:00,25.0,0.328571429,23.970938769734406 +2019-12-25 23:30:00,25.0,0.34021164,23.97269364386803 +2019-12-25 23:45:00,25.0,0.356084656,23.974448650136168 +2019-12-26 00:00:00,25.0,0.361375661,23.9762037883131 +2019-12-26 00:15:00,25.0,0.357671958,23.97795905817307 +2019-12-26 00:30:00,25.0,0.348677249,23.97971445949031 +2019-12-26 00:45:00,25.0,0.337037037,23.981469992039028 +2019-12-26 01:00:00,25.0,0.343915344,23.98322565559344 +2019-12-26 01:15:00,25.0,0.34021164,23.984981449927723 +2019-12-26 01:30:00,25.0,0.308994709,23.98673737481603 +2019-12-26 01:45:00,25.0,0.342857143,23.988493430032527 +2019-12-26 02:00:00,25.0,0.343915344,23.990249615351342 +2019-12-26 02:15:00,25.0,0.297354497,23.99200593054658 +2019-12-26 02:30:00,25.0,0.261904762,23.993762375392354 +2019-12-26 02:45:00,25.0,0.253968254,23.99551894966274 +2019-12-26 03:00:00,25.0,0.243915344,23.9972756531318 +2019-12-26 03:15:00,25.0,0.241798942,23.99903248557358 +2019-12-26 03:30:00,25.0,0.252910053,24.000789446762127 +2019-12-26 03:45:00,25.0,0.238624339,24.002546536471442 +2019-12-26 04:00:00,25.0,0.216402116,24.004303754475526 +2019-12-26 04:15:00,25.0,0.213756614,24.006061100548372 +2019-12-26 04:30:00,25.0,0.188888889,24.007818574463936 +2019-12-26 04:45:00,25.0,0.188888889,24.009576175996173 +2019-12-26 05:00:00,25.0,0.188359788,24.011333904919006 +2019-12-26 05:15:00,25.0,0.180952381,24.013091761006365 +2019-12-26 05:30:00,25.0,0.174603175,24.014849744032148 +2019-12-26 05:45:00,25.0,0.162433862,24.01660785377023 +2019-12-26 06:00:00,25.0,0.137037037,24.018366089994487 +2019-12-26 06:15:00,25.0,0.121693122,24.020124452478772 +2019-12-26 06:30:00,25.0,0.116402116,24.021882940996917 +2019-12-26 06:45:00,25.0,0.111640212,24.023641555322733 +2019-12-26 07:00:00,25.0,0.102645503,24.02540029523004 +2019-12-26 07:15:00,25.0,0.088888889,24.027159160492612 +2019-12-26 07:30:00,25.0,0.08042328,24.028918150884216 +2019-12-26 07:45:00,25.0,0.075132275,24.030677266178625 +2019-12-26 08:00:00,25.0,0.077777778,24.03243650614957 +2019-12-26 08:15:00,25.0,0.079365079,24.034195870570763 +2019-12-26 08:30:00,25.0,0.079365079,24.03595535921591 +2019-12-26 08:45:00,25.0,0.061904762,24.037714971858723 +2019-12-26 09:00:00,25.0,0.057142857,24.03947470827286 +2019-12-26 09:15:00,25.0,0.061904762,24.041234568231975 +2019-12-26 09:30:00,25.0,0.060846561,24.04299455150972 +2019-12-26 09:45:00,25.0,0.062962963,24.04475465787973 +2019-12-26 10:00:00,25.0,0.058201058,24.0465148871156 +2019-12-26 10:15:00,25.0,0.055026455,24.04827523899092 +2019-12-26 10:30:00,25.0,0.052380952,24.050035713279296 +2019-12-26 10:45:00,25.0,0.052380952,24.051796309754273 +2019-12-26 11:00:00,25.0,0.053439153,24.053557028189395 +2019-12-26 11:15:00,25.0,0.053968254,24.05531786835821 +2019-12-26 11:30:00,25.0,0.056613757,24.057078830034225 +2019-12-26 11:45:00,25.0,0.056084656,24.05883991299094 +2019-12-26 12:00:00,25.0,0.055026455,24.06060111700184 +2019-12-26 12:15:00,25.0,0.061375661,24.062362441840403 +2019-12-26 12:30:00,25.0,0.065608466,24.06412388728008 +2019-12-26 12:45:00,25.0,0.062962963,24.065885453094296 +2019-12-26 13:00:00,25.0,0.06031746,24.067647139056497 +2019-12-26 13:15:00,25.0,0.055026455,24.069408944940083 +2019-12-26 13:30:00,25.0,0.059259259,24.07117087051844 +2019-12-26 13:45:00,25.0,0.056613757,24.07293291556494 +2019-12-26 14:00:00,25.0,0.057142857,24.07469507985296 +2019-12-26 14:15:00,25.0,0.054497354,24.076457363155843 +2019-12-26 14:30:00,25.0,0.055555556,24.078219765246907 +2019-12-26 14:45:00,25.0,0.056084656,24.079982285899487 +2019-12-26 15:00:00,25.0,0.047619048,24.081744924886873 +2019-12-26 15:15:00,25.0,0.047619048,24.08350768198235 +2019-12-26 15:30:00,25.0,0.044444444,24.085270556959184 +2019-12-26 15:45:00,25.0,0.03968254,24.087033549590643 +2019-12-26 16:00:00,25.0,0.03968254,24.088796659649958 +2019-12-26 16:15:00,25.0,0.038624339,24.090559886910345 +2019-12-26 16:30:00,25.0,0.041269841,24.092323231145034 +2019-12-26 16:45:00,25.0,0.044973545,24.094086692127206 +2019-12-26 17:00:00,25.0,0.047089947,24.09585026963005 +2019-12-26 17:15:00,25.0,0.043915344,24.09761396342671 +2019-12-26 17:30:00,25.0,0.03968254,24.09937777329036 +2019-12-26 17:45:00,25.0,0.039153439,24.101141698994123 +2019-12-26 18:00:00,25.0,0.04021164,24.102905740311115 +2019-12-26 18:15:00,25.0,0.041269841,24.104669897014453 +2019-12-26 18:30:00,25.0,0.041269841,24.106434168877218 +2019-12-26 18:45:00,25.0,0.044973545,24.10819855567249 +2019-12-26 19:00:00,25.0,0.046031746,24.109963057173317 +2019-12-26 19:15:00,25.0,0.043386243,24.111727673152767 +2019-12-26 19:30:00,25.0,0.044444444,24.113492403383855 +2019-12-26 19:45:00,25.0,0.046031746,24.115257247639594 +2019-12-26 20:00:00,25.0,0.04973545,24.117022205693 +2019-12-26 20:15:00,25.0,0.047089947,24.118787277317058 +2019-12-26 20:30:00,25.0,0.042328042,24.12055246228472 +2019-12-26 20:45:00,25.0,0.047089947,24.122317760368972 +2019-12-26 21:00:00,25.0,0.051851852,24.12408317134274 +2019-12-26 21:15:00,25.0,0.053439153,24.12584869497896 +2019-12-26 21:30:00,25.0,0.051851852,24.127614331050534 +2019-12-26 21:45:00,25.0,0.053968254,24.12938007933038 +2019-12-26 22:00:00,25.0,0.054497354,24.131145939591374 +2019-12-26 22:15:00,25.0,0.058201058,24.13291191160638 +2019-12-26 22:30:00,25.0,0.064021164,24.13467799514827 +2019-12-26 22:45:00,25.0,0.072486772,24.136444189989877 +2019-12-26 23:00:00,25.0,0.085714286,24.138210495904033 +2019-12-26 23:15:00,25.0,0.095238095,24.13997691266354 +2019-12-26 23:30:00,25.0,0.102645503,24.14174344004121 +2019-12-26 23:45:00,25.0,0.111640212,24.14351007780983 +2019-12-27 00:00:00,25.0,0.117989418,24.145276825742155 +2019-12-27 00:15:00,25.0,0.122222222,24.14704368361096 +2019-12-27 00:30:00,25.0,0.123280423,24.14881065118898 +2019-12-27 00:45:00,25.0,0.120634921,24.150577728248944 +2019-12-27 01:00:00,25.0,0.123280423,24.152344914563557 +2019-12-27 01:15:00,25.0,0.134391534,24.154112209905534 +2019-12-27 01:30:00,25.0,0.147089947,24.15587961404756 +2019-12-27 01:45:00,25.0,0.158201058,24.157647126762292 +2019-12-27 02:00:00,25.0,0.157671958,24.15941474782241 +2019-12-27 02:15:00,25.0,0.155555556,24.161182477000548 +2019-12-27 02:30:00,25.0,0.154497354,24.162950314069334 +2019-12-27 02:45:00,25.0,0.156084656,24.16471825880138 +2019-12-27 03:00:00,25.0,0.161375661,24.166486310969304 +2019-12-27 03:15:00,25.0,0.171428571,24.168254470345687 +2019-12-27 03:30:00,25.0,0.15978836,24.170022736703096 +2019-12-27 03:45:00,25.0,0.153968254,24.17179110981411 +2019-12-27 04:00:00,25.0,0.155026455,24.17355958945127 +2019-12-27 04:15:00,25.0,0.159259259,24.175328175387104 +2019-12-27 04:30:00,25.0,0.157671958,24.177096867394127 +2019-12-27 04:45:00,25.0,0.163492063,24.178865665244864 +2019-12-27 05:00:00,25.0,0.178306878,24.180634568711803 +2019-12-27 05:15:00,25.0,0.192063492,24.182403577567406 +2019-12-27 05:30:00,25.0,0.207936508,24.184172691584163 +2019-12-27 05:45:00,25.0,0.222751323,24.185941910534517 +2019-12-27 06:00:00,25.0,0.24021164,24.187711234190903 +2019-12-27 06:15:00,25.0,0.244444444,24.189480662325742 +2019-12-27 06:30:00,25.0,0.257671958,24.19125019471146 +2019-12-27 06:45:00,25.0,0.288359788,24.193019831120452 +2019-12-27 07:00:00,25.0,0.32010582,24.194789571325092 +2019-12-27 07:15:00,25.0,0.333333333,24.19655941509777 +2019-12-27 07:30:00,25.0,0.351322751,24.19832936221083 +2019-12-27 07:45:00,25.0,0.367724868,24.20009941243663 +2019-12-27 08:00:00,25.0,0.36984127,24.20186956554748 +2019-12-27 08:15:00,25.0,0.371957672,24.203639821315722 +2019-12-27 08:30:00,25.0,0.355555556,24.205410179513652 +2019-12-27 08:45:00,25.0,0.331216931,24.207180639913556 +2019-12-27 09:00:00,25.0,0.314285714,24.20895120228773 +2019-12-27 09:15:00,25.0,0.296825397,24.210721866408427 +2019-12-27 09:30:00,25.0,0.27989418,24.212492632047905 +2019-12-27 09:45:00,25.0,0.26031746,24.214263498978394 +2019-12-27 10:00:00,25.0,0.251851852,24.21603446697214 +2019-12-27 10:15:00,25.0,0.242328042,24.217805535801347 +2019-12-27 10:30:00,25.0,0.241269841,24.219576705238204 +2019-12-27 10:45:00,25.0,0.25026455,24.221347975054922 +2019-12-27 11:00:00,25.0,0.237037037,24.223119345023665 +2019-12-27 11:15:00,25.0,0.234391534,24.22489081491659 +2019-12-27 11:30:00,25.0,0.235449735,24.22666238450585 +2019-12-27 11:45:00,25.0,0.246560847,24.22843405356359 +2019-12-27 12:00:00,25.0,0.235449735,24.230205821861926 +2019-12-27 12:15:00,25.0,0.249206349,24.23197768917296 +2019-12-27 12:30:00,25.0,0.268783069,24.233749655268813 +2019-12-27 12:45:00,25.0,0.25026455,24.235521719921557 +2019-12-27 13:00:00,25.0,0.242328042,24.237293882903266 +2019-12-27 13:15:00,25.0,0.248148148,24.23906614398599 +2019-12-27 13:30:00,25.0,0.216931217,24.240838502941795 +2019-12-27 13:45:00,25.0,0.203174603,24.242610959542713 +2019-12-27 14:00:00,25.0,0.188888889,24.24438351356075 +2019-12-27 14:15:00,25.0,0.156613757,24.246156164767935 +2019-12-27 14:30:00,25.0,0.136507937,24.24792891293626 +2019-12-27 14:45:00,25.0,0.133333333,24.2497017578377 +2019-12-27 15:00:00,25.0,0.142857143,24.25147469924424 +2019-12-27 15:15:00,25.0,0.152910053,24.253247736927843 +2019-12-27 15:30:00,25.0,0.153968254,24.255020870660445 +2019-12-27 15:45:00,25.0,0.15026455,24.25679410021398 +2019-12-27 16:00:00,25.0,0.152910053,24.258567425360383 +2019-12-27 16:15:00,25.0,0.161904762,24.26034084587156 +2019-12-27 16:30:00,25.0,0.168253968,24.2621143615194 +2019-12-27 16:45:00,25.0,0.177248677,24.26388797207581 +2019-12-27 17:00:00,25.0,0.188888889,24.26566167731265 +2019-12-27 17:15:00,25.0,0.208465608,24.267435477001783 +2019-12-27 17:30:00,25.0,0.226984127,24.269209370915053 +2019-12-27 17:45:00,25.0,0.248677249,24.270983358824314 +2019-12-27 18:00:00,25.0,0.262433862,24.27275744050138 +2019-12-27 18:15:00,25.0,0.270899471,24.274531615718058 +2019-12-27 18:30:00,25.0,0.284656085,24.276305884246167 +2019-12-27 18:45:00,25.0,0.278835979,24.278080245857485 +2019-12-27 19:00:00,25.0,0.269312169,24.279854700323796 +2019-12-27 19:15:00,25.0,0.273544974,24.281629247416852 +2019-12-27 19:30:00,25.0,0.265608466,24.283403886908424 +2019-12-27 19:45:00,25.0,0.256613757,24.285178618570246 +2019-12-27 20:00:00,25.0,0.231746032,24.28695344217404 +2019-12-27 20:15:00,25.0,0.207936508,24.28872835749154 +2019-12-27 20:30:00,25.0,0.188359788,24.29050336429444 +2019-12-27 20:45:00,25.0,0.185185185,24.292278462354446 +2019-12-27 21:00:00,25.0,0.183068783,24.29405365144322 +2019-12-27 21:15:00,25.0,0.182539683,24.29582893133246 +2019-12-27 21:30:00,25.0,0.193121693,24.297604301793807 +2019-12-27 21:45:00,25.0,0.193121693,24.299379762598907 +2019-12-27 22:00:00,25.0,0.2,24.301155313519413 +2019-12-27 22:15:00,25.0,0.213227513,24.30293095432694 +2019-12-27 22:30:00,25.0,0.204761905,24.304706684793096 +2019-12-27 22:45:00,25.0,0.212169312,24.30648250468948 +2019-12-27 23:00:00,25.0,0.214285714,24.3082584137877 +2019-12-27 23:15:00,25.0,0.229100529,24.310034411859323 +2019-12-27 23:30:00,25.0,0.231216931,24.311810498675904 +2019-12-27 23:45:00,25.0,0.234920635,24.313586674009024 +2019-12-28 00:00:00,25.0,0.231746032,24.315362937630212 +2019-12-28 00:15:00,25.0,0.231746032,24.317139289311 +2019-12-28 00:30:00,25.0,0.225925926,24.31891572882291 +2019-12-28 00:45:00,25.0,0.230687831,24.32069225593746 +2019-12-28 01:00:00,25.0,0.244973545,24.322468870426142 +2019-12-28 01:15:00,25.0,0.249206349,24.324245572060438 +2019-12-28 01:30:00,25.0,0.235449735,24.32602236061184 +2019-12-28 01:45:00,25.0,0.217460317,24.327799235851806 +2019-12-28 02:00:00,25.0,0.21957672,24.32957619755179 +2019-12-28 02:15:00,25.0,0.204232804,24.33135324548323 +2019-12-28 02:30:00,25.0,0.205820106,24.333130379417565 +2019-12-28 02:45:00,25.0,0.199470899,24.334907599126215 +2019-12-28 03:00:00,25.0,0.208465608,24.33668490438058 +2019-12-28 03:15:00,25.0,0.216402116,24.338462294952077 +2019-12-28 03:30:00,25.0,0.213227513,24.340239770612083 +2019-12-28 03:45:00,25.0,0.219047619,24.342017331131977 +2019-12-28 04:00:00,25.0,0.234920635,24.343794976283114 +2019-12-28 04:15:00,25.0,0.256084656,24.34557270583687 +2019-12-28 04:30:00,25.0,0.255555556,24.347350519564575 +2019-12-28 04:45:00,25.0,0.242328042,24.349128417237562 +2019-12-28 05:00:00,25.0,0.256613757,24.350906398627163 +2019-12-28 05:15:00,25.0,0.264021164,24.352684463504687 +2019-12-28 05:30:00,25.0,0.265608466,24.354462611641434 +2019-12-28 05:45:00,25.0,0.288888889,24.35624084280868 +2019-12-28 06:00:00,25.0,0.28994709,24.358019156777733 +2019-12-28 06:15:00,25.0,0.284656085,24.359797553319844 +2019-12-28 06:30:00,25.0,0.276719577,24.361576032206266 +2019-12-28 06:45:00,25.0,0.266666667,24.363354593208264 +2019-12-28 07:00:00,25.0,0.268783069,24.36513323609707 +2019-12-28 07:15:00,25.0,0.282010582,24.366911960643897 +2019-12-28 07:30:00,25.0,0.275132275,24.36869076661998 +2019-12-28 07:45:00,25.0,0.282539683,24.37046965379652 +2019-12-28 08:00:00,25.0,0.295238095,24.372248621944706 +2019-12-28 08:15:00,25.0,0.303174603,24.374027670835723 +2019-12-28 08:30:00,25.0,0.304761905,24.375806800240753 +2019-12-28 08:45:00,25.0,0.304232804,24.37758600993096 +2019-12-28 09:00:00,25.0,0.27989418,24.379365299677485 +2019-12-28 09:15:00,25.0,0.274074074,24.381144669251487 +2019-12-28 09:30:00,25.0,0.277248677,24.382924118424096 +2019-12-28 09:45:00,25.0,0.292063492,24.384703646966432 +2019-12-28 10:00:00,25.0,0.294179894,24.3864832546496 +2019-12-28 10:15:00,25.0,0.306349206,24.38826294124472 +2019-12-28 10:30:00,25.0,0.318518519,24.390042706522877 +2019-12-28 10:45:00,25.0,0.350793651,24.391822550255142 +2019-12-28 11:00:00,25.0,0.378306878,24.393602472212606 +2019-12-28 11:15:00,25.0,0.380952381,24.39538247216632 +2019-12-28 11:30:00,25.0,0.391534392,24.397162549887344 +2019-12-28 11:45:00,25.0,0.396296296,24.39894270514671 +2019-12-28 12:00:00,25.0,0.386772487,24.400722937715457 +2019-12-28 12:15:00,25.0,0.357142857,24.40250324736461 +2019-12-28 12:30:00,25.0,0.348148148,24.40428363386517 +2019-12-28 12:45:00,25.0,0.376719577,24.406064096988153 +2019-12-28 13:00:00,25.0,0.383597884,24.40784463650455 +2019-12-28 13:15:00,25.0,0.403703704,24.409625252185336 +2019-12-28 13:30:00,25.0,0.397883598,24.41140594380148 +2019-12-28 13:45:00,25.0,0.412169312,24.413186711123963 +2019-12-28 14:00:00,25.0,0.414285714,24.414967553923727 +2019-12-28 14:15:00,25.0,0.423280423,24.41674847197171 +2019-12-28 14:30:00,25.0,0.43968254,24.418529465038866 +2019-12-28 14:45:00,25.0,0.434920635,24.420310532896103 +2019-12-28 15:00:00,25.0,0.404761905,24.42209167531434 +2019-12-28 15:15:00,25.0,0.375661376,24.42387289206448 +2019-12-28 15:30:00,25.0,0.345502646,24.425654182917427 +2019-12-28 15:45:00,25.0,0.348677249,24.42743554764406 +2019-12-28 16:00:00,25.0,0.342328042,24.42921698601525 +2019-12-28 16:15:00,25.0,0.349206349,24.43099849780188 +2019-12-28 16:30:00,25.0,0.347089947,24.4327800827748 +2019-12-28 16:45:00,25.0,0.333333333,24.434561740704858 +2019-12-28 17:00:00,25.0,0.328571429,24.436343471362886 +2019-12-28 17:15:00,25.0,0.336507937,24.438125274519727 +2019-12-28 17:30:00,25.0,0.347089947,24.439907149946198 +2019-12-28 17:45:00,25.0,0.364021164,24.441689097413096 +2019-12-28 18:00:00,25.0,0.376190476,24.443471116691246 +2019-12-28 18:15:00,25.0,0.37037037,24.445253207551424 +2019-12-28 18:30:00,25.0,0.373015873,24.44703536976442 +2019-12-28 18:45:00,25.0,0.399470899,24.448817603101 +2019-12-28 19:00:00,25.0,0.428042328,24.45059990733194 +2019-12-28 19:15:00,25.0,0.455026455,24.452382282227994 +2019-12-28 19:30:00,25.0,0.453968254,24.454164727559895 +2019-12-28 19:45:00,25.0,0.449206349,24.4559472430984 +2019-12-28 20:00:00,25.0,0.455026455,24.45772982861423 +2019-12-28 20:15:00,25.0,0.46984127,24.459512483878104 +2019-12-28 20:30:00,25.0,0.504761905,24.461295208660726 +2019-12-28 20:45:00,25.0,0.533333333,24.46307800273281 +2019-12-28 21:00:00,25.0,0.549206349,24.464860865865045 +2019-12-28 21:15:00,25.0,0.547089947,24.466643797828105 +2019-12-28 21:30:00,25.0,0.565079365,24.46842679839268 +2019-12-28 21:45:00,25.0,0.555555556,24.470209867329434 +2019-12-28 22:00:00,25.0,0.557671958,24.47199300440902 +2019-12-28 22:15:00,25.0,0.561375661,24.47377620940208 +2019-12-28 22:30:00,25.0,0.568253968,24.475559482079266 +2019-12-28 22:45:00,25.0,0.552910053,24.477342822211206 +2019-12-28 23:00:00,25.0,0.557671958,24.479126229568514 +2019-12-28 23:15:00,25.0,0.552380952,24.480909703921817 +2019-12-28 23:30:00,25.0,0.546031746,24.48269324504172 +2019-12-28 23:45:00,25.0,0.568253968,24.484476852698812 +2019-12-29 00:00:00,25.0,0.574603175,24.486260526663674 +2019-12-29 00:15:00,25.0,0.55978836,24.488044266706904 +2019-12-29 00:30:00,25.0,0.547089947,24.489828072599067 +2019-12-29 00:45:00,25.0,0.553439153,24.491611944110716 +2019-12-29 01:00:00,25.0,0.544973545,24.493395881012418 +2019-12-29 01:15:00,25.0,0.531746032,24.495179883074716 +2019-12-29 01:30:00,25.0,0.541269841,24.49696395006814 +2019-12-29 01:45:00,25.0,0.523280423,24.498748081763228 +2019-12-29 02:00:00,25.0,0.514814815,24.5005322779305 +2019-12-29 02:15:00,25.0,0.492063492,24.502316538340462 +2019-12-29 02:30:00,25.0,0.484656085,24.504100862763618 +2019-12-29 02:45:00,25.0,0.478306878,24.505885250970476 +2019-12-29 03:00:00,25.0,0.465079365,24.507669702731516 +2019-12-29 03:15:00,25.0,0.466137566,24.50945421781721 +2019-12-29 03:30:00,25.0,0.463492063,24.511238795998047 +2019-12-29 03:45:00,25.0,0.459259259,24.513023437044478 +2019-12-29 04:00:00,25.0,0.466137566,24.514808140726963 +2019-12-29 04:15:00,25.0,0.469312169,24.516592906815937 +2019-12-29 04:30:00,25.0,0.468253968,24.51837773508186 +2019-12-29 04:45:00,25.0,0.466137566,24.520162625295153 +2019-12-29 05:00:00,25.0,0.466137566,24.521947577226232 +2019-12-29 05:15:00,25.0,0.48994709,24.523732590645526 +2019-12-29 05:30:00,25.0,0.496296296,24.525517665323434 +2019-12-29 05:45:00,25.0,0.492592593,24.527302801030363 +2019-12-29 06:00:00,25.0,0.507407407,24.52908799753669 +2019-12-29 06:15:00,25.0,0.514285714,24.530873254612814 +2019-12-29 06:30:00,25.0,0.522222222,24.532658572029106 +2019-12-29 06:45:00,25.0,0.506878307,24.534443949555925 +2019-12-29 07:00:00,25.0,0.508465608,24.536229386963647 +2019-12-29 07:15:00,25.0,0.498941799,24.538014884022623 +2019-12-29 07:30:00,25.0,0.504232804,24.53980044050319 +2019-12-29 07:45:00,25.0,0.507407407,24.54158605617568 +2019-12-29 08:00:00,25.0,0.514814815,24.543371730810446 +2019-12-29 08:15:00,25.0,0.525396825,24.54515746417779 +2019-12-29 08:30:00,25.0,0.535449735,24.546943256048028 +2019-12-29 08:45:00,25.0,0.544973545,24.54872910619148 +2019-12-29 09:00:00,25.0,0.553968254,24.55051501437844 +2019-12-29 09:15:00,25.0,0.576190476,24.552300980379197 +2019-12-29 09:30:00,25.0,0.603174603,24.55408700396403 +2019-12-29 09:45:00,25.0,0.620634921,24.555873084903233 +2019-12-29 10:00:00,25.0,0.630687831,24.557659222967068 +2019-12-29 10:15:00,25.0,0.634391534,24.559445417925787 +2019-12-29 10:30:00,25.0,0.647089947,24.561231669549667 +2019-12-29 10:45:00,25.0,0.664021164,24.56301797760894 +2019-12-29 11:00:00,25.0,0.673544974,24.564804341873856 +2019-12-29 11:15:00,25.0,0.673544974,24.566590762114632 +2019-12-29 11:30:00,25.0,0.694708995,24.56837723810152 +2019-12-29 11:45:00,25.0,0.722222222,24.570163769604722 +2019-12-29 12:00:00,25.0,0.730687831,24.57195035639445 +2019-12-29 12:15:00,25.0,0.711111111,24.573736998240918 +2019-12-29 12:30:00,25.0,0.720634921,24.57552369491432 +2019-12-29 12:45:00,25.0,0.732804233,24.57731044618485 +2019-12-29 13:00:00,25.0,0.739153439,24.579097251822677 +2019-12-29 13:15:00,25.0,0.726455026,24.580884111598 +2019-12-29 13:30:00,25.0,0.743386243,24.582671025280977 +2019-12-29 13:45:00,25.0,0.759259259,24.584457992641763 +2019-12-29 14:00:00,25.0,0.765079365,24.58624501345053 +2019-12-29 14:15:00,25.0,0.765079365,24.588032087477423 +2019-12-29 14:30:00,25.0,0.793650794,24.589819214492582 +2019-12-29 14:45:00,25.0,0.814814815,24.591606394266137 +2019-12-29 15:00:00,25.0,0.84021164,24.593393626568226 +2019-12-29 15:15:00,25.0,0.834391534,24.59518091116897 +2019-12-29 15:30:00,25.0,0.837037037,24.596968247838472 +2019-12-29 15:45:00,25.0,0.836507937,24.59875563634686 +2019-12-29 16:00:00,25.0,0.825396825,24.600543076464227 +2019-12-29 16:15:00,25.0,0.808994709,24.602330567960667 +2019-12-29 16:30:00,25.0,0.806878307,24.604118110606258 +2019-12-29 16:45:00,25.0,0.83015873,24.605905704171107 +2019-12-29 17:00:00,25.0,0.826984127,24.607693348425272 +2019-12-29 17:15:00,25.0,0.823280423,24.60948104313882 +2019-12-29 17:30:00,25.0,0.838624339,24.61126878808183 +2019-12-29 17:45:00,25.0,0.844444444,24.613056583024346 +2019-12-29 18:00:00,25.0,0.86031746,24.61484442773642 +2019-12-29 18:15:00,25.0,0.870899471,24.61663232198808 +2019-12-29 18:30:00,25.0,0.874074074,24.618420265549396 +2019-12-29 18:45:00,25.0,0.876190476,24.620208258190374 +2019-12-29 19:00:00,25.0,0.878835979,24.62199629968104 +2019-12-29 19:15:00,25.0,0.831216931,24.62378438979142 +2019-12-29 19:30:00,25.0,0.808994709,24.625572528291528 +2019-12-29 19:45:00,25.0,0.797883598,24.62736071495135 +2019-12-29 20:00:00,25.0,0.766666667,24.629148949540912 +2019-12-29 20:15:00,25.0,0.768253968,24.630937231830192 +2019-12-29 20:30:00,25.0,0.77037037,24.63272556158918 +2019-12-29 20:45:00,25.0,0.770899471,24.634513938587844 +2019-12-29 21:00:00,25.0,0.768253968,24.636302362596183 +2019-12-29 21:15:00,25.0,0.767724868,24.63809083338415 +2019-12-29 21:30:00,25.0,0.763492063,24.639879350721706 +2019-12-29 21:45:00,25.0,0.766137566,24.64166791437882 +2019-12-29 22:00:00,25.0,0.768783069,24.643456524125437 +2019-12-29 22:15:00,25.0,0.773544974,24.645245179731504 +2019-12-29 22:30:00,25.0,0.776719577,24.647033880966944 +2019-12-29 22:45:00,25.0,0.748148148,24.64882262760171 +2019-12-29 23:00:00,25.0,0.735449735,24.650611419405724 +2019-12-29 23:15:00,25.0,0.732804233,24.652400256148898 +2019-12-29 23:30:00,25.0,0.730687831,24.654189137601165 +2019-12-29 23:45:00,25.0,0.731216931,24.655978063532423 +2019-12-30 00:00:00,25.0,0.732804233,24.657767033712577 +2019-12-30 00:15:00,25.0,0.734920635,24.659556047911522 +2019-12-30 00:30:00,25.0,0.738624339,24.661345105899162 +2019-12-30 00:45:00,25.0,0.735978836,24.663134207445378 +2019-12-30 01:00:00,25.0,0.734391534,24.66492335232004 +2019-12-30 01:15:00,25.0,0.736507937,24.66671254029305 +2019-12-30 01:30:00,25.0,0.738624339,24.668501771134263 +2019-12-30 01:45:00,25.0,0.737566138,24.670291044613542 +2019-12-30 02:00:00,25.0,0.739153439,24.672080360500743 +2019-12-30 02:15:00,25.0,0.738624339,24.673869718565737 +2019-12-30 02:30:00,25.0,0.739153439,24.67565911857836 +2019-12-30 02:45:00,25.0,0.739153439,24.67744856030845 +2019-12-30 03:00:00,25.0,0.738624339,24.67923804352586 +2019-12-30 03:15:00,25.0,0.737566138,24.681027568000417 +2019-12-30 03:30:00,25.0,0.737566138,24.682817133501946 +2019-12-30 03:45:00,25.0,0.738095238,24.68460673980026 +2019-12-30 04:00:00,25.0,0.739153439,24.68639638666519 +2019-12-30 04:15:00,25.0,0.739153439,24.688186073866547 +2019-12-30 04:30:00,25.0,0.738095238,24.68997580117412 +2019-12-30 04:45:00,25.0,0.737037037,24.691765568357734 +2019-12-30 05:00:00,25.0,0.738095238,24.693555375187174 +2019-12-30 05:15:00,25.0,0.74021164,24.69534522143223 +2019-12-30 05:30:00,25.0,0.74021164,24.697135106862678 +2019-12-30 05:45:00,25.0,0.73968254,24.698925031248322 +2019-12-30 06:00:00,25.0,0.739153439,24.700714994358922 +2019-12-30 06:15:00,25.0,0.737566138,24.702504995964244 +2019-12-30 06:30:00,25.0,0.737566138,24.70429503583407 +2019-12-30 06:45:00,25.0,0.737566138,24.70608511373815 +2019-12-30 07:00:00,25.0,0.74021164,24.70787522944625 +2019-12-30 07:15:00,25.0,0.73968254,24.709665382728097 +2019-12-30 07:30:00,25.0,0.746560847,24.71145557335347 +2019-12-30 07:45:00,25.0,0.757142857,24.71324580109209 +2019-12-30 08:00:00,25.0,0.756613757,24.71503606571369 +2019-12-30 08:15:00,25.0,0.755026455,24.71682636698802 +2019-12-30 08:30:00,25.0,0.76031746,24.7186167046848 +2019-12-30 08:45:00,25.0,0.753968254,24.720407078573746 +2019-12-30 09:00:00,25.0,0.746560847,24.722197488424577 +2019-12-30 09:15:00,25.0,0.743386243,24.723987934007013 +2019-12-30 09:30:00,25.0,0.747089947,24.725778415090762 +2019-12-30 09:45:00,25.0,0.751851852,24.727568931445518 +2019-12-30 10:00:00,25.0,0.757142857,24.729359482840998 +2019-12-30 10:15:00,25.0,0.757671958,24.731150069046883 +2019-12-30 10:30:00,25.0,0.758730159,24.732940689832873 +2019-12-30 10:45:00,25.0,0.768783069,24.734731344968637 +2019-12-30 11:00:00,25.0,0.787830688,24.73652203422388 +2019-12-30 11:15:00,25.0,0.791534392,24.73831275736827 +2019-12-30 11:30:00,25.0,0.792063492,24.740103514171466 +2019-12-30 11:45:00,25.0,0.79047619,24.74189430440316 +2019-12-30 12:00:00,25.0,0.787830688,24.743685127833007 +2019-12-30 12:15:00,25.0,0.786772487,24.745475984230662 +2019-12-30 12:30:00,25.0,0.787301587,24.74726687336578 +2019-12-30 12:45:00,25.0,0.787301587,24.749057795008024 +2019-12-30 13:00:00,25.0,0.785185185,24.750848748927037 +2019-12-30 13:15:00,25.0,0.788888889,24.75263973489245 +2019-12-30 13:30:00,25.0,0.787301587,24.754430752673922 +2019-12-30 13:45:00,25.0,0.785714286,24.75622180204108 +2019-12-30 14:00:00,25.0,0.77989418,24.75801288276354 +2019-12-30 14:15:00,25.0,0.782010582,24.759803994610955 +2019-12-30 14:30:00,25.0,0.786772487,24.761595137352938 +2019-12-30 14:45:00,25.0,0.788359788,24.763386310759103 +2019-12-30 15:00:00,25.0,0.784656085,24.76517751459906 +2019-12-30 15:15:00,25.0,0.777777778,24.766968748642437 +2019-12-30 15:30:00,25.0,0.773544974,24.768760012658834 +2019-12-30 15:45:00,25.0,0.775661376,24.770551306417843 +2019-12-30 16:00:00,25.0,0.776190476,24.772342629689085 +2019-12-30 16:15:00,25.0,0.779365079,24.77413398224214 +2019-12-30 16:30:00,25.0,0.775661376,24.77592536384661 +2019-12-30 16:45:00,25.0,0.773544974,24.77771677427207 +2019-12-30 17:00:00,25.0,0.778835979,24.779508213288114 +2019-12-30 17:15:00,25.0,0.78042328,24.78129968066433 +2019-12-30 17:30:00,25.0,0.778835979,24.783091176170274 +2019-12-30 17:45:00,25.0,0.774074074,24.78488269957554 +2019-12-30 18:00:00,25.0,0.766666667,24.786674250649693 +2019-12-30 18:15:00,25.0,0.725396825,24.7884658291623 +2019-12-30 18:30:00,25.0,0.701058201,24.790257434882907 +2019-12-30 18:45:00,25.0,0.7,24.7920490675811 +2019-12-30 19:00:00,25.0,0.691005291,24.793840727026424 +2019-12-30 19:15:00,25.0,0.686243386,24.79563241298842 +2019-12-30 19:30:00,25.0,0.686243386,24.79742412523666 +2019-12-30 19:45:00,25.0,0.657142857,24.799215863540674 +2019-12-30 20:00:00,25.0,0.622751323,24.80100762767001 +2019-12-30 20:15:00,25.0,0.618518519,24.802799417394194 +2019-12-30 20:30:00,25.0,0.646031746,24.804591232482785 +2019-12-30 20:45:00,25.0,0.675661376,24.8063830727053 +2019-12-30 21:00:00,25.0,0.698412698,24.808174937831268 +2019-12-30 21:15:00,25.0,0.695767196,24.809966827630227 +2019-12-30 21:30:00,25.0,0.682010582,24.811758741871692 +2019-12-30 21:45:00,25.0,0.682539683,24.813550680325182 +2019-12-30 22:00:00,25.0,0.687301587,24.815342642760207 +2019-12-30 22:15:00,25.0,0.689417989,24.817134628946295 +2019-12-30 22:30:00,25.0,0.681481481,24.818926638652954 +2019-12-30 22:45:00,25.0,0.685185185,24.820718671649676 +2019-12-30 23:00:00,25.0,0.685714286,24.822510727705986 +2019-12-30 23:15:00,25.0,0.684126984,24.82430280659138 +2019-12-30 23:30:00,25.0,0.679365079,24.82609490807535 +2019-12-30 23:45:00,25.0,0.669312169,24.82788703192739 +2019-12-31 00:00:00,25.0,0.648148148,24.829679177917004 +2019-12-31 00:15:00,25.0,0.637037037,24.831471345813675 +2019-12-31 00:30:00,25.0,0.624867725,24.833263535386884 +2019-12-31 00:45:00,25.0,0.60952381,24.835055746406134 +2019-12-31 01:00:00,25.0,0.621693122,24.836847978640893 +2019-12-31 01:15:00,25.0,0.616931217,24.838640231860644 +2019-12-31 01:30:00,25.0,0.648677249,24.84043250583485 +2019-12-31 01:45:00,25.0,0.685185185,24.842224800333007 +2019-12-31 02:00:00,25.0,0.723809524,24.844017115124576 +2019-12-31 02:15:00,25.0,0.735449735,24.845809449979015 +2019-12-31 02:30:00,25.0,0.737037037,24.847601804665807 +2019-12-31 02:45:00,25.0,0.743915344,24.84939417895441 +2019-12-31 03:00:00,25.0,0.744973545,24.85118657261428 +2019-12-31 03:15:00,25.0,0.744444444,24.85297898541487 +2019-12-31 03:30:00,25.0,0.747619048,24.85477141712565 +2019-12-31 03:45:00,25.0,0.785185185,24.85656386751607 +2019-12-31 04:00:00,25.0,0.78994709,24.858356336355566 +2019-12-31 04:15:00,25.0,0.786243386,24.860148823413606 +2019-12-31 04:30:00,25.0,0.783597884,24.861941328459626 +2019-12-31 04:45:00,25.0,0.780952381,24.863733851263074 +2019-12-31 05:00:00,25.0,0.783068783,24.86552639159338 +2019-12-31 05:15:00,25.0,0.764021164,24.867318949220003 +2019-12-31 05:30:00,25.0,0.751851852,24.86911152391237 +2019-12-31 05:45:00,25.0,0.752380952,24.870904115439906 +2019-12-31 06:00:00,25.0,0.746031746,24.872696723572062 +2019-12-31 06:15:00,25.0,0.734391534,24.874489348078257 +2019-12-31 06:30:00,25.0,0.723280423,24.876281988727925 +2019-12-31 06:45:00,25.0,0.72010582,24.878074645290482 +2019-12-31 07:00:00,25.0,0.711640212,24.879867317535368 +2019-12-31 07:15:00,25.0,0.678835979,24.881660005232 +2019-12-31 07:30:00,25.0,0.653439153,24.883452708149782 +2019-12-31 07:45:00,25.0,0.648148148,24.88524542605816 +2019-12-31 08:00:00,25.0,0.652380952,24.887038158726533 +2019-12-31 08:15:00,25.0,0.644973545,24.888830905924312 +2019-12-31 08:30:00,25.0,0.63968254,24.890623667420925 +2019-12-31 08:45:00,25.0,0.633862434,24.892416442985777 +2019-12-31 09:00:00,25.0,0.611640212,24.894209232388274 +2019-12-31 09:15:00,25.0,0.597354497,24.896002035397817 +2019-12-31 09:30:00,25.0,0.55978836,24.897794851783825 +2019-12-31 09:45:00,25.0,0.535449735,24.899587681315698 +2019-12-31 10:00:00,25.0,0.517460317,24.901380523762825 +2019-12-31 10:15:00,25.0,0.52010582,24.90317337889463 +2019-12-31 10:30:00,25.0,0.544973545,24.904966246480495 +2019-12-31 10:45:00,25.0,0.557142857,24.90675912628982 +2019-12-31 11:00:00,25.0,0.577777778,24.908552018091996 +2019-12-31 11:15:00,25.0,0.569312169,24.91034492165643 +2019-12-31 11:30:00,25.0,0.566666667,24.91213783675251 +2019-12-31 11:45:00,25.0,0.568783069,24.913930763149615 +2019-12-31 12:00:00,25.0,0.595238095,24.91572370061715 +2019-12-31 12:15:00,25.0,0.585185185,24.9175166489245 +2019-12-31 12:30:00,25.0,0.566137566,24.91930960784105 +2019-12-31 12:45:00,25.0,0.542328042,24.92110257713618 +2019-12-31 13:00:00,25.0,0.55026455,24.92289555657928 +2019-12-31 13:15:00,25.0,0.524338624,24.924688545939738 +2019-12-31 13:30:00,25.0,0.494179894,24.926481544986917 +2019-12-31 13:45:00,25.0,0.495767196,24.92827455349022 +2019-12-31 14:00:00,25.0,0.488359788,24.930067571219016 +2019-12-31 14:15:00,25.0,0.476190476,24.93186059794268 +2019-12-31 14:30:00,25.0,0.46031746,24.933653633430588 +2019-12-31 14:45:00,25.0,0.432275132,24.935446677452124 +2019-12-31 15:00:00,25.0,0.402645503,24.93723972977666 +2019-12-31 15:15:00,25.0,0.364550265,24.939032790173556 +2019-12-31 15:30:00,25.0,0.365079365,24.940825858412207 +2019-12-31 15:45:00,25.0,0.368783069,24.942618934261972 +2019-12-31 16:00:00,25.0,0.372486772,24.944412017492223 +2019-12-31 16:15:00,25.0,0.377248677,24.946205107872316 +2019-12-31 16:30:00,25.0,0.35978836,24.947998205171647 +2019-12-31 16:45:00,25.0,0.359259259,24.949791309159565 +2019-12-31 17:00:00,25.0,0.322751323,24.951584419605435 +2019-12-31 17:15:00,25.0,0.295238095,24.953377536278637 +2019-12-31 17:30:00,25.0,0.278835979,24.95517065894853 +2019-12-31 17:45:00,25.0,0.260846561,24.95696378738447 +2019-12-31 18:00:00,25.0,0.24021164,24.958756921355825 +2019-12-31 18:15:00,25.0,0.21957672,24.960550060631967 +2019-12-31 18:30:00,25.0,0.197354497,24.96234320498225 +2019-12-31 18:45:00,25.0,0.191005291,24.96413635417603 +2019-12-31 19:00:00,25.0,0.171428571,24.965929507982683 +2019-12-31 19:15:00,25.0,0.171957672,24.96772266617156 +2019-12-31 19:30:00,25.0,0.166137566,24.969515828512026 +2019-12-31 19:45:00,25.0,0.152380952,24.971308994773427 +2019-12-31 20:00:00,25.0,0.132804233,24.973102164725137 +2019-12-31 20:15:00,25.0,0.120634921,24.974895338136513 +2019-12-31 20:30:00,25.0,0.11005291,24.9766885147769 +2019-12-31 20:45:00,25.0,0.098412698,24.97848169441567 +2019-12-31 21:00:00,25.0,0.1,24.980274876822175 +2019-12-31 21:15:00,25.0,0.098941799,24.982068061765773 +2019-12-31 21:30:00,25.0,0.088888889,24.983861249015806 +2019-12-31 21:45:00,25.0,0.084656085,24.985654438341655 +2019-12-31 22:00:00,25.0,0.087301587,24.98744762951266 +2019-12-31 22:15:00,25.0,0.08042328,24.98924082229817 +2019-12-31 22:30:00,25.0,0.070899471,24.991034016467566 +2019-12-31 22:45:00,25.0,0.066137566,24.992827211790182 +2019-12-31 23:00:00,25.0,0.070899471,24.99462040803538 +2019-12-31 23:15:00,25.0,0.069312169,24.996413604972503 +2019-12-31 23:30:00,25.0,0.062433862,24.998206802370927 +2019-12-31 23:45:00,25.0,0.062433862,24.999999999999996 diff --git a/examples/inputs/example_03/forecasts_df.csv.license b/examples/inputs/example_03/forecasts_df.csv.license new file mode 100644 index 000000000..a6ae06366 --- /dev/null +++ b/examples/inputs/example_03/forecasts_df.csv.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: ASSUME Developers + +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/examples/inputs/example_03/industrial_dsm_units.csv b/examples/inputs/example_03/industrial_dsm_units.csv index f77d82743..9a50ee497 100644 --- a/examples/inputs/example_03/industrial_dsm_units.csv +++ b/examples/inputs/example_03/industrial_dsm_units.csv @@ -1,4 +1,4 @@ -name,unit_type,technology,node,bidding_EOM,bidding_redispatch,unit_operator,objective,flexibility_measure,cost_tolerance,demand,fuel_type,max_power,min_power,ramp_up,ramp_down,min_operating_time,min_down_time,efficiency,specific_dri_demand,specific_electricity_consumption,specific_natural_gas_consumption,specific_hydrogen_consumption,specific_iron_ore_consumption,specific_lime_demand,lime_co2_factor,start_price,max_capacity,min_capacity,initial_soc,storage_loss_rate -A360,steel_plant,electrolyser,north,industry_energy_optimization,,dsm_operator_1,min_variable_cost,cost_based_load_shift,20,223693.1507,hydrogen,922,0,922,922,0,0,0.8,,,,,,,,5,,,, -A360,steel_plant,dri_plant,north,,,,,,,,hydrogen,120,36,120,120,0,0,,,0.3,0.9,1.83,1.43,,,,,,, -A360,steel_plant,eaf,north,,,,,,,,hydrogen,162,0,162,162,0,0,,1.09,0.44,,,,0.046,0.1,,,,, +name,unit_type,technology,node,bidding_EOM,bidding_redispatch,unit_operator,objective,flexibility_measure,cost_tolerance,demand,fuel_type,max_power,min_power,ramp_up,ramp_down,min_operating_time,min_down_time,efficiency,specific_dri_demand,specific_electricity_consumption,specific_natural_gas_consumption,specific_hydrogen_consumption,specific_iron_ore_consumption,specific_lime_demand,lime_co2_factor,start_price,max_capacity,min_capacity,initial_soc,storage_loss_rate,load_profile_deviation,forecast_electricity_price_update,horizon_mode,look_ahead_horizon,commit_horizon,rolling_step +A360,steel_plant,electrolyser,north,industry_energy_optimization,,dsm_operator_1,min_variable_cost,cost_based_load_shift,20.0,2235.0,,922,0,922,922,0,0,0.8,,,,,,,,5.0,,,,,0.1,A360_electricity_price,rolling_horizon,72h,24h,24h +A360,steel_plant,dri_plant,north,,,,,,,,hydrogen,120,0,120,120,0,0,,,0.3,0.9,1.83,1.43,,,,,,,,0.1,A360_electricity_price,,,, +A360,steel_plant,eaf,north,,,,,,,,,162,0,162,162,0,0,,1.09,0.44,,,,0.046,0.1,,,,,,0.1,A360_electricity_price,,,, diff --git a/tests/fixtures/rolling_horizon_dsm/availability.csv b/tests/fixtures/rolling_horizon_dsm/availability.csv new file mode 100644 index 000000000..7eb82a12b --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/availability.csv @@ -0,0 +1,2 @@ +datetime,Test Plant +2023-01-01 00:00,1.0 diff --git a/tests/fixtures/rolling_horizon_dsm/availability.csv.license b/tests/fixtures/rolling_horizon_dsm/availability.csv.license new file mode 100644 index 000000000..a6ae06366 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/availability.csv.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: ASSUME Developers + +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/tests/fixtures/rolling_horizon_dsm/config.yaml b/tests/fixtures/rolling_horizon_dsm/config.yaml new file mode 100644 index 000000000..0317a4f97 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/config.yaml @@ -0,0 +1,28 @@ +# SPDX-FileCopyrightText: ASSUME Developers +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +base: + start_date: 2023-01-01 00:00 + end_date: 2023-01-01 23:00 + time_step: 1h + seed: 42 + exchange_units: null + save_frequency_hours: 720 + + markets_config: + EOM: + operator: EOM_operator + product_type: energy + products: + - duration: 1h + count: 1 + first_delivery: 1h + opening_frequency: 1h + opening_duration: 1h + volume_unit: MWh + maximum_bid_volume: 100000 + maximum_bid_price: 3000 + minimum_bid_price: -500 + price_unit: EUR/MWh + market_mechanism: pay_as_clear diff --git a/tests/fixtures/rolling_horizon_dsm/demand_units.csv b/tests/fixtures/rolling_horizon_dsm/demand_units.csv new file mode 100644 index 000000000..0f122d020 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/demand_units.csv @@ -0,0 +1,2 @@ +name,technology,bidding_EOM,bidding_redispatch,bidding_nodal,bidding_DAM,max_power,min_power,unit_operator,node +demand_north,inflex_demand,naive_eom,naive_redispatch,naive_eom,naive_eom,100000,0,eom_de,north diff --git a/tests/fixtures/rolling_horizon_dsm/demand_units.csv.license b/tests/fixtures/rolling_horizon_dsm/demand_units.csv.license new file mode 100644 index 000000000..a6ae06366 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/demand_units.csv.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: ASSUME Developers + +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/tests/fixtures/rolling_horizon_dsm/fuel_prices.csv b/tests/fixtures/rolling_horizon_dsm/fuel_prices.csv new file mode 100644 index 000000000..20874eb2e --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/fuel_prices.csv @@ -0,0 +1,2 @@ +datetime,uranium,natural_gas,coal,oil,lignite,gas +2023-01-01 00:00,10,30,25,50,20,30 diff --git a/tests/fixtures/rolling_horizon_dsm/fuel_prices.csv.license b/tests/fixtures/rolling_horizon_dsm/fuel_prices.csv.license new file mode 100644 index 000000000..a6ae06366 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/fuel_prices.csv.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: ASSUME Developers + +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/tests/fixtures/rolling_horizon_dsm/industrial_dsm_units.csv b/tests/fixtures/rolling_horizon_dsm/industrial_dsm_units.csv new file mode 100644 index 000000000..0ce03d851 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/industrial_dsm_units.csv @@ -0,0 +1,2 @@ +name,technology,bidding_EOM,bidding_redispatch,bidding_nodal,bidding_DAM,max_power,min_power,unit_operator,node,flexibility_measure,demand,unit_type,horizon_mode,look_ahead_horizon,commit_horizon,rolling_step +test_steel_plant_rh,steel_plant,naive_eom,naive_redispatch,naive_eom,naive_eom,100,0,steel_op,north,cost_based_load_shift,100,steel_plant,rolling_horizon,4h,2h,2h diff --git a/tests/fixtures/rolling_horizon_dsm/industrial_dsm_units.csv.license b/tests/fixtures/rolling_horizon_dsm/industrial_dsm_units.csv.license new file mode 100644 index 000000000..a6ae06366 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/industrial_dsm_units.csv.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: ASSUME Developers + +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/tests/fixtures/rolling_horizon_dsm/powerplant_units.csv b/tests/fixtures/rolling_horizon_dsm/powerplant_units.csv new file mode 100644 index 000000000..2c7ccfd9c --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/powerplant_units.csv @@ -0,0 +1,2 @@ +name,technology,bidding_EOM,bidding_redispatch,bidding_nodal,bidding_DAM,fuel_type,emission_factor,max_power,min_power,efficiency,additional_cost,node,unit_operator +Test Plant,nuclear,naive_eom,naive_redispatch,naive_eom,flexable_eom_block,uranium,0.0,1000.0,0,0.3,1,north,Operator1 diff --git a/tests/fixtures/rolling_horizon_dsm/powerplant_units.csv.license b/tests/fixtures/rolling_horizon_dsm/powerplant_units.csv.license new file mode 100644 index 000000000..a6ae06366 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/powerplant_units.csv.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: ASSUME Developers + +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/tests/fixtures/rolling_horizon_dsm/residential_dsm_units.csv b/tests/fixtures/rolling_horizon_dsm/residential_dsm_units.csv new file mode 100644 index 000000000..058a37fd3 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/residential_dsm_units.csv @@ -0,0 +1 @@ +name,technology,bidding_EOM,bidding_redispatch,bidding_nodal,bidding_DAM,max_power,min_power,unit_operator,node,flexibility_measure,demand diff --git a/tests/fixtures/rolling_horizon_dsm/residential_dsm_units.csv.license b/tests/fixtures/rolling_horizon_dsm/residential_dsm_units.csv.license new file mode 100644 index 000000000..a6ae06366 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/residential_dsm_units.csv.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: ASSUME Developers + +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/tests/fixtures/rolling_horizon_dsm/unit_operators.csv b/tests/fixtures/rolling_horizon_dsm/unit_operators.csv new file mode 100644 index 000000000..6d5a91149 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/unit_operators.csv @@ -0,0 +1,4 @@ +name +Operator1 +steel_op +eom_de diff --git a/tests/fixtures/rolling_horizon_dsm/unit_operators.csv.license b/tests/fixtures/rolling_horizon_dsm/unit_operators.csv.license new file mode 100644 index 000000000..a6ae06366 --- /dev/null +++ b/tests/fixtures/rolling_horizon_dsm/unit_operators.csv.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: ASSUME Developers + +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/tests/test_loader_csv.py b/tests/test_loader_csv.py index a588b82b4..badc9491e 100644 --- a/tests/test_loader_csv.py +++ b/tests/test_loader_csv.py @@ -194,3 +194,7 @@ def test_forecast_interface__save_forecasts(): saved_forecasts["residual_load_naive_forecast_EOM"] == expected_load["load_forecast"] ).all() + + +if __name__ == "__main__": + pytest.main(["-s", __file__]) diff --git a/tests/test_rolling_horizon_dsm.py b/tests/test_rolling_horizon_dsm.py new file mode 100644 index 000000000..49142fcdf --- /dev/null +++ b/tests/test_rolling_horizon_dsm.py @@ -0,0 +1,482 @@ +# SPDX-FileCopyrightText: ASSUME Developers +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +""" +Tests for the rolling-horizon DSM engine and related components. + +Covers: +- Rolling-horizon config loading and validation +- _parse_duration_to_steps +- _collect_series_attrs_for_window / _restore_series_attrs +- _check_and_reoptimize_rolling_window / _solve_rolling_horizon_next_window +- end-to-end steel-plant scenario through World.run() +""" + +import pandas as pd +import pytest + +from assume.common.fast_pandas import FastSeries +from assume.common.forecaster import SteelplantForecaster +from assume.strategies.naive_strategies import DsmEnergyOptimizationStrategy +from assume.units.steel_plant import SteelPlant + +# --------------------------------------------------------------------------- +# Shared fixtures +# --------------------------------------------------------------------------- + +N_SHORT = 6 # Very short horizon keeps solver fast + + +@pytest.fixture +def dsm_components(): + return { + "electrolyser": { + "max_power": 100, + "min_power": 0, + "ramp_up": 100, + "ramp_down": 100, + "min_operating_time": 0, + "min_down_time": 0, + "efficiency": 1, + }, + "dri_plant": { + "specific_hydrogen_consumption": 1, + "specific_natural_gas_consumption": 1, + "specific_electricity_consumption": 1, + "specific_iron_ore_consumption": 1, + "max_power": 100, + "min_power": 0, + "fuel_type": "hydrogen", + "ramp_up": 100, + "ramp_down": 100, + "min_operating_time": 0, + "min_down_time": 0, + }, + "eaf": { + "max_power": 100, + "min_power": 0, + "specific_electricity_consumption": 1, + "specific_dri_demand": 1, + "specific_lime_demand": 1, + "lime_co2_factor": 0.1, + "ramp_up": 100, + "ramp_down": 100, + "min_operating_time": 0, + "min_down_time": 0, + }, + } + + +@pytest.fixture +def rh_config(): + """Minimal rolling-horizon config: 4h look-ahead, 2h commit, 2h step.""" + return { + "horizon_mode": "rolling_horizon", + "look_ahead_horizon": "4h", + "commit_horizon": "2h", + "rolling_step": "2h", + } + + +def _make_rh_plant(dsm_components, rh_config, n=N_SHORT, demand=0): + """Return a SteelPlant configured for rolling-horizon with n timesteps. + + demand=0 is used so that ``steel_output_association_constraint`` (sum==0) + and ``demand_upper_bound`` (sum_power <= 0) are both trivially satisfied by + the all-zeros solution. This keeps the windows feasible and lets us test + the rolling-horizon machinery without worrying about the steel-plant + unit-of-measure mismatch between power and steel production. + """ + index = pd.date_range("2023-01-01", periods=n, freq="h") + prices = [30 + 10 * (i % 5) for i in range(n)] + forecaster = SteelplantForecaster( + index, + electricity_price=prices, + fuel_prices={"natural_gas": [20] * n, "co2": [15] * n}, + ) + return SteelPlant( + id="test_rh_plant", + unit_operator="test_operator", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=dsm_components, + forecaster=forecaster, + demand=demand, + technology="steel_plant", + dsm_optimisation_config=rh_config, + ) + + +# --------------------------------------------------------------------------- +# 1. Rolling-horizon config validation +# --------------------------------------------------------------------------- + + +def test_rolling_horizon_default_mode_is_full_horizon(dsm_components): + """Without dsm_optimisation_config, horizon mode defaults to 'full_horizon'.""" + index = pd.date_range("2023-01-01", periods=24, freq="h") + forecaster = SteelplantForecaster( + index, + electricity_price=[50] * 24, + fuel_prices={"natural_gas": [30] * 24, "co2": [20] * 24}, + ) + plant = SteelPlant( + id="test_default", + unit_operator="op", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=dsm_components, + forecaster=forecaster, + demand=100, + technology="steel_plant", + ) + assert plant.horizon_mode == "full_horizon" + + +def test_rolling_horizon_mode_stored_from_config(dsm_components, rh_config): + """dsm_optimisation_config is correctly parsed into rolling-horizon settings.""" + plant = _make_rh_plant(dsm_components, rh_config) + assert plant.horizon_mode == "rolling_horizon" + assert plant._rh_look_ahead == "4h" + assert plant._rh_commit == "2h" + assert plant._rh_step == "2h" + + +def test_rolling_horizon_missing_params_raises_value_error(dsm_components): + """Specifying rolling_horizon mode without all three sub-params raises ValueError.""" + index = pd.date_range("2023-01-01", periods=24, freq="h") + forecaster = SteelplantForecaster( + index, + electricity_price=[50] * 24, + fuel_prices={"natural_gas": [30] * 24, "co2": [20] * 24}, + ) + with pytest.raises(ValueError, match="Rolling horizon mode requires"): + SteelPlant( + id="bad_rh", + unit_operator="op", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=dsm_components, + forecaster=forecaster, + demand=100, + technology="steel_plant", + dsm_optimisation_config={ + "horizon_mode": "rolling_horizon", + "look_ahead_horizon": "24h", + # missing commit_horizon and rolling_step + }, + ) + + +# --------------------------------------------------------------------------- +# 2. _parse_duration_to_steps +# --------------------------------------------------------------------------- + + +def test_parse_duration_to_steps_hourly_index(dsm_components, rh_config): + plant = _make_rh_plant(dsm_components, rh_config) + assert plant._parse_duration_to_steps("1h") == 1 + assert plant._parse_duration_to_steps("4h") == 4 + assert plant._parse_duration_to_steps("24h") == 24 + assert plant._parse_duration_to_steps("48h") == 48 + + +# --------------------------------------------------------------------------- +# 3. _collect_series_attrs_for_window / _restore_series_attrs +# --------------------------------------------------------------------------- + + +def test_collect_and_restore_series_attrs(dsm_components, rh_config): + """_collect replaces FastSeries with slices; _restore puts originals back.""" + plant = _make_rh_plant(dsm_components, rh_config) + plant.setup_model(presolve=False) + + N = len(plant.index) + # electricity_price is a FastSeries of length N on the plant + original_price = plant.electricity_price + + saved = plant._collect_series_attrs_for_window(0, 4, N) + + # After collection the attr is replaced with a numpy array (window slice) + assert len(plant.electricity_price) == 4 + + plant._restore_series_attrs(saved) + + # After restore the original FastSeries is back + assert len(plant.electricity_price) == N + assert isinstance(plant.electricity_price, FastSeries) + + +# --------------------------------------------------------------------------- +# 5. _check_and_reoptimize_rolling_window +# --------------------------------------------------------------------------- + + +def test_check_reoptimize_returns_false_for_full_horizon_mode(dsm_components): + """In full_horizon mode, _check_and_reoptimize_rolling_window always returns False.""" + index = pd.date_range("2023-01-01", periods=24, freq="h") + forecaster = SteelplantForecaster( + index, + electricity_price=[50] * 24, + fuel_prices={"natural_gas": [30] * 24, "co2": [20] * 24}, + ) + plant = SteelPlant( + id="test_full_horizon_check", + unit_operator="op", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=dsm_components, + forecaster=forecaster, + demand=100, + technology="steel_plant", + ) + # full_horizon mode → always False regardless of time + result = plant._check_and_reoptimize_rolling_window(pd.Timestamp("2023-01-01")) + assert result is False + + +def test_check_reoptimize_returns_false_before_threshold(dsm_components, rh_config): + """Before reaching the next window boundary, no re-optimization is needed.""" + plant = _make_rh_plant(dsm_components, rh_config, n=N_SHORT) + plant.setup_model(presolve=False) + # Simulate that we've already optimized through step 4 + plant._rh_optimized_until_step = 4 + + # Requesting step 2 (< optimized_until_step) should not trigger re-opt + t2 = pd.Timestamp("2023-01-01 02:00") + result = plant._check_and_reoptimize_rolling_window(t2) + assert result is False + + +# --------------------------------------------------------------------------- +# 4b. Rolling-window window-level optimisation +# Uses _check_and_reoptimize_rolling_window (→ _solve_rolling_horizon_next_window) +# with non-zero demand. setup_model(presolve=True) uses the full-horizon path +# which does NOT apply demand_upper_bound, so the initial solve is always +# feasible. The per-window constraint (window_demand_con) operates on +# eaf.steel_output (steel units), not on total_power_input, so it is also +# consistent with the equality constraint sum(steel_output)==remaining_demand. +# --------------------------------------------------------------------------- + + +def _make_rh_plant_with_demand(dsm_components, rh_config, prices, demand, n=N_SHORT): + """Return a rolling-horizon SteelPlant pre-solved via setup_model(presolve=True). + + The initial solve uses the full-horizon path (switch_flex_off=False), so it + is not subject to the demand_upper_bound unit-of-measure issue and will + succeed with any positive demand value. + """ + index = pd.date_range("2023-01-01", periods=n, freq="h") + forecaster = SteelplantForecaster( + index, + electricity_price=prices, + fuel_prices={"natural_gas": [20] * n, "co2": [15] * n}, + ) + plant = SteelPlant( + id="test_rh_window_plant", + unit_operator="op", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=dsm_components, + forecaster=forecaster, + demand=demand, + technology="steel_plant", + dsm_optimisation_config=rh_config, + ) + plant.setup_model(presolve=True) + return plant + + +def test_rolling_window_first_trigger_at_step_zero(dsm_components, rh_config): + """_check_and_reoptimize_rolling_window returns True at t0 (step 0 >= threshold 0).""" + prices = [50.0] * N_SHORT + plant = _make_rh_plant_with_demand(dsm_components, rh_config, prices, demand=60) + + t0 = pd.Timestamp("2023-01-01 00:00") + triggered = plant._check_and_reoptimize_rolling_window(t0) + assert triggered is True + # After committing window 0 (steps 0-1), optimized_until_step advances by rolling_steps + assert plant._rh_optimized_until_step == 2 + + +def test_rolling_window_concentrates_production_in_cheap_committed_hours( + dsm_components, rh_config +): + """Cost-minimising rolling-horizon optimizer defers committed production to cheap hours. + + Horizon layout (n=6, 4h look-ahead, 2h commit, 2h step): + Window 0: look-ahead steps 0-3, commits steps 0-1. + Prices: [200, 200, 200, 10] → cheapest hour is step 3 (look-ahead only). + The optimizer schedules all 60 units at step 3; committed steps 0-1 get 0. + + Window 1: look-ahead steps 2-5, commits steps 2-3. + Prices: [200, 10, 10, 10] → cheapest hour in look-ahead is step 3. + Remaining demand = 60. Optimizer places 60 units at step 3 (local t=1). + Committed step 3 has production; committed step 2 is idle. + """ + n = 6 + # First 3 hours very expensive, last 3 cheap + prices = [200.0] * 3 + [10.0] * 3 + demand = 60 + plant = _make_rh_plant_with_demand(dsm_components, rh_config, prices, demand, n=n) + + # --- Window 0 --- + t0 = pd.Timestamp("2023-01-01 00:00") + triggered0 = plant._check_and_reoptimize_rolling_window(t0) + assert triggered0 is True + + # Steps 0 and 1 are expensive; the optimizer puts production at step 3 (cheap, + # look-ahead only) so committed production at steps 0-1 must be zero. + prod0 = plant._rh_full_horizon_production[0] + prod1 = plant._rh_full_horizon_production[1] + assert prod0 == pytest.approx(0.0, abs=1e-3), ( + f"Expected zero committed production at expensive step 0, got {prod0:.4f}" + ) + assert prod1 == pytest.approx(0.0, abs=1e-3), ( + f"Expected zero committed production at expensive step 1, got {prod1:.4f}" + ) + + # --- Window 1 --- + t2 = pd.Timestamp("2023-01-01 02:00") + triggered1 = plant._check_and_reoptimize_rolling_window(t2) + assert triggered1 is True + + # Step 3 is cheap (price=10); optimizer commits production there + prod3 = plant._rh_full_horizon_production[3] + assert prod3 > 0.0, ( + f"Expected non-zero committed production at cheap step 3, got {prod3:.4f}" + ) + + # After windows 0 and 1 the total committed production must equal demand + total_committed = sum(plant._rh_full_horizon_production[i] for i in range(4)) + assert total_committed == pytest.approx(demand, rel=1e-3), ( + f"Expected total committed = {demand}, got {total_committed:.4f}" + ) + + +def test_rolling_window_total_production_meets_demand_after_all_windows( + dsm_components, rh_config +): + """After all three windows complete, the cumulative committed production equals demand.""" + n = 6 + prices = [30.0 + 10.0 * (i % 3) for i in range(n)] # modest variation + demand = 60 + plant = _make_rh_plant_with_demand(dsm_components, rh_config, prices, demand, n=n) + + timestamps = pd.date_range("2023-01-01", periods=n, freq="h") + # Drive through all three rolling windows + for step, ts in enumerate(timestamps[::2]): # step=0, 2, 4 + plant._check_and_reoptimize_rolling_window(ts) + + total = sum(plant._rh_full_horizon_production[i] for i in range(n)) + assert total == pytest.approx(demand, rel=1e-3), ( + f"Expected total production == {demand} after all windows, got {total:.4f}" + ) + + +def test_rolling_window_second_window_triggered_at_commit_boundary( + dsm_components, rh_config +): + """After the first window commits steps 0-1, a request at step 2 triggers re-opt.""" + prices = [50.0] * N_SHORT + plant = _make_rh_plant_with_demand(dsm_components, rh_config, prices, demand=60) + + t0 = pd.Timestamp("2023-01-01 00:00") + plant._check_and_reoptimize_rolling_window(t0) + + # _rh_optimized_until_step is now 2; requesting step 2 must trigger a new window + t2 = pd.Timestamp("2023-01-01 02:00") + triggered = plant._check_and_reoptimize_rolling_window(t2) + assert triggered is True + assert plant._rh_optimized_until_step == 4 + + +# --------------------------------------------------------------------------- +# 8. End-to-end: a rolling-horizon steel-plant scenario through World.run() +# --------------------------------------------------------------------------- +# +# Every test above builds the SteelPlant / forecaster directly and therefore +# bypasses two real code paths: +# * the CSV scenario loader (load_config_and_create_forecaster), and +# * the market -> bidding-strategy -> unit dispatch loop inside World.run(). +# +# Both paths have hidden load-time / first-bid crashes that green unit tests +# did not catch. This integration test exercises the full pipeline on the +# example_03 steel-plant scenario (configured for rolling horizon via the +# per-plant columns in industrial_dsm_units.csv) and asserts it runs to +# completion and produces a dispatch schedule. + + +def test_loader_builds_steelplant_forecaster_without_price_column(): + """The loader must not crash for a steel plant that has no + ``forecast_electricity_price_update`` column. + + Regression guard for an ``UnboundLocalError`` on ``initial_market_prices`` + in ``load_config_and_create_forecaster``: the variable was only defined + inside the ``if price_update_source is not None`` branch but used + unconditionally. The ``rolling_horizon_dsm`` fixture's steel plant has no + such column, so it exercises exactly that path. + """ + from assume.scenario.loader_csv import load_config_and_create_forecaster + + scenario_data = load_config_and_create_forecaster( + inputs_path="tests/fixtures", + scenario="rolling_horizon_dsm", + study_case="base", + ) + assert "test_steel_plant_rh" in scenario_data["unit_forecasts"] + + +def test_steelplant_rolling_horizon_scenario_runs_end_to_end(): + """A rolling-horizon steel-plant scenario loads and runs through World.run(). + + Regression guard for two bugs that bypass-the-loader unit tests cannot see: + an UnboundLocalError while the loader builds the SteelplantForecaster, and a + crash in the DSM bidding strategy on the first market round. + """ + from assume import World + from assume.scenario.loader_csv import load_scenario_folder + + world = World(database_uri=None, export_csv_path=None) + load_scenario_folder( + world, + inputs_path="examples/inputs", + scenario="example_03", + study_case="base_case_2019_with_DSM", + ) + + # Loader path: the steel plant must come up with its rolling-horizon config + # read from the per-plant CSV columns (not the removed config.yaml block). + plant = world.units["A360"] + assert plant.horizon_mode == "rolling_horizon" + assert plant._rh_look_ahead == "72h" + + # Full pipeline: market clearing -> DSM strategy -> rolling-horizon solve. + world.run() + + # NOTE: World.run() logs and swallows exceptions raised inside a unit's + # bidding strategy, so "world.run() returned" is NOT proof the strategy + # succeeded. opt_power_requirement is also populated by the setup-time + # presolve, so it is not a reliable signal either. + # + # _rh_optimized_until_step starts at 0 and is advanced ONLY by + # _solve_rolling_horizon_next_window, which the bidding strategy reaches + # *after* the forecaster.update() call. A non-zero value therefore proves + # the market-time rolling-horizon path executed without crashing. + assert plant.opt_power_requirement is not None + assert plant._rh_optimized_until_step > 0 + + +if __name__ == "__main__": + pytest.main(["-s", __file__]) diff --git a/tests/test_steel_plant.py b/tests/test_steel_plant.py index 123a9bf4f..71e3cb8c2 100644 --- a/tests/test_steel_plant.py +++ b/tests/test_steel_plant.py @@ -146,7 +146,13 @@ def test_congestion_management_flexibility(steel_plant_congestion): instance = steel_plant_congestion.model.create_instance() instance = steel_plant_congestion.switch_to_flex(instance) - # Set the congestion_indicator in the instance + # Overwrite the congestion_indicator set during model build with the one + # computed here (which uses the actual threshold comparison). + if ( + steel_plant_congestion.flexibility_measure + == "congestion_management_flexibility" + ): + instance.del_component("congestion_indicator") instance.congestion_indicator = pyo.Param( instance.time_steps, initialize=congestion_indicator, @@ -192,7 +198,11 @@ def test_peak_load_shifting(steel_plant_peak_shifting): instance = steel_plant_peak_shifting.model.create_instance() instance = steel_plant_peak_shifting.switch_to_flex(instance) - # Set the peak_load_cap_value and peak_indicator in the instance + # Overwrite the peak_load_cap_value and peak_indicator set during model build. + if steel_plant_peak_shifting.flexibility_measure == "peak_load_shifting": + instance.del_component("peak_load_cap_value") + instance.del_component("peak_indicator") + instance.peak_load_cap_value = pyo.Param( initialize=peak_load_cap_value, within=pyo.NonNegativeReals, @@ -254,7 +264,9 @@ def test_renewable_utilisation(steel_plant_renewable_utilisation): instance = steel_plant_renewable_utilisation.model.create_instance() instance = steel_plant_renewable_utilisation.switch_to_flex(instance) - # Set the normalized renewable signal in the instance + # Overwrite the renewable_signal set during model build. + if steel_plant_renewable_utilisation.flexibility_measure == "renewable_utilisation": + instance.del_component("renewable_signal") instance.renewable_signal = pyo.Param( instance.time_steps, initialize=renewable_signal_dict, @@ -360,5 +372,349 @@ def _reset(instance): return _reset +def _make_plant(dsm_components, forecaster, plant_id="test_plant", demand=1000): + """Create a SteelPlant with the given forecaster (without calling setup_model).""" + return SteelPlant( + id=plant_id, + unit_operator="test_operator", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=dsm_components, + forecaster=forecaster, + demand=demand, + technology="steel_plant", + ) + + +def test_steel_plant_reads_normalized_profile_from_forecaster(dsm_components): + """SteelPlant.__init__ copies normalized_load_profile from the forecaster.""" + index = pd.date_range("2023-01-01", periods=24, freq="h") + profile = [i / 23.0 for i in range(24)] + forecaster = SteelplantForecaster( + index, + electricity_price=[50] * 24, + fuel_prices={"natural_gas": [30] * 24, "co2": [20] * 24}, + normalized_load_profile=profile, + ) + plant = _make_plant(dsm_components, forecaster) + assert plant.normalized_load_profile is not None + assert len(plant.normalized_load_profile) == 24 + + +def test_steel_plant_reads_steel_demand_from_forecaster(dsm_components): + """SteelPlant.__init__ copies steel_demand_per_timestep from the forecaster.""" + index = pd.date_range("2023-01-01", periods=24, freq="h") + hourly_demand = [50.0] * 24 + forecaster = SteelplantForecaster( + index, + electricity_price=[50] * 24, + fuel_prices={"natural_gas": [30] * 24, "co2": [20] * 24}, + steel_demand=hourly_demand, + ) + plant = _make_plant(dsm_components, forecaster) + assert plant.steel_demand_per_timestep is not None + assert len(plant.steel_demand_per_timestep) == 24 + + +def test_steel_plant_no_profile_no_demand_attrs_are_none(dsm_components): + """Without profile/demand in forecaster the corresponding plant attrs are None.""" + index = pd.date_range("2023-01-01", periods=24, freq="h") + forecaster = SteelplantForecaster( + index, + electricity_price=[50] * 24, + fuel_prices={"natural_gas": [30] * 24, "co2": [20] * 24}, + ) + plant = _make_plant(dsm_components, forecaster) + assert plant.normalized_load_profile is None + assert plant.steel_demand_per_timestep is None + + +def test_load_profile_deviation_stored_as_attribute(dsm_components): + """Custom load_profile_deviation is stored on the plant.""" + index = pd.date_range("2023-01-01", periods=24, freq="h") + forecaster = SteelplantForecaster( + index, + electricity_price=[50] * 24, + fuel_prices={"natural_gas": [30] * 24, "co2": [20] * 24}, + normalized_load_profile=[0.5] * 24, + ) + plant = SteelPlant( + id="test_deviation", + unit_operator="test_operator", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=dsm_components, + forecaster=forecaster, + demand=1000, + technology="steel_plant", + load_profile_deviation=0.05, + ) + assert plant.load_profile_deviation == 0.05 + + +def test_profile_guided_optimization_uses_correct_param_values(dsm_components): + """ + Profile-guided strategy: the Pyomo model stores the normalized_load_profile and + load_profile_deviation parameters with the exact values from the forecaster, and + the full-horizon optimization meets the total steel demand. + """ + n = 8 + index = pd.date_range("2023-01-01", periods=n, freq="h") + # Linearly increasing profile: 0.0, 1/7, 2/7, … 1.0 + profile = [round(i / (n - 1), 6) for i in range(n)] + forecaster = SteelplantForecaster( + index, + electricity_price=[50] * n, + fuel_prices={"natural_gas": [30] * n, "co2": [20] * n}, + normalized_load_profile=profile, + ) + plant = SteelPlant( + id="test_profile_param_values", + unit_operator="test_operator", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=dsm_components, + forecaster=forecaster, + demand=80, + technology="steel_plant", + load_profile_deviation=0.10, + ) + plant.setup_model() + + # Pyomo model must carry the profile and deviation as parameters + assert hasattr(plant.model, "normalized_load_profile") + assert hasattr(plant.model, "load_profile_deviation") + + # Each Pyomo param value must match the input profile exactly + for t in range(n): + assert pyo.value(plant.model.normalized_load_profile[t]) == pytest.approx( + profile[t], abs=1e-6 + ), f"Profile mismatch at timestep {t}" + + assert pyo.value(plant.model.load_profile_deviation) == pytest.approx( + 0.10, abs=1e-6 + ) + + # Run the full-horizon optimization and verify total demand is met. + # The profile only constrains the rolling-horizon path; in the full-horizon + # solve the equality constraint sum(eaf.steel_output) == 80 is always active. + # With 3 components each consuming 1 MWh per unit of steel: + # sum(total_power_input) == 3 * 80 == 240 MWh. + plant.determine_optimal_operation_without_flex() + assert plant.opt_power_requirement is not None + total_power = sum(plant.opt_power_requirement.data) + assert total_power == pytest.approx(3 * 80, rel=1e-3) + + +def test_min_demand_strategy_skips_global_equality_constraint(dsm_components): + """ + Min-demand strategy omits the global ``steel_output_association_constraint`` + (sum == demand) from the Pyomo model, while the cost-optimised strategy + (no per-timestep minimums) keeps it. + + The global equality constraint is only skipped when per-timestep minimums are + supplied via the forecaster's ``steel_demand`` kwarg. Without the equality + constraint the solver is free to satisfy costs without producing a fixed total; + with it the solver must exactly meet the declared steel demand. + + Two separate copies of the components dict are used because ``setup_model()`` + converts the dict entries into component objects in-place. + """ + import copy + + n = 8 + index = pd.date_range("2023-01-01", periods=n, freq="h") + + # --- Min-demand plant (per-timestep minimums supplied) --- + forecaster_min = SteelplantForecaster( + index, + electricity_price=[50] * n, + fuel_prices={"natural_gas": [30] * n, "co2": [20] * n}, + steel_demand=[50.0] * n, # triggers min_demand strategy + ) + plant_min = SteelPlant( + id="test_min_demand_con", + unit_operator="test_operator", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=copy.deepcopy(dsm_components), + forecaster=forecaster_min, + demand=200, + technology="steel_plant", + ) + plant_min.setup_model() + assert not hasattr(plant_min.model, "steel_output_association_constraint"), ( + "steel_output_association_constraint must be absent for min_demand strategy" + ) + # The per-timestep demand param is present + assert hasattr(plant_min.model, "steel_demand_per_timestep") + + # --- Cost-optimised plant (no per-timestep minimums) --- + forecaster_cost = SteelplantForecaster( + index, + electricity_price=[50] * n, + fuel_prices={"natural_gas": [30] * n, "co2": [20] * n}, + ) + plant_cost = SteelPlant( + id="test_cost_opt_con", + unit_operator="test_operator", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=copy.deepcopy(dsm_components), + forecaster=forecaster_cost, + demand=200, + technology="steel_plant", + ) + plant_cost.setup_model() + plant_cost.determine_optimal_operation_without_flex() + + # Global equality constraint is present for cost-optimised strategy + assert hasattr(plant_cost.model, "steel_output_association_constraint"), ( + "steel_output_association_constraint must be present for cost_optimized strategy" + ) + # The optimizer must have met the demand: total power = 3 × demand + total_power = sum(plant_cost.opt_power_requirement.data) + assert total_power == pytest.approx(3 * 200, rel=1e-3) + + +def test_cost_optimized_concentrates_production_in_cheap_hours(dsm_components): + """ + Cost-optimised strategy: with electricity prices much higher in the first + 4 hours than in the last 4, the optimizer schedules all production in the + cheap hours. + + The demand constraint forces sum(eaf.steel_output) == 100. With max_power=100 + per component per hour and a demand of 100 units, 4 cheap hours are more than + sufficient. The optimizer should therefore leave the expensive hours idle and + concentrate production in hours 4-7. + """ + n = 8 + index = pd.date_range("2023-01-01", periods=n, freq="h") + # First 4 hours very expensive, last 4 very cheap + prices = [200.0] * 4 + [10.0] * 4 + forecaster = SteelplantForecaster( + index, + electricity_price=prices, + fuel_prices={"natural_gas": [30] * n, "co2": [20] * n}, + ) + plant = SteelPlant( + id="test_price_shift_opt", + unit_operator="test_operator", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=dsm_components, + forecaster=forecaster, + demand=100, + technology="steel_plant", + ) + plant.setup_model() + plant.determine_optimal_operation_without_flex() + + opt_power = plant.opt_power_requirement + assert opt_power is not None + + # Power in cheap hours (4-7) must exceed power in expensive hours (0-3) + cheap_power = sum(opt_power.data[4:]) + expensive_power = sum(opt_power.data[:4]) + assert cheap_power > expensive_power, ( + f"Optimizer should prefer cheap hours: " + f"cheap={cheap_power:.2f} MWh vs expensive={expensive_power:.2f} MWh" + ) + + # Total production must satisfy the steel demand constraint: + # 3 components × 100 units × 1 MWh/unit = 300 MWh + total_power = sum(opt_power.data) + assert total_power == pytest.approx(3 * 100, rel=1e-3) + + # The model must NOT have profile or per-timestep demand params + assert not hasattr(plant.model, "normalized_load_profile") + assert not hasattr(plant.model, "steel_demand_per_timestep") + + +def test_full_horizon_per_timestep_demand_constraint_is_enforced(dsm_components): + """ + Full-horizon mode with steel_demand_per_timestep supplied via the forecaster must + add steel_demand_per_timestep_constraint to the model and the optimizer must + produce at least the declared minimum each hour. + + Setup: + - 4 hours, varying electricity price (expensive in hours 0-1, cheap in hours 2-3). + - Per-timestep minimum: [10, 20, 30, 5] tonnes / hour. + - Without the constraint the optimizer would idle in expensive hours; with it + the optimizer MUST produce at least the declared minimum in every hour. + + The fixture uses specific_electricity_consumption=1 for each of the 3 components, + so total_power_input[t] == 3 * steel_output[t]. The per-hour minimum in power + terms is therefore 3 * per_hour_min[t]. + """ + import copy + + n = 4 + index = pd.date_range("2023-01-01", periods=n, freq="h") + per_hour_min = [10.0, 20.0, 30.0, 5.0] + # High prices in first two hours — without the constraint the optimizer would + # concentrate all production in the cheaper last two hours. + prices = [500.0, 500.0, 10.0, 10.0] + + forecaster = SteelplantForecaster( + index, + electricity_price=prices, + fuel_prices={"natural_gas": [30.0] * n, "co2": [20.0] * n}, + steel_demand=per_hour_min, + ) + plant = SteelPlant( + id="test_full_horizon_per_ts", + unit_operator="test_operator", + objective="min_variable_cost", + flexibility_measure="cost_based_load_shift", + bidding_strategies={"EOM": DsmEnergyOptimizationStrategy()}, + node="south", + components=copy.deepcopy(dsm_components), + forecaster=forecaster, + demand=0, # no global demand; per-timestep minimums drive production + technology="steel_plant", + ) + plant.setup_model() + + # Constraint and parameter must both be present on the abstract model + assert hasattr(plant.model, "steel_demand_per_timestep"), ( + "Pyomo parameter steel_demand_per_timestep must exist in full-horizon mode" + ) + assert hasattr(plant.model, "steel_demand_per_timestep_constraint"), ( + "Constraint steel_demand_per_timestep_constraint must be added in full-horizon mode" + ) + + # Run optimization + plant.determine_optimal_operation_without_flex() + assert plant.opt_power_requirement is not None + + # With specific_electricity_consumption=1 for all 3 components, total_power_input[t] + # == 3 * eaf.steel_output[t]. So the per-hour minimum in power terms is 3 * min. + energy_per_tonne = 3.0 + opt_power = plant.opt_power_requirement + for t, min_steel in enumerate(per_hour_min): + ts = index[t] + power_at_t = opt_power.at[ts] + assert power_at_t >= energy_per_tonne * min_steel - 1e-4, ( + f"Hour {t}: power={power_at_t:.4f} < min_steel*factor={energy_per_tonne * min_steel:.4f}" + ) + + # Total power >= 3 * sum(per_hour_min) + total_power = sum(opt_power.data) + assert total_power >= energy_per_tonne * sum(per_hour_min) - 1e-4 + + if __name__ == "__main__": pytest.main(["-s", __file__])